diff --git a/grammar.js b/grammar.js index 363ae28..03ea772 100644 --- a/grammar.js +++ b/grammar.js @@ -233,7 +233,7 @@ module.exports = grammar({ _attribute_list: $ => choice($.attribute_list, $.preproc_if_in_attribute_list), attribute_target_specifier: _ => seq( - choice('field', 'event', 'method', 'param', 'property', 'return', 'type'), + choice('field', 'event', 'method', 'param', 'property', 'return', 'type', 'typevar'), ':', ), diff --git a/src/grammar.json b/src/grammar.json index d4c540d..b0f0abc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -492,6 +492,10 @@ { "type": "STRING", "value": "type" + }, + { + "type": "STRING", + "value": "typevar" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 04325b8..e43bc13 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -7026,6 +7026,10 @@ "type": "typeof", "named": false }, + { + "type": "typevar", + "named": false + }, { "type": "unchecked", "named": false diff --git a/src/parser.c b/src/parser.c index 9eb4653..b99efe2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,9 +15,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 7817 #define LARGE_STATE_COUNT 3941 -#define SYMBOL_COUNT 523 +#define SYMBOL_COUNT 524 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 217 +#define TOKEN_COUNT 218 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -48,507 +48,508 @@ enum ts_symbol_identifiers { anon_sym_property = 22, anon_sym_return = 23, anon_sym_type = 24, - anon_sym_namespace = 25, - anon_sym_class = 26, - anon_sym_ref = 27, - anon_sym_struct = 28, - anon_sym_enum = 29, - anon_sym_LBRACE = 30, - anon_sym_RBRACE = 31, - anon_sym_interface = 32, - anon_sym_delegate = 33, - anon_sym_record = 34, - anon_sym_abstract = 35, - anon_sym_async = 36, - anon_sym_const = 37, - anon_sym_file = 38, - anon_sym_fixed = 39, - anon_sym_internal = 40, - anon_sym_new = 41, - anon_sym_override = 42, - anon_sym_partial = 43, - anon_sym_private = 44, - anon_sym_protected = 45, - anon_sym_public = 46, - anon_sym_readonly = 47, - anon_sym_required = 48, - anon_sym_sealed = 49, - anon_sym_virtual = 50, - anon_sym_volatile = 51, - anon_sym_LT = 52, - anon_sym_GT = 53, - anon_sym_in = 54, - anon_sym_out = 55, - anon_sym_where = 56, - anon_sym_QMARK = 57, - anon_sym_notnull = 58, - anon_sym_unmanaged = 59, - anon_sym_operator = 60, - anon_sym_checked = 61, - anon_sym_BANG = 62, - anon_sym_TILDE = 63, - anon_sym_PLUS_PLUS = 64, - anon_sym_DASH_DASH = 65, - anon_sym_true = 66, - anon_sym_false = 67, - anon_sym_PLUS = 68, - anon_sym_DASH = 69, - anon_sym_STAR = 70, - anon_sym_SLASH = 71, - anon_sym_PERCENT = 72, - anon_sym_CARET = 73, - anon_sym_PIPE = 74, - anon_sym_AMP = 75, - anon_sym_LT_LT = 76, - anon_sym_GT_GT = 77, - anon_sym_GT_GT_GT = 78, - anon_sym_EQ_EQ = 79, - anon_sym_BANG_EQ = 80, - anon_sym_GT_EQ = 81, - anon_sym_LT_EQ = 82, - anon_sym_implicit = 83, - anon_sym_explicit = 84, - anon_sym_get = 85, - anon_sym_set = 86, - anon_sym_add = 87, - anon_sym_remove = 88, - anon_sym_init = 89, - anon_sym_this = 90, - anon_sym_DOT = 91, - anon_sym_scoped = 92, - anon_sym_params = 93, - anon_sym_base = 94, - anon_sym_EQ_GT = 95, - anon_sym_COLON_COLON = 96, - anon_sym_var = 97, - anon_sym_managed = 98, - anon_sym_Cdecl = 99, - anon_sym_Stdcall = 100, - anon_sym_Thiscall = 101, - anon_sym_Fastcall = 102, - sym_predefined_type = 103, - anon_sym_break = 104, - anon_sym_unchecked = 105, - anon_sym_continue = 106, - anon_sym_do = 107, - anon_sym_while = 108, - anon_sym_for = 109, - anon_sym_lock = 110, - anon_sym_yield = 111, - anon_sym_switch = 112, - anon_sym_case = 113, - anon_sym_default = 114, - anon_sym_throw = 115, - anon_sym_try = 116, - anon_sym_catch = 117, - anon_sym_when = 118, - anon_sym_finally = 119, - anon_sym_await = 120, - anon_sym_foreach = 121, - anon_sym_goto = 122, - anon_sym_if = 123, - anon_sym_else = 124, - sym_discard = 125, - anon_sym_DOT_DOT = 126, - anon_sym_not = 127, - anon_sym_and = 128, - anon_sym_or = 129, - anon_sym_PLUS_EQ = 130, - anon_sym_DASH_EQ = 131, - anon_sym_STAR_EQ = 132, - anon_sym_SLASH_EQ = 133, - anon_sym_PERCENT_EQ = 134, - anon_sym_AMP_EQ = 135, - anon_sym_CARET_EQ = 136, - anon_sym_PIPE_EQ = 137, - anon_sym_LT_LT_EQ = 138, - anon_sym_GT_GT_EQ = 139, - anon_sym_GT_GT_GT_EQ = 140, - anon_sym_QMARK_QMARK_EQ = 141, - anon_sym_AMP_AMP = 142, - anon_sym_PIPE_PIPE = 143, - anon_sym_QMARK_QMARK = 144, - anon_sym_from = 145, - anon_sym_into = 146, - anon_sym_join = 147, - anon_sym_on = 148, - anon_sym_equals = 149, - anon_sym_let = 150, - anon_sym_orderby = 151, - anon_sym_ascending = 152, - anon_sym_descending = 153, - anon_sym_group = 154, - anon_sym_by = 155, - anon_sym_select = 156, - anon_sym_as = 157, - anon_sym_is = 158, - aux_sym_interpolation_format_clause_token1 = 159, - anon_sym_DASH_GT = 160, - anon_sym_stackalloc = 161, - anon_sym_with = 162, - anon_sym_sizeof = 163, - anon_sym_typeof = 164, - anon_sym___makeref = 165, - anon_sym___reftype = 166, - anon_sym___refvalue = 167, - sym_null_literal = 168, - anon_sym_SQUOTE = 169, - sym_character_literal_content = 170, - sym_integer_literal = 171, - sym_real_literal = 172, - anon_sym_DQUOTE = 173, - aux_sym_string_literal_content_token1 = 174, - aux_sym_string_literal_content_token2 = 175, - sym_escape_sequence = 176, - sym_string_literal_encoding = 177, - sym_verbatim_string_literal = 178, - aux_sym_raw_string_literal_token1 = 179, - aux_sym_preproc_if_token1 = 180, - aux_sym_preproc_if_token2 = 181, - aux_sym_preproc_if_token3 = 182, - aux_sym_preproc_else_token1 = 183, - aux_sym_preproc_elif_token1 = 184, - sym_preproc_arg = 185, - aux_sym_preproc_region_token1 = 186, - aux_sym_preproc_endregion_token1 = 187, - aux_sym_preproc_line_token1 = 188, - anon_sym_hidden = 189, - aux_sym_preproc_pragma_token1 = 190, - anon_sym_warning = 191, - anon_sym_disable = 192, - anon_sym_restore = 193, - anon_sym_checksum = 194, - aux_sym_preproc_nullable_token1 = 195, - anon_sym_enable = 196, - anon_sym_annotations = 197, - anon_sym_warnings = 198, - aux_sym_preproc_error_token1 = 199, - aux_sym_preproc_warning_token1 = 200, - aux_sym_preproc_define_token1 = 201, - aux_sym_preproc_undef_token1 = 202, - sym_shebang_directive = 203, - sym_comment = 204, - sym__optional_semi = 205, - sym_interpolation_regular_start = 206, - sym_interpolation_verbatim_start = 207, - sym_interpolation_raw_start = 208, - sym_interpolation_start_quote = 209, - sym_interpolation_end_quote = 210, - sym_interpolation_open_brace = 211, - sym_interpolation_close_brace = 212, - sym_interpolation_string_content = 213, - sym_raw_string_start = 214, - sym_raw_string_end = 215, - sym_raw_string_content = 216, - sym_compilation_unit = 217, - sym__top_level_item = 218, - sym_global_statement = 219, - sym_extern_alias_directive = 220, - sym_using_directive = 221, - sym_global_attribute = 222, - sym_attribute = 223, - sym_attribute_argument_list = 224, - sym_attribute_argument = 225, - sym_attribute_list = 226, - sym__attribute_list = 227, - sym_attribute_target_specifier = 228, - sym_namespace_declaration = 229, - sym_file_scoped_namespace_declaration = 230, - sym_type_declaration = 231, - sym_class_declaration = 232, - sym__class_declaration_initializer = 233, - sym_struct_declaration = 234, - sym__struct_declaration_initializer = 235, - sym_enum_declaration = 236, - sym__enum_declaration_initializer = 237, - sym_enum_member_declaration_list = 238, - sym_enum_member_declaration = 239, - sym_interface_declaration = 240, - sym__interface_declaration_initializer = 241, - sym_delegate_declaration = 242, - sym__delegate_declaration_initializer = 243, - sym_record_declaration = 244, - sym__record_declaration_initializer = 245, - sym_record_base = 246, - sym__declaration_list_body = 247, - sym_primary_constructor_base_type = 248, - sym_modifier = 249, - sym_type_parameter_list = 250, - sym_type_parameter = 251, - sym_base_list = 252, - sym_type_parameter_constraints_clause = 253, - sym_type_parameter_constraint = 254, - sym_constructor_constraint = 255, - sym_operator_declaration = 256, - sym_conversion_operator_declaration = 257, - sym_declaration_list = 258, - sym_declaration = 259, - sym_field_declaration = 260, - sym_constructor_declaration = 261, - sym__constructor_declaration_initializer = 262, - sym_destructor_declaration = 263, - sym_method_declaration = 264, - sym_event_declaration = 265, - sym_event_field_declaration = 266, - sym_accessor_list = 267, - sym_accessor_declaration = 268, - sym_indexer_declaration = 269, - sym_bracketed_parameter_list = 270, - sym_property_declaration = 271, - sym_explicit_interface_specifier = 272, - sym_parameter_list = 273, - sym_parameter = 274, - sym__parameter_array = 275, - sym_constructor_initializer = 276, - sym_argument_list = 277, - sym_tuple_pattern = 278, - sym_argument = 279, - sym_block = 280, - sym_arrow_expression_clause = 281, - sym__function_body = 282, - sym_variable_declaration = 283, - sym_using_variable_declaration = 284, - sym_variable_declarator = 285, - sym_using_variable_declarator = 286, - sym_bracketed_argument_list = 287, - sym__name = 288, - sym_alias_qualified_name = 289, - sym__simple_name = 290, - sym_qualified_name = 291, - sym_generic_name = 292, - sym_type_argument_list = 293, - sym_type = 294, - sym_implicit_type = 295, - sym_array_type = 296, - sym__array_base_type = 297, - sym_array_rank_specifier = 298, - sym_nullable_type = 299, - sym_pointer_type = 300, - sym__pointer_base_type = 301, - sym_function_pointer_type = 302, - sym_calling_convention = 303, - sym_function_pointer_parameter = 304, - sym_ref_type = 305, - sym__ref_base_type = 306, - sym_scoped_type = 307, - sym__scoped_base_type = 308, - sym_tuple_type = 309, - sym_tuple_element = 310, - sym_statement = 311, - sym_break_statement = 312, - sym_checked_statement = 313, - sym_continue_statement = 314, - sym_do_statement = 315, - sym_empty_statement = 316, - sym_expression_statement = 317, - sym_fixed_statement = 318, - sym_for_statement = 319, - sym__for_statement_conditions = 320, - sym_return_statement = 321, - sym_lock_statement = 322, - sym_yield_statement = 323, - sym_switch_statement = 324, - sym_switch_body = 325, - sym_switch_section = 326, - sym_throw_statement = 327, - sym_try_statement = 328, - sym_catch_clause = 329, - sym_catch_declaration = 330, - sym_catch_filter_clause = 331, - sym_finally_clause = 332, - sym_unsafe_statement = 333, - sym_using_statement = 334, - sym_foreach_statement = 335, - sym__foreach_statement_initializer = 336, - sym_goto_statement = 337, - sym_labeled_statement = 338, - sym_if_statement = 339, - sym_while_statement = 340, - sym_local_declaration_statement = 341, - sym_local_function_statement = 342, - sym__local_function_declaration = 343, - sym_pattern = 344, - sym_constant_pattern = 345, - sym_parenthesized_pattern = 346, - sym_var_pattern = 347, - sym_type_pattern = 348, - sym_list_pattern = 349, - sym_recursive_pattern = 350, - sym_positional_pattern_clause = 351, - sym_property_pattern_clause = 352, - sym_subpattern = 353, - sym_relational_pattern = 354, - sym_negated_pattern = 355, - sym_and_pattern = 356, - sym_or_pattern = 357, - sym_declaration_pattern = 358, - sym__variable_designation = 359, - sym_parenthesized_variable_designation = 360, - sym_expression = 361, - sym_non_lvalue_expression = 362, - sym_lvalue_expression = 363, - sym__expression_statement_expression = 364, - sym_assignment_expression = 365, - sym_binary_expression = 366, - sym_postfix_unary_expression = 367, - sym_prefix_unary_expression = 368, - sym__pointer_indirection_expression = 369, - sym_query_expression = 370, - sym_from_clause = 371, - sym__query_body = 372, - sym__query_clause = 373, - sym_join_clause = 374, - sym__join_header = 375, - sym__join_body = 376, - sym_join_into_clause = 377, - sym_let_clause = 378, - sym_order_by_clause = 379, - sym__ordering = 380, - sym_where_clause = 381, - sym__select_or_group_clause = 382, - sym_group_clause = 383, - sym_select_clause = 384, - sym_conditional_expression = 385, - sym_conditional_access_expression = 386, - sym_as_expression = 387, - sym_is_expression = 388, - sym_is_pattern_expression = 389, - sym_cast_expression = 390, - sym_checked_expression = 391, - sym_invocation_expression = 392, - sym_switch_expression = 393, - sym__switch_expression_body = 394, - sym_switch_expression_arm = 395, - sym_when_clause = 396, - sym_await_expression = 397, - sym_throw_expression = 398, - sym_element_access_expression = 399, - sym_interpolated_string_expression = 400, - sym__interpolated_string_content = 401, - sym__interpolated_verbatim_string_content = 402, - sym__interpolated_raw_string_content = 403, - sym_interpolation = 404, - sym_interpolation_alignment_clause = 405, - sym_interpolation_format_clause = 406, - sym_member_access_expression = 407, - sym_member_binding_expression = 408, - sym_object_creation_expression = 409, - sym_parenthesized_expression = 410, - sym__parenthesized_lvalue_expression = 411, - sym_lambda_expression = 412, - sym__lambda_expression_init = 413, - sym__lambda_parameters = 414, - sym_array_creation_expression = 415, - sym_anonymous_method_expression = 416, - sym_anonymous_object_creation_expression = 417, - sym__anonymous_object_member_declarator = 418, - sym_implicit_array_creation_expression = 419, - sym_implicit_object_creation_expression = 420, - sym_implicit_stackalloc_expression = 421, - sym_initializer_expression = 422, - sym_declaration_expression = 423, - sym_default_expression = 424, - sym_with_expression = 425, - sym__with_body = 426, - sym_with_initializer = 427, - sym_sizeof_expression = 428, - sym_typeof_expression = 429, - sym_makeref_expression = 430, - sym_ref_expression = 431, - sym_reftype_expression = 432, - sym_refvalue_expression = 433, - sym_stackalloc_expression = 434, - sym_range_expression = 435, - sym_tuple_expression = 436, - sym_literal = 437, - sym_character_literal = 438, - sym_string_literal = 439, - sym_string_literal_content = 440, - sym_raw_string_literal = 441, - sym_boolean_literal = 442, - sym_identifier = 443, - sym__reserved_identifier = 444, - sym_preproc_if = 445, - sym_preproc_else = 446, - sym_preproc_elif = 447, - sym_preproc_if_in_top_level = 448, - sym_preproc_else_in_top_level = 449, - sym_preproc_elif_in_top_level = 450, - sym_preproc_if_in_expression = 451, - sym_preproc_else_in_expression = 452, - sym_preproc_elif_in_expression = 453, - sym_preproc_if_in_enum_member_declaration = 454, - sym_preproc_else_in_enum_member_declaration = 455, - sym_preproc_elif_in_enum_member_declaration = 456, - sym_preproc_if_in_attribute_list = 457, - sym_preproc_else_in_attribute_list = 458, - sym_preproc_elif_in_attribute_list = 459, - sym__preproc_expression = 460, - sym_preproc_parenthesized_expression = 461, - sym_preproc_unary_expression = 462, - sym_preproc_binary_expression = 463, - sym_preproc_region = 464, - sym_preproc_endregion = 465, - sym_preproc_line = 466, - sym_preproc_pragma = 467, - sym_preproc_nullable = 468, - sym_preproc_error = 469, - sym_preproc_warning = 470, - sym_preproc_define = 471, - sym_preproc_undef = 472, - aux_sym_compilation_unit_repeat1 = 473, - aux_sym_using_directive_repeat1 = 474, - aux_sym_global_attribute_repeat1 = 475, - aux_sym_attribute_argument_list_repeat1 = 476, - aux_sym__class_declaration_initializer_repeat1 = 477, - aux_sym__class_declaration_initializer_repeat2 = 478, - aux_sym__class_declaration_initializer_repeat3 = 479, - aux_sym__class_declaration_initializer_repeat4 = 480, - aux_sym_enum_member_declaration_list_repeat1 = 481, - aux_sym__record_declaration_initializer_repeat1 = 482, - aux_sym_record_base_repeat1 = 483, - aux_sym_type_parameter_list_repeat1 = 484, - aux_sym_base_list_repeat1 = 485, - aux_sym_type_parameter_constraints_clause_repeat1 = 486, - aux_sym_conversion_operator_declaration_repeat1 = 487, - aux_sym_declaration_list_repeat1 = 488, - aux_sym_accessor_list_repeat1 = 489, - aux_sym_bracketed_parameter_list_repeat1 = 490, - aux_sym__parameter_type_with_modifiers_repeat1 = 491, - aux_sym_argument_list_repeat1 = 492, - aux_sym_tuple_pattern_repeat1 = 493, - aux_sym_block_repeat1 = 494, - aux_sym_variable_declaration_repeat1 = 495, - aux_sym_using_variable_declaration_repeat1 = 496, - aux_sym_type_argument_list_repeat1 = 497, - aux_sym_type_argument_list_repeat2 = 498, - aux_sym_array_rank_specifier_repeat1 = 499, - aux_sym_function_pointer_type_repeat1 = 500, - aux_sym_calling_convention_repeat1 = 501, - aux_sym_tuple_type_repeat1 = 502, - aux_sym__for_statement_conditions_repeat1 = 503, - aux_sym_switch_body_repeat1 = 504, - aux_sym_try_statement_repeat1 = 505, - aux_sym_catch_clause_repeat1 = 506, - aux_sym_list_pattern_repeat1 = 507, - aux_sym_positional_pattern_clause_repeat1 = 508, - aux_sym_parenthesized_variable_designation_repeat1 = 509, - aux_sym__query_body_repeat1 = 510, - aux_sym__query_body_repeat2 = 511, - aux_sym_order_by_clause_repeat1 = 512, - aux_sym__switch_expression_body_repeat1 = 513, - aux_sym_interpolated_string_expression_repeat1 = 514, - aux_sym_interpolated_string_expression_repeat2 = 515, - aux_sym_interpolated_string_expression_repeat3 = 516, - aux_sym__lambda_expression_init_repeat1 = 517, - aux_sym_anonymous_object_creation_expression_repeat1 = 518, - aux_sym__with_body_repeat1 = 519, - aux_sym_string_literal_repeat1 = 520, - aux_sym_preproc_if_in_top_level_repeat1 = 521, - aux_sym_preproc_pragma_repeat1 = 522, - alias_sym_element_binding_expression = 523, - alias_sym_implicit_parameter = 524, - alias_sym_interpolation_quote = 525, + anon_sym_typevar = 25, + anon_sym_namespace = 26, + anon_sym_class = 27, + anon_sym_ref = 28, + anon_sym_struct = 29, + anon_sym_enum = 30, + anon_sym_LBRACE = 31, + anon_sym_RBRACE = 32, + anon_sym_interface = 33, + anon_sym_delegate = 34, + anon_sym_record = 35, + anon_sym_abstract = 36, + anon_sym_async = 37, + anon_sym_const = 38, + anon_sym_file = 39, + anon_sym_fixed = 40, + anon_sym_internal = 41, + anon_sym_new = 42, + anon_sym_override = 43, + anon_sym_partial = 44, + anon_sym_private = 45, + anon_sym_protected = 46, + anon_sym_public = 47, + anon_sym_readonly = 48, + anon_sym_required = 49, + anon_sym_sealed = 50, + anon_sym_virtual = 51, + anon_sym_volatile = 52, + anon_sym_LT = 53, + anon_sym_GT = 54, + anon_sym_in = 55, + anon_sym_out = 56, + anon_sym_where = 57, + anon_sym_QMARK = 58, + anon_sym_notnull = 59, + anon_sym_unmanaged = 60, + anon_sym_operator = 61, + anon_sym_checked = 62, + anon_sym_BANG = 63, + anon_sym_TILDE = 64, + anon_sym_PLUS_PLUS = 65, + anon_sym_DASH_DASH = 66, + anon_sym_true = 67, + anon_sym_false = 68, + anon_sym_PLUS = 69, + anon_sym_DASH = 70, + anon_sym_STAR = 71, + anon_sym_SLASH = 72, + anon_sym_PERCENT = 73, + anon_sym_CARET = 74, + anon_sym_PIPE = 75, + anon_sym_AMP = 76, + anon_sym_LT_LT = 77, + anon_sym_GT_GT = 78, + anon_sym_GT_GT_GT = 79, + anon_sym_EQ_EQ = 80, + anon_sym_BANG_EQ = 81, + anon_sym_GT_EQ = 82, + anon_sym_LT_EQ = 83, + anon_sym_implicit = 84, + anon_sym_explicit = 85, + anon_sym_get = 86, + anon_sym_set = 87, + anon_sym_add = 88, + anon_sym_remove = 89, + anon_sym_init = 90, + anon_sym_this = 91, + anon_sym_DOT = 92, + anon_sym_scoped = 93, + anon_sym_params = 94, + anon_sym_base = 95, + anon_sym_EQ_GT = 96, + anon_sym_COLON_COLON = 97, + anon_sym_var = 98, + anon_sym_managed = 99, + anon_sym_Cdecl = 100, + anon_sym_Stdcall = 101, + anon_sym_Thiscall = 102, + anon_sym_Fastcall = 103, + sym_predefined_type = 104, + anon_sym_break = 105, + anon_sym_unchecked = 106, + anon_sym_continue = 107, + anon_sym_do = 108, + anon_sym_while = 109, + anon_sym_for = 110, + anon_sym_lock = 111, + anon_sym_yield = 112, + anon_sym_switch = 113, + anon_sym_case = 114, + anon_sym_default = 115, + anon_sym_throw = 116, + anon_sym_try = 117, + anon_sym_catch = 118, + anon_sym_when = 119, + anon_sym_finally = 120, + anon_sym_await = 121, + anon_sym_foreach = 122, + anon_sym_goto = 123, + anon_sym_if = 124, + anon_sym_else = 125, + sym_discard = 126, + anon_sym_DOT_DOT = 127, + anon_sym_not = 128, + anon_sym_and = 129, + anon_sym_or = 130, + anon_sym_PLUS_EQ = 131, + anon_sym_DASH_EQ = 132, + anon_sym_STAR_EQ = 133, + anon_sym_SLASH_EQ = 134, + anon_sym_PERCENT_EQ = 135, + anon_sym_AMP_EQ = 136, + anon_sym_CARET_EQ = 137, + anon_sym_PIPE_EQ = 138, + anon_sym_LT_LT_EQ = 139, + anon_sym_GT_GT_EQ = 140, + anon_sym_GT_GT_GT_EQ = 141, + anon_sym_QMARK_QMARK_EQ = 142, + anon_sym_AMP_AMP = 143, + anon_sym_PIPE_PIPE = 144, + anon_sym_QMARK_QMARK = 145, + anon_sym_from = 146, + anon_sym_into = 147, + anon_sym_join = 148, + anon_sym_on = 149, + anon_sym_equals = 150, + anon_sym_let = 151, + anon_sym_orderby = 152, + anon_sym_ascending = 153, + anon_sym_descending = 154, + anon_sym_group = 155, + anon_sym_by = 156, + anon_sym_select = 157, + anon_sym_as = 158, + anon_sym_is = 159, + aux_sym_interpolation_format_clause_token1 = 160, + anon_sym_DASH_GT = 161, + anon_sym_stackalloc = 162, + anon_sym_with = 163, + anon_sym_sizeof = 164, + anon_sym_typeof = 165, + anon_sym___makeref = 166, + anon_sym___reftype = 167, + anon_sym___refvalue = 168, + sym_null_literal = 169, + anon_sym_SQUOTE = 170, + sym_character_literal_content = 171, + sym_integer_literal = 172, + sym_real_literal = 173, + anon_sym_DQUOTE = 174, + aux_sym_string_literal_content_token1 = 175, + aux_sym_string_literal_content_token2 = 176, + sym_escape_sequence = 177, + sym_string_literal_encoding = 178, + sym_verbatim_string_literal = 179, + aux_sym_raw_string_literal_token1 = 180, + aux_sym_preproc_if_token1 = 181, + aux_sym_preproc_if_token2 = 182, + aux_sym_preproc_if_token3 = 183, + aux_sym_preproc_else_token1 = 184, + aux_sym_preproc_elif_token1 = 185, + sym_preproc_arg = 186, + aux_sym_preproc_region_token1 = 187, + aux_sym_preproc_endregion_token1 = 188, + aux_sym_preproc_line_token1 = 189, + anon_sym_hidden = 190, + aux_sym_preproc_pragma_token1 = 191, + anon_sym_warning = 192, + anon_sym_disable = 193, + anon_sym_restore = 194, + anon_sym_checksum = 195, + aux_sym_preproc_nullable_token1 = 196, + anon_sym_enable = 197, + anon_sym_annotations = 198, + anon_sym_warnings = 199, + aux_sym_preproc_error_token1 = 200, + aux_sym_preproc_warning_token1 = 201, + aux_sym_preproc_define_token1 = 202, + aux_sym_preproc_undef_token1 = 203, + sym_shebang_directive = 204, + sym_comment = 205, + sym__optional_semi = 206, + sym_interpolation_regular_start = 207, + sym_interpolation_verbatim_start = 208, + sym_interpolation_raw_start = 209, + sym_interpolation_start_quote = 210, + sym_interpolation_end_quote = 211, + sym_interpolation_open_brace = 212, + sym_interpolation_close_brace = 213, + sym_interpolation_string_content = 214, + sym_raw_string_start = 215, + sym_raw_string_end = 216, + sym_raw_string_content = 217, + sym_compilation_unit = 218, + sym__top_level_item = 219, + sym_global_statement = 220, + sym_extern_alias_directive = 221, + sym_using_directive = 222, + sym_global_attribute = 223, + sym_attribute = 224, + sym_attribute_argument_list = 225, + sym_attribute_argument = 226, + sym_attribute_list = 227, + sym__attribute_list = 228, + sym_attribute_target_specifier = 229, + sym_namespace_declaration = 230, + sym_file_scoped_namespace_declaration = 231, + sym_type_declaration = 232, + sym_class_declaration = 233, + sym__class_declaration_initializer = 234, + sym_struct_declaration = 235, + sym__struct_declaration_initializer = 236, + sym_enum_declaration = 237, + sym__enum_declaration_initializer = 238, + sym_enum_member_declaration_list = 239, + sym_enum_member_declaration = 240, + sym_interface_declaration = 241, + sym__interface_declaration_initializer = 242, + sym_delegate_declaration = 243, + sym__delegate_declaration_initializer = 244, + sym_record_declaration = 245, + sym__record_declaration_initializer = 246, + sym_record_base = 247, + sym__declaration_list_body = 248, + sym_primary_constructor_base_type = 249, + sym_modifier = 250, + sym_type_parameter_list = 251, + sym_type_parameter = 252, + sym_base_list = 253, + sym_type_parameter_constraints_clause = 254, + sym_type_parameter_constraint = 255, + sym_constructor_constraint = 256, + sym_operator_declaration = 257, + sym_conversion_operator_declaration = 258, + sym_declaration_list = 259, + sym_declaration = 260, + sym_field_declaration = 261, + sym_constructor_declaration = 262, + sym__constructor_declaration_initializer = 263, + sym_destructor_declaration = 264, + sym_method_declaration = 265, + sym_event_declaration = 266, + sym_event_field_declaration = 267, + sym_accessor_list = 268, + sym_accessor_declaration = 269, + sym_indexer_declaration = 270, + sym_bracketed_parameter_list = 271, + sym_property_declaration = 272, + sym_explicit_interface_specifier = 273, + sym_parameter_list = 274, + sym_parameter = 275, + sym__parameter_array = 276, + sym_constructor_initializer = 277, + sym_argument_list = 278, + sym_tuple_pattern = 279, + sym_argument = 280, + sym_block = 281, + sym_arrow_expression_clause = 282, + sym__function_body = 283, + sym_variable_declaration = 284, + sym_using_variable_declaration = 285, + sym_variable_declarator = 286, + sym_using_variable_declarator = 287, + sym_bracketed_argument_list = 288, + sym__name = 289, + sym_alias_qualified_name = 290, + sym__simple_name = 291, + sym_qualified_name = 292, + sym_generic_name = 293, + sym_type_argument_list = 294, + sym_type = 295, + sym_implicit_type = 296, + sym_array_type = 297, + sym__array_base_type = 298, + sym_array_rank_specifier = 299, + sym_nullable_type = 300, + sym_pointer_type = 301, + sym__pointer_base_type = 302, + sym_function_pointer_type = 303, + sym_calling_convention = 304, + sym_function_pointer_parameter = 305, + sym_ref_type = 306, + sym__ref_base_type = 307, + sym_scoped_type = 308, + sym__scoped_base_type = 309, + sym_tuple_type = 310, + sym_tuple_element = 311, + sym_statement = 312, + sym_break_statement = 313, + sym_checked_statement = 314, + sym_continue_statement = 315, + sym_do_statement = 316, + sym_empty_statement = 317, + sym_expression_statement = 318, + sym_fixed_statement = 319, + sym_for_statement = 320, + sym__for_statement_conditions = 321, + sym_return_statement = 322, + sym_lock_statement = 323, + sym_yield_statement = 324, + sym_switch_statement = 325, + sym_switch_body = 326, + sym_switch_section = 327, + sym_throw_statement = 328, + sym_try_statement = 329, + sym_catch_clause = 330, + sym_catch_declaration = 331, + sym_catch_filter_clause = 332, + sym_finally_clause = 333, + sym_unsafe_statement = 334, + sym_using_statement = 335, + sym_foreach_statement = 336, + sym__foreach_statement_initializer = 337, + sym_goto_statement = 338, + sym_labeled_statement = 339, + sym_if_statement = 340, + sym_while_statement = 341, + sym_local_declaration_statement = 342, + sym_local_function_statement = 343, + sym__local_function_declaration = 344, + sym_pattern = 345, + sym_constant_pattern = 346, + sym_parenthesized_pattern = 347, + sym_var_pattern = 348, + sym_type_pattern = 349, + sym_list_pattern = 350, + sym_recursive_pattern = 351, + sym_positional_pattern_clause = 352, + sym_property_pattern_clause = 353, + sym_subpattern = 354, + sym_relational_pattern = 355, + sym_negated_pattern = 356, + sym_and_pattern = 357, + sym_or_pattern = 358, + sym_declaration_pattern = 359, + sym__variable_designation = 360, + sym_parenthesized_variable_designation = 361, + sym_expression = 362, + sym_non_lvalue_expression = 363, + sym_lvalue_expression = 364, + sym__expression_statement_expression = 365, + sym_assignment_expression = 366, + sym_binary_expression = 367, + sym_postfix_unary_expression = 368, + sym_prefix_unary_expression = 369, + sym__pointer_indirection_expression = 370, + sym_query_expression = 371, + sym_from_clause = 372, + sym__query_body = 373, + sym__query_clause = 374, + sym_join_clause = 375, + sym__join_header = 376, + sym__join_body = 377, + sym_join_into_clause = 378, + sym_let_clause = 379, + sym_order_by_clause = 380, + sym__ordering = 381, + sym_where_clause = 382, + sym__select_or_group_clause = 383, + sym_group_clause = 384, + sym_select_clause = 385, + sym_conditional_expression = 386, + sym_conditional_access_expression = 387, + sym_as_expression = 388, + sym_is_expression = 389, + sym_is_pattern_expression = 390, + sym_cast_expression = 391, + sym_checked_expression = 392, + sym_invocation_expression = 393, + sym_switch_expression = 394, + sym__switch_expression_body = 395, + sym_switch_expression_arm = 396, + sym_when_clause = 397, + sym_await_expression = 398, + sym_throw_expression = 399, + sym_element_access_expression = 400, + sym_interpolated_string_expression = 401, + sym__interpolated_string_content = 402, + sym__interpolated_verbatim_string_content = 403, + sym__interpolated_raw_string_content = 404, + sym_interpolation = 405, + sym_interpolation_alignment_clause = 406, + sym_interpolation_format_clause = 407, + sym_member_access_expression = 408, + sym_member_binding_expression = 409, + sym_object_creation_expression = 410, + sym_parenthesized_expression = 411, + sym__parenthesized_lvalue_expression = 412, + sym_lambda_expression = 413, + sym__lambda_expression_init = 414, + sym__lambda_parameters = 415, + sym_array_creation_expression = 416, + sym_anonymous_method_expression = 417, + sym_anonymous_object_creation_expression = 418, + sym__anonymous_object_member_declarator = 419, + sym_implicit_array_creation_expression = 420, + sym_implicit_object_creation_expression = 421, + sym_implicit_stackalloc_expression = 422, + sym_initializer_expression = 423, + sym_declaration_expression = 424, + sym_default_expression = 425, + sym_with_expression = 426, + sym__with_body = 427, + sym_with_initializer = 428, + sym_sizeof_expression = 429, + sym_typeof_expression = 430, + sym_makeref_expression = 431, + sym_ref_expression = 432, + sym_reftype_expression = 433, + sym_refvalue_expression = 434, + sym_stackalloc_expression = 435, + sym_range_expression = 436, + sym_tuple_expression = 437, + sym_literal = 438, + sym_character_literal = 439, + sym_string_literal = 440, + sym_string_literal_content = 441, + sym_raw_string_literal = 442, + sym_boolean_literal = 443, + sym_identifier = 444, + sym__reserved_identifier = 445, + sym_preproc_if = 446, + sym_preproc_else = 447, + sym_preproc_elif = 448, + sym_preproc_if_in_top_level = 449, + sym_preproc_else_in_top_level = 450, + sym_preproc_elif_in_top_level = 451, + sym_preproc_if_in_expression = 452, + sym_preproc_else_in_expression = 453, + sym_preproc_elif_in_expression = 454, + sym_preproc_if_in_enum_member_declaration = 455, + sym_preproc_else_in_enum_member_declaration = 456, + sym_preproc_elif_in_enum_member_declaration = 457, + sym_preproc_if_in_attribute_list = 458, + sym_preproc_else_in_attribute_list = 459, + sym_preproc_elif_in_attribute_list = 460, + sym__preproc_expression = 461, + sym_preproc_parenthesized_expression = 462, + sym_preproc_unary_expression = 463, + sym_preproc_binary_expression = 464, + sym_preproc_region = 465, + sym_preproc_endregion = 466, + sym_preproc_line = 467, + sym_preproc_pragma = 468, + sym_preproc_nullable = 469, + sym_preproc_error = 470, + sym_preproc_warning = 471, + sym_preproc_define = 472, + sym_preproc_undef = 473, + aux_sym_compilation_unit_repeat1 = 474, + aux_sym_using_directive_repeat1 = 475, + aux_sym_global_attribute_repeat1 = 476, + aux_sym_attribute_argument_list_repeat1 = 477, + aux_sym__class_declaration_initializer_repeat1 = 478, + aux_sym__class_declaration_initializer_repeat2 = 479, + aux_sym__class_declaration_initializer_repeat3 = 480, + aux_sym__class_declaration_initializer_repeat4 = 481, + aux_sym_enum_member_declaration_list_repeat1 = 482, + aux_sym__record_declaration_initializer_repeat1 = 483, + aux_sym_record_base_repeat1 = 484, + aux_sym_type_parameter_list_repeat1 = 485, + aux_sym_base_list_repeat1 = 486, + aux_sym_type_parameter_constraints_clause_repeat1 = 487, + aux_sym_conversion_operator_declaration_repeat1 = 488, + aux_sym_declaration_list_repeat1 = 489, + aux_sym_accessor_list_repeat1 = 490, + aux_sym_bracketed_parameter_list_repeat1 = 491, + aux_sym__parameter_type_with_modifiers_repeat1 = 492, + aux_sym_argument_list_repeat1 = 493, + aux_sym_tuple_pattern_repeat1 = 494, + aux_sym_block_repeat1 = 495, + aux_sym_variable_declaration_repeat1 = 496, + aux_sym_using_variable_declaration_repeat1 = 497, + aux_sym_type_argument_list_repeat1 = 498, + aux_sym_type_argument_list_repeat2 = 499, + aux_sym_array_rank_specifier_repeat1 = 500, + aux_sym_function_pointer_type_repeat1 = 501, + aux_sym_calling_convention_repeat1 = 502, + aux_sym_tuple_type_repeat1 = 503, + aux_sym__for_statement_conditions_repeat1 = 504, + aux_sym_switch_body_repeat1 = 505, + aux_sym_try_statement_repeat1 = 506, + aux_sym_catch_clause_repeat1 = 507, + aux_sym_list_pattern_repeat1 = 508, + aux_sym_positional_pattern_clause_repeat1 = 509, + aux_sym_parenthesized_variable_designation_repeat1 = 510, + aux_sym__query_body_repeat1 = 511, + aux_sym__query_body_repeat2 = 512, + aux_sym_order_by_clause_repeat1 = 513, + aux_sym__switch_expression_body_repeat1 = 514, + aux_sym_interpolated_string_expression_repeat1 = 515, + aux_sym_interpolated_string_expression_repeat2 = 516, + aux_sym_interpolated_string_expression_repeat3 = 517, + aux_sym__lambda_expression_init_repeat1 = 518, + aux_sym_anonymous_object_creation_expression_repeat1 = 519, + aux_sym__with_body_repeat1 = 520, + aux_sym_string_literal_repeat1 = 521, + aux_sym_preproc_if_in_top_level_repeat1 = 522, + aux_sym_preproc_pragma_repeat1 = 523, + alias_sym_element_binding_expression = 524, + alias_sym_implicit_parameter = 525, + alias_sym_interpolation_quote = 526, }; static const char * const ts_symbol_names[] = { @@ -577,6 +578,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_property] = "property", [anon_sym_return] = "return", [anon_sym_type] = "type", + [anon_sym_typevar] = "typevar", [anon_sym_namespace] = "namespace", [anon_sym_class] = "class", [anon_sym_ref] = "ref", @@ -1106,6 +1108,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_property] = anon_sym_property, [anon_sym_return] = anon_sym_return, [anon_sym_type] = anon_sym_type, + [anon_sym_typevar] = anon_sym_typevar, [anon_sym_namespace] = anon_sym_namespace, [anon_sym_class] = anon_sym_class, [anon_sym_ref] = anon_sym_ref, @@ -1710,6 +1713,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_typevar] = { + .visible = true, + .named = false, + }, [anon_sym_namespace] = { .visible = true, .named = false, @@ -4746,18 +4753,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, + [3] = 3, + [4] = 2, [5] = 2, [6] = 2, [7] = 2, [8] = 2, [9] = 9, [10] = 10, - [11] = 11, - [12] = 9, - [13] = 9, - [14] = 9, + [11] = 10, + [12] = 10, + [13] = 13, + [14] = 10, [15] = 15, [16] = 16, [17] = 17, @@ -4767,97 +4774,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [21] = 21, [22] = 22, [23] = 23, - [24] = 23, + [24] = 24, [25] = 25, - [26] = 26, - [27] = 27, + [26] = 25, + [27] = 25, [28] = 28, [29] = 29, - [30] = 30, + [30] = 25, [31] = 31, - [32] = 23, - [33] = 23, - [34] = 23, - [35] = 23, - [36] = 23, - [37] = 23, - [38] = 23, - [39] = 23, + [32] = 25, + [33] = 25, + [34] = 25, + [35] = 25, + [36] = 25, + [37] = 37, + [38] = 38, + [39] = 25, [40] = 40, - [41] = 40, - [42] = 42, + [41] = 41, + [42] = 41, [43] = 40, - [44] = 42, + [44] = 41, [45] = 40, - [46] = 42, + [46] = 41, [47] = 40, - [48] = 42, + [48] = 41, [49] = 40, - [50] = 42, + [50] = 41, [51] = 40, - [52] = 42, + [52] = 41, [53] = 40, - [54] = 42, - [55] = 42, - [56] = 40, - [57] = 42, - [58] = 40, - [59] = 42, - [60] = 40, - [61] = 42, + [54] = 41, + [55] = 40, + [56] = 41, + [57] = 40, + [58] = 41, + [59] = 40, + [60] = 41, + [61] = 40, [62] = 62, [63] = 63, - [64] = 62, - [65] = 65, - [66] = 66, + [64] = 64, + [65] = 64, + [66] = 63, [67] = 67, [68] = 68, - [69] = 69, + [69] = 68, [70] = 70, - [71] = 63, - [72] = 70, - [73] = 68, - [74] = 74, - [75] = 65, - [76] = 63, - [77] = 62, - [78] = 66, - [79] = 67, - [80] = 65, - [81] = 66, - [82] = 68, - [83] = 83, - [84] = 84, - [85] = 84, - [86] = 74, - [87] = 84, - [88] = 70, - [89] = 63, - [90] = 62, - [91] = 65, - [92] = 66, - [93] = 67, - [94] = 67, - [95] = 68, - [96] = 69, - [97] = 69, - [98] = 74, - [99] = 84, - [100] = 70, - [101] = 74, - [102] = 83, - [103] = 83, - [104] = 83, - [105] = 69, + [71] = 71, + [72] = 72, + [73] = 63, + [74] = 71, + [75] = 72, + [76] = 76, + [77] = 67, + [78] = 78, + [79] = 76, + [80] = 67, + [81] = 62, + [82] = 82, + [83] = 70, + [84] = 78, + [85] = 64, + [86] = 82, + [87] = 63, + [88] = 62, + [89] = 62, + [90] = 68, + [91] = 70, + [92] = 68, + [93] = 71, + [94] = 72, + [95] = 70, + [96] = 76, + [97] = 67, + [98] = 78, + [99] = 64, + [100] = 71, + [101] = 72, + [102] = 82, + [103] = 76, + [104] = 82, + [105] = 78, [106] = 106, [107] = 106, [108] = 106, [109] = 106, [110] = 106, [111] = 106, - [112] = 112, + [112] = 106, [113] = 106, - [114] = 106, + [114] = 114, [115] = 115, [116] = 115, [117] = 115, @@ -4866,22 +4873,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 115, [121] = 115, [122] = 115, - [123] = 123, - [124] = 124, + [123] = 115, + [124] = 115, [125] = 115, [126] = 115, [127] = 115, [128] = 115, [129] = 115, [130] = 115, - [131] = 115, + [131] = 131, [132] = 115, [133] = 115, [134] = 115, [135] = 115, [136] = 115, [137] = 115, - [138] = 115, + [138] = 138, [139] = 115, [140] = 115, [141] = 115, @@ -4892,313 +4899,313 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [146] = 115, [147] = 147, [148] = 147, - [149] = 123, - [150] = 124, - [151] = 123, - [152] = 124, - [153] = 123, - [154] = 124, - [155] = 124, - [156] = 124, - [157] = 123, - [158] = 123, - [159] = 124, - [160] = 123, - [161] = 123, - [162] = 124, - [163] = 124, - [164] = 124, - [165] = 123, - [166] = 123, - [167] = 124, - [168] = 123, - [169] = 124, - [170] = 123, + [149] = 138, + [150] = 131, + [151] = 138, + [152] = 131, + [153] = 131, + [154] = 138, + [155] = 131, + [156] = 138, + [157] = 131, + [158] = 138, + [159] = 138, + [160] = 131, + [161] = 131, + [162] = 138, + [163] = 138, + [164] = 131, + [165] = 131, + [166] = 138, + [167] = 131, + [168] = 131, + [169] = 138, + [170] = 138, [171] = 171, - [172] = 123, - [173] = 124, - [174] = 124, - [175] = 123, - [176] = 171, - [177] = 123, - [178] = 124, - [179] = 171, - [180] = 123, - [181] = 171, - [182] = 123, - [183] = 171, - [184] = 123, - [185] = 124, - [186] = 124, - [187] = 124, - [188] = 123, - [189] = 124, - [190] = 123, - [191] = 124, - [192] = 123, - [193] = 124, + [172] = 138, + [173] = 138, + [174] = 131, + [175] = 138, + [176] = 131, + [177] = 171, + [178] = 131, + [179] = 138, + [180] = 138, + [181] = 131, + [182] = 138, + [183] = 131, + [184] = 138, + [185] = 131, + [186] = 138, + [187] = 131, + [188] = 138, + [189] = 131, + [190] = 131, + [191] = 138, + [192] = 131, + [193] = 138, [194] = 171, - [195] = 124, - [196] = 124, - [197] = 123, - [198] = 171, - [199] = 123, - [200] = 123, - [201] = 124, - [202] = 124, - [203] = 123, - [204] = 124, - [205] = 123, - [206] = 124, - [207] = 123, - [208] = 171, - [209] = 123, - [210] = 124, - [211] = 123, - [212] = 124, - [213] = 123, - [214] = 124, - [215] = 123, - [216] = 124, - [217] = 123, - [218] = 124, - [219] = 123, - [220] = 124, - [221] = 123, - [222] = 124, - [223] = 124, - [224] = 224, - [225] = 123, - [226] = 123, - [227] = 227, - [228] = 123, + [195] = 138, + [196] = 131, + [197] = 138, + [198] = 138, + [199] = 171, + [200] = 171, + [201] = 171, + [202] = 171, + [203] = 131, + [204] = 131, + [205] = 138, + [206] = 131, + [207] = 171, + [208] = 131, + [209] = 138, + [210] = 131, + [211] = 138, + [212] = 131, + [213] = 138, + [214] = 131, + [215] = 138, + [216] = 138, + [217] = 217, + [218] = 131, + [219] = 131, + [220] = 138, + [221] = 131, + [222] = 138, + [223] = 138, + [224] = 131, + [225] = 131, + [226] = 226, + [227] = 138, + [228] = 228, [229] = 229, - [230] = 124, - [231] = 123, - [232] = 227, - [233] = 233, - [234] = 234, - [235] = 124, - [236] = 123, - [237] = 124, - [238] = 238, - [239] = 124, - [240] = 234, - [241] = 233, - [242] = 123, - [243] = 124, - [244] = 238, - [245] = 238, - [246] = 123, - [247] = 238, - [248] = 227, - [249] = 249, - [250] = 123, - [251] = 124, - [252] = 234, - [253] = 124, - [254] = 238, - [255] = 227, - [256] = 238, - [257] = 234, - [258] = 124, - [259] = 259, - [260] = 123, - [261] = 124, - [262] = 124, - [263] = 123, - [264] = 264, - [265] = 124, - [266] = 124, - [267] = 267, - [268] = 259, - [269] = 123, - [270] = 124, - [271] = 267, - [272] = 259, - [273] = 123, - [274] = 267, - [275] = 264, - [276] = 259, + [230] = 226, + [231] = 231, + [232] = 131, + [233] = 138, + [234] = 229, + [235] = 228, + [236] = 228, + [237] = 131, + [238] = 229, + [239] = 226, + [240] = 138, + [241] = 226, + [242] = 242, + [243] = 229, + [244] = 138, + [245] = 131, + [246] = 228, + [247] = 247, + [248] = 228, + [249] = 131, + [250] = 228, + [251] = 131, + [252] = 138, + [253] = 131, + [254] = 138, + [255] = 138, + [256] = 231, + [257] = 131, + [258] = 258, + [259] = 138, + [260] = 131, + [261] = 138, + [262] = 262, + [263] = 131, + [264] = 131, + [265] = 262, + [266] = 131, + [267] = 131, + [268] = 131, + [269] = 138, + [270] = 138, + [271] = 138, + [272] = 262, + [273] = 273, + [274] = 258, + [275] = 138, + [276] = 258, [277] = 277, - [278] = 123, - [279] = 124, - [280] = 267, - [281] = 277, - [282] = 259, - [283] = 123, - [284] = 124, - [285] = 123, - [286] = 259, - [287] = 123, - [288] = 267, - [289] = 267, + [278] = 262, + [279] = 131, + [280] = 138, + [281] = 262, + [282] = 138, + [283] = 262, + [284] = 258, + [285] = 273, + [286] = 258, + [287] = 277, + [288] = 258, + [289] = 131, [290] = 290, [291] = 291, [292] = 290, - [293] = 291, - [294] = 291, + [293] = 293, + [294] = 294, [295] = 295, - [296] = 295, - [297] = 290, + [296] = 291, + [297] = 291, [298] = 290, - [299] = 291, + [299] = 295, [300] = 290, - [301] = 290, - [302] = 295, - [303] = 295, - [304] = 304, - [305] = 295, - [306] = 295, - [307] = 307, - [308] = 290, - [309] = 304, + [301] = 295, + [302] = 290, + [303] = 290, + [304] = 291, + [305] = 290, + [306] = 294, + [307] = 295, + [308] = 295, + [309] = 295, [310] = 290, [311] = 291, [312] = 295, [313] = 295, [314] = 314, - [315] = 315, - [316] = 314, - [317] = 317, + [315] = 314, + [316] = 316, + [317] = 314, [318] = 314, [319] = 319, - [320] = 315, - [321] = 315, - [322] = 317, - [323] = 314, - [324] = 319, - [325] = 317, - [326] = 314, - [327] = 319, + [320] = 320, + [321] = 316, + [322] = 314, + [323] = 320, + [324] = 314, + [325] = 316, + [326] = 316, + [327] = 314, [328] = 319, - [329] = 317, - [330] = 314, - [331] = 315, - [332] = 315, - [333] = 317, + [329] = 319, + [330] = 320, + [331] = 316, + [332] = 332, + [333] = 316, [334] = 314, [335] = 319, - [336] = 315, - [337] = 315, - [338] = 319, - [339] = 315, - [340] = 315, - [341] = 317, - [342] = 317, - [343] = 315, - [344] = 314, - [345] = 315, - [346] = 319, - [347] = 315, - [348] = 348, - [349] = 315, - [350] = 315, - [351] = 315, - [352] = 314, + [336] = 320, + [337] = 316, + [338] = 314, + [339] = 319, + [340] = 320, + [341] = 314, + [342] = 316, + [343] = 319, + [344] = 320, + [345] = 319, + [346] = 316, + [347] = 314, + [348] = 316, + [349] = 320, + [350] = 320, + [351] = 319, + [352] = 320, [353] = 314, - [354] = 315, - [355] = 315, - [356] = 315, - [357] = 317, - [358] = 317, - [359] = 317, - [360] = 317, - [361] = 315, - [362] = 314, - [363] = 315, - [364] = 315, - [365] = 319, - [366] = 315, - [367] = 315, - [368] = 314, - [369] = 315, - [370] = 315, - [371] = 319, - [372] = 315, - [373] = 315, - [374] = 314, - [375] = 315, - [376] = 315, - [377] = 319, - [378] = 315, - [379] = 317, - [380] = 314, - [381] = 315, - [382] = 319, - [383] = 315, - [384] = 317, - [385] = 317, + [354] = 314, + [355] = 316, + [356] = 319, + [357] = 316, + [358] = 319, + [359] = 319, + [360] = 320, + [361] = 314, + [362] = 316, + [363] = 319, + [364] = 316, + [365] = 316, + [366] = 320, + [367] = 316, + [368] = 316, + [369] = 314, + [370] = 316, + [371] = 316, + [372] = 319, + [373] = 316, + [374] = 316, + [375] = 320, + [376] = 316, + [377] = 316, + [378] = 320, + [379] = 316, + [380] = 316, + [381] = 320, + [382] = 316, + [383] = 316, + [384] = 316, + [385] = 319, [386] = 314, [387] = 319, - [388] = 348, - [389] = 314, - [390] = 315, - [391] = 315, + [388] = 320, + [389] = 389, + [390] = 314, + [391] = 319, [392] = 319, [393] = 314, [394] = 319, - [395] = 319, - [396] = 317, - [397] = 315, - [398] = 315, - [399] = 317, - [400] = 319, + [395] = 320, + [396] = 320, + [397] = 316, + [398] = 316, + [399] = 316, + [400] = 320, [401] = 314, - [402] = 317, + [402] = 389, [403] = 314, [404] = 319, - [405] = 314, + [405] = 320, [406] = 319, - [407] = 315, - [408] = 315, - [409] = 319, - [410] = 319, - [411] = 315, - [412] = 315, - [413] = 315, - [414] = 317, - [415] = 314, - [416] = 319, - [417] = 315, - [418] = 317, - [419] = 317, - [420] = 314, - [421] = 319, - [422] = 315, - [423] = 314, - [424] = 317, - [425] = 314, - [426] = 319, + [407] = 320, + [408] = 316, + [409] = 316, + [410] = 316, + [411] = 314, + [412] = 319, + [413] = 314, + [414] = 319, + [415] = 320, + [416] = 320, + [417] = 316, + [418] = 316, + [419] = 316, + [420] = 319, + [421] = 316, + [422] = 314, + [423] = 320, + [424] = 314, + [425] = 425, + [426] = 314, [427] = 319, - [428] = 314, - [429] = 317, - [430] = 314, - [431] = 319, - [432] = 317, + [428] = 320, + [429] = 314, + [430] = 319, + [431] = 316, + [432] = 316, [433] = 314, [434] = 319, - [435] = 315, - [436] = 317, - [437] = 314, - [438] = 319, - [439] = 319, - [440] = 315, - [441] = 317, - [442] = 442, - [443] = 443, - [444] = 315, + [435] = 320, + [436] = 316, + [437] = 316, + [438] = 320, + [439] = 316, + [440] = 319, + [441] = 316, + [442] = 320, + [443] = 316, + [444] = 314, [445] = 314, [446] = 319, - [447] = 315, - [448] = 317, - [449] = 317, - [450] = 315, - [451] = 314, - [452] = 319, - [453] = 317, - [454] = 317, - [455] = 317, + [447] = 314, + [448] = 319, + [449] = 320, + [450] = 316, + [451] = 319, + [452] = 320, + [453] = 320, + [454] = 316, + [455] = 316, [456] = 456, [457] = 456, [458] = 458, @@ -5212,8 +5219,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [466] = 465, [467] = 465, [468] = 465, - [469] = 465, - [470] = 470, + [469] = 469, + [470] = 465, [471] = 465, [472] = 465, [473] = 465, @@ -5268,16 +5275,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 465, [523] = 465, [524] = 524, - [525] = 524, - [526] = 524, - [527] = 524, - [528] = 524, - [529] = 524, - [530] = 524, - [531] = 524, - [532] = 524, - [533] = 533, - [534] = 524, + [525] = 525, + [526] = 525, + [527] = 525, + [528] = 525, + [529] = 525, + [530] = 525, + [531] = 525, + [532] = 525, + [533] = 525, + [534] = 525, [535] = 535, [536] = 535, [537] = 535, @@ -5287,1381 +5294,1381 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [541] = 535, [542] = 542, [543] = 543, - [544] = 542, - [545] = 542, - [546] = 543, - [547] = 547, - [548] = 547, - [549] = 547, - [550] = 550, - [551] = 542, - [552] = 547, - [553] = 543, - [554] = 543, + [544] = 543, + [545] = 543, + [546] = 546, + [547] = 546, + [548] = 542, + [549] = 549, + [550] = 542, + [551] = 543, + [552] = 546, + [553] = 546, + [554] = 542, [555] = 543, - [556] = 547, - [557] = 542, - [558] = 542, + [556] = 542, + [557] = 546, + [558] = 546, [559] = 543, [560] = 560, - [561] = 561, + [561] = 560, [562] = 562, - [563] = 562, + [563] = 560, [564] = 564, [565] = 565, - [566] = 562, + [566] = 560, [567] = 562, - [568] = 561, - [569] = 564, - [570] = 562, - [571] = 564, - [572] = 564, - [573] = 562, + [568] = 564, + [569] = 562, + [570] = 570, + [571] = 565, + [572] = 562, + [573] = 560, [574] = 560, [575] = 575, - [576] = 575, + [576] = 576, [577] = 575, - [578] = 578, - [579] = 578, - [580] = 580, - [581] = 578, - [582] = 575, + [578] = 576, + [579] = 575, + [580] = 576, + [581] = 576, + [582] = 576, [583] = 583, - [584] = 578, - [585] = 578, - [586] = 575, + [584] = 576, + [585] = 575, + [586] = 576, [587] = 575, - [588] = 575, - [589] = 578, + [588] = 588, + [589] = 576, [590] = 575, [591] = 591, - [592] = 591, - [593] = 591, - [594] = 594, - [595] = 591, + [592] = 592, + [593] = 593, + [594] = 593, + [595] = 595, [596] = 596, [597] = 597, - [598] = 591, - [599] = 597, + [598] = 598, + [599] = 598, [600] = 600, - [601] = 597, + [601] = 598, [602] = 591, [603] = 603, - [604] = 591, - [605] = 591, - [606] = 594, - [607] = 594, - [608] = 608, - [609] = 608, - [610] = 594, - [611] = 611, - [612] = 591, - [613] = 596, - [614] = 608, - [615] = 615, - [616] = 597, - [617] = 591, - [618] = 591, - [619] = 594, - [620] = 591, - [621] = 591, - [622] = 591, - [623] = 591, - [624] = 591, - [625] = 591, - [626] = 591, - [627] = 603, - [628] = 615, - [629] = 600, - [630] = 591, - [631] = 591, - [632] = 608, - [633] = 603, - [634] = 615, - [635] = 596, - [636] = 591, - [637] = 608, - [638] = 591, - [639] = 591, - [640] = 591, - [641] = 591, - [642] = 591, - [643] = 591, - [644] = 591, - [645] = 591, - [646] = 594, - [647] = 591, + [604] = 600, + [605] = 595, + [606] = 606, + [607] = 597, + [608] = 598, + [609] = 598, + [610] = 595, + [611] = 598, + [612] = 598, + [613] = 598, + [614] = 598, + [615] = 598, + [616] = 592, + [617] = 600, + [618] = 598, + [619] = 591, + [620] = 593, + [621] = 597, + [622] = 598, + [623] = 598, + [624] = 598, + [625] = 598, + [626] = 598, + [627] = 598, + [628] = 600, + [629] = 591, + [630] = 598, + [631] = 598, + [632] = 598, + [633] = 598, + [634] = 598, + [635] = 598, + [636] = 595, + [637] = 637, + [638] = 593, + [639] = 598, + [640] = 598, + [641] = 598, + [642] = 593, + [643] = 596, + [644] = 598, + [645] = 598, + [646] = 598, + [647] = 598, [648] = 648, - [649] = 608, - [650] = 591, - [651] = 651, - [652] = 600, - [653] = 603, - [654] = 600, - [655] = 591, - [656] = 591, - [657] = 591, - [658] = 591, - [659] = 597, - [660] = 596, - [661] = 591, - [662] = 591, - [663] = 591, - [664] = 591, - [665] = 591, - [666] = 591, - [667] = 591, - [668] = 591, - [669] = 669, - [670] = 591, - [671] = 671, - [672] = 615, - [673] = 591, - [674] = 591, - [675] = 591, - [676] = 671, - [677] = 591, - [678] = 591, - [679] = 597, - [680] = 591, + [649] = 598, + [650] = 598, + [651] = 592, + [652] = 598, + [653] = 595, + [654] = 597, + [655] = 598, + [656] = 597, + [657] = 598, + [658] = 598, + [659] = 598, + [660] = 595, + [661] = 598, + [662] = 662, + [663] = 597, + [664] = 598, + [665] = 598, + [666] = 598, + [667] = 592, + [668] = 598, + [669] = 598, + [670] = 598, + [671] = 596, + [672] = 598, + [673] = 648, + [674] = 598, + [675] = 596, + [676] = 593, + [677] = 598, + [678] = 598, + [679] = 598, + [680] = 598, [681] = 681, - [682] = 681, - [683] = 683, - [684] = 683, - [685] = 681, + [682] = 682, + [683] = 681, + [684] = 682, + [685] = 685, [686] = 681, - [687] = 687, - [688] = 683, - [689] = 689, + [687] = 682, + [688] = 682, + [689] = 681, [690] = 681, - [691] = 683, - [692] = 683, - [693] = 693, - [694] = 683, - [695] = 683, - [696] = 681, + [691] = 691, + [692] = 682, + [693] = 682, + [694] = 682, + [695] = 681, + [696] = 682, [697] = 697, - [698] = 698, - [699] = 683, - [700] = 700, - [701] = 683, - [702] = 702, - [703] = 683, - [704] = 681, - [705] = 689, - [706] = 683, - [707] = 683, - [708] = 683, - [709] = 709, - [710] = 681, - [711] = 681, + [698] = 682, + [699] = 699, + [700] = 682, + [701] = 701, + [702] = 682, + [703] = 682, + [704] = 682, + [705] = 705, + [706] = 706, + [707] = 682, + [708] = 682, + [709] = 681, + [710] = 682, + [711] = 711, [712] = 681, - [713] = 681, - [714] = 683, - [715] = 697, - [716] = 681, - [717] = 681, - [718] = 683, - [719] = 683, - [720] = 697, + [713] = 682, + [714] = 714, + [715] = 681, + [716] = 705, + [717] = 682, + [718] = 682, + [719] = 681, + [720] = 720, [721] = 681, - [722] = 681, - [723] = 683, + [722] = 691, + [723] = 682, [724] = 681, - [725] = 683, - [726] = 683, - [727] = 727, - [728] = 681, - [729] = 681, + [725] = 711, + [726] = 682, + [727] = 714, + [728] = 682, + [729] = 691, [730] = 681, - [731] = 683, - [732] = 683, - [733] = 733, - [734] = 683, - [735] = 683, - [736] = 683, - [737] = 689, - [738] = 683, + [731] = 681, + [732] = 681, + [733] = 681, + [734] = 681, + [735] = 682, + [736] = 682, + [737] = 682, + [738] = 682, [739] = 681, - [740] = 697, - [741] = 683, - [742] = 683, - [743] = 683, - [744] = 697, - [745] = 683, - [746] = 683, - [747] = 683, - [748] = 681, - [749] = 683, - [750] = 683, - [751] = 733, + [740] = 681, + [741] = 681, + [742] = 682, + [743] = 705, + [744] = 681, + [745] = 681, + [746] = 705, + [747] = 681, + [748] = 682, + [749] = 682, + [750] = 720, + [751] = 682, [752] = 752, - [753] = 683, - [754] = 754, - [755] = 733, - [756] = 681, - [757] = 683, - [758] = 681, - [759] = 727, - [760] = 683, - [761] = 683, - [762] = 681, - [763] = 681, - [764] = 764, - [765] = 765, - [766] = 681, - [767] = 681, - [768] = 683, - [769] = 681, + [753] = 682, + [754] = 682, + [755] = 681, + [756] = 756, + [757] = 682, + [758] = 720, + [759] = 681, + [760] = 681, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 682, + [765] = 705, + [766] = 682, + [767] = 767, + [768] = 681, + [769] = 769, [770] = 681, - [771] = 752, - [772] = 772, - [773] = 683, + [771] = 681, + [772] = 682, + [773] = 682, [774] = 681, [775] = 681, - [776] = 683, - [777] = 683, - [778] = 752, - [779] = 681, - [780] = 683, - [781] = 689, - [782] = 681, - [783] = 683, - [784] = 683, - [785] = 681, - [786] = 727, - [787] = 681, - [788] = 681, - [789] = 681, - [790] = 752, - [791] = 727, - [792] = 681, - [793] = 683, - [794] = 681, - [795] = 683, - [796] = 683, + [776] = 776, + [777] = 682, + [778] = 705, + [779] = 714, + [780] = 681, + [781] = 682, + [782] = 714, + [783] = 681, + [784] = 682, + [785] = 682, + [786] = 682, + [787] = 682, + [788] = 682, + [789] = 682, + [790] = 720, + [791] = 681, + [792] = 682, + [793] = 681, + [794] = 682, + [795] = 681, + [796] = 681, [797] = 681, - [798] = 681, - [799] = 683, - [800] = 752, - [801] = 681, - [802] = 683, - [803] = 683, - [804] = 804, - [805] = 683, - [806] = 683, - [807] = 683, + [798] = 682, + [799] = 682, + [800] = 682, + [801] = 682, + [802] = 682, + [803] = 682, + [804] = 711, + [805] = 805, + [806] = 720, + [807] = 681, [808] = 681, - [809] = 683, - [810] = 683, - [811] = 681, - [812] = 683, - [813] = 683, - [814] = 733, - [815] = 683, - [816] = 683, - [817] = 727, - [818] = 818, - [819] = 683, + [809] = 809, + [810] = 681, + [811] = 682, + [812] = 681, + [813] = 682, + [814] = 681, + [815] = 682, + [816] = 682, + [817] = 681, + [818] = 711, + [819] = 682, [820] = 820, - [821] = 821, - [822] = 683, - [823] = 683, - [824] = 683, - [825] = 683, + [821] = 682, + [822] = 682, + [823] = 682, + [824] = 720, + [825] = 681, [826] = 681, - [827] = 727, - [828] = 681, - [829] = 829, + [827] = 682, + [828] = 682, + [829] = 681, [830] = 681, [831] = 681, - [832] = 683, - [833] = 833, - [834] = 681, - [835] = 683, - [836] = 836, - [837] = 683, - [838] = 681, - [839] = 752, + [832] = 682, + [833] = 682, + [834] = 691, + [835] = 711, + [836] = 681, + [837] = 837, + [838] = 682, + [839] = 682, [840] = 840, [841] = 841, [842] = 842, - [843] = 843, + [843] = 840, [844] = 844, [845] = 845, [846] = 846, [847] = 847, - [848] = 841, + [848] = 848, [849] = 849, [850] = 850, [851] = 851, [852] = 852, - [853] = 840, + [853] = 853, [854] = 854, [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 842, - [865] = 843, - [866] = 846, - [867] = 867, - [868] = 850, - [869] = 851, - [870] = 852, + [859] = 848, + [860] = 841, + [861] = 842, + [862] = 840, + [863] = 841, + [864] = 845, + [865] = 846, + [866] = 847, + [867] = 842, + [868] = 849, + [869] = 850, + [870] = 851, [871] = 852, - [872] = 840, + [872] = 853, [873] = 854, [874] = 855, [875] = 856, [876] = 857, [877] = 858, - [878] = 859, - [879] = 860, - [880] = 861, - [881] = 862, + [878] = 840, + [879] = 848, + [880] = 841, + [881] = 842, [882] = 840, - [883] = 863, - [884] = 854, - [885] = 855, - [886] = 842, - [887] = 843, - [888] = 856, - [889] = 857, - [890] = 858, - [891] = 859, - [892] = 860, - [893] = 846, - [894] = 861, - [895] = 862, - [896] = 850, - [897] = 851, - [898] = 852, - [899] = 840, - [900] = 854, - [901] = 855, - [902] = 856, - [903] = 857, - [904] = 858, - [905] = 859, - [906] = 863, - [907] = 860, - [908] = 861, - [909] = 862, - [910] = 863, + [883] = 845, + [884] = 884, + [885] = 847, + [886] = 886, + [887] = 849, + [888] = 850, + [889] = 851, + [890] = 852, + [891] = 853, + [892] = 854, + [893] = 855, + [894] = 856, + [895] = 857, + [896] = 858, + [897] = 848, + [898] = 841, + [899] = 842, + [900] = 840, + [901] = 845, + [902] = 902, + [903] = 847, + [904] = 904, + [905] = 849, + [906] = 906, + [907] = 907, + [908] = 850, + [909] = 909, + [910] = 910, [911] = 911, - [912] = 842, - [913] = 843, - [914] = 846, + [912] = 912, + [913] = 849, + [914] = 850, [915] = 915, - [916] = 850, + [916] = 916, [917] = 851, - [918] = 918, - [919] = 852, - [920] = 840, - [921] = 854, - [922] = 855, - [923] = 856, - [924] = 857, - [925] = 858, - [926] = 859, - [927] = 860, - [928] = 861, - [929] = 862, - [930] = 863, - [931] = 842, - [932] = 843, - [933] = 846, - [934] = 850, - [935] = 851, - [936] = 852, - [937] = 840, - [938] = 854, - [939] = 855, - [940] = 856, - [941] = 857, - [942] = 858, - [943] = 859, - [944] = 860, - [945] = 861, - [946] = 862, - [947] = 863, - [948] = 842, - [949] = 846, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 842, + [918] = 852, + [919] = 853, + [920] = 854, + [921] = 855, + [922] = 856, + [923] = 857, + [924] = 858, + [925] = 848, + [926] = 841, + [927] = 842, + [928] = 840, + [929] = 907, + [930] = 845, + [931] = 846, + [932] = 932, + [933] = 933, + [934] = 847, + [935] = 935, + [936] = 936, + [937] = 910, + [938] = 911, + [939] = 851, + [940] = 852, + [941] = 853, + [942] = 854, + [943] = 855, + [944] = 856, + [945] = 857, + [946] = 858, + [947] = 848, + [948] = 841, + [949] = 842, + [950] = 845, + [951] = 845, + [952] = 849, + [953] = 850, [954] = 954, - [955] = 850, - [956] = 851, - [957] = 852, - [958] = 840, - [959] = 854, - [960] = 855, - [961] = 856, - [962] = 857, - [963] = 858, - [964] = 859, - [965] = 860, - [966] = 861, - [967] = 862, - [968] = 863, - [969] = 918, + [955] = 849, + [956] = 840, + [957] = 850, + [958] = 846, + [959] = 847, + [960] = 851, + [961] = 852, + [962] = 853, + [963] = 854, + [964] = 855, + [965] = 856, + [966] = 857, + [967] = 858, + [968] = 848, + [969] = 841, [970] = 842, - [971] = 971, - [972] = 972, - [973] = 843, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 846, - [979] = 849, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 951, - [985] = 952, - [986] = 852, - [987] = 840, - [988] = 854, - [989] = 855, - [990] = 856, - [991] = 857, - [992] = 858, - [993] = 859, - [994] = 860, - [995] = 861, - [996] = 862, - [997] = 842, - [998] = 850, - [999] = 851, - [1000] = 863, - [1001] = 843, - [1002] = 846, - [1003] = 850, - [1004] = 851, - [1005] = 852, - [1006] = 840, - [1007] = 854, - [1008] = 855, - [1009] = 856, - [1010] = 857, - [1011] = 858, - [1012] = 859, - [1013] = 860, - [1014] = 861, - [1015] = 862, - [1016] = 863, - [1017] = 842, - [1018] = 843, - [1019] = 846, - [1020] = 850, - [1021] = 851, - [1022] = 852, - [1023] = 854, - [1024] = 855, - [1025] = 856, - [1026] = 857, - [1027] = 858, - [1028] = 859, - [1029] = 860, - [1030] = 861, - [1031] = 862, - [1032] = 863, - [1033] = 842, - [1034] = 843, - [1035] = 846, - [1036] = 971, - [1037] = 850, - [1038] = 851, - [1039] = 972, - [1040] = 852, - [1041] = 840, - [1042] = 854, - [1043] = 855, - [1044] = 856, - [1045] = 857, - [1046] = 858, - [1047] = 859, - [1048] = 860, - [1049] = 861, - [1050] = 862, - [1051] = 863, - [1052] = 842, - [1053] = 846, - [1054] = 850, - [1055] = 851, - [1056] = 852, - [1057] = 840, - [1058] = 854, - [1059] = 855, - [1060] = 856, - [1061] = 857, - [1062] = 858, - [1063] = 859, - [1064] = 860, - [1065] = 861, - [1066] = 862, - [1067] = 863, - [1068] = 842, - [1069] = 846, - [1070] = 843, - [1071] = 951, - [1072] = 952, - [1073] = 850, - [1074] = 851, - [1075] = 852, - [1076] = 840, - [1077] = 854, - [1078] = 855, - [1079] = 856, - [1080] = 857, - [1081] = 858, - [1082] = 859, - [1083] = 860, - [1084] = 861, - [1085] = 862, - [1086] = 863, - [1087] = 918, - [1088] = 842, - [1089] = 843, - [1090] = 846, - [1091] = 1091, - [1092] = 849, - [1093] = 1093, - [1094] = 852, + [971] = 845, + [972] = 849, + [973] = 850, + [974] = 840, + [975] = 847, + [976] = 849, + [977] = 850, + [978] = 851, + [979] = 852, + [980] = 853, + [981] = 854, + [982] = 855, + [983] = 856, + [984] = 857, + [985] = 858, + [986] = 848, + [987] = 841, + [988] = 842, + [989] = 840, + [990] = 845, + [991] = 847, + [992] = 910, + [993] = 911, + [994] = 851, + [995] = 852, + [996] = 853, + [997] = 854, + [998] = 855, + [999] = 849, + [1000] = 850, + [1001] = 856, + [1002] = 857, + [1003] = 858, + [1004] = 848, + [1005] = 841, + [1006] = 842, + [1007] = 840, + [1008] = 851, + [1009] = 852, + [1010] = 853, + [1011] = 854, + [1012] = 855, + [1013] = 856, + [1014] = 857, + [1015] = 858, + [1016] = 907, + [1017] = 848, + [1018] = 841, + [1019] = 842, + [1020] = 840, + [1021] = 907, + [1022] = 845, + [1023] = 845, + [1024] = 846, + [1025] = 847, + [1026] = 936, + [1027] = 846, + [1028] = 851, + [1029] = 852, + [1030] = 853, + [1031] = 854, + [1032] = 855, + [1033] = 856, + [1034] = 857, + [1035] = 858, + [1036] = 848, + [1037] = 841, + [1038] = 842, + [1039] = 845, + [1040] = 849, + [1041] = 850, + [1042] = 840, + [1043] = 846, + [1044] = 847, + [1045] = 851, + [1046] = 852, + [1047] = 853, + [1048] = 854, + [1049] = 855, + [1050] = 856, + [1051] = 857, + [1052] = 858, + [1053] = 848, + [1054] = 841, + [1055] = 842, + [1056] = 845, + [1057] = 849, + [1058] = 850, + [1059] = 840, + [1060] = 847, + [1061] = 849, + [1062] = 850, + [1063] = 851, + [1064] = 852, + [1065] = 853, + [1066] = 854, + [1067] = 855, + [1068] = 856, + [1069] = 857, + [1070] = 858, + [1071] = 848, + [1072] = 841, + [1073] = 842, + [1074] = 840, + [1075] = 845, + [1076] = 847, + [1077] = 847, + [1078] = 910, + [1079] = 911, + [1080] = 1080, + [1081] = 936, + [1082] = 849, + [1083] = 850, + [1084] = 851, + [1085] = 852, + [1086] = 853, + [1087] = 854, + [1088] = 855, + [1089] = 856, + [1090] = 857, + [1091] = 858, + [1092] = 848, + [1093] = 841, + [1094] = 842, [1095] = 840, - [1096] = 854, - [1097] = 855, - [1098] = 856, - [1099] = 857, - [1100] = 858, - [1101] = 859, - [1102] = 860, - [1103] = 861, - [1104] = 862, - [1105] = 842, - [1106] = 850, - [1107] = 851, - [1108] = 863, - [1109] = 843, - [1110] = 846, - [1111] = 852, - [1112] = 840, - [1113] = 854, - [1114] = 855, - [1115] = 856, - [1116] = 857, - [1117] = 858, - [1118] = 859, - [1119] = 860, - [1120] = 861, - [1121] = 862, - [1122] = 1122, - [1123] = 842, - [1124] = 850, - [1125] = 851, - [1126] = 1126, - [1127] = 863, - [1128] = 846, - [1129] = 850, - [1130] = 851, - [1131] = 852, - [1132] = 840, - [1133] = 854, - [1134] = 855, - [1135] = 856, - [1136] = 857, - [1137] = 858, - [1138] = 859, - [1139] = 860, - [1140] = 861, - [1141] = 862, - [1142] = 863, - [1143] = 974, - [1144] = 842, - [1145] = 846, - [1146] = 951, - [1147] = 951, - [1148] = 952, - [1149] = 1149, - [1150] = 850, - [1151] = 851, - [1152] = 1152, - [1153] = 852, - [1154] = 840, - [1155] = 854, - [1156] = 855, - [1157] = 856, - [1158] = 857, - [1159] = 858, - [1160] = 859, - [1161] = 860, - [1162] = 861, - [1163] = 862, - [1164] = 863, - [1165] = 918, - [1166] = 842, - [1167] = 952, - [1168] = 843, - [1169] = 975, - [1170] = 846, - [1171] = 976, - [1172] = 849, - [1173] = 977, - [1174] = 846, - [1175] = 852, - [1176] = 840, - [1177] = 854, - [1178] = 855, - [1179] = 856, - [1180] = 857, - [1181] = 858, - [1182] = 859, - [1183] = 860, - [1184] = 861, - [1185] = 862, - [1186] = 850, - [1187] = 842, - [1188] = 850, - [1189] = 851, - [1190] = 863, - [1191] = 843, - [1192] = 846, - [1193] = 852, - [1194] = 840, - [1195] = 854, - [1196] = 855, - [1197] = 856, - [1198] = 857, - [1199] = 858, - [1200] = 859, - [1201] = 860, - [1202] = 861, - [1203] = 915, - [1204] = 842, + [1096] = 907, + [1097] = 845, + [1098] = 846, + [1099] = 1099, + [1100] = 847, + [1101] = 849, + [1102] = 936, + [1103] = 850, + [1104] = 851, + [1105] = 852, + [1106] = 853, + [1107] = 854, + [1108] = 855, + [1109] = 856, + [1110] = 857, + [1111] = 858, + [1112] = 848, + [1113] = 841, + [1114] = 842, + [1115] = 845, + [1116] = 849, + [1117] = 850, + [1118] = 840, + [1119] = 846, + [1120] = 847, + [1121] = 851, + [1122] = 852, + [1123] = 853, + [1124] = 854, + [1125] = 855, + [1126] = 856, + [1127] = 857, + [1128] = 858, + [1129] = 848, + [1130] = 841, + [1131] = 842, + [1132] = 845, + [1133] = 849, + [1134] = 850, + [1135] = 851, + [1136] = 852, + [1137] = 853, + [1138] = 854, + [1139] = 847, + [1140] = 855, + [1141] = 849, + [1142] = 850, + [1143] = 851, + [1144] = 852, + [1145] = 853, + [1146] = 854, + [1147] = 855, + [1148] = 856, + [1149] = 857, + [1150] = 858, + [1151] = 856, + [1152] = 848, + [1153] = 841, + [1154] = 842, + [1155] = 840, + [1156] = 857, + [1157] = 845, + [1158] = 858, + [1159] = 847, + [1160] = 848, + [1161] = 841, + [1162] = 842, + [1163] = 910, + [1164] = 911, + [1165] = 840, + [1166] = 849, + [1167] = 850, + [1168] = 845, + [1169] = 851, + [1170] = 852, + [1171] = 853, + [1172] = 854, + [1173] = 855, + [1174] = 856, + [1175] = 857, + [1176] = 858, + [1177] = 846, + [1178] = 848, + [1179] = 841, + [1180] = 842, + [1181] = 840, + [1182] = 907, + [1183] = 1183, + [1184] = 845, + [1185] = 1185, + [1186] = 846, + [1187] = 1187, + [1188] = 847, + [1189] = 847, + [1190] = 936, + [1191] = 851, + [1192] = 852, + [1193] = 853, + [1194] = 854, + [1195] = 855, + [1196] = 856, + [1197] = 857, + [1198] = 858, + [1199] = 848, + [1200] = 841, + [1201] = 842, + [1202] = 845, + [1203] = 846, + [1204] = 849, [1205] = 850, - [1206] = 851, - [1207] = 863, - [1208] = 851, - [1209] = 846, - [1210] = 850, - [1211] = 851, - [1212] = 852, - [1213] = 840, - [1214] = 854, - [1215] = 855, - [1216] = 856, - [1217] = 857, - [1218] = 858, - [1219] = 859, - [1220] = 860, - [1221] = 861, - [1222] = 862, - [1223] = 863, - [1224] = 842, - [1225] = 846, - [1226] = 951, - [1227] = 952, - [1228] = 1228, - [1229] = 1229, - [1230] = 850, - [1231] = 851, - [1232] = 1232, - [1233] = 849, - [1234] = 852, - [1235] = 840, - [1236] = 854, - [1237] = 855, - [1238] = 856, - [1239] = 857, - [1240] = 858, - [1241] = 859, - [1242] = 1242, - [1243] = 860, - [1244] = 861, - [1245] = 862, - [1246] = 863, - [1247] = 918, - [1248] = 842, - [1249] = 1249, - [1250] = 843, - [1251] = 1251, - [1252] = 846, - [1253] = 1253, - [1254] = 849, - [1255] = 852, - [1256] = 840, - [1257] = 854, - [1258] = 855, - [1259] = 856, - [1260] = 857, - [1261] = 858, - [1262] = 859, - [1263] = 860, - [1264] = 861, - [1265] = 862, - [1266] = 842, - [1267] = 850, - [1268] = 851, - [1269] = 863, - [1270] = 843, - [1271] = 846, - [1272] = 852, - [1273] = 840, - [1274] = 854, - [1275] = 855, - [1276] = 856, - [1277] = 857, - [1278] = 858, - [1279] = 859, - [1280] = 860, - [1281] = 861, - [1282] = 862, - [1283] = 842, - [1284] = 850, - [1285] = 851, - [1286] = 863, - [1287] = 846, - [1288] = 850, - [1289] = 851, - [1290] = 852, - [1291] = 840, - [1292] = 854, - [1293] = 855, - [1294] = 856, - [1295] = 857, - [1296] = 858, - [1297] = 859, - [1298] = 860, - [1299] = 861, - [1300] = 862, - [1301] = 863, + [1206] = 840, + [1207] = 846, + [1208] = 847, + [1209] = 851, + [1210] = 852, + [1211] = 853, + [1212] = 854, + [1213] = 855, + [1214] = 856, + [1215] = 857, + [1216] = 858, + [1217] = 848, + [1218] = 841, + [1219] = 842, + [1220] = 845, + [1221] = 849, + [1222] = 850, + [1223] = 1223, + [1224] = 840, + [1225] = 847, + [1226] = 849, + [1227] = 849, + [1228] = 850, + [1229] = 851, + [1230] = 852, + [1231] = 853, + [1232] = 854, + [1233] = 855, + [1234] = 856, + [1235] = 857, + [1236] = 858, + [1237] = 850, + [1238] = 848, + [1239] = 841, + [1240] = 842, + [1241] = 840, + [1242] = 845, + [1243] = 847, + [1244] = 910, + [1245] = 911, + [1246] = 849, + [1247] = 850, + [1248] = 851, + [1249] = 852, + [1250] = 853, + [1251] = 854, + [1252] = 855, + [1253] = 856, + [1254] = 857, + [1255] = 858, + [1256] = 848, + [1257] = 841, + [1258] = 842, + [1259] = 851, + [1260] = 840, + [1261] = 907, + [1262] = 852, + [1263] = 845, + [1264] = 853, + [1265] = 846, + [1266] = 854, + [1267] = 847, + [1268] = 855, + [1269] = 856, + [1270] = 936, + [1271] = 857, + [1272] = 851, + [1273] = 852, + [1274] = 853, + [1275] = 854, + [1276] = 855, + [1277] = 856, + [1278] = 857, + [1279] = 858, + [1280] = 848, + [1281] = 841, + [1282] = 842, + [1283] = 858, + [1284] = 845, + [1285] = 849, + [1286] = 850, + [1287] = 848, + [1288] = 840, + [1289] = 841, + [1290] = 846, + [1291] = 847, + [1292] = 851, + [1293] = 852, + [1294] = 853, + [1295] = 854, + [1296] = 855, + [1297] = 856, + [1298] = 857, + [1299] = 858, + [1300] = 848, + [1301] = 841, [1302] = 842, - [1303] = 846, - [1304] = 1304, - [1305] = 1305, - [1306] = 951, - [1307] = 952, - [1308] = 1308, - [1309] = 850, - [1310] = 851, - [1311] = 852, - [1312] = 840, - [1313] = 854, - [1314] = 855, - [1315] = 856, - [1316] = 857, - [1317] = 858, - [1318] = 859, - [1319] = 860, - [1320] = 861, - [1321] = 862, - [1322] = 863, - [1323] = 918, - [1324] = 842, - [1325] = 843, - [1326] = 846, - [1327] = 849, - [1328] = 980, - [1329] = 1329, - [1330] = 852, - [1331] = 840, - [1332] = 854, - [1333] = 855, - [1334] = 856, - [1335] = 857, - [1336] = 858, - [1337] = 859, - [1338] = 860, - [1339] = 861, - [1340] = 862, - [1341] = 981, - [1342] = 842, - [1343] = 850, - [1344] = 851, - [1345] = 863, - [1346] = 843, - [1347] = 846, - [1348] = 852, - [1349] = 840, - [1350] = 854, - [1351] = 855, - [1352] = 856, - [1353] = 857, - [1354] = 858, - [1355] = 859, - [1356] = 860, - [1357] = 861, - [1358] = 862, + [1303] = 845, + [1304] = 842, + [1305] = 849, + [1306] = 850, + [1307] = 840, + [1308] = 840, + [1309] = 847, + [1310] = 849, + [1311] = 850, + [1312] = 851, + [1313] = 852, + [1314] = 853, + [1315] = 854, + [1316] = 855, + [1317] = 856, + [1318] = 857, + [1319] = 858, + [1320] = 848, + [1321] = 841, + [1322] = 842, + [1323] = 840, + [1324] = 845, + [1325] = 847, + [1326] = 845, + [1327] = 910, + [1328] = 911, + [1329] = 849, + [1330] = 850, + [1331] = 851, + [1332] = 852, + [1333] = 853, + [1334] = 854, + [1335] = 855, + [1336] = 856, + [1337] = 857, + [1338] = 858, + [1339] = 848, + [1340] = 841, + [1341] = 842, + [1342] = 840, + [1343] = 907, + [1344] = 845, + [1345] = 846, + [1346] = 846, + [1347] = 847, + [1348] = 936, + [1349] = 851, + [1350] = 852, + [1351] = 853, + [1352] = 854, + [1353] = 855, + [1354] = 856, + [1355] = 857, + [1356] = 858, + [1357] = 848, + [1358] = 841, [1359] = 842, - [1360] = 850, - [1361] = 851, - [1362] = 863, - [1363] = 846, - [1364] = 850, - [1365] = 851, - [1366] = 852, - [1367] = 840, - [1368] = 854, - [1369] = 855, - [1370] = 856, - [1371] = 857, - [1372] = 858, - [1373] = 859, - [1374] = 860, - [1375] = 861, - [1376] = 862, - [1377] = 863, - [1378] = 842, - [1379] = 846, - [1380] = 951, - [1381] = 952, - [1382] = 850, - [1383] = 851, - [1384] = 852, - [1385] = 840, - [1386] = 854, - [1387] = 855, - [1388] = 856, - [1389] = 857, - [1390] = 858, - [1391] = 859, - [1392] = 860, - [1393] = 861, - [1394] = 862, - [1395] = 863, - [1396] = 918, - [1397] = 1397, + [1360] = 845, + [1361] = 846, + [1362] = 849, + [1363] = 850, + [1364] = 840, + [1365] = 847, + [1366] = 1366, + [1367] = 849, + [1368] = 850, + [1369] = 851, + [1370] = 852, + [1371] = 853, + [1372] = 854, + [1373] = 855, + [1374] = 856, + [1375] = 857, + [1376] = 858, + [1377] = 1377, + [1378] = 848, + [1379] = 841, + [1380] = 842, + [1381] = 840, + [1382] = 845, + [1383] = 847, + [1384] = 910, + [1385] = 911, + [1386] = 849, + [1387] = 850, + [1388] = 851, + [1389] = 852, + [1390] = 853, + [1391] = 854, + [1392] = 855, + [1393] = 856, + [1394] = 857, + [1395] = 858, + [1396] = 848, + [1397] = 841, [1398] = 842, - [1399] = 1399, - [1400] = 843, - [1401] = 846, - [1402] = 849, - [1403] = 852, - [1404] = 840, - [1405] = 854, - [1406] = 855, - [1407] = 856, - [1408] = 857, - [1409] = 858, - [1410] = 859, - [1411] = 860, - [1412] = 861, - [1413] = 862, - [1414] = 842, - [1415] = 850, - [1416] = 851, - [1417] = 863, - [1418] = 843, - [1419] = 846, - [1420] = 852, + [1399] = 847, + [1400] = 840, + [1401] = 907, + [1402] = 1402, + [1403] = 845, + [1404] = 1404, + [1405] = 846, + [1406] = 847, + [1407] = 936, + [1408] = 851, + [1409] = 852, + [1410] = 853, + [1411] = 855, + [1412] = 856, + [1413] = 857, + [1414] = 858, + [1415] = 848, + [1416] = 841, + [1417] = 842, + [1418] = 845, + [1419] = 849, + [1420] = 850, [1421] = 840, - [1422] = 854, - [1423] = 855, - [1424] = 856, - [1425] = 857, - [1426] = 858, - [1427] = 859, - [1428] = 860, - [1429] = 861, - [1430] = 862, - [1431] = 842, - [1432] = 1432, - [1433] = 850, - [1434] = 851, - [1435] = 863, - [1436] = 846, - [1437] = 850, - [1438] = 851, - [1439] = 852, - [1440] = 840, - [1441] = 854, - [1442] = 855, - [1443] = 856, - [1444] = 857, - [1445] = 858, - [1446] = 859, - [1447] = 860, - [1448] = 861, - [1449] = 862, - [1450] = 863, - [1451] = 842, - [1452] = 846, - [1453] = 951, - [1454] = 952, - [1455] = 850, - [1456] = 851, - [1457] = 1457, - [1458] = 852, - [1459] = 840, - [1460] = 854, - [1461] = 855, - [1462] = 856, - [1463] = 857, - [1464] = 858, - [1465] = 859, - [1466] = 860, - [1467] = 861, - [1468] = 862, - [1469] = 863, - [1470] = 918, - [1471] = 842, - [1472] = 843, - [1473] = 846, - [1474] = 849, - [1475] = 852, - [1476] = 840, - [1477] = 854, - [1478] = 855, - [1479] = 856, - [1480] = 857, - [1481] = 858, - [1482] = 859, - [1483] = 860, - [1484] = 861, - [1485] = 862, - [1486] = 842, - [1487] = 843, - [1488] = 850, - [1489] = 851, - [1490] = 863, - [1491] = 846, - [1492] = 850, - [1493] = 851, - [1494] = 852, - [1495] = 840, - [1496] = 854, - [1497] = 855, - [1498] = 856, - [1499] = 857, - [1500] = 858, - [1501] = 859, - [1502] = 860, - [1503] = 861, - [1504] = 862, - [1505] = 863, - [1506] = 842, - [1507] = 846, - [1508] = 1508, - [1509] = 951, - [1510] = 952, - [1511] = 850, - [1512] = 851, - [1513] = 852, - [1514] = 840, - [1515] = 854, - [1516] = 855, - [1517] = 856, - [1518] = 857, - [1519] = 858, - [1520] = 859, - [1521] = 860, - [1522] = 861, - [1523] = 862, - [1524] = 863, - [1525] = 918, - [1526] = 842, - [1527] = 1527, - [1528] = 843, - [1529] = 846, - [1530] = 849, - [1531] = 852, - [1532] = 840, - [1533] = 854, - [1534] = 855, - [1535] = 856, - [1536] = 857, - [1537] = 858, - [1538] = 859, - [1539] = 860, - [1540] = 861, - [1541] = 862, - [1542] = 1542, - [1543] = 842, - [1544] = 850, - [1545] = 851, - [1546] = 863, - [1547] = 846, - [1548] = 951, - [1549] = 952, - [1550] = 850, - [1551] = 851, - [1552] = 852, - [1553] = 840, - [1554] = 854, - [1555] = 855, - [1556] = 856, - [1557] = 857, - [1558] = 858, - [1559] = 859, - [1560] = 860, - [1561] = 861, - [1562] = 862, - [1563] = 863, - [1564] = 918, - [1565] = 1565, - [1566] = 842, - [1567] = 843, - [1568] = 846, - [1569] = 849, - [1570] = 852, - [1571] = 840, - [1572] = 854, - [1573] = 855, - [1574] = 856, - [1575] = 857, - [1576] = 858, - [1577] = 859, - [1578] = 860, - [1579] = 861, - [1580] = 862, - [1581] = 842, - [1582] = 850, - [1583] = 851, - [1584] = 863, - [1585] = 846, - [1586] = 951, - [1587] = 952, - [1588] = 918, - [1589] = 849, - [1590] = 951, - [1591] = 952, - [1592] = 918, - [1593] = 849, - [1594] = 951, - [1595] = 952, - [1596] = 918, - [1597] = 849, - [1598] = 1598, - [1599] = 951, - [1600] = 952, - [1601] = 918, - [1602] = 849, - [1603] = 951, - [1604] = 952, - [1605] = 918, - [1606] = 849, - [1607] = 951, - [1608] = 952, - [1609] = 918, - [1610] = 849, - [1611] = 951, - [1612] = 952, - [1613] = 951, - [1614] = 952, - [1615] = 951, - [1616] = 952, - [1617] = 951, - [1618] = 952, - [1619] = 951, - [1620] = 952, - [1621] = 951, - [1622] = 952, - [1623] = 951, - [1624] = 952, - [1625] = 951, - [1626] = 952, - [1627] = 951, - [1628] = 952, - [1629] = 951, - [1630] = 952, - [1631] = 951, - [1632] = 952, - [1633] = 951, - [1634] = 952, - [1635] = 951, - [1636] = 952, - [1637] = 951, - [1638] = 952, - [1639] = 951, - [1640] = 952, - [1641] = 951, - [1642] = 952, - [1643] = 951, - [1644] = 952, - [1645] = 951, - [1646] = 952, - [1647] = 951, - [1648] = 952, - [1649] = 951, - [1650] = 951, - [1651] = 952, - [1652] = 1652, - [1653] = 1542, - [1654] = 1598, - [1655] = 1655, - [1656] = 1656, - [1657] = 844, - [1658] = 845, - [1659] = 847, - [1660] = 915, - [1661] = 843, - [1662] = 1662, - [1663] = 850, - [1664] = 851, - [1665] = 852, - [1666] = 840, - [1667] = 854, - [1668] = 855, - [1669] = 856, - [1670] = 857, - [1671] = 858, - [1672] = 859, - [1673] = 860, - [1674] = 861, - [1675] = 862, - [1676] = 863, - [1677] = 842, - [1678] = 846, - [1679] = 850, - [1680] = 851, - [1681] = 852, - [1682] = 840, - [1683] = 854, - [1684] = 855, - [1685] = 856, - [1686] = 857, - [1687] = 858, - [1688] = 859, - [1689] = 860, - [1690] = 861, - [1691] = 862, - [1692] = 863, - [1693] = 842, - [1694] = 846, - [1695] = 852, - [1696] = 840, - [1697] = 854, - [1698] = 855, - [1699] = 856, - [1700] = 857, - [1701] = 858, - [1702] = 859, - [1703] = 860, - [1704] = 861, - [1705] = 862, - [1706] = 842, - [1707] = 850, - [1708] = 851, - [1709] = 1655, - [1710] = 863, - [1711] = 846, - [1712] = 850, - [1713] = 851, - [1714] = 852, - [1715] = 840, - [1716] = 854, - [1717] = 855, - [1718] = 856, - [1719] = 857, - [1720] = 858, - [1721] = 859, - [1722] = 860, - [1723] = 861, - [1724] = 862, - [1725] = 863, - [1726] = 842, - [1727] = 846, - [1728] = 850, - [1729] = 851, - [1730] = 1656, - [1731] = 863, - [1732] = 846, - [1733] = 852, - [1734] = 840, - [1735] = 854, - [1736] = 855, - [1737] = 856, - [1738] = 857, - [1739] = 858, - [1740] = 859, - [1741] = 860, - [1742] = 861, - [1743] = 862, - [1744] = 842, - [1745] = 850, - [1746] = 851, - [1747] = 863, - [1748] = 846, - [1749] = 852, + [1422] = 847, + [1423] = 910, + [1424] = 911, + [1425] = 849, + [1426] = 850, + [1427] = 851, + [1428] = 852, + [1429] = 853, + [1430] = 854, + [1431] = 855, + [1432] = 856, + [1433] = 857, + [1434] = 858, + [1435] = 848, + [1436] = 841, + [1437] = 842, + [1438] = 840, + [1439] = 907, + [1440] = 845, + [1441] = 846, + [1442] = 847, + [1443] = 936, + [1444] = 851, + [1445] = 852, + [1446] = 853, + [1447] = 854, + [1448] = 855, + [1449] = 856, + [1450] = 857, + [1451] = 858, + [1452] = 848, + [1453] = 841, + [1454] = 842, + [1455] = 845, + [1456] = 849, + [1457] = 850, + [1458] = 840, + [1459] = 847, + [1460] = 849, + [1461] = 910, + [1462] = 911, + [1463] = 850, + [1464] = 1464, + [1465] = 907, + [1466] = 851, + [1467] = 936, + [1468] = 852, + [1469] = 853, + [1470] = 910, + [1471] = 911, + [1472] = 854, + [1473] = 907, + [1474] = 855, + [1475] = 936, + [1476] = 856, + [1477] = 857, + [1478] = 910, + [1479] = 911, + [1480] = 858, + [1481] = 907, + [1482] = 1482, + [1483] = 936, + [1484] = 848, + [1485] = 841, + [1486] = 910, + [1487] = 911, + [1488] = 842, + [1489] = 907, + [1490] = 1490, + [1491] = 936, + [1492] = 840, + [1493] = 910, + [1494] = 911, + [1495] = 907, + [1496] = 845, + [1497] = 936, + [1498] = 846, + [1499] = 910, + [1500] = 911, + [1501] = 907, + [1502] = 936, + [1503] = 910, + [1504] = 911, + [1505] = 910, + [1506] = 911, + [1507] = 910, + [1508] = 911, + [1509] = 910, + [1510] = 911, + [1511] = 910, + [1512] = 911, + [1513] = 910, + [1514] = 911, + [1515] = 910, + [1516] = 911, + [1517] = 910, + [1518] = 911, + [1519] = 910, + [1520] = 911, + [1521] = 910, + [1522] = 911, + [1523] = 910, + [1524] = 911, + [1525] = 910, + [1526] = 911, + [1527] = 910, + [1528] = 911, + [1529] = 910, + [1530] = 911, + [1531] = 910, + [1532] = 911, + [1533] = 910, + [1534] = 911, + [1535] = 910, + [1536] = 911, + [1537] = 910, + [1538] = 911, + [1539] = 910, + [1540] = 911, + [1541] = 910, + [1542] = 847, + [1543] = 910, + [1544] = 911, + [1545] = 1545, + [1546] = 1546, + [1547] = 1187, + [1548] = 1223, + [1549] = 1366, + [1550] = 1377, + [1551] = 1546, + [1552] = 1552, + [1553] = 1553, + [1554] = 849, + [1555] = 906, + [1556] = 850, + [1557] = 851, + [1558] = 852, + [1559] = 846, + [1560] = 853, + [1561] = 854, + [1562] = 855, + [1563] = 856, + [1564] = 857, + [1565] = 858, + [1566] = 849, + [1567] = 850, + [1568] = 851, + [1569] = 852, + [1570] = 853, + [1571] = 854, + [1572] = 855, + [1573] = 856, + [1574] = 857, + [1575] = 858, + [1576] = 848, + [1577] = 841, + [1578] = 842, + [1579] = 840, + [1580] = 848, + [1581] = 845, + [1582] = 847, + [1583] = 849, + [1584] = 850, + [1585] = 851, + [1586] = 852, + [1587] = 853, + [1588] = 854, + [1589] = 855, + [1590] = 856, + [1591] = 857, + [1592] = 858, + [1593] = 841, + [1594] = 848, + [1595] = 841, + [1596] = 842, + [1597] = 840, + [1598] = 842, + [1599] = 845, + [1600] = 840, + [1601] = 847, + [1602] = 1552, + [1603] = 845, + [1604] = 851, + [1605] = 852, + [1606] = 853, + [1607] = 854, + [1608] = 855, + [1609] = 856, + [1610] = 857, + [1611] = 858, + [1612] = 848, + [1613] = 841, + [1614] = 842, + [1615] = 845, + [1616] = 849, + [1617] = 850, + [1618] = 846, + [1619] = 840, + [1620] = 847, + [1621] = 847, + [1622] = 849, + [1623] = 850, + [1624] = 851, + [1625] = 852, + [1626] = 853, + [1627] = 854, + [1628] = 855, + [1629] = 856, + [1630] = 857, + [1631] = 858, + [1632] = 848, + [1633] = 841, + [1634] = 842, + [1635] = 840, + [1636] = 845, + [1637] = 847, + [1638] = 849, + [1639] = 850, + [1640] = 849, + [1641] = 840, + [1642] = 850, + [1643] = 847, + [1644] = 851, + [1645] = 852, + [1646] = 853, + [1647] = 854, + [1648] = 855, + [1649] = 856, + [1650] = 857, + [1651] = 858, + [1652] = 848, + [1653] = 841, + [1654] = 842, + [1655] = 845, + [1656] = 849, + [1657] = 850, + [1658] = 1658, + [1659] = 851, + [1660] = 840, + [1661] = 852, + [1662] = 847, + [1663] = 851, + [1664] = 852, + [1665] = 853, + [1666] = 854, + [1667] = 855, + [1668] = 856, + [1669] = 857, + [1670] = 858, + [1671] = 848, + [1672] = 841, + [1673] = 842, + [1674] = 845, + [1675] = 853, + [1676] = 849, + [1677] = 850, + [1678] = 854, + [1679] = 840, + [1680] = 910, + [1681] = 855, + [1682] = 907, + [1683] = 856, + [1684] = 857, + [1685] = 858, + [1686] = 936, + [1687] = 910, + [1688] = 848, + [1689] = 910, + [1690] = 841, + [1691] = 842, + [1692] = 840, + [1693] = 1553, + [1694] = 910, + [1695] = 910, + [1696] = 845, + [1697] = 1697, + [1698] = 1187, + [1699] = 1223, + [1700] = 1366, + [1701] = 1377, + [1702] = 1546, + [1703] = 1552, + [1704] = 1553, + [1705] = 847, + [1706] = 1706, + [1707] = 910, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 847, + [1712] = 910, + [1713] = 1187, + [1714] = 1223, + [1715] = 1366, + [1716] = 1377, + [1717] = 1546, + [1718] = 1552, + [1719] = 1553, + [1720] = 1187, + [1721] = 1552, + [1722] = 1553, + [1723] = 1723, + [1724] = 1187, + [1725] = 1552, + [1726] = 1553, + [1727] = 1727, + [1728] = 1728, + [1729] = 910, + [1730] = 911, + [1731] = 936, + [1732] = 1732, + [1733] = 1733, + [1734] = 849, + [1735] = 850, + [1736] = 1736, + [1737] = 1737, + [1738] = 851, + [1739] = 852, + [1740] = 853, + [1741] = 854, + [1742] = 855, + [1743] = 856, + [1744] = 857, + [1745] = 858, + [1746] = 911, + [1747] = 848, + [1748] = 841, + [1749] = 842, [1750] = 840, - [1751] = 854, - [1752] = 855, - [1753] = 856, - [1754] = 857, - [1755] = 858, - [1756] = 859, - [1757] = 860, - [1758] = 861, - [1759] = 862, - [1760] = 842, - [1761] = 850, - [1762] = 851, - [1763] = 863, - [1764] = 951, - [1765] = 918, - [1766] = 849, - [1767] = 951, - [1768] = 951, - [1769] = 951, - [1770] = 951, - [1771] = 1771, - [1772] = 1542, - [1773] = 1598, - [1774] = 1655, - [1775] = 1656, - [1776] = 844, - [1777] = 845, - [1778] = 847, - [1779] = 1779, - [1780] = 951, - [1781] = 1542, - [1782] = 1598, - [1783] = 1655, - [1784] = 1656, - [1785] = 844, - [1786] = 845, - [1787] = 847, - [1788] = 1542, - [1789] = 845, - [1790] = 847, - [1791] = 1791, - [1792] = 1542, - [1793] = 845, - [1794] = 847, - [1795] = 951, - [1796] = 952, - [1797] = 852, - [1798] = 840, - [1799] = 854, - [1800] = 855, - [1801] = 856, - [1802] = 857, - [1803] = 858, - [1804] = 859, - [1805] = 860, - [1806] = 861, - [1807] = 862, - [1808] = 915, - [1809] = 918, - [1810] = 850, - [1811] = 842, - [1812] = 851, - [1813] = 1126, - [1814] = 846, - [1815] = 849, - [1816] = 951, - [1817] = 918, - [1818] = 849, - [1819] = 850, - [1820] = 851, - [1821] = 863, - [1822] = 843, - [1823] = 846, - [1824] = 852, - [1825] = 840, - [1826] = 854, - [1827] = 855, - [1828] = 856, - [1829] = 857, - [1830] = 858, - [1831] = 859, - [1832] = 860, - [1833] = 861, - [1834] = 862, - [1835] = 842, - [1836] = 850, - [1837] = 851, - [1838] = 852, - [1839] = 840, - [1840] = 854, - [1841] = 855, - [1842] = 856, - [1843] = 857, - [1844] = 858, - [1845] = 859, - [1846] = 860, - [1847] = 861, - [1848] = 862, - [1849] = 863, - [1850] = 842, - [1851] = 846, - [1852] = 951, - [1853] = 918, - [1854] = 849, - [1855] = 850, - [1856] = 851, - [1857] = 863, - [1858] = 846, - [1859] = 852, - [1860] = 840, - [1861] = 854, + [1751] = 907, + [1752] = 845, + [1753] = 1753, + [1754] = 851, + [1755] = 1183, + [1756] = 852, + [1757] = 853, + [1758] = 854, + [1759] = 855, + [1760] = 856, + [1761] = 857, + [1762] = 858, + [1763] = 1185, + [1764] = 848, + [1765] = 841, + [1766] = 842, + [1767] = 906, + [1768] = 907, + [1769] = 1769, + [1770] = 845, + [1771] = 1490, + [1772] = 847, + [1773] = 936, + [1774] = 910, + [1775] = 907, + [1776] = 936, + [1777] = 846, + [1778] = 849, + [1779] = 850, + [1780] = 1780, + [1781] = 840, + [1782] = 1782, + [1783] = 846, + [1784] = 847, + [1785] = 851, + [1786] = 852, + [1787] = 853, + [1788] = 854, + [1789] = 855, + [1790] = 856, + [1791] = 857, + [1792] = 858, + [1793] = 848, + [1794] = 841, + [1795] = 842, + [1796] = 845, + [1797] = 849, + [1798] = 850, + [1799] = 851, + [1800] = 852, + [1801] = 853, + [1802] = 854, + [1803] = 855, + [1804] = 856, + [1805] = 857, + [1806] = 858, + [1807] = 1545, + [1808] = 848, + [1809] = 841, + [1810] = 842, + [1811] = 840, + [1812] = 845, + [1813] = 1708, + [1814] = 847, + [1815] = 1709, + [1816] = 1710, + [1817] = 847, + [1818] = 851, + [1819] = 910, + [1820] = 936, + [1821] = 1821, + [1822] = 907, + [1823] = 936, + [1824] = 849, + [1825] = 850, + [1826] = 1826, + [1827] = 840, + [1828] = 1821, + [1829] = 847, + [1830] = 851, + [1831] = 852, + [1832] = 853, + [1833] = 854, + [1834] = 855, + [1835] = 856, + [1836] = 857, + [1837] = 858, + [1838] = 848, + [1839] = 841, + [1840] = 842, + [1841] = 845, + [1842] = 1842, + [1843] = 1826, + [1844] = 852, + [1845] = 907, + [1846] = 936, + [1847] = 853, + [1848] = 910, + [1849] = 910, + [1850] = 910, + [1851] = 906, + [1852] = 854, + [1853] = 910, + [1854] = 911, + [1855] = 855, + [1856] = 856, + [1857] = 851, + [1858] = 852, + [1859] = 853, + [1860] = 854, + [1861] = 906, [1862] = 855, - [1863] = 856, - [1864] = 857, - [1865] = 858, - [1866] = 859, - [1867] = 860, - [1868] = 861, - [1869] = 862, + [1863] = 1490, + [1864] = 856, + [1865] = 857, + [1866] = 858, + [1867] = 848, + [1868] = 841, + [1869] = 906, [1870] = 842, - [1871] = 918, - [1872] = 849, - [1873] = 951, - [1874] = 951, - [1875] = 951, - [1876] = 915, - [1877] = 915, - [1878] = 1126, - [1879] = 915, - [1880] = 852, - [1881] = 1126, - [1882] = 840, - [1883] = 915, - [1884] = 854, - [1885] = 855, - [1886] = 856, - [1887] = 915, - [1888] = 857, - [1889] = 858, - [1890] = 859, - [1891] = 915, - [1892] = 860, - [1893] = 861, - [1894] = 915, - [1895] = 862, - [1896] = 1896, - [1897] = 915, - [1898] = 915, - [1899] = 915, - [1900] = 863, - [1901] = 915, - [1902] = 915, - [1903] = 915, - [1904] = 915, - [1905] = 915, - [1906] = 915, - [1907] = 915, - [1908] = 915, - [1909] = 918, - [1910] = 841, - [1911] = 841, - [1912] = 841, - [1913] = 841, - [1914] = 862, + [1871] = 1490, + [1872] = 857, + [1873] = 845, + [1874] = 906, + [1875] = 858, + [1876] = 849, + [1877] = 850, + [1878] = 906, + [1879] = 906, + [1880] = 1880, + [1881] = 840, + [1882] = 1882, + [1883] = 906, + [1884] = 846, + [1885] = 847, + [1886] = 906, + [1887] = 906, + [1888] = 849, + [1889] = 906, + [1890] = 850, + [1891] = 906, + [1892] = 851, + [1893] = 906, + [1894] = 906, + [1895] = 906, + [1896] = 906, + [1897] = 906, + [1898] = 906, + [1899] = 906, + [1900] = 852, + [1901] = 1706, + [1902] = 853, + [1903] = 854, + [1904] = 855, + [1905] = 856, + [1906] = 1706, + [1907] = 1706, + [1908] = 1706, + [1909] = 1706, + [1910] = 857, + [1911] = 858, + [1912] = 906, + [1913] = 848, + [1914] = 854, [1915] = 1915, [1916] = 1916, - [1917] = 1915, - [1918] = 1916, + [1917] = 1916, + [1918] = 1915, [1919] = 1915, [1920] = 1916, [1921] = 1921, @@ -6678,11 +6685,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1932] = 1932, [1933] = 1933, [1934] = 1934, - [1935] = 1929, - [1936] = 1927, + [1935] = 1928, + [1936] = 1932, [1937] = 1937, - [1938] = 1934, - [1939] = 1939, + [1938] = 1938, + [1939] = 1934, [1940] = 1940, [1941] = 1941, [1942] = 1942, @@ -6690,17 +6697,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1944] = 1944, [1945] = 1945, [1946] = 1946, - [1947] = 1939, + [1947] = 1947, [1948] = 1948, [1949] = 1949, [1950] = 1950, [1951] = 1951, [1952] = 1952, - [1953] = 1953, + [1953] = 1941, [1954] = 1954, [1955] = 1955, - [1956] = 1956, - [1957] = 1957, + [1956] = 1938, + [1957] = 1937, [1958] = 1958, [1959] = 1959, [1960] = 1960, @@ -6718,24 +6725,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1972] = 1972, [1973] = 1973, [1974] = 1974, - [1975] = 1975, + [1975] = 1942, [1976] = 1976, [1977] = 1977, [1978] = 1978, - [1979] = 1941, + [1979] = 1979, [1980] = 1980, [1981] = 1981, [1982] = 1982, - [1983] = 1942, - [1984] = 1984, + [1983] = 1983, + [1984] = 1940, [1985] = 1985, [1986] = 1986, [1987] = 1987, - [1988] = 1937, + [1988] = 1988, [1989] = 1989, [1990] = 1990, [1991] = 1991, - [1992] = 1940, + [1992] = 1992, [1993] = 1993, [1994] = 1994, [1995] = 1995, @@ -6762,138 +6769,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2016] = 2016, [2017] = 2017, [2018] = 2018, - [2019] = 1967, - [2020] = 1975, - [2021] = 1957, - [2022] = 1954, - [2023] = 1945, - [2024] = 1981, - [2025] = 1962, - [2026] = 1976, - [2027] = 1943, - [2028] = 1982, - [2029] = 1977, - [2030] = 1984, - [2031] = 1993, - [2032] = 1965, - [2033] = 1989, - [2034] = 1944, - [2035] = 1990, - [2036] = 1946, - [2037] = 1969, - [2038] = 1968, - [2039] = 1985, - [2040] = 1958, - [2041] = 1959, - [2042] = 1978, - [2043] = 1966, - [2044] = 1980, - [2045] = 1970, - [2046] = 1971, - [2047] = 1963, - [2048] = 1948, - [2049] = 1949, - [2050] = 1972, - [2051] = 1950, - [2052] = 1973, - [2053] = 1956, - [2054] = 1951, - [2055] = 1961, - [2056] = 1952, - [2057] = 1964, - [2058] = 1953, - [2059] = 1927, - [2060] = 1929, - [2061] = 1960, - [2062] = 2062, - [2063] = 1991, - [2064] = 1974, - [2065] = 1986, - [2066] = 1987, - [2067] = 1955, - [2068] = 2006, - [2069] = 2069, - [2070] = 2070, - [2071] = 2001, - [2072] = 1999, - [2073] = 2016, - [2074] = 2005, - [2075] = 2015, - [2076] = 1934, - [2077] = 2014, - [2078] = 2000, - [2079] = 1994, - [2080] = 2018, - [2081] = 2017, - [2082] = 2007, - [2083] = 1997, - [2084] = 2002, + [2019] = 1985, + [2020] = 1948, + [2021] = 1983, + [2022] = 1976, + [2023] = 1943, + [2024] = 1965, + [2025] = 1993, + [2026] = 1962, + [2027] = 1974, + [2028] = 1989, + [2029] = 1954, + [2030] = 1949, + [2031] = 1986, + [2032] = 1972, + [2033] = 1992, + [2034] = 1928, + [2035] = 1979, + [2036] = 1970, + [2037] = 1971, + [2038] = 1991, + [2039] = 1950, + [2040] = 1961, + [2041] = 2041, + [2042] = 1959, + [2043] = 1987, + [2044] = 1951, + [2045] = 1945, + [2046] = 1958, + [2047] = 1952, + [2048] = 1946, + [2049] = 1977, + [2050] = 1967, + [2051] = 1978, + [2052] = 1932, + [2053] = 1960, + [2054] = 1969, + [2055] = 1966, + [2056] = 1964, + [2057] = 1973, + [2058] = 1944, + [2059] = 1988, + [2060] = 1947, + [2061] = 1990, + [2062] = 1955, + [2063] = 1981, + [2064] = 1963, + [2065] = 1982, + [2066] = 1968, + [2067] = 1980, + [2068] = 2002, + [2069] = 1995, + [2070] = 1994, + [2071] = 2012, + [2072] = 2006, + [2073] = 2018, + [2074] = 1997, + [2075] = 2075, + [2076] = 2009, + [2077] = 2007, + [2078] = 2078, + [2079] = 2010, + [2080] = 2080, + [2081] = 1996, + [2082] = 2001, + [2083] = 1934, + [2084] = 1998, [2085] = 2008, - [2086] = 2009, - [2087] = 1995, - [2088] = 1998, - [2089] = 2089, - [2090] = 2090, - [2091] = 2010, - [2092] = 2011, - [2093] = 2012, - [2094] = 2013, - [2095] = 1996, - [2096] = 1939, - [2097] = 1941, + [2086] = 2005, + [2087] = 2004, + [2088] = 2003, + [2089] = 2014, + [2090] = 2016, + [2091] = 1999, + [2092] = 2013, + [2093] = 2093, + [2094] = 2000, + [2095] = 2015, + [2096] = 1938, + [2097] = 1940, [2098] = 1942, - [2099] = 1937, - [2100] = 1940, + [2099] = 1941, + [2100] = 1937, [2101] = 2101, - [2102] = 1959, - [2103] = 1977, - [2104] = 1963, - [2105] = 1961, - [2106] = 1954, + [2102] = 1990, + [2103] = 1958, + [2104] = 1977, + [2105] = 1943, + [2106] = 1981, [2107] = 1965, - [2108] = 1956, - [2109] = 1962, - [2110] = 1966, - [2111] = 1957, - [2112] = 1993, - [2113] = 1968, - [2114] = 1945, - [2115] = 1969, + [2108] = 1982, + [2109] = 1985, + [2110] = 1978, + [2111] = 1983, + [2112] = 1992, + [2113] = 1962, + [2114] = 1951, + [2115] = 1947, [2116] = 1970, - [2117] = 1943, - [2118] = 1971, - [2119] = 1978, - [2120] = 1972, - [2121] = 1973, - [2122] = 1980, - [2123] = 1958, - [2124] = 1974, - [2125] = 1981, - [2126] = 1982, - [2127] = 1984, - [2128] = 1946, - [2129] = 1985, - [2130] = 1948, - [2131] = 1949, - [2132] = 1950, - [2133] = 1951, - [2134] = 1975, - [2135] = 1952, - [2136] = 1986, - [2137] = 1953, - [2138] = 1987, - [2139] = 1989, - [2140] = 1990, - [2141] = 1991, - [2142] = 1967, + [2117] = 1986, + [2118] = 1963, + [2119] = 1945, + [2120] = 1971, + [2121] = 1952, + [2122] = 1967, + [2123] = 1946, + [2124] = 1959, + [2125] = 1960, + [2126] = 1954, + [2127] = 1989, + [2128] = 1979, + [2129] = 1991, + [2130] = 1987, + [2131] = 1964, + [2132] = 1944, + [2133] = 1988, + [2134] = 1966, + [2135] = 1948, + [2136] = 1976, + [2137] = 1949, + [2138] = 1980, + [2139] = 1968, + [2140] = 1950, + [2141] = 1961, + [2142] = 1974, [2143] = 1955, - [2144] = 1976, - [2145] = 1964, - [2146] = 1944, - [2147] = 1960, - [2148] = 2148, - [2149] = 2101, - [2150] = 2062, + [2144] = 1993, + [2145] = 1972, + [2146] = 1973, + [2147] = 1969, + [2148] = 2101, + [2149] = 2149, + [2150] = 2041, [2151] = 2151, [2152] = 2152, [2153] = 2153, @@ -6918,4015 +6925,4015 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2172] = 2172, [2173] = 2173, [2174] = 2174, - [2175] = 2174, - [2176] = 2174, - [2177] = 2177, - [2178] = 2174, - [2179] = 2174, - [2180] = 2174, - [2181] = 2177, + [2175] = 2173, + [2176] = 2173, + [2177] = 2173, + [2178] = 2178, + [2179] = 2173, + [2180] = 2178, + [2181] = 2173, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2174, + [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2174, + [2188] = 2173, [2189] = 2189, - [2190] = 2190, + [2190] = 2173, [2191] = 2191, - [2192] = 2192, - [2193] = 2191, + [2192] = 2191, + [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2195, - [2197] = 2197, - [2198] = 2197, - [2199] = 2199, - [2200] = 2197, - [2201] = 2197, - [2202] = 2177, + [2197] = 2195, + [2198] = 2198, + [2199] = 2198, + [2200] = 2195, + [2201] = 2201, + [2202] = 2178, [2203] = 2194, - [2204] = 2204, - [2205] = 2197, - [2206] = 2197, - [2207] = 2199, - [2208] = 2177, - [2209] = 1915, - [2210] = 2174, - [2211] = 2199, - [2212] = 2174, - [2213] = 2177, - [2214] = 2214, - [2215] = 2194, - [2216] = 2216, + [2204] = 2195, + [2205] = 2201, + [2206] = 2195, + [2207] = 2207, + [2208] = 2178, + [2209] = 2173, + [2210] = 1916, + [2211] = 2173, + [2212] = 2201, + [2213] = 2173, + [2214] = 2178, + [2215] = 2215, + [2216] = 2194, [2217] = 2191, - [2218] = 2177, - [2219] = 2174, - [2220] = 2177, - [2221] = 2177, + [2218] = 2218, + [2219] = 2178, + [2220] = 2178, + [2221] = 2201, [2222] = 2222, - [2223] = 2223, - [2224] = 2177, - [2225] = 2199, - [2226] = 2174, - [2227] = 2194, - [2228] = 2228, - [2229] = 2223, - [2230] = 2177, - [2231] = 2231, - [2232] = 2191, - [2233] = 2177, - [2234] = 2197, + [2223] = 2195, + [2224] = 2224, + [2225] = 2225, + [2226] = 2178, + [2227] = 2178, + [2228] = 2178, + [2229] = 2191, + [2230] = 2178, + [2231] = 2173, + [2232] = 2232, + [2233] = 2233, + [2234] = 2194, [2235] = 2235, - [2236] = 2236, - [2237] = 2177, - [2238] = 2195, - [2239] = 2195, - [2240] = 2194, - [2241] = 2199, - [2242] = 2174, - [2243] = 2243, - [2244] = 2183, - [2245] = 2245, - [2246] = 2182, - [2247] = 2243, - [2248] = 2197, - [2249] = 2199, - [2250] = 2250, - [2251] = 2192, - [2252] = 2191, - [2253] = 2191, - [2254] = 2183, - [2255] = 2245, - [2256] = 2182, - [2257] = 2243, - [2258] = 2243, - [2259] = 2189, - [2260] = 2194, - [2261] = 2261, - [2262] = 2197, - [2263] = 2263, + [2236] = 2178, + [2237] = 2224, + [2238] = 2198, + [2239] = 2194, + [2240] = 2173, + [2241] = 2198, + [2242] = 2242, + [2243] = 2183, + [2244] = 2182, + [2245] = 2201, + [2246] = 2246, + [2247] = 2195, + [2248] = 2242, + [2249] = 2246, + [2250] = 2242, + [2251] = 2201, + [2252] = 2183, + [2253] = 2242, + [2254] = 2182, + [2255] = 2191, + [2256] = 2191, + [2257] = 2257, + [2258] = 2193, + [2259] = 2201, + [2260] = 2198, + [2261] = 2195, + [2262] = 2201, + [2263] = 2201, [2264] = 2195, - [2265] = 2197, - [2266] = 2199, - [2267] = 2197, - [2268] = 2195, - [2269] = 2186, - [2270] = 2190, - [2271] = 2199, - [2272] = 2199, - [2273] = 2273, - [2274] = 2197, - [2275] = 2183, - [2276] = 2199, - [2277] = 2191, - [2278] = 2250, - [2279] = 2182, - [2280] = 2197, - [2281] = 2197, - [2282] = 2191, - [2283] = 2184, - [2284] = 2284, - [2285] = 2187, - [2286] = 2194, - [2287] = 2197, - [2288] = 2261, - [2289] = 2195, - [2290] = 2195, + [2265] = 2195, + [2266] = 2195, + [2267] = 2195, + [2268] = 2191, + [2269] = 2269, + [2270] = 2194, + [2271] = 2191, + [2272] = 2187, + [2273] = 2184, + [2274] = 2189, + [2275] = 2185, + [2276] = 2186, + [2277] = 2257, + [2278] = 2278, + [2279] = 2279, + [2280] = 2198, + [2281] = 2183, + [2282] = 2182, + [2283] = 2283, + [2284] = 2201, + [2285] = 2195, + [2286] = 2198, + [2287] = 2269, + [2288] = 2195, + [2289] = 2289, + [2290] = 2173, [2291] = 2291, - [2292] = 2195, - [2293] = 2197, - [2294] = 2294, + [2292] = 2292, + [2293] = 2293, + [2294] = 2195, [2295] = 2295, - [2296] = 2197, - [2297] = 2297, - [2298] = 2174, - [2299] = 2194, - [2300] = 2300, - [2301] = 2301, - [2302] = 2195, - [2303] = 2273, - [2304] = 2284, - [2305] = 2199, - [2306] = 2197, + [2296] = 2278, + [2297] = 2194, + [2298] = 2298, + [2299] = 2198, + [2300] = 2198, + [2301] = 2194, + [2302] = 2279, + [2303] = 2195, + [2304] = 2198, + [2305] = 2198, + [2306] = 2194, [2307] = 2307, - [2308] = 2308, - [2309] = 2250, - [2310] = 2195, - [2311] = 2311, + [2308] = 2195, + [2309] = 2257, + [2310] = 2310, + [2311] = 2195, [2312] = 2312, [2313] = 2313, - [2314] = 2199, - [2315] = 2195, - [2316] = 2197, - [2317] = 2197, - [2318] = 2318, - [2319] = 2174, - [2320] = 2199, - [2321] = 2197, - [2322] = 2250, - [2323] = 2323, - [2324] = 2195, + [2314] = 2314, + [2315] = 2173, + [2316] = 2201, + [2317] = 2195, + [2318] = 2201, + [2319] = 2198, + [2320] = 2195, + [2321] = 2321, + [2322] = 2322, + [2323] = 2257, + [2324] = 2324, [2325] = 2325, - [2326] = 2194, - [2327] = 2327, - [2328] = 2197, - [2329] = 2329, - [2330] = 2273, - [2331] = 2312, - [2332] = 2325, - [2333] = 2195, - [2334] = 2199, - [2335] = 2318, - [2336] = 2327, - [2337] = 2197, - [2338] = 2197, - [2339] = 2195, + [2326] = 2201, + [2327] = 2198, + [2328] = 2195, + [2329] = 2195, + [2330] = 2198, + [2331] = 2283, + [2332] = 2312, + [2333] = 2173, + [2334] = 2334, + [2335] = 2314, + [2336] = 2195, + [2337] = 2337, + [2338] = 2313, + [2339] = 2198, [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2343, + [2343] = 2325, [2344] = 2344, [2345] = 2195, - [2346] = 2273, - [2347] = 2174, - [2348] = 2195, - [2349] = 2263, - [2350] = 2199, - [2351] = 2197, - [2352] = 2311, + [2346] = 2195, + [2347] = 2321, + [2348] = 2201, + [2349] = 2349, + [2350] = 2195, + [2351] = 2310, + [2352] = 2195, [2353] = 2195, - [2354] = 2195, - [2355] = 2355, - [2356] = 2174, - [2357] = 2197, - [2358] = 2197, - [2359] = 2197, - [2360] = 2197, - [2361] = 2197, - [2362] = 2197, - [2363] = 2197, - [2364] = 2195, - [2365] = 2365, - [2366] = 2366, - [2367] = 2308, - [2368] = 2323, - [2369] = 2307, - [2370] = 2195, + [2354] = 2198, + [2355] = 2198, + [2356] = 2173, + [2357] = 2198, + [2358] = 2358, + [2359] = 2359, + [2360] = 2195, + [2361] = 2198, + [2362] = 2195, + [2363] = 2201, + [2364] = 2269, + [2365] = 2324, + [2366] = 2195, + [2367] = 2322, + [2368] = 2198, + [2369] = 2198, + [2370] = 2269, [2371] = 2371, - [2372] = 2183, - [2373] = 2373, - [2374] = 2199, - [2375] = 2371, - [2376] = 2376, + [2372] = 2173, + [2373] = 2183, + [2374] = 2182, + [2375] = 2195, + [2376] = 2201, [2377] = 2194, - [2378] = 2182, - [2379] = 2197, - [2380] = 2199, - [2381] = 2197, - [2382] = 2174, - [2383] = 2192, - [2384] = 2174, - [2385] = 2174, - [2386] = 2184, - [2387] = 2245, - [2388] = 2199, - [2389] = 2197, - [2390] = 2199, - [2391] = 2391, - [2392] = 2197, + [2378] = 2173, + [2379] = 2379, + [2380] = 2193, + [2381] = 2201, + [2382] = 2382, + [2383] = 2195, + [2384] = 2371, + [2385] = 2173, + [2386] = 2195, + [2387] = 2195, + [2388] = 2195, + [2389] = 2201, + [2390] = 2246, + [2391] = 2201, + [2392] = 2201, [2393] = 2393, - [2394] = 2243, - [2395] = 2245, - [2396] = 2187, - [2397] = 2397, - [2398] = 2174, - [2399] = 2199, - [2400] = 2199, - [2401] = 2199, - [2402] = 2197, - [2403] = 2243, - [2404] = 2174, - [2405] = 2174, - [2406] = 2199, - [2407] = 2192, + [2394] = 2173, + [2395] = 2395, + [2396] = 2396, + [2397] = 2201, + [2398] = 2398, + [2399] = 2399, + [2400] = 2195, + [2401] = 2201, + [2402] = 2193, + [2403] = 2403, + [2404] = 2195, + [2405] = 2405, + [2406] = 2195, + [2407] = 2407, [2408] = 2408, - [2409] = 2409, - [2410] = 2197, - [2411] = 2197, - [2412] = 2243, - [2413] = 2197, - [2414] = 2197, + [2409] = 2201, + [2410] = 2186, + [2411] = 2411, + [2412] = 2412, + [2413] = 2413, + [2414] = 2195, [2415] = 2415, - [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 2199, - [2420] = 2420, + [2416] = 2242, + [2417] = 2173, + [2418] = 2187, + [2419] = 2184, + [2420] = 2246, [2421] = 2421, - [2422] = 2422, + [2422] = 2242, [2423] = 2423, - [2424] = 2189, + [2424] = 2424, [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2186, - [2429] = 2418, - [2430] = 2199, - [2431] = 2243, - [2432] = 2190, - [2433] = 2197, - [2434] = 2434, - [2435] = 2435, - [2436] = 2184, + [2426] = 2201, + [2427] = 2415, + [2428] = 2428, + [2429] = 2242, + [2430] = 2201, + [2431] = 2185, + [2432] = 2189, + [2433] = 2173, + [2434] = 2242, + [2435] = 2195, + [2436] = 2182, [2437] = 2437, - [2438] = 2174, - [2439] = 2190, + [2438] = 2438, + [2439] = 2439, [2440] = 2440, - [2441] = 2441, - [2442] = 2174, - [2443] = 2174, - [2444] = 2174, - [2445] = 2174, - [2446] = 2174, - [2447] = 2447, - [2448] = 2187, - [2449] = 2183, + [2441] = 2173, + [2442] = 2442, + [2443] = 2443, + [2444] = 2173, + [2445] = 2445, + [2446] = 2446, + [2447] = 2445, + [2448] = 2448, + [2449] = 2445, [2450] = 2450, - [2451] = 2174, - [2452] = 2182, - [2453] = 2453, - [2454] = 2454, - [2455] = 2455, - [2456] = 2456, - [2457] = 2189, + [2451] = 2173, + [2452] = 2452, + [2453] = 2184, + [2454] = 2189, + [2455] = 2185, + [2456] = 2186, + [2457] = 2457, [2458] = 2458, - [2459] = 2459, + [2459] = 2173, [2460] = 2460, [2461] = 2461, - [2462] = 2462, + [2462] = 2173, [2463] = 2463, - [2464] = 2186, + [2464] = 2464, [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2468, - [2470] = 2174, + [2466] = 2173, + [2467] = 2183, + [2468] = 2173, + [2469] = 2469, + [2470] = 2173, [2471] = 2471, - [2472] = 2468, - [2473] = 2243, - [2474] = 2243, - [2475] = 2243, - [2476] = 2458, - [2477] = 2243, - [2478] = 2243, - [2479] = 2245, - [2480] = 2450, - [2481] = 2243, - [2482] = 2245, - [2483] = 2459, - [2484] = 2471, - [2485] = 2245, - [2486] = 2245, - [2487] = 2243, - [2488] = 2243, - [2489] = 2243, - [2490] = 2466, - [2491] = 2440, - [2492] = 2243, - [2493] = 2243, - [2494] = 2245, - [2495] = 2447, - [2496] = 2243, - [2497] = 2245, - [2498] = 2437, - [2499] = 2245, - [2500] = 2245, - [2501] = 2243, - [2502] = 2455, - [2503] = 2243, - [2504] = 2245, - [2505] = 2174, - [2506] = 2243, - [2507] = 2261, - [2508] = 2245, - [2509] = 2509, - [2510] = 2284, - [2511] = 2261, - [2512] = 2243, - [2513] = 2243, - [2514] = 2245, - [2515] = 2243, - [2516] = 2245, - [2517] = 2174, - [2518] = 2245, - [2519] = 2243, - [2520] = 2174, - [2521] = 2243, - [2522] = 2243, - [2523] = 2243, - [2524] = 2243, - [2525] = 2245, - [2526] = 2243, - [2527] = 2174, - [2528] = 2243, - [2529] = 2174, - [2530] = 2174, - [2531] = 2243, - [2532] = 2243, - [2533] = 2509, - [2534] = 2243, - [2535] = 2243, - [2536] = 2245, - [2537] = 2243, - [2538] = 2284, - [2539] = 2245, - [2540] = 2245, - [2541] = 2228, + [2472] = 2187, + [2473] = 2242, + [2474] = 2443, + [2475] = 2242, + [2476] = 2242, + [2477] = 2471, + [2478] = 2242, + [2479] = 2463, + [2480] = 2242, + [2481] = 2246, + [2482] = 2242, + [2483] = 2242, + [2484] = 2246, + [2485] = 2246, + [2486] = 2242, + [2487] = 2452, + [2488] = 2246, + [2489] = 2246, + [2490] = 2242, + [2491] = 2439, + [2492] = 2437, + [2493] = 2246, + [2494] = 2246, + [2495] = 2458, + [2496] = 2242, + [2497] = 2246, + [2498] = 2242, + [2499] = 2242, + [2500] = 2469, + [2501] = 2242, + [2502] = 2242, + [2503] = 2457, + [2504] = 2246, + [2505] = 2242, + [2506] = 2242, + [2507] = 2242, + [2508] = 2246, + [2509] = 2242, + [2510] = 2510, + [2511] = 2242, + [2512] = 2173, + [2513] = 2173, + [2514] = 2246, + [2515] = 2173, + [2516] = 2278, + [2517] = 2279, + [2518] = 2242, + [2519] = 2242, + [2520] = 2173, + [2521] = 2242, + [2522] = 2246, + [2523] = 2246, + [2524] = 2242, + [2525] = 2246, + [2526] = 2242, + [2527] = 2278, + [2528] = 2242, + [2529] = 2279, + [2530] = 2242, + [2531] = 2242, + [2532] = 2510, + [2533] = 2242, + [2534] = 2246, + [2535] = 2242, + [2536] = 2242, + [2537] = 2246, + [2538] = 2173, + [2539] = 2173, + [2540] = 2246, + [2541] = 2541, [2542] = 2542, - [2543] = 2261, - [2544] = 2284, - [2545] = 2261, + [2543] = 2279, + [2544] = 2295, + [2545] = 2541, [2546] = 2546, [2547] = 2547, [2548] = 2546, [2549] = 2549, - [2550] = 2550, + [2550] = 2549, [2551] = 2542, - [2552] = 2547, - [2553] = 2549, - [2554] = 2546, - [2555] = 2542, - [2556] = 2547, + [2552] = 2379, + [2553] = 2235, + [2554] = 2541, + [2555] = 2547, + [2556] = 2546, [2557] = 2549, - [2558] = 2373, - [2559] = 2550, - [2560] = 2549, - [2561] = 2550, - [2562] = 2295, - [2563] = 2550, - [2564] = 2284, + [2558] = 2547, + [2559] = 2278, + [2560] = 2279, + [2561] = 2546, + [2562] = 2379, + [2563] = 2542, + [2564] = 2549, [2565] = 2542, - [2566] = 2547, - [2567] = 2373, - [2568] = 2546, - [2569] = 2261, - [2570] = 2318, - [2571] = 2325, - [2572] = 2307, - [2573] = 2308, - [2574] = 2261, - [2575] = 2261, - [2576] = 2576, - [2577] = 2323, - [2578] = 2327, - [2579] = 2311, - [2580] = 2284, - [2581] = 2284, - [2582] = 2307, - [2583] = 2318, - [2584] = 2284, - [2585] = 2312, + [2566] = 2541, + [2567] = 2547, + [2568] = 2278, + [2569] = 2314, + [2570] = 2322, + [2571] = 2324, + [2572] = 2325, + [2573] = 2279, + [2574] = 2278, + [2575] = 2279, + [2576] = 2382, + [2577] = 2278, + [2578] = 2278, + [2579] = 2321, + [2580] = 2312, + [2581] = 2581, + [2582] = 2279, + [2583] = 2321, + [2584] = 2322, + [2585] = 2324, [2586] = 2325, - [2587] = 2312, - [2588] = 2376, - [2589] = 2261, - [2590] = 2465, - [2591] = 2284, - [2592] = 2318, - [2593] = 2261, - [2594] = 2312, - [2595] = 2325, - [2596] = 2307, - [2597] = 2284, - [2598] = 2318, - [2599] = 2284, - [2600] = 2192, - [2601] = 2261, - [2602] = 2261, - [2603] = 2312, - [2604] = 2182, - [2605] = 2261, - [2606] = 2325, - [2607] = 2284, - [2608] = 2261, - [2609] = 2284, - [2610] = 2307, - [2611] = 2284, - [2612] = 2376, - [2613] = 2228, - [2614] = 1990, - [2615] = 1991, - [2616] = 2461, - [2617] = 2284, - [2618] = 2284, - [2619] = 2261, - [2620] = 2261, - [2621] = 1954, - [2622] = 2183, - [2623] = 2325, - [2624] = 2456, - [2625] = 2453, - [2626] = 2460, - [2627] = 2468, - [2628] = 2183, - [2629] = 2194, - [2630] = 2318, - [2631] = 2427, - [2632] = 2323, - [2633] = 2312, - [2634] = 2311, - [2635] = 2312, - [2636] = 2189, - [2637] = 2184, - [2638] = 2182, - [2639] = 2186, - [2640] = 2308, - [2641] = 2183, - [2642] = 2307, - [2643] = 2643, - [2644] = 2644, - [2645] = 2437, - [2646] = 2190, - [2647] = 2460, - [2648] = 2466, - [2649] = 2308, - [2650] = 2182, - [2651] = 2307, - [2652] = 2318, - [2653] = 2192, - [2654] = 2327, - [2655] = 2450, - [2656] = 2471, - [2657] = 2657, - [2658] = 2447, - [2659] = 2312, - [2660] = 2325, - [2661] = 2426, + [2587] = 2313, + [2588] = 2310, + [2589] = 2278, + [2590] = 2278, + [2591] = 2279, + [2592] = 2235, + [2593] = 2442, + [2594] = 2278, + [2595] = 2279, + [2596] = 2278, + [2597] = 2279, + [2598] = 2279, + [2599] = 2193, + [2600] = 2278, + [2601] = 2279, + [2602] = 2382, + [2603] = 2460, + [2604] = 2183, + [2605] = 1968, + [2606] = 2322, + [2607] = 2324, + [2608] = 2325, + [2609] = 2321, + [2610] = 2278, + [2611] = 2322, + [2612] = 2324, + [2613] = 2325, + [2614] = 1970, + [2615] = 2279, + [2616] = 2182, + [2617] = 1966, + [2618] = 2278, + [2619] = 2278, + [2620] = 2279, + [2621] = 2279, + [2622] = 2321, + [2623] = 2186, + [2624] = 2325, + [2625] = 2458, + [2626] = 2187, + [2627] = 2184, + [2628] = 2324, + [2629] = 2629, + [2630] = 2310, + [2631] = 2439, + [2632] = 2324, + [2633] = 2189, + [2634] = 2193, + [2635] = 2450, + [2636] = 2185, + [2637] = 2445, + [2638] = 2438, + [2639] = 2639, + [2640] = 2312, + [2641] = 2438, + [2642] = 2325, + [2643] = 2448, + [2644] = 2412, + [2645] = 2465, + [2646] = 2437, + [2647] = 2183, + [2648] = 2463, + [2649] = 2649, + [2650] = 2445, + [2651] = 2651, + [2652] = 2182, + [2653] = 2443, + [2654] = 2321, + [2655] = 2469, + [2656] = 2408, + [2657] = 2194, + [2658] = 2310, + [2659] = 2313, + [2660] = 2183, + [2661] = 2312, [2662] = 2182, [2663] = 2663, - [2664] = 2192, - [2665] = 2665, - [2666] = 2307, - [2667] = 2325, - [2668] = 2468, - [2669] = 2455, - [2670] = 2670, - [2671] = 2458, - [2672] = 2323, - [2673] = 2327, - [2674] = 2440, - [2675] = 2311, - [2676] = 2468, - [2677] = 2677, - [2678] = 2318, - [2679] = 2679, - [2680] = 2187, - [2681] = 2459, - [2682] = 2682, - [2683] = 2467, - [2684] = 2183, + [2664] = 2471, + [2665] = 2182, + [2666] = 2313, + [2667] = 2314, + [2668] = 2322, + [2669] = 2669, + [2670] = 2452, + [2671] = 2314, + [2672] = 2321, + [2673] = 2193, + [2674] = 2674, + [2675] = 2322, + [2676] = 2321, + [2677] = 2457, + [2678] = 2678, + [2679] = 2322, + [2680] = 2445, + [2681] = 2324, + [2682] = 2183, + [2683] = 2325, + [2684] = 2684, [2685] = 2685, - [2686] = 2318, + [2686] = 2686, [2687] = 2687, - [2688] = 2366, - [2689] = 2471, - [2690] = 2312, - [2691] = 2691, - [2692] = 2325, + [2688] = 2688, + [2689] = 2689, + [2690] = 2001, + [2691] = 2321, + [2692] = 2189, [2693] = 2693, - [2694] = 2183, + [2694] = 2694, [2695] = 2695, - [2696] = 2307, - [2697] = 2697, - [2698] = 2698, - [2699] = 1996, - [2700] = 2700, - [2701] = 2327, - [2702] = 2702, + [2696] = 2696, + [2697] = 2310, + [2698] = 2322, + [2699] = 2324, + [2700] = 2185, + [2701] = 2341, + [2702] = 2004, [2703] = 2703, [2704] = 2704, - [2705] = 2705, - [2706] = 2397, - [2707] = 2707, + [2705] = 2325, + [2706] = 2186, + [2707] = 2358, [2708] = 2708, [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 2712, - [2713] = 2190, - [2714] = 2714, - [2715] = 2434, - [2716] = 2716, - [2717] = 2717, - [2718] = 2425, - [2719] = 2719, - [2720] = 2720, - [2721] = 2307, - [2722] = 2318, - [2723] = 2318, - [2724] = 2724, + [2710] = 2359, + [2711] = 2457, + [2712] = 2458, + [2713] = 2445, + [2714] = 2428, + [2715] = 2398, + [2716] = 2411, + [2717] = 2413, + [2718] = 2629, + [2719] = 2450, + [2720] = 2463, + [2721] = 2421, + [2722] = 2722, + [2723] = 2723, + [2724] = 2469, [2725] = 2725, - [2726] = 2355, - [2727] = 2340, - [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, - [2732] = 2311, + [2726] = 2726, + [2727] = 2471, + [2728] = 2452, + [2729] = 1942, + [2730] = 2014, + [2731] = 2015, + [2732] = 2396, [2733] = 2733, [2734] = 2734, [2735] = 2735, - [2736] = 2312, - [2737] = 2325, - [2738] = 2015, - [2739] = 2739, + [2736] = 2736, + [2737] = 2403, + [2738] = 2407, + [2739] = 2437, [2740] = 2740, - [2741] = 2741, - [2742] = 2742, + [2741] = 2423, + [2742] = 2424, [2743] = 2743, - [2744] = 2318, - [2745] = 2745, - [2746] = 2418, + [2744] = 2744, + [2745] = 2439, + [2746] = 2425, [2747] = 2312, - [2748] = 2393, - [2749] = 2307, - [2750] = 2416, - [2751] = 2365, - [2752] = 2752, - [2753] = 2753, + [2748] = 2395, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 1995, + [2753] = 2313, [2754] = 2754, [2755] = 2755, - [2756] = 2182, + [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 2759, + [2759] = 2405, [2760] = 2760, [2761] = 2761, - [2762] = 2459, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2184, - [2771] = 2771, - [2772] = 2186, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, + [2762] = 2762, + [2763] = 1996, + [2764] = 2314, + [2765] = 1998, + [2766] = 2013, + [2767] = 2443, + [2768] = 2000, + [2769] = 2003, + [2770] = 2005, + [2771] = 2321, + [2772] = 2006, + [2773] = 2018, + [2774] = 2322, + [2775] = 2324, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, + [2777] = 2325, + [2778] = 2445, [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, + [2782] = 2312, [2783] = 2783, [2784] = 2784, - [2785] = 2391, + [2785] = 2785, [2786] = 2786, - [2787] = 2184, - [2788] = 2318, - [2789] = 2308, - [2790] = 2189, + [2787] = 2787, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, [2791] = 2791, - [2792] = 2468, - [2793] = 2325, + [2792] = 2792, + [2793] = 2793, [2794] = 2794, [2795] = 2795, - [2796] = 2312, - [2797] = 2325, - [2798] = 2341, + [2796] = 2796, + [2797] = 2797, + [2798] = 2310, [2799] = 2799, - [2800] = 2450, - [2801] = 2307, - [2802] = 2329, - [2803] = 2435, - [2804] = 2307, - [2805] = 1994, - [2806] = 2806, - [2807] = 2318, - [2808] = 2002, + [2800] = 2800, + [2801] = 2801, + [2802] = 2313, + [2803] = 2803, + [2804] = 2804, + [2805] = 2465, + [2806] = 2314, + [2807] = 2807, + [2808] = 2808, [2809] = 2187, - [2810] = 2420, - [2811] = 2437, - [2812] = 2312, - [2813] = 2190, - [2814] = 2343, - [2815] = 1995, - [2816] = 2467, - [2817] = 2342, - [2818] = 2466, - [2819] = 2186, - [2820] = 2325, - [2821] = 2014, - [2822] = 2307, - [2823] = 2408, - [2824] = 2679, - [2825] = 2468, - [2826] = 2325, - [2827] = 2455, - [2828] = 2421, - [2829] = 2344, - [2830] = 2830, - [2831] = 2417, - [2832] = 2422, - [2833] = 2468, - [2834] = 2834, - [2835] = 2323, - [2836] = 2453, - [2837] = 2423, - [2838] = 2187, - [2839] = 2001, - [2840] = 2307, - [2841] = 2458, - [2842] = 2016, - [2843] = 2308, - [2844] = 2007, - [2845] = 2008, - [2846] = 2009, - [2847] = 2010, - [2848] = 2011, - [2849] = 2012, - [2850] = 2013, + [2810] = 2184, + [2811] = 2415, + [2812] = 2812, + [2813] = 2189, + [2814] = 2814, + [2815] = 2815, + [2816] = 2185, + [2817] = 2186, + [2818] = 2818, + [2819] = 2819, + [2820] = 2321, + [2821] = 2322, + [2822] = 2822, + [2823] = 2823, + [2824] = 2324, + [2825] = 2325, + [2826] = 1999, + [2827] = 2827, + [2828] = 2828, + [2829] = 2445, + [2830] = 2321, + [2831] = 2322, + [2832] = 2832, + [2833] = 2833, + [2834] = 2324, + [2835] = 2325, + [2836] = 2836, + [2837] = 2837, + [2838] = 2101, + [2839] = 2839, + [2840] = 2415, + [2841] = 2321, + [2842] = 2842, + [2843] = 2322, + [2844] = 2324, + [2845] = 2325, + [2846] = 2183, + [2847] = 2187, + [2848] = 2337, + [2849] = 2182, + [2850] = 2002, [2851] = 2851, - [2852] = 2017, - [2853] = 2312, - [2854] = 2101, - [2855] = 1942, - [2856] = 2447, - [2857] = 2318, - [2858] = 2858, - [2859] = 2323, - [2860] = 2327, - [2861] = 2311, - [2862] = 2307, - [2863] = 2863, + [2852] = 2852, + [2853] = 2853, + [2854] = 2007, + [2855] = 2448, + [2856] = 2340, + [2857] = 2342, + [2858] = 2321, + [2859] = 2344, + [2860] = 2010, + [2861] = 2322, + [2862] = 2324, + [2863] = 2325, [2864] = 2864, - [2865] = 2456, - [2866] = 2189, - [2867] = 2018, - [2868] = 2440, - [2869] = 2418, - [2870] = 2870, - [2871] = 2318, - [2872] = 2872, - [2873] = 2873, - [2874] = 1937, - [2875] = 2875, - [2876] = 2312, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2880, - [2881] = 2312, + [2865] = 2334, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2184, + [2871] = 2399, + [2872] = 1937, + [2873] = 2321, + [2874] = 2322, + [2875] = 2324, + [2876] = 2325, + [2877] = 2349, + [2878] = 2321, + [2879] = 2322, + [2880] = 2324, + [2881] = 2325, [2882] = 2882, - [2883] = 2325, - [2884] = 2325, - [2885] = 2409, - [2886] = 2462, - [2887] = 2463, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, + [2887] = 2442, [2888] = 2888, - [2889] = 2441, - [2890] = 2890, - [2891] = 2465, - [2892] = 2461, + [2889] = 2461, + [2890] = 2464, + [2891] = 2460, + [2892] = 2892, [2893] = 2893, - [2894] = 2454, - [2895] = 2895, - [2896] = 2468, - [2897] = 2468, - [2898] = 2427, - [2899] = 2426, - [2900] = 2468, - [2901] = 2901, - [2902] = 2468, - [2903] = 2418, - [2904] = 2468, - [2905] = 2905, - [2906] = 2468, + [2894] = 2440, + [2895] = 2446, + [2896] = 2445, + [2897] = 2415, + [2898] = 2408, + [2899] = 2445, + [2900] = 2900, + [2901] = 2445, + [2902] = 2902, + [2903] = 2412, + [2904] = 2445, + [2905] = 2445, + [2906] = 2445, [2907] = 2907, - [2908] = 2458, - [2909] = 2468, - [2910] = 1942, - [2911] = 2468, - [2912] = 2465, + [2908] = 2445, + [2909] = 2445, + [2910] = 2445, + [2911] = 1937, + [2912] = 2439, [2913] = 2913, - [2914] = 2459, - [2915] = 2468, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2468, - [2920] = 2468, - [2921] = 2468, + [2914] = 2437, + [2915] = 2915, + [2916] = 2460, + [2917] = 2471, + [2918] = 2442, + [2919] = 2919, + [2920] = 2445, + [2921] = 2921, [2922] = 2922, - [2923] = 2923, - [2924] = 2924, - [2925] = 1937, - [2926] = 2461, - [2927] = 2927, - [2928] = 2450, - [2929] = 2447, - [2930] = 2418, - [2931] = 2468, - [2932] = 2468, - [2933] = 2933, - [2934] = 2182, - [2935] = 2455, - [2936] = 2440, - [2937] = 2937, - [2938] = 2938, - [2939] = 2194, - [2940] = 2460, + [2923] = 2445, + [2924] = 2415, + [2925] = 2925, + [2926] = 2926, + [2927] = 1942, + [2928] = 2928, + [2929] = 2445, + [2930] = 2930, + [2931] = 2445, + [2932] = 2445, + [2933] = 2443, + [2934] = 2469, + [2935] = 2193, + [2936] = 2438, + [2937] = 2458, + [2938] = 2629, + [2939] = 2939, + [2940] = 2940, [2941] = 2941, [2942] = 2942, - [2943] = 2471, - [2944] = 2192, - [2945] = 2945, - [2946] = 2466, + [2943] = 2943, + [2944] = 2457, + [2945] = 2452, + [2946] = 2194, [2947] = 2947, - [2948] = 2437, + [2948] = 2463, [2949] = 2949, [2950] = 2950, [2951] = 2183, - [2952] = 2467, - [2953] = 2679, - [2954] = 2186, - [2955] = 2355, + [2952] = 2182, + [2953] = 2465, + [2954] = 2341, + [2955] = 2947, [2956] = 2956, - [2957] = 2957, - [2958] = 2408, - [2959] = 2329, - [2960] = 2434, - [2961] = 2961, - [2962] = 2393, - [2963] = 2416, - [2964] = 2391, - [2965] = 2409, - [2966] = 2342, - [2967] = 2435, - [2968] = 2192, - [2969] = 2365, - [2970] = 2341, + [2957] = 2407, + [2958] = 2958, + [2959] = 2189, + [2960] = 2888, + [2961] = 2399, + [2962] = 2396, + [2963] = 2425, + [2964] = 2187, + [2965] = 2342, + [2966] = 2337, + [2967] = 2344, + [2968] = 2349, + [2969] = 2949, + [2970] = 2939, [2971] = 2971, - [2972] = 2938, - [2973] = 2973, - [2974] = 2425, + [2972] = 2421, + [2973] = 2334, + [2974] = 2424, [2975] = 2975, - [2976] = 2942, - [2977] = 2950, - [2978] = 2376, - [2979] = 2937, - [2980] = 2893, - [2981] = 2182, - [2982] = 2982, - [2983] = 2194, - [2984] = 2417, - [2985] = 2366, - [2986] = 2420, - [2987] = 2421, - [2988] = 2422, + [2976] = 2186, + [2977] = 2943, + [2978] = 2358, + [2979] = 2398, + [2980] = 2182, + [2981] = 2359, + [2982] = 2194, + [2983] = 2411, + [2984] = 2984, + [2985] = 2985, + [2986] = 2185, + [2987] = 2413, + [2988] = 2382, [2989] = 2183, - [2990] = 2189, - [2991] = 2340, - [2992] = 2343, - [2993] = 2190, - [2994] = 2344, - [2995] = 2187, - [2996] = 2184, + [2990] = 2403, + [2991] = 2184, + [2992] = 2428, + [2993] = 2993, + [2994] = 2340, + [2995] = 2193, + [2996] = 2423, [2997] = 2997, [2998] = 2998, - [2999] = 2999, - [3000] = 3000, + [2999] = 2421, + [3000] = 2334, [3001] = 3001, [3002] = 3002, - [3003] = 2409, - [3004] = 2434, + [3003] = 3003, + [3004] = 3004, [3005] = 3005, [3006] = 3006, - [3007] = 2342, + [3007] = 3007, [3008] = 3008, - [3009] = 2393, + [3009] = 2423, [3010] = 3010, [3011] = 3011, [3012] = 3012, [3013] = 3013, - [3014] = 2341, + [3014] = 3014, [3015] = 3015, - [3016] = 2416, + [3016] = 2340, [3017] = 3017, - [3018] = 3018, - [3019] = 3019, + [3018] = 2341, + [3019] = 2407, [3020] = 3020, [3021] = 3021, - [3022] = 2184, + [3022] = 3022, [3023] = 3023, [3024] = 3024, - [3025] = 3025, - [3026] = 3026, - [3027] = 3027, + [3025] = 2342, + [3026] = 2344, + [3027] = 2184, [3028] = 3028, [3029] = 3029, - [3030] = 3030, + [3030] = 1915, [3031] = 3031, [3032] = 3032, [3033] = 3033, [3034] = 3034, - [3035] = 3035, - [3036] = 3036, - [3037] = 3037, - [3038] = 2417, - [3039] = 2366, - [3040] = 2420, - [3041] = 2421, - [3042] = 2422, - [3043] = 2950, - [3044] = 3044, - [3045] = 1916, - [3046] = 2189, - [3047] = 2329, + [3035] = 2189, + [3036] = 1937, + [3037] = 1942, + [3038] = 3038, + [3039] = 2425, + [3040] = 3040, + [3041] = 3041, + [3042] = 2399, + [3043] = 3043, + [3044] = 2185, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, [3048] = 3048, - [3049] = 2391, - [3050] = 2435, + [3049] = 3049, + [3050] = 3050, [3051] = 3051, - [3052] = 2365, + [3052] = 3052, [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, - [3057] = 3057, + [3054] = 2403, + [3055] = 2424, + [3056] = 2358, + [3057] = 2186, [3058] = 3058, [3059] = 3059, - [3060] = 3060, + [3060] = 2101, [3061] = 3061, - [3062] = 3062, + [3062] = 2349, [3063] = 3063, - [3064] = 2340, - [3065] = 2343, - [3066] = 2344, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, [3067] = 3067, - [3068] = 2190, + [3068] = 3068, [3069] = 3069, - [3070] = 1942, - [3071] = 1937, - [3072] = 2187, - [3073] = 3073, + [3070] = 3070, + [3071] = 3071, + [3072] = 2428, + [3073] = 2359, [3074] = 3074, [3075] = 3075, [3076] = 3076, - [3077] = 3077, + [3077] = 2396, [3078] = 3078, [3079] = 3079, - [3080] = 2425, + [3080] = 3080, [3081] = 3081, - [3082] = 2355, + [3082] = 2337, [3083] = 3083, [3084] = 3084, [3085] = 3085, - [3086] = 2186, + [3086] = 3086, [3087] = 3087, - [3088] = 2950, + [3088] = 2398, [3089] = 3089, - [3090] = 3090, + [3090] = 2411, [3091] = 3091, [3092] = 3092, - [3093] = 3093, - [3094] = 3094, - [3095] = 2408, + [3093] = 2413, + [3094] = 2947, + [3095] = 3095, [3096] = 3096, [3097] = 3097, - [3098] = 2101, + [3098] = 3098, [3099] = 3099, [3100] = 3100, [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3023, - [3105] = 3074, - [3106] = 3000, - [3107] = 3018, - [3108] = 3078, - [3109] = 1916, - [3110] = 3099, - [3111] = 3096, - [3112] = 3001, - [3113] = 3067, - [3114] = 3002, - [3115] = 3093, - [3116] = 3011, - [3117] = 3021, - [3118] = 2950, - [3119] = 3102, - [3120] = 3015, - [3121] = 3027, - [3122] = 3063, - [3123] = 3031, - [3124] = 3006, - [3125] = 3094, - [3126] = 3126, - [3127] = 3075, - [3128] = 3085, - [3129] = 3083, - [3130] = 3084, - [3131] = 3037, - [3132] = 3005, - [3133] = 3057, - [3134] = 3048, - [3135] = 3008, - [3136] = 3010, - [3137] = 3053, - [3138] = 2456, - [3139] = 3092, - [3140] = 2679, - [3141] = 3076, - [3142] = 3036, - [3143] = 3073, - [3144] = 3013, - [3145] = 3032, - [3146] = 3146, - [3147] = 3035, - [3148] = 3081, - [3149] = 2453, - [3150] = 2950, - [3151] = 3069, - [3152] = 3079, - [3153] = 3029, - [3154] = 3054, - [3155] = 3028, - [3156] = 3044, + [3102] = 2187, + [3103] = 2947, + [3104] = 3097, + [3105] = 3099, + [3106] = 3100, + [3107] = 3101, + [3108] = 3028, + [3109] = 3050, + [3110] = 3008, + [3111] = 3021, + [3112] = 3068, + [3113] = 3076, + [3114] = 2998, + [3115] = 3022, + [3116] = 3071, + [3117] = 3064, + [3118] = 2629, + [3119] = 3017, + [3120] = 3070, + [3121] = 3049, + [3122] = 3010, + [3123] = 3024, + [3124] = 3075, + [3125] = 3051, + [3126] = 3063, + [3127] = 2448, + [3128] = 3128, + [3129] = 3015, + [3130] = 3032, + [3131] = 2450, + [3132] = 3046, + [3133] = 3058, + [3134] = 3020, + [3135] = 3092, + [3136] = 3136, + [3137] = 3004, + [3138] = 1915, + [3139] = 3095, + [3140] = 2947, + [3141] = 2947, + [3142] = 3033, + [3143] = 3003, + [3144] = 3002, + [3145] = 3086, + [3146] = 3048, + [3147] = 3091, + [3148] = 3043, + [3149] = 3041, + [3150] = 3014, + [3151] = 3059, + [3152] = 3096, + [3153] = 3098, + [3154] = 3052, + [3155] = 3087, + [3156] = 3083, [3157] = 3157, - [3158] = 2679, - [3159] = 3159, - [3160] = 2950, - [3161] = 2101, - [3162] = 2950, - [3163] = 2376, - [3164] = 3164, - [3165] = 3165, - [3166] = 2950, - [3167] = 2922, - [3168] = 2447, - [3169] = 3169, - [3170] = 2950, - [3171] = 2945, - [3172] = 3169, - [3173] = 2950, - [3174] = 2922, - [3175] = 2937, - [3176] = 2997, - [3177] = 2901, - [3178] = 2950, - [3179] = 2679, - [3180] = 2192, - [3181] = 2192, - [3182] = 2183, - [3183] = 2182, - [3184] = 2938, - [3185] = 2941, - [3186] = 2194, - [3187] = 2947, - [3188] = 2942, - [3189] = 2187, - [3190] = 2945, - [3191] = 2466, - [3192] = 2957, - [3193] = 2459, - [3194] = 2679, - [3195] = 2437, - [3196] = 2421, - [3197] = 2422, - [3198] = 2183, - [3199] = 2450, - [3200] = 2956, - [3201] = 2950, - [3202] = 2101, - [3203] = 2184, - [3204] = 2183, - [3205] = 2182, - [3206] = 2937, - [3207] = 2455, - [3208] = 2182, - [3209] = 2456, - [3210] = 2184, - [3211] = 2453, - [3212] = 2982, - [3213] = 2961, - [3214] = 2340, - [3215] = 2192, - [3216] = 2343, - [3217] = 2344, - [3218] = 2425, - [3219] = 2355, - [3220] = 2342, - [3221] = 2376, + [3158] = 2947, + [3159] = 2101, + [3160] = 3160, + [3161] = 2947, + [3162] = 2629, + [3163] = 2947, + [3164] = 2443, + [3165] = 2382, + [3166] = 3166, + [3167] = 3167, + [3168] = 2915, + [3169] = 2943, + [3170] = 2902, + [3171] = 2182, + [3172] = 2939, + [3173] = 2942, + [3174] = 2194, + [3175] = 2183, + [3176] = 2915, + [3177] = 2940, + [3178] = 2947, + [3179] = 2949, + [3180] = 3180, + [3181] = 2193, + [3182] = 2193, + [3183] = 3180, + [3184] = 2950, + [3185] = 2947, + [3186] = 2629, + [3187] = 2956, + [3188] = 2947, + [3189] = 2407, + [3190] = 2450, + [3191] = 2471, + [3192] = 2182, + [3193] = 2984, + [3194] = 2382, + [3195] = 2349, + [3196] = 2396, + [3197] = 2452, + [3198] = 2958, + [3199] = 2971, + [3200] = 2947, + [3201] = 2465, + [3202] = 2985, + [3203] = 2902, + [3204] = 2428, + [3205] = 2187, + [3206] = 2184, + [3207] = 2193, + [3208] = 2187, + [3209] = 2993, + [3210] = 2189, + [3211] = 2101, + [3212] = 2629, + [3213] = 2185, + [3214] = 2189, + [3215] = 2186, + [3216] = 2939, + [3217] = 2403, + [3218] = 2984, + [3219] = 2463, + [3220] = 2448, + [3221] = 2958, [3222] = 2942, - [3223] = 2471, - [3224] = 2190, - [3225] = 2186, - [3226] = 2973, - [3227] = 2189, - [3228] = 2408, - [3229] = 2391, - [3230] = 2956, - [3231] = 2329, - [3232] = 2961, - [3233] = 2194, - [3234] = 2901, - [3235] = 2435, - [3236] = 2950, - [3237] = 2434, - [3238] = 2460, - [3239] = 2458, - [3240] = 2417, - [3241] = 2187, - [3242] = 2365, - [3243] = 2341, - [3244] = 2440, - [3245] = 2366, - [3246] = 2950, - [3247] = 2938, - [3248] = 2467, - [3249] = 2447, - [3250] = 2183, - [3251] = 2947, - [3252] = 2957, - [3253] = 2189, - [3254] = 2975, - [3255] = 2975, - [3256] = 2679, - [3257] = 2190, - [3258] = 2186, - [3259] = 2393, - [3260] = 2941, - [3261] = 2182, - [3262] = 2420, - [3263] = 2416, - [3264] = 2409, - [3265] = 2973, - [3266] = 3266, - [3267] = 3063, - [3268] = 3002, - [3269] = 3005, - [3270] = 3006, - [3271] = 3093, - [3272] = 3102, - [3273] = 3053, - [3274] = 3055, - [3275] = 3000, - [3276] = 3001, - [3277] = 3277, - [3278] = 3008, - [3279] = 3011, - [3280] = 3021, - [3281] = 3027, - [3282] = 3029, - [3283] = 3037, - [3284] = 3044, - [3285] = 3048, - [3286] = 3019, - [3287] = 3057, - [3288] = 3067, - [3289] = 3074, - [3290] = 3075, - [3291] = 3078, - [3292] = 3081, - [3293] = 3092, - [3294] = 3096, - [3295] = 2417, - [3296] = 2366, - [3297] = 2420, - [3298] = 2421, - [3299] = 2422, - [3300] = 2376, - [3301] = 2340, - [3302] = 2343, - [3303] = 2344, - [3304] = 2425, - [3305] = 2355, - [3306] = 3306, - [3307] = 2408, - [3308] = 2329, - [3309] = 2434, - [3310] = 2393, - [3311] = 2416, - [3312] = 2391, - [3313] = 2409, - [3314] = 3314, - [3315] = 2342, - [3316] = 2435, - [3317] = 2365, - [3318] = 2341, - [3319] = 3020, - [3320] = 3101, - [3321] = 3030, - [3322] = 3034, - [3323] = 2997, - [3324] = 2982, - [3325] = 1916, - [3326] = 3326, - [3327] = 3087, - [3328] = 3328, - [3329] = 2189, - [3330] = 2186, - [3331] = 1942, - [3332] = 1937, - [3333] = 3025, - [3334] = 2950, - [3335] = 3335, - [3336] = 2190, - [3337] = 3059, - [3338] = 3099, - [3339] = 2184, - [3340] = 2187, - [3341] = 2950, - [3342] = 3077, - [3343] = 3055, - [3344] = 3344, - [3345] = 3089, - [3346] = 3090, - [3347] = 3091, - [3348] = 3103, - [3349] = 3097, - [3350] = 3100, - [3351] = 3058, - [3352] = 3352, - [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 2950, - [3357] = 3357, - [3358] = 3358, - [3359] = 3359, - [3360] = 3360, - [3361] = 3361, - [3362] = 3362, - [3363] = 3363, - [3364] = 3364, - [3365] = 3365, - [3366] = 3266, - [3367] = 3328, - [3368] = 3368, - [3369] = 3369, - [3370] = 3370, - [3371] = 3371, - [3372] = 3372, - [3373] = 3373, - [3374] = 2998, - [3375] = 3013, - [3376] = 2950, - [3377] = 3010, - [3378] = 3085, - [3379] = 3054, - [3380] = 3035, - [3381] = 3069, - [3382] = 3028, - [3383] = 3015, - [3384] = 3094, - [3385] = 3023, - [3386] = 3083, - [3387] = 3084, - [3388] = 3018, - [3389] = 3017, - [3390] = 3019, - [3391] = 3031, - [3392] = 3032, - [3393] = 3036, - [3394] = 3394, - [3395] = 3395, - [3396] = 3073, - [3397] = 3076, - [3398] = 3079, - [3399] = 3061, - [3400] = 3400, - [3401] = 3401, - [3402] = 3013, - [3403] = 3025, - [3404] = 3017, - [3405] = 3061, - [3406] = 1916, - [3407] = 3359, - [3408] = 2997, - [3409] = 2679, - [3410] = 3010, - [3411] = 3411, - [3412] = 3085, - [3413] = 3413, - [3414] = 2950, - [3415] = 3401, - [3416] = 3054, - [3417] = 1942, - [3418] = 1937, - [3419] = 3419, - [3420] = 3400, - [3421] = 3362, - [3422] = 3411, - [3423] = 3413, - [3424] = 3424, - [3425] = 1990, - [3426] = 1991, - [3427] = 2173, - [3428] = 2950, - [3429] = 3035, - [3430] = 3371, - [3431] = 3363, - [3432] = 3103, - [3433] = 3364, - [3434] = 2922, - [3435] = 3365, - [3436] = 3069, - [3437] = 3372, - [3438] = 2998, - [3439] = 2101, - [3440] = 3097, - [3441] = 3100, - [3442] = 3028, - [3443] = 3015, - [3444] = 3094, - [3445] = 3023, - [3446] = 3083, - [3447] = 3084, - [3448] = 2456, - [3449] = 2453, - [3450] = 3018, - [3451] = 1954, - [3452] = 3031, - [3453] = 3032, - [3454] = 3454, - [3455] = 3036, - [3456] = 3335, - [3457] = 3087, - [3458] = 3073, - [3459] = 3076, - [3460] = 3079, - [3461] = 3461, - [3462] = 3401, - [3463] = 3099, - [3464] = 3063, - [3465] = 3002, - [3466] = 3005, - [3467] = 3006, - [3468] = 3411, - [3469] = 3413, - [3470] = 3093, - [3471] = 3424, - [3472] = 3360, - [3473] = 3102, - [3474] = 3053, - [3475] = 3373, - [3476] = 2950, - [3477] = 3352, - [3478] = 3000, - [3479] = 3353, - [3480] = 3354, - [3481] = 3001, - [3482] = 3401, - [3483] = 3483, + [3223] = 2340, + [3224] = 2439, + [3225] = 2423, + [3226] = 2457, + [3227] = 2943, + [3228] = 2342, + [3229] = 2437, + [3230] = 2629, + [3231] = 2421, + [3232] = 2424, + [3233] = 2337, + [3234] = 2398, + [3235] = 2993, + [3236] = 2185, + [3237] = 2341, + [3238] = 2411, + [3239] = 2183, + [3240] = 2425, + [3241] = 2182, + [3242] = 2413, + [3243] = 2186, + [3244] = 2358, + [3245] = 2359, + [3246] = 2438, + [3247] = 2183, + [3248] = 2940, + [3249] = 2443, + [3250] = 2947, + [3251] = 2182, + [3252] = 2947, + [3253] = 2458, + [3254] = 2971, + [3255] = 2469, + [3256] = 2194, + [3257] = 2985, + [3258] = 2334, + [3259] = 2949, + [3260] = 2184, + [3261] = 2975, + [3262] = 2950, + [3263] = 2399, + [3264] = 2183, + [3265] = 2344, + [3266] = 2185, + [3267] = 3021, + [3268] = 3268, + [3269] = 2956, + [3270] = 2382, + [3271] = 2340, + [3272] = 3272, + [3273] = 2342, + [3274] = 3066, + [3275] = 3068, + [3276] = 3067, + [3277] = 3091, + [3278] = 3046, + [3279] = 2358, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3043, + [3284] = 3284, + [3285] = 2344, + [3286] = 3286, + [3287] = 3014, + [3288] = 2421, + [3289] = 3083, + [3290] = 3023, + [3291] = 3079, + [3292] = 3087, + [3293] = 3293, + [3294] = 3051, + [3295] = 3295, + [3296] = 3041, + [3297] = 3297, + [3298] = 3298, + [3299] = 3007, + [3300] = 3300, + [3301] = 3301, + [3302] = 3048, + [3303] = 3303, + [3304] = 2334, + [3305] = 2975, + [3306] = 2359, + [3307] = 3307, + [3308] = 3049, + [3309] = 3309, + [3310] = 3284, + [3311] = 3050, + [3312] = 3312, + [3313] = 3312, + [3314] = 1915, + [3315] = 3095, + [3316] = 3061, + [3317] = 3096, + [3318] = 3052, + [3319] = 3098, + [3320] = 3033, + [3321] = 3099, + [3322] = 2341, + [3323] = 3024, + [3324] = 3058, + [3325] = 3064, + [3326] = 3100, + [3327] = 3059, + [3328] = 3101, + [3329] = 2947, + [3330] = 3063, + [3331] = 3331, + [3332] = 3076, + [3333] = 3333, + [3334] = 2998, + [3335] = 3006, + [3336] = 3007, + [3337] = 3023, + [3338] = 2424, + [3339] = 2428, + [3340] = 3047, + [3341] = 3341, + [3342] = 3005, + [3343] = 3070, + [3344] = 2337, + [3345] = 3078, + [3346] = 3071, + [3347] = 2187, + [3348] = 3348, + [3349] = 2184, + [3350] = 1937, + [3351] = 1942, + [3352] = 3011, + [3353] = 2947, + [3354] = 3013, + [3355] = 2398, + [3356] = 3001, + [3357] = 3002, + [3358] = 3008, + [3359] = 2947, + [3360] = 2399, + [3361] = 3015, + [3362] = 3020, + [3363] = 2411, + [3364] = 3075, + [3365] = 2349, + [3366] = 2413, + [3367] = 3367, + [3368] = 3022, + [3369] = 3089, + [3370] = 3017, + [3371] = 2396, + [3372] = 3081, + [3373] = 2189, + [3374] = 3065, + [3375] = 3069, + [3376] = 3376, + [3377] = 3377, + [3378] = 3074, + [3379] = 2947, + [3380] = 2425, + [3381] = 3381, + [3382] = 3382, + [3383] = 3383, + [3384] = 3010, + [3385] = 2403, + [3386] = 2407, + [3387] = 3092, + [3388] = 3097, + [3389] = 3086, + [3390] = 2423, + [3391] = 3391, + [3392] = 3003, + [3393] = 3032, + [3394] = 3084, + [3395] = 3085, + [3396] = 3396, + [3397] = 3028, + [3398] = 2186, + [3399] = 3004, + [3400] = 3048, + [3401] = 3298, + [3402] = 3295, + [3403] = 3297, + [3404] = 3078, + [3405] = 3089, + [3406] = 3069, + [3407] = 3064, + [3408] = 3382, + [3409] = 3383, + [3410] = 3074, + [3411] = 3070, + [3412] = 3071, + [3413] = 3075, + [3414] = 1966, + [3415] = 1968, + [3416] = 3083, + [3417] = 3087, + [3418] = 3095, + [3419] = 3096, + [3420] = 3098, + [3421] = 3099, + [3422] = 3100, + [3423] = 3101, + [3424] = 3063, + [3425] = 1970, + [3426] = 3002, + [3427] = 3015, + [3428] = 3020, + [3429] = 3367, + [3430] = 3430, + [3431] = 3092, + [3432] = 3097, + [3433] = 3003, + [3434] = 3028, + [3435] = 3032, + [3436] = 3041, + [3437] = 3046, + [3438] = 3051, + [3439] = 3068, + [3440] = 3076, + [3441] = 2998, + [3442] = 3086, + [3443] = 3091, + [3444] = 3005, + [3445] = 3004, + [3446] = 3008, + [3447] = 3010, + [3448] = 3014, + [3449] = 3017, + [3450] = 3021, + [3451] = 3022, + [3452] = 3024, + [3453] = 3453, + [3454] = 3033, + [3455] = 3043, + [3456] = 3049, + [3457] = 3050, + [3458] = 3052, + [3459] = 3058, + [3460] = 3059, + [3461] = 2947, + [3462] = 3462, + [3463] = 3463, + [3464] = 2174, + [3465] = 3465, + [3466] = 3466, + [3467] = 3011, + [3468] = 3067, + [3469] = 3013, + [3470] = 3300, + [3471] = 3471, + [3472] = 2947, + [3473] = 3473, + [3474] = 3471, + [3475] = 3303, + [3476] = 3453, + [3477] = 3466, + [3478] = 3465, + [3479] = 3084, + [3480] = 2947, + [3481] = 2101, + [3482] = 2450, + [3483] = 2448, [3484] = 3484, - [3485] = 3400, - [3486] = 3411, - [3487] = 3413, - [3488] = 3030, - [3489] = 3361, - [3490] = 3401, - [3491] = 3008, - [3492] = 3011, - [3493] = 3400, - [3494] = 3411, - [3495] = 3413, - [3496] = 3355, - [3497] = 3424, - [3498] = 3021, - [3499] = 2950, - [3500] = 2950, - [3501] = 3277, - [3502] = 3027, - [3503] = 3029, - [3504] = 3357, - [3505] = 3401, - [3506] = 3037, - [3507] = 3358, - [3508] = 3044, - [3509] = 3400, - [3510] = 3411, - [3511] = 3413, - [3512] = 3424, - [3513] = 2950, - [3514] = 3048, - [3515] = 3400, - [3516] = 3411, - [3517] = 3413, - [3518] = 3424, - [3519] = 2950, - [3520] = 3520, - [3521] = 2950, - [3522] = 3400, - [3523] = 3411, - [3524] = 3413, - [3525] = 3424, - [3526] = 2950, - [3527] = 2950, - [3528] = 3528, - [3529] = 3368, - [3530] = 3057, - [3531] = 3067, - [3532] = 3074, - [3533] = 3075, - [3534] = 3078, - [3535] = 3344, - [3536] = 3369, - [3537] = 3081, - [3538] = 3092, - [3539] = 3394, - [3540] = 3096, - [3541] = 3395, - [3542] = 3370, - [3543] = 1942, - [3544] = 2173, - [3545] = 3424, - [3546] = 1937, - [3547] = 3077, - [3548] = 3548, - [3549] = 3089, - [3550] = 3550, - [3551] = 3090, - [3552] = 3091, - [3553] = 3059, - [3554] = 3400, - [3555] = 3034, - [3556] = 2950, - [3557] = 3424, - [3558] = 2950, - [3559] = 3026, - [3560] = 3560, - [3561] = 2945, - [3562] = 2999, - [3563] = 3563, - [3564] = 2174, - [3565] = 3062, - [3566] = 2950, + [3485] = 3085, + [3486] = 3486, + [3487] = 3473, + [3488] = 3081, + [3489] = 3471, + [3490] = 3453, + [3491] = 3466, + [3492] = 3465, + [3493] = 3376, + [3494] = 2947, + [3495] = 3473, + [3496] = 1937, + [3497] = 1942, + [3498] = 3471, + [3499] = 3453, + [3500] = 3466, + [3501] = 3465, + [3502] = 3281, + [3503] = 3307, + [3504] = 3006, + [3505] = 3473, + [3506] = 3471, + [3507] = 3453, + [3508] = 3466, + [3509] = 3465, + [3510] = 2947, + [3511] = 2947, + [3512] = 3473, + [3513] = 3471, + [3514] = 3453, + [3515] = 3466, + [3516] = 3465, + [3517] = 2947, + [3518] = 3061, + [3519] = 3471, + [3520] = 3453, + [3521] = 3466, + [3522] = 3465, + [3523] = 2947, + [3524] = 2947, + [3525] = 3471, + [3526] = 3453, + [3527] = 3466, + [3528] = 3465, + [3529] = 2947, + [3530] = 3301, + [3531] = 1915, + [3532] = 2629, + [3533] = 3391, + [3534] = 3268, + [3535] = 3280, + [3536] = 3282, + [3537] = 1937, + [3538] = 1942, + [3539] = 3539, + [3540] = 2956, + [3541] = 2915, + [3542] = 2174, + [3543] = 3065, + [3544] = 3544, + [3545] = 3381, + [3546] = 3396, + [3547] = 3341, + [3548] = 3377, + [3549] = 3309, + [3550] = 3473, + [3551] = 3551, + [3552] = 3293, + [3553] = 3066, + [3554] = 3286, + [3555] = 3331, + [3556] = 3556, + [3557] = 2947, + [3558] = 3128, + [3559] = 2947, + [3560] = 2947, + [3561] = 2173, + [3562] = 3562, + [3563] = 2940, + [3564] = 2950, + [3565] = 2913, + [3566] = 3029, [3567] = 3567, - [3568] = 3126, - [3569] = 3012, - [3570] = 3570, - [3571] = 2913, - [3572] = 2950, - [3573] = 2924, - [3574] = 2916, - [3575] = 2456, - [3576] = 2453, - [3577] = 2922, - [3578] = 2950, - [3579] = 2950, - [3580] = 3580, - [3581] = 2950, - [3582] = 2950, - [3583] = 2941, - [3584] = 3024, - [3585] = 2950, - [3586] = 2947, - [3587] = 3060, - [3588] = 2927, - [3589] = 3589, - [3590] = 2950, - [3591] = 2950, - [3592] = 3592, + [3568] = 2947, + [3569] = 3045, + [3570] = 3038, + [3571] = 3031, + [3572] = 2947, + [3573] = 3573, + [3574] = 2922, + [3575] = 2947, + [3576] = 3576, + [3577] = 3034, + [3578] = 2947, + [3579] = 2942, + [3580] = 2926, + [3581] = 2947, + [3582] = 2947, + [3583] = 2915, + [3584] = 2450, + [3585] = 3585, + [3586] = 2448, + [3587] = 3587, + [3588] = 2919, + [3589] = 3080, + [3590] = 2947, + [3591] = 3591, + [3592] = 3591, [3593] = 3593, [3594] = 3594, [3595] = 3595, [3596] = 3596, - [3597] = 3597, + [3597] = 2942, [3598] = 3598, - [3599] = 2999, - [3600] = 3600, - [3601] = 3601, - [3602] = 2997, - [3603] = 3603, - [3604] = 3169, - [3605] = 3012, - [3606] = 3592, - [3607] = 3607, - [3608] = 2950, - [3609] = 3609, - [3610] = 3610, - [3611] = 3596, - [3612] = 3612, - [3613] = 3570, - [3614] = 3596, + [3599] = 3591, + [3600] = 3180, + [3601] = 2919, + [3602] = 3591, + [3603] = 3598, + [3604] = 3031, + [3605] = 3128, + [3606] = 3034, + [3607] = 2943, + [3608] = 3598, + [3609] = 3180, + [3610] = 2956, + [3611] = 3598, + [3612] = 3080, + [3613] = 3591, + [3614] = 2922, [3615] = 3615, - [3616] = 2950, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3621, - [3622] = 3622, - [3623] = 3126, - [3624] = 3596, - [3625] = 3592, - [3626] = 3169, - [3627] = 3592, - [3628] = 3060, - [3629] = 3596, - [3630] = 2924, - [3631] = 3169, - [3632] = 3596, - [3633] = 3633, - [3634] = 3596, - [3635] = 2927, - [3636] = 2916, - [3637] = 3596, - [3638] = 3592, - [3639] = 3596, - [3640] = 3592, - [3641] = 3570, - [3642] = 3596, - [3643] = 2913, - [3644] = 3026, - [3645] = 3596, - [3646] = 3646, - [3647] = 3596, - [3648] = 3596, - [3649] = 3592, - [3650] = 3596, - [3651] = 3596, - [3652] = 3652, - [3653] = 3592, - [3654] = 3596, - [3655] = 3596, - [3656] = 2938, - [3657] = 3596, - [3658] = 3570, - [3659] = 2945, - [3660] = 3570, - [3661] = 2937, - [3662] = 3596, - [3663] = 3596, + [3616] = 2939, + [3617] = 3029, + [3618] = 3598, + [3619] = 3598, + [3620] = 3598, + [3621] = 3598, + [3622] = 3598, + [3623] = 3591, + [3624] = 3598, + [3625] = 3625, + [3626] = 2947, + [3627] = 3598, + [3628] = 3598, + [3629] = 3598, + [3630] = 2940, + [3631] = 3598, + [3632] = 3598, + [3633] = 3573, + [3634] = 2947, + [3635] = 3591, + [3636] = 3591, + [3637] = 3038, + [3638] = 2947, + [3639] = 3639, + [3640] = 3180, + [3641] = 2947, + [3642] = 3598, + [3643] = 3573, + [3644] = 3591, + [3645] = 3045, + [3646] = 3598, + [3647] = 3647, + [3648] = 3648, + [3649] = 3649, + [3650] = 3650, + [3651] = 2913, + [3652] = 3598, + [3653] = 3653, + [3654] = 3654, + [3655] = 3655, + [3656] = 3598, + [3657] = 3657, + [3658] = 3573, + [3659] = 3659, + [3660] = 3598, + [3661] = 3661, + [3662] = 3662, + [3663] = 3598, [3664] = 3664, - [3665] = 2947, - [3666] = 3570, - [3667] = 2950, - [3668] = 2942, - [3669] = 2941, - [3670] = 3596, - [3671] = 3570, - [3672] = 3596, - [3673] = 3592, - [3674] = 3596, - [3675] = 3592, - [3676] = 3592, - [3677] = 3596, - [3678] = 3596, - [3679] = 3592, - [3680] = 3592, - [3681] = 3592, - [3682] = 3169, - [3683] = 3062, - [3684] = 3646, - [3685] = 2950, - [3686] = 3596, - [3687] = 3596, - [3688] = 3024, - [3689] = 2183, - [3690] = 3620, - [3691] = 3691, - [3692] = 3621, - [3693] = 3277, - [3694] = 3622, - [3695] = 2956, - [3696] = 3664, - [3697] = 3593, + [3665] = 3591, + [3666] = 3573, + [3667] = 3667, + [3668] = 3668, + [3669] = 3598, + [3670] = 3591, + [3671] = 3598, + [3672] = 3573, + [3673] = 2949, + [3674] = 3591, + [3675] = 3598, + [3676] = 3598, + [3677] = 3180, + [3678] = 3573, + [3679] = 2926, + [3680] = 2950, + [3681] = 3591, + [3682] = 3682, + [3683] = 3598, + [3684] = 3684, + [3685] = 3684, + [3686] = 2947, + [3687] = 3598, + [3688] = 3591, + [3689] = 3596, + [3690] = 3664, + [3691] = 3668, + [3692] = 2984, + [3693] = 3649, + [3694] = 3625, + [3695] = 3650, + [3696] = 3615, + [3697] = 3697, [3698] = 3698, - [3699] = 3618, - [3700] = 3610, - [3701] = 3612, - [3702] = 3164, - [3703] = 2950, - [3704] = 3607, - [3705] = 3705, - [3706] = 2950, - [3707] = 3597, - [3708] = 3617, - [3709] = 2182, - [3710] = 2982, - [3711] = 2950, - [3712] = 2961, - [3713] = 3598, - [3714] = 3165, - [3715] = 3652, - [3716] = 2950, - [3717] = 3609, - [3718] = 2975, - [3719] = 2950, - [3720] = 3720, - [3721] = 2957, - [3722] = 3600, - [3723] = 2950, - [3724] = 3633, - [3725] = 3615, - [3726] = 3726, - [3727] = 3727, - [3728] = 3728, - [3729] = 3729, + [3699] = 3699, + [3700] = 3700, + [3701] = 3701, + [3702] = 3702, + [3703] = 2958, + [3704] = 3639, + [3705] = 2183, + [3706] = 3648, + [3707] = 2993, + [3708] = 2985, + [3709] = 2947, + [3710] = 3682, + [3711] = 2971, + [3712] = 2975, + [3713] = 3647, + [3714] = 2947, + [3715] = 3593, + [3716] = 3594, + [3717] = 3595, + [3718] = 3718, + [3719] = 2947, + [3720] = 2947, + [3721] = 3721, + [3722] = 3653, + [3723] = 2947, + [3724] = 3724, + [3725] = 3167, + [3726] = 3654, + [3727] = 3657, + [3728] = 2182, + [3729] = 3309, [3730] = 3730, - [3731] = 3601, - [3732] = 2973, - [3733] = 3619, - [3734] = 3734, - [3735] = 3061, + [3731] = 2947, + [3732] = 3661, + [3733] = 3662, + [3734] = 3166, + [3735] = 2998, [3736] = 3736, - [3737] = 3020, - [3738] = 3601, - [3739] = 3055, - [3740] = 3736, - [3741] = 3741, - [3742] = 3736, - [3743] = 3736, - [3744] = 3652, - [3745] = 3036, - [3746] = 3000, - [3747] = 3736, + [3737] = 3615, + [3738] = 3736, + [3739] = 2173, + [3740] = 3166, + [3741] = 3593, + [3742] = 3594, + [3743] = 3595, + [3744] = 3744, + [3745] = 3596, + [3746] = 3087, + [3747] = 1942, [3748] = 3736, [3749] = 3736, - [3750] = 3615, - [3751] = 3617, - [3752] = 3618, - [3753] = 3619, - [3754] = 3736, - [3755] = 3620, - [3756] = 3621, - [3757] = 3736, - [3758] = 3622, - [3759] = 3741, - [3760] = 3001, - [3761] = 3094, - [3762] = 3736, - [3763] = 3763, - [3764] = 3607, - [3765] = 3736, - [3766] = 3081, - [3767] = 3057, - [3768] = 3328, - [3769] = 3664, - [3770] = 3633, - [3771] = 3597, - [3772] = 3023, - [3773] = 3101, - [3774] = 3598, - [3775] = 3600, - [3776] = 3615, - [3777] = 3617, - [3778] = 3618, - [3779] = 3601, - [3780] = 3619, - [3781] = 3593, - [3782] = 3620, - [3783] = 3335, - [3784] = 3784, - [3785] = 1942, - [3786] = 3621, - [3787] = 3622, - [3788] = 3736, - [3789] = 3789, - [3790] = 3335, - [3791] = 3736, - [3792] = 3006, - [3793] = 3609, - [3794] = 3610, - [3795] = 2376, - [3796] = 3018, - [3797] = 3008, + [3750] = 3736, + [3751] = 3751, + [3752] = 3736, + [3753] = 3736, + [3754] = 3754, + [3755] = 3754, + [3756] = 3089, + [3757] = 3014, + [3758] = 3736, + [3759] = 3312, + [3760] = 3043, + [3761] = 3625, + [3762] = 3615, + [3763] = 3736, + [3764] = 3048, + [3765] = 3659, + [3766] = 3095, + [3767] = 3049, + [3768] = 3050, + [3769] = 3017, + [3770] = 3024, + [3771] = 3682, + [3772] = 3006, + [3773] = 3007, + [3774] = 3736, + [3775] = 3096, + [3776] = 3098, + [3777] = 3099, + [3778] = 3367, + [3779] = 3779, + [3780] = 3052, + [3781] = 3047, + [3782] = 3100, + [3783] = 3075, + [3784] = 3101, + [3785] = 3298, + [3786] = 3786, + [3787] = 2382, + [3788] = 3648, + [3789] = 3736, + [3790] = 3736, + [3791] = 3067, + [3792] = 3736, + [3793] = 3793, + [3794] = 3023, + [3795] = 3649, + [3796] = 3796, + [3797] = 3058, [3798] = 3736, - [3799] = 3799, - [3800] = 3011, - [3801] = 3736, - [3802] = 3083, - [3803] = 3359, - [3804] = 3073, - [3805] = 3736, + [3799] = 3647, + [3800] = 3081, + [3801] = 3653, + [3802] = 3381, + [3803] = 3396, + [3804] = 3593, + [3805] = 3341, [3806] = 3594, - [3807] = 3807, - [3808] = 3360, - [3809] = 3021, - [3810] = 3736, - [3811] = 3612, - [3812] = 3361, - [3813] = 3027, - [3814] = 3741, - [3815] = 3074, - [3816] = 3763, - [3817] = 3029, - [3818] = 3362, - [3819] = 3363, - [3820] = 3075, - [3821] = 3364, - [3822] = 3365, - [3823] = 3076, - [3824] = 3736, - [3825] = 3092, - [3826] = 3741, - [3827] = 3763, - [3828] = 3063, - [3829] = 3736, - [3830] = 3084, - [3831] = 3664, - [3832] = 3736, - [3833] = 3833, - [3834] = 3079, - [3835] = 3078, - [3836] = 3103, - [3837] = 3763, - [3838] = 3838, - [3839] = 3736, - [3840] = 3368, - [3841] = 3369, - [3842] = 3842, - [3843] = 3370, - [3844] = 3607, - [3845] = 3595, - [3846] = 3763, - [3847] = 3600, - [3848] = 3736, - [3849] = 3089, - [3850] = 3763, - [3851] = 3851, - [3852] = 3736, - [3853] = 3593, - [3854] = 3763, - [3855] = 3371, - [3856] = 3096, - [3857] = 3372, - [3858] = 3373, - [3859] = 3736, - [3860] = 3306, - [3861] = 3165, - [3862] = 3328, - [3863] = 3090, - [3864] = 3032, - [3865] = 2174, - [3866] = 3013, - [3867] = 3030, - [3868] = 3736, - [3869] = 3034, - [3870] = 3164, - [3871] = 3609, - [3872] = 2998, - [3873] = 3610, - [3874] = 3010, - [3875] = 3085, - [3876] = 3736, - [3877] = 3736, - [3878] = 3037, - [3879] = 3612, - [3880] = 3091, - [3881] = 3044, - [3882] = 3093, - [3883] = 3097, - [3884] = 3069, - [3885] = 3328, - [3886] = 3736, - [3887] = 3077, - [3888] = 3736, - [3889] = 3100, + [3807] = 3595, + [3808] = 3653, + [3809] = 3654, + [3810] = 3657, + [3811] = 3596, + [3812] = 3661, + [3813] = 3682, + [3814] = 3662, + [3815] = 3664, + [3816] = 3668, + [3817] = 3377, + [3818] = 3654, + [3819] = 3367, + [3820] = 3286, + [3821] = 3331, + [3822] = 3648, + [3823] = 3649, + [3824] = 3063, + [3825] = 3333, + [3826] = 3650, + [3827] = 3376, + [3828] = 3751, + [3829] = 3281, + [3830] = 3301, + [3831] = 3754, + [3832] = 3391, + [3833] = 3268, + [3834] = 3280, + [3835] = 3059, + [3836] = 3282, + [3837] = 3837, + [3838] = 3736, + [3839] = 3650, + [3840] = 3736, + [3841] = 3002, + [3842] = 3293, + [3843] = 3625, + [3844] = 3295, + [3845] = 3297, + [3846] = 3300, + [3847] = 3066, + [3848] = 3307, + [3849] = 3657, + [3850] = 3661, + [3851] = 3751, + [3852] = 3662, + [3853] = 3736, + [3854] = 3754, + [3855] = 3664, + [3856] = 3668, + [3857] = 3736, + [3858] = 3647, + [3859] = 3061, + [3860] = 3754, + [3861] = 3736, + [3862] = 3015, + [3863] = 3863, + [3864] = 3751, + [3865] = 3754, + [3866] = 3736, + [3867] = 3736, + [3868] = 3020, + [3869] = 3754, + [3870] = 3736, + [3871] = 3736, + [3872] = 3754, + [3873] = 3021, + [3874] = 3736, + [3875] = 3875, + [3876] = 3070, + [3877] = 3083, + [3878] = 3736, + [3879] = 3071, + [3880] = 3092, + [3881] = 3655, + [3882] = 3882, + [3883] = 3736, + [3884] = 3001, + [3885] = 3033, + [3886] = 3659, + [3887] = 3079, + [3888] = 3888, + [3889] = 3736, [3890] = 3736, - [3891] = 3352, - [3892] = 3736, - [3893] = 3067, + [3891] = 3097, + [3892] = 3312, + [3893] = 3736, [3894] = 3736, - [3895] = 3017, - [3896] = 3019, - [3897] = 3048, - [3898] = 3099, - [3899] = 3028, - [3900] = 1916, - [3901] = 3736, - [3902] = 3736, - [3903] = 3054, - [3904] = 3633, - [3905] = 3595, - [3906] = 3015, - [3907] = 3907, - [3908] = 3736, - [3909] = 3353, - [3910] = 3344, + [3895] = 3736, + [3896] = 3736, + [3897] = 3003, + [3898] = 3005, + [3899] = 3011, + [3900] = 1937, + [3901] = 3013, + [3902] = 3167, + [3903] = 3736, + [3904] = 3736, + [3905] = 2173, + [3906] = 3064, + [3907] = 3078, + [3908] = 3084, + [3909] = 3028, + [3910] = 3736, [3911] = 3736, - [3912] = 3763, - [3913] = 3031, - [3914] = 3354, - [3915] = 3736, - [3916] = 1937, - [3917] = 3355, - [3918] = 3918, + [3912] = 3032, + [3913] = 3022, + [3914] = 3736, + [3915] = 3041, + [3916] = 3046, + [3917] = 3051, + [3918] = 3085, [3919] = 3736, - [3920] = 3328, - [3921] = 3394, - [3922] = 3002, - [3923] = 3053, - [3924] = 3087, - [3925] = 3395, - [3926] = 3357, - [3927] = 2174, - [3928] = 3358, - [3929] = 3594, - [3930] = 3005, - [3931] = 3025, - [3932] = 3102, - [3933] = 3736, - [3934] = 3934, - [3935] = 3035, - [3936] = 3597, - [3937] = 3058, - [3938] = 3598, - [3939] = 3059, - [3940] = 3736, + [3920] = 3382, + [3921] = 3383, + [3922] = 3065, + [3923] = 3655, + [3924] = 3068, + [3925] = 3069, + [3926] = 3074, + [3927] = 3076, + [3928] = 3736, + [3929] = 3086, + [3930] = 3312, + [3931] = 3091, + [3932] = 1915, + [3933] = 3004, + [3934] = 3639, + [3935] = 3008, + [3936] = 3936, + [3937] = 3736, + [3938] = 3312, + [3939] = 3010, + [3940] = 3303, [3941] = 3941, - [3942] = 3941, + [3942] = 3942, [3943] = 3943, - [3944] = 2922, + [3944] = 3779, [3945] = 3941, - [3946] = 3946, - [3947] = 3947, - [3948] = 3941, + [3946] = 3941, + [3947] = 2173, + [3948] = 3948, [3949] = 3949, - [3950] = 3950, - [3951] = 3946, - [3952] = 3943, - [3953] = 3947, - [3954] = 3941, - [3955] = 3955, - [3956] = 3729, - [3957] = 3941, - [3958] = 3730, - [3959] = 3946, - [3960] = 3960, - [3961] = 3943, - [3962] = 3946, - [3963] = 3946, - [3964] = 3594, - [3965] = 3595, - [3966] = 3664, - [3967] = 3946, - [3968] = 3946, - [3969] = 3949, - [3970] = 3941, - [3971] = 3971, - [3972] = 3946, - [3973] = 2174, - [3974] = 3946, + [3950] = 3948, + [3951] = 3951, + [3952] = 3647, + [3953] = 3648, + [3954] = 3948, + [3955] = 3649, + [3956] = 3650, + [3957] = 3949, + [3958] = 3949, + [3959] = 3653, + [3960] = 3655, + [3961] = 3948, + [3962] = 3659, + [3963] = 3625, + [3964] = 3654, + [3965] = 3949, + [3966] = 3657, + [3967] = 3661, + [3968] = 3949, + [3969] = 3662, + [3970] = 3664, + [3971] = 3949, + [3972] = 3668, + [3973] = 3948, + [3974] = 3974, [3975] = 3975, - [3976] = 2194, - [3977] = 3946, - [3978] = 3941, - [3979] = 3612, - [3980] = 3946, - [3981] = 3949, - [3982] = 3607, - [3983] = 3946, - [3984] = 3950, - [3985] = 3941, - [3986] = 3941, - [3987] = 3941, - [3988] = 3988, - [3989] = 3989, - [3990] = 3947, - [3991] = 3946, - [3992] = 3946, - [3993] = 3607, - [3994] = 3994, - [3995] = 3995, - [3996] = 3609, - [3997] = 3610, - [3998] = 3612, - [3999] = 3946, - [4000] = 3941, - [4001] = 3615, - [4002] = 3617, - [4003] = 3807, - [4004] = 3618, - [4005] = 3619, - [4006] = 3941, - [4007] = 3620, - [4008] = 3621, - [4009] = 3994, - [4010] = 3622, - [4011] = 3946, - [4012] = 3950, - [4013] = 3946, - [4014] = 3941, - [4015] = 3946, - [4016] = 3941, - [4017] = 3955, - [4018] = 3652, + [3976] = 3367, + [3977] = 3949, + [3978] = 3648, + [3979] = 3649, + [3980] = 3949, + [3981] = 3948, + [3982] = 3948, + [3983] = 3949, + [3984] = 3699, + [3985] = 3948, + [3986] = 3698, + [3987] = 3948, + [3988] = 3948, + [3989] = 3949, + [3990] = 3615, + [3991] = 3650, + [3992] = 3992, + [3993] = 3992, + [3994] = 3949, + [3995] = 3948, + [3996] = 3700, + [3997] = 3997, + [3998] = 3948, + [3999] = 3992, + [4000] = 3625, + [4001] = 3943, + [4002] = 3942, + [4003] = 3949, + [4004] = 3948, + [4005] = 3698, + [4006] = 4006, + [4007] = 3997, + [4008] = 3949, + [4009] = 3942, + [4010] = 3974, + [4011] = 3948, + [4012] = 3949, + [4013] = 4006, + [4014] = 3949, + [4015] = 4015, + [4016] = 3949, + [4017] = 4006, + [4018] = 3948, [4019] = 3941, - [4020] = 2192, - [4021] = 3946, - [4022] = 3946, - [4023] = 3727, - [4024] = 3946, - [4025] = 3946, - [4026] = 3946, - [4027] = 3728, - [4028] = 3664, - [4029] = 3946, - [4030] = 3946, - [4031] = 2997, - [4032] = 3947, - [4033] = 3597, + [4020] = 3949, + [4021] = 3949, + [4022] = 4022, + [4023] = 3975, + [4024] = 3949, + [4025] = 4025, + [4026] = 3949, + [4027] = 3949, + [4028] = 2193, + [4029] = 3948, + [4030] = 4015, + [4031] = 3949, + [4032] = 4032, + [4033] = 3948, [4034] = 3593, - [4035] = 3598, - [4036] = 3600, - [4037] = 3615, - [4038] = 3946, - [4039] = 3617, - [4040] = 3618, - [4041] = 3941, - [4042] = 3601, - [4043] = 3619, - [4044] = 3620, - [4045] = 3621, - [4046] = 3622, - [4047] = 3949, - [4048] = 3950, - [4049] = 3593, - [4050] = 3941, - [4051] = 3946, - [4052] = 3955, - [4053] = 4053, - [4054] = 3989, - [4055] = 3597, - [4056] = 3598, - [4057] = 3600, - [4058] = 3601, - [4059] = 3946, - [4060] = 3994, - [4061] = 3989, - [4062] = 3633, - [4063] = 3946, - [4064] = 3784, - [4065] = 3941, - [4066] = 3946, - [4067] = 3943, - [4068] = 3988, - [4069] = 3633, - [4070] = 3726, - [4071] = 3946, - [4072] = 3946, - [4073] = 3946, - [4074] = 3995, - [4075] = 3946, - [4076] = 3943, - [4077] = 3941, - [4078] = 3946, - [4079] = 3729, - [4080] = 3335, - [4081] = 3988, - [4082] = 3941, - [4083] = 3947, - [4084] = 3730, - [4085] = 3941, - [4086] = 3949, - [4087] = 3950, - [4088] = 3727, - [4089] = 3728, - [4090] = 3946, - [4091] = 3941, - [4092] = 3941, - [4093] = 3609, - [4094] = 3941, - [4095] = 3995, - [4096] = 3946, - [4097] = 3941, - [4098] = 3943, - [4099] = 3946, - [4100] = 3946, - [4101] = 3726, - [4102] = 3610, - [4103] = 3946, - [4104] = 2941, - [4105] = 3597, - [4106] = 3620, - [4107] = 2376, - [4108] = 3621, - [4109] = 2945, - [4110] = 3609, - [4111] = 3600, - [4112] = 3807, - [4113] = 3601, - [4114] = 3727, - [4115] = 3728, - [4116] = 3729, - [4117] = 3730, - [4118] = 3612, - [4119] = 3607, - [4120] = 3277, - [4121] = 3622, - [4122] = 3622, - [4123] = 2184, - [4124] = 3617, - [4125] = 2947, - [4126] = 2174, - [4127] = 3598, - [4128] = 3610, - [4129] = 3618, - [4130] = 3633, - [4131] = 3595, - [4132] = 3619, - [4133] = 3600, - [4134] = 3609, - [4135] = 3607, - [4136] = 3615, - [4137] = 2393, - [4138] = 3593, - [4139] = 3619, - [4140] = 3593, - [4141] = 3615, - [4142] = 3612, - [4143] = 3726, - [4144] = 3335, - [4145] = 2417, - [4146] = 3617, - [4147] = 3633, - [4148] = 3610, - [4149] = 3784, - [4150] = 3594, - [4151] = 2189, - [4152] = 2187, - [4153] = 3652, - [4154] = 3618, - [4155] = 2174, - [4156] = 3664, - [4157] = 3620, - [4158] = 3597, - [4159] = 3598, - [4160] = 2190, - [4161] = 2456, - [4162] = 3621, - [4163] = 2186, - [4164] = 3601, - [4165] = 2453, - [4166] = 3664, - [4167] = 3371, - [4168] = 3600, - [4169] = 3615, - [4170] = 3617, - [4171] = 3365, - [4172] = 3618, - [4173] = 3601, - [4174] = 3619, - [4175] = 3355, - [4176] = 4176, - [4177] = 3620, - [4178] = 3621, - [4179] = 3335, - [4180] = 3612, - [4181] = 3727, - [4182] = 3357, - [4183] = 3358, - [4184] = 3728, - [4185] = 3622, - [4186] = 3607, - [4187] = 3372, - [4188] = 3352, - [4189] = 3729, - [4190] = 3593, - [4191] = 3364, - [4192] = 3373, - [4193] = 3370, - [4194] = 3353, - [4195] = 3807, - [4196] = 3354, - [4197] = 2416, - [4198] = 3344, - [4199] = 3359, - [4200] = 3360, - [4201] = 3609, - [4202] = 3784, - [4203] = 2174, - [4204] = 3726, - [4205] = 3597, - [4206] = 3361, - [4207] = 3594, - [4208] = 3610, - [4209] = 3595, - [4210] = 3362, - [4211] = 3368, - [4212] = 3664, - [4213] = 3633, - [4214] = 3394, - [4215] = 3395, - [4216] = 3598, - [4217] = 3335, - [4218] = 3363, - [4219] = 3369, - [4220] = 3730, - [4221] = 3618, - [4222] = 3622, - [4223] = 3618, - [4224] = 3593, - [4225] = 3601, - [4226] = 3597, - [4227] = 3612, - [4228] = 4228, - [4229] = 3664, - [4230] = 3607, - [4231] = 3597, - [4232] = 3664, - [4233] = 3619, - [4234] = 3598, - [4235] = 3600, - [4236] = 3600, - [4237] = 3615, - [4238] = 3617, - [4239] = 4239, - [4240] = 3601, - [4241] = 3607, - [4242] = 3619, - [4243] = 2194, - [4244] = 3620, - [4245] = 3621, - [4246] = 3620, - [4247] = 3622, - [4248] = 3593, - [4249] = 3784, - [4250] = 2391, - [4251] = 3621, - [4252] = 3609, - [4253] = 3727, - [4254] = 3728, - [4255] = 3607, - [4256] = 3597, - [4257] = 3598, - [4258] = 3664, - [4259] = 3729, - [4260] = 3730, - [4261] = 3612, - [4262] = 3600, - [4263] = 3615, - [4264] = 3615, - [4265] = 3617, - [4266] = 3618, - [4267] = 3601, - [4268] = 3619, - [4269] = 3620, - [4270] = 3594, - [4271] = 4271, - [4272] = 3726, - [4273] = 3610, - [4274] = 3621, - [4275] = 3807, - [4276] = 3633, - [4277] = 3335, - [4278] = 2922, - [4279] = 3622, - [4280] = 3394, - [4281] = 3633, - [4282] = 3652, - [4283] = 3595, - [4284] = 3609, - [4285] = 3610, - [4286] = 3598, - [4287] = 3610, - [4288] = 3395, - [4289] = 3593, - [4290] = 2376, - [4291] = 3612, - [4292] = 4292, - [4293] = 3609, - [4294] = 3652, - [4295] = 3633, - [4296] = 3617, - [4297] = 4297, - [4298] = 3619, - [4299] = 3612, - [4300] = 2182, - [4301] = 2945, - [4302] = 3622, - [4303] = 3597, - [4304] = 3598, - [4305] = 3600, - [4306] = 3633, - [4307] = 3620, - [4308] = 2425, - [4309] = 3621, - [4310] = 2434, - [4311] = 2174, - [4312] = 3664, - [4313] = 3612, - [4314] = 2937, - [4315] = 3615, - [4316] = 2421, - [4317] = 3664, - [4318] = 3597, - [4319] = 3598, - [4320] = 3615, - [4321] = 3617, - [4322] = 3618, - [4323] = 3601, - [4324] = 3619, - [4325] = 3620, - [4326] = 4326, - [4327] = 3621, - [4328] = 4326, - [4329] = 3622, - [4330] = 3617, - [4331] = 3594, - [4332] = 3597, - [4333] = 3595, - [4334] = 3652, - [4335] = 3598, - [4336] = 2997, - [4337] = 2941, - [4338] = 2183, - [4339] = 3618, - [4340] = 4326, - [4341] = 2194, - [4342] = 3607, - [4343] = 2182, - [4344] = 2947, - [4345] = 2942, - [4346] = 3600, - [4347] = 4326, - [4348] = 4326, - [4349] = 3600, - [4350] = 3652, - [4351] = 2997, + [4035] = 3949, + [4036] = 3949, + [4037] = 3594, + [4038] = 3595, + [4039] = 3653, + [4040] = 3654, + [4041] = 3657, + [4042] = 3596, + [4043] = 3661, + [4044] = 3941, + [4045] = 3662, + [4046] = 3664, + [4047] = 3668, + [4048] = 3949, + [4049] = 3682, + [4050] = 3639, + [4051] = 3949, + [4052] = 3997, + [4053] = 3942, + [4054] = 3949, + [4055] = 3975, + [4056] = 4015, + [4057] = 3949, + [4058] = 3593, + [4059] = 3594, + [4060] = 3595, + [4061] = 3596, + [4062] = 3699, + [4063] = 3700, + [4064] = 3949, + [4065] = 3949, + [4066] = 3948, + [4067] = 3992, + [4068] = 3615, + [4069] = 3863, + [4070] = 3948, + [4071] = 3997, + [4072] = 3942, + [4073] = 3949, + [4074] = 3949, + [4075] = 3949, + [4076] = 3948, + [4077] = 3948, + [4078] = 3949, + [4079] = 3943, + [4080] = 3948, + [4081] = 3949, + [4082] = 3948, + [4083] = 3948, + [4084] = 3941, + [4085] = 3701, + [4086] = 2915, + [4087] = 3702, + [4088] = 3949, + [4089] = 3949, + [4090] = 3949, + [4091] = 3701, + [4092] = 3948, + [4093] = 3702, + [4094] = 2956, + [4095] = 3974, + [4096] = 3682, + [4097] = 3948, + [4098] = 2194, + [4099] = 3949, + [4100] = 3992, + [4101] = 3647, + [4102] = 3997, + [4103] = 3949, + [4104] = 3655, + [4105] = 3664, + [4106] = 3668, + [4107] = 2450, + [4108] = 2448, + [4109] = 3594, + [4110] = 3668, + [4111] = 3625, + [4112] = 2403, + [4113] = 3595, + [4114] = 3653, + [4115] = 3654, + [4116] = 2940, + [4117] = 3615, + [4118] = 3367, + [4119] = 3615, + [4120] = 3661, + [4121] = 3659, + [4122] = 3653, + [4123] = 2428, + [4124] = 3654, + [4125] = 3657, + [4126] = 2186, + [4127] = 2184, + [4128] = 3657, + [4129] = 2173, + [4130] = 2189, + [4131] = 3596, + [4132] = 2173, + [4133] = 3661, + [4134] = 2942, + [4135] = 2187, + [4136] = 2950, + [4137] = 3647, + [4138] = 3682, + [4139] = 3309, + [4140] = 3662, + [4141] = 3682, + [4142] = 3664, + [4143] = 3625, + [4144] = 2382, + [4145] = 3648, + [4146] = 3649, + [4147] = 3699, + [4148] = 3700, + [4149] = 3701, + [4150] = 3702, + [4151] = 3639, + [4152] = 3779, + [4153] = 3650, + [4154] = 3593, + [4155] = 3698, + [4156] = 3593, + [4157] = 3594, + [4158] = 3648, + [4159] = 3595, + [4160] = 3596, + [4161] = 3863, + [4162] = 2185, + [4163] = 3649, + [4164] = 3662, + [4165] = 3650, + [4166] = 3647, + [4167] = 3779, + [4168] = 3280, + [4169] = 3625, + [4170] = 3282, + [4171] = 3281, + [4172] = 3615, + [4173] = 3647, + [4174] = 3367, + [4175] = 3701, + [4176] = 3702, + [4177] = 3863, + [4178] = 3682, + [4179] = 3300, + [4180] = 3661, + [4181] = 3698, + [4182] = 3648, + [4183] = 3662, + [4184] = 3664, + [4185] = 3649, + [4186] = 3293, + [4187] = 3668, + [4188] = 2173, + [4189] = 3297, + [4190] = 4190, + [4191] = 2407, + [4192] = 3596, + [4193] = 3376, + [4194] = 3657, + [4195] = 3593, + [4196] = 3699, + [4197] = 3700, + [4198] = 3650, + [4199] = 3594, + [4200] = 3303, + [4201] = 3381, + [4202] = 3382, + [4203] = 3396, + [4204] = 3595, + [4205] = 3341, + [4206] = 3377, + [4207] = 3383, + [4208] = 3653, + [4209] = 3286, + [4210] = 3331, + [4211] = 3367, + [4212] = 3301, + [4213] = 3298, + [4214] = 3659, + [4215] = 3307, + [4216] = 3295, + [4217] = 3391, + [4218] = 3654, + [4219] = 3268, + [4220] = 3655, + [4221] = 3596, + [4222] = 4222, + [4223] = 3625, + [4224] = 3653, + [4225] = 3648, + [4226] = 3668, + [4227] = 3615, + [4228] = 3595, + [4229] = 3648, + [4230] = 3649, + [4231] = 3647, + [4232] = 3654, + [4233] = 3657, + [4234] = 4234, + [4235] = 3615, + [4236] = 3863, + [4237] = 4237, + [4238] = 3593, + [4239] = 3650, + [4240] = 3596, + [4241] = 3594, + [4242] = 3661, + [4243] = 4243, + [4244] = 3662, + [4245] = 3653, + [4246] = 3664, + [4247] = 3654, + [4248] = 3647, + [4249] = 2915, + [4250] = 3668, + [4251] = 2423, + [4252] = 4252, + [4253] = 3682, + [4254] = 3593, + [4255] = 3648, + [4256] = 3367, + [4257] = 3657, + [4258] = 3649, + [4259] = 3698, + [4260] = 3664, + [4261] = 3596, + [4262] = 3661, + [4263] = 3662, + [4264] = 3664, + [4265] = 3668, + [4266] = 3625, + [4267] = 3699, + [4268] = 3700, + [4269] = 3649, + [4270] = 3647, + [4271] = 3594, + [4272] = 3779, + [4273] = 3655, + [4274] = 3639, + [4275] = 3594, + [4276] = 3595, + [4277] = 3650, + [4278] = 3382, + [4279] = 3595, + [4280] = 3701, + [4281] = 3650, + [4282] = 3659, + [4283] = 3702, + [4284] = 3661, + [4285] = 3625, + [4286] = 3639, + [4287] = 3615, + [4288] = 3653, + [4289] = 3682, + [4290] = 3662, + [4291] = 3682, + [4292] = 3657, + [4293] = 2382, + [4294] = 3593, + [4295] = 3654, + [4296] = 3383, + [4297] = 2194, + [4298] = 3661, + [4299] = 3648, + [4300] = 4300, + [4301] = 3593, + [4302] = 3615, + [4303] = 4300, + [4304] = 3650, + [4305] = 3593, + [4306] = 2173, + [4307] = 3661, + [4308] = 3662, + [4309] = 3650, + [4310] = 3595, + [4311] = 3625, + [4312] = 3615, + [4313] = 3664, + [4314] = 3647, + [4315] = 3657, + [4316] = 2183, + [4317] = 3668, + [4318] = 2182, + [4319] = 2173, + [4320] = 3625, + [4321] = 3653, + [4322] = 3594, + [4323] = 2943, + [4324] = 3639, + [4325] = 3653, + [4326] = 3650, + [4327] = 3654, + [4328] = 3596, + [4329] = 3682, + [4330] = 3657, + [4331] = 3648, + [4332] = 3649, + [4333] = 4300, + [4334] = 2421, + [4335] = 3661, + [4336] = 3682, + [4337] = 2396, + [4338] = 3594, + [4339] = 3654, + [4340] = 3593, + [4341] = 3594, + [4342] = 3639, + [4343] = 4300, + [4344] = 3595, + [4345] = 3657, + [4346] = 3596, + [4347] = 3682, + [4348] = 2425, + [4349] = 3662, + [4350] = 3595, + [4351] = 3649, [4352] = 3664, - [4353] = 3607, - [4354] = 3633, - [4355] = 3726, - [4356] = 3727, - [4357] = 3728, - [4358] = 3729, - [4359] = 3730, - [4360] = 3601, - [4361] = 3609, - [4362] = 2422, - [4363] = 2174, - [4364] = 3610, - [4365] = 3612, - [4366] = 3593, - [4367] = 3619, - [4368] = 4326, - [4369] = 3633, - [4370] = 3607, - [4371] = 3615, - [4372] = 3617, - [4373] = 2409, - [4374] = 3593, - [4375] = 3652, - [4376] = 3618, - [4377] = 3593, - [4378] = 2938, - [4379] = 3620, - [4380] = 3621, - [4381] = 3622, - [4382] = 3609, - [4383] = 3610, - [4384] = 3609, - [4385] = 2435, - [4386] = 3610, + [4353] = 2939, + [4354] = 3668, + [4355] = 2411, + [4356] = 3653, + [4357] = 3659, + [4358] = 4300, + [4359] = 3654, + [4360] = 2413, + [4361] = 3647, + [4362] = 2942, + [4363] = 2950, + [4364] = 3698, + [4365] = 3699, + [4366] = 3700, + [4367] = 3701, + [4368] = 3702, + [4369] = 3625, + [4370] = 2940, + [4371] = 3596, + [4372] = 3639, + [4373] = 3615, + [4374] = 2194, + [4375] = 3662, + [4376] = 3664, + [4377] = 2956, + [4378] = 2956, + [4379] = 3668, + [4380] = 4300, + [4381] = 3648, + [4382] = 2193, + [4383] = 3649, + [4384] = 3647, + [4385] = 2424, + [4386] = 3655, [4387] = 2183, - [4388] = 2192, - [4389] = 3601, - [4390] = 3633, - [4391] = 3620, - [4392] = 3609, - [4393] = 3610, - [4394] = 3600, - [4395] = 3615, - [4396] = 2343, - [4397] = 3633, - [4398] = 3664, - [4399] = 3277, - [4400] = 2187, - [4401] = 3607, - [4402] = 3633, - [4403] = 2961, - [4404] = 3612, - [4405] = 2344, - [4406] = 3610, - [4407] = 3612, - [4408] = 2956, - [4409] = 3617, - [4410] = 3664, - [4411] = 3618, - [4412] = 3621, - [4413] = 2416, - [4414] = 3615, - [4415] = 2355, - [4416] = 3617, - [4417] = 3594, - [4418] = 3615, - [4419] = 4419, - [4420] = 3617, - [4421] = 3618, - [4422] = 3619, - [4423] = 3612, - [4424] = 3618, - [4425] = 3601, - [4426] = 3619, - [4427] = 3597, - [4428] = 3598, - [4429] = 3601, - [4430] = 3620, - [4431] = 3621, - [4432] = 2957, - [4433] = 3622, - [4434] = 4419, - [4435] = 3593, - [4436] = 3595, - [4437] = 3620, - [4438] = 3622, - [4439] = 3621, - [4440] = 4440, - [4441] = 3619, - [4442] = 3622, - [4443] = 4443, - [4444] = 2186, - [4445] = 3609, - [4446] = 2366, - [4447] = 2456, - [4448] = 3335, - [4449] = 3610, - [4450] = 2340, - [4451] = 2341, - [4452] = 3335, - [4453] = 2421, - [4454] = 3664, - [4455] = 2435, - [4456] = 3593, - [4457] = 2456, - [4458] = 2192, - [4459] = 4419, - [4460] = 3609, - [4461] = 2376, - [4462] = 3664, - [4463] = 2982, - [4464] = 3610, - [4465] = 2408, - [4466] = 2174, + [4388] = 2182, + [4389] = 2949, + [4390] = 3661, + [4391] = 3668, + [4392] = 3668, + [4393] = 3659, + [4394] = 3647, + [4395] = 2971, + [4396] = 3657, + [4397] = 3662, + [4398] = 2428, + [4399] = 2984, + [4400] = 3662, + [4401] = 2184, + [4402] = 3779, + [4403] = 2993, + [4404] = 2359, + [4405] = 2396, + [4406] = 3367, + [4407] = 2337, + [4408] = 3649, + [4409] = 2344, + [4410] = 3668, + [4411] = 3655, + [4412] = 3659, + [4413] = 3650, + [4414] = 2450, + [4415] = 2193, + [4416] = 3682, + [4417] = 2985, + [4418] = 3648, + [4419] = 2187, + [4420] = 3649, + [4421] = 3648, + [4422] = 4422, + [4423] = 3653, + [4424] = 3654, + [4425] = 3657, + [4426] = 3661, + [4427] = 3650, + [4428] = 3662, + [4429] = 3664, + [4430] = 3664, + [4431] = 3649, + [4432] = 3668, + [4433] = 3625, + [4434] = 3639, + [4435] = 2382, + [4436] = 3655, + [4437] = 3382, + [4438] = 3383, + [4439] = 2902, + [4440] = 3650, + [4441] = 2334, + [4442] = 2189, + [4443] = 3647, + [4444] = 3647, + [4445] = 3309, + [4446] = 3595, + [4447] = 2358, + [4448] = 2403, + [4449] = 4449, + [4450] = 2421, + [4451] = 3625, + [4452] = 3659, + [4453] = 4453, + [4454] = 4453, + [4455] = 3647, + [4456] = 3615, + [4457] = 4457, + [4458] = 3593, + [4459] = 2407, + [4460] = 3639, + [4461] = 3863, + [4462] = 3639, + [4463] = 3615, + [4464] = 3650, + [4465] = 2341, + [4466] = 2423, [4467] = 3593, - [4468] = 3612, - [4469] = 3607, - [4470] = 2391, - [4471] = 3600, - [4472] = 3607, - [4473] = 3784, - [4474] = 2376, - [4475] = 2453, - [4476] = 2409, - [4477] = 3620, - [4478] = 3621, - [4479] = 3594, - [4480] = 3595, - [4481] = 2417, - [4482] = 3622, - [4483] = 3597, - [4484] = 4484, - [4485] = 3594, - [4486] = 3600, - [4487] = 3598, - [4488] = 3600, - [4489] = 3601, - [4490] = 2174, - [4491] = 2420, - [4492] = 4419, - [4493] = 2425, - [4494] = 2190, - [4495] = 3615, - [4496] = 3807, - [4497] = 2189, - [4498] = 2365, - [4499] = 2184, - [4500] = 3597, - [4501] = 3394, - [4502] = 3597, - [4503] = 2342, - [4504] = 3607, - [4505] = 3598, - [4506] = 3395, - [4507] = 4419, - [4508] = 2329, - [4509] = 3593, - [4510] = 3609, - [4511] = 4511, - [4512] = 2393, - [4513] = 2422, - [4514] = 3595, - [4515] = 3617, - [4516] = 3652, - [4517] = 3726, - [4518] = 3727, - [4519] = 3728, - [4520] = 3729, - [4521] = 3730, - [4522] = 3598, - [4523] = 2420, - [4524] = 3652, - [4525] = 4419, - [4526] = 3618, - [4527] = 2973, - [4528] = 3652, - [4529] = 2245, - [4530] = 2975, - [4531] = 2434, - [4532] = 3784, - [4533] = 3807, - [4534] = 2901, - [4535] = 3601, - [4536] = 3619, - [4537] = 3633, - [4538] = 3600, - [4539] = 3607, - [4540] = 3615, - [4541] = 3617, - [4542] = 3618, - [4543] = 3619, - [4544] = 3593, - [4545] = 3620, - [4546] = 3621, - [4547] = 3622, - [4548] = 3609, - [4549] = 3610, - [4550] = 3612, + [4468] = 3594, + [4469] = 3595, + [4470] = 4422, + [4471] = 3653, + [4472] = 4422, + [4473] = 3661, + [4474] = 3648, + [4475] = 3664, + [4476] = 3648, + [4477] = 4453, + [4478] = 2958, + [4479] = 3593, + [4480] = 3594, + [4481] = 2246, + [4482] = 3596, + [4483] = 2185, + [4484] = 2398, + [4485] = 3682, + [4486] = 3649, + [4487] = 4422, + [4488] = 4488, + [4489] = 3625, + [4490] = 4453, + [4491] = 4491, + [4492] = 3615, + [4493] = 3594, + [4494] = 3595, + [4495] = 2173, + [4496] = 3682, + [4497] = 2450, + [4498] = 2399, + [4499] = 3595, + [4500] = 3653, + [4501] = 3654, + [4502] = 3653, + [4503] = 2424, + [4504] = 3682, + [4505] = 3367, + [4506] = 2340, + [4507] = 3662, + [4508] = 2342, + [4509] = 3596, + [4510] = 3654, + [4511] = 3664, + [4512] = 4453, + [4513] = 3654, + [4514] = 3655, + [4515] = 2186, + [4516] = 3657, + [4517] = 4422, + [4518] = 3657, + [4519] = 2411, + [4520] = 2413, + [4521] = 3779, + [4522] = 3698, + [4523] = 3699, + [4524] = 3700, + [4525] = 3701, + [4526] = 3702, + [4527] = 2448, + [4528] = 3661, + [4529] = 3593, + [4530] = 2398, + [4531] = 3625, + [4532] = 3594, + [4533] = 3615, + [4534] = 3596, + [4535] = 3596, + [4536] = 2975, + [4537] = 2425, + [4538] = 2349, + [4539] = 2173, + [4540] = 2382, + [4541] = 4453, + [4542] = 3863, + [4543] = 3595, + [4544] = 3647, + [4545] = 3653, + [4546] = 3654, + [4547] = 3657, + [4548] = 3661, + [4549] = 3682, + [4550] = 3662, [4551] = 3664, - [4552] = 3615, - [4553] = 3617, - [4554] = 3618, - [4555] = 3619, - [4556] = 3620, - [4557] = 3621, - [4558] = 3622, - [4559] = 4559, - [4560] = 3335, - [4561] = 3394, - [4562] = 3395, - [4563] = 4563, - [4564] = 3609, - [4565] = 4565, - [4566] = 3597, - [4567] = 3598, - [4568] = 3601, - [4569] = 1942, - [4570] = 4563, - [4571] = 3597, - [4572] = 3598, - [4573] = 3615, - [4574] = 3617, - [4575] = 3618, - [4576] = 3601, - [4577] = 3619, - [4578] = 3620, - [4579] = 3621, - [4580] = 3622, - [4581] = 3607, - [4582] = 3593, - [4583] = 3609, - [4584] = 3610, - [4585] = 3612, - [4586] = 3664, - [4587] = 4563, - [4588] = 3593, - [4589] = 1916, - [4590] = 2916, - [4591] = 2418, - [4592] = 1937, - [4593] = 2376, - [4594] = 2924, - [4595] = 3597, - [4596] = 3598, - [4597] = 3601, - [4598] = 3593, - [4599] = 3335, - [4600] = 4600, - [4601] = 3394, - [4602] = 3395, - [4603] = 4603, - [4604] = 3784, - [4605] = 2408, - [4606] = 3597, - [4607] = 3598, - [4608] = 3600, - [4609] = 3615, - [4610] = 3617, - [4611] = 3618, - [4612] = 3601, - [4613] = 3619, - [4614] = 3593, - [4615] = 3620, - [4616] = 3621, - [4617] = 3622, - [4618] = 3610, - [4619] = 3612, - [4620] = 2913, - [4621] = 3607, - [4622] = 3597, - [4623] = 3598, - [4624] = 3601, - [4625] = 3593, - [4626] = 2927, - [4627] = 3013, - [4628] = 3030, - [4629] = 3034, - [4630] = 3010, - [4631] = 3085, - [4632] = 3597, - [4633] = 3598, - [4634] = 3601, - [4635] = 3593, - [4636] = 3054, - [4637] = 3087, - [4638] = 3025, - [4639] = 3035, - [4640] = 3058, - [4641] = 3059, - [4642] = 3061, - [4643] = 3069, - [4644] = 3077, - [4645] = 3028, - [4646] = 3015, - [4647] = 3094, - [4648] = 3023, - [4649] = 3083, - [4650] = 3084, - [4651] = 3018, - [4652] = 3031, - [4653] = 3032, - [4654] = 3036, - [4655] = 3073, - [4656] = 3594, - [4657] = 3076, - [4658] = 3079, - [4659] = 3089, - [4660] = 3090, - [4661] = 3091, - [4662] = 4662, - [4663] = 3099, - [4664] = 3063, - [4665] = 3002, - [4666] = 3005, - [4667] = 3006, - [4668] = 3103, - [4669] = 3093, - [4670] = 3097, - [4671] = 4563, - [4672] = 3100, - [4673] = 3102, - [4674] = 3053, - [4675] = 3664, - [4676] = 3633, - [4677] = 3607, - [4678] = 3609, - [4679] = 3727, - [4680] = 3728, - [4681] = 3000, - [4682] = 3597, - [4683] = 3598, - [4684] = 3600, - [4685] = 3729, - [4686] = 3730, - [4687] = 3615, - [4688] = 3617, - [4689] = 3618, - [4690] = 3601, - [4691] = 3619, - [4692] = 3593, - [4693] = 3620, - [4694] = 3621, - [4695] = 3622, - [4696] = 3001, - [4697] = 3610, - [4698] = 3664, - [4699] = 3633, - [4700] = 3008, - [4701] = 3011, - [4702] = 3021, - [4703] = 3335, - [4704] = 3784, - [4705] = 3664, - [4706] = 3027, - [4707] = 3612, - [4708] = 3029, - [4709] = 3037, - [4710] = 3044, - [4711] = 3048, - [4712] = 3057, - [4713] = 3595, - [4714] = 3020, - [4715] = 3067, - [4716] = 3074, - [4717] = 3807, - [4718] = 3075, - [4719] = 3078, - [4720] = 3081, - [4721] = 3101, - [4722] = 3092, - [4723] = 3096, - [4724] = 2998, - [4725] = 3600, - [4726] = 3607, - [4727] = 3609, - [4728] = 3607, - [4729] = 3609, - [4730] = 3372, - [4731] = 3612, - [4732] = 3664, - [4733] = 3807, - [4734] = 3664, - [4735] = 3633, - [4736] = 3607, - [4737] = 3652, - [4738] = 3593, - [4739] = 3609, - [4740] = 3594, - [4741] = 3610, - [4742] = 3612, - [4743] = 3595, - [4744] = 3652, - [4745] = 3633, - [4746] = 3607, - [4747] = 3615, - [4748] = 3617, - [4749] = 3618, - [4750] = 3619, - [4751] = 3620, - [4752] = 3621, - [4753] = 3622, - [4754] = 3609, - [4755] = 3610, - [4756] = 3612, - [4757] = 3664, - [4758] = 3597, - [4759] = 3598, - [4760] = 3600, - [4761] = 3601, - [4762] = 3017, - [4763] = 3019, - [4764] = 3652, - [4765] = 3594, - [4766] = 3652, - [4767] = 3595, - [4768] = 3600, - [4769] = 3607, - [4770] = 3615, - [4771] = 3617, - [4772] = 3618, - [4773] = 3619, - [4774] = 3620, - [4775] = 3621, - [4776] = 3622, - [4777] = 3609, - [4778] = 3610, - [4779] = 3612, - [4780] = 3664, - [4781] = 3344, - [4782] = 3652, - [4783] = 3600, - [4784] = 3594, - [4785] = 3652, - [4786] = 3595, - [4787] = 3607, - [4788] = 3633, - [4789] = 3615, - [4790] = 3633, - [4791] = 3600, - [4792] = 3617, - [4793] = 3618, - [4794] = 3619, - [4795] = 3620, - [4796] = 3621, - [4797] = 3622, - [4798] = 3609, - [4799] = 3610, - [4800] = 3612, - [4801] = 3807, - [4802] = 3335, - [4803] = 3784, - [4804] = 3594, - [4805] = 3595, - [4806] = 3633, - [4807] = 3600, - [4808] = 3664, - [4809] = 3633, - [4810] = 3633, - [4811] = 3633, - [4812] = 3055, - [4813] = 3352, - [4814] = 3353, - [4815] = 3354, - [4816] = 3355, - [4817] = 3357, - [4818] = 3358, - [4819] = 3726, - [4820] = 4563, - [4821] = 3726, - [4822] = 3727, - [4823] = 3728, - [4824] = 3729, - [4825] = 3730, - [4826] = 3597, - [4827] = 3598, - [4828] = 3600, - [4829] = 3615, - [4830] = 3617, - [4831] = 3618, - [4832] = 3601, - [4833] = 3619, - [4834] = 3607, - [4835] = 3597, - [4836] = 3598, - [4837] = 3600, - [4838] = 3615, - [4839] = 3617, - [4840] = 3618, - [4841] = 3601, - [4842] = 3619, - [4843] = 3593, - [4844] = 3620, - [4845] = 3621, - [4846] = 3622, - [4847] = 3593, - [4848] = 3609, - [4849] = 3610, - [4850] = 3620, - [4851] = 3621, - [4852] = 3622, - [4853] = 3612, - [4854] = 3664, - [4855] = 3610, - [4856] = 3359, - [4857] = 3360, - [4858] = 3612, - [4859] = 3361, - [4860] = 3726, - [4861] = 3727, - [4862] = 3728, - [4863] = 3729, - [4864] = 3730, - [4865] = 3362, - [4866] = 3363, - [4867] = 3364, - [4868] = 3365, - [4869] = 3368, - [4870] = 3369, - [4871] = 3370, - [4872] = 3597, - [4873] = 3598, - [4874] = 3615, - [4875] = 3617, - [4876] = 3618, - [4877] = 3601, - [4878] = 3619, - [4879] = 3620, - [4880] = 3621, - [4881] = 3622, - [4882] = 3594, - [4883] = 3652, - [4884] = 3373, - [4885] = 3595, - [4886] = 3633, - [4887] = 3371, - [4888] = 3610, - [4889] = 3730, - [4890] = 4890, - [4891] = 3726, + [4552] = 3668, + [4553] = 3648, + [4554] = 3649, + [4555] = 3650, + [4556] = 3625, + [4557] = 3653, + [4558] = 3654, + [4559] = 3657, + [4560] = 3661, + [4561] = 3662, + [4562] = 3664, + [4563] = 3668, + [4564] = 4564, + [4565] = 3367, + [4566] = 3382, + [4567] = 3383, + [4568] = 3648, + [4569] = 4569, + [4570] = 3593, + [4571] = 3594, + [4572] = 3596, + [4573] = 1937, + [4574] = 3593, + [4575] = 3594, + [4576] = 3653, + [4577] = 3654, + [4578] = 3657, + [4579] = 3596, + [4580] = 3661, + [4581] = 3662, + [4582] = 3664, + [4583] = 3668, + [4584] = 3647, + [4585] = 3682, + [4586] = 3648, + [4587] = 3649, + [4588] = 3650, + [4589] = 3625, + [4590] = 3682, + [4591] = 1915, + [4592] = 2913, + [4593] = 2415, + [4594] = 1942, + [4595] = 2382, + [4596] = 2926, + [4597] = 4597, + [4598] = 3367, + [4599] = 3382, + [4600] = 3593, + [4601] = 3594, + [4602] = 3596, + [4603] = 3682, + [4604] = 3383, + [4605] = 4605, + [4606] = 3779, + [4607] = 2399, + [4608] = 3593, + [4609] = 3594, + [4610] = 3595, + [4611] = 3653, + [4612] = 3654, + [4613] = 3657, + [4614] = 3596, + [4615] = 3661, + [4616] = 3682, + [4617] = 3662, + [4618] = 3664, + [4619] = 3668, + [4620] = 3649, + [4621] = 3650, + [4622] = 2919, + [4623] = 3647, + [4624] = 3593, + [4625] = 3594, + [4626] = 3596, + [4627] = 3682, + [4628] = 2922, + [4629] = 3064, + [4630] = 3066, + [4631] = 3067, + [4632] = 3070, + [4633] = 3071, + [4634] = 3593, + [4635] = 3594, + [4636] = 3596, + [4637] = 3682, + [4638] = 3075, + [4639] = 3078, + [4640] = 3081, + [4641] = 3083, + [4642] = 3001, + [4643] = 3084, + [4644] = 3085, + [4645] = 3087, + [4646] = 3089, + [4647] = 3095, + [4648] = 3096, + [4649] = 3098, + [4650] = 3099, + [4651] = 3100, + [4652] = 3101, + [4653] = 3063, + [4654] = 3002, + [4655] = 3015, + [4656] = 3020, + [4657] = 3092, + [4658] = 3655, + [4659] = 3097, + [4660] = 3003, + [4661] = 3005, + [4662] = 3011, + [4663] = 3013, + [4664] = 4664, + [4665] = 3028, + [4666] = 3032, + [4667] = 3041, + [4668] = 3046, + [4669] = 3051, + [4670] = 3065, + [4671] = 3068, + [4672] = 3069, + [4673] = 3074, + [4674] = 3076, + [4675] = 2998, + [4676] = 3625, + [4677] = 3615, + [4678] = 3647, + [4679] = 3086, + [4680] = 3091, + [4681] = 3593, + [4682] = 3648, + [4683] = 3699, + [4684] = 3700, + [4685] = 3594, + [4686] = 3595, + [4687] = 3653, + [4688] = 3654, + [4689] = 3657, + [4690] = 3596, + [4691] = 3661, + [4692] = 3701, + [4693] = 3702, + [4694] = 3682, + [4695] = 3662, + [4696] = 3664, + [4697] = 3668, + [4698] = 3649, + [4699] = 3625, + [4700] = 3615, + [4701] = 3004, + [4702] = 3008, + [4703] = 3010, + [4704] = 3014, + [4705] = 3367, + [4706] = 3779, + [4707] = 3017, + [4708] = 3650, + [4709] = 3625, + [4710] = 3021, + [4711] = 3022, + [4712] = 3024, + [4713] = 3033, + [4714] = 3659, + [4715] = 3079, + [4716] = 3043, + [4717] = 3863, + [4718] = 3048, + [4719] = 3049, + [4720] = 3050, + [4721] = 3052, + [4722] = 3047, + [4723] = 3058, + [4724] = 3059, + [4725] = 3061, + [4726] = 3595, + [4727] = 3647, + [4728] = 3648, + [4729] = 3647, + [4730] = 3648, + [4731] = 3649, + [4732] = 3650, + [4733] = 3625, + [4734] = 3863, + [4735] = 3307, + [4736] = 3615, + [4737] = 3647, + [4738] = 3682, + [4739] = 3639, + [4740] = 3648, + [4741] = 3655, + [4742] = 3649, + [4743] = 3650, + [4744] = 3659, + [4745] = 3639, + [4746] = 3615, + [4747] = 3647, + [4748] = 3653, + [4749] = 3654, + [4750] = 3657, + [4751] = 3661, + [4752] = 3662, + [4753] = 3664, + [4754] = 3668, + [4755] = 3648, + [4756] = 3649, + [4757] = 3650, + [4758] = 3625, + [4759] = 3593, + [4760] = 3594, + [4761] = 3595, + [4762] = 3596, + [4763] = 3006, + [4764] = 3007, + [4765] = 3639, + [4766] = 3298, + [4767] = 3655, + [4768] = 3639, + [4769] = 3659, + [4770] = 3595, + [4771] = 3647, + [4772] = 3653, + [4773] = 3654, + [4774] = 3657, + [4775] = 3661, + [4776] = 3662, + [4777] = 3664, + [4778] = 3668, + [4779] = 3648, + [4780] = 3649, + [4781] = 3650, + [4782] = 3625, + [4783] = 3639, + [4784] = 3647, + [4785] = 3653, + [4786] = 3654, + [4787] = 3657, + [4788] = 3595, + [4789] = 3661, + [4790] = 3655, + [4791] = 3639, + [4792] = 3659, + [4793] = 3662, + [4794] = 3615, + [4795] = 3664, + [4796] = 3615, + [4797] = 3595, + [4798] = 3668, + [4799] = 3648, + [4800] = 3649, + [4801] = 3650, + [4802] = 3863, + [4803] = 3367, + [4804] = 3779, + [4805] = 3655, + [4806] = 3659, + [4807] = 3615, + [4808] = 3595, + [4809] = 3625, + [4810] = 3615, + [4811] = 3615, + [4812] = 3615, + [4813] = 3023, + [4814] = 3381, + [4815] = 3396, + [4816] = 3341, + [4817] = 3377, + [4818] = 3286, + [4819] = 3331, + [4820] = 3698, + [4821] = 3698, + [4822] = 3699, + [4823] = 3700, + [4824] = 3701, + [4825] = 3702, + [4826] = 3593, + [4827] = 3594, + [4828] = 3595, + [4829] = 3653, + [4830] = 3654, + [4831] = 3657, + [4832] = 3596, + [4833] = 3661, + [4834] = 3682, + [4835] = 3662, + [4836] = 3664, + [4837] = 3668, + [4838] = 3647, + [4839] = 3593, + [4840] = 3594, + [4841] = 3595, + [4842] = 3653, + [4843] = 3654, + [4844] = 3657, + [4845] = 3596, + [4846] = 3661, + [4847] = 3682, + [4848] = 3662, + [4849] = 3664, + [4850] = 3668, + [4851] = 3648, + [4852] = 3649, + [4853] = 3650, + [4854] = 3625, + [4855] = 3649, + [4856] = 3376, + [4857] = 3281, + [4858] = 3301, + [4859] = 3650, + [4860] = 3391, + [4861] = 3268, + [4862] = 3280, + [4863] = 3698, + [4864] = 3699, + [4865] = 3700, + [4866] = 3701, + [4867] = 3702, + [4868] = 3282, + [4869] = 3293, + [4870] = 3295, + [4871] = 3297, + [4872] = 3593, + [4873] = 3594, + [4874] = 3653, + [4875] = 3654, + [4876] = 3657, + [4877] = 3596, + [4878] = 3661, + [4879] = 3662, + [4880] = 3664, + [4881] = 3668, + [4882] = 3300, + [4883] = 3303, + [4884] = 3655, + [4885] = 3639, + [4886] = 3659, + [4887] = 3615, + [4888] = 3625, + [4889] = 3596, + [4890] = 3625, + [4891] = 4891, [4892] = 4892, - [4893] = 4893, - [4894] = 3597, - [4895] = 3597, - [4896] = 3598, - [4897] = 3600, - [4898] = 3615, - [4899] = 3617, - [4900] = 4900, + [4893] = 3593, + [4894] = 3594, + [4895] = 3595, + [4896] = 3653, + [4897] = 3654, + [4898] = 3657, + [4899] = 3596, + [4900] = 3661, [4901] = 4901, - [4902] = 3618, - [4903] = 3601, - [4904] = 3597, - [4905] = 3598, - [4906] = 3615, - [4907] = 3617, - [4908] = 3618, - [4909] = 3601, - [4910] = 3619, - [4911] = 3620, - [4912] = 3622, - [4913] = 4913, - [4914] = 3607, - [4915] = 3593, - [4916] = 3609, - [4917] = 3610, - [4918] = 3612, - [4919] = 3664, - [4920] = 3619, - [4921] = 3620, - [4922] = 4900, - [4923] = 3621, - [4924] = 4900, - [4925] = 4900, - [4926] = 4900, - [4927] = 3622, - [4928] = 4900, - [4929] = 4900, - [4930] = 3727, - [4931] = 3728, - [4932] = 4932, - [4933] = 3607, - [4934] = 4890, - [4935] = 2997, - [4936] = 3598, - [4937] = 3600, - [4938] = 4559, - [4939] = 3615, - [4940] = 3622, - [4941] = 4941, - [4942] = 3607, - [4943] = 4901, - [4944] = 4900, - [4945] = 4890, - [4946] = 3593, - [4947] = 3617, - [4948] = 4948, - [4949] = 3618, - [4950] = 3601, - [4951] = 3609, - [4952] = 2456, - [4953] = 2453, - [4954] = 3612, - [4955] = 3609, - [4956] = 3597, - [4957] = 3598, - [4958] = 3615, - [4959] = 3617, - [4960] = 3618, - [4961] = 3601, - [4962] = 3619, - [4963] = 3620, - [4964] = 3621, - [4965] = 3622, - [4966] = 3729, - [4967] = 3730, - [4968] = 4900, - [4969] = 3610, - [4970] = 4890, - [4971] = 3619, + [4902] = 4902, + [4903] = 3662, + [4904] = 4904, + [4905] = 3593, + [4906] = 3594, + [4907] = 3653, + [4908] = 3654, + [4909] = 3657, + [4910] = 3596, + [4911] = 3661, + [4912] = 3662, + [4913] = 3664, + [4914] = 3668, + [4915] = 3664, + [4916] = 3647, + [4917] = 3682, + [4918] = 3648, + [4919] = 3649, + [4920] = 3650, + [4921] = 3625, + [4922] = 3668, + [4923] = 4902, + [4924] = 4902, + [4925] = 4902, + [4926] = 4902, + [4927] = 4902, + [4928] = 4928, + [4929] = 3699, + [4930] = 3700, + [4931] = 4902, + [4932] = 3654, + [4933] = 3657, + [4934] = 4891, + [4935] = 3596, + [4936] = 3661, + [4937] = 4564, + [4938] = 4938, + [4939] = 3647, + [4940] = 4901, + [4941] = 4891, + [4942] = 3682, + [4943] = 3593, + [4944] = 2956, + [4945] = 4902, + [4946] = 4946, + [4947] = 3594, + [4948] = 3682, + [4949] = 3648, + [4950] = 3650, + [4951] = 2450, + [4952] = 2448, + [4953] = 3648, + [4954] = 3593, + [4955] = 3594, + [4956] = 3653, + [4957] = 3654, + [4958] = 3657, + [4959] = 4901, + [4960] = 3661, + [4961] = 3662, + [4962] = 3664, + [4963] = 3668, + [4964] = 3649, + [4965] = 3701, + [4966] = 3702, + [4967] = 3662, + [4968] = 4902, + [4969] = 4891, + [4970] = 3625, + [4971] = 4901, [4972] = 4972, - [4973] = 4901, - [4974] = 4901, - [4975] = 4975, - [4976] = 3607, - [4977] = 3593, - [4978] = 3609, - [4979] = 3610, - [4980] = 3612, - [4981] = 3664, - [4982] = 4900, + [4973] = 4973, + [4974] = 3647, + [4975] = 4901, + [4976] = 4902, + [4977] = 3682, + [4978] = 3648, + [4979] = 3649, + [4980] = 3650, + [4981] = 3625, + [4982] = 3593, [4983] = 4983, - [4984] = 3664, - [4985] = 3597, - [4986] = 3598, - [4987] = 3615, - [4988] = 3617, - [4989] = 3618, - [4990] = 3601, - [4991] = 3619, - [4992] = 3620, - [4993] = 3621, - [4994] = 3622, + [4984] = 3594, + [4985] = 3653, + [4986] = 3654, + [4987] = 3657, + [4988] = 3596, + [4989] = 3661, + [4990] = 3662, + [4991] = 3664, + [4992] = 3668, + [4993] = 4993, + [4994] = 3593, [4995] = 4995, - [4996] = 3597, + [4996] = 3647, [4997] = 4997, - [4998] = 3607, - [4999] = 3609, - [5000] = 5000, - [5001] = 5001, - [5002] = 4900, - [5003] = 3598, - [5004] = 3784, - [5005] = 3607, - [5006] = 3593, - [5007] = 3609, - [5008] = 3610, - [5009] = 3612, - [5010] = 3664, - [5011] = 3600, - [5012] = 3615, - [5013] = 3617, - [5014] = 3618, - [5015] = 3601, - [5016] = 3619, - [5017] = 3807, - [5018] = 3593, - [5019] = 4900, + [4998] = 4998, + [4999] = 3648, + [5000] = 4902, + [5001] = 3594, + [5002] = 3779, + [5003] = 3647, + [5004] = 3682, + [5005] = 3648, + [5006] = 3649, + [5007] = 3650, + [5008] = 3625, + [5009] = 3595, + [5010] = 3653, + [5011] = 4902, + [5012] = 3654, + [5013] = 3657, + [5014] = 3596, + [5015] = 3661, + [5016] = 3682, + [5017] = 3662, + [5018] = 3615, + [5019] = 3863, [5020] = 3664, - [5021] = 3633, - [5022] = 3620, - [5023] = 3807, - [5024] = 3633, - [5025] = 4900, - [5026] = 3621, - [5027] = 3622, - [5028] = 4901, - [5029] = 3610, - [5030] = 4900, - [5031] = 3612, - [5032] = 3610, - [5033] = 3593, - [5034] = 3612, - [5035] = 3277, - [5036] = 3335, - [5037] = 4900, - [5038] = 4900, - [5039] = 3652, - [5040] = 4890, - [5041] = 3597, - [5042] = 3598, - [5043] = 3615, - [5044] = 3617, - [5045] = 3618, - [5046] = 3601, - [5047] = 3619, - [5048] = 3620, - [5049] = 4900, - [5050] = 3652, - [5051] = 3621, - [5052] = 3600, - [5053] = 3622, - [5054] = 3633, - [5055] = 3784, - [5056] = 4941, - [5057] = 4900, - [5058] = 3652, - [5059] = 3600, - [5060] = 3633, - [5061] = 4900, - [5062] = 3600, - [5063] = 3633, - [5064] = 5064, - [5065] = 4900, - [5066] = 3652, - [5067] = 3600, - [5068] = 3633, - [5069] = 4900, - [5070] = 3652, - [5071] = 3600, - [5072] = 3633, - [5073] = 3652, - [5074] = 4890, - [5075] = 3784, - [5076] = 3607, - [5077] = 3593, - [5078] = 3609, - [5079] = 4900, - [5080] = 3610, - [5081] = 3600, - [5082] = 3612, - [5083] = 3664, - [5084] = 3633, + [5021] = 3863, + [5022] = 3625, + [5023] = 3668, + [5024] = 3649, + [5025] = 3615, + [5026] = 4902, + [5027] = 4891, + [5028] = 3309, + [5029] = 4901, + [5030] = 3367, + [5031] = 3650, + [5032] = 3649, + [5033] = 3664, + [5034] = 3650, + [5035] = 4902, + [5036] = 3639, + [5037] = 4902, + [5038] = 4938, + [5039] = 3593, + [5040] = 3594, + [5041] = 3653, + [5042] = 3654, + [5043] = 3657, + [5044] = 3596, + [5045] = 3661, + [5046] = 3662, + [5047] = 4902, + [5048] = 3639, + [5049] = 3664, + [5050] = 3595, + [5051] = 3668, + [5052] = 3615, + [5053] = 3779, + [5054] = 5054, + [5055] = 4902, + [5056] = 3639, + [5057] = 3595, + [5058] = 3615, + [5059] = 4902, + [5060] = 3595, + [5061] = 3615, + [5062] = 4902, + [5063] = 3639, + [5064] = 3595, + [5065] = 3615, + [5066] = 4902, + [5067] = 3639, + [5068] = 3595, + [5069] = 3615, + [5070] = 3639, + [5071] = 4891, + [5072] = 3779, + [5073] = 3647, + [5074] = 3682, + [5075] = 3648, + [5076] = 3649, + [5077] = 4902, + [5078] = 3595, + [5079] = 3650, + [5080] = 3625, + [5081] = 3615, + [5082] = 4901, + [5083] = 3863, + [5084] = 5084, [5085] = 4901, - [5086] = 3807, - [5087] = 4901, - [5088] = 4900, + [5086] = 5086, + [5087] = 5087, + [5088] = 4902, [5089] = 5089, - [5090] = 5090, - [5091] = 5091, - [5092] = 5092, - [5093] = 3597, - [5094] = 3598, - [5095] = 3615, - [5096] = 3617, - [5097] = 3618, - [5098] = 3601, - [5099] = 3619, - [5100] = 3620, - [5101] = 3621, - [5102] = 3622, - [5103] = 3607, - [5104] = 3593, - [5105] = 3609, - [5106] = 3610, - [5107] = 3612, - [5108] = 4900, + [5090] = 3593, + [5091] = 3594, + [5092] = 3653, + [5093] = 3654, + [5094] = 3657, + [5095] = 3596, + [5096] = 3661, + [5097] = 3662, + [5098] = 3664, + [5099] = 3668, + [5100] = 3647, + [5101] = 3682, + [5102] = 3648, + [5103] = 3649, + [5104] = 3650, + [5105] = 3625, + [5106] = 5106, + [5107] = 4902, + [5108] = 4902, [5109] = 5109, - [5110] = 4900, - [5111] = 3664, - [5112] = 3620, - [5113] = 3621, - [5114] = 4901, - [5115] = 3726, - [5116] = 3727, - [5117] = 3728, - [5118] = 3729, - [5119] = 3730, - [5120] = 3664, - [5121] = 5121, - [5122] = 3726, - [5123] = 3727, - [5124] = 3728, - [5125] = 3729, - [5126] = 3730, - [5127] = 5127, - [5128] = 3726, - [5129] = 3727, - [5130] = 3728, - [5131] = 3729, - [5132] = 3730, - [5133] = 3726, - [5134] = 3727, - [5135] = 3728, - [5136] = 3729, - [5137] = 3730, - [5138] = 5138, - [5139] = 5139, - [5140] = 3633, - [5141] = 4900, - [5142] = 3597, - [5143] = 3598, - [5144] = 3615, - [5145] = 3617, - [5146] = 3618, - [5147] = 3601, - [5148] = 3619, - [5149] = 3620, - [5150] = 3621, - [5151] = 3622, - [5152] = 3726, - [5153] = 3607, - [5154] = 3727, - [5155] = 3728, - [5156] = 3593, - [5157] = 3729, - [5158] = 3609, - [5159] = 3610, - [5160] = 3612, - [5161] = 3664, - [5162] = 3621, - [5163] = 3622, - [5164] = 3395, - [5165] = 3609, + [5110] = 3668, + [5111] = 3647, + [5112] = 3595, + [5113] = 3625, + [5114] = 5114, + [5115] = 3615, + [5116] = 3698, + [5117] = 3699, + [5118] = 3700, + [5119] = 3701, + [5120] = 3702, + [5121] = 3698, + [5122] = 3699, + [5123] = 3700, + [5124] = 3701, + [5125] = 3702, + [5126] = 3698, + [5127] = 3699, + [5128] = 3700, + [5129] = 3701, + [5130] = 3702, + [5131] = 5131, + [5132] = 5132, + [5133] = 3698, + [5134] = 3699, + [5135] = 3700, + [5136] = 3701, + [5137] = 3702, + [5138] = 4902, + [5139] = 3593, + [5140] = 3594, + [5141] = 3653, + [5142] = 3654, + [5143] = 3657, + [5144] = 3596, + [5145] = 3661, + [5146] = 3662, + [5147] = 3664, + [5148] = 3668, + [5149] = 5149, + [5150] = 3653, + [5151] = 3647, + [5152] = 3698, + [5153] = 3682, + [5154] = 3699, + [5155] = 3700, + [5156] = 3648, + [5157] = 3701, + [5158] = 3702, + [5159] = 3649, + [5160] = 3698, + [5161] = 3650, + [5162] = 4902, + [5163] = 5163, + [5164] = 5164, + [5165] = 5165, [5166] = 5166, - [5167] = 5167, + [5167] = 2278, [5168] = 5168, - [5169] = 5169, - [5170] = 3784, + [5169] = 2448, + [5170] = 5170, [5171] = 5171, - [5172] = 5172, - [5173] = 5173, + [5172] = 4972, + [5173] = 4973, [5174] = 5174, - [5175] = 3594, - [5176] = 2284, - [5177] = 4972, - [5178] = 5121, - [5179] = 3595, - [5180] = 3784, - [5181] = 4975, - [5182] = 3664, - [5183] = 3633, - [5184] = 3807, - [5185] = 3610, - [5186] = 3335, - [5187] = 3807, - [5188] = 5172, - [5189] = 3593, - [5190] = 3807, - [5191] = 5191, - [5192] = 3612, - [5193] = 3600, - [5194] = 3607, - [5195] = 3593, - [5196] = 5173, - [5197] = 3633, - [5198] = 3609, - [5199] = 3807, - [5200] = 3610, - [5201] = 3612, - [5202] = 3335, - [5203] = 3597, - [5204] = 3598, - [5205] = 3600, - [5206] = 3784, - [5207] = 3615, - [5208] = 3617, - [5209] = 5209, + [5175] = 3655, + [5176] = 5176, + [5177] = 3863, + [5178] = 5178, + [5179] = 5179, + [5180] = 3659, + [5181] = 3863, + [5182] = 5182, + [5183] = 3625, + [5184] = 3615, + [5185] = 3863, + [5186] = 3653, + [5187] = 2450, + [5188] = 3367, + [5189] = 3650, + [5190] = 3863, + [5191] = 3682, + [5192] = 3647, + [5193] = 5193, + [5194] = 3682, + [5195] = 3648, + [5196] = 5179, + [5197] = 3615, + [5198] = 3649, + [5199] = 3654, + [5200] = 3650, + [5201] = 5182, + [5202] = 5165, + [5203] = 3593, + [5204] = 3593, + [5205] = 3594, + [5206] = 3779, + [5207] = 3595, + [5208] = 3653, + [5209] = 3654, [5210] = 5210, - [5211] = 2468, + [5211] = 3657, [5212] = 5212, - [5213] = 3618, - [5214] = 5214, - [5215] = 3615, - [5216] = 5216, - [5217] = 5217, - [5218] = 5218, - [5219] = 3597, - [5220] = 3598, - [5221] = 3600, - [5222] = 5222, - [5223] = 3601, - [5224] = 5224, - [5225] = 3601, - [5226] = 5226, - [5227] = 5212, - [5228] = 5228, - [5229] = 5229, - [5230] = 3619, - [5231] = 3594, - [5232] = 3335, - [5233] = 3607, - [5234] = 3593, - [5235] = 3609, - [5236] = 2456, - [5237] = 3607, - [5238] = 3610, - [5239] = 3617, - [5240] = 3618, - [5241] = 3612, - [5242] = 3620, - [5243] = 3597, - [5244] = 3598, - [5245] = 3600, - [5246] = 3615, - [5247] = 3617, - [5248] = 3618, - [5249] = 3601, - [5250] = 3619, - [5251] = 3620, - [5252] = 3621, - [5253] = 3622, - [5254] = 3621, - [5255] = 3601, - [5256] = 3619, - [5257] = 3620, - [5258] = 3622, - [5259] = 5259, + [5213] = 5213, + [5214] = 3594, + [5215] = 5215, + [5216] = 3595, + [5217] = 3596, + [5218] = 3367, + [5219] = 3367, + [5220] = 5220, + [5221] = 5221, + [5222] = 2445, + [5223] = 5223, + [5224] = 3596, + [5225] = 3661, + [5226] = 3662, + [5227] = 5174, + [5228] = 2279, + [5229] = 5213, + [5230] = 5230, + [5231] = 3647, + [5232] = 3682, + [5233] = 3648, + [5234] = 5234, + [5235] = 3657, + [5236] = 3649, + [5237] = 3596, + [5238] = 3661, + [5239] = 3650, + [5240] = 3647, + [5241] = 3593, + [5242] = 3594, + [5243] = 3595, + [5244] = 3653, + [5245] = 3654, + [5246] = 3657, + [5247] = 3596, + [5248] = 3661, + [5249] = 3662, + [5250] = 3664, + [5251] = 3668, + [5252] = 3664, + [5253] = 3662, + [5254] = 3664, + [5255] = 3655, + [5256] = 5256, + [5257] = 3668, + [5258] = 2448, + [5259] = 5166, [5260] = 5260, - [5261] = 3593, - [5262] = 5262, - [5263] = 3807, - [5264] = 2453, - [5265] = 3609, - [5266] = 3610, - [5267] = 3621, - [5268] = 3612, - [5269] = 3784, - [5270] = 2261, - [5271] = 5271, - [5272] = 3597, - [5273] = 5273, - [5274] = 2245, - [5275] = 3394, - [5276] = 5168, - [5277] = 2453, - [5278] = 5278, - [5279] = 5279, - [5280] = 5228, - [5281] = 4941, - [5282] = 3600, - [5283] = 3807, - [5284] = 5212, - [5285] = 3335, - [5286] = 5229, - [5287] = 2245, - [5288] = 2308, + [5261] = 3682, + [5262] = 3648, + [5263] = 3863, + [5264] = 3668, + [5265] = 5265, + [5266] = 5221, + [5267] = 3649, + [5268] = 3650, + [5269] = 5269, + [5270] = 3779, + [5271] = 5109, + [5272] = 3593, + [5273] = 2246, + [5274] = 3594, + [5275] = 3779, + [5276] = 3595, + [5277] = 4938, + [5278] = 3649, + [5279] = 2445, + [5280] = 3653, + [5281] = 3863, + [5282] = 5213, + [5283] = 3367, + [5284] = 3654, + [5285] = 2246, + [5286] = 3625, + [5287] = 5287, + [5288] = 2310, [5289] = 5289, - [5290] = 3615, - [5291] = 5217, - [5292] = 5218, - [5293] = 5218, - [5294] = 5228, - [5295] = 3664, + [5290] = 3657, + [5291] = 2183, + [5292] = 5220, + [5293] = 5221, + [5294] = 2182, + [5295] = 5174, [5296] = 5296, - [5297] = 5217, - [5298] = 5218, - [5299] = 5228, - [5300] = 3617, - [5301] = 3618, - [5302] = 3807, - [5303] = 2183, - [5304] = 2182, - [5305] = 5217, - [5306] = 5218, - [5307] = 5228, - [5308] = 2468, - [5309] = 5212, - [5310] = 3594, - [5311] = 3601, - [5312] = 5312, - [5313] = 4932, - [5314] = 5218, - [5315] = 3595, - [5316] = 5316, - [5317] = 3664, - [5318] = 3633, + [5297] = 5297, + [5298] = 3596, + [5299] = 5220, + [5300] = 5221, + [5301] = 5174, + [5302] = 3863, + [5303] = 3661, + [5304] = 3367, + [5305] = 5305, + [5306] = 5306, + [5307] = 3662, + [5308] = 5220, + [5309] = 5221, + [5310] = 5174, + [5311] = 5213, + [5312] = 3655, + [5313] = 5313, + [5314] = 5314, + [5315] = 5313, + [5316] = 5221, + [5317] = 5314, + [5318] = 3659, [5319] = 5319, - [5320] = 3619, - [5321] = 5321, - [5322] = 5321, - [5323] = 5323, - [5324] = 3784, - [5325] = 5278, - [5326] = 2323, - [5327] = 3595, - [5328] = 5260, - [5329] = 2327, - [5330] = 5271, - [5331] = 3607, - [5332] = 5217, - [5333] = 3593, - [5334] = 3609, - [5335] = 3610, - [5336] = 3612, - [5337] = 3607, - [5338] = 3335, - [5339] = 2311, - [5340] = 3597, - [5341] = 5217, - [5342] = 5342, - [5343] = 5218, - [5344] = 5167, + [5320] = 5319, + [5321] = 3625, + [5322] = 3615, + [5323] = 3647, + [5324] = 2312, + [5325] = 5325, + [5326] = 3779, + [5327] = 3659, + [5328] = 3664, + [5329] = 2313, + [5330] = 2314, + [5331] = 3668, + [5332] = 5220, + [5333] = 3647, + [5334] = 3682, + [5335] = 5335, + [5336] = 3648, + [5337] = 3649, + [5338] = 3650, + [5339] = 3593, + [5340] = 3653, + [5341] = 3654, + [5342] = 3657, + [5343] = 3655, + [5344] = 5220, [5345] = 3594, - [5346] = 3594, - [5347] = 3595, - [5348] = 3620, - [5349] = 3621, - [5350] = 3622, - [5351] = 3595, - [5352] = 3615, - [5353] = 3664, - [5354] = 3633, - [5355] = 3664, - [5356] = 3633, - [5357] = 3617, - [5358] = 3618, - [5359] = 3598, - [5360] = 3619, - [5361] = 3620, - [5362] = 3784, - [5363] = 3784, - [5364] = 5364, - [5365] = 5218, - [5366] = 5218, - [5367] = 3621, - [5368] = 5218, - [5369] = 3622, - [5370] = 3598, + [5346] = 5221, + [5347] = 3661, + [5348] = 4928, + [5349] = 3655, + [5350] = 3659, + [5351] = 3779, + [5352] = 3662, + [5353] = 3625, + [5354] = 3615, + [5355] = 3659, + [5356] = 3779, + [5357] = 3664, + [5358] = 3668, + [5359] = 3625, + [5360] = 3615, + [5361] = 3595, + [5362] = 3382, + [5363] = 3779, + [5364] = 3383, + [5365] = 3648, + [5366] = 5221, + [5367] = 5221, + [5368] = 5221, + [5369] = 5163, + [5370] = 5171, [5371] = 5371, - [5372] = 3609, - [5373] = 3597, + [5372] = 5372, + [5373] = 5234, [5374] = 5374, - [5375] = 3598, - [5376] = 3600, - [5377] = 3615, - [5378] = 3617, - [5379] = 3618, - [5380] = 3601, - [5381] = 3619, - [5382] = 3593, - [5383] = 3620, - [5384] = 3621, - [5385] = 3622, - [5386] = 5386, - [5387] = 3610, - [5388] = 3612, + [5375] = 5375, + [5376] = 5374, + [5377] = 5377, + [5378] = 5378, + [5379] = 5379, + [5380] = 5380, + [5381] = 5371, + [5382] = 5374, + [5383] = 5383, + [5384] = 5384, + [5385] = 5385, + [5386] = 5374, + [5387] = 5374, + [5388] = 5374, [5389] = 5389, [5390] = 5390, - [5391] = 5391, - [5392] = 5392, + [5391] = 5374, + [5392] = 5374, [5393] = 5374, [5394] = 5374, [5395] = 5374, - [5396] = 2468, - [5397] = 5166, + [5396] = 5374, + [5397] = 5374, [5398] = 5374, [5399] = 5374, - [5400] = 5400, + [5400] = 5374, [5401] = 5374, - [5402] = 5391, - [5403] = 3807, - [5404] = 5374, - [5405] = 5389, - [5406] = 5374, + [5402] = 5374, + [5403] = 5403, + [5404] = 5378, + [5405] = 3038, + [5406] = 3045, [5407] = 5407, - [5408] = 5374, - [5409] = 5409, + [5408] = 5408, + [5409] = 5377, [5410] = 5374, - [5411] = 5411, - [5412] = 5374, - [5413] = 5374, - [5414] = 5374, + [5411] = 5383, + [5412] = 5384, + [5413] = 5385, + [5414] = 5389, [5415] = 5374, - [5416] = 5374, - [5417] = 5374, - [5418] = 5374, - [5419] = 5374, - [5420] = 5374, - [5421] = 5374, - [5422] = 5374, - [5423] = 5423, + [5416] = 3653, + [5417] = 3654, + [5418] = 3657, + [5419] = 3661, + [5420] = 3662, + [5421] = 3664, + [5422] = 3668, + [5423] = 5149, [5424] = 5424, - [5425] = 3607, - [5426] = 5426, - [5427] = 5427, - [5428] = 5428, - [5429] = 5424, - [5430] = 5430, + [5425] = 5425, + [5426] = 3649, + [5427] = 5374, + [5428] = 3647, + [5429] = 5407, + [5430] = 5385, [5431] = 5431, - [5432] = 5374, - [5433] = 3615, - [5434] = 3617, - [5435] = 3618, - [5436] = 3619, - [5437] = 3620, - [5438] = 3621, - [5439] = 3622, - [5440] = 5431, - [5441] = 5441, - [5442] = 5441, - [5443] = 5392, - [5444] = 3597, - [5445] = 3610, - [5446] = 5374, - [5447] = 3598, - [5448] = 3600, - [5449] = 3615, - [5450] = 3617, - [5451] = 5374, - [5452] = 3618, - [5453] = 3601, - [5454] = 3619, - [5455] = 3593, - [5456] = 3620, - [5457] = 3621, - [5458] = 3622, - [5459] = 5459, - [5460] = 3612, - [5461] = 3609, - [5462] = 3610, - [5463] = 5463, - [5464] = 3784, - [5465] = 3612, - [5466] = 3807, - [5467] = 3335, - [5468] = 5392, - [5469] = 5469, - [5470] = 5389, - [5471] = 5471, - [5472] = 5472, - [5473] = 4559, - [5474] = 3607, - [5475] = 5374, - [5476] = 3609, - [5477] = 5463, - [5478] = 5478, - [5479] = 5424, - [5480] = 5400, - [5481] = 4892, - [5482] = 5426, - [5483] = 5483, - [5484] = 5484, - [5485] = 5391, + [5432] = 5389, + [5433] = 5433, + [5434] = 3650, + [5435] = 5378, + [5436] = 3593, + [5437] = 5437, + [5438] = 3367, + [5439] = 2888, + [5440] = 5425, + [5441] = 5403, + [5442] = 5374, + [5443] = 3594, + [5444] = 3595, + [5445] = 3653, + [5446] = 3654, + [5447] = 5447, + [5448] = 3657, + [5449] = 3596, + [5450] = 5374, + [5451] = 3661, + [5452] = 5379, + [5453] = 3682, + [5454] = 3662, + [5455] = 3664, + [5456] = 3668, + [5457] = 5457, + [5458] = 5458, + [5459] = 3648, + [5460] = 3649, + [5461] = 3648, + [5462] = 2382, + [5463] = 4564, + [5464] = 3647, + [5465] = 5374, + [5466] = 3648, + [5467] = 5437, + [5468] = 3863, + [5469] = 5407, + [5470] = 3650, + [5471] = 5408, + [5472] = 3863, + [5473] = 5473, + [5474] = 5474, + [5475] = 5377, + [5476] = 5374, + [5477] = 5371, + [5478] = 5425, + [5479] = 5447, + [5480] = 3647, + [5481] = 5374, + [5482] = 3648, + [5483] = 4564, + [5484] = 5374, + [5485] = 5374, [5486] = 5374, - [5487] = 2376, - [5488] = 5427, - [5489] = 5489, - [5490] = 3607, - [5491] = 5374, - [5492] = 3609, - [5493] = 5374, - [5494] = 5374, - [5495] = 5374, - [5496] = 5371, - [5497] = 4559, + [5487] = 5374, + [5488] = 5378, + [5489] = 3367, + [5490] = 5425, + [5491] = 5491, + [5492] = 3031, + [5493] = 3779, + [5494] = 5494, + [5495] = 3034, + [5496] = 3863, + [5497] = 5431, [5498] = 5498, - [5499] = 5374, - [5500] = 3335, - [5501] = 5392, - [5502] = 2893, - [5503] = 3784, + [5499] = 5499, + [5500] = 5500, + [5501] = 5383, + [5502] = 5390, + [5503] = 5384, [5504] = 5504, - [5505] = 5459, - [5506] = 5411, - [5507] = 5423, - [5508] = 5508, + [5505] = 3080, + [5506] = 5385, + [5507] = 5389, + [5508] = 3029, [5509] = 5509, - [5510] = 5510, - [5511] = 5511, - [5512] = 5428, - [5513] = 5374, - [5514] = 5514, - [5515] = 5430, - [5516] = 5411, - [5517] = 5431, - [5518] = 5441, - [5519] = 5374, - [5520] = 3335, - [5521] = 5392, - [5522] = 3727, - [5523] = 3728, - [5524] = 5524, - [5525] = 3784, - [5526] = 3729, - [5527] = 3730, - [5528] = 5459, - [5529] = 3807, - [5530] = 5400, - [5531] = 3062, - [5532] = 2999, - [5533] = 3664, - [5534] = 3633, - [5535] = 5374, - [5536] = 3335, - [5537] = 5392, - [5538] = 5538, - [5539] = 3784, - [5540] = 3607, - [5541] = 5400, - [5542] = 3633, - [5543] = 3726, - [5544] = 3012, - [5545] = 5423, - [5546] = 5374, - [5547] = 5424, - [5548] = 5431, - [5549] = 5392, - [5550] = 5441, - [5551] = 3607, - [5552] = 3807, - [5553] = 3597, - [5554] = 3024, + [5510] = 5374, + [5511] = 3367, + [5512] = 5425, + [5513] = 3699, + [5514] = 3700, + [5515] = 5390, + [5516] = 3779, + [5517] = 3701, + [5518] = 3702, + [5519] = 5431, + [5520] = 2892, + [5521] = 3593, + [5522] = 5374, + [5523] = 3594, + [5524] = 3595, + [5525] = 3653, + [5526] = 3654, + [5527] = 3657, + [5528] = 3596, + [5529] = 3661, + [5530] = 3682, + [5531] = 3662, + [5532] = 3664, + [5533] = 3668, + [5534] = 3649, + [5535] = 3625, + [5536] = 3615, + [5537] = 5374, + [5538] = 3367, + [5539] = 5425, + [5540] = 3650, + [5541] = 3779, + [5542] = 5542, + [5543] = 5379, + [5544] = 5544, + [5545] = 3625, + [5546] = 3615, + [5547] = 5374, + [5548] = 5425, + [5549] = 3863, + [5550] = 5458, + [5551] = 5374, + [5552] = 5552, + [5553] = 5447, + [5554] = 3698, [5555] = 5374, - [5556] = 3598, - [5557] = 5472, - [5558] = 3600, + [5556] = 3367, + [5557] = 5425, + [5558] = 5431, [5559] = 5374, - [5560] = 3335, - [5561] = 5392, - [5562] = 3784, - [5563] = 3664, - [5564] = 3633, - [5565] = 5374, - [5566] = 3335, - [5567] = 5392, - [5568] = 3060, - [5569] = 3784, + [5560] = 5560, + [5561] = 5561, + [5562] = 3625, + [5563] = 3615, + [5564] = 5374, + [5565] = 3367, + [5566] = 5425, + [5567] = 3779, + [5568] = 5568, + [5569] = 3625, [5570] = 3615, - [5571] = 3664, - [5572] = 3633, - [5573] = 5374, - [5574] = 5392, - [5575] = 3617, - [5576] = 3026, - [5577] = 3664, - [5578] = 3633, - [5579] = 5374, - [5580] = 5392, - [5581] = 3618, - [5582] = 5392, - [5583] = 5392, - [5584] = 5392, - [5585] = 5392, - [5586] = 5392, - [5587] = 5392, - [5588] = 5392, - [5589] = 5400, - [5590] = 3601, - [5591] = 5391, - [5592] = 3597, - [5593] = 4559, - [5594] = 5594, - [5595] = 5411, - [5596] = 5374, - [5597] = 3664, - [5598] = 3598, - [5599] = 3600, - [5600] = 3615, - [5601] = 3617, - [5602] = 3618, - [5603] = 3601, - [5604] = 5604, - [5605] = 3619, + [5571] = 5374, + [5572] = 5425, + [5573] = 3625, + [5574] = 3615, + [5575] = 5374, + [5576] = 5425, + [5577] = 3593, + [5578] = 5374, + [5579] = 3594, + [5580] = 5425, + [5581] = 3595, + [5582] = 5425, + [5583] = 5425, + [5584] = 3653, + [5585] = 5425, + [5586] = 5425, + [5587] = 5425, + [5588] = 5425, + [5589] = 5378, + [5590] = 5379, + [5591] = 5591, + [5592] = 3654, + [5593] = 4564, + [5594] = 3657, + [5595] = 3596, + [5596] = 5390, + [5597] = 3661, + [5598] = 3682, + [5599] = 3662, + [5600] = 3664, + [5601] = 3625, + [5602] = 3668, + [5603] = 5603, + [5604] = 3649, + [5605] = 5509, [5606] = 3593, - [5607] = 3620, - [5608] = 3621, - [5609] = 5524, - [5610] = 3597, - [5611] = 3598, - [5612] = 3600, - [5613] = 3601, - [5614] = 3593, - [5615] = 3622, - [5616] = 3610, - [5617] = 5423, - [5618] = 3607, - [5619] = 3619, - [5620] = 2895, - [5621] = 3612, - [5622] = 3593, - [5623] = 3620, - [5624] = 3621, - [5625] = 5424, - [5626] = 5426, - [5627] = 5427, - [5628] = 5371, - [5629] = 5428, - [5630] = 5430, - [5631] = 3622, - [5632] = 5424, - [5633] = 3609, - [5634] = 5431, - [5635] = 5441, - [5636] = 3610, - [5637] = 5426, - [5638] = 5374, - [5639] = 5427, - [5640] = 5371, - [5641] = 5641, - [5642] = 5428, - [5643] = 3612, - [5644] = 3807, - [5645] = 5430, - [5646] = 5392, - [5647] = 3609, - [5648] = 5389, - [5649] = 5374, + [5607] = 3594, + [5608] = 3595, + [5609] = 3596, + [5610] = 3682, + [5611] = 3650, + [5612] = 5403, + [5613] = 3647, + [5614] = 5614, + [5615] = 5407, + [5616] = 5408, + [5617] = 5377, + [5618] = 5371, + [5619] = 5383, + [5620] = 5384, + [5621] = 5385, + [5622] = 5389, + [5623] = 5403, + [5624] = 5624, + [5625] = 2194, + [5626] = 3647, + [5627] = 5374, + [5628] = 3647, + [5629] = 5629, + [5630] = 5407, + [5631] = 5385, + [5632] = 5389, + [5633] = 5407, + [5634] = 3593, + [5635] = 5374, + [5636] = 3594, + [5637] = 3595, + [5638] = 3653, + [5639] = 3654, + [5640] = 3657, + [5641] = 3596, + [5642] = 3661, + [5643] = 3593, + [5644] = 3648, + [5645] = 5374, + [5646] = 5425, + [5647] = 3594, + [5648] = 5447, + [5649] = 3595, [5650] = 5374, - [5651] = 5374, - [5652] = 5392, - [5653] = 3727, - [5654] = 3728, - [5655] = 3729, - [5656] = 3730, - [5657] = 5392, - [5658] = 5459, - [5659] = 5524, - [5660] = 3727, - [5661] = 3728, - [5662] = 3729, - [5663] = 3730, - [5664] = 3807, - [5665] = 3726, - [5666] = 5666, - [5667] = 5524, - [5668] = 3597, - [5669] = 3727, - [5670] = 3728, - [5671] = 3729, - [5672] = 3730, - [5673] = 5374, - [5674] = 3726, - [5675] = 3598, - [5676] = 5524, - [5677] = 3600, - [5678] = 3615, - [5679] = 3617, - [5680] = 3618, - [5681] = 3601, - [5682] = 3619, - [5683] = 3593, - [5684] = 3620, - [5685] = 3621, - [5686] = 3726, - [5687] = 5524, - [5688] = 3622, - [5689] = 3610, - [5690] = 5690, - [5691] = 3726, - [5692] = 3612, - [5693] = 5431, - [5694] = 5441, - [5695] = 5374, - [5696] = 5374, - [5697] = 3633, + [5651] = 3653, + [5652] = 3654, + [5653] = 5374, + [5654] = 3657, + [5655] = 5374, + [5656] = 3596, + [5657] = 5425, + [5658] = 3661, + [5659] = 3699, + [5660] = 3700, + [5661] = 3701, + [5662] = 3702, + [5663] = 5425, + [5664] = 3682, + [5665] = 3662, + [5666] = 3664, + [5667] = 3668, + [5668] = 5509, + [5669] = 3649, + [5670] = 3682, + [5671] = 3863, + [5672] = 3699, + [5673] = 3700, + [5674] = 3701, + [5675] = 3702, + [5676] = 3650, + [5677] = 3698, + [5678] = 5509, + [5679] = 3662, + [5680] = 3664, + [5681] = 3699, + [5682] = 3700, + [5683] = 3701, + [5684] = 3702, + [5685] = 3668, + [5686] = 3648, + [5687] = 3698, + [5688] = 3649, + [5689] = 5509, + [5690] = 5408, + [5691] = 3779, + [5692] = 3698, + [5693] = 5509, + [5694] = 3650, + [5695] = 3863, + [5696] = 3698, + [5697] = 5697, [5698] = 5374, - [5699] = 5392, - [5700] = 5700, - [5701] = 3727, - [5702] = 3728, - [5703] = 3729, - [5704] = 3730, - [5705] = 5705, - [5706] = 2194, - [5707] = 5707, - [5708] = 3664, + [5699] = 3615, + [5700] = 5374, + [5701] = 5425, + [5702] = 3699, + [5703] = 3700, + [5704] = 3701, + [5705] = 3702, + [5706] = 5374, + [5707] = 2445, + [5708] = 3779, [5709] = 5709, [5710] = 5709, [5711] = 5709, [5712] = 5709, [5713] = 5709, [5714] = 5709, - [5715] = 2312, - [5716] = 2325, - [5717] = 2284, - [5718] = 2468, - [5719] = 5709, - [5720] = 2261, + [5715] = 5709, + [5716] = 5709, + [5717] = 2278, + [5718] = 5709, + [5719] = 2325, + [5720] = 5709, [5721] = 5709, - [5722] = 1916, + [5722] = 2445, [5723] = 5709, [5724] = 5709, [5725] = 5709, - [5726] = 2468, - [5727] = 2468, + [5726] = 5709, + [5727] = 5727, [5728] = 5709, [5729] = 5709, [5730] = 5709, - [5731] = 2468, - [5732] = 5709, + [5731] = 5731, + [5732] = 2445, [5733] = 5709, - [5734] = 2468, - [5735] = 2307, + [5734] = 1915, + [5735] = 5709, [5736] = 5709, - [5737] = 5709, + [5737] = 2445, [5738] = 5709, - [5739] = 5739, + [5739] = 5709, [5740] = 5709, - [5741] = 5709, - [5742] = 2468, + [5741] = 2322, + [5742] = 5742, [5743] = 5709, - [5744] = 5709, - [5745] = 5709, + [5744] = 2279, + [5745] = 2324, [5746] = 5709, - [5747] = 5747, + [5747] = 5709, [5748] = 5709, - [5749] = 5709, - [5750] = 2318, - [5751] = 5751, - [5752] = 5709, - [5753] = 5709, - [5754] = 5709, + [5749] = 2445, + [5750] = 5709, + [5751] = 5709, + [5752] = 2445, + [5753] = 2445, + [5754] = 2445, [5755] = 5709, - [5756] = 2468, - [5757] = 5709, + [5756] = 5709, + [5757] = 2321, [5758] = 5709, - [5759] = 5759, + [5759] = 2445, [5760] = 5760, - [5761] = 2468, + [5761] = 2445, [5762] = 5762, - [5763] = 5166, + [5763] = 5234, [5764] = 5764, [5765] = 5765, [5766] = 5766, - [5767] = 5767, - [5768] = 5768, + [5767] = 2445, + [5768] = 5234, [5769] = 5769, [5770] = 5770, [5771] = 5771, [5772] = 5772, - [5773] = 2468, - [5774] = 2468, - [5775] = 5166, + [5773] = 5773, + [5774] = 2445, + [5775] = 5775, [5776] = 5776, - [5777] = 2468, + [5777] = 5777, [5778] = 5778, [5779] = 5779, [5780] = 5780, - [5781] = 5781, + [5781] = 2382, [5782] = 5782, - [5783] = 2376, + [5783] = 5783, [5784] = 5784, - [5785] = 5785, - [5786] = 2325, - [5787] = 5787, - [5788] = 5762, - [5789] = 2456, - [5790] = 5787, + [5785] = 2450, + [5786] = 5786, + [5787] = 5786, + [5788] = 5782, + [5789] = 5789, + [5790] = 5783, [5791] = 5791, - [5792] = 5792, - [5793] = 5793, - [5794] = 2312, - [5795] = 5792, - [5796] = 5796, - [5797] = 5784, - [5798] = 2307, - [5799] = 5791, - [5800] = 5792, - [5801] = 5796, - [5802] = 5796, - [5803] = 2318, - [5804] = 5791, - [5805] = 2263, - [5806] = 5806, - [5807] = 5807, - [5808] = 2971, + [5792] = 5784, + [5793] = 2322, + [5794] = 5794, + [5795] = 2321, + [5796] = 2324, + [5797] = 5797, + [5798] = 2325, + [5799] = 5799, + [5800] = 5765, + [5801] = 5784, + [5802] = 5802, + [5803] = 5803, + [5804] = 2283, + [5805] = 5786, + [5806] = 5783, + [5807] = 5791, + [5808] = 5808, [5809] = 5809, - [5810] = 5810, - [5811] = 5810, + [5810] = 2997, + [5811] = 5811, [5812] = 5809, - [5813] = 5813, - [5814] = 5814, - [5815] = 5815, - [5816] = 5813, - [5817] = 5814, - [5818] = 5810, - [5819] = 5810, - [5820] = 5815, - [5821] = 5809, - [5822] = 2191, - [5823] = 5814, - [5824] = 5814, - [5825] = 5809, - [5826] = 5810, - [5827] = 5814, - [5828] = 5641, - [5829] = 5809, - [5830] = 5830, + [5813] = 5811, + [5814] = 5808, + [5815] = 5811, + [5816] = 5816, + [5817] = 5817, + [5818] = 5809, + [5819] = 5808, + [5820] = 5809, + [5821] = 2191, + [5822] = 5809, + [5823] = 5808, + [5824] = 5811, + [5825] = 5808, + [5826] = 5433, + [5827] = 5827, + [5828] = 5817, + [5829] = 5816, + [5830] = 5811, [5831] = 5831, - [5832] = 5832, - [5833] = 5833, - [5834] = 5831, - [5835] = 5831, + [5832] = 5831, + [5833] = 5831, + [5834] = 5834, + [5835] = 5835, [5836] = 5831, - [5837] = 5831, + [5837] = 5837, [5838] = 5838, - [5839] = 5839, - [5840] = 5840, - [5841] = 2901, - [5842] = 5833, + [5839] = 5837, + [5840] = 5831, + [5841] = 5841, + [5842] = 2902, [5843] = 5843, - [5844] = 5839, + [5844] = 5835, [5845] = 5845, [5846] = 5846, - [5847] = 5846, - [5848] = 5846, - [5849] = 2924, - [5850] = 5846, - [5851] = 5846, - [5852] = 5846, - [5853] = 5846, - [5854] = 5846, - [5855] = 5846, - [5856] = 5856, - [5857] = 5846, - [5858] = 5846, - [5859] = 2895, + [5847] = 5847, + [5848] = 5847, + [5849] = 5849, + [5850] = 5847, + [5851] = 5851, + [5852] = 5852, + [5853] = 5847, + [5854] = 5847, + [5855] = 5847, + [5856] = 5847, + [5857] = 2926, + [5858] = 5847, + [5859] = 5849, [5860] = 5860, - [5861] = 5846, - [5862] = 5846, - [5863] = 5846, - [5864] = 2913, - [5865] = 5846, - [5866] = 5846, - [5867] = 5846, - [5868] = 5846, - [5869] = 5846, - [5870] = 5846, - [5871] = 5846, - [5872] = 5846, - [5873] = 5846, + [5861] = 5861, + [5862] = 5847, + [5863] = 5863, + [5864] = 5847, + [5865] = 5847, + [5866] = 5847, + [5867] = 5847, + [5868] = 5847, + [5869] = 5849, + [5870] = 5847, + [5871] = 5847, + [5872] = 5847, + [5873] = 5847, [5874] = 5846, - [5875] = 5875, - [5876] = 5876, - [5877] = 5846, - [5878] = 5846, - [5879] = 5860, - [5880] = 5880, - [5881] = 5881, - [5882] = 5882, - [5883] = 5876, - [5884] = 5876, - [5885] = 5885, - [5886] = 5846, - [5887] = 5846, - [5888] = 5846, - [5889] = 5846, - [5890] = 5890, - [5891] = 5846, - [5892] = 5846, - [5893] = 5876, - [5894] = 2916, - [5895] = 5846, - [5896] = 5846, - [5897] = 2453, - [5898] = 5846, - [5899] = 5876, - [5900] = 5846, - [5901] = 5846, - [5902] = 5846, - [5903] = 5846, - [5904] = 5904, - [5905] = 5846, - [5906] = 5846, - [5907] = 5846, - [5908] = 5846, - [5909] = 2927, - [5910] = 5846, - [5911] = 5846, - [5912] = 2893, - [5913] = 5846, - [5914] = 5846, - [5915] = 5846, - [5916] = 5846, - [5917] = 5846, - [5918] = 2468, + [5875] = 5847, + [5876] = 5847, + [5877] = 5847, + [5878] = 2892, + [5879] = 5847, + [5880] = 5847, + [5881] = 2888, + [5882] = 5847, + [5883] = 5847, + [5884] = 5847, + [5885] = 2919, + [5886] = 5847, + [5887] = 5887, + [5888] = 5847, + [5889] = 5847, + [5890] = 5847, + [5891] = 5891, + [5892] = 5847, + [5893] = 5847, + [5894] = 5849, + [5895] = 5847, + [5896] = 5847, + [5897] = 5847, + [5898] = 5847, + [5899] = 5899, + [5900] = 5847, + [5901] = 5849, + [5902] = 5847, + [5903] = 5847, + [5904] = 5847, + [5905] = 5847, + [5906] = 2913, + [5907] = 2448, + [5908] = 5847, + [5909] = 2922, + [5910] = 5847, + [5911] = 5847, + [5912] = 5847, + [5913] = 5847, + [5914] = 5847, + [5915] = 5847, + [5916] = 5847, + [5917] = 5847, + [5918] = 2445, [5919] = 5919, - [5920] = 2468, - [5921] = 2468, - [5922] = 2468, - [5923] = 5923, - [5924] = 5924, - [5925] = 2468, - [5926] = 5926, - [5927] = 2418, - [5928] = 2468, - [5929] = 5929, - [5930] = 2468, - [5931] = 2468, - [5932] = 2468, - [5933] = 2468, - [5934] = 2418, - [5935] = 5935, - [5936] = 2468, - [5937] = 2468, - [5938] = 2468, - [5939] = 2468, - [5940] = 2468, - [5941] = 2468, - [5942] = 2468, - [5943] = 2468, + [5920] = 2445, + [5921] = 5921, + [5922] = 2445, + [5923] = 2445, + [5924] = 2445, + [5925] = 2415, + [5926] = 2445, + [5927] = 2445, + [5928] = 2445, + [5929] = 2445, + [5930] = 5930, + [5931] = 2445, + [5932] = 2445, + [5933] = 2445, + [5934] = 2445, + [5935] = 2445, + [5936] = 2445, + [5937] = 2445, + [5938] = 5938, + [5939] = 5939, + [5940] = 2445, + [5941] = 2445, + [5942] = 2415, + [5943] = 2445, [5944] = 5944, [5945] = 5945, - [5946] = 2468, - [5947] = 2418, - [5948] = 5787, - [5949] = 2418, - [5950] = 2468, - [5951] = 5924, - [5952] = 2468, - [5953] = 5953, - [5954] = 2468, - [5955] = 2468, - [5956] = 2468, - [5957] = 2468, + [5946] = 2445, + [5947] = 5947, + [5948] = 5791, + [5949] = 2445, + [5950] = 2445, + [5951] = 5951, + [5952] = 2415, + [5953] = 5945, + [5954] = 2445, + [5955] = 2415, + [5956] = 2445, + [5957] = 2445, [5958] = 5958, [5959] = 5959, [5960] = 5960, [5961] = 5961, [5962] = 5962, [5963] = 5963, - [5964] = 5959, - [5965] = 5965, - [5966] = 5959, + [5964] = 5964, + [5965] = 5961, + [5966] = 5961, [5967] = 5967, [5968] = 5968, [5969] = 5969, - [5970] = 5959, + [5970] = 5970, [5971] = 5961, - [5972] = 5972, - [5973] = 5963, - [5974] = 5959, - [5975] = 5959, - [5976] = 5976, - [5977] = 5977, + [5972] = 5962, + [5973] = 5973, + [5974] = 5974, + [5975] = 5969, + [5976] = 5961, + [5977] = 5961, [5978] = 5978, [5979] = 5979, [5980] = 5980, [5981] = 5981, - [5982] = 5980, - [5983] = 5983, - [5984] = 5978, - [5985] = 5980, - [5986] = 5978, - [5987] = 5980, - [5988] = 5980, - [5989] = 5989, - [5990] = 5990, - [5991] = 5980, - [5992] = 5983, - [5993] = 5980, - [5994] = 5980, - [5995] = 5980, - [5996] = 5996, + [5982] = 5982, + [5983] = 3038, + [5984] = 3045, + [5985] = 5982, + [5986] = 5979, + [5987] = 5987, + [5988] = 5988, + [5989] = 5988, + [5990] = 5982, + [5991] = 5987, + [5992] = 5979, + [5993] = 5979, + [5994] = 5987, + [5995] = 5995, + [5996] = 5987, [5997] = 5997, - [5998] = 5996, - [5999] = 5978, - [6000] = 5980, - [6001] = 5980, - [6002] = 5980, - [6003] = 5980, - [6004] = 5980, - [6005] = 6005, - [6006] = 5990, - [6007] = 5978, - [6008] = 5978, - [6009] = 5983, - [6010] = 5978, - [6011] = 5980, - [6012] = 5980, - [6013] = 5983, - [6014] = 5978, - [6015] = 3012, - [6016] = 5980, - [6017] = 5980, - [6018] = 3024, - [6019] = 5978, - [6020] = 5980, - [6021] = 5980, - [6022] = 5980, - [6023] = 5980, - [6024] = 5996, - [6025] = 5978, - [6026] = 6026, - [6027] = 5980, - [6028] = 5983, - [6029] = 5980, - [6030] = 5989, - [6031] = 5989, - [6032] = 5990, - [6033] = 5980, - [6034] = 6005, - [6035] = 5980, + [5998] = 5982, + [5999] = 5982, + [6000] = 5987, + [6001] = 5987, + [6002] = 6002, + [6003] = 5979, + [6004] = 5987, + [6005] = 5987, + [6006] = 5987, + [6007] = 5987, + [6008] = 5979, + [6009] = 5987, + [6010] = 6010, + [6011] = 5995, + [6012] = 5982, + [6013] = 5982, + [6014] = 5979, + [6015] = 5995, + [6016] = 5987, + [6017] = 5979, + [6018] = 5982, + [6019] = 5987, + [6020] = 6020, + [6021] = 5979, + [6022] = 5987, + [6023] = 5987, + [6024] = 5987, + [6025] = 5995, + [6026] = 5987, + [6027] = 6027, + [6028] = 5987, + [6029] = 5987, + [6030] = 3031, + [6031] = 5987, + [6032] = 5982, + [6033] = 5979, + [6034] = 5995, + [6035] = 5987, [6036] = 5980, - [6037] = 5980, - [6038] = 5980, - [6039] = 5978, - [6040] = 5978, - [6041] = 5983, - [6042] = 5978, - [6043] = 5983, - [6044] = 6044, - [6045] = 5996, - [6046] = 5989, - [6047] = 6005, - [6048] = 5978, - [6049] = 5983, - [6050] = 5990, - [6051] = 5983, - [6052] = 5978, - [6053] = 5980, - [6054] = 5980, - [6055] = 5983, - [6056] = 5983, - [6057] = 5980, - [6058] = 5980, - [6059] = 5989, - [6060] = 5980, - [6061] = 5980, - [6062] = 5980, - [6063] = 6063, - [6064] = 5980, - [6065] = 6065, - [6066] = 3062, - [6067] = 5980, - [6068] = 2999, - [6069] = 5980, - [6070] = 6005, - [6071] = 5983, - [6072] = 5978, - [6073] = 5980, - [6074] = 5996, - [6075] = 5980, - [6076] = 5990, - [6077] = 6005, - [6078] = 5983, - [6079] = 6079, - [6080] = 5980, - [6081] = 3060, - [6082] = 5983, - [6083] = 5980, - [6084] = 5983, - [6085] = 5980, - [6086] = 5978, - [6087] = 3026, - [6088] = 5980, - [6089] = 5989, - [6090] = 5989, - [6091] = 5980, - [6092] = 5980, + [6037] = 5979, + [6038] = 5987, + [6039] = 3034, + [6040] = 6040, + [6041] = 5987, + [6042] = 5995, + [6043] = 5987, + [6044] = 5987, + [6045] = 6045, + [6046] = 5995, + [6047] = 5987, + [6048] = 6048, + [6049] = 5988, + [6050] = 5987, + [6051] = 5987, + [6052] = 5987, + [6053] = 5995, + [6054] = 6048, + [6055] = 6055, + [6056] = 5982, + [6057] = 5987, + [6058] = 5987, + [6059] = 5987, + [6060] = 6048, + [6061] = 5987, + [6062] = 5982, + [6063] = 5980, + [6064] = 6064, + [6065] = 5987, + [6066] = 5987, + [6067] = 5978, + [6068] = 5987, + [6069] = 5987, + [6070] = 5979, + [6071] = 5980, + [6072] = 6072, + [6073] = 5979, + [6074] = 5987, + [6075] = 5982, + [6076] = 3080, + [6077] = 5987, + [6078] = 6078, + [6079] = 5979, + [6080] = 6048, + [6081] = 5980, + [6082] = 5987, + [6083] = 5987, + [6084] = 5988, + [6085] = 3029, + [6086] = 6048, + [6087] = 5987, + [6088] = 5987, + [6089] = 5987, + [6090] = 5982, + [6091] = 5979, + [6092] = 6048, [6093] = 6093, - [6094] = 6094, - [6095] = 5979, - [6096] = 6005, - [6097] = 5980, - [6098] = 5980, - [6099] = 5980, - [6100] = 5983, - [6101] = 5989, - [6102] = 6102, - [6103] = 5990, - [6104] = 5980, - [6105] = 5980, - [6106] = 5983, - [6107] = 6107, - [6108] = 5980, - [6109] = 5989, - [6110] = 5980, - [6111] = 6111, - [6112] = 5979, - [6113] = 5980, - [6114] = 5980, - [6115] = 6115, - [6116] = 5980, - [6117] = 6117, - [6118] = 6118, + [6094] = 5995, + [6095] = 5987, + [6096] = 5982, + [6097] = 5982, + [6098] = 5987, + [6099] = 5988, + [6100] = 6100, + [6101] = 5987, + [6102] = 5982, + [6103] = 5980, + [6104] = 5987, + [6105] = 5987, + [6106] = 5982, + [6107] = 5979, + [6108] = 5987, + [6109] = 5987, + [6110] = 5979, + [6111] = 5987, + [6112] = 5987, + [6113] = 5978, + [6114] = 5987, + [6115] = 5987, + [6116] = 5987, + [6117] = 5987, + [6118] = 2997, [6119] = 6119, [6120] = 6120, [6121] = 6121, - [6122] = 2971, + [6122] = 6122, [6123] = 6123, [6124] = 6124, [6125] = 6125, [6126] = 6126, - [6127] = 6127, + [6127] = 6126, [6128] = 6128, - [6129] = 6126, + [6129] = 6129, [6130] = 6126, - [6131] = 6126, + [6131] = 6131, [6132] = 6126, [6133] = 6133, [6134] = 6126, - [6135] = 6126, + [6135] = 6135, [6136] = 6126, - [6137] = 6126, + [6137] = 6137, [6138] = 6126, - [6139] = 6126, - [6140] = 6140, + [6139] = 6139, + [6140] = 6126, [6141] = 6126, [6142] = 6142, [6143] = 6126, [6144] = 6144, - [6145] = 6145, - [6146] = 6146, - [6147] = 6147, + [6145] = 6126, + [6146] = 6126, + [6147] = 6126, [6148] = 6126, [6149] = 6149, [6150] = 6150, - [6151] = 6151, - [6152] = 6152, + [6151] = 6126, + [6152] = 6126, [6153] = 6126, [6154] = 6154, - [6155] = 6155, + [6155] = 6149, [6156] = 6156, [6157] = 6157, [6158] = 6158, [6159] = 6126, - [6160] = 6160, + [6160] = 6126, [6161] = 6161, [6162] = 6162, - [6163] = 6126, + [6163] = 6163, [6164] = 6164, [6165] = 6165, - [6166] = 6126, - [6167] = 6149, + [6166] = 6166, + [6167] = 6167, [6168] = 6168, - [6169] = 6126, + [6169] = 6169, [6170] = 6170, [6171] = 6171, [6172] = 6172, [6173] = 6173, - [6174] = 6174, - [6175] = 6126, + [6174] = 6126, + [6175] = 6175, [6176] = 6176, - [6177] = 6126, - [6178] = 6178, - [6179] = 6126, + [6177] = 6177, + [6178] = 6126, + [6179] = 6179, [6180] = 6180, [6181] = 6181, [6182] = 6182, - [6183] = 6183, + [6183] = 6126, [6184] = 6184, [6185] = 6185, [6186] = 6186, @@ -10983,76 +10990,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6237] = 6199, [6238] = 6199, [6239] = 6239, - [6240] = 6239, + [6240] = 6240, [6241] = 6241, - [6242] = 6242, + [6242] = 6239, [6243] = 6239, - [6244] = 6242, + [6244] = 6240, [6245] = 6239, - [6246] = 6242, + [6246] = 6239, [6247] = 6239, - [6248] = 6242, - [6249] = 6241, + [6248] = 6240, + [6249] = 6240, [6250] = 6239, - [6251] = 6239, - [6252] = 6239, - [6253] = 6242, - [6254] = 6242, - [6255] = 6242, - [6256] = 6242, - [6257] = 6242, - [6258] = 6241, - [6259] = 6239, - [6260] = 6239, - [6261] = 6241, - [6262] = 6242, + [6251] = 6240, + [6252] = 6241, + [6253] = 6239, + [6254] = 6239, + [6255] = 6241, + [6256] = 6241, + [6257] = 6240, + [6258] = 6239, + [6259] = 6241, + [6260] = 6241, + [6261] = 6240, + [6262] = 6239, [6263] = 6241, - [6264] = 6242, - [6265] = 6242, - [6266] = 6241, - [6267] = 6239, - [6268] = 6242, + [6264] = 6239, + [6265] = 6239, + [6266] = 6239, + [6267] = 6240, + [6268] = 6239, [6269] = 6239, - [6270] = 6242, + [6270] = 6241, [6271] = 6241, - [6272] = 6239, - [6273] = 6242, - [6274] = 6242, - [6275] = 6242, - [6276] = 6239, + [6272] = 6240, + [6273] = 6241, + [6274] = 6240, + [6275] = 6241, + [6276] = 6241, [6277] = 6241, - [6278] = 6242, - [6279] = 6239, - [6280] = 6242, - [6281] = 6239, - [6282] = 6241, + [6278] = 6239, + [6279] = 6240, + [6280] = 6240, + [6281] = 6240, + [6282] = 6239, [6283] = 6241, - [6284] = 6241, + [6284] = 6240, [6285] = 6241, - [6286] = 6241, - [6287] = 6239, - [6288] = 6239, - [6289] = 6241, - [6290] = 6239, - [6291] = 6241, - [6292] = 6241, - [6293] = 6242, - [6294] = 6239, + [6286] = 6240, + [6287] = 6240, + [6288] = 6241, + [6289] = 6239, + [6290] = 6241, + [6291] = 6239, + [6292] = 6239, + [6293] = 6239, + [6294] = 6240, [6295] = 6241, - [6296] = 6239, - [6297] = 6242, + [6296] = 6241, + [6297] = 6240, [6298] = 6241, - [6299] = 6241, + [6299] = 6240, [6300] = 6241, - [6301] = 6241, - [6302] = 6242, - [6303] = 6239, + [6301] = 6240, + [6302] = 6240, + [6303] = 6240, [6304] = 6241, [6305] = 6305, [6306] = 6306, [6307] = 6307, [6308] = 6308, - [6309] = 2376, + [6309] = 2382, [6310] = 6310, [6311] = 6311, [6312] = 6312, @@ -11068,24 +11075,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6322] = 6322, [6323] = 6323, [6324] = 6324, - [6325] = 6325, - [6326] = 2192, - [6327] = 2194, + [6325] = 2193, + [6326] = 6326, + [6327] = 6327, [6328] = 6328, [6329] = 6329, [6330] = 6330, [6331] = 6331, [6332] = 6332, - [6333] = 6333, + [6333] = 2194, [6334] = 6334, [6335] = 6335, - [6336] = 6336, - [6337] = 2456, + [6336] = 2450, + [6337] = 6337, [6338] = 6338, - [6339] = 2376, - [6340] = 6340, + [6339] = 6339, + [6340] = 2382, [6341] = 6341, - [6342] = 6342, + [6342] = 2193, [6343] = 6343, [6344] = 6344, [6345] = 6345, @@ -11096,32 +11103,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6350] = 6350, [6351] = 6351, [6352] = 6352, - [6353] = 6349, + [6353] = 6353, [6354] = 6354, [6355] = 6355, [6356] = 6356, - [6357] = 6347, + [6357] = 6357, [6358] = 6358, [6359] = 6359, [6360] = 6360, [6361] = 6361, - [6362] = 6362, - [6363] = 6347, - [6364] = 6364, + [6362] = 6353, + [6363] = 6353, + [6364] = 6359, [6365] = 6365, - [6366] = 6366, + [6366] = 6359, [6367] = 6367, - [6368] = 2192, + [6368] = 6368, [6369] = 6369, [6370] = 6370, [6371] = 6371, [6372] = 6372, - [6373] = 6349, - [6374] = 6349, - [6375] = 6375, + [6373] = 6373, + [6374] = 6359, + [6375] = 6353, [6376] = 6376, [6377] = 6377, - [6378] = 6347, + [6378] = 6378, [6379] = 6379, [6380] = 6380, [6381] = 6381, @@ -11132,58 +11139,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6386] = 6386, [6387] = 6387, [6388] = 6388, - [6389] = 6389, + [6389] = 2448, [6390] = 6390, [6391] = 6391, [6392] = 6392, - [6393] = 2453, + [6393] = 6393, [6394] = 6394, [6395] = 6395, [6396] = 6396, [6397] = 6397, [6398] = 6398, - [6399] = 1927, - [6400] = 1929, + [6399] = 6399, + [6400] = 6400, [6401] = 6401, [6402] = 6402, [6403] = 6403, [6404] = 6404, [6405] = 6405, [6406] = 6406, - [6407] = 6407, - [6408] = 6370, - [6409] = 6409, - [6410] = 6406, - [6411] = 6411, + [6407] = 6405, + [6408] = 6408, + [6409] = 6408, + [6410] = 1932, + [6411] = 6401, [6412] = 6398, - [6413] = 6398, + [6413] = 6413, [6414] = 6414, - [6415] = 6415, - [6416] = 6416, - [6417] = 6401, - [6418] = 6398, - [6419] = 6419, - [6420] = 6406, - [6421] = 6421, - [6422] = 6422, - [6423] = 6398, - [6424] = 6422, - [6425] = 6425, - [6426] = 6422, - [6427] = 6406, + [6415] = 6345, + [6416] = 6403, + [6417] = 6408, + [6418] = 6401, + [6419] = 6398, + [6420] = 6420, + [6421] = 6403, + [6422] = 6398, + [6423] = 6405, + [6424] = 6424, + [6425] = 6403, + [6426] = 6426, + [6427] = 6427, [6428] = 6428, - [6429] = 6409, - [6430] = 6409, - [6431] = 6409, - [6432] = 6432, - [6433] = 6409, - [6434] = 6401, - [6435] = 6422, - [6436] = 6422, - [6437] = 6401, - [6438] = 6438, + [6429] = 6401, + [6430] = 6430, + [6431] = 6401, + [6432] = 6405, + [6433] = 6408, + [6434] = 6434, + [6435] = 6408, + [6436] = 6405, + [6437] = 6437, + [6438] = 1928, [6439] = 6439, - [6440] = 6440, + [6440] = 6393, [6441] = 6441, [6442] = 6442, [6443] = 6443, @@ -11195,77 +11202,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6449] = 6449, [6450] = 6450, [6451] = 6451, - [6452] = 6449, + [6452] = 6452, [6453] = 6453, - [6454] = 6440, + [6454] = 6454, [6455] = 6455, - [6456] = 6440, + [6456] = 6456, [6457] = 6457, [6458] = 6458, [6459] = 6459, [6460] = 6460, - [6461] = 6461, + [6461] = 6450, [6462] = 6462, [6463] = 6463, - [6464] = 6464, - [6465] = 6465, - [6466] = 6466, + [6464] = 6441, + [6465] = 6458, + [6466] = 6450, [6467] = 6467, [6468] = 6468, - [6469] = 6459, + [6469] = 6469, [6470] = 6470, - [6471] = 6448, + [6471] = 6471, [6472] = 6472, - [6473] = 6473, - [6474] = 6459, - [6475] = 6448, - [6476] = 6476, - [6477] = 6449, - [6478] = 6440, + [6473] = 6441, + [6474] = 6443, + [6475] = 6441, + [6476] = 6443, + [6477] = 6477, + [6478] = 6439, [6479] = 6479, - [6480] = 6442, - [6481] = 6439, - [6482] = 5784, - [6483] = 6483, + [6480] = 6443, + [6481] = 6481, + [6482] = 6441, + [6483] = 2182, [6484] = 6484, [6485] = 6485, - [6486] = 6440, - [6487] = 2456, + [6486] = 6486, + [6487] = 6487, [6488] = 6488, - [6489] = 6489, - [6490] = 6439, - [6491] = 6491, - [6492] = 6492, + [6489] = 6462, + [6490] = 6490, + [6491] = 6462, + [6492] = 6467, [6493] = 6493, - [6494] = 6494, - [6495] = 6495, - [6496] = 6496, - [6497] = 6497, - [6498] = 2182, - [6499] = 6499, - [6500] = 6449, - [6501] = 6459, - [6502] = 6440, - [6503] = 6442, - [6504] = 6462, - [6505] = 6449, - [6506] = 6462, - [6507] = 6439, - [6508] = 6442, + [6494] = 6458, + [6495] = 6450, + [6496] = 6441, + [6497] = 6458, + [6498] = 6450, + [6499] = 6443, + [6500] = 6439, + [6501] = 6501, + [6502] = 5782, + [6503] = 6467, + [6504] = 6504, + [6505] = 2450, + [6506] = 6506, + [6507] = 6462, + [6508] = 6462, [6509] = 6509, [6510] = 6510, - [6511] = 6389, - [6512] = 6459, + [6511] = 6511, + [6512] = 6512, [6513] = 6513, - [6514] = 1934, - [6515] = 6449, + [6514] = 6458, + [6515] = 6515, [6516] = 6516, - [6517] = 6370, + [6517] = 6462, [6518] = 6518, - [6519] = 6448, - [6520] = 2183, - [6521] = 6442, - [6522] = 6448, + [6519] = 2183, + [6520] = 1934, + [6521] = 6345, + [6522] = 6439, [6523] = 6523, [6524] = 6524, [6525] = 6525, @@ -11281,263 +11288,263 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6535] = 6535, [6536] = 6536, [6537] = 6537, - [6538] = 6538, + [6538] = 6530, [6539] = 6539, [6540] = 6540, - [6541] = 3807, + [6541] = 6541, [6542] = 6542, [6543] = 6543, - [6544] = 6542, + [6544] = 6528, [6545] = 6545, [6546] = 6546, [6547] = 6547, [6548] = 6548, - [6549] = 6527, + [6549] = 6549, [6550] = 6550, [6551] = 6551, [6552] = 6552, - [6553] = 6553, - [6554] = 6554, - [6555] = 6555, + [6553] = 6530, + [6554] = 6531, + [6555] = 6539, [6556] = 6556, [6557] = 6557, [6558] = 6558, - [6559] = 6542, - [6560] = 6560, + [6559] = 6559, + [6560] = 3863, [6561] = 6561, [6562] = 6562, [6563] = 6563, [6564] = 6564, [6565] = 6565, - [6566] = 6566, - [6567] = 6523, + [6566] = 6531, + [6567] = 6567, [6568] = 6568, [6569] = 6569, [6570] = 6570, [6571] = 6571, - [6572] = 6572, + [6572] = 6549, [6573] = 6573, - [6574] = 6537, + [6574] = 6549, [6575] = 6575, - [6576] = 6532, - [6577] = 6546, + [6576] = 6576, + [6577] = 6577, [6578] = 6578, [6579] = 6579, - [6580] = 6580, - [6581] = 6581, + [6580] = 6528, + [6581] = 6565, [6582] = 6582, - [6583] = 6546, - [6584] = 6584, - [6585] = 6585, - [6586] = 3017, + [6583] = 6583, + [6584] = 6583, + [6585] = 6565, + [6586] = 6583, [6587] = 6587, [6588] = 6588, [6589] = 6589, [6590] = 6590, - [6591] = 6591, + [6591] = 3061, [6592] = 6592, - [6593] = 6569, - [6594] = 6571, - [6595] = 6595, - [6596] = 6537, - [6597] = 6597, - [6598] = 6595, - [6599] = 6532, - [6600] = 6569, - [6601] = 6571, + [6593] = 6593, + [6594] = 6594, + [6595] = 6583, + [6596] = 6596, + [6597] = 6527, + [6598] = 6527, + [6599] = 6575, + [6600] = 6530, + [6601] = 6596, [6602] = 6602, - [6603] = 6537, - [6604] = 6604, - [6605] = 6605, + [6603] = 6603, + [6604] = 6530, + [6605] = 3006, [6606] = 6606, [6607] = 6607, - [6608] = 2998, - [6609] = 6524, + [6608] = 6608, + [6609] = 6609, [6610] = 6610, [6611] = 6611, - [6612] = 6612, - [6613] = 6564, - [6614] = 6614, - [6615] = 6615, - [6616] = 6569, - [6617] = 2422, - [6618] = 6564, + [6612] = 6531, + [6613] = 6541, + [6614] = 6527, + [6615] = 6531, + [6616] = 6616, + [6617] = 6617, + [6618] = 6602, [6619] = 6619, - [6620] = 6564, - [6621] = 6621, - [6622] = 6564, - [6623] = 6532, - [6624] = 6546, - [6625] = 6527, - [6626] = 6569, - [6627] = 6578, - [6628] = 6579, - [6629] = 6580, - [6630] = 6582, + [6620] = 6527, + [6621] = 6539, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6565, + [6627] = 6539, + [6628] = 6577, + [6629] = 6629, + [6630] = 6630, [6631] = 6631, - [6632] = 6571, + [6632] = 2413, [6633] = 6633, - [6634] = 6634, - [6635] = 6635, + [6634] = 6603, + [6635] = 6531, [6636] = 6636, - [6637] = 6546, - [6638] = 6638, - [6639] = 6639, + [6637] = 6539, + [6638] = 6565, + [6639] = 6531, [6640] = 6640, - [6641] = 6532, - [6642] = 6523, + [6641] = 6528, + [6642] = 6583, [6643] = 6643, - [6644] = 6644, - [6645] = 6645, - [6646] = 6646, - [6647] = 6647, - [6648] = 6648, - [6649] = 6527, - [6650] = 6532, - [6651] = 6546, - [6652] = 6532, - [6653] = 6653, - [6654] = 3784, + [6644] = 6549, + [6645] = 6583, + [6646] = 6565, + [6647] = 6565, + [6648] = 6548, + [6649] = 3779, + [6650] = 6650, + [6651] = 6651, + [6652] = 6652, + [6653] = 6396, + [6654] = 6397, [6655] = 6655, - [6656] = 6656, - [6657] = 6395, - [6658] = 6397, - [6659] = 6571, - [6660] = 6571, - [6661] = 6661, + [6656] = 6577, + [6657] = 6531, + [6658] = 6658, + [6659] = 6394, + [6660] = 6395, + [6661] = 6531, [6662] = 6662, - [6663] = 6663, - [6664] = 6571, - [6665] = 6665, - [6666] = 6388, - [6667] = 6386, + [6663] = 6533, + [6664] = 6664, + [6665] = 6531, + [6666] = 6666, + [6667] = 6667, [6668] = 6668, - [6669] = 6571, + [6669] = 6577, [6670] = 6670, - [6671] = 6523, - [6672] = 6569, - [6673] = 6535, + [6671] = 6528, + [6672] = 6672, + [6673] = 6673, [6674] = 6674, - [6675] = 6643, - [6676] = 6571, - [6677] = 6542, + [6675] = 6675, + [6676] = 6676, + [6677] = 6587, [6678] = 6678, - [6679] = 6679, - [6680] = 6680, - [6681] = 6597, - [6682] = 6564, + [6679] = 6583, + [6680] = 6565, + [6681] = 6681, + [6682] = 6682, [6683] = 6683, - [6684] = 6537, - [6685] = 6532, + [6684] = 6684, + [6685] = 6536, [6686] = 6686, - [6687] = 6687, - [6688] = 6542, - [6689] = 6564, - [6690] = 6571, - [6691] = 6691, + [6687] = 6530, + [6688] = 6688, + [6689] = 6689, + [6690] = 6527, + [6691] = 3779, [6692] = 6692, [6693] = 6693, [6694] = 6694, [6695] = 6695, - [6696] = 6696, + [6696] = 2344, [6697] = 6697, - [6698] = 6698, + [6698] = 2398, [6699] = 6699, - [6700] = 3784, - [6701] = 2344, + [6700] = 6700, + [6701] = 6701, [6702] = 6702, - [6703] = 6395, + [6703] = 6703, [6704] = 6704, [6705] = 6693, - [6706] = 1940, + [6706] = 6706, [6707] = 6707, - [6708] = 6708, - [6709] = 6397, + [6708] = 3779, + [6709] = 6709, [6710] = 6710, - [6711] = 6694, + [6711] = 6699, [6712] = 6712, [6713] = 6713, - [6714] = 2365, - [6715] = 6692, - [6716] = 6716, - [6717] = 6699, - [6718] = 3784, + [6714] = 6714, + [6715] = 6715, + [6716] = 1938, + [6717] = 6717, + [6718] = 6718, [6719] = 6719, [6720] = 6720, - [6721] = 6721, - [6722] = 6722, - [6723] = 3784, - [6724] = 1939, - [6725] = 6725, - [6726] = 6388, - [6727] = 6727, - [6728] = 6728, - [6729] = 2355, - [6730] = 6386, - [6731] = 6699, - [6732] = 1941, + [6721] = 6699, + [6722] = 2358, + [6723] = 3779, + [6724] = 6699, + [6725] = 6394, + [6726] = 6726, + [6727] = 6699, + [6728] = 6395, + [6729] = 6729, + [6730] = 6700, + [6731] = 6717, + [6732] = 6729, [6733] = 6733, - [6734] = 6699, - [6735] = 6735, + [6734] = 3863, + [6735] = 6707, [6736] = 6736, [6737] = 6737, [6738] = 6738, - [6739] = 6694, - [6740] = 6740, - [6741] = 6741, + [6739] = 6729, + [6740] = 6692, + [6741] = 6693, [6742] = 6742, - [6743] = 6743, - [6744] = 6736, - [6745] = 6738, - [6746] = 6694, - [6747] = 6747, - [6748] = 6740, - [6749] = 6741, - [6750] = 6743, - [6751] = 6694, - [6752] = 6736, - [6753] = 6738, - [6754] = 6740, - [6755] = 2420, - [6756] = 2342, - [6757] = 6757, - [6758] = 6694, - [6759] = 6759, + [6743] = 2359, + [6744] = 3863, + [6745] = 6736, + [6746] = 6707, + [6747] = 6736, + [6748] = 6729, + [6749] = 6729, + [6750] = 6750, + [6751] = 6751, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6729, + [6756] = 2341, + [6757] = 6692, + [6758] = 6758, + [6759] = 6729, [6760] = 6760, [6761] = 6761, - [6762] = 6762, - [6763] = 6741, - [6764] = 6694, - [6765] = 3807, - [6766] = 6766, - [6767] = 6694, + [6762] = 6729, + [6763] = 6763, + [6764] = 6764, + [6765] = 6765, + [6766] = 6697, + [6767] = 6767, [6768] = 6768, [6769] = 6769, - [6770] = 3807, - [6771] = 6771, + [6770] = 6770, + [6771] = 6720, [6772] = 6772, [6773] = 6773, [6774] = 6774, [6775] = 6775, [6776] = 6776, [6777] = 6777, - [6778] = 6743, - [6779] = 2341, - [6780] = 6780, - [6781] = 6781, + [6778] = 6778, + [6779] = 6720, + [6780] = 6396, + [6781] = 2334, [6782] = 6782, - [6783] = 3807, - [6784] = 6707, + [6783] = 6783, + [6784] = 6784, [6785] = 6785, - [6786] = 6786, + [6786] = 1940, [6787] = 6787, - [6788] = 6788, - [6789] = 6699, + [6788] = 3863, + [6789] = 6774, [6790] = 6790, - [6791] = 6713, + [6791] = 1941, [6792] = 6792, - [6793] = 6692, - [6794] = 6794, + [6793] = 6397, + [6794] = 6700, [6795] = 6795, [6796] = 6796, [6797] = 6797, @@ -11546,11 +11553,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6800] = 6800, [6801] = 6801, [6802] = 6802, - [6803] = 6803, + [6803] = 6799, [6804] = 6804, [6805] = 6805, [6806] = 6806, - [6807] = 6807, + [6807] = 6776, [6808] = 6808, [6809] = 6809, [6810] = 6810, @@ -11561,532 +11568,532 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6815] = 6815, [6816] = 6816, [6817] = 6817, - [6818] = 6796, + [6818] = 6818, [6819] = 6819, [6820] = 6820, - [6821] = 6802, - [6822] = 6819, + [6821] = 6821, + [6822] = 6822, [6823] = 6823, - [6824] = 6824, + [6824] = 6799, [6825] = 6825, - [6826] = 6796, - [6827] = 6798, - [6828] = 6828, - [6829] = 6829, - [6830] = 6825, - [6831] = 6796, - [6832] = 6798, + [6826] = 6826, + [6827] = 6827, + [6828] = 6800, + [6829] = 6801, + [6830] = 6822, + [6831] = 6831, + [6832] = 6832, [6833] = 6833, [6834] = 6834, - [6835] = 6835, - [6836] = 6833, - [6837] = 6837, - [6838] = 6811, + [6835] = 6800, + [6836] = 6836, + [6837] = 6801, + [6838] = 6838, [6839] = 6839, - [6840] = 6801, - [6841] = 6841, + [6840] = 6839, + [6841] = 6822, [6842] = 6842, [6843] = 6843, - [6844] = 6819, - [6845] = 6845, + [6844] = 6844, + [6845] = 6836, [6846] = 6846, [6847] = 6847, - [6848] = 6806, - [6849] = 6849, + [6848] = 6848, + [6849] = 6836, [6850] = 6850, [6851] = 6851, [6852] = 6852, - [6853] = 6799, - [6854] = 6854, - [6855] = 6803, + [6853] = 6853, + [6854] = 6839, + [6855] = 6855, [6856] = 6856, - [6857] = 6845, - [6858] = 6825, - [6859] = 6796, - [6860] = 6811, - [6861] = 6833, - [6862] = 6862, - [6863] = 6819, + [6857] = 6857, + [6858] = 6858, + [6859] = 6859, + [6860] = 6860, + [6861] = 6861, + [6862] = 6813, + [6863] = 6844, [6864] = 6864, - [6865] = 6805, - [6866] = 6828, - [6867] = 6867, + [6865] = 6800, + [6866] = 6866, + [6867] = 6801, [6868] = 6868, [6869] = 6869, - [6870] = 6870, - [6871] = 6871, + [6870] = 6825, + [6871] = 6805, [6872] = 6872, [6873] = 6873, - [6874] = 6825, - [6875] = 6796, - [6876] = 6808, - [6877] = 6877, - [6878] = 6833, - [6879] = 6814, - [6880] = 6880, + [6874] = 6800, + [6875] = 6875, + [6876] = 6853, + [6877] = 6801, + [6878] = 6878, + [6879] = 6879, + [6880] = 6802, [6881] = 6881, - [6882] = 6882, + [6882] = 6813, [6883] = 6805, - [6884] = 6782, - [6885] = 6846, - [6886] = 6886, - [6887] = 6887, - [6888] = 6888, - [6889] = 6889, + [6884] = 6808, + [6885] = 6810, + [6886] = 6808, + [6887] = 6827, + [6888] = 6810, + [6889] = 6860, [6890] = 6890, - [6891] = 6829, + [6891] = 6813, [6892] = 6892, [6893] = 6893, - [6894] = 6825, - [6895] = 6889, - [6896] = 6896, - [6897] = 6833, - [6898] = 6800, - [6899] = 6825, - [6900] = 6900, - [6901] = 6901, - [6902] = 6902, + [6894] = 6802, + [6895] = 6825, + [6896] = 6839, + [6897] = 6846, + [6898] = 6822, + [6899] = 6800, + [6900] = 6801, + [6901] = 6836, + [6902] = 6808, [6903] = 6903, - [6904] = 6904, - [6905] = 6905, - [6906] = 6906, - [6907] = 6907, - [6908] = 6806, - [6909] = 6825, - [6910] = 6796, - [6911] = 6825, - [6912] = 6912, - [6913] = 6833, - [6914] = 6914, + [6904] = 6827, + [6905] = 6822, + [6906] = 6818, + [6907] = 6827, + [6908] = 6813, + [6909] = 6858, + [6910] = 6847, + [6911] = 6911, + [6912] = 6825, + [6913] = 6810, + [6914] = 2448, [6915] = 6915, - [6916] = 6796, - [6917] = 6828, + [6916] = 6844, + [6917] = 6836, [6918] = 6918, - [6919] = 6919, + [6919] = 6844, [6920] = 6920, [6921] = 6921, - [6922] = 6808, - [6923] = 6923, - [6924] = 6924, + [6922] = 6922, + [6923] = 6812, + [6924] = 6836, [6925] = 6925, - [6926] = 6829, + [6926] = 6926, [6927] = 6927, - [6928] = 6796, - [6929] = 6814, - [6930] = 6856, - [6931] = 6808, - [6932] = 6814, - [6933] = 6841, + [6928] = 6875, + [6929] = 6929, + [6930] = 6911, + [6931] = 6879, + [6932] = 6860, + [6933] = 6933, [6934] = 6934, - [6935] = 6935, - [6936] = 6808, - [6937] = 6814, - [6938] = 6815, - [6939] = 6828, - [6940] = 6923, - [6941] = 6809, - [6942] = 6798, + [6935] = 6813, + [6936] = 6936, + [6937] = 6853, + [6938] = 6825, + [6939] = 6839, + [6940] = 6855, + [6941] = 6856, + [6942] = 6942, [6943] = 6943, - [6944] = 6944, - [6945] = 6835, - [6946] = 6925, - [6947] = 6839, - [6948] = 6805, - [6949] = 6833, - [6950] = 6950, - [6951] = 6951, - [6952] = 6799, - [6953] = 6953, - [6954] = 6800, - [6955] = 6955, - [6956] = 6953, - [6957] = 6802, - [6958] = 6834, - [6959] = 6803, - [6960] = 6960, - [6961] = 6961, - [6962] = 6833, + [6944] = 6836, + [6945] = 6868, + [6946] = 6853, + [6947] = 6796, + [6948] = 6800, + [6949] = 6801, + [6950] = 6800, + [6951] = 6836, + [6952] = 6839, + [6953] = 6918, + [6954] = 6954, + [6955] = 6855, + [6956] = 6801, + [6957] = 6817, + [6958] = 6802, + [6959] = 6959, + [6960] = 6856, + [6961] = 6815, + [6962] = 6817, [6963] = 6963, - [6964] = 6856, - [6965] = 6800, - [6966] = 6806, - [6967] = 6943, - [6968] = 6944, - [6969] = 6799, - [6970] = 6953, - [6971] = 6800, - [6972] = 6800, - [6973] = 6806, - [6974] = 6974, - [6975] = 6828, - [6976] = 6802, - [6977] = 6977, - [6978] = 6806, - [6979] = 6829, - [6980] = 6834, - [6981] = 6803, - [6982] = 6982, - [6983] = 6983, - [6984] = 6825, - [6985] = 6796, - [6986] = 6828, - [6987] = 6835, - [6988] = 6806, - [6989] = 6889, - [6990] = 6833, - [6991] = 6833, - [6992] = 6825, - [6993] = 6796, - [6994] = 6856, - [6995] = 6943, - [6996] = 6815, - [6997] = 6811, - [6998] = 6798, - [6999] = 6835, - [7000] = 6825, - [7001] = 6796, - [7002] = 6828, - [7003] = 7003, - [7004] = 7004, - [7005] = 6856, - [7006] = 6815, - [7007] = 6798, - [7008] = 6944, - [7009] = 6829, - [7010] = 7010, - [7011] = 6828, - [7012] = 6801, - [7013] = 6829, - [7014] = 6841, - [7015] = 6835, - [7016] = 6852, - [7017] = 6799, - [7018] = 6869, - [7019] = 7019, - [7020] = 6835, - [7021] = 6833, - [7022] = 6833, - [7023] = 6953, - [7024] = 6846, - [7025] = 6814, - [7026] = 7026, - [7027] = 6800, - [7028] = 6833, - [7029] = 6943, - [7030] = 6801, - [7031] = 6944, - [7032] = 7032, - [7033] = 6841, - [7034] = 6799, - [7035] = 6852, - [7036] = 6801, - [7037] = 6802, + [6964] = 6868, + [6965] = 6965, + [6966] = 6966, + [6967] = 6846, + [6968] = 6868, + [6969] = 6847, + [6970] = 6911, + [6971] = 6934, + [6972] = 6972, + [6973] = 6875, + [6974] = 6966, + [6975] = 6975, + [6976] = 6860, + [6977] = 6802, + [6978] = 6805, + [6979] = 6800, + [6980] = 6801, + [6981] = 6911, + [6982] = 6812, + [6983] = 6954, + [6984] = 6836, + [6985] = 6934, + [6986] = 6855, + [6987] = 6942, + [6988] = 6934, + [6989] = 6942, + [6990] = 6990, + [6991] = 6875, + [6992] = 6802, + [6993] = 6846, + [6994] = 6847, + [6995] = 6911, + [6996] = 6875, + [6997] = 6860, + [6998] = 6802, + [6999] = 6911, + [7000] = 6934, + [7001] = 6942, + [7002] = 6942, + [7003] = 6815, + [7004] = 6800, + [7005] = 6801, + [7006] = 6799, + [7007] = 6836, + [7008] = 7008, + [7009] = 6817, + [7010] = 6879, + [7011] = 6942, + [7012] = 7012, + [7013] = 6799, + [7014] = 6800, + [7015] = 6801, + [7016] = 7016, + [7017] = 6836, + [7018] = 6800, + [7019] = 6801, + [7020] = 7020, + [7021] = 6856, + [7022] = 6800, + [7023] = 6801, + [7024] = 6799, + [7025] = 6810, + [7026] = 6800, + [7027] = 6801, + [7028] = 6836, + [7029] = 6822, + [7030] = 6805, + [7031] = 6808, + [7032] = 6810, + [7033] = 6822, + [7034] = 7034, + [7035] = 6827, + [7036] = 6827, + [7037] = 6846, [7038] = 7038, - [7039] = 6846, - [7040] = 6953, - [7041] = 6841, - [7042] = 6811, - [7043] = 6852, - [7044] = 6800, - [7045] = 6811, - [7046] = 6802, - [7047] = 6834, - [7048] = 6803, - [7049] = 7049, - [7050] = 6846, - [7051] = 6801, - [7052] = 7052, - [7053] = 6961, - [7054] = 6825, - [7055] = 6809, + [7039] = 6825, + [7040] = 7040, + [7041] = 6815, + [7042] = 6844, + [7043] = 6847, + [7044] = 6817, + [7045] = 6836, + [7046] = 6844, + [7047] = 7047, + [7048] = 6853, + [7049] = 6836, + [7050] = 6873, + [7051] = 6839, + [7052] = 6856, + [7053] = 7053, + [7054] = 7054, + [7055] = 7055, [7056] = 7056, - [7057] = 6796, - [7058] = 6809, - [7059] = 6809, - [7060] = 6841, - [7061] = 7038, - [7062] = 6819, - [7063] = 2453, - [7064] = 6819, + [7057] = 6853, + [7058] = 6839, + [7059] = 6855, + [7060] = 7060, + [7061] = 6856, + [7062] = 7062, + [7063] = 7063, + [7064] = 7064, [7065] = 7065, - [7066] = 6804, - [7067] = 7067, + [7066] = 6773, + [7067] = 6868, [7068] = 7068, - [7069] = 6766, + [7069] = 7069, [7070] = 7070, - [7071] = 6833, - [7072] = 6907, - [7073] = 6983, - [7074] = 6834, - [7075] = 6851, - [7076] = 7076, + [7071] = 7071, + [7072] = 7072, + [7073] = 7073, + [7074] = 7074, + [7075] = 6761, + [7076] = 6869, [7077] = 7077, - [7078] = 7078, - [7079] = 6852, - [7080] = 6768, - [7081] = 6806, - [7082] = 6803, + [7078] = 6799, + [7079] = 7079, + [7080] = 6875, + [7081] = 7081, + [7082] = 7082, [7083] = 7083, - [7084] = 6912, - [7085] = 6841, + [7084] = 7084, + [7085] = 6812, [7086] = 7086, - [7087] = 7087, + [7087] = 6929, [7088] = 7088, [7089] = 7089, - [7090] = 6841, - [7091] = 6825, - [7092] = 7092, + [7090] = 6816, + [7091] = 6802, + [7092] = 6815, [7093] = 7093, - [7094] = 6943, - [7095] = 7095, - [7096] = 6934, + [7094] = 7062, + [7095] = 6817, + [7096] = 6799, [7097] = 7097, - [7098] = 6796, - [7099] = 6846, - [7100] = 6944, + [7098] = 7098, + [7099] = 6822, + [7100] = 7100, [7101] = 7101, - [7102] = 6815, + [7102] = 7063, [7103] = 7103, - [7104] = 6825, + [7104] = 7064, [7105] = 7105, [7106] = 7106, - [7107] = 1981, - [7108] = 7108, + [7107] = 7107, + [7108] = 1948, [7109] = 7109, - [7110] = 7110, - [7111] = 7111, + [7110] = 1949, + [7111] = 1959, [7112] = 7112, - [7113] = 1945, + [7113] = 7113, [7114] = 7114, - [7115] = 7106, + [7115] = 7115, [7116] = 7116, [7117] = 7117, - [7118] = 7118, + [7118] = 7112, [7119] = 7119, [7120] = 7120, - [7121] = 1971, + [7121] = 7121, [7122] = 7122, - [7123] = 7108, - [7124] = 1976, - [7125] = 1977, - [7126] = 7126, + [7123] = 7123, + [7124] = 7124, + [7125] = 1950, + [7126] = 7123, [7127] = 7127, - [7128] = 2366, - [7129] = 7114, - [7130] = 7130, + [7128] = 7112, + [7129] = 7129, + [7130] = 1961, [7131] = 7131, [7132] = 7132, [7133] = 7133, - [7134] = 1982, - [7135] = 1984, - [7136] = 7136, + [7134] = 7123, + [7135] = 7135, + [7136] = 7106, [7137] = 7137, - [7138] = 7138, - [7139] = 7139, - [7140] = 7140, + [7138] = 1960, + [7139] = 2993, + [7140] = 1978, [7141] = 7141, - [7142] = 7116, - [7143] = 7108, - [7144] = 7120, - [7145] = 1985, - [7146] = 7140, + [7142] = 7142, + [7143] = 7135, + [7144] = 7144, + [7145] = 7106, + [7146] = 7146, [7147] = 7147, - [7148] = 7148, + [7148] = 1974, [7149] = 7149, - [7150] = 7140, - [7151] = 1986, + [7150] = 7150, + [7151] = 7151, [7152] = 7152, - [7153] = 7153, - [7154] = 7154, + [7153] = 7144, + [7154] = 7137, [7155] = 7155, - [7156] = 1978, + [7156] = 7156, [7157] = 7157, - [7158] = 1958, - [7159] = 7130, - [7160] = 7160, - [7161] = 7161, - [7162] = 1959, - [7163] = 7163, + [7158] = 7158, + [7159] = 7159, + [7160] = 7150, + [7161] = 7129, + [7162] = 7158, + [7163] = 1986, [7164] = 7164, - [7165] = 7133, + [7165] = 7165, [7166] = 7166, - [7167] = 7133, - [7168] = 7117, - [7169] = 7169, - [7170] = 1960, + [7167] = 7137, + [7168] = 7135, + [7169] = 7106, + [7170] = 7135, [7171] = 7171, - [7172] = 1961, - [7173] = 7116, - [7174] = 7136, - [7175] = 1946, - [7176] = 7176, - [7177] = 7177, - [7178] = 7157, - [7179] = 7147, - [7180] = 2973, - [7181] = 7181, - [7182] = 7182, - [7183] = 7163, - [7184] = 7184, - [7185] = 7185, - [7186] = 1955, - [7187] = 7141, - [7188] = 7133, + [7172] = 7172, + [7173] = 7173, + [7174] = 7174, + [7175] = 7150, + [7176] = 7123, + [7177] = 1989, + [7178] = 7178, + [7179] = 7179, + [7180] = 7180, + [7181] = 1992, + [7182] = 7109, + [7183] = 7183, + [7184] = 7135, + [7185] = 7150, + [7186] = 1954, + [7187] = 7187, + [7188] = 7112, [7189] = 7189, - [7190] = 7190, - [7191] = 1962, + [7190] = 7132, + [7191] = 2340, [7192] = 7192, - [7193] = 7169, - [7194] = 7117, - [7195] = 7195, - [7196] = 7108, - [7197] = 7181, + [7193] = 7193, + [7194] = 1993, + [7195] = 7132, + [7196] = 7196, + [7197] = 7197, [7198] = 7198, - [7199] = 7199, - [7200] = 1964, - [7201] = 7130, - [7202] = 7122, - [7203] = 7181, - [7204] = 7204, - [7205] = 7205, - [7206] = 2961, + [7199] = 7149, + [7200] = 1972, + [7201] = 7172, + [7202] = 7172, + [7203] = 7150, + [7204] = 1991, + [7205] = 7144, + [7206] = 7152, [7207] = 7207, - [7208] = 7161, - [7209] = 7109, - [7210] = 1980, - [7211] = 1944, - [7212] = 7212, - [7213] = 7213, - [7214] = 7117, - [7215] = 7157, - [7216] = 7130, + [7208] = 7112, + [7209] = 7209, + [7210] = 7132, + [7211] = 7137, + [7212] = 7172, + [7213] = 7173, + [7214] = 7149, + [7215] = 7129, + [7216] = 7216, [7217] = 7217, - [7218] = 7147, - [7219] = 7219, - [7220] = 7220, - [7221] = 7106, - [7222] = 7106, - [7223] = 7116, + [7218] = 7144, + [7219] = 1955, + [7220] = 7158, + [7221] = 7209, + [7222] = 1973, + [7223] = 1990, [7224] = 7224, - [7225] = 7157, + [7225] = 1985, [7226] = 7226, - [7227] = 7227, - [7228] = 7161, + [7227] = 7135, + [7228] = 7228, [7229] = 7229, - [7230] = 7163, - [7231] = 7130, - [7232] = 7163, - [7233] = 7233, - [7234] = 7169, - [7235] = 7181, - [7236] = 7116, - [7237] = 7237, - [7238] = 7238, - [7239] = 7116, - [7240] = 7116, - [7241] = 1972, - [7242] = 7242, - [7243] = 7243, + [7230] = 7230, + [7231] = 7231, + [7232] = 7137, + [7233] = 7197, + [7234] = 7137, + [7235] = 7235, + [7236] = 7236, + [7237] = 1951, + [7238] = 1958, + [7239] = 7137, + [7240] = 7123, + [7241] = 7172, + [7242] = 1976, + [7243] = 7132, [7244] = 7244, - [7245] = 7140, - [7246] = 1943, + [7245] = 7132, + [7246] = 7246, [7247] = 7247, - [7248] = 1973, - [7249] = 7114, + [7248] = 7248, + [7249] = 7249, [7250] = 7250, - [7251] = 7251, - [7252] = 2343, - [7253] = 7253, - [7254] = 7254, - [7255] = 7255, - [7256] = 7256, + [7251] = 2984, + [7252] = 7172, + [7253] = 7178, + [7254] = 7144, + [7255] = 7109, + [7256] = 7178, [7257] = 7257, - [7258] = 7258, - [7259] = 7259, - [7260] = 7108, + [7258] = 1945, + [7259] = 1946, + [7260] = 1987, [7261] = 7261, - [7262] = 1965, - [7263] = 1963, - [7264] = 7163, - [7265] = 7136, + [7262] = 7247, + [7263] = 7132, + [7264] = 1964, + [7265] = 2349, [7266] = 7266, - [7267] = 1969, - [7268] = 7268, - [7269] = 7269, - [7270] = 7270, - [7271] = 1956, - [7272] = 7133, - [7273] = 7273, - [7274] = 1966, - [7275] = 7140, - [7276] = 7276, - [7277] = 7141, - [7278] = 7108, - [7279] = 7114, - [7280] = 7169, - [7281] = 7161, - [7282] = 7282, + [7267] = 7267, + [7268] = 7247, + [7269] = 1947, + [7270] = 1962, + [7271] = 7271, + [7272] = 7272, + [7273] = 1977, + [7274] = 7274, + [7275] = 7275, + [7276] = 7150, + [7277] = 7109, + [7278] = 7278, + [7279] = 7197, + [7280] = 7280, + [7281] = 7281, + [7282] = 7197, [7283] = 7283, - [7284] = 7109, - [7285] = 7285, - [7286] = 7286, - [7287] = 7287, - [7288] = 1970, - [7289] = 7289, + [7284] = 7149, + [7285] = 1952, + [7286] = 7132, + [7287] = 1963, + [7288] = 1943, + [7289] = 7137, [7290] = 7290, - [7291] = 1987, - [7292] = 7114, - [7293] = 1974, + [7291] = 7123, + [7292] = 1944, + [7293] = 1965, [7294] = 7294, - [7295] = 7120, - [7296] = 7296, - [7297] = 2340, - [7298] = 7106, - [7299] = 7136, + [7295] = 7295, + [7296] = 7144, + [7297] = 7178, + [7298] = 1967, + [7299] = 1988, [7300] = 7300, - [7301] = 2329, + [7301] = 7152, [7302] = 7302, - [7303] = 7303, - [7304] = 1993, - [7305] = 1989, - [7306] = 1968, - [7307] = 7307, + [7303] = 1969, + [7304] = 7304, + [7305] = 7129, + [7306] = 7129, + [7307] = 7247, [7308] = 7308, [7309] = 7309, - [7310] = 7157, - [7311] = 1967, - [7312] = 1948, - [7313] = 1949, - [7314] = 7161, + [7310] = 7310, + [7311] = 7209, + [7312] = 7312, + [7313] = 7129, + [7314] = 7314, [7315] = 7315, - [7316] = 7140, + [7316] = 7158, [7317] = 7317, - [7318] = 7133, - [7319] = 7161, - [7320] = 1950, - [7321] = 1951, - [7322] = 7133, - [7323] = 7157, - [7324] = 7120, - [7325] = 7122, - [7326] = 1952, - [7327] = 7122, + [7318] = 1979, + [7319] = 7319, + [7320] = 7320, + [7321] = 7321, + [7322] = 1980, + [7323] = 7209, + [7324] = 7112, + [7325] = 7173, + [7326] = 7247, + [7327] = 7327, [7328] = 7328, - [7329] = 7329, - [7330] = 7114, - [7331] = 7181, - [7332] = 7332, - [7333] = 1953, - [7334] = 1957, + [7329] = 1981, + [7330] = 1982, + [7331] = 2337, + [7332] = 1971, + [7333] = 7333, + [7334] = 7334, [7335] = 7335, - [7336] = 7181, - [7337] = 7337, - [7338] = 7130, - [7339] = 7116, - [7340] = 1975, - [7341] = 7163, - [7342] = 7141, - [7343] = 7133, + [7336] = 7336, + [7337] = 7106, + [7338] = 1983, + [7339] = 7339, + [7340] = 7340, + [7341] = 7247, + [7342] = 7342, + [7343] = 2342, [7344] = 7344, [7345] = 7345, [7346] = 7346, @@ -12095,454 +12102,454 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7349] = 7349, [7350] = 7350, [7351] = 7351, - [7352] = 3055, + [7352] = 7352, [7353] = 7353, [7354] = 7354, [7355] = 7355, [7356] = 7356, [7357] = 7357, - [7358] = 7355, + [7358] = 7358, [7359] = 7359, [7360] = 7360, - [7361] = 7361, + [7361] = 7352, [7362] = 7362, [7363] = 7363, - [7364] = 7364, + [7364] = 3007, [7365] = 7365, - [7366] = 7366, + [7366] = 7358, [7367] = 7367, [7368] = 7368, - [7369] = 7368, + [7369] = 7369, [7370] = 7370, [7371] = 7371, [7372] = 7372, [7373] = 7373, - [7374] = 7374, - [7375] = 7355, + [7374] = 7356, + [7375] = 7375, [7376] = 7376, [7377] = 7377, [7378] = 7378, [7379] = 7379, [7380] = 7380, - [7381] = 7355, - [7382] = 7347, - [7383] = 7353, + [7381] = 7381, + [7382] = 7373, + [7383] = 7370, [7384] = 7384, [7385] = 7385, - [7386] = 7386, - [7387] = 7350, + [7386] = 7356, + [7387] = 7359, [7388] = 7388, - [7389] = 7389, - [7390] = 7355, - [7391] = 7355, + [7389] = 7345, + [7390] = 7390, + [7391] = 7352, [7392] = 7392, [7393] = 7393, - [7394] = 7394, - [7395] = 7344, + [7394] = 7380, + [7395] = 7357, [7396] = 7396, - [7397] = 7373, - [7398] = 7398, + [7397] = 7397, + [7398] = 7357, [7399] = 7399, [7400] = 7400, [7401] = 7401, - [7402] = 7355, - [7403] = 7403, + [7402] = 7402, + [7403] = 7352, [7404] = 7404, [7405] = 7405, [7406] = 7406, [7407] = 7407, [7408] = 7408, - [7409] = 7409, - [7410] = 7410, - [7411] = 7374, - [7412] = 7399, + [7409] = 7399, + [7410] = 7352, + [7411] = 7381, + [7412] = 7352, [7413] = 7413, [7414] = 7414, [7415] = 7415, - [7416] = 7416, - [7417] = 7355, + [7416] = 7401, + [7417] = 7417, [7418] = 7418, - [7419] = 7419, + [7419] = 7356, [7420] = 7420, - [7421] = 7355, - [7422] = 7355, - [7423] = 7345, + [7421] = 7381, + [7422] = 7352, + [7423] = 7373, [7424] = 7424, - [7425] = 7396, - [7426] = 7374, - [7427] = 7377, - [7428] = 7403, + [7425] = 7373, + [7426] = 7426, + [7427] = 7352, + [7428] = 7420, [7429] = 7429, - [7430] = 7377, - [7431] = 7355, - [7432] = 7432, - [7433] = 7347, + [7430] = 7352, + [7431] = 7373, + [7432] = 7388, + [7433] = 7397, [7434] = 7434, - [7435] = 7366, - [7436] = 7355, - [7437] = 7388, + [7435] = 7400, + [7436] = 7380, + [7437] = 7397, [7438] = 7438, - [7439] = 7355, - [7440] = 7355, - [7441] = 7441, - [7442] = 7442, - [7443] = 7429, - [7444] = 7351, - [7445] = 7407, - [7446] = 7351, + [7439] = 7417, + [7440] = 7345, + [7441] = 7392, + [7442] = 7359, + [7443] = 7443, + [7444] = 7444, + [7445] = 7400, + [7446] = 7417, [7447] = 7447, - [7448] = 7448, - [7449] = 7355, - [7450] = 7376, - [7451] = 7451, + [7448] = 7359, + [7449] = 7449, + [7450] = 7408, + [7451] = 7447, [7452] = 7452, - [7453] = 7389, - [7454] = 7392, - [7455] = 7393, - [7456] = 7379, - [7457] = 7359, - [7458] = 7458, + [7453] = 7453, + [7454] = 7454, + [7455] = 7352, + [7456] = 7408, + [7457] = 7457, + [7458] = 7426, [7459] = 7459, [7460] = 7460, - [7461] = 7461, + [7461] = 7402, [7462] = 7462, - [7463] = 7355, - [7464] = 7355, + [7463] = 7404, + [7464] = 7464, [7465] = 7465, [7466] = 7466, - [7467] = 7467, - [7468] = 7350, - [7469] = 7452, - [7470] = 7371, - [7471] = 7355, - [7472] = 7389, + [7467] = 7390, + [7468] = 7402, + [7469] = 7420, + [7470] = 7352, + [7471] = 7471, + [7472] = 7472, [7473] = 7473, [7474] = 7474, - [7475] = 7353, - [7476] = 7462, - [7477] = 7364, - [7478] = 7466, - [7479] = 7371, - [7480] = 7355, - [7481] = 7355, - [7482] = 7482, - [7483] = 7415, - [7484] = 7355, + [7475] = 7475, + [7476] = 7476, + [7477] = 7365, + [7478] = 7478, + [7479] = 7352, + [7480] = 7370, + [7481] = 7377, + [7482] = 7400, + [7483] = 7352, + [7484] = 7417, [7485] = 7485, [7486] = 7486, - [7487] = 7355, - [7488] = 7379, - [7489] = 7401, + [7487] = 7399, + [7488] = 7488, + [7489] = 7489, [7490] = 7490, - [7491] = 7376, - [7492] = 7388, - [7493] = 7380, - [7494] = 7355, - [7495] = 7495, - [7496] = 7496, + [7491] = 7491, + [7492] = 7492, + [7493] = 7485, + [7494] = 7359, + [7495] = 7359, + [7496] = 7471, [7497] = 7497, - [7498] = 7498, - [7499] = 7499, + [7498] = 7491, + [7499] = 7381, [7500] = 7500, - [7501] = 7384, - [7502] = 7502, + [7501] = 7501, + [7502] = 7408, [7503] = 7503, - [7504] = 7504, + [7504] = 7352, [7505] = 7505, - [7506] = 7355, - [7507] = 7403, - [7508] = 7355, - [7509] = 7407, + [7506] = 7370, + [7507] = 7363, + [7508] = 7475, + [7509] = 7509, [7510] = 7510, - [7511] = 7355, - [7512] = 7359, - [7513] = 7441, + [7511] = 7365, + [7512] = 7390, + [7513] = 7381, [7514] = 7514, [7515] = 7515, - [7516] = 7516, - [7517] = 7517, - [7518] = 7363, - [7519] = 7355, - [7520] = 7424, - [7521] = 7379, - [7522] = 7522, - [7523] = 7355, - [7524] = 7392, - [7525] = 7355, - [7526] = 7526, + [7516] = 7354, + [7517] = 7359, + [7518] = 7381, + [7519] = 7390, + [7520] = 7520, + [7521] = 7420, + [7522] = 7404, + [7523] = 7523, + [7524] = 7471, + [7525] = 7525, + [7526] = 7380, [7527] = 7527, - [7528] = 7355, - [7529] = 7363, - [7530] = 7474, - [7531] = 7385, + [7528] = 7370, + [7529] = 7476, + [7530] = 7365, + [7531] = 7485, [7532] = 7532, - [7533] = 7396, - [7534] = 7403, - [7535] = 7407, - [7536] = 7353, - [7537] = 7474, - [7538] = 7355, - [7539] = 7448, - [7540] = 7540, - [7541] = 7541, + [7533] = 7363, + [7534] = 7534, + [7535] = 7354, + [7536] = 7373, + [7537] = 7397, + [7538] = 7538, + [7539] = 7352, + [7540] = 7352, + [7541] = 7402, [7542] = 7542, - [7543] = 7393, - [7544] = 7424, + [7543] = 7352, + [7544] = 7544, [7545] = 7545, - [7546] = 7486, - [7547] = 7547, - [7548] = 7548, - [7549] = 7515, - [7550] = 7355, - [7551] = 7551, - [7552] = 7376, - [7553] = 7355, - [7554] = 7347, - [7555] = 7452, - [7556] = 7389, - [7557] = 7462, - [7558] = 7355, - [7559] = 7466, - [7560] = 7560, - [7561] = 7371, - [7562] = 7441, - [7563] = 7385, - [7564] = 7366, - [7565] = 7565, - [7566] = 7566, + [7546] = 7352, + [7547] = 7358, + [7548] = 7490, + [7549] = 7549, + [7550] = 7399, + [7551] = 7475, + [7552] = 7426, + [7553] = 7352, + [7554] = 7352, + [7555] = 7555, + [7556] = 7352, + [7557] = 7557, + [7558] = 7381, + [7559] = 7352, + [7560] = 7392, + [7561] = 7380, + [7562] = 7402, + [7563] = 7399, + [7564] = 7525, + [7565] = 7509, + [7566] = 7345, [7567] = 7567, - [7568] = 3019, - [7569] = 7569, - [7570] = 7376, - [7571] = 7355, - [7572] = 7373, + [7568] = 7344, + [7569] = 7527, + [7570] = 7352, + [7571] = 7571, + [7572] = 7472, [7573] = 7573, - [7574] = 7452, - [7575] = 7374, - [7576] = 7576, - [7577] = 7347, - [7578] = 7401, - [7579] = 7345, - [7580] = 7371, - [7581] = 7496, - [7582] = 7499, - [7583] = 7415, - [7584] = 7584, + [7574] = 7574, + [7575] = 7426, + [7576] = 7404, + [7577] = 7352, + [7578] = 7359, + [7579] = 7557, + [7580] = 7401, + [7581] = 7490, + [7582] = 7381, + [7583] = 7583, + [7584] = 7380, [7585] = 7585, - [7586] = 7413, - [7587] = 7497, + [7586] = 7573, + [7587] = 7587, [7588] = 7588, - [7589] = 7442, - [7590] = 7590, - [7591] = 7551, - [7592] = 7585, + [7589] = 7589, + [7590] = 7549, + [7591] = 7465, + [7592] = 7592, [7593] = 7593, - [7594] = 7355, - [7595] = 7595, - [7596] = 7420, - [7597] = 7597, - [7598] = 7371, - [7599] = 7486, - [7600] = 7366, - [7601] = 7355, - [7602] = 7368, - [7603] = 7603, - [7604] = 7372, - [7605] = 7566, - [7606] = 7415, - [7607] = 7380, - [7608] = 7486, - [7609] = 7496, - [7610] = 7500, + [7594] = 7426, + [7595] = 7404, + [7596] = 7397, + [7597] = 7402, + [7598] = 7475, + [7599] = 7352, + [7600] = 7352, + [7601] = 7372, + [7602] = 7602, + [7603] = 7375, + [7604] = 7604, + [7605] = 7352, + [7606] = 7384, + [7607] = 7426, + [7608] = 7608, + [7609] = 7357, + [7610] = 7363, [7611] = 7611, [7612] = 7612, - [7613] = 7613, - [7614] = 7374, - [7615] = 7373, - [7616] = 7616, - [7617] = 7590, - [7618] = 7374, - [7619] = 7619, - [7620] = 7364, - [7621] = 7451, - [7622] = 7585, - [7623] = 7413, - [7624] = 7497, - [7625] = 7588, - [7626] = 7442, - [7627] = 7590, - [7628] = 7551, - [7629] = 7351, - [7630] = 7593, - [7631] = 7434, - [7632] = 7355, - [7633] = 7420, - [7634] = 7355, - [7635] = 7377, - [7636] = 7636, - [7637] = 7392, - [7638] = 7638, - [7639] = 7372, - [7640] = 7355, - [7641] = 7515, - [7642] = 7451, - [7643] = 7399, + [7613] = 7491, + [7614] = 7377, + [7615] = 7352, + [7616] = 7525, + [7617] = 7471, + [7618] = 7618, + [7619] = 7585, + [7620] = 7573, + [7621] = 7587, + [7622] = 7588, + [7623] = 7589, + [7624] = 7549, + [7625] = 7465, + [7626] = 7388, + [7627] = 7593, + [7628] = 7628, + [7629] = 7352, + [7630] = 7352, + [7631] = 7490, + [7632] = 7426, + [7633] = 7352, + [7634] = 7527, + [7635] = 7472, + [7636] = 7375, + [7637] = 7354, + [7638] = 7557, + [7639] = 7390, + [7640] = 7399, + [7641] = 7641, + [7642] = 7476, + [7643] = 7593, [7644] = 7644, - [7645] = 7500, - [7646] = 7379, - [7647] = 7366, - [7648] = 7363, - [7649] = 7345, - [7650] = 7650, - [7651] = 7355, - [7652] = 7652, - [7653] = 7588, - [7654] = 7442, - [7655] = 7590, - [7656] = 7551, - [7657] = 7377, - [7658] = 7593, - [7659] = 7659, - [7660] = 7355, - [7661] = 7379, - [7662] = 7364, - [7663] = 7663, - [7664] = 7664, - [7665] = 7665, - [7666] = 7372, - [7667] = 7667, - [7668] = 7663, - [7669] = 7366, - [7670] = 7364, - [7671] = 7364, - [7672] = 7420, - [7673] = 7359, - [7674] = 7364, - [7675] = 7590, - [7676] = 7551, - [7677] = 7593, - [7678] = 7663, - [7679] = 7448, - [7680] = 7388, - [7681] = 7403, - [7682] = 7372, - [7683] = 7683, - [7684] = 7355, - [7685] = 7685, - [7686] = 7424, - [7687] = 7355, - [7688] = 7359, - [7689] = 7371, - [7690] = 7466, - [7691] = 7691, + [7645] = 7525, + [7646] = 7646, + [7647] = 7352, + [7648] = 7588, + [7649] = 7589, + [7650] = 7549, + [7651] = 7465, + [7652] = 7491, + [7653] = 7593, + [7654] = 7654, + [7655] = 7655, + [7656] = 7365, + [7657] = 7657, + [7658] = 7459, + [7659] = 7527, + [7660] = 7660, + [7661] = 7375, + [7662] = 7404, + [7663] = 7485, + [7664] = 7459, + [7665] = 7415, + [7666] = 7476, + [7667] = 7354, + [7668] = 7352, + [7669] = 7365, + [7670] = 7549, + [7671] = 7465, + [7672] = 7593, + [7673] = 7673, + [7674] = 7400, + [7675] = 7393, + [7676] = 7588, + [7677] = 7567, + [7678] = 7375, + [7679] = 7679, + [7680] = 7404, + [7681] = 7492, + [7682] = 7352, + [7683] = 7377, + [7684] = 7684, + [7685] = 7352, + [7686] = 7358, + [7687] = 7363, + [7688] = 7417, + [7689] = 7689, + [7690] = 7420, + [7691] = 7375, [7692] = 7692, - [7693] = 7424, - [7694] = 7372, - [7695] = 7396, + [7693] = 7492, + [7694] = 7375, + [7695] = 7695, [7696] = 7696, - [7697] = 7392, - [7698] = 7393, - [7699] = 7448, - [7700] = 7393, - [7701] = 7415, - [7702] = 7388, - [7703] = 7403, - [7704] = 7474, - [7705] = 7407, - [7706] = 7372, - [7707] = 7376, - [7708] = 7486, - [7709] = 7462, + [7697] = 7492, + [7698] = 7618, + [7699] = 7699, + [7700] = 7352, + [7701] = 7401, + [7702] = 7352, + [7703] = 7375, + [7704] = 7464, + [7705] = 7372, + [7706] = 7352, + [7707] = 7355, + [7708] = 7349, + [7709] = 7709, [7710] = 7710, - [7711] = 7711, - [7712] = 7401, - [7713] = 7496, - [7714] = 7567, - [7715] = 7715, - [7716] = 7593, - [7717] = 7420, - [7718] = 7718, - [7719] = 7355, - [7720] = 7663, - [7721] = 7588, - [7722] = 7500, - [7723] = 7452, - [7724] = 7389, + [7711] = 7492, + [7712] = 7345, + [7713] = 7509, + [7714] = 7714, + [7715] = 7426, + [7716] = 7377, + [7717] = 7557, + [7718] = 7352, + [7719] = 7719, + [7720] = 7363, + [7721] = 7377, + [7722] = 7722, + [7723] = 7393, + [7724] = 7354, [7725] = 7725, - [7726] = 7726, - [7727] = 7379, - [7728] = 7728, - [7729] = 7711, - [7730] = 7355, - [7731] = 7462, - [7732] = 7732, - [7733] = 7466, + [7726] = 7352, + [7727] = 7352, + [7728] = 7344, + [7729] = 3023, + [7730] = 7730, + [7731] = 7393, + [7732] = 7589, + [7733] = 7733, [7734] = 7734, - [7735] = 7351, - [7736] = 7379, - [7737] = 7400, - [7738] = 7566, - [7739] = 7377, - [7740] = 7355, - [7741] = 7371, + [7735] = 7489, + [7736] = 7459, + [7737] = 7737, + [7738] = 7738, + [7739] = 7352, + [7740] = 7740, + [7741] = 7741, [7742] = 7742, - [7743] = 7347, - [7744] = 7744, - [7745] = 7374, - [7746] = 7424, + [7743] = 7384, + [7744] = 7490, + [7745] = 7745, + [7746] = 7392, [7747] = 7747, - [7748] = 7415, - [7749] = 7374, - [7750] = 7750, - [7751] = 7350, - [7752] = 7496, - [7753] = 7355, - [7754] = 7754, - [7755] = 7385, - [7756] = 7355, - [7757] = 7757, - [7758] = 7758, - [7759] = 7759, - [7760] = 7420, - [7761] = 7566, - [7762] = 7429, + [7748] = 7352, + [7749] = 7492, + [7750] = 7585, + [7751] = 7464, + [7752] = 7404, + [7753] = 7753, + [7754] = 7355, + [7755] = 7388, + [7756] = 7587, + [7757] = 7352, + [7758] = 7485, + [7759] = 7415, + [7760] = 7393, + [7761] = 7352, + [7762] = 7762, [7763] = 7585, - [7764] = 7413, - [7765] = 7497, - [7766] = 7434, - [7767] = 7588, + [7764] = 7573, + [7765] = 7587, + [7766] = 7766, + [7767] = 7767, [7768] = 7344, - [7769] = 7499, - [7770] = 7442, - [7771] = 7590, - [7772] = 7400, + [7769] = 7352, + [7770] = 7770, + [7771] = 7618, + [7772] = 7489, [7773] = 7344, - [7774] = 7551, - [7775] = 7441, - [7776] = 7400, - [7777] = 7344, - [7778] = 7355, - [7779] = 7364, + [7774] = 7588, + [7775] = 7589, + [7776] = 7489, + [7777] = 7352, + [7778] = 7549, + [7779] = 7465, [7780] = 7344, - [7781] = 7548, + [7781] = 7352, [7782] = 7344, [7783] = 7344, - [7784] = 7784, - [7785] = 7691, - [7786] = 7644, - [7787] = 7593, - [7788] = 7788, - [7789] = 7372, - [7790] = 7691, - [7791] = 7644, - [7792] = 7691, - [7793] = 7644, - [7794] = 7691, - [7795] = 7691, - [7796] = 7796, + [7784] = 7471, + [7785] = 7738, + [7786] = 7657, + [7787] = 7352, + [7788] = 7346, + [7789] = 7789, + [7790] = 7738, + [7791] = 7657, + [7792] = 7738, + [7793] = 7657, + [7794] = 7738, + [7795] = 7738, + [7796] = 7593, [7797] = 7797, - [7798] = 7798, - [7799] = 7496, + [7798] = 7352, + [7799] = 7799, [7800] = 7800, [7801] = 7801, [7802] = 7802, @@ -13090,6 +13097,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: + if (lookahead == '#') ADVANCE(355); + if (lookahead == '/') ADVANCE(347); + if (lookahead == 0xa0 || + lookahead == 0x3000 || + lookahead == 0xfeff) ADVANCE(344); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(14); + if (lookahead != 0) ADVANCE(397); + END_STATE(); + case 15: if (lookahead == '#') ADVANCE(262); if (lookahead == '/') ADVANCE(261); if (lookahead == '\\') ADVANCE(34); @@ -13101,16 +13118,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\'') ADVANCE(260); END_STATE(); - case 15: - if (lookahead == '#') ADVANCE(355); - if (lookahead == '/') ADVANCE(347); - if (lookahead == 0xa0 || - lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(344); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (lookahead != 0) ADVANCE(397); - END_STATE(); case 16: if (lookahead == '#') ADVANCE(223); if (lookahead == '/') ADVANCE(215); @@ -15106,7 +15113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 344: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(15); + if (lookahead == '\n') SKIP(14); if (lookahead == '#') ADVANCE(355); if (lookahead == '/') ADVANCE(348); if (lookahead == '\\') ADVANCE(345); @@ -16766,82 +16773,83 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 319: ACCEPT_TOKEN(anon_sym_type); if (lookahead == 'o') ADVANCE(405); + if (lookahead == 'v') ADVANCE(406); END_STATE(); case 320: if (lookahead == 'g') ADVANCE(243); END_STATE(); case 321: - if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'e') ADVANCE(407); END_STATE(); case 322: - if (lookahead == 'n') ADVANCE(407); + if (lookahead == 'n') ADVANCE(408); END_STATE(); case 323: - if (lookahead == 'f') ADVANCE(408); + if (lookahead == 'f') ADVANCE(409); END_STATE(); case 324: - if (lookahead == 'r') ADVANCE(409); + if (lookahead == 'r') ADVANCE(410); END_STATE(); case 325: - if (lookahead == 'g') ADVANCE(410); + if (lookahead == 'g') ADVANCE(411); END_STATE(); case 326: - if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'u') ADVANCE(412); END_STATE(); case 327: - if (lookahead == 't') ADVANCE(412); + if (lookahead == 't') ADVANCE(413); END_STATE(); case 328: - if (lookahead == 'i') ADVANCE(413); + if (lookahead == 'i') ADVANCE(414); END_STATE(); case 329: ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 330: - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'e') ADVANCE(415); END_STATE(); case 331: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 332: ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 333: - if (lookahead == 'd') ADVANCE(416); + if (lookahead == 'd') ADVANCE(417); END_STATE(); case 334: ACCEPT_TOKEN(anon_sym_Cdecl); END_STATE(); case 335: - if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'a') ADVANCE(418); END_STATE(); case 336: - if (lookahead == 'l') ADVANCE(418); + if (lookahead == 'l') ADVANCE(419); END_STATE(); case 337: - if (lookahead == 'a') ADVANCE(419); + if (lookahead == 'a') ADVANCE(420); END_STATE(); case 338: - if (lookahead == 'e') ADVANCE(420); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(421); - if (lookahead == 'v') ADVANCE(422); + if (lookahead == 't') ADVANCE(422); + if (lookahead == 'v') ADVANCE(423); END_STATE(); case 340: - if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'a') ADVANCE(424); END_STATE(); case 341: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 342: - if (lookahead == 'a') ADVANCE(424); + if (lookahead == 'a') ADVANCE(425); END_STATE(); case 343: - if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'd') ADVANCE(426); END_STATE(); case 344: - if (lookahead == 'b') ADVANCE(426); + if (lookahead == 'b') ADVANCE(427); END_STATE(); case 345: ACCEPT_TOKEN(anon_sym_async); @@ -16856,8 +16864,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 349: - if (lookahead == 'e') ADVANCE(427); - if (lookahead == 's') ADVANCE(428); + if (lookahead == 'e') ADVANCE(428); + if (lookahead == 's') ADVANCE(429); END_STATE(); case 350: ACCEPT_TOKEN(anon_sym_class); @@ -16866,40 +16874,40 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 352: - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'n') ADVANCE(430); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'a') ADVANCE(431); END_STATE(); case 354: - if (lookahead == 'l') ADVANCE(431); + if (lookahead == 'l') ADVANCE(432); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'a') ADVANCE(433); END_STATE(); case 356: - if (lookahead == 'n') ADVANCE(433); + if (lookahead == 'n') ADVANCE(434); END_STATE(); case 357: - if (lookahead == 'l') ADVANCE(434); + if (lookahead == 'l') ADVANCE(435); END_STATE(); case 358: if (lookahead == 'e') ADVANCE(243); END_STATE(); case 359: - if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 360: - if (lookahead == 's') ADVANCE(436); + if (lookahead == 's') ADVANCE(437); END_STATE(); case 361: ACCEPT_TOKEN(anon_sym_event); END_STATE(); case 362: - if (lookahead == 'c') ADVANCE(437); + if (lookahead == 'c') ADVANCE(438); END_STATE(); case 363: - if (lookahead == 'n') ADVANCE(438); + if (lookahead == 'n') ADVANCE(439); END_STATE(); case 364: ACCEPT_TOKEN(anon_sym_false); @@ -16908,615 +16916,624 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_field); END_STATE(); case 366: - if (lookahead == 'l') ADVANCE(439); + if (lookahead == 'l') ADVANCE(440); END_STATE(); case 367: ACCEPT_TOKEN(anon_sym_fixed); END_STATE(); case 368: - if (lookahead == 'c') ADVANCE(440); + if (lookahead == 'c') ADVANCE(441); END_STATE(); case 369: - if (lookahead == 'l') ADVANCE(441); + if (lookahead == 'l') ADVANCE(442); END_STATE(); case 370: ACCEPT_TOKEN(anon_sym_group); END_STATE(); case 371: - if (lookahead == 'n') ADVANCE(442); + if (lookahead == 'n') ADVANCE(443); END_STATE(); case 372: - if (lookahead == 'c') ADVANCE(443); + if (lookahead == 'c') ADVANCE(444); END_STATE(); case 373: - if (lookahead == 'f') ADVANCE(444); - if (lookahead == 'n') ADVANCE(445); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'n') ADVANCE(446); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(446); + if (lookahead == 'e') ADVANCE(447); END_STATE(); case 375: - if (lookahead == 'd') ADVANCE(447); + if (lookahead == 'd') ADVANCE(448); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(448); + if (lookahead == 'e') ADVANCE(449); END_STATE(); case 377: - if (lookahead == 'p') ADVANCE(449); + if (lookahead == 'p') ADVANCE(450); END_STATE(); case 378: - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 379: if (lookahead == 't') ADVANCE(243); END_STATE(); case 380: - if (lookahead == 't') ADVANCE(451); + if (lookahead == 't') ADVANCE(452); END_STATE(); case 381: - if (lookahead == 'b') ADVANCE(452); + if (lookahead == 'b') ADVANCE(453); END_STATE(); case 382: - if (lookahead == 'i') ADVANCE(453); + if (lookahead == 'i') ADVANCE(454); END_STATE(); case 383: ACCEPT_TOKEN(anon_sym_param); - if (lookahead == 's') ADVANCE(454); + if (lookahead == 's') ADVANCE(455); END_STATE(); case 384: - if (lookahead == 'a') ADVANCE(455); + if (lookahead == 'a') ADVANCE(456); END_STATE(); case 385: - if (lookahead == 't') ADVANCE(456); + if (lookahead == 't') ADVANCE(457); END_STATE(); case 386: - if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'r') ADVANCE(458); END_STATE(); case 387: - if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'c') ADVANCE(459); END_STATE(); case 388: - if (lookahead == 'c') ADVANCE(459); + if (lookahead == 'c') ADVANCE(460); END_STATE(); case 389: - if (lookahead == 'n') ADVANCE(460); + if (lookahead == 'n') ADVANCE(461); END_STATE(); case 390: - if (lookahead == 'd') ADVANCE(461); + if (lookahead == 'd') ADVANCE(462); END_STATE(); case 391: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 392: - if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 393: - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'r') ADVANCE(465); END_STATE(); case 394: - if (lookahead == 'n') ADVANCE(465); + if (lookahead == 'n') ADVANCE(466); END_STATE(); case 395: - if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'd') ADVANCE(467); END_STATE(); case 396: - if (lookahead == 'd') ADVANCE(467); + if (lookahead == 'd') ADVANCE(468); END_STATE(); case 397: - if (lookahead == 't') ADVANCE(468); + if (lookahead == 't') ADVANCE(469); END_STATE(); case 398: - if (lookahead == 'f') ADVANCE(469); + if (lookahead == 'f') ADVANCE(470); END_STATE(); case 399: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(471); END_STATE(); case 400: - if (lookahead == 'c') ADVANCE(471); + if (lookahead == 'c') ADVANCE(472); END_STATE(); case 401: if (lookahead == 'g') ADVANCE(243); END_STATE(); case 402: - if (lookahead == 't') ADVANCE(472); + if (lookahead == 't') ADVANCE(473); END_STATE(); case 403: - if (lookahead == 'h') ADVANCE(473); + if (lookahead == 'h') ADVANCE(474); END_STATE(); case 404: ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 405: - if (lookahead == 'f') ADVANCE(474); + if (lookahead == 'f') ADVANCE(475); END_STATE(); case 406: - if (lookahead == 'c') ADVANCE(475); + if (lookahead == 'a') ADVANCE(476); END_STATE(); case 407: - if (lookahead == 'a') ADVANCE(476); + if (lookahead == 'c') ADVANCE(477); END_STATE(); case 408: - if (lookahead == 'e') ADVANCE(477); + if (lookahead == 'a') ADVANCE(478); END_STATE(); case 409: - if (lookahead == 't') ADVANCE(243); + if (lookahead == 'e') ADVANCE(479); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_using); + if (lookahead == 't') ADVANCE(243); END_STATE(); case 411: - if (lookahead == 'a') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 412: - if (lookahead == 'i') ADVANCE(479); + if (lookahead == 'a') ADVANCE(480); END_STATE(); case 413: - if (lookahead == 'n') ADVANCE(480); + if (lookahead == 'i') ADVANCE(481); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym_where); + if (lookahead == 'n') ADVANCE(482); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(481); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(482); + if (lookahead == 'l') ADVANCE(483); END_STATE(); case 419: - if (lookahead == 'l') ADVANCE(483); + if (lookahead == 'l') ADVANCE(484); END_STATE(); case 420: - if (lookahead == 'r') ADVANCE(484); + if (lookahead == 'l') ADVANCE(485); END_STATE(); case 421: - if (lookahead == 'y') ADVANCE(485); + if (lookahead == 'r') ADVANCE(486); END_STATE(); case 422: - if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'y') ADVANCE(487); END_STATE(); case 423: - if (lookahead == 'c') ADVANCE(487); + if (lookahead == 'a') ADVANCE(488); END_STATE(); case 424: - if (lookahead == 't') ADVANCE(488); + if (lookahead == 'c') ADVANCE(489); END_STATE(); case 425: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 't') ADVANCE(490); END_STATE(); case 426: - if (lookahead == 'l') ADVANCE(490); + if (lookahead == 'i') ADVANCE(491); END_STATE(); case 427: - if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'l') ADVANCE(492); END_STATE(); case 428: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 'd') ADVANCE(493); END_STATE(); case 429: - if (lookahead == 'u') ADVANCE(493); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 430: - if (lookahead == 'l') ADVANCE(243); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 431: - if (lookahead == 't') ADVANCE(494); + if (lookahead == 'l') ADVANCE(243); END_STATE(); case 432: - if (lookahead == 't') ADVANCE(495); + if (lookahead == 't') ADVANCE(496); END_STATE(); case 433: - if (lookahead == 'd') ADVANCE(496); + if (lookahead == 't') ADVANCE(497); END_STATE(); case 434: - if (lookahead == 'e') ADVANCE(497); + if (lookahead == 'd') ADVANCE(498); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym_enable); + if (lookahead == 'e') ADVANCE(499); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_equals); + ACCEPT_TOKEN(anon_sym_enable); END_STATE(); case 437: - if (lookahead == 'i') ADVANCE(498); + ACCEPT_TOKEN(anon_sym_equals); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'i') ADVANCE(500); END_STATE(); case 439: - if (lookahead == 'y') ADVANCE(499); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 440: - if (lookahead == 'h') ADVANCE(500); + if (lookahead == 'y') ADVANCE(501); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_global); + if (lookahead == 'h') ADVANCE(502); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_hidden); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 443: - if (lookahead == 'i') ADVANCE(501); + ACCEPT_TOKEN(anon_sym_hidden); END_STATE(); case 444: - if (lookahead == 'a') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); END_STATE(); case 445: - if (lookahead == 'a') ADVANCE(503); + if (lookahead == 'a') ADVANCE(504); END_STATE(); case 446: - if (lookahead == 'd') ADVANCE(504); + if (lookahead == 'a') ADVANCE(505); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_method); + if (lookahead == 'd') ADVANCE(506); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_method); END_STATE(); case 449: - if (lookahead == 'a') ADVANCE(505); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 450: - if (lookahead == 'l') ADVANCE(506); + if (lookahead == 'a') ADVANCE(507); END_STATE(); case 451: - if (lookahead == 'o') ADVANCE(507); + if (lookahead == 'l') ADVANCE(508); END_STATE(); case 452: - if (lookahead == 'y') ADVANCE(508); + if (lookahead == 'o') ADVANCE(509); END_STATE(); case 453: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'y') ADVANCE(510); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_params); + if (lookahead == 'd') ADVANCE(511); END_STATE(); case 455: - if (lookahead == 'l') ADVANCE(510); + ACCEPT_TOKEN(anon_sym_params); END_STATE(); case 456: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'l') ADVANCE(512); END_STATE(); case 457: - if (lookahead == 't') ADVANCE(512); + if (lookahead == 'e') ADVANCE(513); END_STATE(); case 458: - if (lookahead == 't') ADVANCE(513); + if (lookahead == 't') ADVANCE(514); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 't') ADVANCE(515); END_STATE(); case 460: - if (lookahead == 'l') ADVANCE(514); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_record); + if (lookahead == 'l') ADVANCE(516); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_remove); + ACCEPT_TOKEN(anon_sym_record); END_STATE(); case 463: - if (lookahead == 'e') ADVANCE(515); + ACCEPT_TOKEN(anon_sym_remove); END_STATE(); case 464: - if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'e') ADVANCE(517); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'e') ADVANCE(518); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_scoped); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym_sealed); + ACCEPT_TOKEN(anon_sym_scoped); END_STATE(); case 468: - ACCEPT_TOKEN(anon_sym_select); + ACCEPT_TOKEN(anon_sym_sealed); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 470: - if (lookahead == 'l') ADVANCE(517); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'l') ADVANCE(519); END_STATE(); case 472: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 475: - if (lookahead == 'k') ADVANCE(518); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 476: - if (lookahead == 'g') ADVANCE(519); + if (lookahead == 'r') ADVANCE(520); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym_unsafe); + if (lookahead == 'k') ADVANCE(521); END_STATE(); case 478: - if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'g') ADVANCE(522); END_STATE(); case 479: - if (lookahead == 'l') ADVANCE(521); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 480: - if (lookahead == 'g') ADVANCE(522); + if (lookahead == 'l') ADVANCE(523); END_STATE(); case 481: - if (lookahead == 'l') ADVANCE(523); + if (lookahead == 'l') ADVANCE(524); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym_Stdcall); + if (lookahead == 'g') ADVANCE(525); END_STATE(); case 483: - if (lookahead == 'l') ADVANCE(524); + if (lookahead == 'l') ADVANCE(526); END_STATE(); case 484: - if (lookahead == 'e') ADVANCE(525); + ACCEPT_TOKEN(anon_sym_Stdcall); END_STATE(); case 485: - if (lookahead == 'p') ADVANCE(526); + if (lookahead == 'l') ADVANCE(527); END_STATE(); case 486: - if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'e') ADVANCE(528); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(528); + if (lookahead == 'p') ADVANCE(529); END_STATE(); case 488: - if (lookahead == 'i') ADVANCE(529); + if (lookahead == 'l') ADVANCE(530); END_STATE(); case 489: - if (lookahead == 'n') ADVANCE(530); + if (lookahead == 't') ADVANCE(531); END_STATE(); case 490: - if (lookahead == 'y') ADVANCE(531); + if (lookahead == 'i') ADVANCE(532); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_checked); + if (lookahead == 'n') ADVANCE(533); END_STATE(); case 492: - if (lookahead == 'm') ADVANCE(532); + if (lookahead == 'y') ADVANCE(534); END_STATE(); case 493: - if (lookahead == 'e') ADVANCE(533); + ACCEPT_TOKEN(anon_sym_checked); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'm') ADVANCE(535); END_STATE(); case 495: - if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'e') ADVANCE(536); END_STATE(); case 496: - if (lookahead == 'i') ADVANCE(535); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 497: - ACCEPT_TOKEN(anon_sym_disable); + if (lookahead == 'e') ADVANCE(537); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(536); + if (lookahead == 'i') ADVANCE(538); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_finally); + ACCEPT_TOKEN(anon_sym_disable); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_foreach); + if (lookahead == 't') ADVANCE(539); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(537); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 502: - if (lookahead == 'c') ADVANCE(538); + ACCEPT_TOKEN(anon_sym_foreach); END_STATE(); case 503: - if (lookahead == 'l') ADVANCE(539); + if (lookahead == 't') ADVANCE(540); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_managed); + if (lookahead == 'c') ADVANCE(541); END_STATE(); case 505: - if (lookahead == 'c') ADVANCE(540); + if (lookahead == 'l') ADVANCE(542); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_notnull); + ACCEPT_TOKEN(anon_sym_managed); END_STATE(); case 507: - if (lookahead == 'r') ADVANCE(541); + if (lookahead == 'c') ADVANCE(543); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_orderby); + ACCEPT_TOKEN(anon_sym_notnull); END_STATE(); case 509: - if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'r') ADVANCE(544); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_partial); + ACCEPT_TOKEN(anon_sym_orderby); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 'e') ADVANCE(545); END_STATE(); case 512: - if (lookahead == 'y') ADVANCE(543); + ACCEPT_TOKEN(anon_sym_partial); END_STATE(); case 513: - if (lookahead == 'e') ADVANCE(544); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 514: - if (lookahead == 'y') ADVANCE(545); + if (lookahead == 'y') ADVANCE(546); END_STATE(); case 515: - if (lookahead == 'd') ADVANCE(546); + if (lookahead == 'e') ADVANCE(547); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym_restore); + if (lookahead == 'y') ADVANCE(548); END_STATE(); case 517: - if (lookahead == 'l') ADVANCE(547); + if (lookahead == 'd') ADVANCE(549); END_STATE(); case 518: - if (lookahead == 'e') ADVANCE(548); + ACCEPT_TOKEN(anon_sym_restore); END_STATE(); case 519: - if (lookahead == 'e') ADVANCE(549); + if (lookahead == 'l') ADVANCE(550); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_virtual); + ACCEPT_TOKEN(anon_sym_typevar); END_STATE(); case 521: - if (lookahead == 'e') ADVANCE(550); + if (lookahead == 'e') ADVANCE(551); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_warning); - if (lookahead == 's') ADVANCE(551); + if (lookahead == 'e') ADVANCE(552); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_Fastcall); + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_Thiscall); + if (lookahead == 'e') ADVANCE(553); END_STATE(); case 525: - if (lookahead == 'f') ADVANCE(552); + ACCEPT_TOKEN(anon_sym_warning); + if (lookahead == 's') ADVANCE(554); END_STATE(); case 526: - if (lookahead == 'e') ADVANCE(553); + ACCEPT_TOKEN(anon_sym_Fastcall); END_STATE(); case 527: - if (lookahead == 'u') ADVANCE(554); + ACCEPT_TOKEN(anon_sym_Thiscall); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_abstract); + if (lookahead == 'f') ADVANCE(555); END_STATE(); case 529: - if (lookahead == 'o') ADVANCE(555); + if (lookahead == 'e') ADVANCE(556); END_STATE(); case 530: - if (lookahead == 'g') ADVANCE(556); + if (lookahead == 'u') ADVANCE(557); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_assembly); + ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_checksum); + if (lookahead == 'o') ADVANCE(558); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'g') ADVANCE(559); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_delegate); + ACCEPT_TOKEN(anon_sym_assembly); END_STATE(); case 535: - if (lookahead == 'n') ADVANCE(557); + ACCEPT_TOKEN(anon_sym_checksum); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_explicit); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_implicit); + ACCEPT_TOKEN(anon_sym_delegate); END_STATE(); case 538: - if (lookahead == 'e') ADVANCE(558); + if (lookahead == 'n') ADVANCE(560); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_internal); + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); case 540: - if (lookahead == 'e') ADVANCE(559); + ACCEPT_TOKEN(anon_sym_implicit); END_STATE(); case 541: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'e') ADVANCE(561); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_override); + ACCEPT_TOKEN(anon_sym_internal); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_property); + if (lookahead == 'e') ADVANCE(562); END_STATE(); case 544: - if (lookahead == 'd') ADVANCE(560); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_required); + ACCEPT_TOKEN(anon_sym_property); END_STATE(); case 547: - if (lookahead == 'o') ADVANCE(561); + if (lookahead == 'd') ADVANCE(563); END_STATE(); case 548: - if (lookahead == 'd') ADVANCE(562); + ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); case 549: - if (lookahead == 'd') ADVANCE(563); + ACCEPT_TOKEN(anon_sym_required); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'o') ADVANCE(564); END_STATE(); case 551: - ACCEPT_TOKEN(anon_sym_warnings); + if (lookahead == 'd') ADVANCE(565); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym___makeref); + if (lookahead == 'd') ADVANCE(566); END_STATE(); case 553: - ACCEPT_TOKEN(anon_sym___reftype); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 554: - if (lookahead == 'e') ADVANCE(564); + ACCEPT_TOKEN(anon_sym_warnings); END_STATE(); case 555: - if (lookahead == 'n') ADVANCE(565); + ACCEPT_TOKEN(anon_sym___makeref); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_ascending); + ACCEPT_TOKEN(anon_sym___reftype); END_STATE(); case 557: - if (lookahead == 'g') ADVANCE(566); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_interface); + if (lookahead == 'n') ADVANCE(568); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_ascending); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == 'g') ADVANCE(569); END_STATE(); case 561: - if (lookahead == 'c') ADVANCE(567); + ACCEPT_TOKEN(anon_sym_interface); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_unchecked); + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_unmanaged); + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym___refvalue); + if (lookahead == 'c') ADVANCE(570); END_STATE(); case 565: - if (lookahead == 's') ADVANCE(568); + ACCEPT_TOKEN(anon_sym_unchecked); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_descending); + ACCEPT_TOKEN(anon_sym_unmanaged); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_stackalloc); + ACCEPT_TOKEN(anon_sym___refvalue); END_STATE(); case 568: + if (lookahead == 's') ADVANCE(571); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_descending); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_stackalloc); + END_STATE(); + case 571: ACCEPT_TOKEN(anon_sym_annotations); END_STATE(); default: @@ -17648,22 +17665,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 132, .external_lex_state = 2}, [121] = {.lex_state = 132, .external_lex_state = 2}, [122] = {.lex_state = 132, .external_lex_state = 2}, - [123] = {.lex_state = 131, .external_lex_state = 2}, - [124] = {.lex_state = 131, .external_lex_state = 2}, + [123] = {.lex_state = 132, .external_lex_state = 2}, + [124] = {.lex_state = 132, .external_lex_state = 2}, [125] = {.lex_state = 132, .external_lex_state = 2}, [126] = {.lex_state = 132, .external_lex_state = 2}, [127] = {.lex_state = 132, .external_lex_state = 2}, [128] = {.lex_state = 132, .external_lex_state = 2}, [129] = {.lex_state = 132, .external_lex_state = 2}, [130] = {.lex_state = 132, .external_lex_state = 2}, - [131] = {.lex_state = 132, .external_lex_state = 2}, + [131] = {.lex_state = 131, .external_lex_state = 2}, [132] = {.lex_state = 132, .external_lex_state = 2}, [133] = {.lex_state = 132, .external_lex_state = 2}, [134] = {.lex_state = 132, .external_lex_state = 2}, [135] = {.lex_state = 132, .external_lex_state = 2}, [136] = {.lex_state = 132, .external_lex_state = 2}, [137] = {.lex_state = 132, .external_lex_state = 2}, - [138] = {.lex_state = 132, .external_lex_state = 2}, + [138] = {.lex_state = 131, .external_lex_state = 2}, [139] = {.lex_state = 132, .external_lex_state = 2}, [140] = {.lex_state = 132, .external_lex_state = 2}, [141] = {.lex_state = 132, .external_lex_state = 2}, @@ -17707,10 +17724,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [179] = {.lex_state = 131, .external_lex_state = 2}, [180] = {.lex_state = 131, .external_lex_state = 2}, [181] = {.lex_state = 131, .external_lex_state = 2}, - [182] = {.lex_state = 131, .external_lex_state = 3}, + [182] = {.lex_state = 131, .external_lex_state = 2}, [183] = {.lex_state = 131, .external_lex_state = 2}, [184] = {.lex_state = 131, .external_lex_state = 2}, - [185] = {.lex_state = 131, .external_lex_state = 2}, + [185] = {.lex_state = 131, .external_lex_state = 3}, [186] = {.lex_state = 131, .external_lex_state = 3}, [187] = {.lex_state = 131, .external_lex_state = 2}, [188] = {.lex_state = 131, .external_lex_state = 2}, @@ -17731,9 +17748,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 131, .external_lex_state = 2}, [204] = {.lex_state = 131, .external_lex_state = 2}, [205] = {.lex_state = 131, .external_lex_state = 2}, - [206] = {.lex_state = 131, .external_lex_state = 3}, + [206] = {.lex_state = 131, .external_lex_state = 2}, [207] = {.lex_state = 131, .external_lex_state = 2}, - [208] = {.lex_state = 131, .external_lex_state = 2}, + [208] = {.lex_state = 131, .external_lex_state = 3}, [209] = {.lex_state = 131, .external_lex_state = 2}, [210] = {.lex_state = 131, .external_lex_state = 2}, [211] = {.lex_state = 131, .external_lex_state = 2}, @@ -17751,70 +17768,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [223] = {.lex_state = 131, .external_lex_state = 2}, [224] = {.lex_state = 131, .external_lex_state = 2}, [225] = {.lex_state = 131, .external_lex_state = 2}, - [226] = {.lex_state = 131, .external_lex_state = 2}, + [226] = {.lex_state = 132, .external_lex_state = 2}, [227] = {.lex_state = 131, .external_lex_state = 2}, - [228] = {.lex_state = 131, .external_lex_state = 2}, - [229] = {.lex_state = 132, .external_lex_state = 2}, - [230] = {.lex_state = 131, .external_lex_state = 2}, - [231] = {.lex_state = 131, .external_lex_state = 2}, + [228] = {.lex_state = 132, .external_lex_state = 2}, + [229] = {.lex_state = 131, .external_lex_state = 2}, + [230] = {.lex_state = 132, .external_lex_state = 2}, + [231] = {.lex_state = 132, .external_lex_state = 2}, [232] = {.lex_state = 131, .external_lex_state = 2}, - [233] = {.lex_state = 132, .external_lex_state = 2}, - [234] = {.lex_state = 132, .external_lex_state = 2}, - [235] = {.lex_state = 131, .external_lex_state = 2}, - [236] = {.lex_state = 131, .external_lex_state = 2}, + [233] = {.lex_state = 131, .external_lex_state = 2}, + [234] = {.lex_state = 131, .external_lex_state = 2}, + [235] = {.lex_state = 132, .external_lex_state = 2}, + [236] = {.lex_state = 132, .external_lex_state = 2}, [237] = {.lex_state = 131, .external_lex_state = 2}, - [238] = {.lex_state = 132, .external_lex_state = 2}, - [239] = {.lex_state = 131, .external_lex_state = 2}, - [240] = {.lex_state = 132, .external_lex_state = 2}, + [238] = {.lex_state = 131, .external_lex_state = 2}, + [239] = {.lex_state = 132, .external_lex_state = 2}, + [240] = {.lex_state = 131, .external_lex_state = 2}, [241] = {.lex_state = 132, .external_lex_state = 2}, [242] = {.lex_state = 131, .external_lex_state = 2}, [243] = {.lex_state = 131, .external_lex_state = 2}, - [244] = {.lex_state = 132, .external_lex_state = 2}, - [245] = {.lex_state = 132, .external_lex_state = 2}, - [246] = {.lex_state = 131, .external_lex_state = 2}, + [244] = {.lex_state = 131, .external_lex_state = 2}, + [245] = {.lex_state = 131, .external_lex_state = 2}, + [246] = {.lex_state = 132, .external_lex_state = 2}, [247] = {.lex_state = 132, .external_lex_state = 2}, - [248] = {.lex_state = 131, .external_lex_state = 2}, + [248] = {.lex_state = 132, .external_lex_state = 2}, [249] = {.lex_state = 131, .external_lex_state = 2}, - [250] = {.lex_state = 131, .external_lex_state = 2}, + [250] = {.lex_state = 132, .external_lex_state = 2}, [251] = {.lex_state = 131, .external_lex_state = 2}, - [252] = {.lex_state = 132, .external_lex_state = 2}, + [252] = {.lex_state = 131, .external_lex_state = 2}, [253] = {.lex_state = 131, .external_lex_state = 2}, - [254] = {.lex_state = 132, .external_lex_state = 2}, + [254] = {.lex_state = 131, .external_lex_state = 2}, [255] = {.lex_state = 131, .external_lex_state = 2}, [256] = {.lex_state = 132, .external_lex_state = 2}, - [257] = {.lex_state = 132, .external_lex_state = 2}, - [258] = {.lex_state = 131, .external_lex_state = 2}, - [259] = {.lex_state = 132, .external_lex_state = 2}, + [257] = {.lex_state = 131, .external_lex_state = 2}, + [258] = {.lex_state = 132, .external_lex_state = 2}, + [259] = {.lex_state = 131, .external_lex_state = 2}, [260] = {.lex_state = 131, .external_lex_state = 2}, [261] = {.lex_state = 131, .external_lex_state = 2}, - [262] = {.lex_state = 131, .external_lex_state = 2}, + [262] = {.lex_state = 132, .external_lex_state = 2}, [263] = {.lex_state = 131, .external_lex_state = 2}, - [264] = {.lex_state = 132, .external_lex_state = 2}, - [265] = {.lex_state = 131, .external_lex_state = 2}, + [264] = {.lex_state = 131, .external_lex_state = 2}, + [265] = {.lex_state = 132, .external_lex_state = 2}, [266] = {.lex_state = 131, .external_lex_state = 2}, - [267] = {.lex_state = 132, .external_lex_state = 2}, - [268] = {.lex_state = 132, .external_lex_state = 2}, + [267] = {.lex_state = 131, .external_lex_state = 2}, + [268] = {.lex_state = 131, .external_lex_state = 2}, [269] = {.lex_state = 131, .external_lex_state = 2}, [270] = {.lex_state = 131, .external_lex_state = 2}, - [271] = {.lex_state = 132, .external_lex_state = 2}, + [271] = {.lex_state = 131, .external_lex_state = 2}, [272] = {.lex_state = 132, .external_lex_state = 2}, - [273] = {.lex_state = 131, .external_lex_state = 2}, + [273] = {.lex_state = 132, .external_lex_state = 2}, [274] = {.lex_state = 132, .external_lex_state = 2}, - [275] = {.lex_state = 132, .external_lex_state = 2}, + [275] = {.lex_state = 131, .external_lex_state = 2}, [276] = {.lex_state = 132, .external_lex_state = 2}, [277] = {.lex_state = 132, .external_lex_state = 2}, - [278] = {.lex_state = 131, .external_lex_state = 2}, + [278] = {.lex_state = 132, .external_lex_state = 2}, [279] = {.lex_state = 131, .external_lex_state = 2}, - [280] = {.lex_state = 132, .external_lex_state = 2}, + [280] = {.lex_state = 131, .external_lex_state = 2}, [281] = {.lex_state = 132, .external_lex_state = 2}, - [282] = {.lex_state = 132, .external_lex_state = 2}, - [283] = {.lex_state = 131, .external_lex_state = 2}, - [284] = {.lex_state = 131, .external_lex_state = 2}, - [285] = {.lex_state = 131, .external_lex_state = 2}, + [282] = {.lex_state = 131, .external_lex_state = 2}, + [283] = {.lex_state = 132, .external_lex_state = 2}, + [284] = {.lex_state = 132, .external_lex_state = 2}, + [285] = {.lex_state = 132, .external_lex_state = 2}, [286] = {.lex_state = 132, .external_lex_state = 2}, - [287] = {.lex_state = 131, .external_lex_state = 2}, + [287] = {.lex_state = 132, .external_lex_state = 2}, [288] = {.lex_state = 132, .external_lex_state = 2}, - [289] = {.lex_state = 132, .external_lex_state = 2}, + [289] = {.lex_state = 131, .external_lex_state = 2}, [290] = {.lex_state = 132, .external_lex_state = 2}, [291] = {.lex_state = 132, .external_lex_state = 2}, [292] = {.lex_state = 132, .external_lex_state = 2}, @@ -19452,12 +19469,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1924] = {.lex_state = 132}, [1925] = {.lex_state = 132}, [1926] = {.lex_state = 132}, - [1927] = {.lex_state = 132, .external_lex_state = 2}, - [1928] = {.lex_state = 132}, - [1929] = {.lex_state = 132, .external_lex_state = 2}, + [1927] = {.lex_state = 132}, + [1928] = {.lex_state = 132, .external_lex_state = 2}, + [1929] = {.lex_state = 132}, [1930] = {.lex_state = 132}, [1931] = {.lex_state = 132}, - [1932] = {.lex_state = 132}, + [1932] = {.lex_state = 132, .external_lex_state = 2}, [1933] = {.lex_state = 132}, [1934] = {.lex_state = 132, .external_lex_state = 2}, [1935] = {.lex_state = 132, .external_lex_state = 2}, @@ -19566,7 +19583,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2038] = {.lex_state = 132, .external_lex_state = 2}, [2039] = {.lex_state = 132, .external_lex_state = 2}, [2040] = {.lex_state = 132, .external_lex_state = 2}, - [2041] = {.lex_state = 132, .external_lex_state = 2}, + [2041] = {.lex_state = 4}, [2042] = {.lex_state = 132, .external_lex_state = 2}, [2043] = {.lex_state = 132, .external_lex_state = 2}, [2044] = {.lex_state = 132, .external_lex_state = 2}, @@ -19587,7 +19604,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2059] = {.lex_state = 132, .external_lex_state = 2}, [2060] = {.lex_state = 132, .external_lex_state = 2}, [2061] = {.lex_state = 132, .external_lex_state = 2}, - [2062] = {.lex_state = 4}, + [2062] = {.lex_state = 132, .external_lex_state = 2}, [2063] = {.lex_state = 132, .external_lex_state = 2}, [2064] = {.lex_state = 132, .external_lex_state = 2}, [2065] = {.lex_state = 132, .external_lex_state = 2}, @@ -19673,8 +19690,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2145] = {.lex_state = 132, .external_lex_state = 2}, [2146] = {.lex_state = 132, .external_lex_state = 2}, [2147] = {.lex_state = 132, .external_lex_state = 2}, - [2148] = {.lex_state = 132, .external_lex_state = 2}, - [2149] = {.lex_state = 4}, + [2148] = {.lex_state = 4}, + [2149] = {.lex_state = 132, .external_lex_state = 2}, [2150] = {.lex_state = 4, .external_lex_state = 4}, [2151] = {.lex_state = 132, .external_lex_state = 2}, [2152] = {.lex_state = 132, .external_lex_state = 2}, @@ -19710,15 +19727,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 4}, [2183] = {.lex_state = 4}, [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 4, .external_lex_state = 4}, + [2185] = {.lex_state = 5}, [2186] = {.lex_state = 5}, [2187] = {.lex_state = 5}, [2188] = {.lex_state = 4}, [2189] = {.lex_state = 5}, - [2190] = {.lex_state = 5}, + [2190] = {.lex_state = 4, .external_lex_state = 4}, [2191] = {.lex_state = 4}, - [2192] = {.lex_state = 5}, - [2193] = {.lex_state = 4}, + [2192] = {.lex_state = 4}, + [2193] = {.lex_state = 5}, [2194] = {.lex_state = 4}, [2195] = {.lex_state = 5}, [2196] = {.lex_state = 5}, @@ -19729,141 +19746,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2201] = {.lex_state = 5}, [2202] = {.lex_state = 4}, [2203] = {.lex_state = 4}, - [2204] = {.lex_state = 132}, + [2204] = {.lex_state = 5}, [2205] = {.lex_state = 5}, [2206] = {.lex_state = 5}, - [2207] = {.lex_state = 5}, + [2207] = {.lex_state = 132}, [2208] = {.lex_state = 4, .external_lex_state = 4}, - [2209] = {.lex_state = 131}, - [2210] = {.lex_state = 6}, - [2211] = {.lex_state = 5}, - [2212] = {.lex_state = 6}, - [2213] = {.lex_state = 4}, + [2209] = {.lex_state = 6}, + [2210] = {.lex_state = 131}, + [2211] = {.lex_state = 6}, + [2212] = {.lex_state = 5}, + [2213] = {.lex_state = 6}, [2214] = {.lex_state = 4}, [2215] = {.lex_state = 4}, - [2216] = {.lex_state = 132}, + [2216] = {.lex_state = 4}, [2217] = {.lex_state = 4}, - [2218] = {.lex_state = 4}, - [2219] = {.lex_state = 6}, + [2218] = {.lex_state = 132}, + [2219] = {.lex_state = 4}, [2220] = {.lex_state = 4}, - [2221] = {.lex_state = 4}, + [2221] = {.lex_state = 5}, [2222] = {.lex_state = 4}, - [2223] = {.lex_state = 4}, + [2223] = {.lex_state = 5}, [2224] = {.lex_state = 4}, [2225] = {.lex_state = 5}, - [2226] = {.lex_state = 6}, + [2226] = {.lex_state = 4}, [2227] = {.lex_state = 4}, - [2228] = {.lex_state = 131}, - [2229] = {.lex_state = 4}, + [2228] = {.lex_state = 4}, + [2229] = {.lex_state = 4, .external_lex_state = 4}, [2230] = {.lex_state = 4}, - [2231] = {.lex_state = 4}, - [2232] = {.lex_state = 4, .external_lex_state = 4}, + [2231] = {.lex_state = 6}, + [2232] = {.lex_state = 4}, [2233] = {.lex_state = 4}, - [2234] = {.lex_state = 5}, - [2235] = {.lex_state = 4}, - [2236] = {.lex_state = 5}, + [2234] = {.lex_state = 4}, + [2235] = {.lex_state = 131}, + [2236] = {.lex_state = 4}, [2237] = {.lex_state = 4}, [2238] = {.lex_state = 5}, - [2239] = {.lex_state = 5}, - [2240] = {.lex_state = 4, .external_lex_state = 4}, + [2239] = {.lex_state = 4, .external_lex_state = 4}, + [2240] = {.lex_state = 6}, [2241] = {.lex_state = 5}, - [2242] = {.lex_state = 6}, - [2243] = {.lex_state = 131}, + [2242] = {.lex_state = 131}, + [2243] = {.lex_state = 4, .external_lex_state = 4}, [2244] = {.lex_state = 4, .external_lex_state = 4}, - [2245] = {.lex_state = 131}, - [2246] = {.lex_state = 4, .external_lex_state = 4}, - [2247] = {.lex_state = 131}, - [2248] = {.lex_state = 5}, - [2249] = {.lex_state = 5}, - [2250] = {.lex_state = 4}, - [2251] = {.lex_state = 5, .external_lex_state = 4}, - [2252] = {.lex_state = 4}, - [2253] = {.lex_state = 4, .external_lex_state = 4}, + [2245] = {.lex_state = 5}, + [2246] = {.lex_state = 131}, + [2247] = {.lex_state = 5}, + [2248] = {.lex_state = 131}, + [2249] = {.lex_state = 131}, + [2250] = {.lex_state = 131}, + [2251] = {.lex_state = 5}, + [2252] = {.lex_state = 5}, + [2253] = {.lex_state = 131}, [2254] = {.lex_state = 5}, - [2255] = {.lex_state = 131}, - [2256] = {.lex_state = 5}, - [2257] = {.lex_state = 131}, - [2258] = {.lex_state = 131}, - [2259] = {.lex_state = 5, .external_lex_state = 4}, - [2260] = {.lex_state = 4, .external_lex_state = 4}, - [2261] = {.lex_state = 131}, - [2262] = {.lex_state = 5, .external_lex_state = 4}, - [2263] = {.lex_state = 4}, + [2255] = {.lex_state = 4, .external_lex_state = 4}, + [2256] = {.lex_state = 4}, + [2257] = {.lex_state = 4}, + [2258] = {.lex_state = 5, .external_lex_state = 4}, + [2259] = {.lex_state = 5}, + [2260] = {.lex_state = 5, .external_lex_state = 4}, + [2261] = {.lex_state = 5, .external_lex_state = 4}, + [2262] = {.lex_state = 5}, + [2263] = {.lex_state = 5}, [2264] = {.lex_state = 5, .external_lex_state = 4}, - [2265] = {.lex_state = 5, .external_lex_state = 4}, - [2266] = {.lex_state = 5, .external_lex_state = 4}, - [2267] = {.lex_state = 5, .external_lex_state = 4}, - [2268] = {.lex_state = 5, .external_lex_state = 4}, - [2269] = {.lex_state = 5, .external_lex_state = 4}, - [2270] = {.lex_state = 5, .external_lex_state = 4}, - [2271] = {.lex_state = 5}, - [2272] = {.lex_state = 5}, - [2273] = {.lex_state = 4}, - [2274] = {.lex_state = 5}, + [2265] = {.lex_state = 5}, + [2266] = {.lex_state = 5}, + [2267] = {.lex_state = 5}, + [2268] = {.lex_state = 4}, + [2269] = {.lex_state = 4}, + [2270] = {.lex_state = 4, .external_lex_state = 4}, + [2271] = {.lex_state = 4}, + [2272] = {.lex_state = 5, .external_lex_state = 4}, + [2273] = {.lex_state = 5, .external_lex_state = 4}, + [2274] = {.lex_state = 5, .external_lex_state = 4}, [2275] = {.lex_state = 5, .external_lex_state = 4}, - [2276] = {.lex_state = 5}, + [2276] = {.lex_state = 5, .external_lex_state = 4}, [2277] = {.lex_state = 4}, - [2278] = {.lex_state = 4}, - [2279] = {.lex_state = 5, .external_lex_state = 4}, - [2280] = {.lex_state = 5}, - [2281] = {.lex_state = 5}, - [2282] = {.lex_state = 4}, - [2283] = {.lex_state = 5, .external_lex_state = 4}, - [2284] = {.lex_state = 131}, + [2278] = {.lex_state = 131}, + [2279] = {.lex_state = 131}, + [2280] = {.lex_state = 5, .external_lex_state = 4}, + [2281] = {.lex_state = 5, .external_lex_state = 4}, + [2282] = {.lex_state = 5, .external_lex_state = 4}, + [2283] = {.lex_state = 4}, + [2284] = {.lex_state = 5, .external_lex_state = 4}, [2285] = {.lex_state = 5, .external_lex_state = 4}, [2286] = {.lex_state = 4}, - [2287] = {.lex_state = 5}, - [2288] = {.lex_state = 131}, - [2289] = {.lex_state = 4}, - [2290] = {.lex_state = 5}, + [2287] = {.lex_state = 4}, + [2288] = {.lex_state = 5}, + [2289] = {.lex_state = 132}, + [2290] = {.lex_state = 6}, [2291] = {.lex_state = 132}, - [2292] = {.lex_state = 5}, - [2293] = {.lex_state = 5}, - [2294] = {.lex_state = 132}, + [2292] = {.lex_state = 4}, + [2293] = {.lex_state = 4}, + [2294] = {.lex_state = 5}, [2295] = {.lex_state = 131}, - [2296] = {.lex_state = 5}, + [2296] = {.lex_state = 131}, [2297] = {.lex_state = 4}, - [2298] = {.lex_state = 6}, - [2299] = {.lex_state = 4}, - [2300] = {.lex_state = 132}, + [2298] = {.lex_state = 132}, + [2299] = {.lex_state = 5}, + [2300] = {.lex_state = 5}, [2301] = {.lex_state = 4}, - [2302] = {.lex_state = 5}, - [2303] = {.lex_state = 4}, - [2304] = {.lex_state = 131}, - [2305] = {.lex_state = 5, .external_lex_state = 4}, - [2306] = {.lex_state = 5, .external_lex_state = 4}, - [2307] = {.lex_state = 131}, - [2308] = {.lex_state = 131}, + [2302] = {.lex_state = 131}, + [2303] = {.lex_state = 5}, + [2304] = {.lex_state = 5}, + [2305] = {.lex_state = 5}, + [2306] = {.lex_state = 4}, + [2307] = {.lex_state = 4}, + [2308] = {.lex_state = 4}, [2309] = {.lex_state = 4}, - [2310] = {.lex_state = 4}, - [2311] = {.lex_state = 131}, + [2310] = {.lex_state = 131}, + [2311] = {.lex_state = 5, .external_lex_state = 4}, [2312] = {.lex_state = 131}, - [2313] = {.lex_state = 4}, - [2314] = {.lex_state = 5, .external_lex_state = 4}, - [2315] = {.lex_state = 4}, - [2316] = {.lex_state = 5, .external_lex_state = 4}, + [2313] = {.lex_state = 131}, + [2314] = {.lex_state = 131}, + [2315] = {.lex_state = 6, .external_lex_state = 4}, + [2316] = {.lex_state = 5}, [2317] = {.lex_state = 5}, - [2318] = {.lex_state = 131}, - [2319] = {.lex_state = 6, .external_lex_state = 4}, - [2320] = {.lex_state = 5}, - [2321] = {.lex_state = 4}, - [2322] = {.lex_state = 4}, - [2323] = {.lex_state = 131}, - [2324] = {.lex_state = 5}, + [2318] = {.lex_state = 5, .external_lex_state = 4}, + [2319] = {.lex_state = 4}, + [2320] = {.lex_state = 5, .external_lex_state = 4}, + [2321] = {.lex_state = 131}, + [2322] = {.lex_state = 131}, + [2323] = {.lex_state = 4}, + [2324] = {.lex_state = 131}, [2325] = {.lex_state = 131}, - [2326] = {.lex_state = 4}, - [2327] = {.lex_state = 131}, + [2326] = {.lex_state = 5, .external_lex_state = 4}, + [2327] = {.lex_state = 4}, [2328] = {.lex_state = 4}, - [2329] = {.lex_state = 131}, + [2329] = {.lex_state = 4}, [2330] = {.lex_state = 4}, - [2331] = {.lex_state = 131}, + [2331] = {.lex_state = 4}, [2332] = {.lex_state = 131}, - [2333] = {.lex_state = 4}, - [2334] = {.lex_state = 5}, + [2333] = {.lex_state = 6, .external_lex_state = 4}, + [2334] = {.lex_state = 131}, [2335] = {.lex_state = 131}, - [2336] = {.lex_state = 131}, - [2337] = {.lex_state = 5}, - [2338] = {.lex_state = 4}, + [2336] = {.lex_state = 4}, + [2337] = {.lex_state = 131}, + [2338] = {.lex_state = 131}, [2339] = {.lex_state = 4}, [2340] = {.lex_state = 131}, [2341] = {.lex_state = 131}, @@ -19872,177 +19889,177 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2344] = {.lex_state = 131}, [2345] = {.lex_state = 4}, [2346] = {.lex_state = 4}, - [2347] = {.lex_state = 6, .external_lex_state = 4}, - [2348] = {.lex_state = 4}, - [2349] = {.lex_state = 4}, - [2350] = {.lex_state = 5}, - [2351] = {.lex_state = 4}, - [2352] = {.lex_state = 131}, + [2347] = {.lex_state = 131}, + [2348] = {.lex_state = 5}, + [2349] = {.lex_state = 131}, + [2350] = {.lex_state = 4}, + [2351] = {.lex_state = 131}, + [2352] = {.lex_state = 5}, [2353] = {.lex_state = 4}, [2354] = {.lex_state = 4}, - [2355] = {.lex_state = 131}, + [2355] = {.lex_state = 4}, [2356] = {.lex_state = 6, .external_lex_state = 4}, - [2357] = {.lex_state = 5}, - [2358] = {.lex_state = 4}, - [2359] = {.lex_state = 4}, + [2357] = {.lex_state = 4}, + [2358] = {.lex_state = 131}, + [2359] = {.lex_state = 131}, [2360] = {.lex_state = 4}, [2361] = {.lex_state = 4}, - [2362] = {.lex_state = 4}, - [2363] = {.lex_state = 4}, + [2362] = {.lex_state = 5}, + [2363] = {.lex_state = 5}, [2364] = {.lex_state = 4}, [2365] = {.lex_state = 131}, - [2366] = {.lex_state = 131}, + [2366] = {.lex_state = 4}, [2367] = {.lex_state = 131}, - [2368] = {.lex_state = 131}, - [2369] = {.lex_state = 131}, + [2368] = {.lex_state = 4}, + [2369] = {.lex_state = 4}, [2370] = {.lex_state = 4}, [2371] = {.lex_state = 132}, [2372] = {.lex_state = 6}, - [2373] = {.lex_state = 132}, - [2374] = {.lex_state = 4}, - [2375] = {.lex_state = 132}, - [2376] = {.lex_state = 6}, + [2373] = {.lex_state = 6}, + [2374] = {.lex_state = 6}, + [2375] = {.lex_state = 4}, + [2376] = {.lex_state = 4}, [2377] = {.lex_state = 6}, [2378] = {.lex_state = 6}, - [2379] = {.lex_state = 4}, - [2380] = {.lex_state = 4}, + [2379] = {.lex_state = 132}, + [2380] = {.lex_state = 131}, [2381] = {.lex_state = 4}, [2382] = {.lex_state = 6}, - [2383] = {.lex_state = 131}, - [2384] = {.lex_state = 6}, + [2383] = {.lex_state = 4}, + [2384] = {.lex_state = 132}, [2385] = {.lex_state = 6}, - [2386] = {.lex_state = 131}, - [2387] = {.lex_state = 131, .external_lex_state = 4}, + [2386] = {.lex_state = 4}, + [2387] = {.lex_state = 4}, [2388] = {.lex_state = 4}, [2389] = {.lex_state = 4}, - [2390] = {.lex_state = 4}, - [2391] = {.lex_state = 131}, + [2390] = {.lex_state = 131, .external_lex_state = 4}, + [2391] = {.lex_state = 4}, [2392] = {.lex_state = 4}, - [2393] = {.lex_state = 131}, - [2394] = {.lex_state = 131, .external_lex_state = 4}, - [2395] = {.lex_state = 131, .external_lex_state = 4}, + [2393] = {.lex_state = 132}, + [2394] = {.lex_state = 6}, + [2395] = {.lex_state = 131}, [2396] = {.lex_state = 131}, - [2397] = {.lex_state = 131}, - [2398] = {.lex_state = 6}, - [2399] = {.lex_state = 4}, + [2397] = {.lex_state = 4}, + [2398] = {.lex_state = 131}, + [2399] = {.lex_state = 131}, [2400] = {.lex_state = 4}, [2401] = {.lex_state = 4}, - [2402] = {.lex_state = 4}, - [2403] = {.lex_state = 131, .external_lex_state = 4}, - [2404] = {.lex_state = 6}, - [2405] = {.lex_state = 6}, + [2402] = {.lex_state = 5}, + [2403] = {.lex_state = 131}, + [2404] = {.lex_state = 4}, + [2405] = {.lex_state = 131}, [2406] = {.lex_state = 4}, - [2407] = {.lex_state = 5}, + [2407] = {.lex_state = 131}, [2408] = {.lex_state = 131}, - [2409] = {.lex_state = 131}, - [2410] = {.lex_state = 4}, - [2411] = {.lex_state = 4}, - [2412] = {.lex_state = 131, .external_lex_state = 4}, - [2413] = {.lex_state = 4}, + [2409] = {.lex_state = 4}, + [2410] = {.lex_state = 131}, + [2411] = {.lex_state = 131}, + [2412] = {.lex_state = 131}, + [2413] = {.lex_state = 131}, [2414] = {.lex_state = 4}, - [2415] = {.lex_state = 132}, - [2416] = {.lex_state = 131}, - [2417] = {.lex_state = 131}, + [2415] = {.lex_state = 131}, + [2416] = {.lex_state = 131, .external_lex_state = 4}, + [2417] = {.lex_state = 6}, [2418] = {.lex_state = 131}, - [2419] = {.lex_state = 4}, - [2420] = {.lex_state = 131}, + [2419] = {.lex_state = 131}, + [2420] = {.lex_state = 131, .external_lex_state = 4}, [2421] = {.lex_state = 131}, - [2422] = {.lex_state = 131}, + [2422] = {.lex_state = 131, .external_lex_state = 4}, [2423] = {.lex_state = 131}, [2424] = {.lex_state = 131}, [2425] = {.lex_state = 131}, - [2426] = {.lex_state = 131}, + [2426] = {.lex_state = 4}, [2427] = {.lex_state = 131}, [2428] = {.lex_state = 131}, - [2429] = {.lex_state = 131}, + [2429] = {.lex_state = 131, .external_lex_state = 4}, [2430] = {.lex_state = 4}, - [2431] = {.lex_state = 131, .external_lex_state = 4}, + [2431] = {.lex_state = 131}, [2432] = {.lex_state = 131}, - [2433] = {.lex_state = 4}, - [2434] = {.lex_state = 131}, - [2435] = {.lex_state = 131}, + [2433] = {.lex_state = 6}, + [2434] = {.lex_state = 131, .external_lex_state = 4}, + [2435] = {.lex_state = 4}, [2436] = {.lex_state = 5}, [2437] = {.lex_state = 5}, - [2438] = {.lex_state = 6}, + [2438] = {.lex_state = 5}, [2439] = {.lex_state = 5}, - [2440] = {.lex_state = 5}, - [2441] = {.lex_state = 131}, - [2442] = {.lex_state = 6}, - [2443] = {.lex_state = 6}, + [2440] = {.lex_state = 131}, + [2441] = {.lex_state = 6}, + [2442] = {.lex_state = 131}, + [2443] = {.lex_state = 5}, [2444] = {.lex_state = 6}, - [2445] = {.lex_state = 6}, - [2446] = {.lex_state = 6}, - [2447] = {.lex_state = 5}, - [2448] = {.lex_state = 5}, - [2449] = {.lex_state = 5}, - [2450] = {.lex_state = 5}, + [2445] = {.lex_state = 131}, + [2446] = {.lex_state = 131}, + [2447] = {.lex_state = 131}, + [2448] = {.lex_state = 131}, + [2449] = {.lex_state = 131}, + [2450] = {.lex_state = 131}, [2451] = {.lex_state = 6}, [2452] = {.lex_state = 5}, - [2453] = {.lex_state = 131}, - [2454] = {.lex_state = 131}, + [2453] = {.lex_state = 5}, + [2454] = {.lex_state = 5}, [2455] = {.lex_state = 5}, - [2456] = {.lex_state = 131}, + [2456] = {.lex_state = 5}, [2457] = {.lex_state = 5}, [2458] = {.lex_state = 5}, - [2459] = {.lex_state = 5}, - [2460] = {.lex_state = 5}, + [2459] = {.lex_state = 6}, + [2460] = {.lex_state = 131}, [2461] = {.lex_state = 131}, - [2462] = {.lex_state = 131}, - [2463] = {.lex_state = 131}, - [2464] = {.lex_state = 5}, - [2465] = {.lex_state = 131}, - [2466] = {.lex_state = 5}, + [2462] = {.lex_state = 6}, + [2463] = {.lex_state = 5}, + [2464] = {.lex_state = 131}, + [2465] = {.lex_state = 5}, + [2466] = {.lex_state = 6}, [2467] = {.lex_state = 5}, - [2468] = {.lex_state = 131}, - [2469] = {.lex_state = 131}, + [2468] = {.lex_state = 6}, + [2469] = {.lex_state = 5}, [2470] = {.lex_state = 6}, [2471] = {.lex_state = 5}, - [2472] = {.lex_state = 131}, + [2472] = {.lex_state = 5}, [2473] = {.lex_state = 131}, - [2474] = {.lex_state = 131}, + [2474] = {.lex_state = 5}, [2475] = {.lex_state = 131}, - [2476] = {.lex_state = 5}, - [2477] = {.lex_state = 131}, + [2476] = {.lex_state = 131}, + [2477] = {.lex_state = 5}, [2478] = {.lex_state = 131}, - [2479] = {.lex_state = 131}, - [2480] = {.lex_state = 5}, + [2479] = {.lex_state = 5}, + [2480] = {.lex_state = 131}, [2481] = {.lex_state = 131}, [2482] = {.lex_state = 131}, - [2483] = {.lex_state = 5}, - [2484] = {.lex_state = 5}, + [2483] = {.lex_state = 131}, + [2484] = {.lex_state = 131}, [2485] = {.lex_state = 131}, [2486] = {.lex_state = 131}, - [2487] = {.lex_state = 131}, + [2487] = {.lex_state = 5}, [2488] = {.lex_state = 131}, [2489] = {.lex_state = 131}, - [2490] = {.lex_state = 5}, + [2490] = {.lex_state = 131}, [2491] = {.lex_state = 5}, - [2492] = {.lex_state = 131}, + [2492] = {.lex_state = 5}, [2493] = {.lex_state = 131}, [2494] = {.lex_state = 131}, [2495] = {.lex_state = 5}, [2496] = {.lex_state = 131}, [2497] = {.lex_state = 131}, - [2498] = {.lex_state = 5}, + [2498] = {.lex_state = 131}, [2499] = {.lex_state = 131}, - [2500] = {.lex_state = 131}, + [2500] = {.lex_state = 5}, [2501] = {.lex_state = 131}, - [2502] = {.lex_state = 5}, - [2503] = {.lex_state = 131}, + [2502] = {.lex_state = 131}, + [2503] = {.lex_state = 5}, [2504] = {.lex_state = 131}, - [2505] = {.lex_state = 6}, + [2505] = {.lex_state = 131}, [2506] = {.lex_state = 131}, - [2507] = {.lex_state = 131, .external_lex_state = 4}, + [2507] = {.lex_state = 131}, [2508] = {.lex_state = 131}, - [2509] = {.lex_state = 132}, - [2510] = {.lex_state = 131, .external_lex_state = 4}, - [2511] = {.lex_state = 131, .external_lex_state = 4}, - [2512] = {.lex_state = 131}, - [2513] = {.lex_state = 131}, + [2509] = {.lex_state = 131}, + [2510] = {.lex_state = 132}, + [2511] = {.lex_state = 131}, + [2512] = {.lex_state = 6}, + [2513] = {.lex_state = 6}, [2514] = {.lex_state = 131}, - [2515] = {.lex_state = 131}, - [2516] = {.lex_state = 131}, - [2517] = {.lex_state = 6}, + [2515] = {.lex_state = 6}, + [2516] = {.lex_state = 131, .external_lex_state = 4}, + [2517] = {.lex_state = 131, .external_lex_state = 4}, [2518] = {.lex_state = 131}, [2519] = {.lex_state = 131}, [2520] = {.lex_state = 6}, @@ -20052,25 +20069,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2524] = {.lex_state = 131}, [2525] = {.lex_state = 131}, [2526] = {.lex_state = 131}, - [2527] = {.lex_state = 6}, + [2527] = {.lex_state = 131, .external_lex_state = 4}, [2528] = {.lex_state = 131}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 6}, + [2529] = {.lex_state = 131, .external_lex_state = 4}, + [2530] = {.lex_state = 131}, [2531] = {.lex_state = 131}, - [2532] = {.lex_state = 131}, - [2533] = {.lex_state = 132}, + [2532] = {.lex_state = 132}, + [2533] = {.lex_state = 131}, [2534] = {.lex_state = 131}, [2535] = {.lex_state = 131}, [2536] = {.lex_state = 131}, [2537] = {.lex_state = 131}, - [2538] = {.lex_state = 131, .external_lex_state = 4}, - [2539] = {.lex_state = 131}, + [2538] = {.lex_state = 6}, + [2539] = {.lex_state = 6}, [2540] = {.lex_state = 131}, - [2541] = {.lex_state = 131, .external_lex_state = 4}, + [2541] = {.lex_state = 132}, [2542] = {.lex_state = 132}, [2543] = {.lex_state = 131}, - [2544] = {.lex_state = 131}, - [2545] = {.lex_state = 131}, + [2544] = {.lex_state = 131, .external_lex_state = 4}, + [2545] = {.lex_state = 132}, [2546] = {.lex_state = 132}, [2547] = {.lex_state = 132}, [2548] = {.lex_state = 132}, @@ -20078,42 +20095,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2550] = {.lex_state = 132}, [2551] = {.lex_state = 132}, [2552] = {.lex_state = 132}, - [2553] = {.lex_state = 132}, + [2553] = {.lex_state = 131, .external_lex_state = 4}, [2554] = {.lex_state = 132}, [2555] = {.lex_state = 132}, [2556] = {.lex_state = 132}, [2557] = {.lex_state = 132}, [2558] = {.lex_state = 132}, - [2559] = {.lex_state = 132}, - [2560] = {.lex_state = 132}, + [2559] = {.lex_state = 131}, + [2560] = {.lex_state = 131}, [2561] = {.lex_state = 132}, - [2562] = {.lex_state = 131, .external_lex_state = 4}, + [2562] = {.lex_state = 132}, [2563] = {.lex_state = 132}, - [2564] = {.lex_state = 131}, + [2564] = {.lex_state = 132}, [2565] = {.lex_state = 132}, [2566] = {.lex_state = 132}, [2567] = {.lex_state = 132}, - [2568] = {.lex_state = 132}, - [2569] = {.lex_state = 131}, + [2568] = {.lex_state = 131}, + [2569] = {.lex_state = 131, .external_lex_state = 4}, [2570] = {.lex_state = 131, .external_lex_state = 4}, [2571] = {.lex_state = 131, .external_lex_state = 4}, [2572] = {.lex_state = 131, .external_lex_state = 4}, - [2573] = {.lex_state = 131, .external_lex_state = 4}, + [2573] = {.lex_state = 131}, [2574] = {.lex_state = 131}, [2575] = {.lex_state = 131}, - [2576] = {.lex_state = 132}, - [2577] = {.lex_state = 131, .external_lex_state = 4}, - [2578] = {.lex_state = 131, .external_lex_state = 4}, + [2576] = {.lex_state = 6}, + [2577] = {.lex_state = 131}, + [2578] = {.lex_state = 131}, [2579] = {.lex_state = 131, .external_lex_state = 4}, - [2580] = {.lex_state = 131}, - [2581] = {.lex_state = 131}, - [2582] = {.lex_state = 131, .external_lex_state = 4}, + [2580] = {.lex_state = 131, .external_lex_state = 4}, + [2581] = {.lex_state = 132}, + [2582] = {.lex_state = 131}, [2583] = {.lex_state = 131, .external_lex_state = 4}, - [2584] = {.lex_state = 131}, + [2584] = {.lex_state = 131, .external_lex_state = 4}, [2585] = {.lex_state = 131, .external_lex_state = 4}, [2586] = {.lex_state = 131, .external_lex_state = 4}, [2587] = {.lex_state = 131, .external_lex_state = 4}, - [2588] = {.lex_state = 6}, + [2588] = {.lex_state = 131, .external_lex_state = 4}, [2589] = {.lex_state = 131}, [2590] = {.lex_state = 131}, [2591] = {.lex_state = 131}, @@ -20124,368 +20141,368 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2596] = {.lex_state = 131}, [2597] = {.lex_state = 131}, [2598] = {.lex_state = 131}, - [2599] = {.lex_state = 131}, - [2600] = {.lex_state = 5}, + [2599] = {.lex_state = 5}, + [2600] = {.lex_state = 131}, [2601] = {.lex_state = 131}, - [2602] = {.lex_state = 131}, + [2602] = {.lex_state = 6, .external_lex_state = 4}, [2603] = {.lex_state = 131}, [2604] = {.lex_state = 5}, - [2605] = {.lex_state = 131}, + [2605] = {.lex_state = 132}, [2606] = {.lex_state = 131}, [2607] = {.lex_state = 131}, [2608] = {.lex_state = 131}, [2609] = {.lex_state = 131}, [2610] = {.lex_state = 131}, [2611] = {.lex_state = 131}, - [2612] = {.lex_state = 6, .external_lex_state = 4}, + [2612] = {.lex_state = 131}, [2613] = {.lex_state = 131}, [2614] = {.lex_state = 132}, - [2615] = {.lex_state = 132}, - [2616] = {.lex_state = 131}, - [2617] = {.lex_state = 131}, + [2615] = {.lex_state = 131}, + [2616] = {.lex_state = 5}, + [2617] = {.lex_state = 132}, [2618] = {.lex_state = 131}, [2619] = {.lex_state = 131}, [2620] = {.lex_state = 131}, - [2621] = {.lex_state = 132}, - [2622] = {.lex_state = 5}, - [2623] = {.lex_state = 131}, + [2621] = {.lex_state = 131}, + [2622] = {.lex_state = 131}, + [2623] = {.lex_state = 5}, [2624] = {.lex_state = 131}, - [2625] = {.lex_state = 131}, + [2625] = {.lex_state = 5}, [2626] = {.lex_state = 5}, - [2627] = {.lex_state = 131}, + [2627] = {.lex_state = 5}, [2628] = {.lex_state = 131}, - [2629] = {.lex_state = 6, .external_lex_state = 4}, + [2629] = {.lex_state = 5}, [2630] = {.lex_state = 131}, - [2631] = {.lex_state = 131, .external_lex_state = 4}, + [2631] = {.lex_state = 5}, [2632] = {.lex_state = 131}, - [2633] = {.lex_state = 131}, - [2634] = {.lex_state = 131}, + [2633] = {.lex_state = 5}, + [2634] = {.lex_state = 5}, [2635] = {.lex_state = 131}, [2636] = {.lex_state = 5}, - [2637] = {.lex_state = 5}, - [2638] = {.lex_state = 131}, - [2639] = {.lex_state = 5}, + [2637] = {.lex_state = 131}, + [2638] = {.lex_state = 5}, + [2639] = {.lex_state = 132}, [2640] = {.lex_state = 131}, - [2641] = {.lex_state = 6, .external_lex_state = 4}, + [2641] = {.lex_state = 5}, [2642] = {.lex_state = 131}, - [2643] = {.lex_state = 132}, - [2644] = {.lex_state = 132}, + [2643] = {.lex_state = 131}, + [2644] = {.lex_state = 131, .external_lex_state = 4}, [2645] = {.lex_state = 5}, [2646] = {.lex_state = 5}, - [2647] = {.lex_state = 5}, + [2647] = {.lex_state = 6, .external_lex_state = 4}, [2648] = {.lex_state = 5}, - [2649] = {.lex_state = 131}, - [2650] = {.lex_state = 6, .external_lex_state = 4}, - [2651] = {.lex_state = 131}, - [2652] = {.lex_state = 131}, + [2649] = {.lex_state = 132}, + [2650] = {.lex_state = 131}, + [2651] = {.lex_state = 132}, + [2652] = {.lex_state = 6, .external_lex_state = 4}, [2653] = {.lex_state = 5}, [2654] = {.lex_state = 131}, [2655] = {.lex_state = 5}, - [2656] = {.lex_state = 5}, - [2657] = {.lex_state = 132}, - [2658] = {.lex_state = 5}, + [2656] = {.lex_state = 131, .external_lex_state = 4}, + [2657] = {.lex_state = 6, .external_lex_state = 4}, + [2658] = {.lex_state = 131}, [2659] = {.lex_state = 131}, [2660] = {.lex_state = 131}, - [2661] = {.lex_state = 131, .external_lex_state = 4}, - [2662] = {.lex_state = 5}, + [2661] = {.lex_state = 131}, + [2662] = {.lex_state = 131}, [2663] = {.lex_state = 132}, - [2664] = {.lex_state = 131, .external_lex_state = 4}, - [2665] = {.lex_state = 132}, + [2664] = {.lex_state = 5}, + [2665] = {.lex_state = 5}, [2666] = {.lex_state = 131}, [2667] = {.lex_state = 131}, [2668] = {.lex_state = 131}, - [2669] = {.lex_state = 5}, - [2670] = {.lex_state = 132}, - [2671] = {.lex_state = 5}, + [2669] = {.lex_state = 132}, + [2670] = {.lex_state = 5}, + [2671] = {.lex_state = 131}, [2672] = {.lex_state = 131}, - [2673] = {.lex_state = 131}, - [2674] = {.lex_state = 5}, + [2673] = {.lex_state = 131, .external_lex_state = 4}, + [2674] = {.lex_state = 132}, [2675] = {.lex_state = 131}, [2676] = {.lex_state = 131}, - [2677] = {.lex_state = 132}, - [2678] = {.lex_state = 131}, - [2679] = {.lex_state = 5}, - [2680] = {.lex_state = 5}, - [2681] = {.lex_state = 5}, - [2682] = {.lex_state = 132}, - [2683] = {.lex_state = 5}, - [2684] = {.lex_state = 5}, + [2677] = {.lex_state = 5}, + [2678] = {.lex_state = 132}, + [2679] = {.lex_state = 131}, + [2680] = {.lex_state = 131}, + [2681] = {.lex_state = 131}, + [2682] = {.lex_state = 5}, + [2683] = {.lex_state = 131}, + [2684] = {.lex_state = 132}, [2685] = {.lex_state = 132}, - [2686] = {.lex_state = 131}, + [2686] = {.lex_state = 132}, [2687] = {.lex_state = 132}, - [2688] = {.lex_state = 131, .external_lex_state = 4}, - [2689] = {.lex_state = 5}, - [2690] = {.lex_state = 131}, - [2691] = {.lex_state = 132}, - [2692] = {.lex_state = 131}, + [2688] = {.lex_state = 132}, + [2689] = {.lex_state = 132}, + [2690] = {.lex_state = 132}, + [2691] = {.lex_state = 131}, + [2692] = {.lex_state = 5}, [2693] = {.lex_state = 132}, - [2694] = {.lex_state = 131, .external_lex_state = 4}, + [2694] = {.lex_state = 132}, [2695] = {.lex_state = 132}, - [2696] = {.lex_state = 131}, - [2697] = {.lex_state = 132}, - [2698] = {.lex_state = 132}, - [2699] = {.lex_state = 132}, - [2700] = {.lex_state = 132}, - [2701] = {.lex_state = 131}, + [2696] = {.lex_state = 132}, + [2697] = {.lex_state = 131}, + [2698] = {.lex_state = 131}, + [2699] = {.lex_state = 131}, + [2700] = {.lex_state = 5}, + [2701] = {.lex_state = 131, .external_lex_state = 4}, [2702] = {.lex_state = 132}, [2703] = {.lex_state = 132}, [2704] = {.lex_state = 132}, - [2705] = {.lex_state = 132}, - [2706] = {.lex_state = 131, .external_lex_state = 4}, - [2707] = {.lex_state = 132}, + [2705] = {.lex_state = 131}, + [2706] = {.lex_state = 5}, + [2707] = {.lex_state = 131, .external_lex_state = 4}, [2708] = {.lex_state = 132}, [2709] = {.lex_state = 132}, - [2710] = {.lex_state = 132}, - [2711] = {.lex_state = 132}, - [2712] = {.lex_state = 132}, + [2710] = {.lex_state = 131, .external_lex_state = 4}, + [2711] = {.lex_state = 5}, + [2712] = {.lex_state = 5}, [2713] = {.lex_state = 131, .external_lex_state = 4}, - [2714] = {.lex_state = 132}, + [2714] = {.lex_state = 131, .external_lex_state = 4}, [2715] = {.lex_state = 131, .external_lex_state = 4}, - [2716] = {.lex_state = 132}, - [2717] = {.lex_state = 132}, - [2718] = {.lex_state = 131, .external_lex_state = 4}, - [2719] = {.lex_state = 132}, - [2720] = {.lex_state = 132}, - [2721] = {.lex_state = 131}, - [2722] = {.lex_state = 131}, - [2723] = {.lex_state = 131}, - [2724] = {.lex_state = 132}, + [2716] = {.lex_state = 131, .external_lex_state = 4}, + [2717] = {.lex_state = 131, .external_lex_state = 4}, + [2718] = {.lex_state = 5}, + [2719] = {.lex_state = 131, .external_lex_state = 4}, + [2720] = {.lex_state = 5}, + [2721] = {.lex_state = 131, .external_lex_state = 4}, + [2722] = {.lex_state = 132}, + [2723] = {.lex_state = 132}, + [2724] = {.lex_state = 5}, [2725] = {.lex_state = 132}, - [2726] = {.lex_state = 131, .external_lex_state = 4}, - [2727] = {.lex_state = 131, .external_lex_state = 4}, - [2728] = {.lex_state = 132}, + [2726] = {.lex_state = 132}, + [2727] = {.lex_state = 5}, + [2728] = {.lex_state = 5}, [2729] = {.lex_state = 132}, [2730] = {.lex_state = 132}, [2731] = {.lex_state = 132}, - [2732] = {.lex_state = 131}, + [2732] = {.lex_state = 131, .external_lex_state = 4}, [2733] = {.lex_state = 132}, [2734] = {.lex_state = 132}, [2735] = {.lex_state = 132}, - [2736] = {.lex_state = 131}, - [2737] = {.lex_state = 131}, - [2738] = {.lex_state = 132}, - [2739] = {.lex_state = 132}, + [2736] = {.lex_state = 132}, + [2737] = {.lex_state = 131, .external_lex_state = 4}, + [2738] = {.lex_state = 131, .external_lex_state = 4}, + [2739] = {.lex_state = 5}, [2740] = {.lex_state = 132}, - [2741] = {.lex_state = 132}, - [2742] = {.lex_state = 132}, + [2741] = {.lex_state = 131, .external_lex_state = 4}, + [2742] = {.lex_state = 131, .external_lex_state = 4}, [2743] = {.lex_state = 132}, - [2744] = {.lex_state = 131}, - [2745] = {.lex_state = 132}, + [2744] = {.lex_state = 132}, + [2745] = {.lex_state = 5}, [2746] = {.lex_state = 131, .external_lex_state = 4}, [2747] = {.lex_state = 131}, [2748] = {.lex_state = 131, .external_lex_state = 4}, - [2749] = {.lex_state = 131}, - [2750] = {.lex_state = 131, .external_lex_state = 4}, - [2751] = {.lex_state = 131, .external_lex_state = 4}, + [2749] = {.lex_state = 132}, + [2750] = {.lex_state = 132}, + [2751] = {.lex_state = 132}, [2752] = {.lex_state = 132}, - [2753] = {.lex_state = 132}, + [2753] = {.lex_state = 131}, [2754] = {.lex_state = 132}, [2755] = {.lex_state = 132}, - [2756] = {.lex_state = 131, .external_lex_state = 4}, + [2756] = {.lex_state = 132}, [2757] = {.lex_state = 132}, [2758] = {.lex_state = 132}, - [2759] = {.lex_state = 132}, + [2759] = {.lex_state = 131, .external_lex_state = 4}, [2760] = {.lex_state = 132}, [2761] = {.lex_state = 132}, - [2762] = {.lex_state = 5}, + [2762] = {.lex_state = 132}, [2763] = {.lex_state = 132}, - [2764] = {.lex_state = 132}, + [2764] = {.lex_state = 131}, [2765] = {.lex_state = 132}, [2766] = {.lex_state = 132}, - [2767] = {.lex_state = 132}, + [2767] = {.lex_state = 5}, [2768] = {.lex_state = 132}, [2769] = {.lex_state = 132}, - [2770] = {.lex_state = 131, .external_lex_state = 4}, - [2771] = {.lex_state = 132}, - [2772] = {.lex_state = 5}, + [2770] = {.lex_state = 132}, + [2771] = {.lex_state = 131}, + [2772] = {.lex_state = 132}, [2773] = {.lex_state = 132}, - [2774] = {.lex_state = 132}, - [2775] = {.lex_state = 132}, + [2774] = {.lex_state = 131}, + [2775] = {.lex_state = 131}, [2776] = {.lex_state = 132}, - [2777] = {.lex_state = 132}, - [2778] = {.lex_state = 132}, + [2777] = {.lex_state = 131}, + [2778] = {.lex_state = 131, .external_lex_state = 4}, [2779] = {.lex_state = 132}, [2780] = {.lex_state = 132}, [2781] = {.lex_state = 132}, - [2782] = {.lex_state = 132}, + [2782] = {.lex_state = 131}, [2783] = {.lex_state = 132}, [2784] = {.lex_state = 132}, - [2785] = {.lex_state = 131, .external_lex_state = 4}, + [2785] = {.lex_state = 132}, [2786] = {.lex_state = 132}, - [2787] = {.lex_state = 5}, - [2788] = {.lex_state = 131}, - [2789] = {.lex_state = 131}, - [2790] = {.lex_state = 131, .external_lex_state = 4}, + [2787] = {.lex_state = 132}, + [2788] = {.lex_state = 132}, + [2789] = {.lex_state = 132}, + [2790] = {.lex_state = 132}, [2791] = {.lex_state = 132}, - [2792] = {.lex_state = 131, .external_lex_state = 4}, - [2793] = {.lex_state = 131}, + [2792] = {.lex_state = 132}, + [2793] = {.lex_state = 132}, [2794] = {.lex_state = 132}, [2795] = {.lex_state = 132}, - [2796] = {.lex_state = 131}, - [2797] = {.lex_state = 131}, - [2798] = {.lex_state = 131, .external_lex_state = 4}, + [2796] = {.lex_state = 132}, + [2797] = {.lex_state = 132}, + [2798] = {.lex_state = 131}, [2799] = {.lex_state = 132}, - [2800] = {.lex_state = 5}, - [2801] = {.lex_state = 131}, - [2802] = {.lex_state = 131, .external_lex_state = 4}, - [2803] = {.lex_state = 131, .external_lex_state = 4}, - [2804] = {.lex_state = 131}, - [2805] = {.lex_state = 132}, - [2806] = {.lex_state = 132}, - [2807] = {.lex_state = 131}, + [2800] = {.lex_state = 132}, + [2801] = {.lex_state = 132}, + [2802] = {.lex_state = 131}, + [2803] = {.lex_state = 132}, + [2804] = {.lex_state = 132}, + [2805] = {.lex_state = 5}, + [2806] = {.lex_state = 131}, + [2807] = {.lex_state = 132}, [2808] = {.lex_state = 132}, [2809] = {.lex_state = 131, .external_lex_state = 4}, [2810] = {.lex_state = 131, .external_lex_state = 4}, - [2811] = {.lex_state = 5}, - [2812] = {.lex_state = 131}, - [2813] = {.lex_state = 5}, - [2814] = {.lex_state = 131, .external_lex_state = 4}, + [2811] = {.lex_state = 131, .external_lex_state = 4}, + [2812] = {.lex_state = 132}, + [2813] = {.lex_state = 131, .external_lex_state = 4}, + [2814] = {.lex_state = 132}, [2815] = {.lex_state = 132}, - [2816] = {.lex_state = 5}, + [2816] = {.lex_state = 131, .external_lex_state = 4}, [2817] = {.lex_state = 131, .external_lex_state = 4}, - [2818] = {.lex_state = 5}, - [2819] = {.lex_state = 131, .external_lex_state = 4}, + [2818] = {.lex_state = 132}, + [2819] = {.lex_state = 132}, [2820] = {.lex_state = 131}, - [2821] = {.lex_state = 132}, - [2822] = {.lex_state = 131}, - [2823] = {.lex_state = 131, .external_lex_state = 4}, - [2824] = {.lex_state = 5}, - [2825] = {.lex_state = 131, .external_lex_state = 4}, - [2826] = {.lex_state = 131}, - [2827] = {.lex_state = 5}, - [2828] = {.lex_state = 131, .external_lex_state = 4}, + [2821] = {.lex_state = 131}, + [2822] = {.lex_state = 132}, + [2823] = {.lex_state = 132}, + [2824] = {.lex_state = 131}, + [2825] = {.lex_state = 131}, + [2826] = {.lex_state = 132}, + [2827] = {.lex_state = 132}, + [2828] = {.lex_state = 132}, [2829] = {.lex_state = 131, .external_lex_state = 4}, - [2830] = {.lex_state = 132}, - [2831] = {.lex_state = 131, .external_lex_state = 4}, - [2832] = {.lex_state = 131, .external_lex_state = 4}, - [2833] = {.lex_state = 131, .external_lex_state = 4}, - [2834] = {.lex_state = 132}, + [2830] = {.lex_state = 131}, + [2831] = {.lex_state = 131}, + [2832] = {.lex_state = 132}, + [2833] = {.lex_state = 132}, + [2834] = {.lex_state = 131}, [2835] = {.lex_state = 131}, - [2836] = {.lex_state = 131, .external_lex_state = 4}, - [2837] = {.lex_state = 131, .external_lex_state = 4}, - [2838] = {.lex_state = 5}, + [2836] = {.lex_state = 132}, + [2837] = {.lex_state = 132}, + [2838] = {.lex_state = 132}, [2839] = {.lex_state = 132}, - [2840] = {.lex_state = 131}, - [2841] = {.lex_state = 5}, + [2840] = {.lex_state = 131, .external_lex_state = 4}, + [2841] = {.lex_state = 131}, [2842] = {.lex_state = 132}, [2843] = {.lex_state = 131}, - [2844] = {.lex_state = 132}, - [2845] = {.lex_state = 132}, - [2846] = {.lex_state = 132}, - [2847] = {.lex_state = 132}, - [2848] = {.lex_state = 132}, - [2849] = {.lex_state = 132}, + [2844] = {.lex_state = 131}, + [2845] = {.lex_state = 131}, + [2846] = {.lex_state = 131, .external_lex_state = 4}, + [2847] = {.lex_state = 5}, + [2848] = {.lex_state = 131, .external_lex_state = 4}, + [2849] = {.lex_state = 131, .external_lex_state = 4}, [2850] = {.lex_state = 132}, [2851] = {.lex_state = 132}, [2852] = {.lex_state = 132}, - [2853] = {.lex_state = 131}, + [2853] = {.lex_state = 132}, [2854] = {.lex_state = 132}, - [2855] = {.lex_state = 132}, - [2856] = {.lex_state = 5}, - [2857] = {.lex_state = 131}, - [2858] = {.lex_state = 132}, - [2859] = {.lex_state = 131}, - [2860] = {.lex_state = 131}, + [2855] = {.lex_state = 131, .external_lex_state = 4}, + [2856] = {.lex_state = 131, .external_lex_state = 4}, + [2857] = {.lex_state = 131, .external_lex_state = 4}, + [2858] = {.lex_state = 131}, + [2859] = {.lex_state = 131, .external_lex_state = 4}, + [2860] = {.lex_state = 132}, [2861] = {.lex_state = 131}, [2862] = {.lex_state = 131}, - [2863] = {.lex_state = 132}, + [2863] = {.lex_state = 131}, [2864] = {.lex_state = 132}, [2865] = {.lex_state = 131, .external_lex_state = 4}, - [2866] = {.lex_state = 5}, + [2866] = {.lex_state = 132}, [2867] = {.lex_state = 132}, - [2868] = {.lex_state = 5}, - [2869] = {.lex_state = 131, .external_lex_state = 4}, - [2870] = {.lex_state = 132}, - [2871] = {.lex_state = 131}, + [2868] = {.lex_state = 132}, + [2869] = {.lex_state = 132}, + [2870] = {.lex_state = 5}, + [2871] = {.lex_state = 131, .external_lex_state = 4}, [2872] = {.lex_state = 132}, - [2873] = {.lex_state = 132}, - [2874] = {.lex_state = 132}, - [2875] = {.lex_state = 132}, + [2873] = {.lex_state = 131}, + [2874] = {.lex_state = 131}, + [2875] = {.lex_state = 131}, [2876] = {.lex_state = 131}, - [2877] = {.lex_state = 132}, - [2878] = {.lex_state = 132}, - [2879] = {.lex_state = 132}, - [2880] = {.lex_state = 132}, + [2877] = {.lex_state = 131, .external_lex_state = 4}, + [2878] = {.lex_state = 131}, + [2879] = {.lex_state = 131}, + [2880] = {.lex_state = 131}, [2881] = {.lex_state = 131}, [2882] = {.lex_state = 132}, - [2883] = {.lex_state = 131}, - [2884] = {.lex_state = 131}, - [2885] = {.lex_state = 131, .external_lex_state = 4}, - [2886] = {.lex_state = 131, .external_lex_state = 4}, + [2883] = {.lex_state = 132}, + [2884] = {.lex_state = 132}, + [2885] = {.lex_state = 132}, + [2886] = {.lex_state = 132}, [2887] = {.lex_state = 131, .external_lex_state = 4}, [2888] = {.lex_state = 132}, [2889] = {.lex_state = 131, .external_lex_state = 4}, - [2890] = {.lex_state = 132}, + [2890] = {.lex_state = 131, .external_lex_state = 4}, [2891] = {.lex_state = 131, .external_lex_state = 4}, - [2892] = {.lex_state = 131, .external_lex_state = 4}, + [2892] = {.lex_state = 132}, [2893] = {.lex_state = 132}, [2894] = {.lex_state = 131, .external_lex_state = 4}, - [2895] = {.lex_state = 132}, + [2895] = {.lex_state = 131, .external_lex_state = 4}, [2896] = {.lex_state = 131}, [2897] = {.lex_state = 131}, [2898] = {.lex_state = 131}, [2899] = {.lex_state = 131}, - [2900] = {.lex_state = 131}, - [2901] = {.lex_state = 132}, - [2902] = {.lex_state = 131}, + [2900] = {.lex_state = 132}, + [2901] = {.lex_state = 131}, + [2902] = {.lex_state = 132}, [2903] = {.lex_state = 131}, [2904] = {.lex_state = 131}, - [2905] = {.lex_state = 132}, + [2905] = {.lex_state = 131}, [2906] = {.lex_state = 131}, [2907] = {.lex_state = 132}, - [2908] = {.lex_state = 5}, + [2908] = {.lex_state = 131}, [2909] = {.lex_state = 131}, [2910] = {.lex_state = 131}, [2911] = {.lex_state = 131}, - [2912] = {.lex_state = 131}, + [2912] = {.lex_state = 5}, [2913] = {.lex_state = 132}, [2914] = {.lex_state = 5}, [2915] = {.lex_state = 131}, - [2916] = {.lex_state = 132}, - [2917] = {.lex_state = 132}, - [2918] = {.lex_state = 132}, - [2919] = {.lex_state = 131}, + [2916] = {.lex_state = 131}, + [2917] = {.lex_state = 5}, + [2918] = {.lex_state = 131}, + [2919] = {.lex_state = 132}, [2920] = {.lex_state = 131}, - [2921] = {.lex_state = 131}, - [2922] = {.lex_state = 131}, - [2923] = {.lex_state = 132}, - [2924] = {.lex_state = 132}, - [2925] = {.lex_state = 131}, - [2926] = {.lex_state = 131}, - [2927] = {.lex_state = 132}, - [2928] = {.lex_state = 5}, - [2929] = {.lex_state = 5}, - [2930] = {.lex_state = 131}, + [2921] = {.lex_state = 132}, + [2922] = {.lex_state = 132}, + [2923] = {.lex_state = 131}, + [2924] = {.lex_state = 131}, + [2925] = {.lex_state = 132}, + [2926] = {.lex_state = 132}, + [2927] = {.lex_state = 131}, + [2928] = {.lex_state = 132}, + [2929] = {.lex_state = 131}, + [2930] = {.lex_state = 132}, [2931] = {.lex_state = 131}, [2932] = {.lex_state = 131}, - [2933] = {.lex_state = 132}, - [2934] = {.lex_state = 6}, - [2935] = {.lex_state = 4}, + [2933] = {.lex_state = 5}, + [2934] = {.lex_state = 4}, + [2935] = {.lex_state = 131}, [2936] = {.lex_state = 4}, - [2937] = {.lex_state = 131}, - [2938] = {.lex_state = 131}, - [2939] = {.lex_state = 6}, - [2940] = {.lex_state = 4}, - [2941] = {.lex_state = 131}, + [2937] = {.lex_state = 4}, + [2938] = {.lex_state = 4}, + [2939] = {.lex_state = 131}, + [2940] = {.lex_state = 131}, + [2941] = {.lex_state = 132}, [2942] = {.lex_state = 131}, - [2943] = {.lex_state = 4}, - [2944] = {.lex_state = 131}, - [2945] = {.lex_state = 131}, - [2946] = {.lex_state = 4}, - [2947] = {.lex_state = 131}, + [2943] = {.lex_state = 131}, + [2944] = {.lex_state = 4}, + [2945] = {.lex_state = 4}, + [2946] = {.lex_state = 6}, + [2947] = {.lex_state = 4}, [2948] = {.lex_state = 4}, - [2949] = {.lex_state = 132}, - [2950] = {.lex_state = 4}, + [2949] = {.lex_state = 131}, + [2950] = {.lex_state = 131}, [2951] = {.lex_state = 6}, - [2952] = {.lex_state = 4}, + [2952] = {.lex_state = 6}, [2953] = {.lex_state = 4}, [2954] = {.lex_state = 131}, - [2955] = {.lex_state = 131}, + [2955] = {.lex_state = 4}, [2956] = {.lex_state = 131}, [2957] = {.lex_state = 131}, [2958] = {.lex_state = 131}, [2959] = {.lex_state = 131}, - [2960] = {.lex_state = 131}, + [2960] = {.lex_state = 132}, [2961] = {.lex_state = 131}, [2962] = {.lex_state = 131}, [2963] = {.lex_state = 131}, @@ -20496,24 +20513,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2968] = {.lex_state = 131}, [2969] = {.lex_state = 131}, [2970] = {.lex_state = 131}, - [2971] = {.lex_state = 132}, + [2971] = {.lex_state = 131}, [2972] = {.lex_state = 131}, [2973] = {.lex_state = 131}, [2974] = {.lex_state = 131}, - [2975] = {.lex_state = 131}, + [2975] = {.lex_state = 7}, [2976] = {.lex_state = 131}, - [2977] = {.lex_state = 4}, - [2978] = {.lex_state = 6}, + [2977] = {.lex_state = 131}, + [2978] = {.lex_state = 131}, [2979] = {.lex_state = 131}, - [2980] = {.lex_state = 132}, - [2981] = {.lex_state = 6}, - [2982] = {.lex_state = 7}, - [2983] = {.lex_state = 6}, + [2980] = {.lex_state = 6}, + [2981] = {.lex_state = 131}, + [2982] = {.lex_state = 6}, + [2983] = {.lex_state = 131}, [2984] = {.lex_state = 131}, [2985] = {.lex_state = 131}, [2986] = {.lex_state = 131}, [2987] = {.lex_state = 131}, - [2988] = {.lex_state = 131}, + [2988] = {.lex_state = 6}, [2989] = {.lex_state = 6}, [2990] = {.lex_state = 131}, [2991] = {.lex_state = 131}, @@ -20522,9 +20539,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2994] = {.lex_state = 131}, [2995] = {.lex_state = 131}, [2996] = {.lex_state = 131}, - [2997] = {.lex_state = 131}, + [2997] = {.lex_state = 132}, [2998] = {.lex_state = 131}, - [2999] = {.lex_state = 132}, + [2999] = {.lex_state = 131}, [3000] = {.lex_state = 131}, [3001] = {.lex_state = 131}, [3002] = {.lex_state = 131}, @@ -20549,45 +20566,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3021] = {.lex_state = 131}, [3022] = {.lex_state = 131}, [3023] = {.lex_state = 131}, - [3024] = {.lex_state = 132}, + [3024] = {.lex_state = 131}, [3025] = {.lex_state = 131}, - [3026] = {.lex_state = 132}, + [3026] = {.lex_state = 131}, [3027] = {.lex_state = 131}, [3028] = {.lex_state = 131}, - [3029] = {.lex_state = 131}, + [3029] = {.lex_state = 132}, [3030] = {.lex_state = 131}, - [3031] = {.lex_state = 131}, + [3031] = {.lex_state = 132}, [3032] = {.lex_state = 131}, - [3033] = {.lex_state = 10}, - [3034] = {.lex_state = 131}, + [3033] = {.lex_state = 131}, + [3034] = {.lex_state = 132}, [3035] = {.lex_state = 131}, [3036] = {.lex_state = 131}, [3037] = {.lex_state = 131}, - [3038] = {.lex_state = 131}, + [3038] = {.lex_state = 132}, [3039] = {.lex_state = 131}, - [3040] = {.lex_state = 131}, + [3040] = {.lex_state = 10}, [3041] = {.lex_state = 131}, [3042] = {.lex_state = 131}, - [3043] = {.lex_state = 4}, + [3043] = {.lex_state = 131}, [3044] = {.lex_state = 131}, - [3045] = {.lex_state = 131}, + [3045] = {.lex_state = 132}, [3046] = {.lex_state = 131}, [3047] = {.lex_state = 131}, [3048] = {.lex_state = 131}, [3049] = {.lex_state = 131}, [3050] = {.lex_state = 131}, - [3051] = {.lex_state = 132}, + [3051] = {.lex_state = 131}, [3052] = {.lex_state = 131}, - [3053] = {.lex_state = 131}, + [3053] = {.lex_state = 132}, [3054] = {.lex_state = 131}, [3055] = {.lex_state = 131}, - [3056] = {.lex_state = 132}, + [3056] = {.lex_state = 131}, [3057] = {.lex_state = 131}, [3058] = {.lex_state = 131}, [3059] = {.lex_state = 131}, [3060] = {.lex_state = 132}, [3061] = {.lex_state = 131}, - [3062] = {.lex_state = 132}, + [3062] = {.lex_state = 131}, [3063] = {.lex_state = 131}, [3064] = {.lex_state = 131}, [3065] = {.lex_state = 131}, @@ -20605,7 +20622,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3077] = {.lex_state = 131}, [3078] = {.lex_state = 131}, [3079] = {.lex_state = 131}, - [3080] = {.lex_state = 131}, + [3080] = {.lex_state = 132}, [3081] = {.lex_state = 131}, [3082] = {.lex_state = 131}, [3083] = {.lex_state = 131}, @@ -20613,22 +20630,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3085] = {.lex_state = 131}, [3086] = {.lex_state = 131}, [3087] = {.lex_state = 131}, - [3088] = {.lex_state = 4}, + [3088] = {.lex_state = 131}, [3089] = {.lex_state = 131}, [3090] = {.lex_state = 131}, [3091] = {.lex_state = 131}, [3092] = {.lex_state = 131}, [3093] = {.lex_state = 131}, - [3094] = {.lex_state = 131}, + [3094] = {.lex_state = 4}, [3095] = {.lex_state = 131}, [3096] = {.lex_state = 131}, [3097] = {.lex_state = 131}, - [3098] = {.lex_state = 132}, + [3098] = {.lex_state = 131}, [3099] = {.lex_state = 131}, [3100] = {.lex_state = 131}, [3101] = {.lex_state = 131}, [3102] = {.lex_state = 131}, - [3103] = {.lex_state = 131}, + [3103] = {.lex_state = 4}, [3104] = {.lex_state = 131}, [3105] = {.lex_state = 131}, [3106] = {.lex_state = 131}, @@ -20651,9 +20668,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3123] = {.lex_state = 131}, [3124] = {.lex_state = 131}, [3125] = {.lex_state = 131}, - [3126] = {.lex_state = 132}, + [3126] = {.lex_state = 131}, [3127] = {.lex_state = 131}, - [3128] = {.lex_state = 131}, + [3128] = {.lex_state = 132}, [3129] = {.lex_state = 131}, [3130] = {.lex_state = 131}, [3131] = {.lex_state = 131}, @@ -20661,21 +20678,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3133] = {.lex_state = 131}, [3134] = {.lex_state = 131}, [3135] = {.lex_state = 131}, - [3136] = {.lex_state = 131}, + [3136] = {.lex_state = 132}, [3137] = {.lex_state = 131}, [3138] = {.lex_state = 131}, [3139] = {.lex_state = 131}, [3140] = {.lex_state = 4}, - [3141] = {.lex_state = 131}, + [3141] = {.lex_state = 4}, [3142] = {.lex_state = 131}, [3143] = {.lex_state = 131}, [3144] = {.lex_state = 131}, [3145] = {.lex_state = 131}, - [3146] = {.lex_state = 132}, + [3146] = {.lex_state = 131}, [3147] = {.lex_state = 131}, [3148] = {.lex_state = 131}, [3149] = {.lex_state = 131}, - [3150] = {.lex_state = 4}, + [3150] = {.lex_state = 131}, [3151] = {.lex_state = 131}, [3152] = {.lex_state = 131}, [3153] = {.lex_state = 131}, @@ -20683,121 +20700,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3155] = {.lex_state = 131}, [3156] = {.lex_state = 131}, [3157] = {.lex_state = 132}, - [3158] = {.lex_state = 5}, + [3158] = {.lex_state = 4}, [3159] = {.lex_state = 132}, - [3160] = {.lex_state = 4}, - [3161] = {.lex_state = 132}, - [3162] = {.lex_state = 4}, - [3163] = {.lex_state = 6}, - [3164] = {.lex_state = 132}, - [3165] = {.lex_state = 132}, - [3166] = {.lex_state = 4}, - [3167] = {.lex_state = 131}, - [3168] = {.lex_state = 5}, - [3169] = {.lex_state = 132}, - [3170] = {.lex_state = 4}, - [3171] = {.lex_state = 131}, - [3172] = {.lex_state = 132}, - [3173] = {.lex_state = 4}, - [3174] = {.lex_state = 131}, - [3175] = {.lex_state = 131}, + [3160] = {.lex_state = 132}, + [3161] = {.lex_state = 4}, + [3162] = {.lex_state = 5}, + [3163] = {.lex_state = 4}, + [3164] = {.lex_state = 5}, + [3165] = {.lex_state = 6}, + [3166] = {.lex_state = 132}, + [3167] = {.lex_state = 132}, + [3168] = {.lex_state = 131}, + [3169] = {.lex_state = 131}, + [3170] = {.lex_state = 132}, + [3171] = {.lex_state = 6}, + [3172] = {.lex_state = 131}, + [3173] = {.lex_state = 131}, + [3174] = {.lex_state = 6}, + [3175] = {.lex_state = 6}, [3176] = {.lex_state = 131}, - [3177] = {.lex_state = 132}, - [3178] = {.lex_state = 5}, - [3179] = {.lex_state = 5}, - [3180] = {.lex_state = 131}, + [3177] = {.lex_state = 131}, + [3178] = {.lex_state = 4}, + [3179] = {.lex_state = 131}, + [3180] = {.lex_state = 132}, [3181] = {.lex_state = 5, .external_lex_state = 4}, - [3182] = {.lex_state = 6}, - [3183] = {.lex_state = 6}, + [3182] = {.lex_state = 131}, + [3183] = {.lex_state = 132}, [3184] = {.lex_state = 131}, - [3185] = {.lex_state = 131}, - [3186] = {.lex_state = 6}, + [3185] = {.lex_state = 5}, + [3186] = {.lex_state = 5}, [3187] = {.lex_state = 131}, - [3188] = {.lex_state = 131}, + [3188] = {.lex_state = 4}, [3189] = {.lex_state = 131}, [3190] = {.lex_state = 131}, [3191] = {.lex_state = 5, .external_lex_state = 4}, - [3192] = {.lex_state = 131}, - [3193] = {.lex_state = 5, .external_lex_state = 4}, - [3194] = {.lex_state = 5, .external_lex_state = 4}, - [3195] = {.lex_state = 5, .external_lex_state = 4}, + [3192] = {.lex_state = 6}, + [3193] = {.lex_state = 131}, + [3194] = {.lex_state = 6}, + [3195] = {.lex_state = 131}, [3196] = {.lex_state = 131}, - [3197] = {.lex_state = 131}, + [3197] = {.lex_state = 5, .external_lex_state = 4}, [3198] = {.lex_state = 131}, - [3199] = {.lex_state = 5, .external_lex_state = 4}, - [3200] = {.lex_state = 131}, + [3199] = {.lex_state = 131}, + [3200] = {.lex_state = 5}, [3201] = {.lex_state = 5, .external_lex_state = 4}, - [3202] = {.lex_state = 132}, - [3203] = {.lex_state = 5, .external_lex_state = 4}, - [3204] = {.lex_state = 6}, + [3202] = {.lex_state = 131}, + [3203] = {.lex_state = 132}, + [3204] = {.lex_state = 131}, [3205] = {.lex_state = 131}, [3206] = {.lex_state = 131}, - [3207] = {.lex_state = 5, .external_lex_state = 4}, - [3208] = {.lex_state = 6}, + [3207] = {.lex_state = 131}, + [3208] = {.lex_state = 5, .external_lex_state = 4}, [3209] = {.lex_state = 131}, [3210] = {.lex_state = 131}, - [3211] = {.lex_state = 131}, - [3212] = {.lex_state = 7}, + [3211] = {.lex_state = 132}, + [3212] = {.lex_state = 5}, [3213] = {.lex_state = 131}, - [3214] = {.lex_state = 131}, + [3214] = {.lex_state = 5, .external_lex_state = 4}, [3215] = {.lex_state = 131}, [3216] = {.lex_state = 131}, [3217] = {.lex_state = 131}, [3218] = {.lex_state = 131}, - [3219] = {.lex_state = 131}, + [3219] = {.lex_state = 5, .external_lex_state = 4}, [3220] = {.lex_state = 131}, - [3221] = {.lex_state = 6}, + [3221] = {.lex_state = 131}, [3222] = {.lex_state = 131}, - [3223] = {.lex_state = 5, .external_lex_state = 4}, - [3224] = {.lex_state = 131}, - [3225] = {.lex_state = 5, .external_lex_state = 4}, - [3226] = {.lex_state = 131}, - [3227] = {.lex_state = 5, .external_lex_state = 4}, + [3223] = {.lex_state = 131}, + [3224] = {.lex_state = 5, .external_lex_state = 4}, + [3225] = {.lex_state = 131}, + [3226] = {.lex_state = 5, .external_lex_state = 4}, + [3227] = {.lex_state = 131}, [3228] = {.lex_state = 131}, - [3229] = {.lex_state = 131}, - [3230] = {.lex_state = 131}, + [3229] = {.lex_state = 5, .external_lex_state = 4}, + [3230] = {.lex_state = 5, .external_lex_state = 4}, [3231] = {.lex_state = 131}, [3232] = {.lex_state = 131}, - [3233] = {.lex_state = 6}, - [3234] = {.lex_state = 132}, + [3233] = {.lex_state = 131}, + [3234] = {.lex_state = 131}, [3235] = {.lex_state = 131}, - [3236] = {.lex_state = 4}, + [3236] = {.lex_state = 5, .external_lex_state = 4}, [3237] = {.lex_state = 131}, - [3238] = {.lex_state = 5, .external_lex_state = 4}, - [3239] = {.lex_state = 5, .external_lex_state = 4}, + [3238] = {.lex_state = 131}, + [3239] = {.lex_state = 131}, [3240] = {.lex_state = 131}, - [3241] = {.lex_state = 5, .external_lex_state = 4}, + [3241] = {.lex_state = 131}, [3242] = {.lex_state = 131}, - [3243] = {.lex_state = 131}, - [3244] = {.lex_state = 5, .external_lex_state = 4}, + [3243] = {.lex_state = 5, .external_lex_state = 4}, + [3244] = {.lex_state = 131}, [3245] = {.lex_state = 131}, - [3246] = {.lex_state = 5}, - [3247] = {.lex_state = 131}, - [3248] = {.lex_state = 5, .external_lex_state = 4}, + [3246] = {.lex_state = 5, .external_lex_state = 4}, + [3247] = {.lex_state = 5, .external_lex_state = 4}, + [3248] = {.lex_state = 131}, [3249] = {.lex_state = 5, .external_lex_state = 4}, - [3250] = {.lex_state = 5, .external_lex_state = 4}, - [3251] = {.lex_state = 131}, - [3252] = {.lex_state = 131}, - [3253] = {.lex_state = 131}, + [3250] = {.lex_state = 4}, + [3251] = {.lex_state = 5, .external_lex_state = 4}, + [3252] = {.lex_state = 5, .external_lex_state = 4}, + [3253] = {.lex_state = 5, .external_lex_state = 4}, [3254] = {.lex_state = 131}, - [3255] = {.lex_state = 131}, - [3256] = {.lex_state = 5}, - [3257] = {.lex_state = 5, .external_lex_state = 4}, + [3255] = {.lex_state = 5, .external_lex_state = 4}, + [3256] = {.lex_state = 6}, + [3257] = {.lex_state = 131}, [3258] = {.lex_state = 131}, [3259] = {.lex_state = 131}, - [3260] = {.lex_state = 131}, - [3261] = {.lex_state = 5, .external_lex_state = 4}, + [3260] = {.lex_state = 5, .external_lex_state = 4}, + [3261] = {.lex_state = 7}, [3262] = {.lex_state = 131}, [3263] = {.lex_state = 131}, - [3264] = {.lex_state = 131}, + [3264] = {.lex_state = 6}, [3265] = {.lex_state = 131}, - [3266] = {.lex_state = 132}, + [3266] = {.lex_state = 131}, [3267] = {.lex_state = 131}, [3268] = {.lex_state = 131}, [3269] = {.lex_state = 131}, - [3270] = {.lex_state = 131}, + [3270] = {.lex_state = 6}, [3271] = {.lex_state = 131}, - [3272] = {.lex_state = 131}, + [3272] = {.lex_state = 132}, [3273] = {.lex_state = 131}, [3274] = {.lex_state = 131}, [3275] = {.lex_state = 131}, @@ -20809,7 +20826,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3281] = {.lex_state = 131}, [3282] = {.lex_state = 131}, [3283] = {.lex_state = 131}, - [3284] = {.lex_state = 131}, + [3284] = {.lex_state = 132}, [3285] = {.lex_state = 131}, [3286] = {.lex_state = 131}, [3287] = {.lex_state = 131}, @@ -20825,21 +20842,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3297] = {.lex_state = 131}, [3298] = {.lex_state = 131}, [3299] = {.lex_state = 131}, - [3300] = {.lex_state = 6}, + [3300] = {.lex_state = 131}, [3301] = {.lex_state = 131}, [3302] = {.lex_state = 131}, [3303] = {.lex_state = 131}, [3304] = {.lex_state = 131}, - [3305] = {.lex_state = 131}, - [3306] = {.lex_state = 132}, + [3305] = {.lex_state = 7}, + [3306] = {.lex_state = 131}, [3307] = {.lex_state = 131}, [3308] = {.lex_state = 131}, [3309] = {.lex_state = 131}, - [3310] = {.lex_state = 131}, + [3310] = {.lex_state = 132}, [3311] = {.lex_state = 131}, - [3312] = {.lex_state = 131}, - [3313] = {.lex_state = 131}, - [3314] = {.lex_state = 132}, + [3312] = {.lex_state = 132}, + [3313] = {.lex_state = 132}, + [3314] = {.lex_state = 131}, [3315] = {.lex_state = 131}, [3316] = {.lex_state = 131}, [3317] = {.lex_state = 131}, @@ -20849,50 +20866,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3321] = {.lex_state = 131}, [3322] = {.lex_state = 131}, [3323] = {.lex_state = 131}, - [3324] = {.lex_state = 7}, + [3324] = {.lex_state = 131}, [3325] = {.lex_state = 131}, - [3326] = {.lex_state = 132}, + [3326] = {.lex_state = 131}, [3327] = {.lex_state = 131}, - [3328] = {.lex_state = 132}, - [3329] = {.lex_state = 131}, + [3328] = {.lex_state = 131}, + [3329] = {.lex_state = 4}, [3330] = {.lex_state = 131}, [3331] = {.lex_state = 131}, [3332] = {.lex_state = 131}, - [3333] = {.lex_state = 131}, - [3334] = {.lex_state = 5}, + [3333] = {.lex_state = 132}, + [3334] = {.lex_state = 131}, [3335] = {.lex_state = 131}, [3336] = {.lex_state = 131}, [3337] = {.lex_state = 131}, [3338] = {.lex_state = 131}, [3339] = {.lex_state = 131}, [3340] = {.lex_state = 131}, - [3341] = {.lex_state = 4}, + [3341] = {.lex_state = 131}, [3342] = {.lex_state = 131}, [3343] = {.lex_state = 131}, [3344] = {.lex_state = 131}, [3345] = {.lex_state = 131}, [3346] = {.lex_state = 131}, [3347] = {.lex_state = 131}, - [3348] = {.lex_state = 131}, + [3348] = {.lex_state = 132}, [3349] = {.lex_state = 131}, [3350] = {.lex_state = 131}, [3351] = {.lex_state = 131}, [3352] = {.lex_state = 131}, - [3353] = {.lex_state = 131}, + [3353] = {.lex_state = 5, .external_lex_state = 4}, [3354] = {.lex_state = 131}, [3355] = {.lex_state = 131}, - [3356] = {.lex_state = 5}, + [3356] = {.lex_state = 131}, [3357] = {.lex_state = 131}, [3358] = {.lex_state = 131}, - [3359] = {.lex_state = 131}, + [3359] = {.lex_state = 5}, [3360] = {.lex_state = 131}, [3361] = {.lex_state = 131}, [3362] = {.lex_state = 131}, [3363] = {.lex_state = 131}, [3364] = {.lex_state = 131}, [3365] = {.lex_state = 131}, - [3366] = {.lex_state = 132}, - [3367] = {.lex_state = 132}, + [3366] = {.lex_state = 131}, + [3367] = {.lex_state = 131}, [3368] = {.lex_state = 131}, [3369] = {.lex_state = 131}, [3370] = {.lex_state = 131}, @@ -20901,10 +20918,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3373] = {.lex_state = 131}, [3374] = {.lex_state = 131}, [3375] = {.lex_state = 131}, - [3376] = {.lex_state = 5, .external_lex_state = 4}, + [3376] = {.lex_state = 131}, [3377] = {.lex_state = 131}, [3378] = {.lex_state = 131}, - [3379] = {.lex_state = 131}, + [3379] = {.lex_state = 5}, [3380] = {.lex_state = 131}, [3381] = {.lex_state = 131}, [3382] = {.lex_state = 131}, @@ -20925,8 +20942,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3397] = {.lex_state = 131}, [3398] = {.lex_state = 131}, [3399] = {.lex_state = 131}, - [3400] = {.lex_state = 132}, - [3401] = {.lex_state = 132}, + [3400] = {.lex_state = 131}, + [3401] = {.lex_state = 131}, [3402] = {.lex_state = 131}, [3403] = {.lex_state = 131}, [3404] = {.lex_state = 131}, @@ -20934,28 +20951,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3406] = {.lex_state = 131}, [3407] = {.lex_state = 131}, [3408] = {.lex_state = 131}, - [3409] = {.lex_state = 5}, + [3409] = {.lex_state = 131}, [3410] = {.lex_state = 131}, - [3411] = {.lex_state = 132}, + [3411] = {.lex_state = 131}, [3412] = {.lex_state = 131}, - [3413] = {.lex_state = 132}, - [3414] = {.lex_state = 4}, + [3413] = {.lex_state = 131}, + [3414] = {.lex_state = 132}, [3415] = {.lex_state = 132}, [3416] = {.lex_state = 131}, [3417] = {.lex_state = 131}, [3418] = {.lex_state = 131}, - [3419] = {.lex_state = 132}, - [3420] = {.lex_state = 132}, + [3419] = {.lex_state = 131}, + [3420] = {.lex_state = 131}, [3421] = {.lex_state = 131}, - [3422] = {.lex_state = 132}, - [3423] = {.lex_state = 132}, - [3424] = {.lex_state = 132}, + [3422] = {.lex_state = 131}, + [3423] = {.lex_state = 131}, + [3424] = {.lex_state = 131}, [3425] = {.lex_state = 132}, - [3426] = {.lex_state = 132}, - [3427] = {.lex_state = 132}, - [3428] = {.lex_state = 5, .external_lex_state = 4}, + [3426] = {.lex_state = 131}, + [3427] = {.lex_state = 131}, + [3428] = {.lex_state = 131}, [3429] = {.lex_state = 131}, - [3430] = {.lex_state = 131}, + [3430] = {.lex_state = 132}, [3431] = {.lex_state = 131}, [3432] = {.lex_state = 131}, [3433] = {.lex_state = 131}, @@ -20964,7 +20981,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3436] = {.lex_state = 131}, [3437] = {.lex_state = 131}, [3438] = {.lex_state = 131}, - [3439] = {.lex_state = 132}, + [3439] = {.lex_state = 131}, [3440] = {.lex_state = 131}, [3441] = {.lex_state = 131}, [3442] = {.lex_state = 131}, @@ -20976,330 +20993,330 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3448] = {.lex_state = 131}, [3449] = {.lex_state = 131}, [3450] = {.lex_state = 131}, - [3451] = {.lex_state = 132}, + [3451] = {.lex_state = 131}, [3452] = {.lex_state = 131}, - [3453] = {.lex_state = 131}, - [3454] = {.lex_state = 132}, + [3453] = {.lex_state = 132}, + [3454] = {.lex_state = 131}, [3455] = {.lex_state = 131}, [3456] = {.lex_state = 131}, [3457] = {.lex_state = 131}, [3458] = {.lex_state = 131}, [3459] = {.lex_state = 131}, [3460] = {.lex_state = 131}, - [3461] = {.lex_state = 132}, + [3461] = {.lex_state = 4}, [3462] = {.lex_state = 132}, - [3463] = {.lex_state = 131}, - [3464] = {.lex_state = 131}, - [3465] = {.lex_state = 131}, - [3466] = {.lex_state = 131}, + [3463] = {.lex_state = 132}, + [3464] = {.lex_state = 132}, + [3465] = {.lex_state = 132}, + [3466] = {.lex_state = 132}, [3467] = {.lex_state = 131}, - [3468] = {.lex_state = 132}, - [3469] = {.lex_state = 132}, + [3468] = {.lex_state = 131}, + [3469] = {.lex_state = 131}, [3470] = {.lex_state = 131}, [3471] = {.lex_state = 132}, - [3472] = {.lex_state = 131}, - [3473] = {.lex_state = 131}, - [3474] = {.lex_state = 131}, + [3472] = {.lex_state = 4}, + [3473] = {.lex_state = 132}, + [3474] = {.lex_state = 132}, [3475] = {.lex_state = 131}, - [3476] = {.lex_state = 4}, - [3477] = {.lex_state = 131}, - [3478] = {.lex_state = 131}, + [3476] = {.lex_state = 132}, + [3477] = {.lex_state = 132}, + [3478] = {.lex_state = 132}, [3479] = {.lex_state = 131}, - [3480] = {.lex_state = 131}, - [3481] = {.lex_state = 131}, - [3482] = {.lex_state = 132}, - [3483] = {.lex_state = 132}, + [3480] = {.lex_state = 5, .external_lex_state = 4}, + [3481] = {.lex_state = 132}, + [3482] = {.lex_state = 131}, + [3483] = {.lex_state = 131}, [3484] = {.lex_state = 132}, - [3485] = {.lex_state = 132}, + [3485] = {.lex_state = 131}, [3486] = {.lex_state = 132}, [3487] = {.lex_state = 132}, [3488] = {.lex_state = 131}, - [3489] = {.lex_state = 131}, + [3489] = {.lex_state = 132}, [3490] = {.lex_state = 132}, - [3491] = {.lex_state = 131}, - [3492] = {.lex_state = 131}, - [3493] = {.lex_state = 132}, - [3494] = {.lex_state = 132}, + [3491] = {.lex_state = 132}, + [3492] = {.lex_state = 132}, + [3493] = {.lex_state = 131}, + [3494] = {.lex_state = 4}, [3495] = {.lex_state = 132}, - [3496] = {.lex_state = 131}, + [3496] = {.lex_state = 132}, [3497] = {.lex_state = 132}, - [3498] = {.lex_state = 131}, - [3499] = {.lex_state = 5}, - [3500] = {.lex_state = 4}, - [3501] = {.lex_state = 131}, + [3498] = {.lex_state = 132}, + [3499] = {.lex_state = 132}, + [3500] = {.lex_state = 132}, + [3501] = {.lex_state = 132}, [3502] = {.lex_state = 131}, [3503] = {.lex_state = 131}, [3504] = {.lex_state = 131}, [3505] = {.lex_state = 132}, - [3506] = {.lex_state = 131}, - [3507] = {.lex_state = 131}, - [3508] = {.lex_state = 131}, + [3506] = {.lex_state = 132}, + [3507] = {.lex_state = 132}, + [3508] = {.lex_state = 132}, [3509] = {.lex_state = 132}, - [3510] = {.lex_state = 132}, - [3511] = {.lex_state = 132}, + [3510] = {.lex_state = 5}, + [3511] = {.lex_state = 4}, [3512] = {.lex_state = 132}, - [3513] = {.lex_state = 4}, - [3514] = {.lex_state = 131}, + [3513] = {.lex_state = 132}, + [3514] = {.lex_state = 132}, [3515] = {.lex_state = 132}, [3516] = {.lex_state = 132}, - [3517] = {.lex_state = 132}, - [3518] = {.lex_state = 132}, - [3519] = {.lex_state = 4}, + [3517] = {.lex_state = 4}, + [3518] = {.lex_state = 131}, + [3519] = {.lex_state = 132}, [3520] = {.lex_state = 132}, - [3521] = {.lex_state = 5}, + [3521] = {.lex_state = 132}, [3522] = {.lex_state = 132}, - [3523] = {.lex_state = 132}, - [3524] = {.lex_state = 132}, + [3523] = {.lex_state = 4}, + [3524] = {.lex_state = 5}, [3525] = {.lex_state = 132}, - [3526] = {.lex_state = 4}, - [3527] = {.lex_state = 4}, + [3526] = {.lex_state = 132}, + [3527] = {.lex_state = 132}, [3528] = {.lex_state = 132}, - [3529] = {.lex_state = 131}, + [3529] = {.lex_state = 4}, [3530] = {.lex_state = 131}, [3531] = {.lex_state = 131}, - [3532] = {.lex_state = 131}, + [3532] = {.lex_state = 5}, [3533] = {.lex_state = 131}, [3534] = {.lex_state = 131}, [3535] = {.lex_state = 131}, [3536] = {.lex_state = 131}, [3537] = {.lex_state = 131}, [3538] = {.lex_state = 131}, - [3539] = {.lex_state = 131}, + [3539] = {.lex_state = 132}, [3540] = {.lex_state = 131}, [3541] = {.lex_state = 131}, - [3542] = {.lex_state = 131}, - [3543] = {.lex_state = 132}, + [3542] = {.lex_state = 132}, + [3543] = {.lex_state = 131}, [3544] = {.lex_state = 132}, - [3545] = {.lex_state = 132}, - [3546] = {.lex_state = 132}, + [3545] = {.lex_state = 131}, + [3546] = {.lex_state = 131}, [3547] = {.lex_state = 131}, - [3548] = {.lex_state = 132}, + [3548] = {.lex_state = 131}, [3549] = {.lex_state = 131}, [3550] = {.lex_state = 132}, - [3551] = {.lex_state = 131}, + [3551] = {.lex_state = 132}, [3552] = {.lex_state = 131}, [3553] = {.lex_state = 131}, - [3554] = {.lex_state = 132}, + [3554] = {.lex_state = 131}, [3555] = {.lex_state = 131}, - [3556] = {.lex_state = 4}, - [3557] = {.lex_state = 132}, - [3558] = {.lex_state = 4}, - [3559] = {.lex_state = 132}, - [3560] = {.lex_state = 132}, - [3561] = {.lex_state = 131}, + [3556] = {.lex_state = 132}, + [3557] = {.lex_state = 4}, + [3558] = {.lex_state = 132}, + [3559] = {.lex_state = 4}, + [3560] = {.lex_state = 4}, + [3561] = {.lex_state = 132}, [3562] = {.lex_state = 132}, - [3563] = {.lex_state = 132}, - [3564] = {.lex_state = 132}, + [3563] = {.lex_state = 131}, + [3564] = {.lex_state = 131}, [3565] = {.lex_state = 132}, - [3566] = {.lex_state = 4}, + [3566] = {.lex_state = 132}, [3567] = {.lex_state = 132}, - [3568] = {.lex_state = 132}, + [3568] = {.lex_state = 4}, [3569] = {.lex_state = 132}, - [3570] = {.lex_state = 5}, + [3570] = {.lex_state = 132}, [3571] = {.lex_state = 132}, [3572] = {.lex_state = 4}, - [3573] = {.lex_state = 132}, + [3573] = {.lex_state = 5}, [3574] = {.lex_state = 132}, - [3575] = {.lex_state = 131}, - [3576] = {.lex_state = 131}, - [3577] = {.lex_state = 131}, + [3575] = {.lex_state = 5}, + [3576] = {.lex_state = 132}, + [3577] = {.lex_state = 132}, [3578] = {.lex_state = 4}, - [3579] = {.lex_state = 4}, + [3579] = {.lex_state = 131}, [3580] = {.lex_state = 132}, - [3581] = {.lex_state = 4}, - [3582] = {.lex_state = 5, .external_lex_state = 4}, + [3581] = {.lex_state = 5, .external_lex_state = 4}, + [3582] = {.lex_state = 4}, [3583] = {.lex_state = 131}, - [3584] = {.lex_state = 132}, - [3585] = {.lex_state = 5}, + [3584] = {.lex_state = 131}, + [3585] = {.lex_state = 132}, [3586] = {.lex_state = 131}, [3587] = {.lex_state = 132}, [3588] = {.lex_state = 132}, [3589] = {.lex_state = 132}, [3590] = {.lex_state = 4}, - [3591] = {.lex_state = 4}, + [3591] = {.lex_state = 10}, [3592] = {.lex_state = 10}, [3593] = {.lex_state = 131}, [3594] = {.lex_state = 131}, [3595] = {.lex_state = 131}, - [3596] = {.lex_state = 132}, + [3596] = {.lex_state = 131}, [3597] = {.lex_state = 131}, - [3598] = {.lex_state = 131}, - [3599] = {.lex_state = 132}, - [3600] = {.lex_state = 131}, - [3601] = {.lex_state = 131}, - [3602] = {.lex_state = 131}, + [3598] = {.lex_state = 132}, + [3599] = {.lex_state = 10}, + [3600] = {.lex_state = 132}, + [3601] = {.lex_state = 132}, + [3602] = {.lex_state = 10}, [3603] = {.lex_state = 132}, [3604] = {.lex_state = 132}, [3605] = {.lex_state = 132}, - [3606] = {.lex_state = 10}, + [3606] = {.lex_state = 132}, [3607] = {.lex_state = 131}, - [3608] = {.lex_state = 4}, - [3609] = {.lex_state = 131}, + [3608] = {.lex_state = 132}, + [3609] = {.lex_state = 132}, [3610] = {.lex_state = 131}, [3611] = {.lex_state = 132}, - [3612] = {.lex_state = 131}, - [3613] = {.lex_state = 4}, + [3612] = {.lex_state = 132}, + [3613] = {.lex_state = 10}, [3614] = {.lex_state = 132}, [3615] = {.lex_state = 131}, - [3616] = {.lex_state = 4}, - [3617] = {.lex_state = 131}, - [3618] = {.lex_state = 131}, - [3619] = {.lex_state = 131}, - [3620] = {.lex_state = 131}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 131}, - [3623] = {.lex_state = 132}, + [3616] = {.lex_state = 131}, + [3617] = {.lex_state = 132}, + [3618] = {.lex_state = 132}, + [3619] = {.lex_state = 132}, + [3620] = {.lex_state = 132}, + [3621] = {.lex_state = 132}, + [3622] = {.lex_state = 132}, + [3623] = {.lex_state = 10}, [3624] = {.lex_state = 132}, - [3625] = {.lex_state = 10}, - [3626] = {.lex_state = 132}, - [3627] = {.lex_state = 10}, + [3625] = {.lex_state = 131}, + [3626] = {.lex_state = 4}, + [3627] = {.lex_state = 132}, [3628] = {.lex_state = 132}, [3629] = {.lex_state = 132}, - [3630] = {.lex_state = 132}, + [3630] = {.lex_state = 131}, [3631] = {.lex_state = 132}, [3632] = {.lex_state = 132}, - [3633] = {.lex_state = 131}, - [3634] = {.lex_state = 132}, - [3635] = {.lex_state = 132}, - [3636] = {.lex_state = 132}, + [3633] = {.lex_state = 4}, + [3634] = {.lex_state = 4}, + [3635] = {.lex_state = 10}, + [3636] = {.lex_state = 10}, [3637] = {.lex_state = 132}, - [3638] = {.lex_state = 10}, - [3639] = {.lex_state = 132}, - [3640] = {.lex_state = 10}, + [3638] = {.lex_state = 4}, + [3639] = {.lex_state = 131}, + [3640] = {.lex_state = 132}, [3641] = {.lex_state = 4}, [3642] = {.lex_state = 132}, - [3643] = {.lex_state = 132}, - [3644] = {.lex_state = 132}, + [3643] = {.lex_state = 4}, + [3644] = {.lex_state = 10}, [3645] = {.lex_state = 132}, [3646] = {.lex_state = 132}, - [3647] = {.lex_state = 132}, - [3648] = {.lex_state = 132}, - [3649] = {.lex_state = 10}, - [3650] = {.lex_state = 132}, + [3647] = {.lex_state = 131}, + [3648] = {.lex_state = 131}, + [3649] = {.lex_state = 131}, + [3650] = {.lex_state = 131}, [3651] = {.lex_state = 132}, - [3652] = {.lex_state = 131}, - [3653] = {.lex_state = 10}, - [3654] = {.lex_state = 132}, - [3655] = {.lex_state = 132}, - [3656] = {.lex_state = 131}, - [3657] = {.lex_state = 132}, + [3652] = {.lex_state = 132}, + [3653] = {.lex_state = 131}, + [3654] = {.lex_state = 131}, + [3655] = {.lex_state = 131}, + [3656] = {.lex_state = 132}, + [3657] = {.lex_state = 131}, [3658] = {.lex_state = 4}, [3659] = {.lex_state = 131}, - [3660] = {.lex_state = 4}, + [3660] = {.lex_state = 132}, [3661] = {.lex_state = 131}, - [3662] = {.lex_state = 132}, + [3662] = {.lex_state = 131}, [3663] = {.lex_state = 132}, [3664] = {.lex_state = 131}, - [3665] = {.lex_state = 131}, + [3665] = {.lex_state = 10}, [3666] = {.lex_state = 4}, - [3667] = {.lex_state = 4}, + [3667] = {.lex_state = 132}, [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 131}, - [3670] = {.lex_state = 132}, - [3671] = {.lex_state = 4}, - [3672] = {.lex_state = 132}, - [3673] = {.lex_state = 10}, - [3674] = {.lex_state = 132}, - [3675] = {.lex_state = 10}, - [3676] = {.lex_state = 10}, + [3669] = {.lex_state = 132}, + [3670] = {.lex_state = 10}, + [3671] = {.lex_state = 132}, + [3672] = {.lex_state = 4}, + [3673] = {.lex_state = 131}, + [3674] = {.lex_state = 10}, + [3675] = {.lex_state = 132}, + [3676] = {.lex_state = 132}, [3677] = {.lex_state = 132}, - [3678] = {.lex_state = 132}, - [3679] = {.lex_state = 10}, - [3680] = {.lex_state = 10}, + [3678] = {.lex_state = 4}, + [3679] = {.lex_state = 132}, + [3680] = {.lex_state = 131}, [3681] = {.lex_state = 10}, - [3682] = {.lex_state = 132}, + [3682] = {.lex_state = 131}, [3683] = {.lex_state = 132}, [3684] = {.lex_state = 132}, - [3685] = {.lex_state = 4}, - [3686] = {.lex_state = 132}, + [3685] = {.lex_state = 132}, + [3686] = {.lex_state = 4}, [3687] = {.lex_state = 132}, - [3688] = {.lex_state = 132}, - [3689] = {.lex_state = 10}, + [3688] = {.lex_state = 10}, + [3689] = {.lex_state = 131}, [3690] = {.lex_state = 131}, - [3691] = {.lex_state = 132}, + [3691] = {.lex_state = 131}, [3692] = {.lex_state = 131}, [3693] = {.lex_state = 131}, [3694] = {.lex_state = 131}, [3695] = {.lex_state = 131}, [3696] = {.lex_state = 131}, - [3697] = {.lex_state = 131}, - [3698] = {.lex_state = 132}, + [3697] = {.lex_state = 132}, + [3698] = {.lex_state = 131}, [3699] = {.lex_state = 131}, [3700] = {.lex_state = 131}, [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 132}, - [3703] = {.lex_state = 4}, + [3702] = {.lex_state = 131}, + [3703] = {.lex_state = 131}, [3704] = {.lex_state = 131}, - [3705] = {.lex_state = 132}, - [3706] = {.lex_state = 4}, + [3705] = {.lex_state = 10}, + [3706] = {.lex_state = 131}, [3707] = {.lex_state = 131}, [3708] = {.lex_state = 131}, - [3709] = {.lex_state = 10}, - [3710] = {.lex_state = 7}, - [3711] = {.lex_state = 4}, - [3712] = {.lex_state = 131}, + [3709] = {.lex_state = 4}, + [3710] = {.lex_state = 131}, + [3711] = {.lex_state = 131}, + [3712] = {.lex_state = 7}, [3713] = {.lex_state = 131}, - [3714] = {.lex_state = 132}, + [3714] = {.lex_state = 4}, [3715] = {.lex_state = 131}, - [3716] = {.lex_state = 4}, + [3716] = {.lex_state = 131}, [3717] = {.lex_state = 131}, - [3718] = {.lex_state = 131}, + [3718] = {.lex_state = 132}, [3719] = {.lex_state = 5}, - [3720] = {.lex_state = 132}, - [3721] = {.lex_state = 131}, + [3720] = {.lex_state = 4}, + [3721] = {.lex_state = 132}, [3722] = {.lex_state = 131}, [3723] = {.lex_state = 4}, - [3724] = {.lex_state = 131}, - [3725] = {.lex_state = 131}, + [3724] = {.lex_state = 132}, + [3725] = {.lex_state = 132}, [3726] = {.lex_state = 131}, [3727] = {.lex_state = 131}, - [3728] = {.lex_state = 131}, + [3728] = {.lex_state = 10}, [3729] = {.lex_state = 131}, - [3730] = {.lex_state = 131}, - [3731] = {.lex_state = 131}, + [3730] = {.lex_state = 132}, + [3731] = {.lex_state = 4}, [3732] = {.lex_state = 131}, [3733] = {.lex_state = 131}, [3734] = {.lex_state = 132}, [3735] = {.lex_state = 131}, [3736] = {.lex_state = 132}, [3737] = {.lex_state = 131}, - [3738] = {.lex_state = 131}, - [3739] = {.lex_state = 131}, + [3738] = {.lex_state = 132}, + [3739] = {.lex_state = 132}, [3740] = {.lex_state = 132}, - [3741] = {.lex_state = 132}, - [3742] = {.lex_state = 132}, - [3743] = {.lex_state = 132}, - [3744] = {.lex_state = 131}, + [3741] = {.lex_state = 131}, + [3742] = {.lex_state = 131}, + [3743] = {.lex_state = 131}, + [3744] = {.lex_state = 132}, [3745] = {.lex_state = 131}, [3746] = {.lex_state = 131}, - [3747] = {.lex_state = 132}, + [3747] = {.lex_state = 131}, [3748] = {.lex_state = 132}, [3749] = {.lex_state = 132}, - [3750] = {.lex_state = 131}, - [3751] = {.lex_state = 131}, - [3752] = {.lex_state = 131}, - [3753] = {.lex_state = 131}, + [3750] = {.lex_state = 132}, + [3751] = {.lex_state = 132}, + [3752] = {.lex_state = 132}, + [3753] = {.lex_state = 132}, [3754] = {.lex_state = 132}, - [3755] = {.lex_state = 131}, + [3755] = {.lex_state = 132}, [3756] = {.lex_state = 131}, - [3757] = {.lex_state = 132}, - [3758] = {.lex_state = 131}, + [3757] = {.lex_state = 131}, + [3758] = {.lex_state = 132}, [3759] = {.lex_state = 132}, [3760] = {.lex_state = 131}, [3761] = {.lex_state = 131}, - [3762] = {.lex_state = 132}, + [3762] = {.lex_state = 131}, [3763] = {.lex_state = 132}, [3764] = {.lex_state = 131}, - [3765] = {.lex_state = 132}, + [3765] = {.lex_state = 131}, [3766] = {.lex_state = 131}, [3767] = {.lex_state = 131}, - [3768] = {.lex_state = 132}, + [3768] = {.lex_state = 131}, [3769] = {.lex_state = 131}, [3770] = {.lex_state = 131}, [3771] = {.lex_state = 131}, [3772] = {.lex_state = 131}, [3773] = {.lex_state = 131}, - [3774] = {.lex_state = 131}, + [3774] = {.lex_state = 132}, [3775] = {.lex_state = 131}, [3776] = {.lex_state = 131}, [3777] = {.lex_state = 131}, @@ -21311,37 +21328,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3783] = {.lex_state = 131}, [3784] = {.lex_state = 131}, [3785] = {.lex_state = 131}, - [3786] = {.lex_state = 131}, - [3787] = {.lex_state = 131}, - [3788] = {.lex_state = 132}, + [3786] = {.lex_state = 132}, + [3787] = {.lex_state = 6}, + [3788] = {.lex_state = 131}, [3789] = {.lex_state = 132}, - [3790] = {.lex_state = 131}, - [3791] = {.lex_state = 132}, - [3792] = {.lex_state = 131}, - [3793] = {.lex_state = 131}, + [3790] = {.lex_state = 132}, + [3791] = {.lex_state = 131}, + [3792] = {.lex_state = 132}, + [3793] = {.lex_state = 132}, [3794] = {.lex_state = 131}, - [3795] = {.lex_state = 6}, - [3796] = {.lex_state = 131}, + [3795] = {.lex_state = 131}, + [3796] = {.lex_state = 132}, [3797] = {.lex_state = 131}, [3798] = {.lex_state = 132}, - [3799] = {.lex_state = 132}, + [3799] = {.lex_state = 131}, [3800] = {.lex_state = 131}, - [3801] = {.lex_state = 132}, + [3801] = {.lex_state = 131}, [3802] = {.lex_state = 131}, [3803] = {.lex_state = 131}, [3804] = {.lex_state = 131}, - [3805] = {.lex_state = 132}, + [3805] = {.lex_state = 131}, [3806] = {.lex_state = 131}, [3807] = {.lex_state = 131}, [3808] = {.lex_state = 131}, [3809] = {.lex_state = 131}, - [3810] = {.lex_state = 132}, + [3810] = {.lex_state = 131}, [3811] = {.lex_state = 131}, [3812] = {.lex_state = 131}, [3813] = {.lex_state = 131}, - [3814] = {.lex_state = 132}, + [3814] = {.lex_state = 131}, [3815] = {.lex_state = 131}, - [3816] = {.lex_state = 132}, + [3816] = {.lex_state = 131}, [3817] = {.lex_state = 131}, [3818] = {.lex_state = 131}, [3819] = {.lex_state = 131}, @@ -21349,123 +21366,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3821] = {.lex_state = 131}, [3822] = {.lex_state = 131}, [3823] = {.lex_state = 131}, - [3824] = {.lex_state = 132}, - [3825] = {.lex_state = 131}, - [3826] = {.lex_state = 132}, - [3827] = {.lex_state = 132}, - [3828] = {.lex_state = 131}, - [3829] = {.lex_state = 132}, + [3824] = {.lex_state = 131}, + [3825] = {.lex_state = 132}, + [3826] = {.lex_state = 131}, + [3827] = {.lex_state = 131}, + [3828] = {.lex_state = 132}, + [3829] = {.lex_state = 131}, [3830] = {.lex_state = 131}, - [3831] = {.lex_state = 131}, - [3832] = {.lex_state = 132}, - [3833] = {.lex_state = 132}, + [3831] = {.lex_state = 132}, + [3832] = {.lex_state = 131}, + [3833] = {.lex_state = 131}, [3834] = {.lex_state = 131}, [3835] = {.lex_state = 131}, [3836] = {.lex_state = 131}, [3837] = {.lex_state = 132}, [3838] = {.lex_state = 132}, - [3839] = {.lex_state = 132}, - [3840] = {.lex_state = 131}, + [3839] = {.lex_state = 131}, + [3840] = {.lex_state = 132}, [3841] = {.lex_state = 131}, - [3842] = {.lex_state = 132}, + [3842] = {.lex_state = 131}, [3843] = {.lex_state = 131}, [3844] = {.lex_state = 131}, [3845] = {.lex_state = 131}, - [3846] = {.lex_state = 132}, + [3846] = {.lex_state = 131}, [3847] = {.lex_state = 131}, - [3848] = {.lex_state = 132}, + [3848] = {.lex_state = 131}, [3849] = {.lex_state = 131}, - [3850] = {.lex_state = 132}, + [3850] = {.lex_state = 131}, [3851] = {.lex_state = 132}, - [3852] = {.lex_state = 132}, - [3853] = {.lex_state = 131}, + [3852] = {.lex_state = 131}, + [3853] = {.lex_state = 132}, [3854] = {.lex_state = 132}, [3855] = {.lex_state = 131}, [3856] = {.lex_state = 131}, - [3857] = {.lex_state = 131}, + [3857] = {.lex_state = 132}, [3858] = {.lex_state = 131}, - [3859] = {.lex_state = 132}, + [3859] = {.lex_state = 131}, [3860] = {.lex_state = 132}, [3861] = {.lex_state = 132}, - [3862] = {.lex_state = 132}, + [3862] = {.lex_state = 131}, [3863] = {.lex_state = 131}, - [3864] = {.lex_state = 131}, + [3864] = {.lex_state = 132}, [3865] = {.lex_state = 132}, - [3866] = {.lex_state = 131}, - [3867] = {.lex_state = 131}, - [3868] = {.lex_state = 132}, - [3869] = {.lex_state = 131}, + [3866] = {.lex_state = 132}, + [3867] = {.lex_state = 132}, + [3868] = {.lex_state = 131}, + [3869] = {.lex_state = 132}, [3870] = {.lex_state = 132}, - [3871] = {.lex_state = 131}, - [3872] = {.lex_state = 131}, + [3871] = {.lex_state = 132}, + [3872] = {.lex_state = 132}, [3873] = {.lex_state = 131}, - [3874] = {.lex_state = 131}, - [3875] = {.lex_state = 131}, - [3876] = {.lex_state = 132}, - [3877] = {.lex_state = 132}, - [3878] = {.lex_state = 131}, + [3874] = {.lex_state = 132}, + [3875] = {.lex_state = 132}, + [3876] = {.lex_state = 131}, + [3877] = {.lex_state = 131}, + [3878] = {.lex_state = 132}, [3879] = {.lex_state = 131}, [3880] = {.lex_state = 131}, [3881] = {.lex_state = 131}, - [3882] = {.lex_state = 131}, - [3883] = {.lex_state = 131}, + [3882] = {.lex_state = 132}, + [3883] = {.lex_state = 132}, [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 132}, - [3886] = {.lex_state = 132}, + [3885] = {.lex_state = 131}, + [3886] = {.lex_state = 131}, [3887] = {.lex_state = 131}, [3888] = {.lex_state = 132}, - [3889] = {.lex_state = 131}, + [3889] = {.lex_state = 132}, [3890] = {.lex_state = 132}, [3891] = {.lex_state = 131}, [3892] = {.lex_state = 132}, - [3893] = {.lex_state = 131}, + [3893] = {.lex_state = 132}, [3894] = {.lex_state = 132}, - [3895] = {.lex_state = 131}, - [3896] = {.lex_state = 131}, + [3895] = {.lex_state = 132}, + [3896] = {.lex_state = 132}, [3897] = {.lex_state = 131}, [3898] = {.lex_state = 131}, [3899] = {.lex_state = 131}, [3900] = {.lex_state = 131}, - [3901] = {.lex_state = 132}, + [3901] = {.lex_state = 131}, [3902] = {.lex_state = 132}, - [3903] = {.lex_state = 131}, - [3904] = {.lex_state = 131}, - [3905] = {.lex_state = 131}, + [3903] = {.lex_state = 132}, + [3904] = {.lex_state = 132}, + [3905] = {.lex_state = 132}, [3906] = {.lex_state = 131}, - [3907] = {.lex_state = 132}, - [3908] = {.lex_state = 132}, + [3907] = {.lex_state = 131}, + [3908] = {.lex_state = 131}, [3909] = {.lex_state = 131}, - [3910] = {.lex_state = 131}, + [3910] = {.lex_state = 132}, [3911] = {.lex_state = 132}, - [3912] = {.lex_state = 132}, + [3912] = {.lex_state = 131}, [3913] = {.lex_state = 131}, - [3914] = {.lex_state = 131}, - [3915] = {.lex_state = 132}, + [3914] = {.lex_state = 132}, + [3915] = {.lex_state = 131}, [3916] = {.lex_state = 131}, [3917] = {.lex_state = 131}, - [3918] = {.lex_state = 132}, + [3918] = {.lex_state = 131}, [3919] = {.lex_state = 132}, - [3920] = {.lex_state = 132}, + [3920] = {.lex_state = 131}, [3921] = {.lex_state = 131}, [3922] = {.lex_state = 131}, [3923] = {.lex_state = 131}, [3924] = {.lex_state = 131}, [3925] = {.lex_state = 131}, [3926] = {.lex_state = 131}, - [3927] = {.lex_state = 132}, - [3928] = {.lex_state = 131}, + [3927] = {.lex_state = 131}, + [3928] = {.lex_state = 132}, [3929] = {.lex_state = 131}, - [3930] = {.lex_state = 131}, + [3930] = {.lex_state = 132}, [3931] = {.lex_state = 131}, [3932] = {.lex_state = 131}, - [3933] = {.lex_state = 132}, - [3934] = {.lex_state = 132}, + [3933] = {.lex_state = 131}, + [3934] = {.lex_state = 131}, [3935] = {.lex_state = 131}, - [3936] = {.lex_state = 131}, - [3937] = {.lex_state = 131}, - [3938] = {.lex_state = 131}, + [3936] = {.lex_state = 132}, + [3937] = {.lex_state = 132}, + [3938] = {.lex_state = 132}, [3939] = {.lex_state = 131}, - [3940] = {.lex_state = 132}, + [3940] = {.lex_state = 131}, [3941] = {.lex_state = 132}, [3942] = {.lex_state = 132}, [3943] = {.lex_state = 132}, @@ -21477,65 +21494,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3949] = {.lex_state = 132}, [3950] = {.lex_state = 132}, [3951] = {.lex_state = 132}, - [3952] = {.lex_state = 132}, - [3953] = {.lex_state = 132}, + [3952] = {.lex_state = 131}, + [3953] = {.lex_state = 131}, [3954] = {.lex_state = 132}, - [3955] = {.lex_state = 132}, + [3955] = {.lex_state = 131}, [3956] = {.lex_state = 131}, [3957] = {.lex_state = 132}, - [3958] = {.lex_state = 131}, - [3959] = {.lex_state = 132}, + [3958] = {.lex_state = 132}, + [3959] = {.lex_state = 131}, [3960] = {.lex_state = 131}, [3961] = {.lex_state = 132}, - [3962] = {.lex_state = 132}, - [3963] = {.lex_state = 132}, + [3962] = {.lex_state = 131}, + [3963] = {.lex_state = 131}, [3964] = {.lex_state = 131}, - [3965] = {.lex_state = 131}, + [3965] = {.lex_state = 132}, [3966] = {.lex_state = 131}, - [3967] = {.lex_state = 132}, + [3967] = {.lex_state = 131}, [3968] = {.lex_state = 132}, - [3969] = {.lex_state = 132}, - [3970] = {.lex_state = 132}, + [3969] = {.lex_state = 131}, + [3970] = {.lex_state = 131}, [3971] = {.lex_state = 132}, - [3972] = {.lex_state = 132}, + [3972] = {.lex_state = 131}, [3973] = {.lex_state = 132}, [3974] = {.lex_state = 132}, [3975] = {.lex_state = 132}, - [3976] = {.lex_state = 10}, + [3976] = {.lex_state = 131}, [3977] = {.lex_state = 132}, - [3978] = {.lex_state = 132}, + [3978] = {.lex_state = 131}, [3979] = {.lex_state = 131}, [3980] = {.lex_state = 132}, [3981] = {.lex_state = 132}, - [3982] = {.lex_state = 131}, + [3982] = {.lex_state = 132}, [3983] = {.lex_state = 132}, - [3984] = {.lex_state = 132}, + [3984] = {.lex_state = 131}, [3985] = {.lex_state = 132}, - [3986] = {.lex_state = 132}, + [3986] = {.lex_state = 131}, [3987] = {.lex_state = 132}, [3988] = {.lex_state = 132}, [3989] = {.lex_state = 132}, - [3990] = {.lex_state = 132}, - [3991] = {.lex_state = 132}, + [3990] = {.lex_state = 131}, + [3991] = {.lex_state = 131}, [3992] = {.lex_state = 132}, - [3993] = {.lex_state = 131}, + [3993] = {.lex_state = 132}, [3994] = {.lex_state = 132}, [3995] = {.lex_state = 132}, [3996] = {.lex_state = 131}, - [3997] = {.lex_state = 131}, - [3998] = {.lex_state = 131}, + [3997] = {.lex_state = 132}, + [3998] = {.lex_state = 132}, [3999] = {.lex_state = 132}, - [4000] = {.lex_state = 132}, - [4001] = {.lex_state = 131}, - [4002] = {.lex_state = 131}, - [4003] = {.lex_state = 131}, - [4004] = {.lex_state = 131}, + [4000] = {.lex_state = 131}, + [4001] = {.lex_state = 132}, + [4002] = {.lex_state = 132}, + [4003] = {.lex_state = 132}, + [4004] = {.lex_state = 132}, [4005] = {.lex_state = 131}, [4006] = {.lex_state = 132}, - [4007] = {.lex_state = 131}, - [4008] = {.lex_state = 131}, + [4007] = {.lex_state = 132}, + [4008] = {.lex_state = 132}, [4009] = {.lex_state = 132}, - [4010] = {.lex_state = 131}, + [4010] = {.lex_state = 132}, [4011] = {.lex_state = 132}, [4012] = {.lex_state = 132}, [4013] = {.lex_state = 132}, @@ -21543,59 +21560,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4015] = {.lex_state = 132}, [4016] = {.lex_state = 132}, [4017] = {.lex_state = 132}, - [4018] = {.lex_state = 131}, + [4018] = {.lex_state = 132}, [4019] = {.lex_state = 132}, - [4020] = {.lex_state = 17}, + [4020] = {.lex_state = 132}, [4021] = {.lex_state = 132}, [4022] = {.lex_state = 132}, - [4023] = {.lex_state = 131}, + [4023] = {.lex_state = 132}, [4024] = {.lex_state = 132}, - [4025] = {.lex_state = 132}, + [4025] = {.lex_state = 131}, [4026] = {.lex_state = 132}, - [4027] = {.lex_state = 131}, - [4028] = {.lex_state = 131}, + [4027] = {.lex_state = 132}, + [4028] = {.lex_state = 17}, [4029] = {.lex_state = 132}, [4030] = {.lex_state = 132}, - [4031] = {.lex_state = 131}, + [4031] = {.lex_state = 132}, [4032] = {.lex_state = 132}, - [4033] = {.lex_state = 131}, + [4033] = {.lex_state = 132}, [4034] = {.lex_state = 131}, - [4035] = {.lex_state = 131}, - [4036] = {.lex_state = 131}, + [4035] = {.lex_state = 132}, + [4036] = {.lex_state = 132}, [4037] = {.lex_state = 131}, - [4038] = {.lex_state = 132}, + [4038] = {.lex_state = 131}, [4039] = {.lex_state = 131}, [4040] = {.lex_state = 131}, - [4041] = {.lex_state = 132}, + [4041] = {.lex_state = 131}, [4042] = {.lex_state = 131}, [4043] = {.lex_state = 131}, - [4044] = {.lex_state = 131}, + [4044] = {.lex_state = 132}, [4045] = {.lex_state = 131}, [4046] = {.lex_state = 131}, - [4047] = {.lex_state = 132}, + [4047] = {.lex_state = 131}, [4048] = {.lex_state = 132}, [4049] = {.lex_state = 131}, - [4050] = {.lex_state = 132}, + [4050] = {.lex_state = 131}, [4051] = {.lex_state = 132}, [4052] = {.lex_state = 132}, [4053] = {.lex_state = 132}, [4054] = {.lex_state = 132}, - [4055] = {.lex_state = 131}, - [4056] = {.lex_state = 131}, - [4057] = {.lex_state = 131}, + [4055] = {.lex_state = 132}, + [4056] = {.lex_state = 132}, + [4057] = {.lex_state = 132}, [4058] = {.lex_state = 131}, - [4059] = {.lex_state = 132}, - [4060] = {.lex_state = 132}, - [4061] = {.lex_state = 132}, + [4059] = {.lex_state = 131}, + [4060] = {.lex_state = 131}, + [4061] = {.lex_state = 131}, [4062] = {.lex_state = 131}, - [4063] = {.lex_state = 132}, - [4064] = {.lex_state = 131}, + [4063] = {.lex_state = 131}, + [4064] = {.lex_state = 132}, [4065] = {.lex_state = 132}, [4066] = {.lex_state = 132}, [4067] = {.lex_state = 132}, - [4068] = {.lex_state = 132}, + [4068] = {.lex_state = 131}, [4069] = {.lex_state = 131}, - [4070] = {.lex_state = 131}, + [4070] = {.lex_state = 132}, [4071] = {.lex_state = 132}, [4072] = {.lex_state = 132}, [4073] = {.lex_state = 132}, @@ -21604,40 +21621,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4076] = {.lex_state = 132}, [4077] = {.lex_state = 132}, [4078] = {.lex_state = 132}, - [4079] = {.lex_state = 131}, - [4080] = {.lex_state = 131}, + [4079] = {.lex_state = 132}, + [4080] = {.lex_state = 132}, [4081] = {.lex_state = 132}, [4082] = {.lex_state = 132}, [4083] = {.lex_state = 132}, - [4084] = {.lex_state = 131}, - [4085] = {.lex_state = 132}, - [4086] = {.lex_state = 132}, - [4087] = {.lex_state = 132}, - [4088] = {.lex_state = 131}, - [4089] = {.lex_state = 131}, + [4084] = {.lex_state = 132}, + [4085] = {.lex_state = 131}, + [4086] = {.lex_state = 131}, + [4087] = {.lex_state = 131}, + [4088] = {.lex_state = 132}, + [4089] = {.lex_state = 132}, [4090] = {.lex_state = 132}, - [4091] = {.lex_state = 132}, + [4091] = {.lex_state = 131}, [4092] = {.lex_state = 132}, [4093] = {.lex_state = 131}, - [4094] = {.lex_state = 132}, + [4094] = {.lex_state = 131}, [4095] = {.lex_state = 132}, - [4096] = {.lex_state = 132}, + [4096] = {.lex_state = 131}, [4097] = {.lex_state = 132}, - [4098] = {.lex_state = 132}, + [4098] = {.lex_state = 10}, [4099] = {.lex_state = 132}, [4100] = {.lex_state = 132}, [4101] = {.lex_state = 131}, - [4102] = {.lex_state = 131}, + [4102] = {.lex_state = 132}, [4103] = {.lex_state = 132}, [4104] = {.lex_state = 131}, [4105] = {.lex_state = 131}, [4106] = {.lex_state = 131}, - [4107] = {.lex_state = 10}, + [4107] = {.lex_state = 131}, [4108] = {.lex_state = 131}, [4109] = {.lex_state = 131}, [4110] = {.lex_state = 131}, [4111] = {.lex_state = 131}, - [4112] = {.lex_state = 131}, + [4112] = {.lex_state = 17}, [4113] = {.lex_state = 131}, [4114] = {.lex_state = 131}, [4115] = {.lex_state = 131}, @@ -21651,44 +21668,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4123] = {.lex_state = 17}, [4124] = {.lex_state = 131}, [4125] = {.lex_state = 131}, - [4126] = {.lex_state = 132}, - [4127] = {.lex_state = 131}, + [4126] = {.lex_state = 17}, + [4127] = {.lex_state = 17}, [4128] = {.lex_state = 131}, - [4129] = {.lex_state = 131}, - [4130] = {.lex_state = 131}, + [4129] = {.lex_state = 132}, + [4130] = {.lex_state = 17}, [4131] = {.lex_state = 131}, - [4132] = {.lex_state = 131}, + [4132] = {.lex_state = 132}, [4133] = {.lex_state = 131}, [4134] = {.lex_state = 131}, - [4135] = {.lex_state = 131}, + [4135] = {.lex_state = 17}, [4136] = {.lex_state = 131}, - [4137] = {.lex_state = 17}, + [4137] = {.lex_state = 131}, [4138] = {.lex_state = 131}, [4139] = {.lex_state = 131}, [4140] = {.lex_state = 131}, [4141] = {.lex_state = 131}, [4142] = {.lex_state = 131}, [4143] = {.lex_state = 131}, - [4144] = {.lex_state = 131}, - [4145] = {.lex_state = 17}, + [4144] = {.lex_state = 10}, + [4145] = {.lex_state = 131}, [4146] = {.lex_state = 131}, [4147] = {.lex_state = 131}, [4148] = {.lex_state = 131}, [4149] = {.lex_state = 131}, [4150] = {.lex_state = 131}, - [4151] = {.lex_state = 17}, - [4152] = {.lex_state = 17}, + [4151] = {.lex_state = 131}, + [4152] = {.lex_state = 131}, [4153] = {.lex_state = 131}, [4154] = {.lex_state = 131}, - [4155] = {.lex_state = 132}, + [4155] = {.lex_state = 131}, [4156] = {.lex_state = 131}, [4157] = {.lex_state = 131}, [4158] = {.lex_state = 131}, [4159] = {.lex_state = 131}, - [4160] = {.lex_state = 17}, + [4160] = {.lex_state = 131}, [4161] = {.lex_state = 131}, - [4162] = {.lex_state = 131}, - [4163] = {.lex_state = 17}, + [4162] = {.lex_state = 17}, + [4163] = {.lex_state = 131}, [4164] = {.lex_state = 131}, [4165] = {.lex_state = 131}, [4166] = {.lex_state = 131}, @@ -21713,22 +21730,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4185] = {.lex_state = 131}, [4186] = {.lex_state = 131}, [4187] = {.lex_state = 131}, - [4188] = {.lex_state = 131}, + [4188] = {.lex_state = 132}, [4189] = {.lex_state = 131}, [4190] = {.lex_state = 131}, - [4191] = {.lex_state = 131}, + [4191] = {.lex_state = 17}, [4192] = {.lex_state = 131}, [4193] = {.lex_state = 131}, [4194] = {.lex_state = 131}, [4195] = {.lex_state = 131}, [4196] = {.lex_state = 131}, - [4197] = {.lex_state = 17}, + [4197] = {.lex_state = 131}, [4198] = {.lex_state = 131}, [4199] = {.lex_state = 131}, [4200] = {.lex_state = 131}, [4201] = {.lex_state = 131}, [4202] = {.lex_state = 131}, - [4203] = {.lex_state = 132}, + [4203] = {.lex_state = 131}, [4204] = {.lex_state = 131}, [4205] = {.lex_state = 131}, [4206] = {.lex_state = 131}, @@ -21747,7 +21764,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4219] = {.lex_state = 131}, [4220] = {.lex_state = 131}, [4221] = {.lex_state = 131}, - [4222] = {.lex_state = 131}, + [4222] = {.lex_state = 132}, [4223] = {.lex_state = 131}, [4224] = {.lex_state = 131}, [4225] = {.lex_state = 131}, @@ -21768,15 +21785,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4240] = {.lex_state = 131}, [4241] = {.lex_state = 131}, [4242] = {.lex_state = 131}, - [4243] = {.lex_state = 10}, + [4243] = {.lex_state = 131}, [4244] = {.lex_state = 131}, [4245] = {.lex_state = 131}, [4246] = {.lex_state = 131}, [4247] = {.lex_state = 131}, [4248] = {.lex_state = 131}, - [4249] = {.lex_state = 131}, - [4250] = {.lex_state = 17}, - [4251] = {.lex_state = 131}, + [4249] = {.lex_state = 131, .external_lex_state = 4}, + [4250] = {.lex_state = 131}, + [4251] = {.lex_state = 17}, [4252] = {.lex_state = 131}, [4253] = {.lex_state = 131}, [4254] = {.lex_state = 131}, @@ -21803,7 +21820,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4275] = {.lex_state = 131}, [4276] = {.lex_state = 131}, [4277] = {.lex_state = 131}, - [4278] = {.lex_state = 131, .external_lex_state = 4}, + [4278] = {.lex_state = 131}, [4279] = {.lex_state = 131}, [4280] = {.lex_state = 131}, [4281] = {.lex_state = 131}, @@ -21815,269 +21832,269 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4287] = {.lex_state = 131}, [4288] = {.lex_state = 131}, [4289] = {.lex_state = 131}, - [4290] = {.lex_state = 6, .external_lex_state = 4}, + [4290] = {.lex_state = 131}, [4291] = {.lex_state = 131}, - [4292] = {.lex_state = 132}, - [4293] = {.lex_state = 131}, + [4292] = {.lex_state = 131}, + [4293] = {.lex_state = 6, .external_lex_state = 4}, [4294] = {.lex_state = 131}, [4295] = {.lex_state = 131}, [4296] = {.lex_state = 131}, - [4297] = {.lex_state = 131}, + [4297] = {.lex_state = 10}, [4298] = {.lex_state = 131, .external_lex_state = 4}, - [4299] = {.lex_state = 131}, - [4300] = {.lex_state = 131, .external_lex_state = 4}, - [4301] = {.lex_state = 131, .external_lex_state = 4}, + [4299] = {.lex_state = 131, .external_lex_state = 4}, + [4300] = {.lex_state = 132}, + [4301] = {.lex_state = 131}, [4302] = {.lex_state = 131}, - [4303] = {.lex_state = 131, .external_lex_state = 4}, - [4304] = {.lex_state = 131, .external_lex_state = 4}, - [4305] = {.lex_state = 131, .external_lex_state = 4}, - [4306] = {.lex_state = 131}, + [4303] = {.lex_state = 132}, + [4304] = {.lex_state = 131}, + [4305] = {.lex_state = 131}, + [4306] = {.lex_state = 10}, [4307] = {.lex_state = 131}, - [4308] = {.lex_state = 17}, - [4309] = {.lex_state = 131}, - [4310] = {.lex_state = 17}, - [4311] = {.lex_state = 10}, + [4308] = {.lex_state = 131}, + [4309] = {.lex_state = 131, .external_lex_state = 4}, + [4310] = {.lex_state = 131}, + [4311] = {.lex_state = 131, .external_lex_state = 4}, [4312] = {.lex_state = 131}, [4313] = {.lex_state = 131}, - [4314] = {.lex_state = 131, .external_lex_state = 4}, + [4314] = {.lex_state = 131}, [4315] = {.lex_state = 131}, - [4316] = {.lex_state = 17}, + [4316] = {.lex_state = 131, .external_lex_state = 4}, [4317] = {.lex_state = 131}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 131}, + [4318] = {.lex_state = 131, .external_lex_state = 4}, + [4319] = {.lex_state = 10}, [4320] = {.lex_state = 131}, - [4321] = {.lex_state = 131}, + [4321] = {.lex_state = 131, .external_lex_state = 4}, [4322] = {.lex_state = 131}, - [4323] = {.lex_state = 131}, - [4324] = {.lex_state = 131}, + [4323] = {.lex_state = 131, .external_lex_state = 4}, + [4324] = {.lex_state = 131, .external_lex_state = 4}, [4325] = {.lex_state = 131}, - [4326] = {.lex_state = 132}, - [4327] = {.lex_state = 131}, - [4328] = {.lex_state = 132}, - [4329] = {.lex_state = 131}, - [4330] = {.lex_state = 131}, - [4331] = {.lex_state = 131, .external_lex_state = 4}, + [4326] = {.lex_state = 131}, + [4327] = {.lex_state = 131, .external_lex_state = 4}, + [4328] = {.lex_state = 131}, + [4329] = {.lex_state = 131, .external_lex_state = 4}, + [4330] = {.lex_state = 131, .external_lex_state = 4}, + [4331] = {.lex_state = 131}, [4332] = {.lex_state = 131}, - [4333] = {.lex_state = 131, .external_lex_state = 4}, - [4334] = {.lex_state = 131}, + [4333] = {.lex_state = 132}, + [4334] = {.lex_state = 17}, [4335] = {.lex_state = 131}, [4336] = {.lex_state = 131}, - [4337] = {.lex_state = 131, .external_lex_state = 4}, - [4338] = {.lex_state = 6, .external_lex_state = 4}, + [4337] = {.lex_state = 17}, + [4338] = {.lex_state = 131}, [4339] = {.lex_state = 131}, - [4340] = {.lex_state = 132}, - [4341] = {.lex_state = 6, .external_lex_state = 4}, + [4340] = {.lex_state = 131, .external_lex_state = 4}, + [4341] = {.lex_state = 131, .external_lex_state = 4}, [4342] = {.lex_state = 131}, - [4343] = {.lex_state = 6, .external_lex_state = 4}, + [4343] = {.lex_state = 132}, [4344] = {.lex_state = 131, .external_lex_state = 4}, - [4345] = {.lex_state = 131, .external_lex_state = 4}, - [4346] = {.lex_state = 131}, - [4347] = {.lex_state = 132}, - [4348] = {.lex_state = 132}, + [4345] = {.lex_state = 131}, + [4346] = {.lex_state = 131, .external_lex_state = 4}, + [4347] = {.lex_state = 131}, + [4348] = {.lex_state = 17}, [4349] = {.lex_state = 131}, [4350] = {.lex_state = 131}, [4351] = {.lex_state = 131, .external_lex_state = 4}, - [4352] = {.lex_state = 131, .external_lex_state = 4}, + [4352] = {.lex_state = 131}, [4353] = {.lex_state = 131, .external_lex_state = 4}, - [4354] = {.lex_state = 131, .external_lex_state = 4}, - [4355] = {.lex_state = 131}, + [4354] = {.lex_state = 131}, + [4355] = {.lex_state = 17}, [4356] = {.lex_state = 131}, - [4357] = {.lex_state = 131}, - [4358] = {.lex_state = 131}, + [4357] = {.lex_state = 131, .external_lex_state = 4}, + [4358] = {.lex_state = 132}, [4359] = {.lex_state = 131}, - [4360] = {.lex_state = 131}, - [4361] = {.lex_state = 131, .external_lex_state = 4}, - [4362] = {.lex_state = 17}, - [4363] = {.lex_state = 10}, - [4364] = {.lex_state = 131, .external_lex_state = 4}, - [4365] = {.lex_state = 131, .external_lex_state = 4}, + [4360] = {.lex_state = 17}, + [4361] = {.lex_state = 131}, + [4362] = {.lex_state = 131, .external_lex_state = 4}, + [4363] = {.lex_state = 131, .external_lex_state = 4}, + [4364] = {.lex_state = 131}, + [4365] = {.lex_state = 131}, [4366] = {.lex_state = 131}, [4367] = {.lex_state = 131}, - [4368] = {.lex_state = 132}, + [4368] = {.lex_state = 131}, [4369] = {.lex_state = 131}, - [4370] = {.lex_state = 131}, - [4371] = {.lex_state = 131, .external_lex_state = 4}, - [4372] = {.lex_state = 131, .external_lex_state = 4}, - [4373] = {.lex_state = 17}, - [4374] = {.lex_state = 131, .external_lex_state = 4}, + [4370] = {.lex_state = 131, .external_lex_state = 4}, + [4371] = {.lex_state = 131}, + [4372] = {.lex_state = 131}, + [4373] = {.lex_state = 131, .external_lex_state = 4}, + [4374] = {.lex_state = 6, .external_lex_state = 4}, [4375] = {.lex_state = 131, .external_lex_state = 4}, [4376] = {.lex_state = 131, .external_lex_state = 4}, [4377] = {.lex_state = 131}, [4378] = {.lex_state = 131, .external_lex_state = 4}, [4379] = {.lex_state = 131, .external_lex_state = 4}, - [4380] = {.lex_state = 131, .external_lex_state = 4}, - [4381] = {.lex_state = 131, .external_lex_state = 4}, - [4382] = {.lex_state = 131}, + [4380] = {.lex_state = 132}, + [4381] = {.lex_state = 131}, + [4382] = {.lex_state = 131, .external_lex_state = 4}, [4383] = {.lex_state = 131}, - [4384] = {.lex_state = 131}, + [4384] = {.lex_state = 131, .external_lex_state = 4}, [4385] = {.lex_state = 17}, - [4386] = {.lex_state = 131}, - [4387] = {.lex_state = 131, .external_lex_state = 4}, - [4388] = {.lex_state = 131, .external_lex_state = 4}, + [4386] = {.lex_state = 131, .external_lex_state = 4}, + [4387] = {.lex_state = 6, .external_lex_state = 4}, + [4388] = {.lex_state = 6, .external_lex_state = 4}, [4389] = {.lex_state = 131, .external_lex_state = 4}, - [4390] = {.lex_state = 131}, - [4391] = {.lex_state = 131}, - [4392] = {.lex_state = 131, .external_lex_state = 4}, + [4390] = {.lex_state = 131, .external_lex_state = 4}, + [4391] = {.lex_state = 131, .external_lex_state = 4}, + [4392] = {.lex_state = 131}, [4393] = {.lex_state = 131}, [4394] = {.lex_state = 131}, - [4395] = {.lex_state = 131}, + [4395] = {.lex_state = 131, .external_lex_state = 4}, [4396] = {.lex_state = 131, .external_lex_state = 4}, [4397] = {.lex_state = 131}, - [4398] = {.lex_state = 131}, + [4398] = {.lex_state = 131, .external_lex_state = 4}, [4399] = {.lex_state = 131, .external_lex_state = 4}, - [4400] = {.lex_state = 131, .external_lex_state = 4}, + [4400] = {.lex_state = 131}, [4401] = {.lex_state = 131, .external_lex_state = 4}, [4402] = {.lex_state = 131}, [4403] = {.lex_state = 131, .external_lex_state = 4}, - [4404] = {.lex_state = 131}, + [4404] = {.lex_state = 131, .external_lex_state = 4}, [4405] = {.lex_state = 131, .external_lex_state = 4}, - [4406] = {.lex_state = 131, .external_lex_state = 4}, - [4407] = {.lex_state = 131}, - [4408] = {.lex_state = 131, .external_lex_state = 4}, - [4409] = {.lex_state = 131}, + [4406] = {.lex_state = 131}, + [4407] = {.lex_state = 131, .external_lex_state = 4}, + [4408] = {.lex_state = 131}, + [4409] = {.lex_state = 131, .external_lex_state = 4}, [4410] = {.lex_state = 131}, [4411] = {.lex_state = 131}, [4412] = {.lex_state = 131}, - [4413] = {.lex_state = 131, .external_lex_state = 4}, - [4414] = {.lex_state = 131, .external_lex_state = 4}, - [4415] = {.lex_state = 131, .external_lex_state = 4}, - [4416] = {.lex_state = 131, .external_lex_state = 4}, - [4417] = {.lex_state = 131}, + [4413] = {.lex_state = 131}, + [4414] = {.lex_state = 132}, + [4415] = {.lex_state = 131}, + [4416] = {.lex_state = 131}, + [4417] = {.lex_state = 131, .external_lex_state = 4}, [4418] = {.lex_state = 131}, - [4419] = {.lex_state = 131}, + [4419] = {.lex_state = 131, .external_lex_state = 4}, [4420] = {.lex_state = 131}, - [4421] = {.lex_state = 131}, - [4422] = {.lex_state = 131}, - [4423] = {.lex_state = 131, .external_lex_state = 4}, - [4424] = {.lex_state = 131, .external_lex_state = 4}, + [4421] = {.lex_state = 131, .external_lex_state = 4}, + [4422] = {.lex_state = 132}, + [4423] = {.lex_state = 131}, + [4424] = {.lex_state = 131}, [4425] = {.lex_state = 131}, [4426] = {.lex_state = 131}, - [4427] = {.lex_state = 131}, + [4427] = {.lex_state = 131, .external_lex_state = 4}, [4428] = {.lex_state = 131}, [4429] = {.lex_state = 131}, [4430] = {.lex_state = 131}, [4431] = {.lex_state = 131}, - [4432] = {.lex_state = 131, .external_lex_state = 4}, + [4432] = {.lex_state = 131}, [4433] = {.lex_state = 131}, [4434] = {.lex_state = 131}, - [4435] = {.lex_state = 131}, + [4435] = {.lex_state = 6}, [4436] = {.lex_state = 131}, [4437] = {.lex_state = 131}, [4438] = {.lex_state = 131}, - [4439] = {.lex_state = 131}, - [4440] = {.lex_state = 132}, + [4439] = {.lex_state = 132}, + [4440] = {.lex_state = 131}, [4441] = {.lex_state = 131, .external_lex_state = 4}, - [4442] = {.lex_state = 131}, - [4443] = {.lex_state = 131, .external_lex_state = 4}, + [4442] = {.lex_state = 131, .external_lex_state = 4}, + [4443] = {.lex_state = 131}, [4444] = {.lex_state = 131, .external_lex_state = 4}, - [4445] = {.lex_state = 131}, - [4446] = {.lex_state = 131, .external_lex_state = 4}, + [4445] = {.lex_state = 131, .external_lex_state = 4}, + [4446] = {.lex_state = 131}, [4447] = {.lex_state = 131, .external_lex_state = 4}, - [4448] = {.lex_state = 131}, - [4449] = {.lex_state = 131}, + [4448] = {.lex_state = 131, .external_lex_state = 4}, + [4449] = {.lex_state = 132}, [4450] = {.lex_state = 131, .external_lex_state = 4}, - [4451] = {.lex_state = 131, .external_lex_state = 4}, + [4451] = {.lex_state = 131}, [4452] = {.lex_state = 131}, - [4453] = {.lex_state = 131, .external_lex_state = 4}, + [4453] = {.lex_state = 131}, [4454] = {.lex_state = 131}, - [4455] = {.lex_state = 131, .external_lex_state = 4}, - [4456] = {.lex_state = 131}, - [4457] = {.lex_state = 132}, + [4455] = {.lex_state = 131}, + [4456] = {.lex_state = 131, .external_lex_state = 4}, + [4457] = {.lex_state = 131}, [4458] = {.lex_state = 131}, - [4459] = {.lex_state = 131}, - [4460] = {.lex_state = 131}, - [4461] = {.lex_state = 6}, - [4462] = {.lex_state = 131, .external_lex_state = 4}, - [4463] = {.lex_state = 7, .external_lex_state = 4}, + [4459] = {.lex_state = 131, .external_lex_state = 4}, + [4460] = {.lex_state = 131, .external_lex_state = 4}, + [4461] = {.lex_state = 131}, + [4462] = {.lex_state = 131}, + [4463] = {.lex_state = 131}, [4464] = {.lex_state = 131}, [4465] = {.lex_state = 131, .external_lex_state = 4}, - [4466] = {.lex_state = 132}, - [4467] = {.lex_state = 131}, - [4468] = {.lex_state = 131}, - [4469] = {.lex_state = 131}, - [4470] = {.lex_state = 131, .external_lex_state = 4}, + [4466] = {.lex_state = 131, .external_lex_state = 4}, + [4467] = {.lex_state = 131, .external_lex_state = 4}, + [4468] = {.lex_state = 131, .external_lex_state = 4}, + [4469] = {.lex_state = 131, .external_lex_state = 4}, + [4470] = {.lex_state = 132}, [4471] = {.lex_state = 131, .external_lex_state = 4}, - [4472] = {.lex_state = 131}, + [4472] = {.lex_state = 132}, [4473] = {.lex_state = 131}, - [4474] = {.lex_state = 132}, - [4475] = {.lex_state = 131, .external_lex_state = 4}, - [4476] = {.lex_state = 131, .external_lex_state = 4}, - [4477] = {.lex_state = 131, .external_lex_state = 4}, + [4474] = {.lex_state = 131}, + [4475] = {.lex_state = 131}, + [4476] = {.lex_state = 131}, + [4477] = {.lex_state = 131}, [4478] = {.lex_state = 131, .external_lex_state = 4}, [4479] = {.lex_state = 131}, [4480] = {.lex_state = 131}, - [4481] = {.lex_state = 131, .external_lex_state = 4}, + [4481] = {.lex_state = 132}, [4482] = {.lex_state = 131, .external_lex_state = 4}, - [4483] = {.lex_state = 131}, - [4484] = {.lex_state = 131}, + [4483] = {.lex_state = 131, .external_lex_state = 4}, + [4484] = {.lex_state = 131, .external_lex_state = 4}, [4485] = {.lex_state = 131}, - [4486] = {.lex_state = 131}, - [4487] = {.lex_state = 131}, - [4488] = {.lex_state = 131}, - [4489] = {.lex_state = 131}, - [4490] = {.lex_state = 132}, - [4491] = {.lex_state = 17}, + [4486] = {.lex_state = 131, .external_lex_state = 4}, + [4487] = {.lex_state = 132}, + [4488] = {.lex_state = 131, .external_lex_state = 4}, + [4489] = {.lex_state = 131, .external_lex_state = 4}, + [4490] = {.lex_state = 131}, + [4491] = {.lex_state = 132}, [4492] = {.lex_state = 131}, - [4493] = {.lex_state = 131, .external_lex_state = 4}, - [4494] = {.lex_state = 131, .external_lex_state = 4}, - [4495] = {.lex_state = 131}, - [4496] = {.lex_state = 131}, + [4493] = {.lex_state = 131}, + [4494] = {.lex_state = 131}, + [4495] = {.lex_state = 132}, + [4496] = {.lex_state = 131, .external_lex_state = 4}, [4497] = {.lex_state = 131, .external_lex_state = 4}, [4498] = {.lex_state = 131, .external_lex_state = 4}, - [4499] = {.lex_state = 131, .external_lex_state = 4}, - [4500] = {.lex_state = 131, .external_lex_state = 4}, - [4501] = {.lex_state = 131}, + [4499] = {.lex_state = 131}, + [4500] = {.lex_state = 131}, + [4501] = {.lex_state = 131, .external_lex_state = 4}, [4502] = {.lex_state = 131}, [4503] = {.lex_state = 131, .external_lex_state = 4}, [4504] = {.lex_state = 131}, - [4505] = {.lex_state = 131, .external_lex_state = 4}, - [4506] = {.lex_state = 131}, - [4507] = {.lex_state = 131}, + [4505] = {.lex_state = 131}, + [4506] = {.lex_state = 131, .external_lex_state = 4}, + [4507] = {.lex_state = 131, .external_lex_state = 4}, [4508] = {.lex_state = 131, .external_lex_state = 4}, - [4509] = {.lex_state = 131, .external_lex_state = 4}, + [4509] = {.lex_state = 131}, [4510] = {.lex_state = 131}, - [4511] = {.lex_state = 132}, - [4512] = {.lex_state = 131, .external_lex_state = 4}, - [4513] = {.lex_state = 131, .external_lex_state = 4}, + [4511] = {.lex_state = 131, .external_lex_state = 4}, + [4512] = {.lex_state = 131}, + [4513] = {.lex_state = 131}, [4514] = {.lex_state = 131}, - [4515] = {.lex_state = 131}, + [4515] = {.lex_state = 131, .external_lex_state = 4}, [4516] = {.lex_state = 131}, - [4517] = {.lex_state = 131, .external_lex_state = 4}, - [4518] = {.lex_state = 131, .external_lex_state = 4}, + [4517] = {.lex_state = 132}, + [4518] = {.lex_state = 131}, [4519] = {.lex_state = 131, .external_lex_state = 4}, [4520] = {.lex_state = 131, .external_lex_state = 4}, - [4521] = {.lex_state = 131, .external_lex_state = 4}, - [4522] = {.lex_state = 131}, + [4521] = {.lex_state = 131}, + [4522] = {.lex_state = 131, .external_lex_state = 4}, [4523] = {.lex_state = 131, .external_lex_state = 4}, - [4524] = {.lex_state = 131}, - [4525] = {.lex_state = 131}, - [4526] = {.lex_state = 131}, + [4524] = {.lex_state = 131, .external_lex_state = 4}, + [4525] = {.lex_state = 131, .external_lex_state = 4}, + [4526] = {.lex_state = 131, .external_lex_state = 4}, [4527] = {.lex_state = 131, .external_lex_state = 4}, - [4528] = {.lex_state = 131, .external_lex_state = 4}, - [4529] = {.lex_state = 132}, - [4530] = {.lex_state = 131, .external_lex_state = 4}, - [4531] = {.lex_state = 131, .external_lex_state = 4}, + [4528] = {.lex_state = 131}, + [4529] = {.lex_state = 131}, + [4530] = {.lex_state = 17}, + [4531] = {.lex_state = 131}, [4532] = {.lex_state = 131}, [4533] = {.lex_state = 131}, - [4534] = {.lex_state = 132}, - [4535] = {.lex_state = 131, .external_lex_state = 4}, - [4536] = {.lex_state = 131}, + [4534] = {.lex_state = 131}, + [4535] = {.lex_state = 131}, + [4536] = {.lex_state = 7, .external_lex_state = 4}, [4537] = {.lex_state = 131, .external_lex_state = 4}, - [4538] = {.lex_state = 131}, - [4539] = {.lex_state = 131}, - [4540] = {.lex_state = 131, .external_lex_state = 4}, - [4541] = {.lex_state = 131, .external_lex_state = 4}, - [4542] = {.lex_state = 131, .external_lex_state = 4}, - [4543] = {.lex_state = 131, .external_lex_state = 4}, + [4538] = {.lex_state = 131, .external_lex_state = 4}, + [4539] = {.lex_state = 132}, + [4540] = {.lex_state = 132}, + [4541] = {.lex_state = 131}, + [4542] = {.lex_state = 131}, + [4543] = {.lex_state = 131}, [4544] = {.lex_state = 131}, [4545] = {.lex_state = 131, .external_lex_state = 4}, [4546] = {.lex_state = 131, .external_lex_state = 4}, [4547] = {.lex_state = 131, .external_lex_state = 4}, - [4548] = {.lex_state = 131}, + [4548] = {.lex_state = 131, .external_lex_state = 4}, [4549] = {.lex_state = 131}, - [4550] = {.lex_state = 131}, - [4551] = {.lex_state = 131}, - [4552] = {.lex_state = 131}, + [4550] = {.lex_state = 131, .external_lex_state = 4}, + [4551] = {.lex_state = 131, .external_lex_state = 4}, + [4552] = {.lex_state = 131, .external_lex_state = 4}, [4553] = {.lex_state = 131}, [4554] = {.lex_state = 131}, [4555] = {.lex_state = 131}, @@ -22086,19 +22103,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4558] = {.lex_state = 131}, [4559] = {.lex_state = 131}, [4560] = {.lex_state = 131}, - [4561] = {.lex_state = 131, .external_lex_state = 4}, - [4562] = {.lex_state = 131, .external_lex_state = 4}, - [4563] = {.lex_state = 132}, + [4561] = {.lex_state = 131}, + [4562] = {.lex_state = 131}, + [4563] = {.lex_state = 131}, [4564] = {.lex_state = 131}, - [4565] = {.lex_state = 132}, - [4566] = {.lex_state = 131}, - [4567] = {.lex_state = 131}, + [4565] = {.lex_state = 131}, + [4566] = {.lex_state = 131, .external_lex_state = 4}, + [4567] = {.lex_state = 131, .external_lex_state = 4}, [4568] = {.lex_state = 131}, - [4569] = {.lex_state = 131, .external_lex_state = 4}, - [4570] = {.lex_state = 132}, + [4569] = {.lex_state = 132}, + [4570] = {.lex_state = 131}, [4571] = {.lex_state = 131}, [4572] = {.lex_state = 131}, - [4573] = {.lex_state = 131}, + [4573] = {.lex_state = 131, .external_lex_state = 4}, [4574] = {.lex_state = 131}, [4575] = {.lex_state = 131}, [4576] = {.lex_state = 131}, @@ -22112,27 +22129,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4584] = {.lex_state = 131}, [4585] = {.lex_state = 131}, [4586] = {.lex_state = 131}, - [4587] = {.lex_state = 132}, + [4587] = {.lex_state = 131}, [4588] = {.lex_state = 131}, - [4589] = {.lex_state = 131, .external_lex_state = 4}, - [4590] = {.lex_state = 132}, - [4591] = {.lex_state = 17}, - [4592] = {.lex_state = 131, .external_lex_state = 4}, - [4593] = {.lex_state = 6}, - [4594] = {.lex_state = 132}, - [4595] = {.lex_state = 131}, - [4596] = {.lex_state = 131}, - [4597] = {.lex_state = 131}, - [4598] = {.lex_state = 131}, - [4599] = {.lex_state = 131, .external_lex_state = 4}, - [4600] = {.lex_state = 132}, + [4589] = {.lex_state = 131}, + [4590] = {.lex_state = 131}, + [4591] = {.lex_state = 131, .external_lex_state = 4}, + [4592] = {.lex_state = 132}, + [4593] = {.lex_state = 17}, + [4594] = {.lex_state = 131, .external_lex_state = 4}, + [4595] = {.lex_state = 6}, + [4596] = {.lex_state = 132}, + [4597] = {.lex_state = 132}, + [4598] = {.lex_state = 131, .external_lex_state = 4}, + [4599] = {.lex_state = 131}, + [4600] = {.lex_state = 131}, [4601] = {.lex_state = 131}, [4602] = {.lex_state = 131}, [4603] = {.lex_state = 131}, [4604] = {.lex_state = 131}, - [4605] = {.lex_state = 17}, + [4605] = {.lex_state = 131}, [4606] = {.lex_state = 131}, - [4607] = {.lex_state = 131}, + [4607] = {.lex_state = 17}, [4608] = {.lex_state = 131}, [4609] = {.lex_state = 131}, [4610] = {.lex_state = 131}, @@ -22145,24 +22162,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4617] = {.lex_state = 131}, [4618] = {.lex_state = 131}, [4619] = {.lex_state = 131}, - [4620] = {.lex_state = 132}, + [4620] = {.lex_state = 131}, [4621] = {.lex_state = 131}, - [4622] = {.lex_state = 131}, + [4622] = {.lex_state = 132}, [4623] = {.lex_state = 131}, [4624] = {.lex_state = 131}, [4625] = {.lex_state = 131}, - [4626] = {.lex_state = 132}, - [4627] = {.lex_state = 131, .external_lex_state = 4}, - [4628] = {.lex_state = 131, .external_lex_state = 4}, + [4626] = {.lex_state = 131}, + [4627] = {.lex_state = 131}, + [4628] = {.lex_state = 132}, [4629] = {.lex_state = 131, .external_lex_state = 4}, [4630] = {.lex_state = 131, .external_lex_state = 4}, [4631] = {.lex_state = 131, .external_lex_state = 4}, - [4632] = {.lex_state = 131}, - [4633] = {.lex_state = 131}, + [4632] = {.lex_state = 131, .external_lex_state = 4}, + [4633] = {.lex_state = 131, .external_lex_state = 4}, [4634] = {.lex_state = 131}, [4635] = {.lex_state = 131}, - [4636] = {.lex_state = 131, .external_lex_state = 4}, - [4637] = {.lex_state = 131, .external_lex_state = 4}, + [4636] = {.lex_state = 131}, + [4637] = {.lex_state = 131}, [4638] = {.lex_state = 131, .external_lex_state = 4}, [4639] = {.lex_state = 131, .external_lex_state = 4}, [4640] = {.lex_state = 131, .external_lex_state = 4}, @@ -22187,26 +22204,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4659] = {.lex_state = 131, .external_lex_state = 4}, [4660] = {.lex_state = 131, .external_lex_state = 4}, [4661] = {.lex_state = 131, .external_lex_state = 4}, - [4662] = {.lex_state = 132}, + [4662] = {.lex_state = 131, .external_lex_state = 4}, [4663] = {.lex_state = 131, .external_lex_state = 4}, - [4664] = {.lex_state = 131, .external_lex_state = 4}, + [4664] = {.lex_state = 132}, [4665] = {.lex_state = 131, .external_lex_state = 4}, [4666] = {.lex_state = 131, .external_lex_state = 4}, [4667] = {.lex_state = 131, .external_lex_state = 4}, [4668] = {.lex_state = 131, .external_lex_state = 4}, [4669] = {.lex_state = 131, .external_lex_state = 4}, [4670] = {.lex_state = 131, .external_lex_state = 4}, - [4671] = {.lex_state = 132}, + [4671] = {.lex_state = 131, .external_lex_state = 4}, [4672] = {.lex_state = 131, .external_lex_state = 4}, [4673] = {.lex_state = 131, .external_lex_state = 4}, [4674] = {.lex_state = 131, .external_lex_state = 4}, - [4675] = {.lex_state = 131}, + [4675] = {.lex_state = 131, .external_lex_state = 4}, [4676] = {.lex_state = 131}, [4677] = {.lex_state = 131}, [4678] = {.lex_state = 131}, - [4679] = {.lex_state = 131}, - [4680] = {.lex_state = 131}, - [4681] = {.lex_state = 131, .external_lex_state = 4}, + [4679] = {.lex_state = 131, .external_lex_state = 4}, + [4680] = {.lex_state = 131, .external_lex_state = 4}, + [4681] = {.lex_state = 131}, [4682] = {.lex_state = 131}, [4683] = {.lex_state = 131}, [4684] = {.lex_state = 131}, @@ -22221,20 +22238,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4693] = {.lex_state = 131}, [4694] = {.lex_state = 131}, [4695] = {.lex_state = 131}, - [4696] = {.lex_state = 131, .external_lex_state = 4}, + [4696] = {.lex_state = 131}, [4697] = {.lex_state = 131}, - [4698] = {.lex_state = 131, .external_lex_state = 4}, + [4698] = {.lex_state = 131}, [4699] = {.lex_state = 131, .external_lex_state = 4}, [4700] = {.lex_state = 131, .external_lex_state = 4}, [4701] = {.lex_state = 131, .external_lex_state = 4}, [4702] = {.lex_state = 131, .external_lex_state = 4}, [4703] = {.lex_state = 131, .external_lex_state = 4}, [4704] = {.lex_state = 131, .external_lex_state = 4}, - [4705] = {.lex_state = 131}, + [4705] = {.lex_state = 131, .external_lex_state = 4}, [4706] = {.lex_state = 131, .external_lex_state = 4}, - [4707] = {.lex_state = 131}, - [4708] = {.lex_state = 131, .external_lex_state = 4}, - [4709] = {.lex_state = 131, .external_lex_state = 4}, + [4707] = {.lex_state = 131, .external_lex_state = 4}, + [4708] = {.lex_state = 131}, + [4709] = {.lex_state = 131}, [4710] = {.lex_state = 131, .external_lex_state = 4}, [4711] = {.lex_state = 131, .external_lex_state = 4}, [4712] = {.lex_state = 131, .external_lex_state = 4}, @@ -22250,25 +22267,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4722] = {.lex_state = 131, .external_lex_state = 4}, [4723] = {.lex_state = 131, .external_lex_state = 4}, [4724] = {.lex_state = 131, .external_lex_state = 4}, - [4725] = {.lex_state = 131}, + [4725] = {.lex_state = 131, .external_lex_state = 4}, [4726] = {.lex_state = 131}, [4727] = {.lex_state = 131}, [4728] = {.lex_state = 131}, [4729] = {.lex_state = 131}, - [4730] = {.lex_state = 131, .external_lex_state = 4}, + [4730] = {.lex_state = 131}, [4731] = {.lex_state = 131}, [4732] = {.lex_state = 131}, [4733] = {.lex_state = 131}, [4734] = {.lex_state = 131}, - [4735] = {.lex_state = 131}, - [4736] = {.lex_state = 131, .external_lex_state = 4}, - [4737] = {.lex_state = 131}, + [4735] = {.lex_state = 131, .external_lex_state = 4}, + [4736] = {.lex_state = 131}, + [4737] = {.lex_state = 131, .external_lex_state = 4}, [4738] = {.lex_state = 131, .external_lex_state = 4}, - [4739] = {.lex_state = 131, .external_lex_state = 4}, - [4740] = {.lex_state = 131}, - [4741] = {.lex_state = 131, .external_lex_state = 4}, + [4739] = {.lex_state = 131}, + [4740] = {.lex_state = 131, .external_lex_state = 4}, + [4741] = {.lex_state = 131}, [4742] = {.lex_state = 131, .external_lex_state = 4}, - [4743] = {.lex_state = 131}, + [4743] = {.lex_state = 131, .external_lex_state = 4}, [4744] = {.lex_state = 131}, [4745] = {.lex_state = 131}, [4746] = {.lex_state = 131}, @@ -22283,15 +22300,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4755] = {.lex_state = 131}, [4756] = {.lex_state = 131}, [4757] = {.lex_state = 131}, - [4758] = {.lex_state = 131, .external_lex_state = 4}, + [4758] = {.lex_state = 131}, [4759] = {.lex_state = 131, .external_lex_state = 4}, [4760] = {.lex_state = 131, .external_lex_state = 4}, [4761] = {.lex_state = 131, .external_lex_state = 4}, [4762] = {.lex_state = 131, .external_lex_state = 4}, [4763] = {.lex_state = 131, .external_lex_state = 4}, - [4764] = {.lex_state = 131}, + [4764] = {.lex_state = 131, .external_lex_state = 4}, [4765] = {.lex_state = 131}, - [4766] = {.lex_state = 131}, + [4766] = {.lex_state = 131, .external_lex_state = 4}, [4767] = {.lex_state = 131}, [4768] = {.lex_state = 131}, [4769] = {.lex_state = 131}, @@ -22306,7 +22323,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4778] = {.lex_state = 131}, [4779] = {.lex_state = 131}, [4780] = {.lex_state = 131}, - [4781] = {.lex_state = 131, .external_lex_state = 4}, + [4781] = {.lex_state = 131}, [4782] = {.lex_state = 131}, [4783] = {.lex_state = 131}, [4784] = {.lex_state = 131}, @@ -22326,8 +22343,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4798] = {.lex_state = 131}, [4799] = {.lex_state = 131}, [4800] = {.lex_state = 131}, - [4801] = {.lex_state = 131, .external_lex_state = 4}, - [4802] = {.lex_state = 131}, + [4801] = {.lex_state = 131}, + [4802] = {.lex_state = 131, .external_lex_state = 4}, [4803] = {.lex_state = 131}, [4804] = {.lex_state = 131}, [4805] = {.lex_state = 131}, @@ -22337,15 +22354,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4809] = {.lex_state = 131}, [4810] = {.lex_state = 131}, [4811] = {.lex_state = 131}, - [4812] = {.lex_state = 131, .external_lex_state = 4}, + [4812] = {.lex_state = 131}, [4813] = {.lex_state = 131, .external_lex_state = 4}, [4814] = {.lex_state = 131, .external_lex_state = 4}, [4815] = {.lex_state = 131, .external_lex_state = 4}, [4816] = {.lex_state = 131, .external_lex_state = 4}, [4817] = {.lex_state = 131, .external_lex_state = 4}, [4818] = {.lex_state = 131, .external_lex_state = 4}, - [4819] = {.lex_state = 131}, - [4820] = {.lex_state = 132}, + [4819] = {.lex_state = 131, .external_lex_state = 4}, + [4820] = {.lex_state = 131}, [4821] = {.lex_state = 131}, [4822] = {.lex_state = 131}, [4823] = {.lex_state = 131}, @@ -22383,16 +22400,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4855] = {.lex_state = 131}, [4856] = {.lex_state = 131, .external_lex_state = 4}, [4857] = {.lex_state = 131, .external_lex_state = 4}, - [4858] = {.lex_state = 131}, - [4859] = {.lex_state = 131, .external_lex_state = 4}, - [4860] = {.lex_state = 131}, - [4861] = {.lex_state = 131}, - [4862] = {.lex_state = 131}, + [4858] = {.lex_state = 131, .external_lex_state = 4}, + [4859] = {.lex_state = 131}, + [4860] = {.lex_state = 131, .external_lex_state = 4}, + [4861] = {.lex_state = 131, .external_lex_state = 4}, + [4862] = {.lex_state = 131, .external_lex_state = 4}, [4863] = {.lex_state = 131}, [4864] = {.lex_state = 131}, - [4865] = {.lex_state = 131, .external_lex_state = 4}, - [4866] = {.lex_state = 131, .external_lex_state = 4}, - [4867] = {.lex_state = 131, .external_lex_state = 4}, + [4865] = {.lex_state = 131}, + [4866] = {.lex_state = 131}, + [4867] = {.lex_state = 131}, [4868] = {.lex_state = 131, .external_lex_state = 4}, [4869] = {.lex_state = 131, .external_lex_state = 4}, [4870] = {.lex_state = 131, .external_lex_state = 4}, @@ -22407,29 +22424,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4879] = {.lex_state = 131}, [4880] = {.lex_state = 131}, [4881] = {.lex_state = 131}, - [4882] = {.lex_state = 131}, - [4883] = {.lex_state = 131}, - [4884] = {.lex_state = 131, .external_lex_state = 4}, + [4882] = {.lex_state = 131, .external_lex_state = 4}, + [4883] = {.lex_state = 131, .external_lex_state = 4}, + [4884] = {.lex_state = 131}, [4885] = {.lex_state = 131}, [4886] = {.lex_state = 131}, - [4887] = {.lex_state = 131, .external_lex_state = 4}, + [4887] = {.lex_state = 131}, [4888] = {.lex_state = 131}, [4889] = {.lex_state = 131}, [4890] = {.lex_state = 131}, - [4891] = {.lex_state = 131, .external_lex_state = 4}, + [4891] = {.lex_state = 131}, [4892] = {.lex_state = 131}, - [4893] = {.lex_state = 131}, + [4893] = {.lex_state = 131, .external_lex_state = 4}, [4894] = {.lex_state = 131, .external_lex_state = 4}, - [4895] = {.lex_state = 131}, + [4895] = {.lex_state = 131, .external_lex_state = 4}, [4896] = {.lex_state = 131, .external_lex_state = 4}, [4897] = {.lex_state = 131, .external_lex_state = 4}, [4898] = {.lex_state = 131, .external_lex_state = 4}, [4899] = {.lex_state = 131, .external_lex_state = 4}, - [4900] = {.lex_state = 132}, + [4900] = {.lex_state = 131, .external_lex_state = 4}, [4901] = {.lex_state = 131}, - [4902] = {.lex_state = 131, .external_lex_state = 4}, + [4902] = {.lex_state = 132}, [4903] = {.lex_state = 131, .external_lex_state = 4}, - [4904] = {.lex_state = 131}, + [4904] = {.lex_state = 132}, [4905] = {.lex_state = 131}, [4906] = {.lex_state = 131}, [4907] = {.lex_state = 131}, @@ -22438,27 +22455,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4910] = {.lex_state = 131}, [4911] = {.lex_state = 131}, [4912] = {.lex_state = 131}, - [4913] = {.lex_state = 132}, + [4913] = {.lex_state = 131}, [4914] = {.lex_state = 131}, - [4915] = {.lex_state = 131}, + [4915] = {.lex_state = 131, .external_lex_state = 4}, [4916] = {.lex_state = 131}, [4917] = {.lex_state = 131}, [4918] = {.lex_state = 131}, [4919] = {.lex_state = 131}, - [4920] = {.lex_state = 131, .external_lex_state = 4}, - [4921] = {.lex_state = 131, .external_lex_state = 4}, - [4922] = {.lex_state = 132}, - [4923] = {.lex_state = 131, .external_lex_state = 4}, + [4920] = {.lex_state = 131}, + [4921] = {.lex_state = 131}, + [4922] = {.lex_state = 131, .external_lex_state = 4}, + [4923] = {.lex_state = 132}, [4924] = {.lex_state = 132}, [4925] = {.lex_state = 132}, [4926] = {.lex_state = 132}, - [4927] = {.lex_state = 131, .external_lex_state = 4}, - [4928] = {.lex_state = 132}, - [4929] = {.lex_state = 132}, + [4927] = {.lex_state = 132}, + [4928] = {.lex_state = 131}, + [4929] = {.lex_state = 131, .external_lex_state = 4}, [4930] = {.lex_state = 131, .external_lex_state = 4}, - [4931] = {.lex_state = 131, .external_lex_state = 4}, + [4931] = {.lex_state = 132}, [4932] = {.lex_state = 131}, - [4933] = {.lex_state = 131, .external_lex_state = 4}, + [4933] = {.lex_state = 131}, [4934] = {.lex_state = 131}, [4935] = {.lex_state = 131}, [4936] = {.lex_state = 131}, @@ -22467,16 +22484,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4939] = {.lex_state = 131}, [4940] = {.lex_state = 131}, [4941] = {.lex_state = 131}, - [4942] = {.lex_state = 131}, + [4942] = {.lex_state = 131, .external_lex_state = 4}, [4943] = {.lex_state = 131}, - [4944] = {.lex_state = 132}, - [4945] = {.lex_state = 131}, - [4946] = {.lex_state = 131, .external_lex_state = 4}, + [4944] = {.lex_state = 131}, + [4945] = {.lex_state = 132}, + [4946] = {.lex_state = 131}, [4947] = {.lex_state = 131}, [4948] = {.lex_state = 131}, - [4949] = {.lex_state = 131}, + [4949] = {.lex_state = 131, .external_lex_state = 4}, [4950] = {.lex_state = 131}, - [4951] = {.lex_state = 131, .external_lex_state = 4}, + [4951] = {.lex_state = 131}, [4952] = {.lex_state = 131}, [4953] = {.lex_state = 131}, [4954] = {.lex_state = 131}, @@ -22489,25 +22506,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4961] = {.lex_state = 131}, [4962] = {.lex_state = 131}, [4963] = {.lex_state = 131}, - [4964] = {.lex_state = 131}, - [4965] = {.lex_state = 131}, + [4964] = {.lex_state = 131, .external_lex_state = 4}, + [4965] = {.lex_state = 131, .external_lex_state = 4}, [4966] = {.lex_state = 131, .external_lex_state = 4}, - [4967] = {.lex_state = 131, .external_lex_state = 4}, + [4967] = {.lex_state = 131}, [4968] = {.lex_state = 132}, - [4969] = {.lex_state = 131, .external_lex_state = 4}, + [4969] = {.lex_state = 131}, [4970] = {.lex_state = 131}, [4971] = {.lex_state = 131}, [4972] = {.lex_state = 131}, [4973] = {.lex_state = 131}, [4974] = {.lex_state = 131}, [4975] = {.lex_state = 131}, - [4976] = {.lex_state = 131}, + [4976] = {.lex_state = 132}, [4977] = {.lex_state = 131}, [4978] = {.lex_state = 131}, [4979] = {.lex_state = 131}, [4980] = {.lex_state = 131}, [4981] = {.lex_state = 131}, - [4982] = {.lex_state = 132}, + [4982] = {.lex_state = 131}, [4983] = {.lex_state = 132}, [4984] = {.lex_state = 131}, [4985] = {.lex_state = 131}, @@ -22525,9 +22542,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4997] = {.lex_state = 131}, [4998] = {.lex_state = 131}, [4999] = {.lex_state = 131}, - [5000] = {.lex_state = 131}, + [5000] = {.lex_state = 132}, [5001] = {.lex_state = 131}, - [5002] = {.lex_state = 132}, + [5002] = {.lex_state = 131}, [5003] = {.lex_state = 131}, [5004] = {.lex_state = 131}, [5005] = {.lex_state = 131}, @@ -22536,7 +22553,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5008] = {.lex_state = 131}, [5009] = {.lex_state = 131}, [5010] = {.lex_state = 131}, - [5011] = {.lex_state = 131}, + [5011] = {.lex_state = 132}, [5012] = {.lex_state = 131}, [5013] = {.lex_state = 131}, [5014] = {.lex_state = 131}, @@ -22544,26 +22561,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5016] = {.lex_state = 131}, [5017] = {.lex_state = 131}, [5018] = {.lex_state = 131}, - [5019] = {.lex_state = 132}, + [5019] = {.lex_state = 131}, [5020] = {.lex_state = 131}, - [5021] = {.lex_state = 131}, + [5021] = {.lex_state = 131, .external_lex_state = 4}, [5022] = {.lex_state = 131}, - [5023] = {.lex_state = 131, .external_lex_state = 4}, + [5023] = {.lex_state = 131}, [5024] = {.lex_state = 131}, - [5025] = {.lex_state = 132}, - [5026] = {.lex_state = 131}, + [5025] = {.lex_state = 131}, + [5026] = {.lex_state = 132}, [5027] = {.lex_state = 131}, [5028] = {.lex_state = 131}, [5029] = {.lex_state = 131}, - [5030] = {.lex_state = 132}, + [5030] = {.lex_state = 131, .external_lex_state = 4}, [5031] = {.lex_state = 131}, [5032] = {.lex_state = 131}, [5033] = {.lex_state = 131}, [5034] = {.lex_state = 131, .external_lex_state = 4}, - [5035] = {.lex_state = 131}, - [5036] = {.lex_state = 131, .external_lex_state = 4}, + [5035] = {.lex_state = 132}, + [5036] = {.lex_state = 131}, [5037] = {.lex_state = 132}, - [5038] = {.lex_state = 132}, + [5038] = {.lex_state = 131}, [5039] = {.lex_state = 131}, [5040] = {.lex_state = 131}, [5041] = {.lex_state = 131}, @@ -22572,39 +22589,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5044] = {.lex_state = 131}, [5045] = {.lex_state = 131}, [5046] = {.lex_state = 131}, - [5047] = {.lex_state = 131}, + [5047] = {.lex_state = 132}, [5048] = {.lex_state = 131}, - [5049] = {.lex_state = 132}, + [5049] = {.lex_state = 131}, [5050] = {.lex_state = 131}, [5051] = {.lex_state = 131}, [5052] = {.lex_state = 131}, [5053] = {.lex_state = 131}, [5054] = {.lex_state = 131}, - [5055] = {.lex_state = 131}, + [5055] = {.lex_state = 132}, [5056] = {.lex_state = 131}, - [5057] = {.lex_state = 132}, + [5057] = {.lex_state = 131}, [5058] = {.lex_state = 131}, - [5059] = {.lex_state = 131}, + [5059] = {.lex_state = 132}, [5060] = {.lex_state = 131}, - [5061] = {.lex_state = 132}, - [5062] = {.lex_state = 131}, + [5061] = {.lex_state = 131}, + [5062] = {.lex_state = 132}, [5063] = {.lex_state = 131}, [5064] = {.lex_state = 131}, - [5065] = {.lex_state = 132}, - [5066] = {.lex_state = 131}, + [5065] = {.lex_state = 131}, + [5066] = {.lex_state = 132}, [5067] = {.lex_state = 131}, [5068] = {.lex_state = 131}, - [5069] = {.lex_state = 132}, + [5069] = {.lex_state = 131}, [5070] = {.lex_state = 131}, [5071] = {.lex_state = 131}, - [5072] = {.lex_state = 131}, + [5072] = {.lex_state = 131, .external_lex_state = 4}, [5073] = {.lex_state = 131}, [5074] = {.lex_state = 131}, - [5075] = {.lex_state = 131, .external_lex_state = 4}, + [5075] = {.lex_state = 131}, [5076] = {.lex_state = 131}, - [5077] = {.lex_state = 131}, + [5077] = {.lex_state = 132}, [5078] = {.lex_state = 131}, - [5079] = {.lex_state = 132}, + [5079] = {.lex_state = 131}, [5080] = {.lex_state = 131}, [5081] = {.lex_state = 131}, [5082] = {.lex_state = 131}, @@ -22632,20 +22649,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5104] = {.lex_state = 131}, [5105] = {.lex_state = 131}, [5106] = {.lex_state = 131}, - [5107] = {.lex_state = 131}, + [5107] = {.lex_state = 132}, [5108] = {.lex_state = 132}, [5109] = {.lex_state = 131}, - [5110] = {.lex_state = 132}, - [5111] = {.lex_state = 131}, + [5110] = {.lex_state = 131}, + [5111] = {.lex_state = 131, .external_lex_state = 4}, [5112] = {.lex_state = 131}, - [5113] = {.lex_state = 131}, + [5113] = {.lex_state = 131, .external_lex_state = 4}, [5114] = {.lex_state = 131}, - [5115] = {.lex_state = 131}, + [5115] = {.lex_state = 131, .external_lex_state = 4}, [5116] = {.lex_state = 131}, [5117] = {.lex_state = 131}, [5118] = {.lex_state = 131}, [5119] = {.lex_state = 131}, - [5120] = {.lex_state = 131, .external_lex_state = 4}, + [5120] = {.lex_state = 131}, [5121] = {.lex_state = 131}, [5122] = {.lex_state = 131}, [5123] = {.lex_state = 131}, @@ -22663,10 +22680,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5135] = {.lex_state = 131}, [5136] = {.lex_state = 131}, [5137] = {.lex_state = 131}, - [5138] = {.lex_state = 131}, + [5138] = {.lex_state = 132}, [5139] = {.lex_state = 131}, - [5140] = {.lex_state = 131, .external_lex_state = 4}, - [5141] = {.lex_state = 132}, + [5140] = {.lex_state = 131}, + [5141] = {.lex_state = 131}, [5142] = {.lex_state = 131}, [5143] = {.lex_state = 131}, [5144] = {.lex_state = 131}, @@ -22685,25 +22702,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5157] = {.lex_state = 131}, [5158] = {.lex_state = 131}, [5159] = {.lex_state = 131}, - [5160] = {.lex_state = 131}, + [5160] = {.lex_state = 131, .external_lex_state = 4}, [5161] = {.lex_state = 131}, - [5162] = {.lex_state = 131}, - [5163] = {.lex_state = 131}, - [5164] = {.lex_state = 131}, + [5162] = {.lex_state = 132}, + [5163] = {.lex_state = 10}, + [5164] = {.lex_state = 10}, [5165] = {.lex_state = 131}, [5166] = {.lex_state = 131}, - [5167] = {.lex_state = 10}, + [5167] = {.lex_state = 132}, [5168] = {.lex_state = 10}, - [5169] = {.lex_state = 131}, + [5169] = {.lex_state = 132}, [5170] = {.lex_state = 131}, [5171] = {.lex_state = 10}, [5172] = {.lex_state = 131}, [5173] = {.lex_state = 131}, [5174] = {.lex_state = 10}, [5175] = {.lex_state = 131}, - [5176] = {.lex_state = 132}, + [5176] = {.lex_state = 131}, [5177] = {.lex_state = 131}, - [5178] = {.lex_state = 131}, + [5178] = {.lex_state = 10}, [5179] = {.lex_state = 131}, [5180] = {.lex_state = 131}, [5181] = {.lex_state = 131}, @@ -22718,7 +22735,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5190] = {.lex_state = 131}, [5191] = {.lex_state = 131}, [5192] = {.lex_state = 131}, - [5193] = {.lex_state = 131}, + [5193] = {.lex_state = 10}, [5194] = {.lex_state = 131}, [5195] = {.lex_state = 131}, [5196] = {.lex_state = 131}, @@ -22734,27 +22751,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5206] = {.lex_state = 131}, [5207] = {.lex_state = 131}, [5208] = {.lex_state = 131}, - [5209] = {.lex_state = 131, .external_lex_state = 4}, - [5210] = {.lex_state = 131}, - [5211] = {.lex_state = 132}, + [5209] = {.lex_state = 131}, + [5210] = {.lex_state = 131, .external_lex_state = 4}, + [5211] = {.lex_state = 131}, [5212] = {.lex_state = 131}, [5213] = {.lex_state = 131}, - [5214] = {.lex_state = 10}, + [5214] = {.lex_state = 131}, [5215] = {.lex_state = 131}, [5216] = {.lex_state = 131}, - [5217] = {.lex_state = 10}, - [5218] = {.lex_state = 10}, + [5217] = {.lex_state = 131}, + [5218] = {.lex_state = 131}, [5219] = {.lex_state = 131}, - [5220] = {.lex_state = 131}, - [5221] = {.lex_state = 131}, - [5222] = {.lex_state = 10}, + [5220] = {.lex_state = 10}, + [5221] = {.lex_state = 10}, + [5222] = {.lex_state = 132}, [5223] = {.lex_state = 131}, [5224] = {.lex_state = 131}, [5225] = {.lex_state = 131}, [5226] = {.lex_state = 131}, - [5227] = {.lex_state = 131}, - [5228] = {.lex_state = 10}, - [5229] = {.lex_state = 10}, + [5227] = {.lex_state = 10}, + [5228] = {.lex_state = 132}, + [5229] = {.lex_state = 131}, [5230] = {.lex_state = 131}, [5231] = {.lex_state = 131}, [5232] = {.lex_state = 131}, @@ -22781,74 +22798,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5253] = {.lex_state = 131}, [5254] = {.lex_state = 131}, [5255] = {.lex_state = 131}, - [5256] = {.lex_state = 131}, + [5256] = {.lex_state = 10}, [5257] = {.lex_state = 131}, [5258] = {.lex_state = 131}, - [5259] = {.lex_state = 10}, + [5259] = {.lex_state = 131}, [5260] = {.lex_state = 131}, [5261] = {.lex_state = 131}, - [5262] = {.lex_state = 10}, + [5262] = {.lex_state = 131}, [5263] = {.lex_state = 131}, - [5264] = {.lex_state = 132}, - [5265] = {.lex_state = 131}, - [5266] = {.lex_state = 131}, + [5264] = {.lex_state = 131}, + [5265] = {.lex_state = 132}, + [5266] = {.lex_state = 10}, [5267] = {.lex_state = 131}, [5268] = {.lex_state = 131}, - [5269] = {.lex_state = 131}, - [5270] = {.lex_state = 132}, + [5269] = {.lex_state = 10}, + [5270] = {.lex_state = 131}, [5271] = {.lex_state = 131}, [5272] = {.lex_state = 131}, - [5273] = {.lex_state = 131}, - [5274] = {.lex_state = 132}, + [5273] = {.lex_state = 132}, + [5274] = {.lex_state = 131}, [5275] = {.lex_state = 131}, - [5276] = {.lex_state = 10}, + [5276] = {.lex_state = 131}, [5277] = {.lex_state = 131}, - [5278] = {.lex_state = 10}, + [5278] = {.lex_state = 131}, [5279] = {.lex_state = 132}, - [5280] = {.lex_state = 10}, + [5280] = {.lex_state = 131}, [5281] = {.lex_state = 131}, [5282] = {.lex_state = 131}, [5283] = {.lex_state = 131}, [5284] = {.lex_state = 131}, [5285] = {.lex_state = 131}, - [5286] = {.lex_state = 10}, + [5286] = {.lex_state = 131}, [5287] = {.lex_state = 131}, [5288] = {.lex_state = 131}, - [5289] = {.lex_state = 131}, + [5289] = {.lex_state = 10}, [5290] = {.lex_state = 131}, - [5291] = {.lex_state = 10}, + [5291] = {.lex_state = 17}, [5292] = {.lex_state = 10}, [5293] = {.lex_state = 10}, - [5294] = {.lex_state = 10}, - [5295] = {.lex_state = 131}, + [5294] = {.lex_state = 17}, + [5295] = {.lex_state = 10}, [5296] = {.lex_state = 10}, [5297] = {.lex_state = 10}, - [5298] = {.lex_state = 10}, + [5298] = {.lex_state = 131}, [5299] = {.lex_state = 10}, - [5300] = {.lex_state = 131}, - [5301] = {.lex_state = 131}, + [5300] = {.lex_state = 10}, + [5301] = {.lex_state = 10}, [5302] = {.lex_state = 131}, - [5303] = {.lex_state = 17}, - [5304] = {.lex_state = 17}, - [5305] = {.lex_state = 10}, + [5303] = {.lex_state = 131}, + [5304] = {.lex_state = 131}, + [5305] = {.lex_state = 131}, [5306] = {.lex_state = 10}, - [5307] = {.lex_state = 10}, - [5308] = {.lex_state = 132}, - [5309] = {.lex_state = 131}, - [5310] = {.lex_state = 131}, + [5307] = {.lex_state = 131}, + [5308] = {.lex_state = 10}, + [5309] = {.lex_state = 10}, + [5310] = {.lex_state = 10}, [5311] = {.lex_state = 131}, - [5312] = {.lex_state = 10}, - [5313] = {.lex_state = 131}, + [5312] = {.lex_state = 131}, + [5313] = {.lex_state = 10}, [5314] = {.lex_state = 10}, - [5315] = {.lex_state = 131}, - [5316] = {.lex_state = 131}, - [5317] = {.lex_state = 131}, + [5315] = {.lex_state = 10}, + [5316] = {.lex_state = 10}, + [5317] = {.lex_state = 10}, [5318] = {.lex_state = 131}, [5319] = {.lex_state = 10}, - [5320] = {.lex_state = 131}, - [5321] = {.lex_state = 10}, - [5322] = {.lex_state = 10}, - [5323] = {.lex_state = 10}, + [5320] = {.lex_state = 10}, + [5321] = {.lex_state = 131}, + [5322] = {.lex_state = 131}, + [5323] = {.lex_state = 131}, [5324] = {.lex_state = 131}, [5325] = {.lex_state = 10}, [5326] = {.lex_state = 131}, @@ -22866,12 +22883,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5338] = {.lex_state = 131}, [5339] = {.lex_state = 131}, [5340] = {.lex_state = 131}, - [5341] = {.lex_state = 10}, - [5342] = {.lex_state = 10}, - [5343] = {.lex_state = 10}, + [5341] = {.lex_state = 131}, + [5342] = {.lex_state = 131}, + [5343] = {.lex_state = 131}, [5344] = {.lex_state = 10}, [5345] = {.lex_state = 131}, - [5346] = {.lex_state = 131}, + [5346] = {.lex_state = 10}, [5347] = {.lex_state = 131}, [5348] = {.lex_state = 131}, [5349] = {.lex_state = 131}, @@ -22890,14 +22907,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5362] = {.lex_state = 131}, [5363] = {.lex_state = 131}, [5364] = {.lex_state = 131}, - [5365] = {.lex_state = 10}, + [5365] = {.lex_state = 131}, [5366] = {.lex_state = 10}, - [5367] = {.lex_state = 131}, + [5367] = {.lex_state = 10}, [5368] = {.lex_state = 10}, - [5369] = {.lex_state = 131}, - [5370] = {.lex_state = 131}, + [5369] = {.lex_state = 10}, + [5370] = {.lex_state = 10}, [5371] = {.lex_state = 131}, - [5372] = {.lex_state = 131}, + [5372] = {.lex_state = 132}, [5373] = {.lex_state = 131}, [5374] = {.lex_state = 131}, [5375] = {.lex_state = 131}, @@ -22905,7 +22922,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5377] = {.lex_state = 131}, [5378] = {.lex_state = 131}, [5379] = {.lex_state = 131}, - [5380] = {.lex_state = 131}, + [5380] = {.lex_state = 132}, [5381] = {.lex_state = 131}, [5382] = {.lex_state = 131}, [5383] = {.lex_state = 131}, @@ -22921,7 +22938,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5393] = {.lex_state = 131}, [5394] = {.lex_state = 131}, [5395] = {.lex_state = 131}, - [5396] = {.lex_state = 132}, + [5396] = {.lex_state = 131}, [5397] = {.lex_state = 131}, [5398] = {.lex_state = 131}, [5399] = {.lex_state = 131}, @@ -22930,9 +22947,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5402] = {.lex_state = 131}, [5403] = {.lex_state = 131}, [5404] = {.lex_state = 131}, - [5405] = {.lex_state = 131}, - [5406] = {.lex_state = 131}, - [5407] = {.lex_state = 132}, + [5405] = {.lex_state = 132}, + [5406] = {.lex_state = 132}, + [5407] = {.lex_state = 131}, [5408] = {.lex_state = 131}, [5409] = {.lex_state = 131}, [5410] = {.lex_state = 131}, @@ -22958,13 +22975,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5430] = {.lex_state = 131}, [5431] = {.lex_state = 131}, [5432] = {.lex_state = 131}, - [5433] = {.lex_state = 131}, + [5433] = {.lex_state = 132}, [5434] = {.lex_state = 131}, [5435] = {.lex_state = 131}, [5436] = {.lex_state = 131}, [5437] = {.lex_state = 131}, [5438] = {.lex_state = 131}, - [5439] = {.lex_state = 131}, + [5439] = {.lex_state = 132}, [5440] = {.lex_state = 131}, [5441] = {.lex_state = 131}, [5442] = {.lex_state = 131}, @@ -22987,7 +23004,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5459] = {.lex_state = 131}, [5460] = {.lex_state = 131}, [5461] = {.lex_state = 131}, - [5462] = {.lex_state = 131}, + [5462] = {.lex_state = 132}, [5463] = {.lex_state = 131}, [5464] = {.lex_state = 131}, [5465] = {.lex_state = 131}, @@ -22996,7 +23013,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5468] = {.lex_state = 131}, [5469] = {.lex_state = 131}, [5470] = {.lex_state = 131}, - [5471] = {.lex_state = 132}, + [5471] = {.lex_state = 131}, [5472] = {.lex_state = 131}, [5473] = {.lex_state = 131}, [5474] = {.lex_state = 131}, @@ -23012,28 +23029,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5484] = {.lex_state = 131}, [5485] = {.lex_state = 131}, [5486] = {.lex_state = 131}, - [5487] = {.lex_state = 132}, + [5487] = {.lex_state = 131}, [5488] = {.lex_state = 131}, [5489] = {.lex_state = 131}, [5490] = {.lex_state = 131}, [5491] = {.lex_state = 131}, - [5492] = {.lex_state = 131}, + [5492] = {.lex_state = 132}, [5493] = {.lex_state = 131}, [5494] = {.lex_state = 131}, - [5495] = {.lex_state = 131}, + [5495] = {.lex_state = 132}, [5496] = {.lex_state = 131}, [5497] = {.lex_state = 131}, [5498] = {.lex_state = 131}, [5499] = {.lex_state = 131}, [5500] = {.lex_state = 131}, [5501] = {.lex_state = 131}, - [5502] = {.lex_state = 132}, + [5502] = {.lex_state = 131}, [5503] = {.lex_state = 131}, [5504] = {.lex_state = 131}, - [5505] = {.lex_state = 131}, + [5505] = {.lex_state = 132}, [5506] = {.lex_state = 131}, [5507] = {.lex_state = 131}, - [5508] = {.lex_state = 131}, + [5508] = {.lex_state = 132}, [5509] = {.lex_state = 131}, [5510] = {.lex_state = 131}, [5511] = {.lex_state = 131}, @@ -23045,7 +23062,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5517] = {.lex_state = 131}, [5518] = {.lex_state = 131}, [5519] = {.lex_state = 131}, - [5520] = {.lex_state = 131}, + [5520] = {.lex_state = 132}, [5521] = {.lex_state = 131}, [5522] = {.lex_state = 131}, [5523] = {.lex_state = 131}, @@ -23056,8 +23073,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5528] = {.lex_state = 131}, [5529] = {.lex_state = 131}, [5530] = {.lex_state = 131}, - [5531] = {.lex_state = 132}, - [5532] = {.lex_state = 132}, + [5531] = {.lex_state = 131}, + [5532] = {.lex_state = 131}, [5533] = {.lex_state = 131}, [5534] = {.lex_state = 131}, [5535] = {.lex_state = 131}, @@ -23069,7 +23086,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5541] = {.lex_state = 131}, [5542] = {.lex_state = 131}, [5543] = {.lex_state = 131}, - [5544] = {.lex_state = 132}, + [5544] = {.lex_state = 131}, [5545] = {.lex_state = 131}, [5546] = {.lex_state = 131}, [5547] = {.lex_state = 131}, @@ -23079,7 +23096,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5551] = {.lex_state = 131}, [5552] = {.lex_state = 131}, [5553] = {.lex_state = 131}, - [5554] = {.lex_state = 132}, + [5554] = {.lex_state = 131}, [5555] = {.lex_state = 131}, [5556] = {.lex_state = 131}, [5557] = {.lex_state = 131}, @@ -23093,7 +23110,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5565] = {.lex_state = 131}, [5566] = {.lex_state = 131}, [5567] = {.lex_state = 131}, - [5568] = {.lex_state = 132}, + [5568] = {.lex_state = 131}, [5569] = {.lex_state = 131}, [5570] = {.lex_state = 131}, [5571] = {.lex_state = 131}, @@ -23101,7 +23118,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5573] = {.lex_state = 131}, [5574] = {.lex_state = 131}, [5575] = {.lex_state = 131}, - [5576] = {.lex_state = 132}, + [5576] = {.lex_state = 131}, [5577] = {.lex_state = 131}, [5578] = {.lex_state = 131}, [5579] = {.lex_state = 131}, @@ -23116,10 +23133,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5588] = {.lex_state = 131}, [5589] = {.lex_state = 131}, [5590] = {.lex_state = 131}, - [5591] = {.lex_state = 131}, + [5591] = {.lex_state = 132}, [5592] = {.lex_state = 131}, [5593] = {.lex_state = 131}, - [5594] = {.lex_state = 132}, + [5594] = {.lex_state = 131}, [5595] = {.lex_state = 131}, [5596] = {.lex_state = 131}, [5597] = {.lex_state = 131}, @@ -23145,12 +23162,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5617] = {.lex_state = 131}, [5618] = {.lex_state = 131}, [5619] = {.lex_state = 131}, - [5620] = {.lex_state = 132}, + [5620] = {.lex_state = 131}, [5621] = {.lex_state = 131}, [5622] = {.lex_state = 131}, [5623] = {.lex_state = 131}, [5624] = {.lex_state = 131}, - [5625] = {.lex_state = 131}, + [5625] = {.lex_state = 132}, [5626] = {.lex_state = 131}, [5627] = {.lex_state = 131}, [5628] = {.lex_state = 131}, @@ -23166,7 +23183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5638] = {.lex_state = 131}, [5639] = {.lex_state = 131}, [5640] = {.lex_state = 131}, - [5641] = {.lex_state = 132}, + [5641] = {.lex_state = 131}, [5642] = {.lex_state = 131}, [5643] = {.lex_state = 131}, [5644] = {.lex_state = 131}, @@ -23231,8 +23248,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5703] = {.lex_state = 131}, [5704] = {.lex_state = 131}, [5705] = {.lex_state = 131}, - [5706] = {.lex_state = 132}, - [5707] = {.lex_state = 131}, + [5706] = {.lex_state = 131}, + [5707] = {.lex_state = 132}, [5708] = {.lex_state = 131}, [5709] = {.lex_state = 131}, [5710] = {.lex_state = 131}, @@ -23240,69 +23257,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5712] = {.lex_state = 131}, [5713] = {.lex_state = 131}, [5714] = {.lex_state = 131}, - [5715] = {.lex_state = 132}, - [5716] = {.lex_state = 132}, + [5715] = {.lex_state = 131}, + [5716] = {.lex_state = 131}, [5717] = {.lex_state = 131}, - [5718] = {.lex_state = 132}, - [5719] = {.lex_state = 131}, + [5718] = {.lex_state = 131}, + [5719] = {.lex_state = 132}, [5720] = {.lex_state = 131}, [5721] = {.lex_state = 131}, - [5722] = {.lex_state = 131}, + [5722] = {.lex_state = 132}, [5723] = {.lex_state = 131}, [5724] = {.lex_state = 131}, [5725] = {.lex_state = 131}, - [5726] = {.lex_state = 132}, + [5726] = {.lex_state = 131}, [5727] = {.lex_state = 132}, [5728] = {.lex_state = 131}, [5729] = {.lex_state = 131}, [5730] = {.lex_state = 131}, [5731] = {.lex_state = 132}, - [5732] = {.lex_state = 131}, + [5732] = {.lex_state = 132}, [5733] = {.lex_state = 131}, - [5734] = {.lex_state = 132}, - [5735] = {.lex_state = 132}, + [5734] = {.lex_state = 131}, + [5735] = {.lex_state = 131}, [5736] = {.lex_state = 131}, - [5737] = {.lex_state = 131}, + [5737] = {.lex_state = 132}, [5738] = {.lex_state = 131}, - [5739] = {.lex_state = 132}, + [5739] = {.lex_state = 131}, [5740] = {.lex_state = 131}, - [5741] = {.lex_state = 131}, + [5741] = {.lex_state = 132}, [5742] = {.lex_state = 132}, [5743] = {.lex_state = 131}, [5744] = {.lex_state = 131}, - [5745] = {.lex_state = 131}, + [5745] = {.lex_state = 132}, [5746] = {.lex_state = 131}, - [5747] = {.lex_state = 132}, + [5747] = {.lex_state = 131}, [5748] = {.lex_state = 131}, - [5749] = {.lex_state = 131}, - [5750] = {.lex_state = 132}, - [5751] = {.lex_state = 132}, - [5752] = {.lex_state = 131}, - [5753] = {.lex_state = 131}, - [5754] = {.lex_state = 131}, + [5749] = {.lex_state = 132}, + [5750] = {.lex_state = 131}, + [5751] = {.lex_state = 131}, + [5752] = {.lex_state = 132}, + [5753] = {.lex_state = 132}, + [5754] = {.lex_state = 132}, [5755] = {.lex_state = 131}, - [5756] = {.lex_state = 132}, - [5757] = {.lex_state = 131}, + [5756] = {.lex_state = 131}, + [5757] = {.lex_state = 132}, [5758] = {.lex_state = 131}, - [5759] = {.lex_state = 132}, + [5759] = {.lex_state = 17}, [5760] = {.lex_state = 132}, - [5761] = {.lex_state = 132}, + [5761] = {.lex_state = 17}, [5762] = {.lex_state = 132}, [5763] = {.lex_state = 131}, [5764] = {.lex_state = 132}, [5765] = {.lex_state = 132}, [5766] = {.lex_state = 132}, [5767] = {.lex_state = 132}, - [5768] = {.lex_state = 132}, + [5768] = {.lex_state = 131}, [5769] = {.lex_state = 132}, [5770] = {.lex_state = 132}, [5771] = {.lex_state = 132}, [5772] = {.lex_state = 132}, - [5773] = {.lex_state = 17}, + [5773] = {.lex_state = 132}, [5774] = {.lex_state = 17}, - [5775] = {.lex_state = 131}, + [5775] = {.lex_state = 132}, [5776] = {.lex_state = 132}, - [5777] = {.lex_state = 17}, + [5777] = {.lex_state = 132}, [5778] = {.lex_state = 132}, [5779] = {.lex_state = 132}, [5780] = {.lex_state = 132}, @@ -23310,25 +23327,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5782] = {.lex_state = 132}, [5783] = {.lex_state = 132}, [5784] = {.lex_state = 132}, - [5785] = {.lex_state = 132}, - [5786] = {.lex_state = 131}, + [5785] = {.lex_state = 17}, + [5786] = {.lex_state = 132}, [5787] = {.lex_state = 132}, [5788] = {.lex_state = 132}, - [5789] = {.lex_state = 17}, + [5789] = {.lex_state = 132}, [5790] = {.lex_state = 132}, [5791] = {.lex_state = 132}, [5792] = {.lex_state = 132}, - [5793] = {.lex_state = 132}, - [5794] = {.lex_state = 131}, - [5795] = {.lex_state = 132}, - [5796] = {.lex_state = 132}, + [5793] = {.lex_state = 131}, + [5794] = {.lex_state = 132}, + [5795] = {.lex_state = 131}, + [5796] = {.lex_state = 131}, [5797] = {.lex_state = 132}, [5798] = {.lex_state = 131}, [5799] = {.lex_state = 132}, [5800] = {.lex_state = 132}, [5801] = {.lex_state = 132}, [5802] = {.lex_state = 132}, - [5803] = {.lex_state = 131}, + [5803] = {.lex_state = 132}, [5804] = {.lex_state = 132}, [5805] = {.lex_state = 132}, [5806] = {.lex_state = 132}, @@ -23422,7 +23439,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5894] = {.lex_state = 132}, [5895] = {.lex_state = 132}, [5896] = {.lex_state = 132}, - [5897] = {.lex_state = 131}, + [5897] = {.lex_state = 132}, [5898] = {.lex_state = 132}, [5899] = {.lex_state = 132}, [5900] = {.lex_state = 132}, @@ -23432,7 +23449,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5904] = {.lex_state = 132}, [5905] = {.lex_state = 132}, [5906] = {.lex_state = 132}, - [5907] = {.lex_state = 132}, + [5907] = {.lex_state = 131}, [5908] = {.lex_state = 132}, [5909] = {.lex_state = 132}, [5910] = {.lex_state = 132}, @@ -23535,7 +23552,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6007] = {.lex_state = 132}, [6008] = {.lex_state = 132}, [6009] = {.lex_state = 132}, - [6010] = {.lex_state = 132}, + [6010] = {.lex_state = 1}, [6011] = {.lex_state = 132}, [6012] = {.lex_state = 132}, [6013] = {.lex_state = 132}, @@ -23569,7 +23586,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6041] = {.lex_state = 132}, [6042] = {.lex_state = 132}, [6043] = {.lex_state = 132}, - [6044] = {.lex_state = 1}, + [6044] = {.lex_state = 132}, [6045] = {.lex_state = 132}, [6046] = {.lex_state = 132}, [6047] = {.lex_state = 132}, @@ -23646,10 +23663,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6118] = {.lex_state = 132}, [6119] = {.lex_state = 132}, [6120] = {.lex_state = 132}, - [6121] = {.lex_state = 4}, + [6121] = {.lex_state = 132}, [6122] = {.lex_state = 132}, [6123] = {.lex_state = 132}, - [6124] = {.lex_state = 132}, + [6124] = {.lex_state = 4}, [6125] = {.lex_state = 132}, [6126] = {.lex_state = 132}, [6127] = {.lex_state = 132}, @@ -23721,8 +23738,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6193] = {.lex_state = 8}, [6194] = {.lex_state = 8}, [6195] = {.lex_state = 8}, - [6196] = {.lex_state = 8}, - [6197] = {.lex_state = 132}, + [6196] = {.lex_state = 132}, + [6197] = {.lex_state = 8}, [6198] = {.lex_state = 8}, [6199] = {.lex_state = 132}, [6200] = {.lex_state = 132}, @@ -23850,357 +23867,357 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6322] = {.lex_state = 131}, [6323] = {.lex_state = 131}, [6324] = {.lex_state = 131}, - [6325] = {.lex_state = 131}, - [6326] = {.lex_state = 17}, - [6327] = {.lex_state = 132}, + [6325] = {.lex_state = 17}, + [6326] = {.lex_state = 131}, + [6327] = {.lex_state = 131}, [6328] = {.lex_state = 131}, [6329] = {.lex_state = 131}, [6330] = {.lex_state = 131}, [6331] = {.lex_state = 131}, [6332] = {.lex_state = 131}, - [6333] = {.lex_state = 131}, + [6333] = {.lex_state = 132}, [6334] = {.lex_state = 0}, - [6335] = {.lex_state = 0}, - [6336] = {.lex_state = 0}, - [6337] = {.lex_state = 17}, - [6338] = {.lex_state = 132}, - [6339] = {.lex_state = 132}, - [6340] = {.lex_state = 0}, - [6341] = {.lex_state = 131}, - [6342] = {.lex_state = 132}, - [6343] = {.lex_state = 10}, + [6335] = {.lex_state = 132}, + [6336] = {.lex_state = 17}, + [6337] = {.lex_state = 0}, + [6338] = {.lex_state = 0}, + [6339] = {.lex_state = 131}, + [6340] = {.lex_state = 132}, + [6341] = {.lex_state = 0}, + [6342] = {.lex_state = 131}, + [6343] = {.lex_state = 132}, [6344] = {.lex_state = 132}, - [6345] = {.lex_state = 132}, + [6345] = {.lex_state = 131}, [6346] = {.lex_state = 132}, - [6347] = {.lex_state = 132}, - [6348] = {.lex_state = 132}, + [6347] = {.lex_state = 131}, + [6348] = {.lex_state = 131}, [6349] = {.lex_state = 132}, - [6350] = {.lex_state = 131}, + [6350] = {.lex_state = 132}, [6351] = {.lex_state = 132}, [6352] = {.lex_state = 132}, [6353] = {.lex_state = 132}, [6354] = {.lex_state = 132}, [6355] = {.lex_state = 132}, - [6356] = {.lex_state = 132}, + [6356] = {.lex_state = 10}, [6357] = {.lex_state = 132}, [6358] = {.lex_state = 132}, [6359] = {.lex_state = 132}, [6360] = {.lex_state = 132}, [6361] = {.lex_state = 131}, - [6362] = {.lex_state = 131}, + [6362] = {.lex_state = 132}, [6363] = {.lex_state = 132}, [6364] = {.lex_state = 132}, [6365] = {.lex_state = 132}, [6366] = {.lex_state = 132}, [6367] = {.lex_state = 132}, - [6368] = {.lex_state = 131}, + [6368] = {.lex_state = 132}, [6369] = {.lex_state = 132}, - [6370] = {.lex_state = 131}, + [6370] = {.lex_state = 132}, [6371] = {.lex_state = 132}, - [6372] = {.lex_state = 0}, + [6372] = {.lex_state = 131}, [6373] = {.lex_state = 132}, [6374] = {.lex_state = 132}, [6375] = {.lex_state = 132}, [6376] = {.lex_state = 132}, [6377] = {.lex_state = 132}, - [6378] = {.lex_state = 132}, + [6378] = {.lex_state = 0}, [6379] = {.lex_state = 132}, [6380] = {.lex_state = 132}, [6381] = {.lex_state = 132}, - [6382] = {.lex_state = 131}, + [6382] = {.lex_state = 132}, [6383] = {.lex_state = 132}, [6384] = {.lex_state = 132}, [6385] = {.lex_state = 132}, - [6386] = {.lex_state = 131}, + [6386] = {.lex_state = 132}, [6387] = {.lex_state = 0}, - [6388] = {.lex_state = 131}, + [6388] = {.lex_state = 132}, [6389] = {.lex_state = 131}, - [6390] = {.lex_state = 132}, - [6391] = {.lex_state = 0}, + [6390] = {.lex_state = 0}, + [6391] = {.lex_state = 132}, [6392] = {.lex_state = 0}, [6393] = {.lex_state = 131}, - [6394] = {.lex_state = 132}, + [6394] = {.lex_state = 131}, [6395] = {.lex_state = 131}, - [6396] = {.lex_state = 132}, + [6396] = {.lex_state = 131}, [6397] = {.lex_state = 131}, - [6398] = {.lex_state = 18, .external_lex_state = 5}, + [6398] = {.lex_state = 132}, [6399] = {.lex_state = 132}, - [6400] = {.lex_state = 132}, - [6401] = {.lex_state = 132}, + [6400] = {.lex_state = 131}, + [6401] = {.lex_state = 0}, [6402] = {.lex_state = 131}, [6403] = {.lex_state = 132}, - [6404] = {.lex_state = 131}, - [6405] = {.lex_state = 131}, - [6406] = {.lex_state = 132}, - [6407] = {.lex_state = 132}, - [6408] = {.lex_state = 132}, + [6404] = {.lex_state = 132}, + [6405] = {.lex_state = 18, .external_lex_state = 5}, + [6406] = {.lex_state = 131}, + [6407] = {.lex_state = 18, .external_lex_state = 5}, + [6408] = {.lex_state = 18, .external_lex_state = 5}, [6409] = {.lex_state = 18, .external_lex_state = 5}, [6410] = {.lex_state = 132}, - [6411] = {.lex_state = 132}, - [6412] = {.lex_state = 18, .external_lex_state = 5}, - [6413] = {.lex_state = 18, .external_lex_state = 5}, + [6411] = {.lex_state = 0}, + [6412] = {.lex_state = 132}, + [6413] = {.lex_state = 132}, [6414] = {.lex_state = 131}, - [6415] = {.lex_state = 18, .external_lex_state = 5}, - [6416] = {.lex_state = 131}, - [6417] = {.lex_state = 132}, - [6418] = {.lex_state = 18, .external_lex_state = 5}, - [6419] = {.lex_state = 131}, - [6420] = {.lex_state = 132}, - [6421] = {.lex_state = 131}, - [6422] = {.lex_state = 0}, + [6415] = {.lex_state = 132}, + [6416] = {.lex_state = 132}, + [6417] = {.lex_state = 18, .external_lex_state = 5}, + [6418] = {.lex_state = 0}, + [6419] = {.lex_state = 132}, + [6420] = {.lex_state = 131}, + [6421] = {.lex_state = 132}, + [6422] = {.lex_state = 132}, [6423] = {.lex_state = 18, .external_lex_state = 5}, - [6424] = {.lex_state = 0}, - [6425] = {.lex_state = 131}, - [6426] = {.lex_state = 0}, + [6424] = {.lex_state = 131}, + [6425] = {.lex_state = 132}, + [6426] = {.lex_state = 131}, [6427] = {.lex_state = 132}, - [6428] = {.lex_state = 132}, - [6429] = {.lex_state = 18, .external_lex_state = 5}, - [6430] = {.lex_state = 18, .external_lex_state = 5}, - [6431] = {.lex_state = 18, .external_lex_state = 5}, - [6432] = {.lex_state = 131}, + [6428] = {.lex_state = 0}, + [6429] = {.lex_state = 0}, + [6430] = {.lex_state = 131}, + [6431] = {.lex_state = 0}, + [6432] = {.lex_state = 18, .external_lex_state = 5}, [6433] = {.lex_state = 18, .external_lex_state = 5}, - [6434] = {.lex_state = 132}, - [6435] = {.lex_state = 0}, - [6436] = {.lex_state = 0}, - [6437] = {.lex_state = 132}, - [6438] = {.lex_state = 0}, + [6434] = {.lex_state = 18, .external_lex_state = 5}, + [6435] = {.lex_state = 18, .external_lex_state = 5}, + [6436] = {.lex_state = 18, .external_lex_state = 5}, + [6437] = {.lex_state = 131}, + [6438] = {.lex_state = 132}, [6439] = {.lex_state = 0, .external_lex_state = 5}, - [6440] = {.lex_state = 2}, - [6441] = {.lex_state = 132}, - [6442] = {.lex_state = 0, .external_lex_state = 5}, - [6443] = {.lex_state = 132}, - [6444] = {.lex_state = 132}, + [6440] = {.lex_state = 132}, + [6441] = {.lex_state = 2}, + [6442] = {.lex_state = 0}, + [6443] = {.lex_state = 0, .external_lex_state = 5}, + [6444] = {.lex_state = 131}, [6445] = {.lex_state = 0, .external_lex_state = 5}, - [6446] = {.lex_state = 10}, - [6447] = {.lex_state = 0}, - [6448] = {.lex_state = 0, .external_lex_state = 5}, - [6449] = {.lex_state = 2}, - [6450] = {.lex_state = 132}, - [6451] = {.lex_state = 131}, - [6452] = {.lex_state = 2}, - [6453] = {.lex_state = 132}, - [6454] = {.lex_state = 2}, + [6446] = {.lex_state = 132}, + [6447] = {.lex_state = 132}, + [6448] = {.lex_state = 0}, + [6449] = {.lex_state = 131}, + [6450] = {.lex_state = 0, .external_lex_state = 5}, + [6451] = {.lex_state = 0}, + [6452] = {.lex_state = 0}, + [6453] = {.lex_state = 0}, + [6454] = {.lex_state = 0}, [6455] = {.lex_state = 132}, - [6456] = {.lex_state = 2}, - [6457] = {.lex_state = 132}, - [6458] = {.lex_state = 132}, - [6459] = {.lex_state = 0, .external_lex_state = 5}, - [6460] = {.lex_state = 132}, - [6461] = {.lex_state = 0}, - [6462] = {.lex_state = 0}, - [6463] = {.lex_state = 0}, - [6464] = {.lex_state = 0}, - [6465] = {.lex_state = 2}, - [6466] = {.lex_state = 0}, - [6467] = {.lex_state = 132}, + [6456] = {.lex_state = 0}, + [6457] = {.lex_state = 2}, + [6458] = {.lex_state = 0, .external_lex_state = 5}, + [6459] = {.lex_state = 0}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 0, .external_lex_state = 5}, + [6462] = {.lex_state = 2}, + [6463] = {.lex_state = 10}, + [6464] = {.lex_state = 2}, + [6465] = {.lex_state = 0, .external_lex_state = 5}, + [6466] = {.lex_state = 0, .external_lex_state = 5}, + [6467] = {.lex_state = 0}, [6468] = {.lex_state = 132}, - [6469] = {.lex_state = 0, .external_lex_state = 5}, - [6470] = {.lex_state = 0}, - [6471] = {.lex_state = 0, .external_lex_state = 5}, - [6472] = {.lex_state = 0}, - [6473] = {.lex_state = 0}, + [6469] = {.lex_state = 131}, + [6470] = {.lex_state = 131}, + [6471] = {.lex_state = 0}, + [6472] = {.lex_state = 132}, + [6473] = {.lex_state = 2}, [6474] = {.lex_state = 0, .external_lex_state = 5}, - [6475] = {.lex_state = 0, .external_lex_state = 5}, - [6476] = {.lex_state = 0}, - [6477] = {.lex_state = 2}, - [6478] = {.lex_state = 2}, - [6479] = {.lex_state = 132}, + [6475] = {.lex_state = 2}, + [6476] = {.lex_state = 0, .external_lex_state = 5}, + [6477] = {.lex_state = 0}, + [6478] = {.lex_state = 0, .external_lex_state = 5}, + [6479] = {.lex_state = 0}, [6480] = {.lex_state = 0, .external_lex_state = 5}, - [6481] = {.lex_state = 0, .external_lex_state = 5}, - [6482] = {.lex_state = 0}, - [6483] = {.lex_state = 0}, - [6484] = {.lex_state = 0}, - [6485] = {.lex_state = 0, .external_lex_state = 5}, - [6486] = {.lex_state = 2}, - [6487] = {.lex_state = 10}, - [6488] = {.lex_state = 131}, - [6489] = {.lex_state = 0}, - [6490] = {.lex_state = 0, .external_lex_state = 5}, - [6491] = {.lex_state = 0}, - [6492] = {.lex_state = 131}, - [6493] = {.lex_state = 0}, + [6481] = {.lex_state = 132}, + [6482] = {.lex_state = 2}, + [6483] = {.lex_state = 1}, + [6484] = {.lex_state = 132}, + [6485] = {.lex_state = 0}, + [6486] = {.lex_state = 0}, + [6487] = {.lex_state = 0}, + [6488] = {.lex_state = 0}, + [6489] = {.lex_state = 2}, + [6490] = {.lex_state = 132}, + [6491] = {.lex_state = 2}, + [6492] = {.lex_state = 0}, + [6493] = {.lex_state = 132}, [6494] = {.lex_state = 0, .external_lex_state = 5}, - [6495] = {.lex_state = 131}, - [6496] = {.lex_state = 0}, - [6497] = {.lex_state = 0}, - [6498] = {.lex_state = 1}, - [6499] = {.lex_state = 0}, - [6500] = {.lex_state = 2}, - [6501] = {.lex_state = 0, .external_lex_state = 5}, - [6502] = {.lex_state = 2}, - [6503] = {.lex_state = 0, .external_lex_state = 5}, + [6495] = {.lex_state = 0, .external_lex_state = 5}, + [6496] = {.lex_state = 2}, + [6497] = {.lex_state = 0, .external_lex_state = 5}, + [6498] = {.lex_state = 0, .external_lex_state = 5}, + [6499] = {.lex_state = 0, .external_lex_state = 5}, + [6500] = {.lex_state = 0, .external_lex_state = 5}, + [6501] = {.lex_state = 0}, + [6502] = {.lex_state = 0}, + [6503] = {.lex_state = 0}, [6504] = {.lex_state = 0}, - [6505] = {.lex_state = 2}, + [6505] = {.lex_state = 10}, [6506] = {.lex_state = 0}, - [6507] = {.lex_state = 0, .external_lex_state = 5}, - [6508] = {.lex_state = 0, .external_lex_state = 5}, - [6509] = {.lex_state = 0}, - [6510] = {.lex_state = 0}, + [6507] = {.lex_state = 2}, + [6508] = {.lex_state = 2}, + [6509] = {.lex_state = 0, .external_lex_state = 5}, + [6510] = {.lex_state = 132}, [6511] = {.lex_state = 132}, - [6512] = {.lex_state = 0, .external_lex_state = 5}, + [6512] = {.lex_state = 132}, [6513] = {.lex_state = 132}, - [6514] = {.lex_state = 132}, - [6515] = {.lex_state = 2}, + [6514] = {.lex_state = 0, .external_lex_state = 5}, + [6515] = {.lex_state = 0, .external_lex_state = 5}, [6516] = {.lex_state = 132}, - [6517] = {.lex_state = 0}, + [6517] = {.lex_state = 2}, [6518] = {.lex_state = 0}, - [6519] = {.lex_state = 0, .external_lex_state = 5}, - [6520] = {.lex_state = 1}, - [6521] = {.lex_state = 0, .external_lex_state = 5}, + [6519] = {.lex_state = 1}, + [6520] = {.lex_state = 132}, + [6521] = {.lex_state = 0}, [6522] = {.lex_state = 0, .external_lex_state = 5}, [6523] = {.lex_state = 132}, - [6524] = {.lex_state = 0}, + [6524] = {.lex_state = 132}, [6525] = {.lex_state = 132}, [6526] = {.lex_state = 132}, [6527] = {.lex_state = 132}, - [6528] = {.lex_state = 132}, - [6529] = {.lex_state = 132}, - [6530] = {.lex_state = 132}, - [6531] = {.lex_state = 132}, + [6528] = {.lex_state = 0}, + [6529] = {.lex_state = 0}, + [6530] = {.lex_state = 1}, + [6531] = {.lex_state = 1}, [6532] = {.lex_state = 132}, - [6533] = {.lex_state = 1}, - [6534] = {.lex_state = 1}, - [6535] = {.lex_state = 0}, - [6536] = {.lex_state = 132}, - [6537] = {.lex_state = 1}, - [6538] = {.lex_state = 0}, - [6539] = {.lex_state = 132}, + [6533] = {.lex_state = 0}, + [6534] = {.lex_state = 132}, + [6535] = {.lex_state = 132}, + [6536] = {.lex_state = 0}, + [6537] = {.lex_state = 132}, + [6538] = {.lex_state = 1}, + [6539] = {.lex_state = 1}, [6540] = {.lex_state = 132}, - [6541] = {.lex_state = 132}, - [6542] = {.lex_state = 0}, + [6541] = {.lex_state = 1}, + [6542] = {.lex_state = 10}, [6543] = {.lex_state = 132}, [6544] = {.lex_state = 0}, [6545] = {.lex_state = 1}, [6546] = {.lex_state = 132}, - [6547] = {.lex_state = 132}, - [6548] = {.lex_state = 132}, + [6547] = {.lex_state = 131}, + [6548] = {.lex_state = 0}, [6549] = {.lex_state = 132}, [6550] = {.lex_state = 132}, [6551] = {.lex_state = 132}, [6552] = {.lex_state = 132}, - [6553] = {.lex_state = 132}, - [6554] = {.lex_state = 132}, - [6555] = {.lex_state = 132}, - [6556] = {.lex_state = 132}, + [6553] = {.lex_state = 1}, + [6554] = {.lex_state = 1}, + [6555] = {.lex_state = 1}, + [6556] = {.lex_state = 131}, [6557] = {.lex_state = 132}, [6558] = {.lex_state = 132}, - [6559] = {.lex_state = 0}, + [6559] = {.lex_state = 132}, [6560] = {.lex_state = 132}, [6561] = {.lex_state = 132}, [6562] = {.lex_state = 132}, [6563] = {.lex_state = 0}, [6564] = {.lex_state = 132}, - [6565] = {.lex_state = 1}, + [6565] = {.lex_state = 132}, [6566] = {.lex_state = 1}, [6567] = {.lex_state = 132}, - [6568] = {.lex_state = 131}, - [6569] = {.lex_state = 1}, - [6570] = {.lex_state = 132}, - [6571] = {.lex_state = 1}, + [6568] = {.lex_state = 1}, + [6569] = {.lex_state = 132}, + [6570] = {.lex_state = 1}, + [6571] = {.lex_state = 132}, [6572] = {.lex_state = 132}, - [6573] = {.lex_state = 132}, - [6574] = {.lex_state = 1}, - [6575] = {.lex_state = 132}, - [6576] = {.lex_state = 132}, + [6573] = {.lex_state = 0}, + [6574] = {.lex_state = 132}, + [6575] = {.lex_state = 0}, + [6576] = {.lex_state = 1}, [6577] = {.lex_state = 132}, - [6578] = {.lex_state = 1}, - [6579] = {.lex_state = 1}, - [6580] = {.lex_state = 1}, + [6578] = {.lex_state = 132}, + [6579] = {.lex_state = 132}, + [6580] = {.lex_state = 0}, [6581] = {.lex_state = 132}, - [6582] = {.lex_state = 1}, + [6582] = {.lex_state = 132}, [6583] = {.lex_state = 132}, - [6584] = {.lex_state = 0}, - [6585] = {.lex_state = 1}, - [6586] = {.lex_state = 1}, - [6587] = {.lex_state = 132}, - [6588] = {.lex_state = 1}, - [6589] = {.lex_state = 1}, + [6584] = {.lex_state = 132}, + [6585] = {.lex_state = 132}, + [6586] = {.lex_state = 132}, + [6587] = {.lex_state = 0}, + [6588] = {.lex_state = 132}, + [6589] = {.lex_state = 132}, [6590] = {.lex_state = 132}, [6591] = {.lex_state = 1}, [6592] = {.lex_state = 132}, - [6593] = {.lex_state = 1}, - [6594] = {.lex_state = 1}, - [6595] = {.lex_state = 0}, - [6596] = {.lex_state = 1}, - [6597] = {.lex_state = 0}, - [6598] = {.lex_state = 1}, - [6599] = {.lex_state = 132}, + [6593] = {.lex_state = 132}, + [6594] = {.lex_state = 132}, + [6595] = {.lex_state = 132}, + [6596] = {.lex_state = 0}, + [6597] = {.lex_state = 132}, + [6598] = {.lex_state = 132}, + [6599] = {.lex_state = 1}, [6600] = {.lex_state = 1}, [6601] = {.lex_state = 1}, - [6602] = {.lex_state = 132}, + [6602] = {.lex_state = 1}, [6603] = {.lex_state = 1}, - [6604] = {.lex_state = 132}, + [6604] = {.lex_state = 1}, [6605] = {.lex_state = 1}, [6606] = {.lex_state = 132}, - [6607] = {.lex_state = 131}, - [6608] = {.lex_state = 1}, - [6609] = {.lex_state = 1}, - [6610] = {.lex_state = 131}, - [6611] = {.lex_state = 0}, - [6612] = {.lex_state = 0}, - [6613] = {.lex_state = 132}, + [6607] = {.lex_state = 132}, + [6608] = {.lex_state = 132}, + [6609] = {.lex_state = 132}, + [6610] = {.lex_state = 132}, + [6611] = {.lex_state = 132}, + [6612] = {.lex_state = 1}, + [6613] = {.lex_state = 0}, [6614] = {.lex_state = 132}, [6615] = {.lex_state = 1}, - [6616] = {.lex_state = 1}, - [6617] = {.lex_state = 10}, - [6618] = {.lex_state = 132}, - [6619] = {.lex_state = 131}, + [6616] = {.lex_state = 132}, + [6617] = {.lex_state = 132}, + [6618] = {.lex_state = 0}, + [6619] = {.lex_state = 132}, [6620] = {.lex_state = 132}, - [6621] = {.lex_state = 132}, + [6621] = {.lex_state = 1}, [6622] = {.lex_state = 132}, [6623] = {.lex_state = 132}, [6624] = {.lex_state = 132}, - [6625] = {.lex_state = 132}, - [6626] = {.lex_state = 1}, - [6627] = {.lex_state = 0}, - [6628] = {.lex_state = 0}, - [6629] = {.lex_state = 0}, + [6625] = {.lex_state = 1}, + [6626] = {.lex_state = 132}, + [6627] = {.lex_state = 1}, + [6628] = {.lex_state = 132}, + [6629] = {.lex_state = 132}, [6630] = {.lex_state = 0}, [6631] = {.lex_state = 132}, - [6632] = {.lex_state = 1}, + [6632] = {.lex_state = 10}, [6633] = {.lex_state = 132}, - [6634] = {.lex_state = 132}, - [6635] = {.lex_state = 132}, + [6634] = {.lex_state = 0}, + [6635] = {.lex_state = 1}, [6636] = {.lex_state = 132}, - [6637] = {.lex_state = 132}, + [6637] = {.lex_state = 1}, [6638] = {.lex_state = 132}, - [6639] = {.lex_state = 132}, - [6640] = {.lex_state = 132}, - [6641] = {.lex_state = 132}, + [6639] = {.lex_state = 1}, + [6640] = {.lex_state = 131}, + [6641] = {.lex_state = 0}, [6642] = {.lex_state = 132}, - [6643] = {.lex_state = 0}, + [6643] = {.lex_state = 132}, [6644] = {.lex_state = 132}, [6645] = {.lex_state = 132}, [6646] = {.lex_state = 132}, [6647] = {.lex_state = 132}, - [6648] = {.lex_state = 132}, + [6648] = {.lex_state = 1}, [6649] = {.lex_state = 132}, [6650] = {.lex_state = 132}, [6651] = {.lex_state = 132}, [6652] = {.lex_state = 132}, [6653] = {.lex_state = 132}, [6654] = {.lex_state = 132}, - [6655] = {.lex_state = 132}, + [6655] = {.lex_state = 1}, [6656] = {.lex_state = 132}, - [6657] = {.lex_state = 132}, - [6658] = {.lex_state = 132}, - [6659] = {.lex_state = 1}, - [6660] = {.lex_state = 1}, - [6661] = {.lex_state = 132}, - [6662] = {.lex_state = 132}, - [6663] = {.lex_state = 132}, - [6664] = {.lex_state = 1}, - [6665] = {.lex_state = 132}, + [6657] = {.lex_state = 1}, + [6658] = {.lex_state = 131}, + [6659] = {.lex_state = 132}, + [6660] = {.lex_state = 132}, + [6661] = {.lex_state = 1}, + [6662] = {.lex_state = 1}, + [6663] = {.lex_state = 0}, + [6664] = {.lex_state = 132}, + [6665] = {.lex_state = 1}, [6666] = {.lex_state = 132}, [6667] = {.lex_state = 132}, [6668] = {.lex_state = 132}, - [6669] = {.lex_state = 1}, - [6670] = {.lex_state = 132}, - [6671] = {.lex_state = 132}, + [6669] = {.lex_state = 132}, + [6670] = {.lex_state = 1}, + [6671] = {.lex_state = 0}, [6672] = {.lex_state = 1}, - [6673] = {.lex_state = 0}, - [6674] = {.lex_state = 132}, - [6675] = {.lex_state = 0}, + [6673] = {.lex_state = 132}, + [6674] = {.lex_state = 1}, + [6675] = {.lex_state = 132}, [6676] = {.lex_state = 1}, [6677] = {.lex_state = 0}, [6678] = {.lex_state = 132}, @@ -24208,159 +24225,159 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6680] = {.lex_state = 132}, [6681] = {.lex_state = 0}, [6682] = {.lex_state = 132}, - [6683] = {.lex_state = 10}, - [6684] = {.lex_state = 1}, - [6685] = {.lex_state = 132}, + [6683] = {.lex_state = 132}, + [6684] = {.lex_state = 132}, + [6685] = {.lex_state = 0}, [6686] = {.lex_state = 132}, - [6687] = {.lex_state = 132}, - [6688] = {.lex_state = 0}, + [6687] = {.lex_state = 1}, + [6688] = {.lex_state = 132}, [6689] = {.lex_state = 132}, - [6690] = {.lex_state = 1}, - [6691] = {.lex_state = 0}, + [6690] = {.lex_state = 132}, + [6691] = {.lex_state = 132}, [6692] = {.lex_state = 132}, - [6693] = {.lex_state = 132}, + [6693] = {.lex_state = 0}, [6694] = {.lex_state = 132}, - [6695] = {.lex_state = 18, .external_lex_state = 5}, - [6696] = {.lex_state = 0}, + [6695] = {.lex_state = 0}, + [6696] = {.lex_state = 10}, [6697] = {.lex_state = 132}, - [6698] = {.lex_state = 0}, + [6698] = {.lex_state = 10}, [6699] = {.lex_state = 132}, - [6700] = {.lex_state = 132}, - [6701] = {.lex_state = 10}, + [6700] = {.lex_state = 0}, + [6701] = {.lex_state = 132}, [6702] = {.lex_state = 0}, - [6703] = {.lex_state = 0}, - [6704] = {.lex_state = 0}, - [6705] = {.lex_state = 132}, + [6703] = {.lex_state = 132}, + [6704] = {.lex_state = 132}, + [6705] = {.lex_state = 0}, [6706] = {.lex_state = 132}, - [6707] = {.lex_state = 132}, - [6708] = {.lex_state = 0}, - [6709] = {.lex_state = 0}, + [6707] = {.lex_state = 0}, + [6708] = {.lex_state = 131}, + [6709] = {.lex_state = 18, .external_lex_state = 5}, [6710] = {.lex_state = 0}, [6711] = {.lex_state = 132}, - [6712] = {.lex_state = 132}, + [6712] = {.lex_state = 18, .external_lex_state = 5}, [6713] = {.lex_state = 0}, - [6714] = {.lex_state = 10}, - [6715] = {.lex_state = 132}, - [6716] = {.lex_state = 0}, - [6717] = {.lex_state = 132}, - [6718] = {.lex_state = 131}, - [6719] = {.lex_state = 131}, + [6714] = {.lex_state = 0}, + [6715] = {.lex_state = 0}, + [6716] = {.lex_state = 132}, + [6717] = {.lex_state = 0}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 132}, [6720] = {.lex_state = 132}, - [6721] = {.lex_state = 0}, - [6722] = {.lex_state = 132}, + [6721] = {.lex_state = 132}, + [6722] = {.lex_state = 10}, [6723] = {.lex_state = 132}, [6724] = {.lex_state = 132}, [6725] = {.lex_state = 0}, - [6726] = {.lex_state = 0}, + [6726] = {.lex_state = 10}, [6727] = {.lex_state = 132}, - [6728] = {.lex_state = 18, .external_lex_state = 5}, - [6729] = {.lex_state = 10}, + [6728] = {.lex_state = 0}, + [6729] = {.lex_state = 132}, [6730] = {.lex_state = 0}, - [6731] = {.lex_state = 132}, + [6731] = {.lex_state = 0}, [6732] = {.lex_state = 132}, - [6733] = {.lex_state = 10}, + [6733] = {.lex_state = 131}, [6734] = {.lex_state = 132}, - [6735] = {.lex_state = 18, .external_lex_state = 5}, + [6735] = {.lex_state = 0}, [6736] = {.lex_state = 0}, - [6737] = {.lex_state = 18, .external_lex_state = 5}, - [6738] = {.lex_state = 132}, + [6737] = {.lex_state = 131}, + [6738] = {.lex_state = 18, .external_lex_state = 5}, [6739] = {.lex_state = 132}, - [6740] = {.lex_state = 0}, + [6740] = {.lex_state = 132}, [6741] = {.lex_state = 0}, - [6742] = {.lex_state = 132}, - [6743] = {.lex_state = 0}, - [6744] = {.lex_state = 0}, - [6745] = {.lex_state = 132}, - [6746] = {.lex_state = 132}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 10}, + [6744] = {.lex_state = 131}, + [6745] = {.lex_state = 0}, + [6746] = {.lex_state = 0}, [6747] = {.lex_state = 0}, - [6748] = {.lex_state = 0}, - [6749] = {.lex_state = 0}, + [6748] = {.lex_state = 132}, + [6749] = {.lex_state = 132}, [6750] = {.lex_state = 0}, - [6751] = {.lex_state = 132}, - [6752] = {.lex_state = 0}, - [6753] = {.lex_state = 132}, - [6754] = {.lex_state = 0}, - [6755] = {.lex_state = 10}, + [6751] = {.lex_state = 0}, + [6752] = {.lex_state = 10}, + [6753] = {.lex_state = 0}, + [6754] = {.lex_state = 18, .external_lex_state = 5}, + [6755] = {.lex_state = 132}, [6756] = {.lex_state = 10}, [6757] = {.lex_state = 132}, - [6758] = {.lex_state = 132}, - [6759] = {.lex_state = 0}, - [6760] = {.lex_state = 2}, - [6761] = {.lex_state = 132}, - [6762] = {.lex_state = 0}, - [6763] = {.lex_state = 0}, + [6758] = {.lex_state = 0}, + [6759] = {.lex_state = 132}, + [6760] = {.lex_state = 10}, + [6761] = {.lex_state = 0}, + [6762] = {.lex_state = 132}, + [6763] = {.lex_state = 2}, [6764] = {.lex_state = 132}, - [6765] = {.lex_state = 131}, - [6766] = {.lex_state = 0}, - [6767] = {.lex_state = 132}, - [6768] = {.lex_state = 0}, - [6769] = {.lex_state = 131}, - [6770] = {.lex_state = 132}, + [6765] = {.lex_state = 4}, + [6766] = {.lex_state = 132}, + [6767] = {.lex_state = 0}, + [6768] = {.lex_state = 132}, + [6769] = {.lex_state = 2}, + [6770] = {.lex_state = 2}, [6771] = {.lex_state = 132}, [6772] = {.lex_state = 0}, [6773] = {.lex_state = 0}, - [6774] = {.lex_state = 131}, - [6775] = {.lex_state = 2}, - [6776] = {.lex_state = 132}, - [6777] = {.lex_state = 0}, + [6774] = {.lex_state = 132}, + [6775] = {.lex_state = 131}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 18, .external_lex_state = 5}, [6778] = {.lex_state = 0}, - [6779] = {.lex_state = 10}, + [6779] = {.lex_state = 132}, [6780] = {.lex_state = 0}, [6781] = {.lex_state = 10}, [6782] = {.lex_state = 0}, [6783] = {.lex_state = 132}, [6784] = {.lex_state = 132}, - [6785] = {.lex_state = 18, .external_lex_state = 5}, + [6785] = {.lex_state = 0}, [6786] = {.lex_state = 132}, - [6787] = {.lex_state = 4}, - [6788] = {.lex_state = 0}, + [6787] = {.lex_state = 132}, + [6788] = {.lex_state = 132}, [6789] = {.lex_state = 132}, - [6790] = {.lex_state = 2}, - [6791] = {.lex_state = 0}, + [6790] = {.lex_state = 132}, + [6791] = {.lex_state = 132}, [6792] = {.lex_state = 132}, - [6793] = {.lex_state = 132}, - [6794] = {.lex_state = 10}, - [6795] = {.lex_state = 132}, - [6796] = {.lex_state = 10}, + [6793] = {.lex_state = 0}, + [6794] = {.lex_state = 0}, + [6795] = {.lex_state = 0}, + [6796] = {.lex_state = 0}, [6797] = {.lex_state = 0}, [6798] = {.lex_state = 0}, [6799] = {.lex_state = 0}, - [6800] = {.lex_state = 0}, - [6801] = {.lex_state = 0}, + [6800] = {.lex_state = 10}, + [6801] = {.lex_state = 10}, [6802] = {.lex_state = 0}, [6803] = {.lex_state = 0}, [6804] = {.lex_state = 0}, [6805] = {.lex_state = 0}, - [6806] = {.lex_state = 0}, + [6806] = {.lex_state = 1}, [6807] = {.lex_state = 0}, [6808] = {.lex_state = 0}, [6809] = {.lex_state = 0}, [6810] = {.lex_state = 0}, - [6811] = {.lex_state = 0}, + [6811] = {.lex_state = 10}, [6812] = {.lex_state = 0}, [6813] = {.lex_state = 0}, [6814] = {.lex_state = 0}, [6815] = {.lex_state = 0}, [6816] = {.lex_state = 0}, [6817] = {.lex_state = 0}, - [6818] = {.lex_state = 10}, + [6818] = {.lex_state = 0}, [6819] = {.lex_state = 0}, [6820] = {.lex_state = 0}, [6821] = {.lex_state = 0}, [6822] = {.lex_state = 0}, [6823] = {.lex_state = 0}, - [6824] = {.lex_state = 4}, - [6825] = {.lex_state = 10}, - [6826] = {.lex_state = 10}, + [6824] = {.lex_state = 0}, + [6825] = {.lex_state = 0}, + [6826] = {.lex_state = 0}, [6827] = {.lex_state = 0}, - [6828] = {.lex_state = 0}, - [6829] = {.lex_state = 0}, - [6830] = {.lex_state = 10}, - [6831] = {.lex_state = 10}, + [6828] = {.lex_state = 10}, + [6829] = {.lex_state = 10}, + [6830] = {.lex_state = 0}, + [6831] = {.lex_state = 1}, [6832] = {.lex_state = 0}, - [6833] = {.lex_state = 10}, - [6834] = {.lex_state = 0}, - [6835] = {.lex_state = 0}, + [6833] = {.lex_state = 0}, + [6834] = {.lex_state = 132}, + [6835] = {.lex_state = 10}, [6836] = {.lex_state = 10}, [6837] = {.lex_state = 10}, [6838] = {.lex_state = 0}, @@ -24368,100 +24385,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6840] = {.lex_state = 0}, [6841] = {.lex_state = 0}, [6842] = {.lex_state = 0}, - [6843] = {.lex_state = 0}, + [6843] = {.lex_state = 10}, [6844] = {.lex_state = 0}, - [6845] = {.lex_state = 0}, + [6845] = {.lex_state = 10}, [6846] = {.lex_state = 0}, [6847] = {.lex_state = 0}, [6848] = {.lex_state = 0}, - [6849] = {.lex_state = 0}, - [6850] = {.lex_state = 0}, - [6851] = {.lex_state = 0}, + [6849] = {.lex_state = 10}, + [6850] = {.lex_state = 132}, + [6851] = {.lex_state = 132}, [6852] = {.lex_state = 0}, [6853] = {.lex_state = 0}, [6854] = {.lex_state = 0}, [6855] = {.lex_state = 0}, [6856] = {.lex_state = 0}, [6857] = {.lex_state = 0}, - [6858] = {.lex_state = 10}, - [6859] = {.lex_state = 10}, + [6858] = {.lex_state = 0}, + [6859] = {.lex_state = 0}, [6860] = {.lex_state = 0}, - [6861] = {.lex_state = 10}, + [6861] = {.lex_state = 0}, [6862] = {.lex_state = 0}, [6863] = {.lex_state = 0}, [6864] = {.lex_state = 0}, - [6865] = {.lex_state = 0}, + [6865] = {.lex_state = 10}, [6866] = {.lex_state = 0}, - [6867] = {.lex_state = 0}, - [6868] = {.lex_state = 132}, + [6867] = {.lex_state = 10}, + [6868] = {.lex_state = 0}, [6869] = {.lex_state = 0}, [6870] = {.lex_state = 0}, - [6871] = {.lex_state = 132}, + [6871] = {.lex_state = 0}, [6872] = {.lex_state = 0}, [6873] = {.lex_state = 0}, [6874] = {.lex_state = 10}, - [6875] = {.lex_state = 10}, + [6875] = {.lex_state = 0}, [6876] = {.lex_state = 0}, - [6877] = {.lex_state = 132}, - [6878] = {.lex_state = 10}, + [6877] = {.lex_state = 10}, + [6878] = {.lex_state = 0}, [6879] = {.lex_state = 0}, - [6880] = {.lex_state = 132}, + [6880] = {.lex_state = 0}, [6881] = {.lex_state = 0}, [6882] = {.lex_state = 0}, [6883] = {.lex_state = 0}, [6884] = {.lex_state = 0}, [6885] = {.lex_state = 0}, - [6886] = {.lex_state = 0, .external_lex_state = 5}, + [6886] = {.lex_state = 0}, [6887] = {.lex_state = 0}, [6888] = {.lex_state = 0}, [6889] = {.lex_state = 0}, [6890] = {.lex_state = 0}, [6891] = {.lex_state = 0}, - [6892] = {.lex_state = 0}, + [6892] = {.lex_state = 132}, [6893] = {.lex_state = 0}, - [6894] = {.lex_state = 10}, + [6894] = {.lex_state = 0}, [6895] = {.lex_state = 0}, [6896] = {.lex_state = 0}, - [6897] = {.lex_state = 10}, + [6897] = {.lex_state = 0}, [6898] = {.lex_state = 0}, [6899] = {.lex_state = 10}, - [6900] = {.lex_state = 132}, - [6901] = {.lex_state = 0}, + [6900] = {.lex_state = 10}, + [6901] = {.lex_state = 10}, [6902] = {.lex_state = 0}, [6903] = {.lex_state = 0}, - [6904] = {.lex_state = 0, .external_lex_state = 5}, + [6904] = {.lex_state = 0}, [6905] = {.lex_state = 0}, [6906] = {.lex_state = 0}, [6907] = {.lex_state = 0}, [6908] = {.lex_state = 0}, - [6909] = {.lex_state = 10}, - [6910] = {.lex_state = 10}, - [6911] = {.lex_state = 10}, + [6909] = {.lex_state = 0}, + [6910] = {.lex_state = 0}, + [6911] = {.lex_state = 0}, [6912] = {.lex_state = 0}, - [6913] = {.lex_state = 10}, - [6914] = {.lex_state = 0}, - [6915] = {.lex_state = 0}, - [6916] = {.lex_state = 10}, - [6917] = {.lex_state = 0}, + [6913] = {.lex_state = 0}, + [6914] = {.lex_state = 10}, + [6915] = {.lex_state = 10}, + [6916] = {.lex_state = 0}, + [6917] = {.lex_state = 10}, [6918] = {.lex_state = 0}, - [6919] = {.lex_state = 0, .external_lex_state = 5}, - [6920] = {.lex_state = 0, .external_lex_state = 5}, + [6919] = {.lex_state = 0}, + [6920] = {.lex_state = 0}, [6921] = {.lex_state = 0}, [6922] = {.lex_state = 0}, [6923] = {.lex_state = 0}, [6924] = {.lex_state = 10}, - [6925] = {.lex_state = 0}, + [6925] = {.lex_state = 132}, [6926] = {.lex_state = 0}, [6927] = {.lex_state = 0}, - [6928] = {.lex_state = 10}, + [6928] = {.lex_state = 0}, [6929] = {.lex_state = 0}, [6930] = {.lex_state = 0}, [6931] = {.lex_state = 0}, [6932] = {.lex_state = 0}, [6933] = {.lex_state = 0}, [6934] = {.lex_state = 0}, - [6935] = {.lex_state = 132}, - [6936] = {.lex_state = 0}, + [6935] = {.lex_state = 0}, + [6936] = {.lex_state = 132}, [6937] = {.lex_state = 0}, [6938] = {.lex_state = 0}, [6939] = {.lex_state = 0}, @@ -24469,26 +24486,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6941] = {.lex_state = 0}, [6942] = {.lex_state = 0}, [6943] = {.lex_state = 0}, - [6944] = {.lex_state = 0}, + [6944] = {.lex_state = 10}, [6945] = {.lex_state = 0}, [6946] = {.lex_state = 0}, [6947] = {.lex_state = 0}, - [6948] = {.lex_state = 0}, + [6948] = {.lex_state = 10}, [6949] = {.lex_state = 10}, - [6950] = {.lex_state = 0}, - [6951] = {.lex_state = 0}, + [6950] = {.lex_state = 10}, + [6951] = {.lex_state = 10}, [6952] = {.lex_state = 0}, [6953] = {.lex_state = 0}, [6954] = {.lex_state = 0}, [6955] = {.lex_state = 0}, - [6956] = {.lex_state = 0}, + [6956] = {.lex_state = 10}, [6957] = {.lex_state = 0}, [6958] = {.lex_state = 0}, [6959] = {.lex_state = 0}, - [6960] = {.lex_state = 1}, + [6960] = {.lex_state = 0}, [6961] = {.lex_state = 0}, - [6962] = {.lex_state = 10}, - [6963] = {.lex_state = 10}, + [6962] = {.lex_state = 0}, + [6963] = {.lex_state = 0}, [6964] = {.lex_state = 0}, [6965] = {.lex_state = 0}, [6966] = {.lex_state = 0}, @@ -24504,55 +24521,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6976] = {.lex_state = 0}, [6977] = {.lex_state = 0}, [6978] = {.lex_state = 0}, - [6979] = {.lex_state = 0}, - [6980] = {.lex_state = 0}, + [6979] = {.lex_state = 10}, + [6980] = {.lex_state = 10}, [6981] = {.lex_state = 0}, - [6982] = {.lex_state = 1}, + [6982] = {.lex_state = 0}, [6983] = {.lex_state = 0}, [6984] = {.lex_state = 10}, - [6985] = {.lex_state = 10}, + [6985] = {.lex_state = 0}, [6986] = {.lex_state = 0}, [6987] = {.lex_state = 0}, [6988] = {.lex_state = 0}, [6989] = {.lex_state = 0}, - [6990] = {.lex_state = 10}, - [6991] = {.lex_state = 10}, - [6992] = {.lex_state = 10}, - [6993] = {.lex_state = 10}, + [6990] = {.lex_state = 4}, + [6991] = {.lex_state = 0}, + [6992] = {.lex_state = 0}, + [6993] = {.lex_state = 0}, [6994] = {.lex_state = 0}, [6995] = {.lex_state = 0}, [6996] = {.lex_state = 0}, [6997] = {.lex_state = 0}, [6998] = {.lex_state = 0}, [6999] = {.lex_state = 0}, - [7000] = {.lex_state = 10}, - [7001] = {.lex_state = 10}, + [7000] = {.lex_state = 0}, + [7001] = {.lex_state = 0}, [7002] = {.lex_state = 0}, - [7003] = {.lex_state = 10}, - [7004] = {.lex_state = 0}, - [7005] = {.lex_state = 0}, + [7003] = {.lex_state = 0}, + [7004] = {.lex_state = 10}, + [7005] = {.lex_state = 10}, [7006] = {.lex_state = 0}, - [7007] = {.lex_state = 0}, - [7008] = {.lex_state = 0}, + [7007] = {.lex_state = 10}, + [7008] = {.lex_state = 132}, [7009] = {.lex_state = 0}, [7010] = {.lex_state = 0}, [7011] = {.lex_state = 0}, [7012] = {.lex_state = 0}, [7013] = {.lex_state = 0}, - [7014] = {.lex_state = 0}, - [7015] = {.lex_state = 0}, - [7016] = {.lex_state = 0}, - [7017] = {.lex_state = 0}, - [7018] = {.lex_state = 0}, - [7019] = {.lex_state = 0}, + [7014] = {.lex_state = 10}, + [7015] = {.lex_state = 10}, + [7016] = {.lex_state = 1}, + [7017] = {.lex_state = 10}, + [7018] = {.lex_state = 10}, + [7019] = {.lex_state = 10}, [7020] = {.lex_state = 0}, - [7021] = {.lex_state = 10}, + [7021] = {.lex_state = 0}, [7022] = {.lex_state = 10}, - [7023] = {.lex_state = 0}, + [7023] = {.lex_state = 10}, [7024] = {.lex_state = 0}, [7025] = {.lex_state = 0}, - [7026] = {.lex_state = 0}, - [7027] = {.lex_state = 0}, + [7026] = {.lex_state = 10}, + [7027] = {.lex_state = 10}, [7028] = {.lex_state = 10}, [7029] = {.lex_state = 0}, [7030] = {.lex_state = 0}, @@ -24563,16 +24580,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7035] = {.lex_state = 0}, [7036] = {.lex_state = 0}, [7037] = {.lex_state = 0}, - [7038] = {.lex_state = 0}, + [7038] = {.lex_state = 131, .external_lex_state = 4}, [7039] = {.lex_state = 0}, [7040] = {.lex_state = 0}, [7041] = {.lex_state = 0}, [7042] = {.lex_state = 0}, [7043] = {.lex_state = 0}, [7044] = {.lex_state = 0}, - [7045] = {.lex_state = 0}, + [7045] = {.lex_state = 10}, [7046] = {.lex_state = 0}, - [7047] = {.lex_state = 0}, + [7047] = {.lex_state = 0, .external_lex_state = 5}, [7048] = {.lex_state = 0}, [7049] = {.lex_state = 10}, [7050] = {.lex_state = 0}, @@ -24582,384 +24599,384 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7054] = {.lex_state = 10}, [7055] = {.lex_state = 0}, [7056] = {.lex_state = 0}, - [7057] = {.lex_state = 10}, + [7057] = {.lex_state = 0}, [7058] = {.lex_state = 0}, [7059] = {.lex_state = 0}, - [7060] = {.lex_state = 0}, + [7060] = {.lex_state = 1}, [7061] = {.lex_state = 0}, [7062] = {.lex_state = 0}, - [7063] = {.lex_state = 10}, + [7063] = {.lex_state = 0}, [7064] = {.lex_state = 0}, [7065] = {.lex_state = 0}, [7066] = {.lex_state = 0}, [7067] = {.lex_state = 0}, - [7068] = {.lex_state = 1}, + [7068] = {.lex_state = 0}, [7069] = {.lex_state = 0}, [7070] = {.lex_state = 0}, - [7071] = {.lex_state = 10}, + [7071] = {.lex_state = 0, .external_lex_state = 5}, [7072] = {.lex_state = 0}, [7073] = {.lex_state = 0}, [7074] = {.lex_state = 0}, [7075] = {.lex_state = 0}, [7076] = {.lex_state = 0}, - [7077] = {.lex_state = 0}, + [7077] = {.lex_state = 0, .external_lex_state = 5}, [7078] = {.lex_state = 0}, [7079] = {.lex_state = 0}, [7080] = {.lex_state = 0}, - [7081] = {.lex_state = 0}, + [7081] = {.lex_state = 132}, [7082] = {.lex_state = 0}, - [7083] = {.lex_state = 1}, + [7083] = {.lex_state = 132}, [7084] = {.lex_state = 0}, [7085] = {.lex_state = 0}, - [7086] = {.lex_state = 1}, - [7087] = {.lex_state = 132}, - [7088] = {.lex_state = 132}, - [7089] = {.lex_state = 131, .external_lex_state = 4}, + [7086] = {.lex_state = 0}, + [7087] = {.lex_state = 0}, + [7088] = {.lex_state = 0}, + [7089] = {.lex_state = 1}, [7090] = {.lex_state = 0}, - [7091] = {.lex_state = 10}, + [7091] = {.lex_state = 0}, [7092] = {.lex_state = 0}, - [7093] = {.lex_state = 132}, + [7093] = {.lex_state = 0}, [7094] = {.lex_state = 0}, [7095] = {.lex_state = 0}, [7096] = {.lex_state = 0}, - [7097] = {.lex_state = 0}, - [7098] = {.lex_state = 10}, + [7097] = {.lex_state = 0, .external_lex_state = 5}, + [7098] = {.lex_state = 0}, [7099] = {.lex_state = 0}, [7100] = {.lex_state = 0}, - [7101] = {.lex_state = 0}, + [7101] = {.lex_state = 10}, [7102] = {.lex_state = 0}, [7103] = {.lex_state = 0}, - [7104] = {.lex_state = 10}, + [7104] = {.lex_state = 0}, [7105] = {.lex_state = 0}, [7106] = {.lex_state = 0}, - [7107] = {.lex_state = 132}, - [7108] = {.lex_state = 0}, + [7107] = {.lex_state = 0}, + [7108] = {.lex_state = 132}, [7109] = {.lex_state = 0}, - [7110] = {.lex_state = 0}, - [7111] = {.lex_state = 0}, + [7110] = {.lex_state = 132}, + [7111] = {.lex_state = 132}, [7112] = {.lex_state = 0}, - [7113] = {.lex_state = 132}, + [7113] = {.lex_state = 0}, [7114] = {.lex_state = 0}, - [7115] = {.lex_state = 0}, + [7115] = {.lex_state = 132}, [7116] = {.lex_state = 0}, [7117] = {.lex_state = 0}, [7118] = {.lex_state = 0}, - [7119] = {.lex_state = 0}, + [7119] = {.lex_state = 132}, [7120] = {.lex_state = 0}, - [7121] = {.lex_state = 132}, - [7122] = {.lex_state = 0}, + [7121] = {.lex_state = 0}, + [7122] = {.lex_state = 10}, [7123] = {.lex_state = 0}, - [7124] = {.lex_state = 132}, + [7124] = {.lex_state = 0}, [7125] = {.lex_state = 132}, [7126] = {.lex_state = 0}, - [7127] = {.lex_state = 0}, - [7128] = {.lex_state = 10}, - [7129] = {.lex_state = 0}, - [7130] = {.lex_state = 14}, - [7131] = {.lex_state = 0}, - [7132] = {.lex_state = 132}, + [7127] = {.lex_state = 3}, + [7128] = {.lex_state = 0}, + [7129] = {.lex_state = 15}, + [7130] = {.lex_state = 132}, + [7131] = {.lex_state = 132}, + [7132] = {.lex_state = 0}, [7133] = {.lex_state = 0}, - [7134] = {.lex_state = 132}, - [7135] = {.lex_state = 132}, + [7134] = {.lex_state = 0}, + [7135] = {.lex_state = 0}, [7136] = {.lex_state = 0}, - [7137] = {.lex_state = 1}, + [7137] = {.lex_state = 0}, [7138] = {.lex_state = 132}, - [7139] = {.lex_state = 0}, - [7140] = {.lex_state = 0}, - [7141] = {.lex_state = 0}, + [7139] = {.lex_state = 1}, + [7140] = {.lex_state = 132}, + [7141] = {.lex_state = 132}, [7142] = {.lex_state = 0}, [7143] = {.lex_state = 0}, [7144] = {.lex_state = 0}, - [7145] = {.lex_state = 132}, + [7145] = {.lex_state = 0}, [7146] = {.lex_state = 0}, - [7147] = {.lex_state = 0}, - [7148] = {.lex_state = 0}, + [7147] = {.lex_state = 10}, + [7148] = {.lex_state = 132}, [7149] = {.lex_state = 0}, [7150] = {.lex_state = 0}, - [7151] = {.lex_state = 132}, + [7151] = {.lex_state = 0}, [7152] = {.lex_state = 0}, [7153] = {.lex_state = 0}, [7154] = {.lex_state = 0}, [7155] = {.lex_state = 0}, - [7156] = {.lex_state = 132}, - [7157] = {.lex_state = 0}, - [7158] = {.lex_state = 132}, - [7159] = {.lex_state = 14}, - [7160] = {.lex_state = 10}, - [7161] = {.lex_state = 0}, - [7162] = {.lex_state = 132}, - [7163] = {.lex_state = 0}, + [7156] = {.lex_state = 0}, + [7157] = {.lex_state = 132}, + [7158] = {.lex_state = 0}, + [7159] = {.lex_state = 0}, + [7160] = {.lex_state = 0}, + [7161] = {.lex_state = 15}, + [7162] = {.lex_state = 0}, + [7163] = {.lex_state = 132}, [7164] = {.lex_state = 0}, [7165] = {.lex_state = 0}, [7166] = {.lex_state = 132}, [7167] = {.lex_state = 0}, [7168] = {.lex_state = 0}, [7169] = {.lex_state = 0}, - [7170] = {.lex_state = 132}, + [7170] = {.lex_state = 0}, [7171] = {.lex_state = 0}, - [7172] = {.lex_state = 132}, + [7172] = {.lex_state = 0}, [7173] = {.lex_state = 0}, [7174] = {.lex_state = 0}, - [7175] = {.lex_state = 132}, + [7175] = {.lex_state = 0}, [7176] = {.lex_state = 0}, - [7177] = {.lex_state = 0}, + [7177] = {.lex_state = 132}, [7178] = {.lex_state = 0}, [7179] = {.lex_state = 0}, - [7180] = {.lex_state = 1}, - [7181] = {.lex_state = 0}, + [7180] = {.lex_state = 10}, + [7181] = {.lex_state = 132}, [7182] = {.lex_state = 0}, [7183] = {.lex_state = 0}, [7184] = {.lex_state = 0}, - [7185] = {.lex_state = 3}, + [7185] = {.lex_state = 0}, [7186] = {.lex_state = 132}, [7187] = {.lex_state = 0}, [7188] = {.lex_state = 0}, [7189] = {.lex_state = 0}, - [7190] = {.lex_state = 10}, - [7191] = {.lex_state = 132}, + [7190] = {.lex_state = 0}, + [7191] = {.lex_state = 10}, [7192] = {.lex_state = 0}, [7193] = {.lex_state = 0}, - [7194] = {.lex_state = 0}, + [7194] = {.lex_state = 132}, [7195] = {.lex_state = 0}, [7196] = {.lex_state = 0}, [7197] = {.lex_state = 0}, [7198] = {.lex_state = 0}, [7199] = {.lex_state = 0}, [7200] = {.lex_state = 132}, - [7201] = {.lex_state = 14}, + [7201] = {.lex_state = 0}, [7202] = {.lex_state = 0}, [7203] = {.lex_state = 0}, - [7204] = {.lex_state = 0}, + [7204] = {.lex_state = 132}, [7205] = {.lex_state = 0}, - [7206] = {.lex_state = 1}, - [7207] = {.lex_state = 0}, + [7206] = {.lex_state = 0}, + [7207] = {.lex_state = 132}, [7208] = {.lex_state = 0}, [7209] = {.lex_state = 0}, - [7210] = {.lex_state = 132}, - [7211] = {.lex_state = 132}, + [7210] = {.lex_state = 0}, + [7211] = {.lex_state = 0}, [7212] = {.lex_state = 0}, [7213] = {.lex_state = 0}, [7214] = {.lex_state = 0}, - [7215] = {.lex_state = 0}, - [7216] = {.lex_state = 14}, + [7215] = {.lex_state = 15}, + [7216] = {.lex_state = 0}, [7217] = {.lex_state = 0}, [7218] = {.lex_state = 0}, - [7219] = {.lex_state = 0}, + [7219] = {.lex_state = 132}, [7220] = {.lex_state = 0}, [7221] = {.lex_state = 0}, - [7222] = {.lex_state = 0}, - [7223] = {.lex_state = 0}, - [7224] = {.lex_state = 10}, - [7225] = {.lex_state = 0}, - [7226] = {.lex_state = 0}, + [7222] = {.lex_state = 132}, + [7223] = {.lex_state = 132}, + [7224] = {.lex_state = 0}, + [7225] = {.lex_state = 132}, + [7226] = {.lex_state = 10}, [7227] = {.lex_state = 0}, - [7228] = {.lex_state = 0}, + [7228] = {.lex_state = 132}, [7229] = {.lex_state = 0}, [7230] = {.lex_state = 0}, - [7231] = {.lex_state = 14}, + [7231] = {.lex_state = 0}, [7232] = {.lex_state = 0}, - [7233] = {.lex_state = 132}, + [7233] = {.lex_state = 0}, [7234] = {.lex_state = 0}, [7235] = {.lex_state = 0}, [7236] = {.lex_state = 0}, - [7237] = {.lex_state = 0}, - [7238] = {.lex_state = 0}, + [7237] = {.lex_state = 132}, + [7238] = {.lex_state = 132}, [7239] = {.lex_state = 0}, [7240] = {.lex_state = 0}, - [7241] = {.lex_state = 132}, - [7242] = {.lex_state = 0}, + [7241] = {.lex_state = 0}, + [7242] = {.lex_state = 132}, [7243] = {.lex_state = 0}, [7244] = {.lex_state = 0}, [7245] = {.lex_state = 0}, - [7246] = {.lex_state = 132}, + [7246] = {.lex_state = 0}, [7247] = {.lex_state = 0}, [7248] = {.lex_state = 132}, [7249] = {.lex_state = 0}, - [7250] = {.lex_state = 0}, - [7251] = {.lex_state = 132}, - [7252] = {.lex_state = 10}, - [7253] = {.lex_state = 10}, - [7254] = {.lex_state = 132}, - [7255] = {.lex_state = 10}, + [7250] = {.lex_state = 10}, + [7251] = {.lex_state = 1}, + [7252] = {.lex_state = 0}, + [7253] = {.lex_state = 0}, + [7254] = {.lex_state = 0}, + [7255] = {.lex_state = 0}, [7256] = {.lex_state = 0}, - [7257] = {.lex_state = 0}, - [7258] = {.lex_state = 0}, + [7257] = {.lex_state = 132}, + [7258] = {.lex_state = 132}, [7259] = {.lex_state = 132}, - [7260] = {.lex_state = 0}, - [7261] = {.lex_state = 132}, - [7262] = {.lex_state = 132}, - [7263] = {.lex_state = 132}, - [7264] = {.lex_state = 0}, - [7265] = {.lex_state = 0}, + [7260] = {.lex_state = 132}, + [7261] = {.lex_state = 0}, + [7262] = {.lex_state = 0}, + [7263] = {.lex_state = 0}, + [7264] = {.lex_state = 132}, + [7265] = {.lex_state = 10}, [7266] = {.lex_state = 0}, - [7267] = {.lex_state = 132}, + [7267] = {.lex_state = 0}, [7268] = {.lex_state = 0}, - [7269] = {.lex_state = 0}, - [7270] = {.lex_state = 0}, - [7271] = {.lex_state = 132}, + [7269] = {.lex_state = 132}, + [7270] = {.lex_state = 132}, + [7271] = {.lex_state = 0}, [7272] = {.lex_state = 0}, - [7273] = {.lex_state = 0}, - [7274] = {.lex_state = 132}, + [7273] = {.lex_state = 132}, + [7274] = {.lex_state = 0}, [7275] = {.lex_state = 0}, [7276] = {.lex_state = 0}, [7277] = {.lex_state = 0}, [7278] = {.lex_state = 0}, [7279] = {.lex_state = 0}, [7280] = {.lex_state = 0}, - [7281] = {.lex_state = 0}, + [7281] = {.lex_state = 132}, [7282] = {.lex_state = 0}, [7283] = {.lex_state = 0}, [7284] = {.lex_state = 0}, [7285] = {.lex_state = 132}, - [7286] = {.lex_state = 132}, - [7287] = {.lex_state = 0}, + [7286] = {.lex_state = 0}, + [7287] = {.lex_state = 132}, [7288] = {.lex_state = 132}, [7289] = {.lex_state = 0}, [7290] = {.lex_state = 0}, - [7291] = {.lex_state = 132}, - [7292] = {.lex_state = 0}, + [7291] = {.lex_state = 0}, + [7292] = {.lex_state = 132}, [7293] = {.lex_state = 132}, - [7294] = {.lex_state = 3}, + [7294] = {.lex_state = 0}, [7295] = {.lex_state = 0}, [7296] = {.lex_state = 0}, - [7297] = {.lex_state = 10}, - [7298] = {.lex_state = 0}, - [7299] = {.lex_state = 0}, - [7300] = {.lex_state = 132}, - [7301] = {.lex_state = 10}, + [7297] = {.lex_state = 0}, + [7298] = {.lex_state = 132}, + [7299] = {.lex_state = 132}, + [7300] = {.lex_state = 0}, + [7301] = {.lex_state = 0}, [7302] = {.lex_state = 0}, - [7303] = {.lex_state = 0}, + [7303] = {.lex_state = 132}, [7304] = {.lex_state = 132}, - [7305] = {.lex_state = 132}, - [7306] = {.lex_state = 132}, - [7307] = {.lex_state = 10}, + [7305] = {.lex_state = 15}, + [7306] = {.lex_state = 15}, + [7307] = {.lex_state = 0}, [7308] = {.lex_state = 0}, [7309] = {.lex_state = 0}, - [7310] = {.lex_state = 0}, - [7311] = {.lex_state = 132}, - [7312] = {.lex_state = 132}, - [7313] = {.lex_state = 132}, + [7310] = {.lex_state = 1}, + [7311] = {.lex_state = 0}, + [7312] = {.lex_state = 0}, + [7313] = {.lex_state = 15}, [7314] = {.lex_state = 0}, [7315] = {.lex_state = 0}, [7316] = {.lex_state = 0}, - [7317] = {.lex_state = 132}, - [7318] = {.lex_state = 0}, + [7317] = {.lex_state = 0}, + [7318] = {.lex_state = 132}, [7319] = {.lex_state = 0}, - [7320] = {.lex_state = 132}, - [7321] = {.lex_state = 132}, - [7322] = {.lex_state = 0}, + [7320] = {.lex_state = 0}, + [7321] = {.lex_state = 0}, + [7322] = {.lex_state = 132}, [7323] = {.lex_state = 0}, [7324] = {.lex_state = 0}, [7325] = {.lex_state = 0}, - [7326] = {.lex_state = 132}, - [7327] = {.lex_state = 0}, - [7328] = {.lex_state = 0}, - [7329] = {.lex_state = 0}, - [7330] = {.lex_state = 0}, - [7331] = {.lex_state = 0}, - [7332] = {.lex_state = 0}, - [7333] = {.lex_state = 132}, - [7334] = {.lex_state = 132}, - [7335] = {.lex_state = 132}, - [7336] = {.lex_state = 0}, + [7326] = {.lex_state = 0}, + [7327] = {.lex_state = 132}, + [7328] = {.lex_state = 3}, + [7329] = {.lex_state = 132}, + [7330] = {.lex_state = 132}, + [7331] = {.lex_state = 10}, + [7332] = {.lex_state = 132}, + [7333] = {.lex_state = 0}, + [7334] = {.lex_state = 0}, + [7335] = {.lex_state = 0}, + [7336] = {.lex_state = 10}, [7337] = {.lex_state = 0}, - [7338] = {.lex_state = 14}, + [7338] = {.lex_state = 132}, [7339] = {.lex_state = 0}, - [7340] = {.lex_state = 132}, + [7340] = {.lex_state = 0}, [7341] = {.lex_state = 0}, [7342] = {.lex_state = 0}, - [7343] = {.lex_state = 0}, + [7343] = {.lex_state = 10}, [7344] = {.lex_state = 132}, [7345] = {.lex_state = 0}, - [7346] = {.lex_state = 0}, + [7346] = {.lex_state = 131}, [7347] = {.lex_state = 0}, - [7348] = {.lex_state = 0}, + [7348] = {.lex_state = 132}, [7349] = {.lex_state = 0}, - [7350] = {.lex_state = 0}, - [7351] = {.lex_state = 0}, - [7352] = {.lex_state = 1}, + [7350] = {.lex_state = 131}, + [7351] = {.lex_state = 132}, + [7352] = {.lex_state = 0}, [7353] = {.lex_state = 0}, - [7354] = {.lex_state = 131}, - [7355] = {.lex_state = 0}, + [7354] = {.lex_state = 0}, + [7355] = {.lex_state = 0, .external_lex_state = 6}, [7356] = {.lex_state = 0}, [7357] = {.lex_state = 0}, [7358] = {.lex_state = 0}, - [7359] = {.lex_state = 0, .external_lex_state = 6}, - [7360] = {.lex_state = 10}, - [7361] = {.lex_state = 132}, - [7362] = {.lex_state = 0}, + [7359] = {.lex_state = 10}, + [7360] = {.lex_state = 0}, + [7361] = {.lex_state = 0}, + [7362] = {.lex_state = 0, .external_lex_state = 6}, [7363] = {.lex_state = 0}, - [7364] = {.lex_state = 10}, + [7364] = {.lex_state = 1}, [7365] = {.lex_state = 0}, [7366] = {.lex_state = 0}, - [7367] = {.lex_state = 1}, + [7367] = {.lex_state = 0}, [7368] = {.lex_state = 0}, [7369] = {.lex_state = 0}, - [7370] = {.lex_state = 0}, - [7371] = {.lex_state = 10}, + [7370] = {.lex_state = 0, .external_lex_state = 7}, + [7371] = {.lex_state = 1}, [7372] = {.lex_state = 0}, [7373] = {.lex_state = 0}, - [7374] = {.lex_state = 132}, + [7374] = {.lex_state = 0}, [7375] = {.lex_state = 0}, [7376] = {.lex_state = 0}, [7377] = {.lex_state = 0}, - [7378] = {.lex_state = 1}, - [7379] = {.lex_state = 10}, + [7378] = {.lex_state = 14}, + [7379] = {.lex_state = 0}, [7380] = {.lex_state = 0}, - [7381] = {.lex_state = 0}, + [7381] = {.lex_state = 10}, [7382] = {.lex_state = 0}, - [7383] = {.lex_state = 0}, + [7383] = {.lex_state = 0, .external_lex_state = 7}, [7384] = {.lex_state = 0}, [7385] = {.lex_state = 0}, [7386] = {.lex_state = 0}, - [7387] = {.lex_state = 0}, + [7387] = {.lex_state = 10}, [7388] = {.lex_state = 0}, - [7389] = {.lex_state = 0, .external_lex_state = 7}, - [7390] = {.lex_state = 0}, + [7389] = {.lex_state = 0}, + [7390] = {.lex_state = 0, .external_lex_state = 8}, [7391] = {.lex_state = 0}, [7392] = {.lex_state = 0}, [7393] = {.lex_state = 0}, [7394] = {.lex_state = 0}, - [7395] = {.lex_state = 132}, + [7395] = {.lex_state = 0}, [7396] = {.lex_state = 0}, [7397] = {.lex_state = 0}, - [7398] = {.lex_state = 0, .external_lex_state = 8}, - [7399] = {.lex_state = 0, .external_lex_state = 8}, + [7398] = {.lex_state = 0}, + [7399] = {.lex_state = 0}, [7400] = {.lex_state = 0}, [7401] = {.lex_state = 0}, [7402] = {.lex_state = 0}, [7403] = {.lex_state = 0}, - [7404] = {.lex_state = 1}, + [7404] = {.lex_state = 132}, [7405] = {.lex_state = 0}, - [7406] = {.lex_state = 1}, + [7406] = {.lex_state = 0}, [7407] = {.lex_state = 0}, [7408] = {.lex_state = 0}, - [7409] = {.lex_state = 0, .external_lex_state = 4}, - [7410] = {.lex_state = 1}, - [7411] = {.lex_state = 132}, - [7412] = {.lex_state = 0, .external_lex_state = 8}, + [7409] = {.lex_state = 0}, + [7410] = {.lex_state = 0}, + [7411] = {.lex_state = 10}, + [7412] = {.lex_state = 0}, [7413] = {.lex_state = 0}, - [7414] = {.lex_state = 0}, - [7415] = {.lex_state = 0}, + [7414] = {.lex_state = 0, .external_lex_state = 6}, + [7415] = {.lex_state = 0, .external_lex_state = 6}, [7416] = {.lex_state = 0}, [7417] = {.lex_state = 0}, - [7418] = {.lex_state = 0, .external_lex_state = 4}, + [7418] = {.lex_state = 14}, [7419] = {.lex_state = 0}, - [7420] = {.lex_state = 0}, - [7421] = {.lex_state = 0}, + [7420] = {.lex_state = 0, .external_lex_state = 8}, + [7421] = {.lex_state = 10}, [7422] = {.lex_state = 0}, [7423] = {.lex_state = 0}, [7424] = {.lex_state = 0}, [7425] = {.lex_state = 0}, - [7426] = {.lex_state = 132}, + [7426] = {.lex_state = 10}, [7427] = {.lex_state = 0}, - [7428] = {.lex_state = 0}, - [7429] = {.lex_state = 0, .external_lex_state = 8}, + [7428] = {.lex_state = 0, .external_lex_state = 8}, + [7429] = {.lex_state = 0}, [7430] = {.lex_state = 0}, [7431] = {.lex_state = 0}, - [7432] = {.lex_state = 4}, + [7432] = {.lex_state = 0}, [7433] = {.lex_state = 0}, - [7434] = {.lex_state = 0, .external_lex_state = 8}, + [7434] = {.lex_state = 1}, [7435] = {.lex_state = 0}, [7436] = {.lex_state = 0}, [7437] = {.lex_state = 0}, @@ -24967,93 +24984,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7439] = {.lex_state = 0}, [7440] = {.lex_state = 0}, [7441] = {.lex_state = 0}, - [7442] = {.lex_state = 0}, - [7443] = {.lex_state = 0, .external_lex_state = 8}, - [7444] = {.lex_state = 0}, + [7442] = {.lex_state = 10}, + [7443] = {.lex_state = 131}, + [7444] = {.lex_state = 131}, [7445] = {.lex_state = 0}, [7446] = {.lex_state = 0}, [7447] = {.lex_state = 0}, - [7448] = {.lex_state = 0}, + [7448] = {.lex_state = 10}, [7449] = {.lex_state = 0}, [7450] = {.lex_state = 0}, [7451] = {.lex_state = 0}, - [7452] = {.lex_state = 0, .external_lex_state = 7}, - [7453] = {.lex_state = 0, .external_lex_state = 7}, + [7452] = {.lex_state = 1}, + [7453] = {.lex_state = 0}, [7454] = {.lex_state = 0}, [7455] = {.lex_state = 0}, - [7456] = {.lex_state = 10}, - [7457] = {.lex_state = 0, .external_lex_state = 6}, - [7458] = {.lex_state = 0}, + [7456] = {.lex_state = 0}, + [7457] = {.lex_state = 1}, + [7458] = {.lex_state = 10}, [7459] = {.lex_state = 0}, - [7460] = {.lex_state = 0}, - [7461] = {.lex_state = 0, .external_lex_state = 8}, - [7462] = {.lex_state = 0, .external_lex_state = 7}, - [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 0}, + [7460] = {.lex_state = 1}, + [7461] = {.lex_state = 0}, + [7462] = {.lex_state = 0}, + [7463] = {.lex_state = 132}, + [7464] = {.lex_state = 0, .external_lex_state = 6}, [7465] = {.lex_state = 0}, - [7466] = {.lex_state = 0, .external_lex_state = 9}, - [7467] = {.lex_state = 0}, + [7466] = {.lex_state = 1}, + [7467] = {.lex_state = 0, .external_lex_state = 8}, [7468] = {.lex_state = 0}, - [7469] = {.lex_state = 0, .external_lex_state = 7}, - [7470] = {.lex_state = 10}, - [7471] = {.lex_state = 0}, - [7472] = {.lex_state = 0, .external_lex_state = 7}, - [7473] = {.lex_state = 0}, - [7474] = {.lex_state = 0}, + [7469] = {.lex_state = 0, .external_lex_state = 8}, + [7470] = {.lex_state = 0}, + [7471] = {.lex_state = 0, .external_lex_state = 8}, + [7472] = {.lex_state = 0}, + [7473] = {.lex_state = 1}, + [7474] = {.lex_state = 1}, [7475] = {.lex_state = 0}, - [7476] = {.lex_state = 0, .external_lex_state = 7}, - [7477] = {.lex_state = 10}, - [7478] = {.lex_state = 0, .external_lex_state = 9}, - [7479] = {.lex_state = 10}, - [7480] = {.lex_state = 0}, + [7476] = {.lex_state = 0}, + [7477] = {.lex_state = 0}, + [7478] = {.lex_state = 0}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 0, .external_lex_state = 7}, [7481] = {.lex_state = 0}, - [7482] = {.lex_state = 132}, + [7482] = {.lex_state = 0}, [7483] = {.lex_state = 0}, [7484] = {.lex_state = 0}, [7485] = {.lex_state = 0}, [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, - [7488] = {.lex_state = 10}, + [7488] = {.lex_state = 0}, [7489] = {.lex_state = 0}, - [7490] = {.lex_state = 0, .external_lex_state = 8}, + [7490] = {.lex_state = 0, .external_lex_state = 9}, [7491] = {.lex_state = 0}, [7492] = {.lex_state = 0}, [7493] = {.lex_state = 0}, - [7494] = {.lex_state = 0}, - [7495] = {.lex_state = 0}, - [7496] = {.lex_state = 0}, + [7494] = {.lex_state = 10}, + [7495] = {.lex_state = 10}, + [7496] = {.lex_state = 0, .external_lex_state = 8}, [7497] = {.lex_state = 0}, [7498] = {.lex_state = 0}, - [7499] = {.lex_state = 0}, + [7499] = {.lex_state = 10}, [7500] = {.lex_state = 0}, [7501] = {.lex_state = 0}, - [7502] = {.lex_state = 131}, - [7503] = {.lex_state = 0}, + [7502] = {.lex_state = 0}, + [7503] = {.lex_state = 1}, [7504] = {.lex_state = 0}, - [7505] = {.lex_state = 0, .external_lex_state = 8}, - [7506] = {.lex_state = 0}, + [7505] = {.lex_state = 0}, + [7506] = {.lex_state = 0, .external_lex_state = 7}, [7507] = {.lex_state = 0}, [7508] = {.lex_state = 0}, [7509] = {.lex_state = 0}, - [7510] = {.lex_state = 1}, + [7510] = {.lex_state = 0, .external_lex_state = 6}, [7511] = {.lex_state = 0}, - [7512] = {.lex_state = 0, .external_lex_state = 6}, - [7513] = {.lex_state = 0}, - [7514] = {.lex_state = 15}, + [7512] = {.lex_state = 0, .external_lex_state = 8}, + [7513] = {.lex_state = 10}, + [7514] = {.lex_state = 0}, [7515] = {.lex_state = 0}, - [7516] = {.lex_state = 1}, - [7517] = {.lex_state = 0}, - [7518] = {.lex_state = 0}, - [7519] = {.lex_state = 0}, - [7520] = {.lex_state = 0}, - [7521] = {.lex_state = 10}, - [7522] = {.lex_state = 0}, - [7523] = {.lex_state = 0}, - [7524] = {.lex_state = 0}, + [7516] = {.lex_state = 0}, + [7517] = {.lex_state = 10}, + [7518] = {.lex_state = 10}, + [7519] = {.lex_state = 0, .external_lex_state = 8}, + [7520] = {.lex_state = 4}, + [7521] = {.lex_state = 0, .external_lex_state = 8}, + [7522] = {.lex_state = 132}, + [7523] = {.lex_state = 16}, + [7524] = {.lex_state = 0, .external_lex_state = 8}, [7525] = {.lex_state = 0}, - [7526] = {.lex_state = 15}, + [7526] = {.lex_state = 0}, [7527] = {.lex_state = 0}, - [7528] = {.lex_state = 0}, + [7528] = {.lex_state = 0, .external_lex_state = 7}, [7529] = {.lex_state = 0}, [7530] = {.lex_state = 0}, [7531] = {.lex_state = 0}, @@ -25065,49 +25082,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7537] = {.lex_state = 0}, [7538] = {.lex_state = 0}, [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 15}, + [7540] = {.lex_state = 0}, [7541] = {.lex_state = 0}, - [7542] = {.lex_state = 0, .external_lex_state = 8}, + [7542] = {.lex_state = 0}, [7543] = {.lex_state = 0}, - [7544] = {.lex_state = 0}, - [7545] = {.lex_state = 0}, + [7544] = {.lex_state = 0, .external_lex_state = 4}, + [7545] = {.lex_state = 14}, [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 132}, - [7548] = {.lex_state = 131}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 0, .external_lex_state = 9}, [7549] = {.lex_state = 0}, [7550] = {.lex_state = 0}, [7551] = {.lex_state = 0}, - [7552] = {.lex_state = 0}, + [7552] = {.lex_state = 10}, [7553] = {.lex_state = 0}, [7554] = {.lex_state = 0}, - [7555] = {.lex_state = 0, .external_lex_state = 7}, - [7556] = {.lex_state = 0, .external_lex_state = 7}, - [7557] = {.lex_state = 0, .external_lex_state = 7}, - [7558] = {.lex_state = 0}, - [7559] = {.lex_state = 0, .external_lex_state = 9}, + [7555] = {.lex_state = 0}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 0}, + [7558] = {.lex_state = 10}, + [7559] = {.lex_state = 0}, [7560] = {.lex_state = 0}, - [7561] = {.lex_state = 10}, + [7561] = {.lex_state = 0}, [7562] = {.lex_state = 0}, [7563] = {.lex_state = 0}, [7564] = {.lex_state = 0}, - [7565] = {.lex_state = 4}, + [7565] = {.lex_state = 0}, [7566] = {.lex_state = 0}, [7567] = {.lex_state = 0}, - [7568] = {.lex_state = 1}, + [7568] = {.lex_state = 132}, [7569] = {.lex_state = 0}, [7570] = {.lex_state = 0}, [7571] = {.lex_state = 0}, [7572] = {.lex_state = 0}, [7573] = {.lex_state = 0}, - [7574] = {.lex_state = 0, .external_lex_state = 7}, - [7575] = {.lex_state = 132}, - [7576] = {.lex_state = 0}, + [7574] = {.lex_state = 1}, + [7575] = {.lex_state = 10}, + [7576] = {.lex_state = 132}, [7577] = {.lex_state = 0}, - [7578] = {.lex_state = 0}, + [7578] = {.lex_state = 10}, [7579] = {.lex_state = 0}, - [7580] = {.lex_state = 10}, - [7581] = {.lex_state = 0}, - [7582] = {.lex_state = 0}, + [7580] = {.lex_state = 0}, + [7581] = {.lex_state = 0, .external_lex_state = 9}, + [7582] = {.lex_state = 10}, [7583] = {.lex_state = 0}, [7584] = {.lex_state = 0}, [7585] = {.lex_state = 0}, @@ -25119,11 +25136,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7591] = {.lex_state = 0}, [7592] = {.lex_state = 0}, [7593] = {.lex_state = 0}, - [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 0}, + [7594] = {.lex_state = 10}, + [7595] = {.lex_state = 132}, [7596] = {.lex_state = 0}, - [7597] = {.lex_state = 132}, - [7598] = {.lex_state = 10}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 0}, [7599] = {.lex_state = 0}, [7600] = {.lex_state = 0}, [7601] = {.lex_state = 0}, @@ -25132,20 +25149,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7604] = {.lex_state = 0}, [7605] = {.lex_state = 0}, [7606] = {.lex_state = 0}, - [7607] = {.lex_state = 0}, - [7608] = {.lex_state = 0}, + [7607] = {.lex_state = 10}, + [7608] = {.lex_state = 4}, [7609] = {.lex_state = 0}, [7610] = {.lex_state = 0}, [7611] = {.lex_state = 0}, - [7612] = {.lex_state = 0, .external_lex_state = 8}, + [7612] = {.lex_state = 132}, [7613] = {.lex_state = 0}, - [7614] = {.lex_state = 132}, + [7614] = {.lex_state = 0}, [7615] = {.lex_state = 0}, [7616] = {.lex_state = 0}, - [7617] = {.lex_state = 0}, - [7618] = {.lex_state = 132}, + [7617] = {.lex_state = 0, .external_lex_state = 8}, + [7618] = {.lex_state = 0}, [7619] = {.lex_state = 0}, - [7620] = {.lex_state = 10}, + [7620] = {.lex_state = 0}, [7621] = {.lex_state = 0}, [7622] = {.lex_state = 0}, [7623] = {.lex_state = 0}, @@ -25156,71 +25173,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7628] = {.lex_state = 0}, [7629] = {.lex_state = 0}, [7630] = {.lex_state = 0}, - [7631] = {.lex_state = 0, .external_lex_state = 8}, - [7632] = {.lex_state = 0}, + [7631] = {.lex_state = 0, .external_lex_state = 9}, + [7632] = {.lex_state = 10}, [7633] = {.lex_state = 0}, [7634] = {.lex_state = 0}, [7635] = {.lex_state = 0}, [7636] = {.lex_state = 0}, [7637] = {.lex_state = 0}, [7638] = {.lex_state = 0}, - [7639] = {.lex_state = 0}, + [7639] = {.lex_state = 0, .external_lex_state = 8}, [7640] = {.lex_state = 0}, [7641] = {.lex_state = 0}, [7642] = {.lex_state = 0}, - [7643] = {.lex_state = 0, .external_lex_state = 8}, - [7644] = {.lex_state = 132}, + [7643] = {.lex_state = 0}, + [7644] = {.lex_state = 0, .external_lex_state = 6}, [7645] = {.lex_state = 0}, - [7646] = {.lex_state = 10}, + [7646] = {.lex_state = 0}, [7647] = {.lex_state = 0}, [7648] = {.lex_state = 0}, [7649] = {.lex_state = 0}, [7650] = {.lex_state = 0}, [7651] = {.lex_state = 0}, - [7652] = {.lex_state = 1}, + [7652] = {.lex_state = 0}, [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 0}, + [7654] = {.lex_state = 1}, [7655] = {.lex_state = 0}, [7656] = {.lex_state = 0}, - [7657] = {.lex_state = 0}, + [7657] = {.lex_state = 132}, [7658] = {.lex_state = 0}, - [7659] = {.lex_state = 1}, + [7659] = {.lex_state = 0}, [7660] = {.lex_state = 0}, - [7661] = {.lex_state = 10}, - [7662] = {.lex_state = 10}, + [7661] = {.lex_state = 0}, + [7662] = {.lex_state = 132}, [7663] = {.lex_state = 0}, - [7664] = {.lex_state = 15}, - [7665] = {.lex_state = 0}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 0, .external_lex_state = 6}, [7666] = {.lex_state = 0}, [7667] = {.lex_state = 0}, [7668] = {.lex_state = 0}, [7669] = {.lex_state = 0}, - [7670] = {.lex_state = 10}, - [7671] = {.lex_state = 10}, + [7670] = {.lex_state = 0}, + [7671] = {.lex_state = 0}, [7672] = {.lex_state = 0}, [7673] = {.lex_state = 0, .external_lex_state = 6}, - [7674] = {.lex_state = 10}, + [7674] = {.lex_state = 0}, [7675] = {.lex_state = 0}, [7676] = {.lex_state = 0}, [7677] = {.lex_state = 0}, [7678] = {.lex_state = 0}, - [7679] = {.lex_state = 0}, - [7680] = {.lex_state = 0}, + [7679] = {.lex_state = 0, .external_lex_state = 6}, + [7680] = {.lex_state = 132}, [7681] = {.lex_state = 0}, [7682] = {.lex_state = 0}, [7683] = {.lex_state = 0}, [7684] = {.lex_state = 0}, - [7685] = {.lex_state = 1}, + [7685] = {.lex_state = 0}, [7686] = {.lex_state = 0}, [7687] = {.lex_state = 0}, - [7688] = {.lex_state = 0, .external_lex_state = 6}, - [7689] = {.lex_state = 10}, - [7690] = {.lex_state = 0, .external_lex_state = 9}, + [7688] = {.lex_state = 0}, + [7689] = {.lex_state = 0}, + [7690] = {.lex_state = 0, .external_lex_state = 8}, [7691] = {.lex_state = 0}, - [7692] = {.lex_state = 0}, + [7692] = {.lex_state = 131}, [7693] = {.lex_state = 0}, [7694] = {.lex_state = 0}, - [7695] = {.lex_state = 0}, + [7695] = {.lex_state = 4}, [7696] = {.lex_state = 0}, [7697] = {.lex_state = 0}, [7698] = {.lex_state = 0}, @@ -25229,69 +25246,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7701] = {.lex_state = 0}, [7702] = {.lex_state = 0}, [7703] = {.lex_state = 0}, - [7704] = {.lex_state = 0}, + [7704] = {.lex_state = 0, .external_lex_state = 6}, [7705] = {.lex_state = 0}, [7706] = {.lex_state = 0}, - [7707] = {.lex_state = 0}, + [7707] = {.lex_state = 0, .external_lex_state = 6}, [7708] = {.lex_state = 0}, - [7709] = {.lex_state = 0, .external_lex_state = 7}, + [7709] = {.lex_state = 0}, [7710] = {.lex_state = 0}, [7711] = {.lex_state = 0}, [7712] = {.lex_state = 0}, [7713] = {.lex_state = 0}, [7714] = {.lex_state = 0}, - [7715] = {.lex_state = 4}, + [7715] = {.lex_state = 10}, [7716] = {.lex_state = 0}, [7717] = {.lex_state = 0}, - [7718] = {.lex_state = 131}, + [7718] = {.lex_state = 0}, [7719] = {.lex_state = 0}, [7720] = {.lex_state = 0}, [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 0}, - [7723] = {.lex_state = 0, .external_lex_state = 7}, - [7724] = {.lex_state = 0, .external_lex_state = 7}, + [7722] = {.lex_state = 10}, + [7723] = {.lex_state = 0}, + [7724] = {.lex_state = 0}, [7725] = {.lex_state = 0}, - [7726] = {.lex_state = 131}, - [7727] = {.lex_state = 10}, - [7728] = {.lex_state = 0}, - [7729] = {.lex_state = 0}, + [7726] = {.lex_state = 0}, + [7727] = {.lex_state = 0}, + [7728] = {.lex_state = 132}, + [7729] = {.lex_state = 1}, [7730] = {.lex_state = 0}, - [7731] = {.lex_state = 0, .external_lex_state = 7}, + [7731] = {.lex_state = 0}, [7732] = {.lex_state = 0}, - [7733] = {.lex_state = 0, .external_lex_state = 9}, - [7734] = {.lex_state = 1}, + [7733] = {.lex_state = 0}, + [7734] = {.lex_state = 0, .external_lex_state = 4}, [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 10}, + [7736] = {.lex_state = 0}, [7737] = {.lex_state = 0}, [7738] = {.lex_state = 0}, [7739] = {.lex_state = 0}, - [7740] = {.lex_state = 0}, - [7741] = {.lex_state = 10}, + [7740] = {.lex_state = 4}, + [7741] = {.lex_state = 0}, [7742] = {.lex_state = 0}, [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 1}, - [7745] = {.lex_state = 132}, + [7744] = {.lex_state = 0, .external_lex_state = 9}, + [7745] = {.lex_state = 14}, [7746] = {.lex_state = 0}, [7747] = {.lex_state = 0}, [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 132}, + [7749] = {.lex_state = 0}, [7750] = {.lex_state = 0}, - [7751] = {.lex_state = 0}, - [7752] = {.lex_state = 0}, - [7753] = {.lex_state = 0}, - [7754] = {.lex_state = 16}, + [7751] = {.lex_state = 0, .external_lex_state = 6}, + [7752] = {.lex_state = 132}, + [7753] = {.lex_state = 0, .external_lex_state = 4}, + [7754] = {.lex_state = 0, .external_lex_state = 6}, [7755] = {.lex_state = 0}, [7756] = {.lex_state = 0}, [7757] = {.lex_state = 0}, - [7758] = {.lex_state = 0, .external_lex_state = 4}, - [7759] = {.lex_state = 4}, + [7758] = {.lex_state = 0}, + [7759] = {.lex_state = 0, .external_lex_state = 6}, [7760] = {.lex_state = 0}, [7761] = {.lex_state = 0}, - [7762] = {.lex_state = 0, .external_lex_state = 8}, + [7762] = {.lex_state = 0}, [7763] = {.lex_state = 0}, [7764] = {.lex_state = 0}, [7765] = {.lex_state = 0}, - [7766] = {.lex_state = 0, .external_lex_state = 8}, + [7766] = {.lex_state = 132}, [7767] = {.lex_state = 0}, [7768] = {.lex_state = 132}, [7769] = {.lex_state = 0}, @@ -25302,19 +25319,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7774] = {.lex_state = 0}, [7775] = {.lex_state = 0}, [7776] = {.lex_state = 0}, - [7777] = {.lex_state = 132}, + [7777] = {.lex_state = 0}, [7778] = {.lex_state = 0}, - [7779] = {.lex_state = 10}, + [7779] = {.lex_state = 0}, [7780] = {.lex_state = 132}, - [7781] = {.lex_state = 131}, + [7781] = {.lex_state = 0}, [7782] = {.lex_state = 132}, [7783] = {.lex_state = 132}, - [7784] = {.lex_state = 0}, + [7784] = {.lex_state = 0, .external_lex_state = 8}, [7785] = {.lex_state = 0}, [7786] = {.lex_state = 132}, [7787] = {.lex_state = 0}, - [7788] = {.lex_state = 0}, - [7789] = {.lex_state = 0}, + [7788] = {.lex_state = 131}, + [7789] = {.lex_state = 1}, [7790] = {.lex_state = 0}, [7791] = {.lex_state = 132}, [7792] = {.lex_state = 0}, @@ -25380,6 +25397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), + [anon_sym_typevar] = ACTIONS(1), [anon_sym_namespace] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_ref] = ACTIONS(1), @@ -25569,135 +25587,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_compilation_unit] = STATE(7386), - [sym__top_level_item] = STATE(2070), - [sym_global_statement] = STATE(2090), - [sym_extern_alias_directive] = STATE(2090), - [sym_using_directive] = STATE(2090), - [sym_global_attribute] = STATE(2090), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2090), - [sym_file_scoped_namespace_declaration] = STATE(2090), - [sym_type_declaration] = STATE(2090), - [sym_class_declaration] = STATE(2068), - [sym__class_declaration_initializer] = STATE(6763), - [sym_struct_declaration] = STATE(2068), - [sym__struct_declaration_initializer] = STATE(6778), - [sym_enum_declaration] = STATE(2068), - [sym__enum_declaration_initializer] = STATE(6989), - [sym_interface_declaration] = STATE(2068), - [sym__interface_declaration_initializer] = STATE(6736), - [sym_delegate_declaration] = STATE(2068), - [sym__delegate_declaration_initializer] = STATE(6738), - [sym_record_declaration] = STATE(2068), - [sym__record_declaration_initializer] = STATE(6740), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2069), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2089), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_compilation_unit] = STATE(7696), + [sym__top_level_item] = STATE(2075), + [sym_global_statement] = STATE(2093), + [sym_extern_alias_directive] = STATE(2093), + [sym_using_directive] = STATE(2093), + [sym_global_attribute] = STATE(2093), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2093), + [sym_file_scoped_namespace_declaration] = STATE(2093), + [sym_type_declaration] = STATE(2093), + [sym_class_declaration] = STATE(2074), + [sym__class_declaration_initializer] = STATE(6700), + [sym_struct_declaration] = STATE(2074), + [sym__struct_declaration_initializer] = STATE(6707), + [sym_enum_declaration] = STATE(2074), + [sym__enum_declaration_initializer] = STATE(6879), + [sym_interface_declaration] = STATE(2074), + [sym__interface_declaration_initializer] = STATE(6745), + [sym_delegate_declaration] = STATE(2074), + [sym__delegate_declaration_initializer] = STATE(6757), + [sym_record_declaration] = STATE(2074), + [sym__record_declaration_initializer] = STATE(6705), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2080), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(1), [sym_preproc_endregion] = STATE(1), [sym_preproc_line] = STATE(1), @@ -25707,10 +25725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1), [sym_preproc_define] = STATE(1), [sym_preproc_undef] = STATE(1), - [aux_sym_compilation_unit_repeat1] = STATE(17), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), + [aux_sym_compilation_unit_repeat1] = STATE(16), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [ts_builtin_sym_end] = ACTIONS(23), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -25829,138 +25847,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [2] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2893), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7695), - [sym_preproc_elif_in_top_level] = STATE(7695), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7705), - [sym_preproc_elif_in_attribute_list] = STATE(7705), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2960), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7529), + [sym_preproc_elif_in_top_level] = STATE(7529), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7531), + [sym_preproc_elif_in_attribute_list] = STATE(7531), [sym_preproc_region] = STATE(2), [sym_preproc_endregion] = STATE(2), [sym_preproc_line] = STATE(2), @@ -25970,10 +25988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2), [sym_preproc_define] = STATE(2), [sym_preproc_undef] = STATE(2), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26093,138 +26111,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [3] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2980), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7425), - [sym_preproc_elif_in_top_level] = STATE(7425), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7535), - [sym_preproc_elif_in_attribute_list] = STATE(7535), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2892), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4457), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7762), + [sym_preproc_elif_in_top_level] = STATE(7762), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7767), + [sym_preproc_elif_in_expression] = STATE(7767), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7770), + [sym_preproc_elif_in_attribute_list] = STATE(7770), [sym_preproc_region] = STATE(3), [sym_preproc_endregion] = STATE(3), [sym_preproc_line] = STATE(3), @@ -26234,10 +26252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3), [sym_preproc_define] = STATE(3), [sym_preproc_undef] = STATE(3), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(13), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26357,138 +26375,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [4] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2895), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7796), - [sym_preproc_elif_in_top_level] = STATE(7796), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7797), - [sym_preproc_elif_in_expression] = STATE(7797), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7798), - [sym_preproc_elif_in_attribute_list] = STATE(7798), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2888), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7476), + [sym_preproc_elif_in_top_level] = STATE(7476), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7493), + [sym_preproc_elif_in_attribute_list] = STATE(7493), [sym_preproc_region] = STATE(4), [sym_preproc_endregion] = STATE(4), [sym_preproc_line] = STATE(4), @@ -26498,10 +26516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4), [sym_preproc_define] = STATE(4), [sym_preproc_undef] = STATE(4), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(11), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26621,138 +26639,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [5] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2980), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7533), - [sym_preproc_elif_in_top_level] = STATE(7533), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7535), - [sym_preproc_elif_in_attribute_list] = STATE(7535), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2888), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7666), + [sym_preproc_elif_in_top_level] = STATE(7666), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7493), + [sym_preproc_elif_in_attribute_list] = STATE(7493), [sym_preproc_region] = STATE(5), [sym_preproc_endregion] = STATE(5), [sym_preproc_line] = STATE(5), @@ -26762,10 +26780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5), [sym_preproc_define] = STATE(5), [sym_preproc_undef] = STATE(5), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26885,138 +26903,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [6] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2893), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7396), - [sym_preproc_elif_in_top_level] = STATE(7396), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7705), - [sym_preproc_elif_in_attribute_list] = STATE(7705), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2960), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7642), + [sym_preproc_elif_in_top_level] = STATE(7642), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7531), + [sym_preproc_elif_in_attribute_list] = STATE(7531), [sym_preproc_region] = STATE(6), [sym_preproc_endregion] = STATE(6), [sym_preproc_line] = STATE(6), @@ -27026,10 +27044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(6), [sym_preproc_define] = STATE(6), [sym_preproc_undef] = STATE(6), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -27149,138 +27167,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [7] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2980), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7396), - [sym_preproc_elif_in_top_level] = STATE(7396), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7535), - [sym_preproc_elif_in_attribute_list] = STATE(7535), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2960), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7666), + [sym_preproc_elif_in_top_level] = STATE(7666), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7531), + [sym_preproc_elif_in_attribute_list] = STATE(7531), [sym_preproc_region] = STATE(7), [sym_preproc_endregion] = STATE(7), [sym_preproc_line] = STATE(7), @@ -27290,9 +27308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(7), [sym_preproc_define] = STATE(7), [sym_preproc_undef] = STATE(7), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -27394,7 +27412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(221), + [aux_sym_preproc_if_token3] = ACTIONS(219), [aux_sym_preproc_else_token1] = ACTIONS(211), [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -27413,138 +27431,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [8] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2980), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7695), - [sym_preproc_elif_in_top_level] = STATE(7695), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7535), - [sym_preproc_elif_in_attribute_list] = STATE(7535), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2960), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7476), + [sym_preproc_elif_in_top_level] = STATE(7476), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7531), + [sym_preproc_elif_in_attribute_list] = STATE(7531), [sym_preproc_region] = STATE(8), [sym_preproc_endregion] = STATE(8), [sym_preproc_line] = STATE(8), @@ -27554,10 +27572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(8), [sym_preproc_define] = STATE(8), [sym_preproc_undef] = STATE(8), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(11), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -27658,7 +27676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(209), + [aux_sym_preproc_if_token3] = ACTIONS(217), [aux_sym_preproc_else_token1] = ACTIONS(211), [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -27677,134 +27695,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [9] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7645), - [sym_preproc_elif_in_top_level] = STATE(7645), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7660), + [sym_preproc_elif_in_top_level] = STATE(7660), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(9), [sym_preproc_endregion] = STATE(9), [sym_preproc_line] = STATE(9), @@ -27814,9 +27832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(9), [sym_preproc_define] = STATE(9), [sym_preproc_undef] = STATE(9), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -27937,134 +27955,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [10] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7667), - [sym_preproc_elif_in_top_level] = STATE(7667), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7551), + [sym_preproc_elif_in_top_level] = STATE(7551), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(10), [sym_preproc_endregion] = STATE(10), [sym_preproc_line] = STATE(10), @@ -28074,9 +28092,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(10), [sym_preproc_define] = STATE(10), [sym_preproc_undef] = STATE(10), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -28197,134 +28215,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [11] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7796), - [sym_preproc_elif_in_top_level] = STATE(7796), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7508), + [sym_preproc_elif_in_top_level] = STATE(7508), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(11), [sym_preproc_endregion] = STATE(11), [sym_preproc_line] = STATE(11), @@ -28334,10 +28352,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(11), [sym_preproc_define] = STATE(11), [sym_preproc_undef] = STATE(11), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -28438,7 +28456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(217), + [aux_sym_preproc_if_token3] = ACTIONS(231), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -28457,134 +28475,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [12] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7610), - [sym_preproc_elif_in_top_level] = STATE(7610), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7598), + [sym_preproc_elif_in_top_level] = STATE(7598), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(12), [sym_preproc_endregion] = STATE(12), [sym_preproc_line] = STATE(12), @@ -28594,9 +28612,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(12), [sym_preproc_define] = STATE(12), [sym_preproc_undef] = STATE(12), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -28698,7 +28716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(231), + [aux_sym_preproc_if_token3] = ACTIONS(233), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -28717,134 +28735,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [13] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7722), - [sym_preproc_elif_in_top_level] = STATE(7722), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7762), + [sym_preproc_elif_in_top_level] = STATE(7762), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(13), [sym_preproc_endregion] = STATE(13), [sym_preproc_line] = STATE(13), @@ -28854,10 +28872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(13), [sym_preproc_define] = STATE(13), [sym_preproc_undef] = STATE(13), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(9), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -28958,7 +28976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(233), + [aux_sym_preproc_if_token3] = ACTIONS(215), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -28977,134 +28995,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [14] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_else_in_top_level] = STATE(7500), - [sym_preproc_elif_in_top_level] = STATE(7500), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_else_in_top_level] = STATE(7475), + [sym_preproc_elif_in_top_level] = STATE(7475), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(14), [sym_preproc_endregion] = STATE(14), [sym_preproc_line] = STATE(14), @@ -29114,9 +29132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(14), [sym_preproc_define] = STATE(14), [sym_preproc_undef] = STATE(14), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -29237,134 +29255,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [15] = { - [sym__top_level_item] = STATE(2070), - [sym_global_statement] = STATE(2090), - [sym_extern_alias_directive] = STATE(2090), - [sym_using_directive] = STATE(2090), - [sym_global_attribute] = STATE(2090), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2090), - [sym_file_scoped_namespace_declaration] = STATE(2090), - [sym_type_declaration] = STATE(2090), - [sym_class_declaration] = STATE(2068), - [sym__class_declaration_initializer] = STATE(6763), - [sym_struct_declaration] = STATE(2068), - [sym__struct_declaration_initializer] = STATE(6778), - [sym_enum_declaration] = STATE(2068), - [sym__enum_declaration_initializer] = STATE(6989), - [sym_interface_declaration] = STATE(2068), - [sym__interface_declaration_initializer] = STATE(6736), - [sym_delegate_declaration] = STATE(2068), - [sym__delegate_declaration_initializer] = STATE(6738), - [sym_record_declaration] = STATE(2068), - [sym__record_declaration_initializer] = STATE(6740), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2069), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2089), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym__top_level_item] = STATE(2075), + [sym_global_statement] = STATE(2093), + [sym_extern_alias_directive] = STATE(2093), + [sym_using_directive] = STATE(2093), + [sym_global_attribute] = STATE(2093), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2093), + [sym_file_scoped_namespace_declaration] = STATE(2093), + [sym_type_declaration] = STATE(2093), + [sym_class_declaration] = STATE(2074), + [sym__class_declaration_initializer] = STATE(6700), + [sym_struct_declaration] = STATE(2074), + [sym__struct_declaration_initializer] = STATE(6707), + [sym_enum_declaration] = STATE(2074), + [sym__enum_declaration_initializer] = STATE(6879), + [sym_interface_declaration] = STATE(2074), + [sym__interface_declaration_initializer] = STATE(6745), + [sym_delegate_declaration] = STATE(2074), + [sym__delegate_declaration_initializer] = STATE(6757), + [sym_record_declaration] = STATE(2074), + [sym__record_declaration_initializer] = STATE(6705), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2080), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(15), [sym_preproc_endregion] = STATE(15), [sym_preproc_line] = STATE(15), @@ -29374,10 +29392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(15), [sym_preproc_define] = STATE(15), [sym_preproc_undef] = STATE(15), - [aux_sym_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), + [aux_sym_compilation_unit_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [ts_builtin_sym_end] = ACTIONS(237), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -29495,134 +29513,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [16] = { - [sym__top_level_item] = STATE(2070), - [sym_global_statement] = STATE(2090), - [sym_extern_alias_directive] = STATE(2090), - [sym_using_directive] = STATE(2090), - [sym_global_attribute] = STATE(2090), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2090), - [sym_file_scoped_namespace_declaration] = STATE(2090), - [sym_type_declaration] = STATE(2090), - [sym_class_declaration] = STATE(2068), - [sym__class_declaration_initializer] = STATE(6763), - [sym_struct_declaration] = STATE(2068), - [sym__struct_declaration_initializer] = STATE(6778), - [sym_enum_declaration] = STATE(2068), - [sym__enum_declaration_initializer] = STATE(6989), - [sym_interface_declaration] = STATE(2068), - [sym__interface_declaration_initializer] = STATE(6736), - [sym_delegate_declaration] = STATE(2068), - [sym__delegate_declaration_initializer] = STATE(6738), - [sym_record_declaration] = STATE(2068), - [sym__record_declaration_initializer] = STATE(6740), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2069), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2089), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym__top_level_item] = STATE(2075), + [sym_global_statement] = STATE(2093), + [sym_extern_alias_directive] = STATE(2093), + [sym_using_directive] = STATE(2093), + [sym_global_attribute] = STATE(2093), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2093), + [sym_file_scoped_namespace_declaration] = STATE(2093), + [sym_type_declaration] = STATE(2093), + [sym_class_declaration] = STATE(2074), + [sym__class_declaration_initializer] = STATE(6700), + [sym_struct_declaration] = STATE(2074), + [sym__struct_declaration_initializer] = STATE(6707), + [sym_enum_declaration] = STATE(2074), + [sym__enum_declaration_initializer] = STATE(6879), + [sym_interface_declaration] = STATE(2074), + [sym__interface_declaration_initializer] = STATE(6745), + [sym_delegate_declaration] = STATE(2074), + [sym__delegate_declaration_initializer] = STATE(6757), + [sym_record_declaration] = STATE(2074), + [sym__record_declaration_initializer] = STATE(6705), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2080), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(16), [sym_preproc_endregion] = STATE(16), [sym_preproc_line] = STATE(16), @@ -29632,269 +29650,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(16), [sym_preproc_define] = STATE(16), [sym_preproc_undef] = STATE(16), - [aux_sym_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [ts_builtin_sym_end] = ACTIONS(239), - [sym__identifier_token] = ACTIONS(241), - [anon_sym_extern] = ACTIONS(244), - [anon_sym_alias] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_global] = ACTIONS(253), - [anon_sym_using] = ACTIONS(256), - [anon_sym_unsafe] = ACTIONS(259), - [anon_sym_static] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_return] = ACTIONS(271), - [anon_sym_namespace] = ACTIONS(274), - [anon_sym_class] = ACTIONS(277), - [anon_sym_ref] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(283), - [anon_sym_enum] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(289), - [anon_sym_interface] = ACTIONS(292), - [anon_sym_delegate] = ACTIONS(295), - [anon_sym_record] = ACTIONS(298), - [anon_sym_abstract] = ACTIONS(301), - [anon_sym_async] = ACTIONS(262), - [anon_sym_const] = ACTIONS(301), - [anon_sym_file] = ACTIONS(304), - [anon_sym_fixed] = ACTIONS(307), - [anon_sym_internal] = ACTIONS(301), - [anon_sym_new] = ACTIONS(310), - [anon_sym_override] = ACTIONS(301), - [anon_sym_partial] = ACTIONS(301), - [anon_sym_private] = ACTIONS(301), - [anon_sym_protected] = ACTIONS(301), - [anon_sym_public] = ACTIONS(301), - [anon_sym_readonly] = ACTIONS(301), - [anon_sym_required] = ACTIONS(301), - [anon_sym_sealed] = ACTIONS(301), - [anon_sym_virtual] = ACTIONS(301), - [anon_sym_volatile] = ACTIONS(301), - [anon_sym_where] = ACTIONS(247), - [anon_sym_notnull] = ACTIONS(247), - [anon_sym_unmanaged] = ACTIONS(247), - [anon_sym_checked] = ACTIONS(313), - [anon_sym_BANG] = ACTIONS(316), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_PLUS] = ACTIONS(316), - [anon_sym_DASH_DASH] = ACTIONS(316), - [anon_sym_true] = ACTIONS(319), - [anon_sym_false] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_this] = ACTIONS(328), - [anon_sym_scoped] = ACTIONS(331), - [anon_sym_base] = ACTIONS(334), - [anon_sym_var] = ACTIONS(337), - [sym_predefined_type] = ACTIONS(340), - [anon_sym_break] = ACTIONS(343), - [anon_sym_unchecked] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_do] = ACTIONS(349), - [anon_sym_while] = ACTIONS(352), - [anon_sym_for] = ACTIONS(355), - [anon_sym_lock] = ACTIONS(358), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_switch] = ACTIONS(364), - [anon_sym_default] = ACTIONS(367), - [anon_sym_throw] = ACTIONS(370), - [anon_sym_try] = ACTIONS(373), - [anon_sym_when] = ACTIONS(247), - [anon_sym_await] = ACTIONS(376), - [anon_sym_foreach] = ACTIONS(379), - [anon_sym_goto] = ACTIONS(382), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_from] = ACTIONS(391), - [anon_sym_into] = ACTIONS(247), - [anon_sym_join] = ACTIONS(247), - [anon_sym_on] = ACTIONS(247), - [anon_sym_equals] = ACTIONS(247), - [anon_sym_let] = ACTIONS(247), - [anon_sym_orderby] = ACTIONS(247), - [anon_sym_ascending] = ACTIONS(247), - [anon_sym_descending] = ACTIONS(247), - [anon_sym_group] = ACTIONS(247), - [anon_sym_by] = ACTIONS(247), - [anon_sym_select] = ACTIONS(247), - [anon_sym_stackalloc] = ACTIONS(394), - [anon_sym_sizeof] = ACTIONS(397), - [anon_sym_typeof] = ACTIONS(400), - [anon_sym___makeref] = ACTIONS(403), - [anon_sym___reftype] = ACTIONS(406), - [anon_sym___refvalue] = ACTIONS(409), - [sym_null_literal] = ACTIONS(412), - [anon_sym_SQUOTE] = ACTIONS(415), - [sym_integer_literal] = ACTIONS(412), - [sym_real_literal] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(421), - [sym_verbatim_string_literal] = ACTIONS(418), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(427), - [sym_interpolation_verbatim_start] = ACTIONS(430), - [sym_interpolation_raw_start] = ACTIONS(433), - [sym_raw_string_start] = ACTIONS(436), - }, - [17] = { - [sym__top_level_item] = STATE(2070), - [sym_global_statement] = STATE(2090), - [sym_extern_alias_directive] = STATE(2090), - [sym_using_directive] = STATE(2090), - [sym_global_attribute] = STATE(2090), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2090), - [sym_file_scoped_namespace_declaration] = STATE(2090), - [sym_type_declaration] = STATE(2090), - [sym_class_declaration] = STATE(2068), - [sym__class_declaration_initializer] = STATE(6763), - [sym_struct_declaration] = STATE(2068), - [sym__struct_declaration_initializer] = STATE(6778), - [sym_enum_declaration] = STATE(2068), - [sym__enum_declaration_initializer] = STATE(6989), - [sym_interface_declaration] = STATE(2068), - [sym__interface_declaration_initializer] = STATE(6736), - [sym_delegate_declaration] = STATE(2068), - [sym__delegate_declaration_initializer] = STATE(6738), - [sym_record_declaration] = STATE(2068), - [sym__record_declaration_initializer] = STATE(6740), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2069), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2089), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(17), - [sym_preproc_endregion] = STATE(17), - [sym_preproc_line] = STATE(17), - [sym_preproc_pragma] = STATE(17), - [sym_preproc_nullable] = STATE(17), - [sym_preproc_error] = STATE(17), - [sym_preproc_warning] = STATE(17), - [sym_preproc_define] = STATE(17), - [sym_preproc_undef] = STATE(17), - [aux_sym_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [ts_builtin_sym_end] = ACTIONS(439), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [ts_builtin_sym_end] = ACTIONS(237), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -30010,149 +29770,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [18] = { - [sym__top_level_item] = STATE(2070), - [sym_global_statement] = STATE(2090), - [sym_extern_alias_directive] = STATE(2090), - [sym_using_directive] = STATE(2090), - [sym_global_attribute] = STATE(2090), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2090), - [sym_file_scoped_namespace_declaration] = STATE(2090), - [sym_type_declaration] = STATE(2090), - [sym_class_declaration] = STATE(2068), - [sym__class_declaration_initializer] = STATE(6763), - [sym_struct_declaration] = STATE(2068), - [sym__struct_declaration_initializer] = STATE(6778), - [sym_enum_declaration] = STATE(2068), - [sym__enum_declaration_initializer] = STATE(6989), - [sym_interface_declaration] = STATE(2068), - [sym__interface_declaration_initializer] = STATE(6736), - [sym_delegate_declaration] = STATE(2068), - [sym__delegate_declaration_initializer] = STATE(6738), - [sym_record_declaration] = STATE(2068), - [sym__record_declaration_initializer] = STATE(6740), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2069), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2089), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(18), - [sym_preproc_endregion] = STATE(18), - [sym_preproc_line] = STATE(18), - [sym_preproc_pragma] = STATE(18), - [sym_preproc_nullable] = STATE(18), - [sym_preproc_error] = STATE(18), - [sym_preproc_warning] = STATE(18), - [sym_preproc_define] = STATE(18), - [sym_preproc_undef] = STATE(18), - [aux_sym_compilation_unit_repeat1] = STATE(15), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), + [17] = { + [sym__top_level_item] = STATE(2075), + [sym_global_statement] = STATE(2093), + [sym_extern_alias_directive] = STATE(2093), + [sym_using_directive] = STATE(2093), + [sym_global_attribute] = STATE(2093), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2093), + [sym_file_scoped_namespace_declaration] = STATE(2093), + [sym_type_declaration] = STATE(2093), + [sym_class_declaration] = STATE(2074), + [sym__class_declaration_initializer] = STATE(6700), + [sym_struct_declaration] = STATE(2074), + [sym__struct_declaration_initializer] = STATE(6707), + [sym_enum_declaration] = STATE(2074), + [sym__enum_declaration_initializer] = STATE(6879), + [sym_interface_declaration] = STATE(2074), + [sym__interface_declaration_initializer] = STATE(6745), + [sym_delegate_declaration] = STATE(2074), + [sym__delegate_declaration_initializer] = STATE(6757), + [sym_record_declaration] = STATE(2074), + [sym__record_declaration_initializer] = STATE(6705), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2080), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(17), + [sym_preproc_endregion] = STATE(17), + [sym_preproc_line] = STATE(17), + [sym_preproc_pragma] = STATE(17), + [sym_preproc_nullable] = STATE(17), + [sym_preproc_error] = STATE(17), + [sym_preproc_warning] = STATE(17), + [sym_preproc_define] = STATE(17), + [sym_preproc_undef] = STATE(17), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [ts_builtin_sym_end] = ACTIONS(439), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [ts_builtin_sym_end] = ACTIONS(239), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -30268,133 +30028,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [18] = { + [sym__top_level_item] = STATE(2075), + [sym_global_statement] = STATE(2093), + [sym_extern_alias_directive] = STATE(2093), + [sym_using_directive] = STATE(2093), + [sym_global_attribute] = STATE(2093), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2093), + [sym_file_scoped_namespace_declaration] = STATE(2093), + [sym_type_declaration] = STATE(2093), + [sym_class_declaration] = STATE(2074), + [sym__class_declaration_initializer] = STATE(6700), + [sym_struct_declaration] = STATE(2074), + [sym__struct_declaration_initializer] = STATE(6707), + [sym_enum_declaration] = STATE(2074), + [sym__enum_declaration_initializer] = STATE(6879), + [sym_interface_declaration] = STATE(2074), + [sym__interface_declaration_initializer] = STATE(6745), + [sym_delegate_declaration] = STATE(2074), + [sym__delegate_declaration_initializer] = STATE(6757), + [sym_record_declaration] = STATE(2074), + [sym__record_declaration_initializer] = STATE(6705), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2078), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2080), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(18), + [sym_preproc_endregion] = STATE(18), + [sym_preproc_line] = STATE(18), + [sym_preproc_pragma] = STATE(18), + [sym_preproc_nullable] = STATE(18), + [sym_preproc_error] = STATE(18), + [sym_preproc_warning] = STATE(18), + [sym_preproc_define] = STATE(18), + [sym_preproc_undef] = STATE(18), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2371), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [ts_builtin_sym_end] = ACTIONS(241), + [sym__identifier_token] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(246), + [anon_sym_alias] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_global] = ACTIONS(255), + [anon_sym_using] = ACTIONS(258), + [anon_sym_unsafe] = ACTIONS(261), + [anon_sym_static] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(270), + [anon_sym_return] = ACTIONS(273), + [anon_sym_namespace] = ACTIONS(276), + [anon_sym_class] = ACTIONS(279), + [anon_sym_ref] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(285), + [anon_sym_enum] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_interface] = ACTIONS(294), + [anon_sym_delegate] = ACTIONS(297), + [anon_sym_record] = ACTIONS(300), + [anon_sym_abstract] = ACTIONS(303), + [anon_sym_async] = ACTIONS(264), + [anon_sym_const] = ACTIONS(303), + [anon_sym_file] = ACTIONS(306), + [anon_sym_fixed] = ACTIONS(309), + [anon_sym_internal] = ACTIONS(303), + [anon_sym_new] = ACTIONS(312), + [anon_sym_override] = ACTIONS(303), + [anon_sym_partial] = ACTIONS(303), + [anon_sym_private] = ACTIONS(303), + [anon_sym_protected] = ACTIONS(303), + [anon_sym_public] = ACTIONS(303), + [anon_sym_readonly] = ACTIONS(303), + [anon_sym_required] = ACTIONS(303), + [anon_sym_sealed] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(303), + [anon_sym_volatile] = ACTIONS(303), + [anon_sym_where] = ACTIONS(249), + [anon_sym_notnull] = ACTIONS(249), + [anon_sym_unmanaged] = ACTIONS(249), + [anon_sym_checked] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(318), + [anon_sym_DASH_DASH] = ACTIONS(318), + [anon_sym_true] = ACTIONS(321), + [anon_sym_false] = ACTIONS(321), + [anon_sym_PLUS] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_this] = ACTIONS(330), + [anon_sym_scoped] = ACTIONS(333), + [anon_sym_base] = ACTIONS(336), + [anon_sym_var] = ACTIONS(339), + [sym_predefined_type] = ACTIONS(342), + [anon_sym_break] = ACTIONS(345), + [anon_sym_unchecked] = ACTIONS(315), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_do] = ACTIONS(351), + [anon_sym_while] = ACTIONS(354), + [anon_sym_for] = ACTIONS(357), + [anon_sym_lock] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(366), + [anon_sym_default] = ACTIONS(369), + [anon_sym_throw] = ACTIONS(372), + [anon_sym_try] = ACTIONS(375), + [anon_sym_when] = ACTIONS(249), + [anon_sym_await] = ACTIONS(378), + [anon_sym_foreach] = ACTIONS(381), + [anon_sym_goto] = ACTIONS(384), + [anon_sym_if] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_from] = ACTIONS(393), + [anon_sym_into] = ACTIONS(249), + [anon_sym_join] = ACTIONS(249), + [anon_sym_on] = ACTIONS(249), + [anon_sym_equals] = ACTIONS(249), + [anon_sym_let] = ACTIONS(249), + [anon_sym_orderby] = ACTIONS(249), + [anon_sym_ascending] = ACTIONS(249), + [anon_sym_descending] = ACTIONS(249), + [anon_sym_group] = ACTIONS(249), + [anon_sym_by] = ACTIONS(249), + [anon_sym_select] = ACTIONS(249), + [anon_sym_stackalloc] = ACTIONS(396), + [anon_sym_sizeof] = ACTIONS(399), + [anon_sym_typeof] = ACTIONS(402), + [anon_sym___makeref] = ACTIONS(405), + [anon_sym___reftype] = ACTIONS(408), + [anon_sym___refvalue] = ACTIONS(411), + [sym_null_literal] = ACTIONS(414), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(414), + [sym_real_literal] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_verbatim_string_literal] = ACTIONS(420), + [aux_sym_preproc_if_token1] = ACTIONS(426), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(429), + [sym_interpolation_verbatim_start] = ACTIONS(432), + [sym_interpolation_raw_start] = ACTIONS(435), + [sym_raw_string_start] = ACTIONS(438), + }, [19] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(19), [sym_preproc_endregion] = STATE(19), [sym_preproc_line] = STATE(19), @@ -30404,9 +30422,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(19), [sym_preproc_define] = STATE(19), [sym_preproc_undef] = STATE(19), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(441), [anon_sym_extern] = ACTIONS(444), @@ -30527,132 +30545,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(638), }, [20] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(2971), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5705), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(20), [sym_preproc_endregion] = STATE(20), [sym_preproc_line] = STATE(20), @@ -30662,265 +30680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(20), [sym_preproc_define] = STATE(20), [sym_preproc_undef] = STATE(20), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(21), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(159), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_global] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_unsafe] = ACTIONS(167), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_namespace] = ACTIONS(173), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(61), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(177), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(71), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(641), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [21] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(21), - [sym_preproc_endregion] = STATE(21), - [sym_preproc_line] = STATE(21), - [sym_preproc_pragma] = STATE(21), - [sym_preproc_nullable] = STATE(21), - [sym_preproc_error] = STATE(21), - [sym_preproc_warning] = STATE(21), - [sym_preproc_define] = STATE(21), - [sym_preproc_undef] = STATE(21), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -31022,6 +30784,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(641), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [21] = { + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(2997), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5624), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(21), + [sym_preproc_endregion] = STATE(21), + [sym_preproc_line] = STATE(21), + [sym_preproc_pragma] = STATE(21), + [sym_preproc_nullable] = STATE(21), + [sym_preproc_error] = STATE(21), + [sym_preproc_warning] = STATE(21), + [sym_preproc_define] = STATE(21), + [sym_preproc_undef] = STATE(21), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(159), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_global] = ACTIONS(163), + [anon_sym_using] = ACTIONS(165), + [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(61), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(39), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(67), + [anon_sym_fixed] = ACTIONS(177), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(71), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(201), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(207), [aux_sym_preproc_if_token3] = ACTIONS(643), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -31039,132 +31057,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [22] = { - [sym_extern_alias_directive] = STATE(2003), - [sym_using_directive] = STATE(2003), - [sym_global_attribute] = STATE(2003), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2003), - [sym_file_scoped_namespace_declaration] = STATE(2003), - [sym_type_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2006), - [sym__class_declaration_initializer] = STATE(6749), - [sym_struct_declaration] = STATE(2006), - [sym__struct_declaration_initializer] = STATE(6750), - [sym_enum_declaration] = STATE(2006), - [sym__enum_declaration_initializer] = STATE(6895), - [sym_interface_declaration] = STATE(2006), - [sym__interface_declaration_initializer] = STATE(6752), - [sym_delegate_declaration] = STATE(2006), - [sym__delegate_declaration_initializer] = STATE(6753), - [sym_record_declaration] = STATE(2006), - [sym__record_declaration_initializer] = STATE(6754), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2003), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2004), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3062), + [sym_extern_alias_directive] = STATE(2017), + [sym_using_directive] = STATE(2017), + [sym_global_attribute] = STATE(2017), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2017), + [sym_file_scoped_namespace_declaration] = STATE(2017), + [sym_type_declaration] = STATE(2017), + [sym_class_declaration] = STATE(1997), + [sym__class_declaration_initializer] = STATE(6730), + [sym_struct_declaration] = STATE(1997), + [sym__struct_declaration_initializer] = STATE(6735), + [sym_enum_declaration] = STATE(1997), + [sym__enum_declaration_initializer] = STATE(6931), + [sym_interface_declaration] = STATE(1997), + [sym__interface_declaration_initializer] = STATE(6736), + [sym_delegate_declaration] = STATE(1997), + [sym__delegate_declaration_initializer] = STATE(6740), + [sym_record_declaration] = STATE(1997), + [sym__record_declaration_initializer] = STATE(6741), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2017), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2011), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(22), [sym_preproc_endregion] = STATE(22), [sym_preproc_line] = STATE(22), @@ -31174,10 +31192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(22), [sym_preproc_define] = STATE(22), [sym_preproc_undef] = STATE(22), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2375), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(21), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2384), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -31278,7 +31296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(207), - [aux_sym_preproc_if_token3] = ACTIONS(641), + [aux_sym_preproc_if_token3] = ACTIONS(643), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31295,114 +31313,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [23] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(23), [sym_preproc_endregion] = STATE(23), [sym_preproc_line] = STATE(23), @@ -31412,10 +31430,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(23), [sym_preproc_define] = STATE(23), [sym_preproc_undef] = STATE(23), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(49), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -31425,20 +31443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -31452,41 +31469,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_case] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31511,7 +31529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31528,114 +31546,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [24] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(4970), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(24), [sym_preproc_endregion] = STATE(24), [sym_preproc_line] = STATE(24), @@ -31645,10 +31663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(24), [sym_preproc_define] = STATE(24), [sym_preproc_undef] = STATE(24), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(29), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -31658,20 +31676,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(715), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -31685,41 +31702,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_case] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31744,7 +31762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31761,114 +31779,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [25] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(25), [sym_preproc_endregion] = STATE(25), [sym_preproc_line] = STATE(25), @@ -31878,10 +31896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(25), [sym_preproc_define] = STATE(25), [sym_preproc_undef] = STATE(25), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(44), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -31891,19 +31909,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -31917,42 +31936,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31977,7 +31995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31994,114 +32012,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [26] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(26), [sym_preproc_endregion] = STATE(26), [sym_preproc_line] = STATE(26), @@ -32111,10 +32129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(26), [sym_preproc_define] = STATE(26), [sym_preproc_undef] = STATE(26), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(28), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -32124,19 +32142,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -32150,42 +32169,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -32210,7 +32228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32227,114 +32245,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [27] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(27), [sym_preproc_endregion] = STATE(27), [sym_preproc_line] = STATE(27), @@ -32344,10 +32362,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(27), [sym_preproc_define] = STATE(27), [sym_preproc_undef] = STATE(27), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -32357,19 +32375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -32383,42 +32402,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -32443,7 +32461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32460,114 +32478,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [28] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(28), [sym_preproc_endregion] = STATE(28), [sym_preproc_line] = STATE(28), @@ -32577,10 +32595,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(28), [sym_preproc_define] = STATE(28), [sym_preproc_undef] = STATE(28), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(37), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -32591,18 +32609,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -32616,7 +32634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -32633,24 +32651,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_case] = ACTIONS(735), [anon_sym_default] = ACTIONS(735), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -32676,7 +32694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32693,114 +32711,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [29] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(29), [sym_preproc_endregion] = STATE(29), [sym_preproc_line] = STATE(29), @@ -32810,10 +32828,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(29), [sym_preproc_define] = STATE(29), [sym_preproc_undef] = STATE(29), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), [aux_sym_block_repeat1] = STATE(31), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -32824,18 +32842,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -32849,7 +32867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -32866,24 +32884,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_case] = ACTIONS(735), [anon_sym_default] = ACTIONS(735), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -32909,7 +32927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32926,114 +32944,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [30] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(30), [sym_preproc_endregion] = STATE(30), [sym_preproc_line] = STATE(30), @@ -33043,243 +33061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(30), [sym_preproc_define] = STATE(30), [sym_preproc_undef] = STATE(30), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(737), - [anon_sym_extern] = ACTIONS(740), - [anon_sym_alias] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(746), - [anon_sym_global] = ACTIONS(743), - [anon_sym_using] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(752), - [anon_sym_static] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_return] = ACTIONS(764), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_delegate] = ACTIONS(775), - [anon_sym_abstract] = ACTIONS(740), - [anon_sym_async] = ACTIONS(755), - [anon_sym_const] = ACTIONS(740), - [anon_sym_file] = ACTIONS(778), - [anon_sym_fixed] = ACTIONS(781), - [anon_sym_internal] = ACTIONS(740), - [anon_sym_new] = ACTIONS(784), - [anon_sym_override] = ACTIONS(740), - [anon_sym_partial] = ACTIONS(740), - [anon_sym_private] = ACTIONS(740), - [anon_sym_protected] = ACTIONS(740), - [anon_sym_public] = ACTIONS(740), - [anon_sym_readonly] = ACTIONS(740), - [anon_sym_required] = ACTIONS(740), - [anon_sym_sealed] = ACTIONS(740), - [anon_sym_virtual] = ACTIONS(740), - [anon_sym_volatile] = ACTIONS(740), - [anon_sym_where] = ACTIONS(743), - [anon_sym_notnull] = ACTIONS(743), - [anon_sym_unmanaged] = ACTIONS(743), - [anon_sym_checked] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_this] = ACTIONS(802), - [anon_sym_scoped] = ACTIONS(805), - [anon_sym_base] = ACTIONS(808), - [anon_sym_var] = ACTIONS(811), - [sym_predefined_type] = ACTIONS(814), - [anon_sym_break] = ACTIONS(817), - [anon_sym_unchecked] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(826), - [anon_sym_for] = ACTIONS(829), - [anon_sym_lock] = ACTIONS(832), - [anon_sym_yield] = ACTIONS(835), - [anon_sym_switch] = ACTIONS(838), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(843), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_try] = ACTIONS(849), - [anon_sym_when] = ACTIONS(743), - [anon_sym_await] = ACTIONS(852), - [anon_sym_foreach] = ACTIONS(855), - [anon_sym_goto] = ACTIONS(858), - [anon_sym_if] = ACTIONS(861), - [anon_sym_DOT_DOT] = ACTIONS(864), - [anon_sym_from] = ACTIONS(867), - [anon_sym_into] = ACTIONS(743), - [anon_sym_join] = ACTIONS(743), - [anon_sym_on] = ACTIONS(743), - [anon_sym_equals] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_orderby] = ACTIONS(743), - [anon_sym_ascending] = ACTIONS(743), - [anon_sym_descending] = ACTIONS(743), - [anon_sym_group] = ACTIONS(743), - [anon_sym_by] = ACTIONS(743), - [anon_sym_select] = ACTIONS(743), - [anon_sym_stackalloc] = ACTIONS(870), - [anon_sym_sizeof] = ACTIONS(873), - [anon_sym_typeof] = ACTIONS(876), - [anon_sym___makeref] = ACTIONS(879), - [anon_sym___reftype] = ACTIONS(882), - [anon_sym___refvalue] = ACTIONS(885), - [sym_null_literal] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(888), - [sym_real_literal] = ACTIONS(894), - [anon_sym_DQUOTE] = ACTIONS(897), - [sym_verbatim_string_literal] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(900), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(903), - [sym_interpolation_verbatim_start] = ACTIONS(906), - [sym_interpolation_raw_start] = ACTIONS(909), - [sym_raw_string_start] = ACTIONS(912), - }, - [31] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), - [sym_preproc_region] = STATE(31), - [sym_preproc_endregion] = STATE(31), - [sym_preproc_line] = STATE(31), - [sym_preproc_pragma] = STATE(31), - [sym_preproc_nullable] = STATE(31), - [sym_preproc_error] = STATE(31), - [sym_preproc_warning] = STATE(31), - [sym_preproc_define] = STATE(31), - [sym_preproc_undef] = STATE(31), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(48), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -33289,19 +33074,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -33315,42 +33101,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33375,7 +33160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33391,115 +33176,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [31] = { + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), + [sym_preproc_region] = STATE(31), + [sym_preproc_endregion] = STATE(31), + [sym_preproc_line] = STATE(31), + [sym_preproc_pragma] = STATE(31), + [sym_preproc_nullable] = STATE(31), + [sym_preproc_error] = STATE(31), + [sym_preproc_warning] = STATE(31), + [sym_preproc_define] = STATE(31), + [sym_preproc_undef] = STATE(31), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(739), + [anon_sym_extern] = ACTIONS(742), + [anon_sym_alias] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym_global] = ACTIONS(745), + [anon_sym_using] = ACTIONS(751), + [anon_sym_unsafe] = ACTIONS(754), + [anon_sym_static] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_return] = ACTIONS(766), + [anon_sym_ref] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_delegate] = ACTIONS(777), + [anon_sym_abstract] = ACTIONS(742), + [anon_sym_async] = ACTIONS(757), + [anon_sym_const] = ACTIONS(742), + [anon_sym_file] = ACTIONS(780), + [anon_sym_fixed] = ACTIONS(783), + [anon_sym_internal] = ACTIONS(742), + [anon_sym_new] = ACTIONS(786), + [anon_sym_override] = ACTIONS(742), + [anon_sym_partial] = ACTIONS(742), + [anon_sym_private] = ACTIONS(742), + [anon_sym_protected] = ACTIONS(742), + [anon_sym_public] = ACTIONS(742), + [anon_sym_readonly] = ACTIONS(742), + [anon_sym_required] = ACTIONS(742), + [anon_sym_sealed] = ACTIONS(742), + [anon_sym_virtual] = ACTIONS(742), + [anon_sym_volatile] = ACTIONS(742), + [anon_sym_where] = ACTIONS(745), + [anon_sym_notnull] = ACTIONS(745), + [anon_sym_unmanaged] = ACTIONS(745), + [anon_sym_checked] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_this] = ACTIONS(804), + [anon_sym_scoped] = ACTIONS(807), + [anon_sym_base] = ACTIONS(810), + [anon_sym_var] = ACTIONS(813), + [sym_predefined_type] = ACTIONS(816), + [anon_sym_break] = ACTIONS(819), + [anon_sym_unchecked] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_do] = ACTIONS(825), + [anon_sym_while] = ACTIONS(828), + [anon_sym_for] = ACTIONS(831), + [anon_sym_lock] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_switch] = ACTIONS(840), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(845), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_try] = ACTIONS(851), + [anon_sym_when] = ACTIONS(745), + [anon_sym_await] = ACTIONS(854), + [anon_sym_foreach] = ACTIONS(857), + [anon_sym_goto] = ACTIONS(860), + [anon_sym_if] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_from] = ACTIONS(869), + [anon_sym_into] = ACTIONS(745), + [anon_sym_join] = ACTIONS(745), + [anon_sym_on] = ACTIONS(745), + [anon_sym_equals] = ACTIONS(745), + [anon_sym_let] = ACTIONS(745), + [anon_sym_orderby] = ACTIONS(745), + [anon_sym_ascending] = ACTIONS(745), + [anon_sym_descending] = ACTIONS(745), + [anon_sym_group] = ACTIONS(745), + [anon_sym_by] = ACTIONS(745), + [anon_sym_select] = ACTIONS(745), + [anon_sym_stackalloc] = ACTIONS(872), + [anon_sym_sizeof] = ACTIONS(875), + [anon_sym_typeof] = ACTIONS(878), + [anon_sym___makeref] = ACTIONS(881), + [anon_sym___reftype] = ACTIONS(884), + [anon_sym___refvalue] = ACTIONS(887), + [sym_null_literal] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(893), + [sym_integer_literal] = ACTIONS(890), + [sym_real_literal] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym_verbatim_string_literal] = ACTIONS(896), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(905), + [sym_interpolation_verbatim_start] = ACTIONS(908), + [sym_interpolation_raw_start] = ACTIONS(911), + [sym_raw_string_start] = ACTIONS(914), + }, [32] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(4934), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(32), [sym_preproc_endregion] = STATE(32), [sym_preproc_line] = STATE(32), @@ -33509,10 +33527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(32), [sym_preproc_define] = STATE(32), [sym_preproc_undef] = STATE(32), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(52), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -33522,20 +33540,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -33549,41 +33567,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33608,7 +33626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33625,114 +33643,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [33] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5071), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(33), [sym_preproc_endregion] = STATE(33), [sym_preproc_line] = STATE(33), @@ -33742,10 +33760,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(33), [sym_preproc_define] = STATE(33), [sym_preproc_undef] = STATE(33), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(54), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -33755,20 +33773,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -33782,41 +33800,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33841,7 +33859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33858,114 +33876,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [34] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(4941), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(34), [sym_preproc_endregion] = STATE(34), [sym_preproc_line] = STATE(34), @@ -33975,10 +33993,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(34), [sym_preproc_define] = STATE(34), [sym_preproc_undef] = STATE(34), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(56), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -33988,20 +34006,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -34015,41 +34033,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34074,7 +34092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34091,114 +34109,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [35] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(4891), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(35), [sym_preproc_endregion] = STATE(35), [sym_preproc_line] = STATE(35), @@ -34208,10 +34226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(35), [sym_preproc_define] = STATE(35), [sym_preproc_undef] = STATE(35), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(58), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -34221,20 +34239,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -34248,41 +34266,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34307,7 +34325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34324,114 +34342,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [36] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(4934), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(4969), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(36), [sym_preproc_endregion] = STATE(36), [sym_preproc_line] = STATE(36), @@ -34441,10 +34459,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(36), [sym_preproc_define] = STATE(36), [sym_preproc_undef] = STATE(36), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(41), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -34454,20 +34472,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -34481,41 +34499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34540,7 +34558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34557,114 +34575,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [37] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5074), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(37), [sym_preproc_endregion] = STATE(37), [sym_preproc_line] = STATE(37), @@ -34674,10 +34692,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(37), [sym_preproc_define] = STATE(37), [sym_preproc_undef] = STATE(37), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -34687,20 +34705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -34714,41 +34731,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_case] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34773,7 +34791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34790,114 +34808,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [38] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(4945), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(38), [sym_preproc_endregion] = STATE(38), [sym_preproc_line] = STATE(38), @@ -34907,10 +34925,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(38), [sym_preproc_define] = STATE(38), [sym_preproc_undef] = STATE(38), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(23), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -34920,20 +34938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -34947,41 +34964,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_case] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35006,7 +35024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35023,114 +35041,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [39] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(39), [sym_preproc_endregion] = STATE(39), [sym_preproc_line] = STATE(39), @@ -35140,10 +35158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(39), [sym_preproc_define] = STATE(39), [sym_preproc_undef] = STATE(39), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(58), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(42), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -35153,20 +35171,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -35180,41 +35198,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(723), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(705), + [anon_sym_await] = ACTIONS(725), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35239,7 +35257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35256,114 +35274,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [40] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(40), [sym_preproc_endregion] = STATE(40), [sym_preproc_line] = STATE(40), @@ -35373,10 +35391,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(40), [sym_preproc_define] = STATE(40), [sym_preproc_undef] = STATE(40), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(42), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -35387,18 +35405,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -35412,7 +35430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35429,23 +35447,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35471,7 +35489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35488,114 +35506,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [41] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(41), [sym_preproc_endregion] = STATE(41), [sym_preproc_line] = STATE(41), @@ -35605,10 +35623,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(41), [sym_preproc_define] = STATE(41), [sym_preproc_undef] = STATE(41), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -35619,18 +35637,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -35644,7 +35662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35661,23 +35679,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35703,7 +35721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35720,114 +35738,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [42] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(42), [sym_preproc_endregion] = STATE(42), [sym_preproc_line] = STATE(42), @@ -35837,10 +35855,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(42), [sym_preproc_define] = STATE(42), [sym_preproc_undef] = STATE(42), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -35851,18 +35869,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -35876,7 +35894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35893,23 +35911,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35935,7 +35953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35952,114 +35970,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [43] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(43), [sym_preproc_endregion] = STATE(43), [sym_preproc_line] = STATE(43), @@ -36069,10 +36087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(43), [sym_preproc_define] = STATE(43), [sym_preproc_undef] = STATE(43), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -36083,18 +36101,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -36108,7 +36126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36125,23 +36143,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36167,7 +36185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36184,114 +36202,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [44] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(44), [sym_preproc_endregion] = STATE(44), [sym_preproc_line] = STATE(44), @@ -36301,10 +36319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(44), [sym_preproc_define] = STATE(44), [sym_preproc_undef] = STATE(44), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -36315,18 +36333,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -36340,7 +36358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36357,23 +36375,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36399,7 +36417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36416,114 +36434,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [45] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(45), [sym_preproc_endregion] = STATE(45), [sym_preproc_line] = STATE(45), @@ -36533,10 +36551,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(45), [sym_preproc_define] = STATE(45), [sym_preproc_undef] = STATE(45), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(44), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -36547,18 +36565,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -36572,7 +36590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36589,23 +36607,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36631,7 +36649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36648,114 +36666,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [46] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(46), [sym_preproc_endregion] = STATE(46), [sym_preproc_line] = STATE(46), @@ -36765,10 +36783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(46), [sym_preproc_define] = STATE(46), [sym_preproc_undef] = STATE(46), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(40), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -36779,18 +36797,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -36804,7 +36822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36821,23 +36839,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36863,7 +36881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36880,114 +36898,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [47] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(47), [sym_preproc_endregion] = STATE(47), [sym_preproc_line] = STATE(47), @@ -36997,10 +37015,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(47), [sym_preproc_define] = STATE(47), [sym_preproc_undef] = STATE(47), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(50), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -37011,18 +37029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -37036,7 +37054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37053,23 +37071,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37095,7 +37113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37112,114 +37130,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [48] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(48), [sym_preproc_endregion] = STATE(48), [sym_preproc_line] = STATE(48), @@ -37229,10 +37247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(48), [sym_preproc_define] = STATE(48), [sym_preproc_undef] = STATE(48), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -37243,18 +37261,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -37268,7 +37286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37285,23 +37303,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37327,7 +37345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37344,114 +37362,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [49] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(49), [sym_preproc_endregion] = STATE(49), [sym_preproc_line] = STATE(49), @@ -37461,10 +37479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(49), [sym_preproc_define] = STATE(49), [sym_preproc_undef] = STATE(49), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(52), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -37475,18 +37493,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -37500,7 +37518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37517,23 +37535,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37559,7 +37577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37576,114 +37594,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [50] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(50), [sym_preproc_endregion] = STATE(50), [sym_preproc_line] = STATE(50), @@ -37693,10 +37711,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(50), [sym_preproc_define] = STATE(50), [sym_preproc_undef] = STATE(50), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -37707,18 +37725,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -37732,7 +37750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37749,23 +37767,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37791,7 +37809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37808,114 +37826,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [51] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(51), [sym_preproc_endregion] = STATE(51), [sym_preproc_line] = STATE(51), @@ -37925,10 +37943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(51), [sym_preproc_define] = STATE(51), [sym_preproc_undef] = STATE(51), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(54), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -37939,18 +37957,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -37964,7 +37982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37981,23 +37999,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38023,7 +38041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38040,114 +38058,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [52] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(52), [sym_preproc_endregion] = STATE(52), [sym_preproc_line] = STATE(52), @@ -38157,10 +38175,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(52), [sym_preproc_define] = STATE(52), [sym_preproc_undef] = STATE(52), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -38171,18 +38189,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -38196,7 +38214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38213,23 +38231,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38255,7 +38273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38272,114 +38290,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [53] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(53), [sym_preproc_endregion] = STATE(53), [sym_preproc_line] = STATE(53), @@ -38389,10 +38407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(53), [sym_preproc_define] = STATE(53), [sym_preproc_undef] = STATE(53), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(56), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -38403,18 +38421,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -38428,7 +38446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38445,23 +38463,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38487,7 +38505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38504,114 +38522,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [54] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(54), [sym_preproc_endregion] = STATE(54), [sym_preproc_line] = STATE(54), @@ -38621,10 +38639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(54), [sym_preproc_define] = STATE(54), [sym_preproc_undef] = STATE(54), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(49), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -38635,18 +38653,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -38660,7 +38678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38677,23 +38695,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38719,7 +38737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38736,114 +38754,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [55] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(55), [sym_preproc_endregion] = STATE(55), [sym_preproc_line] = STATE(55), @@ -38853,10 +38871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(55), [sym_preproc_define] = STATE(55), [sym_preproc_undef] = STATE(55), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(48), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -38867,18 +38885,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -38892,7 +38910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38909,23 +38927,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38951,7 +38969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38968,114 +38986,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [56] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(56), [sym_preproc_endregion] = STATE(56), [sym_preproc_line] = STATE(56), @@ -39085,10 +39103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(56), [sym_preproc_define] = STATE(56), [sym_preproc_undef] = STATE(56), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -39099,18 +39117,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -39124,7 +39142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39141,23 +39159,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39183,7 +39201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39200,114 +39218,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [57] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(57), [sym_preproc_endregion] = STATE(57), [sym_preproc_line] = STATE(57), @@ -39317,10 +39335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(57), [sym_preproc_define] = STATE(57), [sym_preproc_undef] = STATE(57), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), [aux_sym_block_repeat1] = STATE(58), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -39331,18 +39349,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -39356,7 +39374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39373,23 +39391,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39415,7 +39433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39432,114 +39450,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [58] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(58), [sym_preproc_endregion] = STATE(58), [sym_preproc_line] = STATE(58), @@ -39549,10 +39567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(58), [sym_preproc_define] = STATE(58), [sym_preproc_undef] = STATE(58), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -39563,18 +39581,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -39588,7 +39606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39605,23 +39623,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39647,7 +39665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39664,114 +39682,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [59] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(59), [sym_preproc_endregion] = STATE(59), [sym_preproc_line] = STATE(59), @@ -39781,10 +39799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(59), [sym_preproc_define] = STATE(59), [sym_preproc_undef] = STATE(59), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), [aux_sym_block_repeat1] = STATE(60), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -39795,18 +39813,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -39820,7 +39838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39837,23 +39855,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39879,7 +39897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39896,114 +39914,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [60] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(60), [sym_preproc_endregion] = STATE(60), [sym_preproc_line] = STATE(60), @@ -40013,10 +40031,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(60), [sym_preproc_define] = STATE(60), [sym_preproc_undef] = STATE(60), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym_block_repeat1] = STATE(30), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -40027,18 +40045,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -40052,7 +40070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40069,23 +40087,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40111,7 +40129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40128,114 +40146,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [61] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2148), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2149), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(61), [sym_preproc_endregion] = STATE(61), [sym_preproc_line] = STATE(61), @@ -40245,10 +40263,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(61), [sym_preproc_define] = STATE(61), [sym_preproc_undef] = STATE(61), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), [aux_sym_block_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -40259,18 +40277,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -40284,7 +40302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40301,23 +40319,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40343,7 +40361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40360,114 +40378,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [62] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2107), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7138), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(62), [sym_preproc_endregion] = STATE(62), [sym_preproc_line] = STATE(62), @@ -40477,30 +40495,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(62), [sym_preproc_define] = STATE(62), [sym_preproc_undef] = STATE(62), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -40514,7 +40532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40531,23 +40549,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40573,7 +40591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40590,114 +40608,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [63] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1964), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1990), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(63), [sym_preproc_endregion] = STATE(63), [sym_preproc_line] = STATE(63), @@ -40707,30 +40725,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(63), [sym_preproc_define] = STATE(63), [sym_preproc_undef] = STATE(63), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -40803,7 +40821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40820,114 +40838,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [64] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1965), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2025), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(64), [sym_preproc_endregion] = STATE(64), [sym_preproc_line] = STATE(64), @@ -40937,30 +40955,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(64), [sym_preproc_define] = STATE(64), [sym_preproc_undef] = STATE(64), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -40974,7 +40992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40991,23 +41009,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41033,7 +41051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41050,114 +41068,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [65] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1966), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2144), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(65), [sym_preproc_endregion] = STATE(65), [sym_preproc_line] = STATE(65), @@ -41167,30 +41185,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(65), [sym_preproc_define] = STATE(65), [sym_preproc_undef] = STATE(65), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -41204,7 +41222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41221,23 +41239,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41263,7 +41281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41280,114 +41298,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [66] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1971), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2102), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(66), [sym_preproc_endregion] = STATE(66), [sym_preproc_line] = STATE(66), @@ -41397,30 +41415,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(66), [sym_preproc_define] = STATE(66), [sym_preproc_undef] = STATE(66), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -41434,7 +41452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41451,23 +41469,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41493,7 +41511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41510,114 +41528,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [67] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1974), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2131), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(67), [sym_preproc_endregion] = STATE(67), [sym_preproc_line] = STATE(67), @@ -41627,30 +41645,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(67), [sym_preproc_define] = STATE(67), [sym_preproc_undef] = STATE(67), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -41664,7 +41682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41681,23 +41699,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41723,7 +41741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41740,114 +41758,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [68] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1977), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2026), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(68), [sym_preproc_endregion] = STATE(68), [sym_preproc_line] = STATE(68), @@ -41857,30 +41875,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(68), [sym_preproc_define] = STATE(68), [sym_preproc_undef] = STATE(68), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -41894,7 +41912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41911,23 +41929,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41953,7 +41971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41970,114 +41988,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [69] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2033), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7270), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(69), [sym_preproc_endregion] = STATE(69), [sym_preproc_line] = STATE(69), @@ -42087,30 +42105,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(69), [sym_preproc_define] = STATE(69), [sym_preproc_undef] = STATE(69), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -42124,7 +42142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42141,23 +42159,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_unchecked] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_do] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_for] = ACTIONS(101), - [anon_sym_lock] = ACTIONS(103), - [anon_sym_yield] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(107), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42183,7 +42201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42200,114 +42218,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [70] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2104), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7242), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(70), [sym_preproc_endregion] = STATE(70), [sym_preproc_line] = STATE(70), @@ -42317,30 +42335,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(70), [sym_preproc_define] = STATE(70), [sym_preproc_undef] = STATE(70), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -42354,7 +42372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42371,23 +42389,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42413,7 +42431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42430,114 +42448,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [71] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2145), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2028), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(71), [sym_preproc_endregion] = STATE(71), [sym_preproc_line] = STATE(71), @@ -42547,30 +42565,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(71), [sym_preproc_define] = STATE(71), [sym_preproc_undef] = STATE(71), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -42584,7 +42602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42601,23 +42619,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42643,7 +42661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42660,114 +42678,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [72] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2047), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2038), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(72), [sym_preproc_endregion] = STATE(72), [sym_preproc_line] = STATE(72), @@ -42777,30 +42795,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(72), [sym_preproc_define] = STATE(72), [sym_preproc_undef] = STATE(72), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -42873,7 +42891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42890,114 +42908,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [73] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2029), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2061), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(73), [sym_preproc_endregion] = STATE(73), [sym_preproc_line] = STATE(73), @@ -43007,30 +43025,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(73), [sym_preproc_define] = STATE(73), [sym_preproc_undef] = STATE(73), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -43103,7 +43121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43120,114 +43138,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [74] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2130), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7177), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(74), [sym_preproc_endregion] = STATE(74), [sym_preproc_line] = STATE(74), @@ -43237,30 +43255,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(74), [sym_preproc_define] = STATE(74), [sym_preproc_undef] = STATE(74), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -43274,7 +43292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43291,23 +43309,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43333,7 +43351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43350,114 +43368,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [75] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2110), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7204), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(75), [sym_preproc_endregion] = STATE(75), [sym_preproc_line] = STATE(75), @@ -43467,30 +43485,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(75), [sym_preproc_define] = STATE(75), [sym_preproc_undef] = STATE(75), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -43504,7 +43522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43521,23 +43539,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43563,7 +43581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43580,114 +43598,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [76] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2057), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2043), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(76), [sym_preproc_endregion] = STATE(76), [sym_preproc_line] = STATE(76), @@ -43697,30 +43715,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(76), [sym_preproc_define] = STATE(76), [sym_preproc_undef] = STATE(76), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -43793,7 +43811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43810,114 +43828,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [77] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2032), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2056), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(77), [sym_preproc_endregion] = STATE(77), [sym_preproc_line] = STATE(77), @@ -43927,30 +43945,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(77), [sym_preproc_define] = STATE(77), [sym_preproc_undef] = STATE(77), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -44023,7 +44041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44040,114 +44058,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [78] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2118), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2030), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(78), [sym_preproc_endregion] = STATE(78), [sym_preproc_line] = STATE(78), @@ -44157,30 +44175,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(78), [sym_preproc_define] = STATE(78), [sym_preproc_undef] = STATE(78), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -44194,7 +44212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44211,23 +44229,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44253,7 +44271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44270,114 +44288,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [79] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2124), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7260), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(79), [sym_preproc_endregion] = STATE(79), [sym_preproc_line] = STATE(79), @@ -44387,30 +44405,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(79), [sym_preproc_define] = STATE(79), [sym_preproc_undef] = STATE(79), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -44424,7 +44442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44441,23 +44459,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44483,7 +44501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44500,114 +44518,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [80] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2043), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7264), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(80), [sym_preproc_endregion] = STATE(80), [sym_preproc_line] = STATE(80), @@ -44617,30 +44635,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(80), [sym_preproc_define] = STATE(80), [sym_preproc_undef] = STATE(80), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -44654,7 +44672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44671,23 +44689,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_unchecked] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_do] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_for] = ACTIONS(101), - [anon_sym_lock] = ACTIONS(103), - [anon_sym_yield] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(107), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44713,7 +44731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44730,114 +44748,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [81] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2046), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2053), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5763), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(81), [sym_preproc_endregion] = STATE(81), [sym_preproc_line] = STATE(81), @@ -44847,30 +44865,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(81), [sym_preproc_define] = STATE(81), [sym_preproc_undef] = STATE(81), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -44943,7 +44961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44960,114 +44978,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [82] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2103), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7793), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(82), [sym_preproc_endregion] = STATE(82), [sym_preproc_line] = STATE(82), @@ -45077,30 +45095,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(82), [sym_preproc_define] = STATE(82), [sym_preproc_undef] = STATE(82), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -45114,7 +45132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45131,23 +45149,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45173,7 +45191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45190,114 +45208,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [83] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7644), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2019), + [sym_variable_declaration] = STATE(7408), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2022), + [sym_break_statement] = STATE(2019), + [sym_checked_statement] = STATE(2019), + [sym_continue_statement] = STATE(2019), + [sym_do_statement] = STATE(2019), + [sym_empty_statement] = STATE(2019), + [sym_expression_statement] = STATE(2019), + [sym_fixed_statement] = STATE(2019), + [sym_for_statement] = STATE(2019), + [sym_return_statement] = STATE(2019), + [sym_lock_statement] = STATE(2019), + [sym_yield_statement] = STATE(2019), + [sym_switch_statement] = STATE(2019), + [sym_throw_statement] = STATE(2019), + [sym_try_statement] = STATE(2019), + [sym_unsafe_statement] = STATE(2019), + [sym_using_statement] = STATE(2019), + [sym_foreach_statement] = STATE(2019), + [sym__foreach_statement_initializer] = STATE(81), + [sym_goto_statement] = STATE(2019), + [sym_labeled_statement] = STATE(2019), + [sym_if_statement] = STATE(2019), + [sym_while_statement] = STATE(2019), + [sym_local_declaration_statement] = STATE(2019), + [sym_local_function_statement] = STATE(2019), + [sym__local_function_declaration] = STATE(6359), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2370), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2019), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(83), [sym_preproc_endregion] = STATE(83), [sym_preproc_line] = STATE(83), @@ -45307,30 +45325,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(83), [sym_preproc_define] = STATE(83), [sym_preproc_undef] = STATE(83), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1039), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1041), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -45344,7 +45362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45361,23 +45379,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45420,114 +45438,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [84] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2108), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7110), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(84), [sym_preproc_endregion] = STATE(84), [sym_preproc_line] = STATE(84), @@ -45537,30 +45555,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(84), [sym_preproc_define] = STATE(84), [sym_preproc_undef] = STATE(84), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -45574,7 +45592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45591,23 +45609,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45633,7 +45651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45650,114 +45668,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [85] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2053), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7194), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(85), [sym_preproc_endregion] = STATE(85), [sym_preproc_line] = STATE(85), @@ -45767,30 +45785,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(85), [sym_preproc_define] = STATE(85), [sym_preproc_undef] = STATE(85), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -45804,7 +45822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45821,23 +45839,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_unchecked] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_do] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_for] = ACTIONS(101), - [anon_sym_lock] = ACTIONS(103), - [anon_sym_yield] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(107), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45863,7 +45881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45880,114 +45898,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [86] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7312), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7657), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(86), [sym_preproc_endregion] = STATE(86), [sym_preproc_line] = STATE(86), @@ -45997,30 +46015,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(86), [sym_preproc_define] = STATE(86), [sym_preproc_undef] = STATE(86), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -46034,7 +46052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46051,23 +46069,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46093,7 +46111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46110,114 +46128,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [87] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7271), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7223), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(87), [sym_preproc_endregion] = STATE(87), [sym_preproc_line] = STATE(87), @@ -46227,30 +46245,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(87), [sym_preproc_define] = STATE(87), [sym_preproc_undef] = STATE(87), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -46264,7 +46282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46281,23 +46299,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46323,7 +46341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46340,114 +46358,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [88] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7263), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1960), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(88), [sym_preproc_endregion] = STATE(88), [sym_preproc_line] = STATE(88), @@ -46457,30 +46475,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(88), [sym_preproc_define] = STATE(88), [sym_preproc_undef] = STATE(88), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -46494,7 +46512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46511,23 +46529,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46553,7 +46571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46570,114 +46588,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [89] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7200), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2125), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(89), [sym_preproc_endregion] = STATE(89), [sym_preproc_line] = STATE(89), @@ -46687,30 +46705,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(89), [sym_preproc_define] = STATE(89), [sym_preproc_undef] = STATE(89), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -46724,7 +46742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46741,23 +46759,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46783,7 +46801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46800,114 +46818,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [90] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7262), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1962), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(90), [sym_preproc_endregion] = STATE(90), [sym_preproc_line] = STATE(90), @@ -46917,30 +46935,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(90), [sym_preproc_define] = STATE(90), [sym_preproc_undef] = STATE(90), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -46954,7 +46972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46971,23 +46989,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47013,7 +47031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47030,114 +47048,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [91] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7274), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1976), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(91), [sym_preproc_endregion] = STATE(91), [sym_preproc_line] = STATE(91), @@ -47147,30 +47165,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(91), [sym_preproc_define] = STATE(91), [sym_preproc_undef] = STATE(91), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -47184,7 +47202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47201,23 +47219,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47243,7 +47261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47260,114 +47278,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [92] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7121), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2113), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(92), [sym_preproc_endregion] = STATE(92), [sym_preproc_line] = STATE(92), @@ -47377,30 +47395,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(92), [sym_preproc_define] = STATE(92), [sym_preproc_undef] = STATE(92), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -47414,7 +47432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47431,23 +47449,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47473,7 +47491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47490,114 +47508,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [93] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2064), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1989), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(93), [sym_preproc_endregion] = STATE(93), [sym_preproc_line] = STATE(93), @@ -47607,30 +47625,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(93), [sym_preproc_define] = STATE(93), [sym_preproc_undef] = STATE(93), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -47644,7 +47662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47661,23 +47679,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_unchecked] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_do] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_for] = ACTIONS(101), - [anon_sym_lock] = ACTIONS(103), - [anon_sym_yield] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(107), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47703,7 +47721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47720,114 +47738,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [94] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7293), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(94), [sym_preproc_endregion] = STATE(94), [sym_preproc_line] = STATE(94), @@ -47837,30 +47855,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(94), [sym_preproc_define] = STATE(94), [sym_preproc_undef] = STATE(94), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -47874,7 +47892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47891,23 +47909,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47933,7 +47951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47950,114 +47968,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [95] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7125), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2136), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(95), [sym_preproc_endregion] = STATE(95), [sym_preproc_line] = STATE(95), @@ -48067,30 +48085,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(95), [sym_preproc_define] = STATE(95), [sym_preproc_undef] = STATE(95), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -48104,7 +48122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48121,23 +48139,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48163,7 +48181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48180,114 +48198,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [96] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2117), - [sym_variable_declaration] = STATE(7566), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2139), - [sym_break_statement] = STATE(2117), - [sym_checked_statement] = STATE(2117), - [sym_continue_statement] = STATE(2117), - [sym_do_statement] = STATE(2117), - [sym_empty_statement] = STATE(2117), - [sym_expression_statement] = STATE(2117), - [sym_fixed_statement] = STATE(2117), - [sym_for_statement] = STATE(2117), - [sym_return_statement] = STATE(2117), - [sym_lock_statement] = STATE(2117), - [sym_yield_statement] = STATE(2117), - [sym_switch_statement] = STATE(2117), - [sym_throw_statement] = STATE(2117), - [sym_try_statement] = STATE(2117), - [sym_unsafe_statement] = STATE(2117), - [sym_using_statement] = STATE(2117), - [sym_foreach_statement] = STATE(2117), - [sym__foreach_statement_initializer] = STATE(96), - [sym_goto_statement] = STATE(2117), - [sym_labeled_statement] = STATE(2117), - [sym_if_statement] = STATE(2117), - [sym_while_statement] = STATE(2117), - [sym_local_declaration_statement] = STATE(2117), - [sym_local_function_statement] = STATE(2117), - [sym__local_function_declaration] = STATE(6378), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5397), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2303), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2117), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1987), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(96), [sym_preproc_endregion] = STATE(96), [sym_preproc_line] = STATE(96), @@ -48297,30 +48315,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(96), [sym_preproc_define] = STATE(96), [sym_preproc_undef] = STATE(96), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2563), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(649), - [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(673), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -48334,7 +48352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(677), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48351,23 +48369,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(685), - [anon_sym_unchecked] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(691), - [anon_sym_for] = ACTIONS(693), - [anon_sym_lock] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(699), + [anon_sym_break] = ACTIONS(181), + [anon_sym_unchecked] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_do] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(189), + [anon_sym_lock] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_switch] = ACTIONS(195), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(703), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(707), - [anon_sym_if] = ACTIONS(709), + [anon_sym_goto] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48393,7 +48411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48410,114 +48428,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [97] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1989), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1964), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(97), [sym_preproc_endregion] = STATE(97), [sym_preproc_line] = STATE(97), @@ -48527,30 +48545,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(97), [sym_preproc_define] = STATE(97), [sym_preproc_undef] = STATE(97), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -48623,7 +48641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48640,114 +48658,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [98] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1948), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1949), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(98), [sym_preproc_endregion] = STATE(98), [sym_preproc_line] = STATE(98), @@ -48757,30 +48775,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(98), [sym_preproc_define] = STATE(98), [sym_preproc_undef] = STATE(98), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -48853,7 +48871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48870,114 +48888,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [99] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1956), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(1985), + [sym_variable_declaration] = STATE(7450), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(1993), + [sym_break_statement] = STATE(1985), + [sym_checked_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_empty_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_fixed_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_lock_statement] = STATE(1985), + [sym_yield_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_throw_statement] = STATE(1985), + [sym_try_statement] = STATE(1985), + [sym_unsafe_statement] = STATE(1985), + [sym_using_statement] = STATE(1985), + [sym_foreach_statement] = STATE(1985), + [sym__foreach_statement_initializer] = STATE(88), + [sym_goto_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_local_declaration_statement] = STATE(1985), + [sym_local_function_statement] = STATE(1985), + [sym__local_function_declaration] = STATE(6364), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5234), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(1985), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(99), [sym_preproc_endregion] = STATE(99), [sym_preproc_line] = STATE(99), @@ -48987,30 +49005,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(99), [sym_preproc_define] = STATE(99), [sym_preproc_undef] = STATE(99), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1031), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(659), [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(1033), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -49083,7 +49101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(1035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49100,114 +49118,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [100] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(1943), - [sym_variable_declaration] = STATE(7738), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(1963), - [sym_break_statement] = STATE(1943), - [sym_checked_statement] = STATE(1943), - [sym_continue_statement] = STATE(1943), - [sym_do_statement] = STATE(1943), - [sym_empty_statement] = STATE(1943), - [sym_expression_statement] = STATE(1943), - [sym_fixed_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_return_statement] = STATE(1943), - [sym_lock_statement] = STATE(1943), - [sym_yield_statement] = STATE(1943), - [sym_switch_statement] = STATE(1943), - [sym_throw_statement] = STATE(1943), - [sym_try_statement] = STATE(1943), - [sym_unsafe_statement] = STATE(1943), - [sym_using_statement] = STATE(1943), - [sym_foreach_statement] = STATE(1943), - [sym__foreach_statement_initializer] = STATE(97), - [sym_goto_statement] = STATE(1943), - [sym_labeled_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_local_declaration_statement] = STATE(1943), - [sym_local_function_statement] = STATE(1943), - [sym__local_function_declaration] = STATE(6347), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5166), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2273), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(1943), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2127), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(100), [sym_preproc_endregion] = STATE(100), [sym_preproc_line] = STATE(100), @@ -49217,30 +49235,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(100), [sym_preproc_define] = STATE(100), [sym_preproc_undef] = STATE(100), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(991), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -49254,7 +49272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(179), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49271,23 +49289,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(181), - [anon_sym_unchecked] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_for] = ACTIONS(189), - [anon_sym_lock] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_switch] = ACTIONS(195), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_try] = ACTIONS(199), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(201), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49313,7 +49331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49330,114 +49348,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [101] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(2027), - [sym_variable_declaration] = STATE(7761), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(2048), - [sym_break_statement] = STATE(2027), - [sym_checked_statement] = STATE(2027), - [sym_continue_statement] = STATE(2027), - [sym_do_statement] = STATE(2027), - [sym_empty_statement] = STATE(2027), - [sym_expression_statement] = STATE(2027), - [sym_fixed_statement] = STATE(2027), - [sym_for_statement] = STATE(2027), - [sym_return_statement] = STATE(2027), - [sym_lock_statement] = STATE(2027), - [sym_yield_statement] = STATE(2027), - [sym_switch_statement] = STATE(2027), - [sym_throw_statement] = STATE(2027), - [sym_try_statement] = STATE(2027), - [sym_unsafe_statement] = STATE(2027), - [sym_using_statement] = STATE(2027), - [sym_foreach_statement] = STATE(2027), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2027), - [sym_labeled_statement] = STATE(2027), - [sym_if_statement] = STATE(2027), - [sym_while_statement] = STATE(2027), - [sym_local_declaration_statement] = STATE(2027), - [sym_local_function_statement] = STATE(2027), - [sym__local_function_declaration] = STATE(6363), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5775), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2330), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(2027), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2129), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(101), [sym_preproc_endregion] = STATE(101), [sym_preproc_line] = STATE(101), @@ -49447,30 +49465,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(101), [sym_preproc_define] = STATE(101), [sym_preproc_undef] = STATE(101), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2559), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(999), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -49484,7 +49502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49501,23 +49519,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_unchecked] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_do] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_for] = ACTIONS(101), - [anon_sym_lock] = ACTIONS(103), - [anon_sym_yield] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(107), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49543,7 +49561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49560,114 +49578,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [102] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7793), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7791), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(102), [sym_preproc_endregion] = STATE(102), [sym_preproc_line] = STATE(102), @@ -49677,30 +49695,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(102), [sym_preproc_define] = STATE(102), [sym_preproc_undef] = STATE(102), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -49714,7 +49732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49731,23 +49749,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49773,7 +49791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49790,114 +49808,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [103] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7786), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2130), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(103), [sym_preproc_endregion] = STATE(103), [sym_preproc_line] = STATE(103), @@ -49907,30 +49925,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(103), [sym_preproc_define] = STATE(103), [sym_preproc_undef] = STATE(103), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -49944,7 +49962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49961,23 +49979,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -50003,7 +50021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50020,114 +50038,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [104] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7791), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(7225), + [sym_variable_declaration] = STATE(7502), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(7786), + [sym_break_statement] = STATE(7225), + [sym_checked_statement] = STATE(7225), + [sym_continue_statement] = STATE(7225), + [sym_do_statement] = STATE(7225), + [sym_empty_statement] = STATE(7225), + [sym_expression_statement] = STATE(7225), + [sym_fixed_statement] = STATE(7225), + [sym_for_statement] = STATE(7225), + [sym_return_statement] = STATE(7225), + [sym_lock_statement] = STATE(7225), + [sym_yield_statement] = STATE(7225), + [sym_switch_statement] = STATE(7225), + [sym_throw_statement] = STATE(7225), + [sym_try_statement] = STATE(7225), + [sym_unsafe_statement] = STATE(7225), + [sym_using_statement] = STATE(7225), + [sym_foreach_statement] = STATE(7225), + [sym__foreach_statement_initializer] = STATE(62), + [sym_goto_statement] = STATE(7225), + [sym_labeled_statement] = STATE(7225), + [sym_if_statement] = STATE(7225), + [sym_while_statement] = STATE(7225), + [sym_local_declaration_statement] = STATE(7225), + [sym_local_function_statement] = STATE(7225), + [sym__local_function_declaration] = STATE(6366), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5768), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2364), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(7225), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(104), [sym_preproc_endregion] = STATE(104), [sym_preproc_line] = STATE(104), @@ -50137,30 +50155,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(104), [sym_preproc_define] = STATE(104), [sym_preproc_undef] = STATE(104), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(987), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(993), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(997), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -50174,7 +50192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -50191,23 +50209,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_unchecked] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_lock] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1015), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1021), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1025), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -50233,7 +50251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50250,114 +50268,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [105] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(7246), - [sym_variable_declaration] = STATE(7605), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5904), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_statement] = STATE(7305), - [sym_break_statement] = STATE(7246), - [sym_checked_statement] = STATE(7246), - [sym_continue_statement] = STATE(7246), - [sym_do_statement] = STATE(7246), - [sym_empty_statement] = STATE(7246), - [sym_expression_statement] = STATE(7246), - [sym_fixed_statement] = STATE(7246), - [sym_for_statement] = STATE(7246), - [sym_return_statement] = STATE(7246), - [sym_lock_statement] = STATE(7246), - [sym_yield_statement] = STATE(7246), - [sym_switch_statement] = STATE(7246), - [sym_throw_statement] = STATE(7246), - [sym_try_statement] = STATE(7246), - [sym_unsafe_statement] = STATE(7246), - [sym_using_statement] = STATE(7246), - [sym_foreach_statement] = STATE(7246), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(7246), - [sym_labeled_statement] = STATE(7246), - [sym_if_statement] = STATE(7246), - [sym_while_statement] = STATE(7246), - [sym_local_declaration_statement] = STATE(7246), - [sym_local_function_statement] = STATE(7246), - [sym__local_function_declaration] = STATE(6357), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(5763), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2346), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_top_level] = STATE(7246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(3683), + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(2109), + [sym_variable_declaration] = STATE(7456), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5852), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_statement] = STATE(2137), + [sym_break_statement] = STATE(2109), + [sym_checked_statement] = STATE(2109), + [sym_continue_statement] = STATE(2109), + [sym_do_statement] = STATE(2109), + [sym_empty_statement] = STATE(2109), + [sym_expression_statement] = STATE(2109), + [sym_fixed_statement] = STATE(2109), + [sym_for_statement] = STATE(2109), + [sym_return_statement] = STATE(2109), + [sym_lock_statement] = STATE(2109), + [sym_yield_statement] = STATE(2109), + [sym_switch_statement] = STATE(2109), + [sym_throw_statement] = STATE(2109), + [sym_try_statement] = STATE(2109), + [sym_unsafe_statement] = STATE(2109), + [sym_using_statement] = STATE(2109), + [sym_foreach_statement] = STATE(2109), + [sym__foreach_statement_initializer] = STATE(89), + [sym_goto_statement] = STATE(2109), + [sym_labeled_statement] = STATE(2109), + [sym_if_statement] = STATE(2109), + [sym_while_statement] = STATE(2109), + [sym_local_declaration_statement] = STATE(2109), + [sym_local_function_statement] = STATE(2109), + [sym__local_function_declaration] = STATE(6374), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(5373), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2287), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_top_level] = STATE(2109), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(105), [sym_preproc_endregion] = STATE(105), [sym_preproc_line] = STATE(105), @@ -50367,30 +50385,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(105), [sym_preproc_define] = STATE(105), [sym_preproc_undef] = STATE(105), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2545), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_return] = ACTIONS(657), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(1013), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(669), [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(675), + [anon_sym_new] = ACTIONS(671), [anon_sym_override] = ACTIONS(645), [anon_sym_partial] = ACTIONS(645), [anon_sym_private] = ACTIONS(645), @@ -50404,7 +50422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1015), + [anon_sym_checked] = ACTIONS(673), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -50421,23 +50439,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_unchecked] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_lock] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(675), + [anon_sym_unchecked] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_while] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_lock] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(695), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(697), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_if] = ACTIONS(1041), + [anon_sym_goto] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -50463,7 +50481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50480,102 +50498,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [106] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6685), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6638), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(106), [sym_preproc_endregion] = STATE(106), [sym_preproc_line] = STATE(106), @@ -50585,8 +50603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(106), [sym_preproc_define] = STATE(106), [sym_preproc_undef] = STATE(106), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -50601,9 +50619,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -50623,7 +50642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -50683,102 +50702,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [107] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6576), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6581), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(107), [sym_preproc_endregion] = STATE(107), [sym_preproc_line] = STATE(107), @@ -50788,8 +50807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(107), [sym_preproc_define] = STATE(107), [sym_preproc_undef] = STATE(107), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -50804,9 +50823,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -50826,7 +50846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -50886,102 +50906,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [108] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6532), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6585), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(108), [sym_preproc_endregion] = STATE(108), [sym_preproc_line] = STATE(108), @@ -50991,8 +51011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(108), [sym_preproc_define] = STATE(108), [sym_preproc_undef] = STATE(108), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -51007,9 +51027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -51029,7 +51050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -51089,102 +51110,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [109] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6652), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6647), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(109), [sym_preproc_endregion] = STATE(109), [sym_preproc_line] = STATE(109), @@ -51194,8 +51215,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(109), [sym_preproc_define] = STATE(109), [sym_preproc_undef] = STATE(109), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -51210,9 +51231,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -51232,7 +51254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -51292,102 +51314,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [110] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6641), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6565), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(110), [sym_preproc_endregion] = STATE(110), [sym_preproc_line] = STATE(110), @@ -51397,8 +51419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(110), [sym_preproc_define] = STATE(110), [sym_preproc_undef] = STATE(110), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -51413,9 +51435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -51435,7 +51458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -51495,102 +51518,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [111] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6599), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6646), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(111), [sym_preproc_endregion] = STATE(111), [sym_preproc_line] = STATE(111), @@ -51600,8 +51623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(111), [sym_preproc_define] = STATE(111), [sym_preproc_undef] = STATE(111), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -51616,9 +51639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -51638,7 +51662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -51698,106 +51722,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [112] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5025), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym__variable_designation] = STATE(6852), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2235), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6626), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(112), [sym_preproc_endregion] = STATE(112), [sym_preproc_line] = STATE(112), @@ -51807,59 +51827,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(112), [sym_preproc_define] = STATE(112), [sym_preproc_undef] = STATE(112), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RBRACK] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_field] = ACTIONS(1053), + [anon_sym_event] = ACTIONS(1053), + [anon_sym_method] = ACTIONS(1053), + [anon_sym_param] = ACTIONS(1053), + [anon_sym_property] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), + [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_out] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51901,102 +51926,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [113] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6623), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5433), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(113), [sym_preproc_endregion] = STATE(113), [sym_preproc_line] = STATE(113), @@ -52006,14 +52031,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(113), [sym_preproc_define] = STATE(113), [sym_preproc_undef] = STATE(113), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1143), + [anon_sym_RBRACK] = ACTIONS(1113), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), @@ -52022,9 +52047,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -52044,7 +52070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_CARET] = ACTIONS(1067), [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), @@ -52061,7 +52087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1115), [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -52104,102 +52130,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [114] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5641), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6650), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5026), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym__variable_designation] = STATE(6986), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2233), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(114), [sym_preproc_endregion] = STATE(114), [sym_preproc_line] = STATE(114), @@ -52209,63 +52239,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(114), [sym_preproc_define] = STATE(114), [sym_preproc_undef] = STATE(114), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_field] = ACTIONS(1053), - [anon_sym_event] = ACTIONS(1053), - [anon_sym_method] = ACTIONS(1053), - [anon_sym_param] = ACTIONS(1053), - [anon_sym_property] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_out] = ACTIONS(1063), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1149), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52307,104 +52333,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [115] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5025), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5066), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(115), [sym_preproc_endregion] = STATE(115), [sym_preproc_line] = STATE(115), @@ -52414,9 +52440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(115), [sym_preproc_define] = STATE(115), [sym_preproc_undef] = STATE(115), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -52424,49 +52450,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52508,104 +52534,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [116] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5110), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6734), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5589), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5077), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(116), [sym_preproc_endregion] = STATE(116), [sym_preproc_line] = STATE(116), @@ -52615,210 +52641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(116), [sym_preproc_define] = STATE(116), [sym_preproc_undef] = STATE(116), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [117] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5002), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(117), - [sym_preproc_endregion] = STATE(117), - [sym_preproc_line] = STATE(117), - [sym_preproc_pragma] = STATE(117), - [sym_preproc_nullable] = STATE(117), - [sym_preproc_error] = STATE(117), - [sym_preproc_warning] = STATE(117), - [sym_preproc_define] = STATE(117), - [sym_preproc_undef] = STATE(117), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -52826,49 +52651,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [117] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4976), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(117), + [sym_preproc_endregion] = STATE(117), + [sym_preproc_line] = STATE(117), + [sym_preproc_pragma] = STATE(117), + [sym_preproc_nullable] = STATE(117), + [sym_preproc_error] = STATE(117), + [sym_preproc_warning] = STATE(117), + [sym_preproc_define] = STATE(117), + [sym_preproc_undef] = STATE(117), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52910,104 +52936,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [118] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5019), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4968), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(118), [sym_preproc_endregion] = STATE(118), [sym_preproc_line] = STATE(118), @@ -53017,59 +53043,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(118), [sym_preproc_define] = STATE(118), [sym_preproc_undef] = STATE(118), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53111,104 +53137,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [119] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5030), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5011), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(119), [sym_preproc_endregion] = STATE(119), [sym_preproc_line] = STATE(119), @@ -53218,59 +53244,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(119), [sym_preproc_define] = STATE(119), [sym_preproc_undef] = STATE(119), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53312,104 +53338,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [120] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7339), - [sym_pattern] = STATE(6731), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6923), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5037), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6727), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(120), [sym_preproc_endregion] = STATE(120), [sym_preproc_line] = STATE(120), @@ -53419,59 +53445,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(120), [sym_preproc_define] = STATE(120), [sym_preproc_undef] = STATE(120), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53513,104 +53539,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [121] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4982), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7106), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5088), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6721), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5589), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(121), [sym_preproc_endregion] = STATE(121), [sym_preproc_line] = STATE(121), @@ -53620,59 +53646,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(121), [sym_preproc_define] = STATE(121), [sym_preproc_undef] = STATE(121), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53714,104 +53740,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [122] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5037), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6699), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5108), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6721), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5589), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(122), [sym_preproc_endregion] = STATE(122), [sym_preproc_line] = STATE(122), @@ -53821,59 +53847,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(122), [sym_preproc_define] = STATE(122), [sym_preproc_undef] = STATE(122), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53915,84 +53941,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [123] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3904), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5138), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(123), [sym_preproc_endregion] = STATE(123), [sym_preproc_line] = STATE(123), @@ -54002,72 +54048,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(123), [sym_preproc_define] = STATE(123), [sym_preproc_undef] = STATE(123), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54080,26 +54113,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token3] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54110,90 +54136,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [124] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3781), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5000), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(124), [sym_preproc_endregion] = STATE(124), [sym_preproc_line] = STATE(124), @@ -54203,72 +54249,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(124), [sym_preproc_define] = STATE(124), [sym_preproc_undef] = STATE(124), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_ref] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54281,26 +54314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54311,110 +54337,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [125] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5088), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6734), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5589), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4902), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7211), + [sym_pattern] = STATE(6711), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6906), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(125), [sym_preproc_endregion] = STATE(125), [sym_preproc_line] = STATE(125), @@ -54424,59 +54450,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(125), [sym_preproc_define] = STATE(125), [sym_preproc_undef] = STATE(125), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54518,104 +54544,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [126] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5141), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4924), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(126), [sym_preproc_endregion] = STATE(126), [sym_preproc_line] = STATE(126), @@ -54625,9 +54651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(126), [sym_preproc_define] = STATE(126), [sym_preproc_undef] = STATE(126), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -54635,49 +54661,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54719,104 +54745,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [127] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4968), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4925), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), [sym_pattern] = STATE(6699), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(127), [sym_preproc_endregion] = STATE(127), [sym_preproc_line] = STATE(127), @@ -54826,59 +54852,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(127), [sym_preproc_define] = STATE(127), [sym_preproc_undef] = STATE(127), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54920,104 +54946,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [128] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4900), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7339), - [sym_pattern] = STATE(6731), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6923), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4926), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(128), [sym_preproc_endregion] = STATE(128), [sym_preproc_line] = STATE(128), @@ -55027,59 +55053,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(128), [sym_preproc_define] = STATE(128), [sym_preproc_undef] = STATE(128), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55121,104 +55147,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [129] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4922), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4927), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(129), [sym_preproc_endregion] = STATE(129), [sym_preproc_line] = STATE(129), @@ -55228,9 +55254,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(129), [sym_preproc_define] = STATE(129), [sym_preproc_undef] = STATE(129), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -55238,49 +55264,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55322,104 +55348,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [130] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4925), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4931), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(130), [sym_preproc_endregion] = STATE(130), [sym_preproc_line] = STATE(130), @@ -55429,9 +55455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(130), [sym_preproc_define] = STATE(130), [sym_preproc_undef] = STATE(130), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -55439,49 +55465,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55523,104 +55549,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [131] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4926), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3737), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(131), [sym_preproc_endregion] = STATE(131), [sym_preproc_line] = STATE(131), @@ -55630,59 +55636,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(131), [sym_preproc_define] = STATE(131), [sym_preproc_undef] = STATE(131), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token3] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), + }, + [132] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4945), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(132), + [sym_preproc_endregion] = STATE(132), + [sym_preproc_line] = STATE(132), + [sym_preproc_pragma] = STATE(132), + [sym_preproc_nullable] = STATE(132), + [sym_preproc_error] = STATE(132), + [sym_preproc_warning] = STATE(132), + [sym_preproc_define] = STATE(132), + [sym_preproc_undef] = STATE(132), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55723,167 +55950,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [132] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4928), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(132), - [sym_preproc_endregion] = STATE(132), - [sym_preproc_line] = STATE(132), - [sym_preproc_pragma] = STATE(132), - [sym_preproc_nullable] = STATE(132), - [sym_preproc_error] = STATE(132), - [sym_preproc_warning] = STATE(132), - [sym_preproc_define] = STATE(132), - [sym_preproc_undef] = STATE(132), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [133] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5000), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(133), + [sym_preproc_endregion] = STATE(133), + [sym_preproc_line] = STATE(133), + [sym_preproc_pragma] = STATE(133), + [sym_preproc_nullable] = STATE(133), + [sym_preproc_error] = STATE(133), + [sym_preproc_warning] = STATE(133), + [sym_preproc_define] = STATE(133), + [sym_preproc_undef] = STATE(133), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55924,167 +56151,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [133] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4944), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(133), - [sym_preproc_endregion] = STATE(133), - [sym_preproc_line] = STATE(133), - [sym_preproc_pragma] = STATE(133), - [sym_preproc_nullable] = STATE(133), - [sym_preproc_error] = STATE(133), - [sym_preproc_warning] = STATE(133), - [sym_preproc_define] = STATE(133), - [sym_preproc_undef] = STATE(133), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [134] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5162), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(134), + [sym_preproc_endregion] = STATE(134), + [sym_preproc_line] = STATE(134), + [sym_preproc_pragma] = STATE(134), + [sym_preproc_nullable] = STATE(134), + [sym_preproc_error] = STATE(134), + [sym_preproc_warning] = STATE(134), + [sym_preproc_define] = STATE(134), + [sym_preproc_undef] = STATE(134), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56125,117 +56352,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [134] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5002), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(134), - [sym_preproc_endregion] = STATE(134), - [sym_preproc_line] = STATE(134), - [sym_preproc_pragma] = STATE(134), - [sym_preproc_nullable] = STATE(134), - [sym_preproc_error] = STATE(134), - [sym_preproc_warning] = STATE(134), - [sym_preproc_define] = STATE(134), - [sym_preproc_undef] = STATE(134), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [135] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4945), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(135), + [sym_preproc_endregion] = STATE(135), + [sym_preproc_line] = STATE(135), + [sym_preproc_pragma] = STATE(135), + [sym_preproc_nullable] = STATE(135), + [sym_preproc_error] = STATE(135), + [sym_preproc_warning] = STATE(135), + [sym_preproc_define] = STATE(135), + [sym_preproc_undef] = STATE(135), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -56243,250 +56470,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [135] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4944), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(135), - [sym_preproc_endregion] = STATE(135), - [sym_preproc_line] = STATE(135), - [sym_preproc_pragma] = STATE(135), - [sym_preproc_nullable] = STATE(135), - [sym_preproc_error] = STATE(135), - [sym_preproc_warning] = STATE(135), - [sym_preproc_define] = STATE(135), - [sym_preproc_undef] = STATE(135), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56528,104 +56554,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [136] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5108), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5107), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6699), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(136), [sym_preproc_endregion] = STATE(136), [sym_preproc_line] = STATE(136), @@ -56635,59 +56661,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(136), [sym_preproc_define] = STATE(136), [sym_preproc_undef] = STATE(136), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56729,104 +56755,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [137] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5069), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5026), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(137), [sym_preproc_endregion] = STATE(137), [sym_preproc_line] = STATE(137), @@ -56836,9 +56862,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(137), [sym_preproc_define] = STATE(137), [sym_preproc_undef] = STATE(137), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -56846,49 +56872,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56930,104 +56956,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [138] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5049), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3813), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(138), [sym_preproc_endregion] = STATE(138), [sym_preproc_line] = STATE(138), @@ -57037,59 +57043,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(138), [sym_preproc_define] = STATE(138), [sym_preproc_undef] = STATE(138), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57102,19 +57121,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57125,110 +57151,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [139] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5038), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5047), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(139), [sym_preproc_endregion] = STATE(139), [sym_preproc_line] = STATE(139), @@ -57238,59 +57264,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(139), [sym_preproc_define] = STATE(139), [sym_preproc_undef] = STATE(139), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57332,104 +57358,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [140] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5057), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5035), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(140), [sym_preproc_endregion] = STATE(140), [sym_preproc_line] = STATE(140), @@ -57439,59 +57465,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(140), [sym_preproc_define] = STATE(140), [sym_preproc_undef] = STATE(140), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57533,104 +57559,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [141] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5025), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5055), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(141), [sym_preproc_endregion] = STATE(141), [sym_preproc_line] = STATE(141), @@ -57640,59 +57666,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(141), [sym_preproc_define] = STATE(141), [sym_preproc_undef] = STATE(141), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57734,104 +57760,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [142] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5061), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5026), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(142), [sym_preproc_endregion] = STATE(142), [sym_preproc_line] = STATE(142), @@ -57841,59 +57867,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(142), [sym_preproc_define] = STATE(142), [sym_preproc_undef] = STATE(142), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57935,104 +57961,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [143] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5059), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(143), [sym_preproc_endregion] = STATE(143), [sym_preproc_line] = STATE(143), @@ -58042,59 +58068,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(143), [sym_preproc_define] = STATE(143), [sym_preproc_undef] = STATE(143), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58136,104 +58162,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [144] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5038), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5062), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(144), [sym_preproc_endregion] = STATE(144), [sym_preproc_line] = STATE(144), @@ -58243,59 +58269,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(144), [sym_preproc_define] = STATE(144), [sym_preproc_undef] = STATE(144), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58337,104 +58363,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [145] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5079), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6789), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5035), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_pattern] = STATE(6724), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(145), [sym_preproc_endregion] = STATE(145), [sym_preproc_line] = STATE(145), @@ -58444,59 +58470,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(145), [sym_preproc_define] = STATE(145), [sym_preproc_undef] = STATE(145), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58538,104 +58564,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [146] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3570), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2231), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4923), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7211), + [sym_pattern] = STATE(6711), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6906), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5287), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3573), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2222), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(146), [sym_preproc_endregion] = STATE(146), [sym_preproc_line] = STATE(146), @@ -58645,59 +58671,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(146), [sym_preproc_define] = STATE(146), [sym_preproc_undef] = STATE(146), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_ref] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58739,103 +58765,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [147] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(4983), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6705), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym__variable_designation] = STATE(6852), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_expression] = STATE(5477), - [sym_non_lvalue_expression] = STATE(3136), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6766), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym__variable_designation] = STATE(6986), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_expression] = STATE(5467), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2222), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2232), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(147), [sym_preproc_endregion] = STATE(147), [sym_preproc_line] = STATE(147), @@ -58845,59 +58871,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(147), [sym_preproc_define] = STATE(147), [sym_preproc_undef] = STATE(147), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_ref] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_ref] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58939,103 +58965,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [148] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(4983), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6705), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6940), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym__variable_designation] = STATE(6852), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_expression] = STATE(5477), - [sym_non_lvalue_expression] = STATE(3136), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6766), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6818), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym__variable_designation] = STATE(6986), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_expression] = STATE(5467), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2222), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2232), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(148), [sym_preproc_endregion] = STATE(148), [sym_preproc_line] = STATE(148), @@ -59045,59 +59071,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(148), [sym_preproc_define] = STATE(148), [sym_preproc_undef] = STATE(148), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_ref] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_ref] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(1117), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1125), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59139,84 +59165,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [149] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4130), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4141), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(149), [sym_preproc_endregion] = STATE(149), [sym_preproc_line] = STATE(149), @@ -59226,29 +59252,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(149), [sym_preproc_define] = STATE(149), [sym_preproc_undef] = STATE(149), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1229), [anon_sym_ref] = ACTIONS(1249), [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), @@ -59261,35 +59287,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1259), [anon_sym_DASH] = ACTIONS(1259), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1273), [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1277), [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59302,11 +59328,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(1287), @@ -59319,9 +59345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token3] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59338,84 +59364,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [150] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4140), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4119), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(150), [sym_preproc_endregion] = STATE(150), [sym_preproc_line] = STATE(150), @@ -59425,29 +59451,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(150), [sym_preproc_define] = STATE(150), [sym_preproc_undef] = STATE(150), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1159), [anon_sym_ref] = ACTIONS(1249), [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1159), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), @@ -59460,35 +59486,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1259), [anon_sym_DASH] = ACTIONS(1259), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1173), [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1273), [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1277), [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59501,11 +59527,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(1287), @@ -59518,9 +59544,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token3] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59537,84 +59563,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [151] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4295), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4291), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(151), [sym_preproc_endregion] = STATE(151), [sym_preproc_line] = STATE(151), @@ -59624,29 +59650,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(151), [sym_preproc_define] = STATE(151), [sym_preproc_undef] = STATE(151), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1229), [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), @@ -59659,37 +59685,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1333), [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59702,11 +59728,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -59735,84 +59761,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [152] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4248), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4287), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(152), [sym_preproc_endregion] = STATE(152), [sym_preproc_line] = STATE(152), @@ -59822,29 +59848,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(152), [sym_preproc_define] = STATE(152), [sym_preproc_undef] = STATE(152), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1159), [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1159), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), @@ -59857,37 +59883,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1173), [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1333), [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59900,11 +59926,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -59933,84 +59959,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [153] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4369), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4312), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(153), [sym_preproc_endregion] = STATE(153), [sym_preproc_line] = STATE(153), @@ -60020,8 +60046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(153), [sym_preproc_define] = STATE(153), [sym_preproc_undef] = STATE(153), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -60045,20 +60071,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(1351), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1129), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1131), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -60130,84 +60156,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [154] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4289), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(154), [sym_preproc_endregion] = STATE(154), [sym_preproc_line] = STATE(154), @@ -60217,45 +60243,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(154), [sym_preproc_define] = STATE(154), [sym_preproc_undef] = STATE(154), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1161), [anon_sym_COLON] = ACTIONS(1229), [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1359), [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1365), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1363), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -60263,20 +60289,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -60297,20 +60323,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60321,90 +60347,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [155] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4366), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4302), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(155), [sym_preproc_endregion] = STATE(155), [sym_preproc_line] = STATE(155), @@ -60414,68 +60440,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(155), [sym_preproc_define] = STATE(155), [sym_preproc_undef] = STATE(155), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60488,11 +60514,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -60505,9 +60531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token3] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60524,84 +60550,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [156] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4224), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(156), [sym_preproc_endregion] = STATE(156), [sym_preproc_line] = STATE(156), @@ -60611,37 +60637,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(156), [sym_preproc_define] = STATE(156), [sym_preproc_undef] = STATE(156), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1229), [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1379), [anon_sym_TILDE] = ACTIONS(1381), [anon_sym_PLUS_PLUS] = ACTIONS(1381), [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(1383), @@ -60657,16 +60680,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(1327), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1387), @@ -60691,20 +60714,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60715,90 +60741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [157] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4306), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4235), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(157), [sym_preproc_endregion] = STATE(157), [sym_preproc_line] = STATE(157), @@ -60808,34 +60834,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(157), [sym_preproc_define] = STATE(157), [sym_preproc_undef] = STATE(157), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_RPAREN] = ACTIONS(1159), [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1175), [anon_sym_BANG] = ACTIONS(1363), [anon_sym_TILDE] = ACTIONS(1365), [anon_sym_PLUS_PLUS] = ACTIONS(1365), [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1363), [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(1367), @@ -60851,16 +60880,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(1191), [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1371), @@ -60885,23 +60914,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token3] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60912,90 +60938,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [158] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4347), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(158), [sym_preproc_endregion] = STATE(158), [sym_preproc_line] = STATE(158), @@ -61005,71 +61031,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(158), [sym_preproc_define] = STATE(158), [sym_preproc_undef] = STATE(158), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61082,23 +61108,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61109,90 +61135,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [159] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4509), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4329), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(159), [sym_preproc_endregion] = STATE(159), [sym_preproc_line] = STATE(159), @@ -61202,8 +61228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(159), [sym_preproc_define] = STATE(159), [sym_preproc_undef] = STATE(159), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -61311,84 +61337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [160] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4354), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4456), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(160), [sym_preproc_endregion] = STATE(160), [sym_preproc_line] = STATE(160), @@ -61398,8 +61424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(160), [sym_preproc_define] = STATE(160), [sym_preproc_undef] = STATE(160), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -61507,84 +61533,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [161] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4537), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4373), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(161), [sym_preproc_endregion] = STATE(161), [sym_preproc_line] = STATE(161), @@ -61594,8 +61620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(161), [sym_preproc_define] = STATE(161), [sym_preproc_undef] = STATE(161), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -61703,84 +61729,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [162] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4374), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4496), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(162), [sym_preproc_endregion] = STATE(162), [sym_preproc_line] = STATE(162), @@ -61790,8 +61816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(162), [sym_preproc_define] = STATE(162), [sym_preproc_undef] = STATE(162), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -61899,84 +61925,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [163] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4435), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4416), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(163), [sym_preproc_endregion] = STATE(163), [sym_preproc_line] = STATE(163), @@ -61986,8 +62012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(163), [sym_preproc_define] = STATE(163), [sym_preproc_undef] = STATE(163), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -62094,84 +62120,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [164] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4692), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4810), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(164), [sym_preproc_endregion] = STATE(164), [sym_preproc_line] = STATE(164), @@ -62181,69 +62207,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(164), [sym_preproc_define] = STATE(164), [sym_preproc_undef] = STATE(164), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62256,11 +62282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -62289,84 +62315,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [165] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4402), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4463), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(165), [sym_preproc_endregion] = STATE(165), [sym_preproc_line] = STATE(165), @@ -62376,8 +62402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(165), [sym_preproc_define] = STATE(165), [sym_preproc_undef] = STATE(165), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -62484,84 +62510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [166] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4735), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4694), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(166), [sym_preproc_endregion] = STATE(166), [sym_preproc_line] = STATE(166), @@ -62571,216 +62597,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(166), [sym_preproc_define] = STATE(166), [sym_preproc_undef] = STATE(166), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [167] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4847), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(167), - [sym_preproc_endregion] = STATE(167), - [sym_preproc_line] = STATE(167), - [sym_preproc_pragma] = STATE(167), - [sym_preproc_nullable] = STATE(167), - [sym_preproc_error] = STATE(167), - [sym_preproc_warning] = STATE(167), - [sym_preproc_define] = STATE(167), - [sym_preproc_undef] = STATE(167), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), @@ -62788,20 +62622,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -62819,10 +62653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -62855,9 +62689,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62873,112 +62704,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [168] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(168), - [sym_preproc_endregion] = STATE(168), - [sym_preproc_line] = STATE(168), - [sym_preproc_pragma] = STATE(168), - [sym_preproc_nullable] = STATE(168), - [sym_preproc_error] = STATE(168), - [sym_preproc_warning] = STATE(168), - [sym_preproc_define] = STATE(168), - [sym_preproc_undef] = STATE(168), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [167] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(167), + [sym_preproc_endregion] = STATE(167), + [sym_preproc_line] = STATE(167), + [sym_preproc_pragma] = STATE(167), + [sym_preproc_nullable] = STATE(167), + [sym_preproc_error] = STATE(167), + [sym_preproc_warning] = STATE(167), + [sym_preproc_define] = STATE(167), + [sym_preproc_undef] = STATE(167), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -62986,20 +62814,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(75), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(79), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -63017,10 +62845,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [168] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(168), + [sym_preproc_endregion] = STATE(168), + [sym_preproc_line] = STATE(168), + [sym_preproc_pragma] = STATE(168), + [sym_preproc_nullable] = STATE(168), + [sym_preproc_error] = STATE(168), + [sym_preproc_warning] = STATE(168), + [sym_preproc_define] = STATE(168), + [sym_preproc_undef] = STATE(168), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -63069,84 +63095,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [169] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(169), [sym_preproc_endregion] = STATE(169), [sym_preproc_line] = STATE(169), @@ -63156,8 +63182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(169), [sym_preproc_define] = STATE(169), [sym_preproc_undef] = STATE(169), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -63165,15 +63191,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COLON] = ACTIONS(1229), [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1503), [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), @@ -63181,20 +63207,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1511), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1509), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -63212,10 +63238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -63264,84 +63290,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [170] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4809), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4834), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(170), [sym_preproc_endregion] = STATE(170), [sym_preproc_line] = STATE(170), @@ -63351,69 +63377,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(170), [sym_preproc_define] = STATE(170), [sym_preproc_undef] = STATE(170), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63426,11 +63449,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -63443,6 +63466,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63459,84 +63485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [171] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(171), [sym_preproc_endregion] = STATE(171), [sym_preproc_line] = STATE(171), @@ -63546,9 +63572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(171), [sym_preproc_define] = STATE(171), [sym_preproc_undef] = STATE(171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(6933), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6840), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -63556,10 +63582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(1159), [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -63570,20 +63596,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -63604,7 +63630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -63653,84 +63679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [172] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4699), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4738), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(172), [sym_preproc_endregion] = STATE(172), [sym_preproc_line] = STATE(172), @@ -63740,26 +63766,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(172), [sym_preproc_define] = STATE(172), [sym_preproc_undef] = STATE(172), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1529), [anon_sym_ref] = ACTIONS(1531), [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(1393), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1407), @@ -63771,36 +63797,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1413), [anon_sym_PLUS] = ACTIONS(1533), [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(1419), [anon_sym_base] = ACTIONS(1421), [anon_sym_var] = ACTIONS(1423), [sym_predefined_type] = ACTIONS(1425), [anon_sym_unchecked] = ACTIONS(1407), [anon_sym_yield] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1427), [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(1393), [anon_sym_await] = ACTIONS(1539), [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(1435), [anon_sym_into] = ACTIONS(1393), [anon_sym_join] = ACTIONS(1393), @@ -63813,11 +63839,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(1393), [anon_sym_by] = ACTIONS(1393), [anon_sym_select] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1439), [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(1443), @@ -63843,88 +63869,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_regular_start] = ACTIONS(1459), [sym_interpolation_verbatim_start] = ACTIONS(1461), [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_interpolation_close_brace] = ACTIONS(1159), + [sym_interpolation_close_brace] = ACTIONS(1229), [sym_raw_string_start] = ACTIONS(1465), }, [173] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3593), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4948), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(173), [sym_preproc_endregion] = STATE(173), [sym_preproc_line] = STATE(173), @@ -63934,42 +63960,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(173), [sym_preproc_define] = STATE(173), [sym_preproc_undef] = STATE(173), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1545), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1543), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -63977,22 +64002,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -64011,20 +64034,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1579), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64035,90 +64061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [174] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5033), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4533), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(174), [sym_preproc_endregion] = STATE(174), [sym_preproc_line] = STATE(174), @@ -64128,41 +64154,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(174), [sym_preproc_define] = STATE(174), [sym_preproc_undef] = STATE(174), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_EQ_GT] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), + }, + [175] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4504), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(175), + [sym_preproc_endregion] = STATE(175), + [sym_preproc_line] = STATE(175), + [sym_preproc_pragma] = STATE(175), + [sym_preproc_nullable] = STATE(175), + [sym_preproc_error] = STATE(175), + [sym_preproc_warning] = STATE(175), + [sym_preproc_define] = STATE(175), + [sym_preproc_undef] = STATE(175), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1555), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1559), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1557), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -64170,20 +64390,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -64202,23 +64425,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64229,135 +64449,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [175] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5054), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(175), - [sym_preproc_endregion] = STATE(175), - [sym_preproc_line] = STATE(175), - [sym_preproc_pragma] = STATE(175), - [sym_preproc_nullable] = STATE(175), - [sym_preproc_error] = STATE(175), - [sym_preproc_warning] = STATE(175), - [sym_preproc_define] = STATE(175), - [sym_preproc_undef] = STATE(175), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [176] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5025), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(176), + [sym_preproc_endregion] = STATE(176), + [sym_preproc_line] = STATE(176), + [sym_preproc_pragma] = STATE(176), + [sym_preproc_nullable] = STATE(176), + [sym_preproc_error] = STATE(176), + [sym_preproc_warning] = STATE(176), + [sym_preproc_define] = STATE(176), + [sym_preproc_undef] = STATE(176), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1521), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1623), + [anon_sym_CARET] = ACTIONS(717), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(719), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -64365,22 +64587,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -64399,20 +64619,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64428,97 +64648,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [176] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(176), - [sym_preproc_endregion] = STATE(176), - [sym_preproc_line] = STATE(176), - [sym_preproc_pragma] = STATE(176), - [sym_preproc_nullable] = STATE(176), - [sym_preproc_error] = STATE(176), - [sym_preproc_warning] = STATE(176), - [sym_preproc_define] = STATE(176), - [sym_preproc_undef] = STATE(176), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7033), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [177] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(177), + [sym_preproc_endregion] = STATE(177), + [sym_preproc_line] = STATE(177), + [sym_preproc_pragma] = STATE(177), + [sym_preproc_nullable] = STATE(177), + [sym_preproc_error] = STATE(177), + [sym_preproc_warning] = STATE(177), + [sym_preproc_define] = STATE(177), + [sym_preproc_undef] = STATE(177), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6896), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -64526,10 +64746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(1159), [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -64540,20 +64760,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -64574,7 +64794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -64622,108 +64842,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [177] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5072), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [178] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4746), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(177), - [sym_preproc_endregion] = STATE(177), - [sym_preproc_line] = STATE(177), - [sym_preproc_pragma] = STATE(177), - [sym_preproc_nullable] = STATE(177), - [sym_preproc_error] = STATE(177), - [sym_preproc_warning] = STATE(177), - [sym_preproc_define] = STATE(177), - [sym_preproc_undef] = STATE(177), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(178), + [sym_preproc_endregion] = STATE(178), + [sym_preproc_line] = STATE(178), + [sym_preproc_pragma] = STATE(178), + [sym_preproc_nullable] = STATE(178), + [sym_preproc_error] = STATE(178), + [sym_preproc_warning] = STATE(178), + [sym_preproc_define] = STATE(178), + [sym_preproc_undef] = STATE(178), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1583), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -64731,20 +64951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1639), + [anon_sym_CARET] = ACTIONS(1587), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1585), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -64763,10 +64983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -64816,130 +65036,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [178] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4467), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(178), - [sym_preproc_endregion] = STATE(178), - [sym_preproc_line] = STATE(178), - [sym_preproc_pragma] = STATE(178), - [sym_preproc_nullable] = STATE(178), - [sym_preproc_error] = STATE(178), - [sym_preproc_warning] = STATE(178), - [sym_preproc_define] = STATE(178), - [sym_preproc_undef] = STATE(178), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [179] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4549), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(179), + [sym_preproc_endregion] = STATE(179), + [sym_preproc_line] = STATE(179), + [sym_preproc_pragma] = STATE(179), + [sym_preproc_nullable] = STATE(179), + [sym_preproc_error] = STATE(179), + [sym_preproc_warning] = STATE(179), + [sym_preproc_define] = STATE(179), + [sym_preproc_undef] = STATE(179), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1583), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1587), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1585), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -64947,20 +65166,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(1327), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -64981,214 +65201,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [179] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(179), - [sym_preproc_endregion] = STATE(179), - [sym_preproc_line] = STATE(179), - [sym_preproc_pragma] = STATE(179), - [sym_preproc_nullable] = STATE(179), - [sym_preproc_error] = STATE(179), - [sym_preproc_warning] = STATE(179), - [sym_preproc_define] = STATE(179), - [sym_preproc_undef] = STATE(179), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7014), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65205,84 +65231,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [180] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5024), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5016), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(180), [sym_preproc_endregion] = STATE(180), [sym_preproc_line] = STATE(180), @@ -65292,65 +65318,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(180), [sym_preproc_define] = STATE(180), [sym_preproc_undef] = STATE(180), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(719), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65363,11 +65392,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -65380,9 +65409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65399,84 +65425,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [181] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4492), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(181), [sym_preproc_endregion] = STATE(181), [sym_preproc_line] = STATE(181), @@ -65486,44 +65512,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(181), [sym_preproc_define] = STATE(181), [sym_preproc_undef] = STATE(181), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7041), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1603), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1601), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -65531,20 +65555,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -65563,20 +65589,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65587,90 +65613,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [182] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5140), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4485), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(182), [sym_preproc_endregion] = STATE(182), [sym_preproc_line] = STATE(182), @@ -65680,262 +65706,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(182), [sym_preproc_define] = STATE(182), [sym_preproc_undef] = STATE(182), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_interpolation_close_brace] = ACTIONS(1159), - [sym_raw_string_start] = ACTIONS(1465), - }, - [183] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(183), - [sym_preproc_endregion] = STATE(183), - [sym_preproc_line] = STATE(183), - [sym_preproc_pragma] = STATE(183), - [sym_preproc_nullable] = STATE(183), - [sym_preproc_error] = STATE(183), - [sym_preproc_warning] = STATE(183), - [sym_preproc_define] = STATE(183), - [sym_preproc_undef] = STATE(183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(6841), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65948,23 +65780,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65975,113 +65807,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [184] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4745), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), + [183] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4794), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(184), - [sym_preproc_endregion] = STATE(184), - [sym_preproc_line] = STATE(184), - [sym_preproc_pragma] = STATE(184), - [sym_preproc_nullable] = STATE(184), - [sym_preproc_error] = STATE(184), - [sym_preproc_warning] = STATE(184), - [sym_preproc_define] = STATE(184), - [sym_preproc_undef] = STATE(184), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(183), + [sym_preproc_endregion] = STATE(183), + [sym_preproc_line] = STATE(183), + [sym_preproc_pragma] = STATE(183), + [sym_preproc_nullable] = STATE(183), + [sym_preproc_error] = STATE(183), + [sym_preproc_warning] = STATE(183), + [sym_preproc_define] = STATE(183), + [sym_preproc_undef] = STATE(183), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1583), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -66089,20 +65922,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1619), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1617), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -66114,17 +65947,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), - [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -66174,132 +66006,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [185] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5018), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(185), - [sym_preproc_endregion] = STATE(185), - [sym_preproc_line] = STATE(185), - [sym_preproc_pragma] = STATE(185), - [sym_preproc_nullable] = STATE(185), - [sym_preproc_error] = STATE(185), - [sym_preproc_warning] = STATE(185), - [sym_preproc_define] = STATE(185), - [sym_preproc_undef] = STATE(185), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [184] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4585), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(184), + [sym_preproc_endregion] = STATE(184), + [sym_preproc_line] = STATE(184), + [sym_preproc_pragma] = STATE(184), + [sym_preproc_nullable] = STATE(184), + [sym_preproc_error] = STATE(184), + [sym_preproc_warning] = STATE(184), + [sym_preproc_define] = STATE(184), + [sym_preproc_undef] = STATE(184), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1229), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1583), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(1619), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(1617), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -66307,20 +66137,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1327), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -66339,20 +66171,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66368,85 +66200,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [185] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(185), + [sym_preproc_endregion] = STATE(185), + [sym_preproc_line] = STATE(185), + [sym_preproc_pragma] = STATE(185), + [sym_preproc_nullable] = STATE(185), + [sym_preproc_error] = STATE(185), + [sym_preproc_warning] = STATE(185), + [sym_preproc_define] = STATE(185), + [sym_preproc_undef] = STATE(185), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_interpolation_close_brace] = ACTIONS(1159), + [sym_raw_string_start] = ACTIONS(1465), + }, [186] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4738), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4942), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(186), [sym_preproc_endregion] = STATE(186), [sym_preproc_line] = STATE(186), @@ -66456,8 +66482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(186), [sym_preproc_define] = STATE(186), [sym_preproc_undef] = STATE(186), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -66465,8 +66491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_COLON] = ACTIONS(1229), [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), @@ -66479,20 +66505,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), [anon_sym_true] = ACTIONS(1413), [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), [anon_sym_STAR] = ACTIONS(1477), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1635), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1633), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -66510,10 +66536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1393), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_throw] = ACTIONS(1637), [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -66563,84 +66589,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [187] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4915), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5052), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(187), [sym_preproc_endregion] = STATE(187), [sym_preproc_line] = STATE(187), @@ -66650,68 +66676,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(187), [sym_preproc_define] = STATE(187), [sym_preproc_undef] = STATE(187), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), - [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66724,11 +66750,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -66757,84 +66783,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [188] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3724), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5004), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(188), [sym_preproc_endregion] = STATE(188), [sym_preproc_line] = STATE(188), @@ -66844,68 +66870,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(188), [sym_preproc_define] = STATE(188), [sym_preproc_undef] = STATE(188), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66918,23 +66944,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66945,90 +66971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [189] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4544), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5018), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(189), [sym_preproc_endregion] = STATE(189), [sym_preproc_line] = STATE(189), @@ -67038,68 +67064,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(189), [sym_preproc_define] = STATE(189), [sym_preproc_undef] = STATE(189), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67112,23 +67135,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67145,84 +67171,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [190] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4886), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4812), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(190), [sym_preproc_endregion] = STATE(190), [sym_preproc_line] = STATE(190), @@ -67232,15 +67258,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(190), [sym_preproc_define] = STATE(190), [sym_preproc_undef] = STATE(190), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -67248,26 +67274,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), - [anon_sym_in] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1665), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1663), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -67279,16 +67304,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), + [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -67322,7 +67348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67339,84 +67365,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [191] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4843), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4637), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(191), [sym_preproc_endregion] = STATE(191), [sym_preproc_line] = STATE(191), @@ -67426,15 +67452,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(191), [sym_preproc_define] = STATE(191), [sym_preproc_undef] = STATE(191), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -67442,26 +67468,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1665), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1663), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -67473,16 +67498,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), + [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -67516,7 +67542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67533,84 +67559,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [192] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3633), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5069), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(192), [sym_preproc_endregion] = STATE(192), [sym_preproc_line] = STATE(192), @@ -67620,42 +67646,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(192), [sym_preproc_define] = STATE(192), [sym_preproc_undef] = STATE(192), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1679), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -67663,20 +67688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1327), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -67697,20 +67723,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1579), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67721,90 +67747,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [193] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5006), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4917), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(193), [sym_preproc_endregion] = STATE(193), [sym_preproc_line] = STATE(193), @@ -67814,16 +67840,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(193), [sym_preproc_define] = STATE(193), [sym_preproc_undef] = STATE(193), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -67836,20 +67861,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1623), + [anon_sym_CARET] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1679), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -67861,16 +67886,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -67921,84 +67947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [194] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(194), [sym_preproc_endregion] = STATE(194), [sym_preproc_line] = STATE(194), @@ -68008,9 +68034,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(194), [sym_preproc_define] = STATE(194), [sym_preproc_undef] = STATE(194), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7060), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6952), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -68018,10 +68044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(1159), [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -68032,20 +68058,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -68066,7 +68092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -68115,84 +68141,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [195] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3697), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3710), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(195), [sym_preproc_endregion] = STATE(195), [sym_preproc_line] = STATE(195), @@ -68202,42 +68228,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(195), [sym_preproc_define] = STATE(195), [sym_preproc_undef] = STATE(195), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1691), [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1701), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1707), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1705), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -68245,16 +68271,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1713), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1719), [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1723), @@ -68279,20 +68305,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1579), + [anon_sym_stackalloc] = ACTIONS(1727), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68303,90 +68329,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [196] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4582), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5081), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(196), [sym_preproc_endregion] = STATE(196), [sym_preproc_line] = STATE(196), @@ -68396,68 +68422,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(196), [sym_preproc_define] = STATE(196), [sym_preproc_undef] = STATE(196), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_in] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68470,11 +68496,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -68486,7 +68512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68503,84 +68529,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [197] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5084), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4977), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(197), [sym_preproc_endregion] = STATE(197), [sym_preproc_line] = STATE(197), @@ -68590,68 +68616,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(197), [sym_preproc_define] = STATE(197), [sym_preproc_undef] = STATE(197), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_in] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68664,11 +68690,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -68680,7 +68706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68697,84 +68723,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [198] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3682), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(198), [sym_preproc_endregion] = STATE(198), [sym_preproc_line] = STATE(198), @@ -68784,9 +68810,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(198), [sym_preproc_define] = STATE(198), [sym_preproc_undef] = STATE(198), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7085), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [199] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(199), + [sym_preproc_endregion] = STATE(199), + [sym_preproc_line] = STATE(199), + [sym_preproc_pragma] = STATE(199), + [sym_preproc_nullable] = STATE(199), + [sym_preproc_error] = STATE(199), + [sym_preproc_warning] = STATE(199), + [sym_preproc_define] = STATE(199), + [sym_preproc_undef] = STATE(199), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(7058), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -68794,10 +69014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(1159), [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -68808,20 +69028,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -68842,7 +69062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -68890,130 +69110,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [199] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4788), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(199), - [sym_preproc_endregion] = STATE(199), - [sym_preproc_line] = STATE(199), - [sym_preproc_pragma] = STATE(199), - [sym_preproc_nullable] = STATE(199), - [sym_preproc_error] = STATE(199), - [sym_preproc_warning] = STATE(199), - [sym_preproc_define] = STATE(199), - [sym_preproc_undef] = STATE(199), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [200] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(200), + [sym_preproc_endregion] = STATE(200), + [sym_preproc_line] = STATE(200), + [sym_preproc_pragma] = STATE(200), + [sym_preproc_nullable] = STATE(200), + [sym_preproc_error] = STATE(200), + [sym_preproc_warning] = STATE(200), + [sym_preproc_define] = STATE(200), + [sym_preproc_undef] = STATE(200), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6939), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1749), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -69021,22 +69243,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -69055,20 +69275,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69084,129 +69304,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [200] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4390), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(200), - [sym_preproc_endregion] = STATE(200), - [sym_preproc_line] = STATE(200), - [sym_preproc_pragma] = STATE(200), - [sym_preproc_nullable] = STATE(200), - [sym_preproc_error] = STATE(200), - [sym_preproc_warning] = STATE(200), - [sym_preproc_define] = STATE(200), - [sym_preproc_undef] = STATE(200), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(29), + [201] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(201), + [sym_preproc_endregion] = STATE(201), + [sym_preproc_line] = STATE(201), + [sym_preproc_pragma] = STATE(201), + [sym_preproc_nullable] = STATE(201), + [sym_preproc_error] = STATE(201), + [sym_preproc_warning] = STATE(201), + [sym_preproc_define] = STATE(201), + [sym_preproc_undef] = STATE(201), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6854), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -69214,23 +69437,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_EQ_GT] = ACTIONS(1159), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -69249,20 +69469,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69273,161 +69493,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [201] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(201), - [sym_preproc_endregion] = STATE(201), - [sym_preproc_line] = STATE(201), - [sym_preproc_pragma] = STATE(201), - [sym_preproc_nullable] = STATE(201), - [sym_preproc_error] = STATE(201), - [sym_preproc_warning] = STATE(201), - [sym_preproc_define] = STATE(201), - [sym_preproc_undef] = STATE(201), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [202] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(202), + [sym_preproc_endregion] = STATE(202), + [sym_preproc_line] = STATE(202), + [sym_preproc_pragma] = STATE(202), + [sym_preproc_nullable] = STATE(202), + [sym_preproc_error] = STATE(202), + [sym_preproc_warning] = STATE(202), + [sym_preproc_define] = STATE(202), + [sym_preproc_undef] = STATE(202), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(7051), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69440,23 +69660,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69467,161 +69687,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [202] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4977), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(202), - [sym_preproc_endregion] = STATE(202), - [sym_preproc_line] = STATE(202), - [sym_preproc_pragma] = STATE(202), - [sym_preproc_nullable] = STATE(202), - [sym_preproc_error] = STATE(202), - [sym_preproc_warning] = STATE(202), - [sym_preproc_define] = STATE(202), - [sym_preproc_undef] = STATE(202), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [203] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3696), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(203), + [sym_preproc_endregion] = STATE(203), + [sym_preproc_line] = STATE(203), + [sym_preproc_pragma] = STATE(203), + [sym_preproc_nullable] = STATE(203), + [sym_preproc_error] = STATE(203), + [sym_preproc_warning] = STATE(203), + [sym_preproc_define] = STATE(203), + [sym_preproc_undef] = STATE(203), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69634,23 +69854,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69661,101 +69881,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [203] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [204] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4811), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(203), - [sym_preproc_endregion] = STATE(203), - [sym_preproc_line] = STATE(203), - [sym_preproc_pragma] = STATE(203), - [sym_preproc_nullable] = STATE(203), - [sym_preproc_error] = STATE(203), - [sym_preproc_warning] = STATE(203), - [sym_preproc_define] = STATE(203), - [sym_preproc_undef] = STATE(203), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4887), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(204), + [sym_preproc_endregion] = STATE(204), + [sym_preproc_line] = STATE(204), + [sym_preproc_pragma] = STATE(204), + [sym_preproc_nullable] = STATE(204), + [sym_preproc_error] = STATE(204), + [sym_preproc_warning] = STATE(204), + [sym_preproc_define] = STATE(204), + [sym_preproc_undef] = STATE(204), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -69770,6 +69990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), + [anon_sym_in] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), @@ -69783,7 +70004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1797), [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1183), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1799), @@ -69800,17 +70021,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), - [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -69844,7 +70064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69860,96 +70080,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [204] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [205] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(204), - [sym_preproc_endregion] = STATE(204), - [sym_preproc_line] = STATE(204), - [sym_preproc_pragma] = STATE(204), - [sym_preproc_nullable] = STATE(204), - [sym_preproc_error] = STATE(204), - [sym_preproc_warning] = STATE(204), - [sym_preproc_define] = STATE(204), - [sym_preproc_undef] = STATE(204), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4847), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(205), + [sym_preproc_endregion] = STATE(205), + [sym_preproc_line] = STATE(205), + [sym_preproc_pragma] = STATE(205), + [sym_preproc_nullable] = STATE(205), + [sym_preproc_error] = STATE(205), + [sym_preproc_warning] = STATE(205), + [sym_preproc_define] = STATE(205), + [sym_preproc_undef] = STATE(205), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -69964,6 +70184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), @@ -69977,7 +70198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1797), [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1183), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), [anon_sym_CARET] = ACTIONS(1799), @@ -69994,17 +70215,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), - [anon_sym_EQ_GT] = ACTIONS(1229), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -70038,7 +70258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70054,130 +70274,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [205] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [206] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4397), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(205), - [sym_preproc_endregion] = STATE(205), - [sym_preproc_line] = STATE(205), - [sym_preproc_pragma] = STATE(205), - [sym_preproc_nullable] = STATE(205), - [sym_preproc_error] = STATE(205), - [sym_preproc_warning] = STATE(205), - [sym_preproc_define] = STATE(205), - [sym_preproc_undef] = STATE(205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3615), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(206), + [sym_preproc_endregion] = STATE(206), + [sym_preproc_line] = STATE(206), + [sym_preproc_pragma] = STATE(206), + [sym_preproc_nullable] = STATE(206), + [sym_preproc_error] = STATE(206), + [sym_preproc_warning] = STATE(206), + [sym_preproc_define] = STATE(206), + [sym_preproc_undef] = STATE(206), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1779), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1783), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1781), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -70185,20 +70405,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(1713), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -70219,213 +70439,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(1727), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [206] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4946), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(206), - [sym_preproc_endregion] = STATE(206), - [sym_preproc_line] = STATE(206), - [sym_preproc_pragma] = STATE(206), - [sym_preproc_nullable] = STATE(206), - [sym_preproc_error] = STATE(206), - [sym_preproc_warning] = STATE(206), - [sym_preproc_define] = STATE(206), - [sym_preproc_undef] = STATE(206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70436,91 +70463,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_interpolation_close_brace] = ACTIONS(1229), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [207] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5021), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(207), [sym_preproc_endregion] = STATE(207), [sym_preproc_line] = STATE(207), @@ -70530,23 +70556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(207), [sym_preproc_define] = STATE(207), [sym_preproc_undef] = STATE(207), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_list_pattern_repeat1] = STATE(6839), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -70554,20 +70580,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(1513), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -70585,10 +70611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -70637,84 +70663,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [208] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4700), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(208), [sym_preproc_endregion] = STATE(208), [sym_preproc_line] = STATE(208), @@ -70724,44 +70750,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(208), [sym_preproc_define] = STATE(208), [sym_preproc_undef] = STATE(208), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_list_pattern_repeat1] = STATE(7090), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_COLON] = ACTIONS(1159), [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(29), + [anon_sym_where] = ACTIONS(1393), [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1535), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1533), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -70769,52 +70794,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1417), [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1437), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70825,90 +70850,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_interpolation_close_brace] = ACTIONS(1159), + [sym_raw_string_start] = ACTIONS(1465), }, [209] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4147), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4138), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(209), [sym_preproc_endregion] = STATE(209), [sym_preproc_line] = STATE(209), @@ -70918,8 +70944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(209), [sym_preproc_define] = STATE(209), [sym_preproc_undef] = STATE(209), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -70927,15 +70953,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(1809), [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), @@ -70948,37 +70974,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1815), [anon_sym_DASH] = ACTIONS(1815), [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1273), [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1823), [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70991,11 +71017,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), @@ -71024,84 +71050,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [210] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4049), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5058), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(210), [sym_preproc_endregion] = STATE(210), [sym_preproc_line] = STATE(210), @@ -71111,67 +71137,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(210), [sym_preproc_define] = STATE(210), [sym_preproc_undef] = STATE(210), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1827), [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1833), [anon_sym_TILDE] = ACTIONS(1835), [anon_sym_PLUS_PLUS] = ACTIONS(1835), [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1833), [anon_sym_DASH] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1173), [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1841), [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71184,23 +71210,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71211,90 +71237,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [211] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4790), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5074), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(211), [sym_preproc_endregion] = STATE(211), [sym_preproc_line] = STATE(211), @@ -71304,72 +71330,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(211), [sym_preproc_define] = STATE(211), [sym_preproc_undef] = STATE(211), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), [anon_sym_let] = ACTIONS(29), [anon_sym_orderby] = ACTIONS(29), [anon_sym_ascending] = ACTIONS(29), @@ -71377,23 +71403,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71404,90 +71430,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [212] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4588), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4811), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(212), [sym_preproc_endregion] = STATE(212), [sym_preproc_line] = STATE(212), @@ -71497,8 +71523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(212), [sym_preproc_define] = STATE(212), [sym_preproc_undef] = STATE(212), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -71511,10 +71537,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), @@ -71527,37 +71553,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1851), [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1173), [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1191), [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1859), [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71570,11 +71596,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(1201), [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(1205), @@ -71603,84 +71629,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [213] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4806), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4627), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(213), [sym_preproc_endregion] = STATE(213), [sym_preproc_line] = STATE(213), @@ -71690,67 +71716,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(213), [sym_preproc_define] = STATE(213), [sym_preproc_undef] = STATE(213), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71763,11 +71789,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1201), [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(1205), @@ -71796,84 +71822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [214] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4598), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5061), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(214), [sym_preproc_endregion] = STATE(214), [sym_preproc_line] = STATE(214), @@ -71883,67 +71909,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(214), [sym_preproc_define] = STATE(214), [sym_preproc_undef] = STATE(214), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1863), [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1869), [anon_sym_TILDE] = ACTIONS(1871), [anon_sym_PLUS_PLUS] = ACTIONS(1871), [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1869), [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1173), [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1877), [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71956,23 +71982,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71983,90 +72009,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [215] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5060), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5101), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(215), [sym_preproc_endregion] = STATE(215), [sym_preproc_line] = STATE(215), @@ -72076,67 +72102,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(215), [sym_preproc_define] = STATE(215), [sym_preproc_undef] = STATE(215), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72149,11 +72175,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(1339), @@ -72182,84 +72208,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [216] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5077), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4590), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(216), [sym_preproc_endregion] = STATE(216), [sym_preproc_line] = STATE(216), @@ -72269,17 +72295,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(216), [sym_preproc_define] = STATE(216), [sym_preproc_undef] = STATE(216), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1161), [anon_sym_LPAREN] = ACTIONS(1881), [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1885), @@ -72289,13 +72315,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1175), [anon_sym_BANG] = ACTIONS(1887), [anon_sym_TILDE] = ACTIONS(1889), [anon_sym_PLUS_PLUS] = ACTIONS(1889), [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1887), [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(1891), @@ -72311,16 +72337,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), + [anon_sym_default] = ACTIONS(1191), [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1895), @@ -72345,20 +72371,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72369,90 +72395,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [217] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4810), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5018), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(217), [sym_preproc_endregion] = STATE(217), [sym_preproc_line] = STATE(217), @@ -72462,41 +72488,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(217), [sym_preproc_define] = STATE(217), [sym_preproc_undef] = STATE(217), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1545), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1543), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -72504,22 +72532,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -72538,20 +72564,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72562,90 +72588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [218] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4117), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(218), [sym_preproc_endregion] = STATE(218), [sym_preproc_line] = STATE(218), @@ -72655,67 +72681,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(218), [sym_preproc_define] = STATE(218), [sym_preproc_undef] = STATE(218), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_and] = ACTIONS(1231), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72728,23 +72754,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72755,90 +72781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [219] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5063), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5065), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(219), [sym_preproc_endregion] = STATE(219), [sym_preproc_line] = STATE(219), @@ -72848,20 +72874,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(219), [sym_preproc_define] = STATE(219), [sym_preproc_undef] = STATE(219), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1905), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -72869,20 +72895,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1925), + [anon_sym_CARET] = ACTIONS(1909), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1907), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -72900,10 +72926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -72954,84 +72980,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [220] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5104), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5153), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(220), [sym_preproc_endregion] = STATE(220), [sym_preproc_line] = STATE(220), @@ -73041,20 +73067,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(220), [sym_preproc_define] = STATE(220), [sym_preproc_undef] = STATE(220), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1905), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), @@ -73062,20 +73088,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1925), + [anon_sym_CARET] = ACTIONS(1909), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1907), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -73093,10 +73119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -73147,84 +73173,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [221] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5068), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4807), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(221), [sym_preproc_endregion] = STATE(221), [sym_preproc_line] = STATE(221), @@ -73234,41 +73260,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(221), [sym_preproc_define] = STATE(221), [sym_preproc_undef] = STATE(221), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1923), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1927), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1925), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -73276,20 +73302,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -73310,20 +73336,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73334,90 +73360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [222] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4603), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(222), [sym_preproc_endregion] = STATE(222), [sym_preproc_line] = STATE(222), @@ -73427,41 +73453,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(222), [sym_preproc_define] = STATE(222), [sym_preproc_undef] = STATE(222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1923), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1927), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1925), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -73469,20 +73495,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -73503,20 +73529,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73527,90 +73553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [223] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4138), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4049), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(223), [sym_preproc_endregion] = STATE(223), [sym_preproc_line] = STATE(223), @@ -73620,41 +73646,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(223), [sym_preproc_define] = STATE(223), [sym_preproc_undef] = STATE(223), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1941), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1945), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1943), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -73662,20 +73688,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1267), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_and] = ACTIONS(1231), [anon_sym_or] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(1229), @@ -73696,20 +73722,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73726,84 +73752,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [224] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5024), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4796), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(224), [sym_preproc_endregion] = STATE(224), [sym_preproc_line] = STATE(224), @@ -73813,43 +73839,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(224), [sym_preproc_define] = STATE(224), [sym_preproc_undef] = STATE(224), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RBRACK] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1885), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1889), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1887), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -73857,20 +73881,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1185), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -73889,20 +73915,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1199), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73913,90 +73939,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [225] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4069), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4068), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(225), [sym_preproc_endregion] = STATE(225), [sym_preproc_line] = STATE(225), @@ -74006,20 +74032,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(225), [sym_preproc_define] = STATE(225), [sym_preproc_undef] = STATE(225), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -74027,20 +74053,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1945), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1943), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -74058,10 +74084,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_and] = ACTIONS(1173), [anon_sym_or] = ACTIONS(1173), [anon_sym_AMP_AMP] = ACTIONS(1159), @@ -74112,84 +74138,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [226] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5354), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6858), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(4605), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(226), [sym_preproc_endregion] = STATE(226), [sym_preproc_line] = STATE(226), @@ -74199,66 +74240,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(226), [sym_preproc_define] = STATE(226), [sym_preproc_undef] = STATE(226), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_in] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74271,23 +74301,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74298,90 +74324,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [227] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5642), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3771), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(227), [sym_preproc_endregion] = STATE(227), [sym_preproc_line] = STATE(227), @@ -74391,66 +74417,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(227), [sym_preproc_define] = STATE(227), [sym_preproc_undef] = STATE(227), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1971), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1975), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74463,23 +74489,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_is] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1975), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74490,90 +74516,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [228] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5578), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7036), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(228), [sym_preproc_endregion] = STATE(228), [sym_preproc_line] = STATE(228), @@ -74583,66 +74624,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(228), [sym_preproc_define] = STATE(228), [sym_preproc_undef] = STATE(228), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74655,11 +74685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74688,99 +74714,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [229] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2289), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6784), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5481), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4601), - [sym_postfix_unary_expression] = STATE(4602), - [sym_prefix_unary_expression] = STATE(4602), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4601), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4602), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4601), - [sym_member_access_expression] = STATE(3256), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4602), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6896), - [sym_default_expression] = STATE(4601), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4601), - [sym_typeof_expression] = STATE(4601), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3256), - [sym_literal] = STATE(4601), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5619), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(229), [sym_preproc_endregion] = STATE(229), [sym_preproc_line] = STATE(229), @@ -74790,55 +74801,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(229), [sym_preproc_define] = STATE(229), [sym_preproc_undef] = STATE(229), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1991), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_out] = ACTIONS(1997), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1995), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1995), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74851,7 +74873,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(1995), + [anon_sym_DASH_GT] = ACTIONS(1997), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1995), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74880,84 +74906,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [230] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5622), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6858), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(4605), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(230), [sym_preproc_endregion] = STATE(230), [sym_preproc_line] = STATE(230), @@ -74967,66 +75008,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(230), [sym_preproc_define] = STATE(230), [sym_preproc_undef] = STATE(230), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1143), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75039,11 +75069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75072,84 +75098,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [231] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4062), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6858), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(231), [sym_preproc_endregion] = STATE(231), [sym_preproc_line] = STATE(231), @@ -75159,37 +75200,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(231), [sym_preproc_define] = STATE(231), [sym_preproc_undef] = STATE(231), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [232] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5197), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(232), + [sym_preproc_endregion] = STATE(232), + [sym_preproc_line] = STATE(232), + [sym_preproc_pragma] = STATE(232), + [sym_preproc_nullable] = STATE(232), + [sym_preproc_error] = STATE(232), + [sym_preproc_warning] = STATE(232), + [sym_preproc_define] = STATE(232), + [sym_preproc_undef] = STATE(232), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(2009), [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1255), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), + [anon_sym_checked] = ACTIONS(1257), [anon_sym_BANG] = ACTIONS(2013), [anon_sym_TILDE] = ACTIONS(2015), [anon_sym_PLUS_PLUS] = ACTIONS(2015), [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), [anon_sym_PLUS] = ACTIONS(2013), [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(2017), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), [anon_sym_CARET] = ACTIONS(2015), @@ -75202,20 +75419,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1267), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -75234,20 +75452,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1579), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75258,118 +75476,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [232] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5428), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(232), - [sym_preproc_endregion] = STATE(232), - [sym_preproc_line] = STATE(232), - [sym_preproc_pragma] = STATE(232), - [sym_preproc_nullable] = STATE(232), - [sym_preproc_error] = STATE(232), - [sym_preproc_warning] = STATE(232), - [sym_preproc_define] = STATE(232), - [sym_preproc_undef] = STATE(232), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [233] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5191), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(233), + [sym_preproc_endregion] = STATE(233), + [sym_preproc_line] = STATE(233), + [sym_preproc_pragma] = STATE(233), + [sym_preproc_nullable] = STATE(233), + [sym_preproc_error] = STATE(233), + [sym_preproc_warning] = STATE(233), + [sym_preproc_define] = STATE(233), + [sym_preproc_undef] = STATE(233), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), + }, + [234] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5383), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(234), + [sym_preproc_endregion] = STATE(234), + [sym_preproc_line] = STATE(234), + [sym_preproc_pragma] = STATE(234), + [sym_preproc_nullable] = STATE(234), + [sym_preproc_error] = STATE(234), + [sym_preproc_warning] = STATE(234), + [sym_preproc_define] = STATE(234), + [sym_preproc_undef] = STATE(234), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_QMARK] = ACTIONS(1995), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), @@ -75382,35 +75792,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1995), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(1995), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1975), + [anon_sym_switch] = ACTIONS(1995), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75423,11 +75833,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_is] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(1995), + [anon_sym_DASH_GT] = ACTIONS(1997), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1975), + [anon_sym_with] = ACTIONS(1995), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75455,158 +75865,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [233] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6946), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(233), - [sym_preproc_endregion] = STATE(233), - [sym_preproc_line] = STATE(233), - [sym_preproc_pragma] = STATE(233), - [sym_preproc_nullable] = STATE(233), - [sym_preproc_error] = STATE(233), - [sym_preproc_warning] = STATE(233), - [sym_preproc_define] = STATE(233), - [sym_preproc_undef] = STATE(233), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [235] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7035), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(235), + [sym_preproc_endregion] = STATE(235), + [sym_preproc_line] = STATE(235), + [sym_preproc_pragma] = STATE(235), + [sym_preproc_nullable] = STATE(235), + [sym_preproc_error] = STATE(235), + [sym_preproc_warning] = STATE(235), + [sym_preproc_define] = STATE(235), + [sym_preproc_undef] = STATE(235), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75647,158 +76057,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [234] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6946), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(234), - [sym_preproc_endregion] = STATE(234), - [sym_preproc_line] = STATE(234), - [sym_preproc_pragma] = STATE(234), - [sym_preproc_nullable] = STATE(234), - [sym_preproc_error] = STATE(234), - [sym_preproc_warning] = STATE(234), - [sym_preproc_define] = STATE(234), - [sym_preproc_undef] = STATE(234), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [236] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(6907), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(236), + [sym_preproc_endregion] = STATE(236), + [sym_preproc_line] = STATE(236), + [sym_preproc_pragma] = STATE(236), + [sym_preproc_nullable] = STATE(236), + [sym_preproc_error] = STATE(236), + [sym_preproc_warning] = STATE(236), + [sym_preproc_define] = STATE(236), + [sym_preproc_undef] = STATE(236), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75839,321 +76249,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [235] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4034), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(235), - [sym_preproc_endregion] = STATE(235), - [sym_preproc_line] = STATE(235), - [sym_preproc_pragma] = STATE(235), - [sym_preproc_nullable] = STATE(235), - [sym_preproc_error] = STATE(235), - [sym_preproc_warning] = STATE(235), - [sym_preproc_define] = STATE(235), - [sym_preproc_undef] = STATE(235), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2013), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, - [236] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5197), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(236), - [sym_preproc_endregion] = STATE(236), - [sym_preproc_line] = STATE(236), - [sym_preproc_pragma] = STATE(236), - [sym_preproc_nullable] = STATE(236), - [sym_preproc_error] = STATE(236), - [sym_preproc_warning] = STATE(236), - [sym_preproc_define] = STATE(236), - [sym_preproc_undef] = STATE(236), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [237] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5574), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(237), + [sym_preproc_endregion] = STATE(237), + [sym_preproc_line] = STATE(237), + [sym_preproc_pragma] = STATE(237), + [sym_preproc_nullable] = STATE(237), + [sym_preproc_error] = STATE(237), + [sym_preproc_warning] = STATE(237), + [sym_preproc_define] = STATE(237), + [sym_preproc_undef] = STATE(237), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2039), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -76161,21 +76379,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_EQ_GT] = ACTIONS(1159), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -76194,20 +76412,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76218,159 +76436,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [237] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5189), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(237), - [sym_preproc_endregion] = STATE(237), - [sym_preproc_line] = STATE(237), - [sym_preproc_pragma] = STATE(237), - [sym_preproc_nullable] = STATE(237), - [sym_preproc_error] = STATE(237), - [sym_preproc_warning] = STATE(237), - [sym_preproc_define] = STATE(237), - [sym_preproc_undef] = STATE(237), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [238] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5501), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(238), + [sym_preproc_endregion] = STATE(238), + [sym_preproc_line] = STATE(238), + [sym_preproc_pragma] = STATE(238), + [sym_preproc_nullable] = STATE(238), + [sym_preproc_error] = STATE(238), + [sym_preproc_warning] = STATE(238), + [sym_preproc_define] = STATE(238), + [sym_preproc_undef] = STATE(238), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2051), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1995), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1995), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76383,23 +76601,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(1995), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76410,163 +76628,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [238] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(6891), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(238), - [sym_preproc_endregion] = STATE(238), - [sym_preproc_line] = STATE(238), - [sym_preproc_pragma] = STATE(238), - [sym_preproc_nullable] = STATE(238), - [sym_preproc_error] = STATE(238), - [sym_preproc_warning] = STATE(238), - [sym_preproc_define] = STATE(238), - [sym_preproc_undef] = STATE(238), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [239] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6909), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(4605), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(239), + [sym_preproc_endregion] = STATE(239), + [sym_preproc_line] = STATE(239), + [sym_preproc_pragma] = STATE(239), + [sym_preproc_nullable] = STATE(239), + [sym_preproc_error] = STATE(239), + [sym_preproc_warning] = STATE(239), + [sym_preproc_define] = STATE(239), + [sym_preproc_undef] = STATE(239), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_COMMA] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1957), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76607,105 +76825,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [239] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5382), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(239), - [sym_preproc_endregion] = STATE(239), - [sym_preproc_line] = STATE(239), - [sym_preproc_pragma] = STATE(239), - [sym_preproc_nullable] = STATE(239), - [sym_preproc_error] = STATE(239), - [sym_preproc_warning] = STATE(239), - [sym_preproc_define] = STATE(239), - [sym_preproc_undef] = STATE(239), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [240] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(240), + [sym_preproc_endregion] = STATE(240), + [sym_preproc_line] = STATE(240), + [sym_preproc_pragma] = STATE(240), + [sym_preproc_nullable] = STATE(240), + [sym_preproc_error] = STATE(240), + [sym_preproc_warning] = STATE(240), + [sym_preproc_define] = STATE(240), + [sym_preproc_undef] = STATE(240), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -76716,20 +76934,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1985), + [anon_sym_CARET] = ACTIONS(2041), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(2039), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -76748,10 +76966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -76799,142 +77017,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [240] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6946), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(240), - [sym_preproc_endregion] = STATE(240), - [sym_preproc_line] = STATE(240), - [sym_preproc_pragma] = STATE(240), - [sym_preproc_nullable] = STATE(240), - [sym_preproc_error] = STATE(240), - [sym_preproc_warning] = STATE(240), - [sym_preproc_define] = STATE(240), - [sym_preproc_undef] = STATE(240), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [241] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2241), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6858), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(4605), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(241), + [sym_preproc_endregion] = STATE(241), + [sym_preproc_line] = STATE(241), + [sym_preproc_pragma] = STATE(241), + [sym_preproc_nullable] = STATE(241), + [sym_preproc_error] = STATE(241), + [sym_preproc_warning] = STATE(241), + [sym_preproc_define] = STATE(241), + [sym_preproc_undef] = STATE(241), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2033), + [anon_sym_ref] = ACTIONS(1957), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), @@ -76945,11 +77163,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1143), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -76991,158 +77209,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [241] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6925), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(241), - [sym_preproc_endregion] = STATE(241), - [sym_preproc_line] = STATE(241), - [sym_preproc_pragma] = STATE(241), - [sym_preproc_nullable] = STATE(241), - [sym_preproc_error] = STATE(241), - [sym_preproc_warning] = STATE(241), - [sym_preproc_define] = STATE(241), - [sym_preproc_undef] = STATE(241), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [242] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(242), + [sym_preproc_endregion] = STATE(242), + [sym_preproc_line] = STATE(242), + [sym_preproc_pragma] = STATE(242), + [sym_preproc_nullable] = STATE(242), + [sym_preproc_error] = STATE(242), + [sym_preproc_warning] = STATE(242), + [sym_preproc_define] = STATE(242), + [sym_preproc_undef] = STATE(242), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2061), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2063), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2063), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(2063), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_QMARK_QMARK] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77155,7 +77369,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_is] = ACTIONS(2063), + [anon_sym_DASH_GT] = ACTIONS(2061), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2063), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77183,277 +77401,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [242] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3770), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(242), - [sym_preproc_endregion] = STATE(242), - [sym_preproc_line] = STATE(242), - [sym_preproc_pragma] = STATE(242), - [sym_preproc_nullable] = STATE(242), - [sym_preproc_error] = STATE(242), - [sym_preproc_warning] = STATE(242), - [sym_preproc_define] = STATE(242), - [sym_preproc_undef] = STATE(242), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, [243] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3853), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5411), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(243), [sym_preproc_endregion] = STATE(243), [sym_preproc_line] = STATE(243), @@ -77463,66 +77489,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(243), [sym_preproc_define] = STATE(243), [sym_preproc_undef] = STATE(243), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2065), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1995), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1995), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_switch] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77535,23 +77561,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(1995), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77562,105 +77588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [244] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7009), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(244), [sym_preproc_endregion] = STATE(244), [sym_preproc_line] = STATE(244), @@ -77670,55 +77681,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(244), [sym_preproc_define] = STATE(244), [sym_preproc_undef] = STATE(244), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77731,7 +77753,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77760,99 +77786,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [245] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(6979), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5536), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(245), [sym_preproc_endregion] = STATE(245), [sym_preproc_line] = STATE(245), @@ -77862,55 +77873,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(245), [sym_preproc_define] = STATE(245), [sym_preproc_undef] = STATE(245), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COLON] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77923,7 +77945,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77952,84 +77978,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [246] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(6827), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(246), [sym_preproc_endregion] = STATE(246), [sym_preproc_line] = STATE(246), @@ -78039,66 +78080,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(246), [sym_preproc_define] = STATE(246), [sym_preproc_undef] = STATE(246), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78111,11 +78141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -78144,99 +78170,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [247] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(6926), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4597), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6789), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5423), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4599), + [sym_postfix_unary_expression] = STATE(4604), + [sym_prefix_unary_expression] = STATE(4604), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4599), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4604), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4599), + [sym_member_access_expression] = STATE(3212), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4604), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6809), + [sym_default_expression] = STATE(4599), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4599), + [sym_typeof_expression] = STATE(4599), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3212), + [sym_literal] = STATE(4599), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(247), [sym_preproc_endregion] = STATE(247), [sym_preproc_line] = STATE(247), @@ -78246,55 +78272,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(247), [sym_preproc_define] = STATE(247), [sym_preproc_undef] = STATE(247), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2079), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(2081), + [anon_sym_out] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1079), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78336,84 +78362,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [248] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(6904), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(248), [sym_preproc_endregion] = STATE(248), [sym_preproc_line] = STATE(248), @@ -78423,66 +78464,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(248), [sym_preproc_define] = STATE(248), [sym_preproc_undef] = STATE(248), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2103), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1975), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1975), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78495,11 +78525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_is] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1975), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -78528,84 +78554,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [249] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3990), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(249), [sym_preproc_endregion] = STATE(249), [sym_preproc_line] = STATE(249), @@ -78615,66 +78641,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(249), [sym_preproc_define] = STATE(249), [sym_preproc_undef] = STATE(249), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2105), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2107), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78687,23 +78713,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_is] = ACTIONS(2107), - [anon_sym_DASH_GT] = ACTIONS(2105), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78714,90 +78740,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [250] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(6887), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(250), [sym_preproc_endregion] = STATE(250), [sym_preproc_line] = STATE(250), @@ -78807,66 +78848,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(250), [sym_preproc_define] = STATE(250), [sym_preproc_undef] = STATE(250), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_in] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78879,11 +78909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -78895,7 +78921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78912,84 +78938,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [251] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5614), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(251), [sym_preproc_endregion] = STATE(251), [sym_preproc_line] = STATE(251), @@ -78999,66 +79025,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(251), [sym_preproc_define] = STATE(251), [sym_preproc_undef] = STATE(251), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_in] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79071,11 +79097,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -79087,7 +79113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79104,99 +79130,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [252] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6925), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5610), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(252), [sym_preproc_endregion] = STATE(252), [sym_preproc_line] = STATE(252), @@ -79206,55 +79217,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(252), [sym_preproc_define] = STATE(252), [sym_preproc_undef] = STATE(252), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79267,7 +79289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -79279,7 +79305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79296,84 +79322,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [253] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5354), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(253), [sym_preproc_endregion] = STATE(253), [sym_preproc_line] = STATE(253), @@ -79383,66 +79409,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(253), [sym_preproc_define] = STATE(253), [sym_preproc_undef] = STATE(253), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_in] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79455,11 +79481,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(1287), @@ -79471,7 +79497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79488,99 +79514,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [254] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(6829), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5232), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(254), [sym_preproc_endregion] = STATE(254), [sym_preproc_line] = STATE(254), @@ -79590,55 +79601,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(254), [sym_preproc_define] = STATE(254), [sym_preproc_undef] = STATE(254), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79651,19 +79673,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79674,90 +79700,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [255] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5629), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4096), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(255), [sym_preproc_endregion] = STATE(255), [sym_preproc_line] = STATE(255), @@ -79767,66 +79793,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(255), [sym_preproc_define] = STATE(255), [sym_preproc_undef] = STATE(255), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2133), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1975), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79839,23 +79865,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_is] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1975), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79866,105 +79892,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [256] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7013), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6909), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(256), [sym_preproc_endregion] = STATE(256), [sym_preproc_line] = STATE(256), @@ -79974,55 +80000,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(256), [sym_preproc_define] = STATE(256), [sym_preproc_undef] = STATE(256), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1239), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80064,99 +80090,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [257] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2238), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6946), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3762), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(257), [sym_preproc_endregion] = STATE(257), [sym_preproc_line] = STATE(257), @@ -80166,55 +80177,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(257), [sym_preproc_define] = STATE(257), [sym_preproc_undef] = STATE(257), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80227,19 +80249,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80250,90 +80276,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [258] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(258), [sym_preproc_endregion] = STATE(258), [sym_preproc_line] = STATE(258), @@ -80343,65 +80384,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(258), [sym_preproc_define] = STATE(258), [sym_preproc_undef] = STATE(258), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80414,11 +80444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -80447,99 +80473,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [259] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4178), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(259), [sym_preproc_endregion] = STATE(259), [sym_preproc_line] = STATE(259), @@ -80549,54 +80560,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(259), [sym_preproc_define] = STATE(259), [sym_preproc_undef] = STATE(259), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80609,19 +80631,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80632,90 +80658,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [260] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5318), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5322), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(260), [sym_preproc_endregion] = STATE(260), [sym_preproc_line] = STATE(260), @@ -80725,20 +80751,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(260), [sym_preproc_define] = STATE(260), [sym_preproc_undef] = STATE(260), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2163), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), @@ -80746,20 +80772,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2167), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2165), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -80777,10 +80803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -80829,84 +80855,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [261] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5606), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5334), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(261), [sym_preproc_endregion] = STATE(261), [sym_preproc_line] = STATE(261), @@ -80916,41 +80942,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(261), [sym_preproc_define] = STATE(261), [sym_preproc_undef] = STATE(261), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2163), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2167), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2165), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -80958,20 +80984,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), + [anon_sym_this] = ACTIONS(1267), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -80990,114 +81016,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [262] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5333), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(262), [sym_preproc_endregion] = STATE(262), [sym_preproc_line] = STATE(262), @@ -81107,65 +81148,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(262), [sym_preproc_define] = STATE(262), [sym_preproc_undef] = STATE(262), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81178,23 +81208,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81205,90 +81231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [263] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4213), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5570), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(263), [sym_preproc_endregion] = STATE(263), [sym_preproc_line] = STATE(263), @@ -81298,41 +81324,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(263), [sym_preproc_define] = STATE(263), [sym_preproc_undef] = STATE(263), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2183), [anon_sym_LT] = ACTIONS(1173), [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), [anon_sym_SLASH] = ACTIONS(1173), [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2185), [anon_sym_LT_LT] = ACTIONS(1159), [anon_sym_GT_GT] = ACTIONS(1173), [anon_sym_GT_GT_GT] = ACTIONS(1159), @@ -81340,20 +81366,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1159), [anon_sym_GT_EQ] = ACTIONS(1159), [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_AMP_AMP] = ACTIONS(1159), [anon_sym_PIPE_PIPE] = ACTIONS(1159), [anon_sym_QMARK_QMARK] = ACTIONS(1159), @@ -81372,20 +81398,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1173), [anon_sym_is] = ACTIONS(1173), [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81396,105 +81422,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [264] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4227), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(264), [sym_preproc_endregion] = STATE(264), [sym_preproc_line] = STATE(264), @@ -81504,54 +81515,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(264), [sym_preproc_define] = STATE(264), [sym_preproc_undef] = STATE(264), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81564,18 +81586,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -81587,90 +81613,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [265] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4190), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(265), [sym_preproc_endregion] = STATE(265), [sym_preproc_line] = STATE(265), @@ -81680,65 +81721,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(265), [sym_preproc_define] = STATE(265), [sym_preproc_undef] = STATE(265), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81751,23 +81781,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81778,90 +81804,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [266] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4289), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4172), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(266), [sym_preproc_endregion] = STATE(266), [sym_preproc_line] = STATE(266), @@ -81871,65 +81897,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(266), [sym_preproc_define] = STATE(266), [sym_preproc_undef] = STATE(266), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81942,23 +81968,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81975,99 +82001,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [267] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5546), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(267), [sym_preproc_endregion] = STATE(267), [sym_preproc_line] = STATE(267), @@ -82077,54 +82088,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(267), [sym_preproc_define] = STATE(267), [sym_preproc_undef] = STATE(267), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82137,7 +82159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82166,99 +82192,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [268] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(268), [sym_preproc_endregion] = STATE(268), [sym_preproc_line] = STATE(268), @@ -82268,54 +82279,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(268), [sym_preproc_define] = STATE(268), [sym_preproc_undef] = STATE(268), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82328,7 +82350,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82357,84 +82383,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [269] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5356), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5194), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(269), [sym_preproc_endregion] = STATE(269), [sym_preproc_line] = STATE(269), @@ -82444,65 +82470,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(269), [sym_preproc_define] = STATE(269), [sym_preproc_undef] = STATE(269), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82515,11 +82541,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(1287), @@ -82548,84 +82574,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [270] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5261), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4253), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(270), [sym_preproc_endregion] = STATE(270), [sym_preproc_line] = STATE(270), @@ -82635,41 +82661,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(270), [sym_preproc_define] = STATE(270), [sym_preproc_undef] = STATE(270), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1813), [anon_sym_LT] = ACTIONS(1231), [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), [anon_sym_SLASH] = ACTIONS(1231), [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2203), [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2201), [anon_sym_LT_LT] = ACTIONS(1229), [anon_sym_GT_GT] = ACTIONS(1231), [anon_sym_GT_GT_GT] = ACTIONS(1229), @@ -82677,20 +82703,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1229), [anon_sym_GT_EQ] = ACTIONS(1229), [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(1231), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_AMP_AMP] = ACTIONS(1229), [anon_sym_PIPE_PIPE] = ACTIONS(1229), [anon_sym_QMARK_QMARK] = ACTIONS(1229), @@ -82709,20 +82735,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1231), [anon_sym_is] = ACTIONS(1231), [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82739,99 +82765,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [271] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5670), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(271), [sym_preproc_endregion] = STATE(271), [sym_preproc_line] = STATE(271), @@ -82841,54 +82852,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(271), [sym_preproc_define] = STATE(271), [sym_preproc_undef] = STATE(271), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82901,7 +82923,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82930,99 +82956,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [272] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(272), [sym_preproc_endregion] = STATE(272), [sym_preproc_line] = STATE(272), @@ -83032,54 +83058,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(272), [sym_preproc_define] = STATE(272), [sym_preproc_undef] = STATE(272), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83121,84 +83147,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [273] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5542), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6927), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(273), [sym_preproc_endregion] = STATE(273), [sym_preproc_line] = STATE(273), @@ -83208,65 +83249,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(273), [sym_preproc_define] = STATE(273), [sym_preproc_undef] = STATE(273), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83279,11 +83309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -83312,99 +83338,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [274] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(274), [sym_preproc_endregion] = STATE(274), [sym_preproc_line] = STATE(274), @@ -83414,54 +83440,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(274), [sym_preproc_define] = STATE(274), [sym_preproc_undef] = STATE(274), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83503,99 +83529,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [275] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5530), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(275), [sym_preproc_endregion] = STATE(275), [sym_preproc_line] = STATE(275), @@ -83605,54 +83616,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(275), [sym_preproc_define] = STATE(275), [sym_preproc_undef] = STATE(275), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83665,7 +83687,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -83694,99 +83720,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [276] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(276), [sym_preproc_endregion] = STATE(276), [sym_preproc_line] = STATE(276), @@ -83796,54 +83822,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(276), [sym_preproc_define] = STATE(276), [sym_preproc_undef] = STATE(276), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83885,99 +83911,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [277] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(277), [sym_preproc_endregion] = STATE(277), [sym_preproc_line] = STATE(277), @@ -83987,38 +84013,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(277), [sym_preproc_define] = STATE(277), [sym_preproc_undef] = STATE(277), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), + [anon_sym_ref] = ACTIONS(2005), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), @@ -84029,11 +84055,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1239), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -84076,84 +84102,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [278] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5564), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(278), [sym_preproc_endregion] = STATE(278), [sym_preproc_line] = STATE(278), @@ -84163,65 +84204,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(278), [sym_preproc_define] = STATE(278), [sym_preproc_undef] = STATE(278), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84234,11 +84264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -84267,84 +84293,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [279] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5455), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5360), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(279), [sym_preproc_endregion] = STATE(279), [sym_preproc_line] = STATE(279), @@ -84354,65 +84380,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(279), [sym_preproc_define] = STATE(279), [sym_preproc_undef] = STATE(279), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84425,23 +84451,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84452,105 +84478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [280] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5261), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(280), [sym_preproc_endregion] = STATE(280), [sym_preproc_line] = STATE(280), @@ -84560,54 +84571,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(280), [sym_preproc_define] = STATE(280), [sym_preproc_undef] = STATE(280), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84620,128 +84642,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [281] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(281), [sym_preproc_endregion] = STATE(281), [sym_preproc_line] = STATE(281), @@ -84751,54 +84777,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(281), [sym_preproc_define] = STATE(281), [sym_preproc_undef] = STATE(281), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84840,99 +84866,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [282] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5598), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(282), [sym_preproc_endregion] = STATE(282), [sym_preproc_line] = STATE(282), @@ -84942,54 +84953,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(282), [sym_preproc_define] = STATE(282), [sym_preproc_undef] = STATE(282), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1231), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85002,7 +85024,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1229), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1231), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -85031,84 +85057,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [283] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5183), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(283), [sym_preproc_endregion] = STATE(283), [sym_preproc_line] = STATE(283), @@ -85118,65 +85159,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(283), [sym_preproc_define] = STATE(283), [sym_preproc_undef] = STATE(283), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85189,23 +85219,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85216,90 +85242,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [284] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5195), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(284), [sym_preproc_endregion] = STATE(284), [sym_preproc_line] = STATE(284), @@ -85309,65 +85350,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(284), [sym_preproc_define] = STATE(284), [sym_preproc_undef] = STATE(284), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1231), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85380,23 +85410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1229), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_with] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85407,90 +85433,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [285] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5572), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6927), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(285), [sym_preproc_endregion] = STATE(285), [sym_preproc_line] = STATE(285), @@ -85500,65 +85541,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(285), [sym_preproc_define] = STATE(285), [sym_preproc_undef] = STATE(285), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85571,11 +85601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -85604,99 +85630,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [286] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(286), [sym_preproc_endregion] = STATE(286), [sym_preproc_line] = STATE(286), @@ -85706,54 +85732,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(286), [sym_preproc_define] = STATE(286), [sym_preproc_undef] = STATE(286), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85795,84 +85821,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [287] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4276), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6927), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(287), [sym_preproc_endregion] = STATE(287), [sym_preproc_line] = STATE(287), @@ -85882,65 +85923,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(287), [sym_preproc_define] = STATE(287), [sym_preproc_undef] = STATE(287), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_GT_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_BANG_EQ] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(1159), - [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_QMARK_QMARK] = ACTIONS(1159), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85953,22 +85983,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_as] = ACTIONS(1173), - [anon_sym_is] = ACTIONS(1173), - [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -85980,105 +86006,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [288] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(288), [sym_preproc_endregion] = STATE(288), [sym_preproc_line] = STATE(288), @@ -86088,54 +86114,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(288), [sym_preproc_define] = STATE(288), [sym_preproc_undef] = STATE(288), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86177,99 +86203,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [289] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5184), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(289), [sym_preproc_endregion] = STATE(289), [sym_preproc_line] = STATE(289), @@ -86279,54 +86290,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(289), [sym_preproc_define] = STATE(289), [sym_preproc_undef] = STATE(289), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1173), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_GT_GT_GT] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_QMARK_QMARK] = ACTIONS(1159), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86339,19 +86361,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_as] = ACTIONS(1173), + [anon_sym_is] = ACTIONS(1173), + [anon_sym_DASH_GT] = ACTIONS(1159), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86362,104 +86388,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [290] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(290), [sym_preproc_endregion] = STATE(290), [sym_preproc_line] = STATE(290), @@ -86469,8 +86495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(290), [sym_preproc_define] = STATE(290), [sym_preproc_undef] = STATE(290), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -86480,7 +86506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -86511,9 +86537,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -86558,86 +86584,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [291] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7679), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7498), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(291), [sym_preproc_endregion] = STATE(291), [sym_preproc_line] = STATE(291), @@ -86647,9 +86673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(291), [sym_preproc_define] = STATE(291), [sym_preproc_undef] = STATE(291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2546), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2564), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -86658,14 +86684,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), + [anon_sym_file] = ACTIONS(667), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(2319), @@ -86683,17 +86709,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -86702,11 +86728,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), + [anon_sym_await] = ACTIONS(1575), [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86748,98 +86774,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [292] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(292), [sym_preproc_endregion] = STATE(292), [sym_preproc_line] = STATE(292), @@ -86849,8 +86875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(292), [sym_preproc_define] = STATE(292), [sym_preproc_undef] = STATE(292), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -86860,7 +86886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -86891,9 +86917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -86938,86 +86964,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [293] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7699), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6673), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_switch_expression_arm] = STATE(7196), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(293), [sym_preproc_endregion] = STATE(293), [sym_preproc_line] = STATE(293), @@ -87027,66 +87066,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(293), [sym_preproc_define] = STATE(293), [sym_preproc_undef] = STATE(293), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2325), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(653), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1987), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87128,86 +87154,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [294] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7679), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6766), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6927), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5467), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(294), [sym_preproc_endregion] = STATE(294), [sym_preproc_line] = STATE(294), @@ -87217,66 +87256,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(294), [sym_preproc_define] = STATE(294), [sym_preproc_undef] = STATE(294), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2546), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(653), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87318,98 +87344,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [295] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(295), [sym_preproc_endregion] = STATE(295), [sym_preproc_line] = STATE(295), @@ -87419,8 +87445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(295), [sym_preproc_define] = STATE(295), [sym_preproc_undef] = STATE(295), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -87430,7 +87456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -87461,9 +87487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -87508,98 +87534,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [296] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7498), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(296), [sym_preproc_endregion] = STATE(296), [sym_preproc_line] = STATE(296), @@ -87609,54 +87623,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(296), [sym_preproc_define] = STATE(296), [sym_preproc_undef] = STATE(296), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2564), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(653), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87698,98 +87724,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [297] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7613), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(297), [sym_preproc_endregion] = STATE(297), [sym_preproc_line] = STATE(297), @@ -87799,54 +87813,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(297), [sym_preproc_define] = STATE(297), [sym_preproc_undef] = STATE(297), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(653), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87888,98 +87914,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [298] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(298), [sym_preproc_endregion] = STATE(298), [sym_preproc_line] = STATE(298), @@ -87989,18 +88015,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(298), [sym_preproc_define] = STATE(298), [sym_preproc_undef] = STATE(298), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2331), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -88031,9 +88057,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -88078,86 +88104,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [299] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7539), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(299), [sym_preproc_endregion] = STATE(299), [sym_preproc_line] = STATE(299), @@ -88167,66 +88205,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(299), [sym_preproc_define] = STATE(299), [sym_preproc_undef] = STATE(299), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(653), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88268,98 +88294,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [300] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(300), [sym_preproc_endregion] = STATE(300), [sym_preproc_line] = STATE(300), @@ -88369,18 +88395,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(300), [sym_preproc_define] = STATE(300), [sym_preproc_undef] = STATE(300), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2337), + [anon_sym_RBRACK] = ACTIONS(2335), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -88411,9 +88437,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -88458,98 +88484,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [301] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(301), [sym_preproc_endregion] = STATE(301), [sym_preproc_line] = STATE(301), @@ -88559,18 +88585,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(301), [sym_preproc_define] = STATE(301), [sym_preproc_undef] = STATE(301), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2339), + [anon_sym_RBRACK] = ACTIONS(2337), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -88601,9 +88627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -88648,98 +88674,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [302] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(302), [sym_preproc_endregion] = STATE(302), [sym_preproc_line] = STATE(302), @@ -88749,18 +88775,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(302), [sym_preproc_define] = STATE(302), [sym_preproc_undef] = STATE(302), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2341), + [anon_sym_RBRACK] = ACTIONS(2339), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -88791,9 +88817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -88838,98 +88864,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [303] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(303), [sym_preproc_endregion] = STATE(303), [sym_preproc_line] = STATE(303), @@ -88939,18 +88965,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(303), [sym_preproc_define] = STATE(303), [sym_preproc_undef] = STATE(303), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2341), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -88981,9 +89007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -89028,99 +89054,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [304] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6705), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5477), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2223), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7652), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(304), [sym_preproc_endregion] = STATE(304), [sym_preproc_line] = STATE(304), @@ -89130,53 +89143,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(304), [sym_preproc_define] = STATE(304), [sym_preproc_undef] = STATE(304), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2557), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_using] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(653), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(667), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89218,98 +89244,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [305] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(305), [sym_preproc_endregion] = STATE(305), [sym_preproc_line] = STATE(305), @@ -89319,18 +89345,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(305), [sym_preproc_define] = STATE(305), [sym_preproc_undef] = STATE(305), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2347), + [anon_sym_RBRACK] = ACTIONS(2345), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -89361,9 +89387,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -89408,98 +89434,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [306] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6697), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_subpattern] = STATE(6927), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2224), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(306), [sym_preproc_endregion] = STATE(306), [sym_preproc_line] = STATE(306), @@ -89509,38 +89536,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(306), [sym_preproc_define] = STATE(306), [sym_preproc_undef] = STATE(306), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(2005), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), @@ -89551,11 +89577,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1239), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -89598,99 +89624,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [307] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6621), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_switch_expression_arm] = STATE(7112), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(307), [sym_preproc_endregion] = STATE(307), [sym_preproc_line] = STATE(307), @@ -89700,53 +89725,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(307), [sym_preproc_define] = STATE(307), [sym_preproc_undef] = STATE(307), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89788,98 +89814,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [308] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(308), [sym_preproc_endregion] = STATE(308), [sym_preproc_line] = STATE(308), @@ -89889,18 +89915,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(308), [sym_preproc_define] = STATE(308), [sym_preproc_undef] = STATE(308), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(2351), + [anon_sym_RBRACK] = ACTIONS(2349), [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -89931,9 +89957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -89978,99 +90004,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [309] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6693), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_subpattern] = STATE(6927), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(309), [sym_preproc_endregion] = STATE(309), [sym_preproc_line] = STATE(309), @@ -90080,37 +90105,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(309), [sym_preproc_define] = STATE(309), [sym_preproc_undef] = STATE(309), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(2027), + [anon_sym_RBRACK] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), @@ -90121,11 +90147,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -90168,98 +90194,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [310] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(310), [sym_preproc_endregion] = STATE(310), [sym_preproc_line] = STATE(310), @@ -90269,8 +90295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(310), [sym_preproc_define] = STATE(310), [sym_preproc_undef] = STATE(310), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -90280,7 +90306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -90311,9 +90337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -90358,86 +90384,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [311] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7448), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7491), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(311), [sym_preproc_endregion] = STATE(311), [sym_preproc_line] = STATE(311), @@ -90447,9 +90473,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(311), [sym_preproc_define] = STATE(311), [sym_preproc_undef] = STATE(311), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2568), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2549), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), @@ -90458,14 +90484,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(653), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(671), + [anon_sym_file] = ACTIONS(667), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(2319), @@ -90502,11 +90528,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1525), [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90548,98 +90574,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [312] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(312), [sym_preproc_endregion] = STATE(312), [sym_preproc_line] = STATE(312), @@ -90649,8 +90675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(312), [sym_preproc_define] = STATE(312), [sym_preproc_undef] = STATE(312), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -90660,7 +90686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -90691,9 +90717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -90738,98 +90764,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [313] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(313), [sym_preproc_endregion] = STATE(313), [sym_preproc_line] = STATE(313), @@ -90839,8 +90865,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(313), [sym_preproc_define] = STATE(313), [sym_preproc_undef] = STATE(313), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -90850,7 +90876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_ref] = ACTIONS(2313), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -90881,9 +90907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(2315), [anon_sym_not] = ACTIONS(1085), @@ -90928,98 +90954,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [314] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5758), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4152), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5733), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(314), [sym_preproc_endregion] = STATE(314), [sym_preproc_line] = STATE(314), @@ -91029,8 +91055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(314), [sym_preproc_define] = STATE(314), [sym_preproc_undef] = STATE(314), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -91039,7 +91065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -91049,17 +91075,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), [anon_sym_GT_EQ] = ACTIONS(2371), [anon_sym_LT_EQ] = ACTIONS(2371), [anon_sym_this] = ACTIONS(83), @@ -91069,13 +91095,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2381), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91089,17 +91115,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91111,104 +91137,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [315] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2257), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5712), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6691), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(315), [sym_preproc_endregion] = STATE(315), [sym_preproc_line] = STATE(315), @@ -91218,53 +91244,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(315), [sym_preproc_define] = STATE(315), [sym_preproc_undef] = STATE(315), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91306,98 +91332,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [316] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2900), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2485), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5737), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2250), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5746), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(316), [sym_preproc_endregion] = STATE(316), [sym_preproc_line] = STATE(316), @@ -91407,53 +91433,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(316), [sym_preproc_define] = STATE(316), [sym_preproc_undef] = STATE(316), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_GT] = ACTIONS(2389), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(2401), - [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91467,17 +91493,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91489,104 +91515,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [317] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2915), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2539), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5569), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2617), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2901), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3944), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2654), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5751), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(317), [sym_preproc_endregion] = STATE(317), [sym_preproc_line] = STATE(317), @@ -91596,53 +91622,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(317), [sym_preproc_define] = STATE(317), [sym_preproc_undef] = STATE(317), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2415), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91656,17 +91682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -91678,104 +91704,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [318] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2915), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2539), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2617), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2910), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2357), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2523), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5567), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2841), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5756), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(318), [sym_preproc_endregion] = STATE(318), [sym_preproc_line] = STATE(318), @@ -91785,53 +91811,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(318), [sym_preproc_define] = STATE(318), [sym_preproc_undef] = STATE(318), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2423), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91873,98 +91899,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [319] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2915), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2539), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5529), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2617), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2910), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2357), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2523), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2841), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5756), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(319), [sym_preproc_endregion] = STATE(319), [sym_preproc_line] = STATE(319), @@ -91974,53 +92000,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(319), [sym_preproc_define] = STATE(319), [sym_preproc_undef] = STATE(319), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2423), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92062,98 +92088,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [320] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2911), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2364), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2512), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4217), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2609), - [sym_property_pattern_clause] = STATE(2807), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5732), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2910), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2357), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2523), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5468), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2841), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5756), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(320), [sym_preproc_endregion] = STATE(320), [sym_preproc_line] = STATE(320), @@ -92163,53 +92189,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(320), [sym_preproc_define] = STATE(320), [sym_preproc_undef] = STATE(320), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_GT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2429), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2435), + [anon_sym_not] = ACTIONS(2423), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92223,17 +92249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -92245,104 +92271,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [321] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2676), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2243), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4452), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5738), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2908), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2530), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4174), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2610), + [sym_property_pattern_clause] = STATE(2691), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5724), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(321), [sym_preproc_endregion] = STATE(321), [sym_preproc_line] = STATE(321), @@ -92352,53 +92378,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(321), [sym_preproc_define] = STATE(321), [sym_preproc_undef] = STATE(321), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92412,17 +92438,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -92434,104 +92460,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [322] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2909), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2353), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2514), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5324), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2599), - [sym_property_pattern_clause] = STATE(2722), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6649), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), [sym_expression] = STATE(5740), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(322), [sym_preproc_endregion] = STATE(322), [sym_preproc_line] = STATE(322), @@ -92541,53 +92567,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(322), [sym_preproc_define] = STATE(322), [sym_preproc_undef] = STATE(322), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2453), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92601,17 +92627,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -92623,104 +92649,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [323] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2909), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2353), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2514), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2599), - [sym_property_pattern_clause] = STATE(2722), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6560), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), [sym_expression] = STATE(5740), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(323), [sym_preproc_endregion] = STATE(323), [sym_preproc_line] = STATE(323), @@ -92730,53 +92756,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(323), [sym_preproc_define] = STATE(323), [sym_preproc_undef] = STATE(323), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2453), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92790,17 +92816,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -92812,104 +92838,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [324] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2909), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2353), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2514), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5302), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2599), - [sym_property_pattern_clause] = STATE(2722), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5740), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2650), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4402), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5725), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(324), [sym_preproc_endregion] = STATE(324), [sym_preproc_line] = STATE(324), @@ -92919,53 +92945,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(324), [sym_preproc_define] = STATE(324), [sym_preproc_undef] = STATE(324), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2453), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93007,98 +93033,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [325] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2896), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2310), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4064), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2678), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5709), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2909), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2354), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2518), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4211), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2619), + [sym_property_pattern_clause] = STATE(2820), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5758), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(325), [sym_preproc_endregion] = STATE(325), [sym_preproc_line] = STATE(325), @@ -93108,53 +93134,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(325), [sym_preproc_define] = STATE(325), [sym_preproc_undef] = STATE(325), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2459), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93168,17 +93194,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -93190,104 +93216,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [326] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2896), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2310), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3821), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2678), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5709), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2899), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2502), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3819), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2574), + [sym_property_pattern_clause] = STATE(2676), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5710), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(326), [sym_preproc_endregion] = STATE(326), [sym_preproc_line] = STATE(326), @@ -93297,53 +93323,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(326), [sym_preproc_define] = STATE(326), [sym_preproc_undef] = STATE(326), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2467), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93357,17 +93383,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -93379,104 +93405,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [327] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2900), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2485), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5086), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5737), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2494), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5493), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5715), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(327), [sym_preproc_endregion] = STATE(327), [sym_preproc_line] = STATE(327), @@ -93486,53 +93512,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(327), [sym_preproc_define] = STATE(327), [sym_preproc_undef] = STATE(327), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2473), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(2401), - [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2477), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), + [anon_sym_not] = ACTIONS(2479), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93546,17 +93572,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -93568,104 +93594,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [328] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2896), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2310), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4003), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2678), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5709), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2901), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3834), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2654), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5751), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(328), [sym_preproc_endregion] = STATE(328), [sym_preproc_line] = STATE(328), @@ -93675,53 +93701,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(328), [sym_preproc_define] = STATE(328), [sym_preproc_undef] = STATE(328), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2415), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93735,17 +93761,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -93757,104 +93783,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [329] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4604), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5743), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2650), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5725), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(329), [sym_preproc_endregion] = STATE(329), [sym_preproc_line] = STATE(329), @@ -93864,22 +93890,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(329), [sym_preproc_define] = STATE(329), [sym_preproc_undef] = STATE(329), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -93888,29 +93914,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1365), [anon_sym_PLUS_PLUS] = ACTIONS(1365), [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1363), [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1365), [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93924,17 +93950,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -93946,104 +93972,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [330] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2901), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4069), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2654), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5751), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(330), [sym_preproc_endregion] = STATE(330), [sym_preproc_line] = STATE(330), @@ -94053,53 +94079,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(330), [sym_preproc_define] = STATE(330), [sym_preproc_undef] = STATE(330), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(2415), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94113,17 +94139,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -94135,104 +94161,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [331] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2911), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2364), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2534), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4277), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2609), - [sym_property_pattern_clause] = STATE(2807), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5732), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2778), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2260), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2422), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4598), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2583), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5713), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(331), [sym_preproc_endregion] = STATE(331), [sym_preproc_line] = STATE(331), @@ -94242,77 +94268,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(331), [sym_preproc_define] = STATE(331), [sym_preproc_undef] = STATE(331), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_GT] = ACTIONS(2425), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2429), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2435), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -94324,104 +94350,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [332] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2920), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5560), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5755), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6719), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(332), [sym_preproc_endregion] = STATE(332), [sym_preproc_line] = STATE(332), @@ -94431,53 +94457,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(332), [sym_preproc_define] = STATE(332), [sym_preproc_undef] = STATE(332), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94519,98 +94545,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [333] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2906), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5206), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2931), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2519), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5556), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5747), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(333), [sym_preproc_endregion] = STATE(333), [sym_preproc_line] = STATE(333), @@ -94620,53 +94646,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(333), [sym_preproc_define] = STATE(333), [sym_preproc_undef] = STATE(333), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94708,98 +94734,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [334] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2906), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2904), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5206), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(334), [sym_preproc_endregion] = STATE(334), [sym_preproc_line] = STATE(334), @@ -94809,53 +94835,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(334), [sym_preproc_define] = STATE(334), [sym_preproc_undef] = STATE(334), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94897,98 +94923,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [335] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2906), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5263), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2904), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(335), [sym_preproc_endregion] = STATE(335), [sym_preproc_line] = STATE(335), @@ -94998,53 +95024,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(335), [sym_preproc_define] = STATE(335), [sym_preproc_undef] = STATE(335), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95086,98 +95112,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [336] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2676), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2247), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5738), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2904), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5263), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(336), [sym_preproc_endregion] = STATE(336), [sym_preproc_line] = STATE(336), @@ -95187,53 +95213,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(336), [sym_preproc_define] = STATE(336), [sym_preproc_undef] = STATE(336), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95247,17 +95273,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -95269,104 +95295,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [337] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2257), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2650), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2248), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5725), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(337), [sym_preproc_endregion] = STATE(337), [sym_preproc_line] = STATE(337), @@ -95376,53 +95402,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(337), [sym_preproc_define] = STATE(337), [sym_preproc_undef] = STATE(337), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95436,17 +95462,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -95458,104 +95484,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [338] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6783), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4606), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5714), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(338), [sym_preproc_endregion] = STATE(338), [sym_preproc_line] = STATE(338), @@ -95565,53 +95591,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(338), [sym_preproc_define] = STATE(338), [sym_preproc_undef] = STATE(338), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95653,98 +95679,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [339] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2257), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5743), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2494), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5715), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(339), [sym_preproc_endregion] = STATE(339), [sym_preproc_line] = STATE(339), @@ -95754,17 +95780,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(339), [sym_preproc_define] = STATE(339), [sym_preproc_undef] = STATE(339), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2469), [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -95774,33 +95800,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_GT_EQ] = ACTIONS(2475), [anon_sym_LT_EQ] = ACTIONS(2475), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2477), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2479), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95842,98 +95868,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [340] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2258), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4560), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5743), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2494), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5671), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5715), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(340), [sym_preproc_endregion] = STATE(340), [sym_preproc_line] = STATE(340), @@ -95943,17 +95969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(340), [sym_preproc_define] = STATE(340), [sym_preproc_undef] = STATE(340), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2469), [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -95963,33 +95989,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_GT_EQ] = ACTIONS(2475), [anon_sym_LT_EQ] = ACTIONS(2475), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2477), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2479), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96031,98 +96057,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [341] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4149), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5728), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2929), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2368), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2534), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5326), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2873), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5723), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(341), [sym_preproc_endregion] = STATE(341), [sym_preproc_line] = STATE(341), @@ -96132,53 +96158,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(341), [sym_preproc_define] = STATE(341), [sym_preproc_undef] = STATE(341), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2505), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96220,98 +96246,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [342] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2931), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2540), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5539), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2618), - [sym_property_pattern_clause] = STATE(2871), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5754), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2901), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2476), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3976), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2654), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5751), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(342), [sym_preproc_endregion] = STATE(342), [sym_preproc_line] = STATE(342), @@ -96321,53 +96347,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(342), [sym_preproc_define] = STATE(342), [sym_preproc_undef] = STATE(342), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2415), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96381,17 +96407,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -96403,104 +96429,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [343] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2258), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5520), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5713), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5733), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(343), [sym_preproc_endregion] = STATE(343), [sym_preproc_line] = STATE(343), @@ -96510,53 +96536,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(343), [sym_preproc_define] = STATE(343), [sym_preproc_undef] = STATE(343), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2381), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96570,17 +96596,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -96592,104 +96618,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [344] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2931), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2540), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2618), - [sym_property_pattern_clause] = STATE(2871), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5754), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4161), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5733), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(344), [sym_preproc_endregion] = STATE(344), [sym_preproc_line] = STATE(344), @@ -96699,53 +96725,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(344), [sym_preproc_define] = STATE(344), [sym_preproc_undef] = STATE(344), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2381), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96759,17 +96785,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -96781,104 +96807,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [345] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2915), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2535), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5566), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2617), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2929), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2368), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2534), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2873), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5723), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(345), [sym_preproc_endregion] = STATE(345), [sym_preproc_line] = STATE(345), @@ -96888,53 +96914,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(345), [sym_preproc_define] = STATE(345), [sym_preproc_undef] = STATE(345), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96948,17 +96974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -96970,104 +96996,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [346] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2931), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2540), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5644), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2618), - [sym_property_pattern_clause] = STATE(2871), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5754), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2910), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2357), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2521), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5565), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2841), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5756), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(346), [sym_preproc_endregion] = STATE(346), [sym_preproc_line] = STATE(346), @@ -97077,53 +97103,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(346), [sym_preproc_define] = STATE(346), [sym_preproc_undef] = STATE(346), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2423), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97165,98 +97191,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [347] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2909), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2353), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2519), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5338), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2599), - [sym_property_pattern_clause] = STATE(2722), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5740), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2713), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2280), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2390), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(5072), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2516), + [sym_property_pattern_clause] = STATE(2579), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5712), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(347), [sym_preproc_endregion] = STATE(347), [sym_preproc_line] = STATE(347), @@ -97266,77 +97292,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(347), [sym_preproc_define] = STATE(347), [sym_preproc_undef] = STATE(347), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2543), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -97348,104 +97374,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [348] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6784), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2929), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2368), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2507), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5304), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2873), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5723), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(348), [sym_preproc_endregion] = STATE(348), [sym_preproc_line] = STATE(348), @@ -97455,53 +97481,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(348), [sym_preproc_define] = STATE(348), [sym_preproc_undef] = STATE(348), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97515,17 +97541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -97537,104 +97563,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [349] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2896), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2310), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2475), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3790), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2678), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5709), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2929), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2368), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2534), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5302), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2873), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5723), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(349), [sym_preproc_endregion] = STATE(349), [sym_preproc_line] = STATE(349), @@ -97644,53 +97670,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(349), [sym_preproc_define] = STATE(349), [sym_preproc_undef] = STATE(349), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97704,17 +97730,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -97726,104 +97752,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [350] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2900), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2489), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5737), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2650), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4542), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5725), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(350), [sym_preproc_endregion] = STATE(350), [sym_preproc_line] = STATE(350), @@ -97833,53 +97859,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(350), [sym_preproc_define] = STATE(350), [sym_preproc_undef] = STATE(350), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(2401), - [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97921,98 +97947,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [351] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2896), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2310), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2487), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4080), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2678), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5709), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2713), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2280), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2390), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4862), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2516), + [sym_property_pattern_clause] = STATE(2579), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5712), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(351), [sym_preproc_endregion] = STATE(351), [sym_preproc_line] = STATE(351), @@ -98022,77 +98048,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(351), [sym_preproc_define] = STATE(351), [sym_preproc_undef] = STATE(351), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2543), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -98104,104 +98130,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [352] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5743), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2713), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2280), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2390), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(5021), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2516), + [sym_property_pattern_clause] = STATE(2579), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5712), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(352), [sym_preproc_endregion] = STATE(352), [sym_preproc_line] = STATE(352), @@ -98211,77 +98237,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(352), [sym_preproc_define] = STATE(352), [sym_preproc_undef] = STATE(352), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2543), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -98293,104 +98319,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [353] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5773), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5287), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(5275), - [sym_postfix_unary_expression] = STATE(5164), - [sym_prefix_unary_expression] = STATE(5164), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(5275), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(5164), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(5275), - [sym_member_access_expression] = STATE(3409), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(5164), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(5275), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(5275), - [sym_typeof_expression] = STATE(5275), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3409), - [sym_literal] = STATE(5275), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2906), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2504), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5351), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(353), [sym_preproc_endregion] = STATE(353), [sym_preproc_line] = STATE(353), @@ -98400,53 +98426,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(353), [sym_preproc_define] = STATE(353), [sym_preproc_undef] = STATE(353), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2533), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98488,98 +98514,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [354] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2906), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2474), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2778), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2260), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2420), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4706), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2583), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5713), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(354), [sym_preproc_endregion] = STATE(354), [sym_preproc_line] = STATE(354), @@ -98589,77 +98615,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(354), [sym_preproc_define] = STATE(354), [sym_preproc_undef] = STATE(354), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -98671,104 +98697,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [355] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2919), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2370), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2506), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5202), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2744), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5723), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2904), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2483), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(355), [sym_preproc_endregion] = STATE(355), [sym_preproc_line] = STATE(355), @@ -98778,53 +98804,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(355), [sym_preproc_define] = STATE(355), [sym_preproc_undef] = STATE(355), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98838,17 +98864,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -98860,104 +98886,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [356] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2921), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2354), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2521), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5186), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2607), - [sym_property_pattern_clause] = STATE(2788), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5741), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2906), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2504), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(356), [sym_preproc_endregion] = STATE(356), [sym_preproc_line] = STATE(356), @@ -98967,51 +98993,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(356), [sym_preproc_define] = STATE(356), [sym_preproc_undef] = STATE(356), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), @@ -99027,17 +99053,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -99049,104 +99075,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [357] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4532), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2932), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2369), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5188), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2878), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5726), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(357), [sym_preproc_endregion] = STATE(357), [sym_preproc_line] = STATE(357), @@ -99156,53 +99182,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(357), [sym_preproc_define] = STATE(357), [sym_preproc_undef] = STATE(357), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99216,17 +99242,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -99238,104 +99264,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [358] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6654), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2778), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2260), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2420), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4862), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2583), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5713), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(358), [sym_preproc_endregion] = STATE(358), [sym_preproc_line] = STATE(358), @@ -99345,77 +99371,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(358), [sym_preproc_define] = STATE(358), [sym_preproc_undef] = STATE(358), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1085), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -99427,104 +99453,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [359] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5525), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5713), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5759), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5285), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(5362), + [sym_postfix_unary_expression] = STATE(5364), + [sym_prefix_unary_expression] = STATE(5364), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(5362), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(5364), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(5362), + [sym_member_access_expression] = STATE(3532), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(5364), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(5362), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(5362), + [sym_typeof_expression] = STATE(5362), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3532), + [sym_literal] = STATE(5362), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(359), [sym_preproc_endregion] = STATE(359), [sym_preproc_line] = STATE(359), @@ -99534,53 +99560,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(359), [sym_preproc_define] = STATE(359), [sym_preproc_undef] = STATE(359), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2567), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2569), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99622,98 +99648,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [360] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2911), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2364), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2518), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4249), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2609), - [sym_property_pattern_clause] = STATE(2807), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5732), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2906), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2504), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5190), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(360), [sym_preproc_endregion] = STATE(360), [sym_preproc_line] = STATE(360), @@ -99723,53 +99749,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(360), [sym_preproc_define] = STATE(360), [sym_preproc_undef] = STATE(360), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_GT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2429), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2435), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99783,17 +99809,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -99805,104 +99831,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [361] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2503), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2581), - [sym_property_pattern_clause] = STATE(2652), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5729), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2909), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2354), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2540), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4167), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2619), + [sym_property_pattern_clause] = STATE(2820), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5758), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(361), [sym_preproc_endregion] = STATE(361), [sym_preproc_line] = STATE(361), @@ -99912,53 +99938,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(361), [sym_preproc_define] = STATE(361), [sym_preproc_undef] = STATE(361), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_GT] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(2559), - [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2561), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2459), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99972,17 +99998,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -99994,104 +100020,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [362] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5715), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(362), [sym_preproc_endregion] = STATE(362), [sym_preproc_line] = STATE(362), @@ -100101,53 +100127,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(362), [sym_preproc_define] = STATE(362), [sym_preproc_undef] = STATE(362), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2473), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2477), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2479), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100189,98 +100215,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [363] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2897), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2478), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5744), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2909), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2354), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2540), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4168), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2619), + [sym_property_pattern_clause] = STATE(2820), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5758), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(363), [sym_preproc_endregion] = STATE(363), [sym_preproc_line] = STATE(363), @@ -100290,53 +100316,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(363), [sym_preproc_define] = STATE(363), [sym_preproc_undef] = STATE(363), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2567), - [anon_sym_GT] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(2569), - [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2459), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100350,17 +100376,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -100372,104 +100398,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [364] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2257), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5713), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2896), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2498), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5728), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(364), [sym_preproc_endregion] = STATE(364), [sym_preproc_line] = STATE(364), @@ -100479,53 +100505,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(364), [sym_preproc_define] = STATE(364), [sym_preproc_undef] = STATE(364), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100539,17 +100565,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -100561,106 +100587,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [365] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4533), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(365), - [sym_preproc_endregion] = STATE(365), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2250), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5750), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(365), + [sym_preproc_endregion] = STATE(365), [sym_preproc_line] = STATE(365), [sym_preproc_pragma] = STATE(365), [sym_preproc_nullable] = STATE(365), @@ -100668,53 +100694,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(365), [sym_preproc_define] = STATE(365), [sym_preproc_undef] = STATE(365), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2587), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100756,98 +100782,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [366] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2932), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2522), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4217), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2686), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5753), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2909), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2354), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2540), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4177), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2619), + [sym_property_pattern_clause] = STATE(2820), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5758), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(366), [sym_preproc_endregion] = STATE(366), [sym_preproc_line] = STATE(366), @@ -100857,53 +100883,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(366), [sym_preproc_define] = STATE(366), [sym_preproc_undef] = STATE(366), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2581), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2459), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100945,98 +100971,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [367] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2488), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5467), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2909), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2354), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4174), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2619), + [sym_property_pattern_clause] = STATE(2820), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), [sym_expression] = STATE(5758), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(367), [sym_preproc_endregion] = STATE(367), [sym_preproc_line] = STATE(367), @@ -101046,53 +101072,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(367), [sym_preproc_define] = STATE(367), [sym_preproc_undef] = STATE(367), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2459), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101106,17 +101132,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -101128,104 +101154,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [368] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5728), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2482), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5438), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5716), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(368), [sym_preproc_endregion] = STATE(368), [sym_preproc_line] = STATE(368), @@ -101235,53 +101261,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(368), [sym_preproc_define] = STATE(368), [sym_preproc_undef] = STATE(368), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(2593), + [anon_sym_LT_EQ] = ACTIONS(2593), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2505), + [anon_sym_not] = ACTIONS(2595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101295,17 +101321,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -101317,104 +101343,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [369] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2919), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2370), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2528), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2744), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5723), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2905), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2493), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5002), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5721), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(369), [sym_preproc_endregion] = STATE(369), [sym_preproc_line] = STATE(369), @@ -101424,53 +101450,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(369), [sym_preproc_define] = STATE(369), [sym_preproc_undef] = STATE(369), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2605), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101512,98 +101538,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [370] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2931), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2515), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2618), - [sym_property_pattern_clause] = STATE(2871), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5754), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2920), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2511), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2600), + [sym_property_pattern_clause] = STATE(2858), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5711), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(370), [sym_preproc_endregion] = STATE(370), [sym_preproc_line] = STATE(370), @@ -101613,22 +101639,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(370), [sym_preproc_define] = STATE(370), [sym_preproc_undef] = STATE(370), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -101637,29 +101663,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1889), [anon_sym_PLUS_PLUS] = ACTIONS(1889), [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), [anon_sym_PLUS] = ACTIONS(1887), [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1889), [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2613), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101673,17 +101699,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -101695,104 +101721,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [371] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4112), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5728), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2923), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2536), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2596), + [sym_property_pattern_clause] = STATE(2771), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5755), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(371), [sym_preproc_endregion] = STATE(371), [sym_preproc_line] = STATE(371), @@ -101802,53 +101828,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(371), [sym_preproc_define] = STATE(371), [sym_preproc_undef] = STATE(371), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2505), + [anon_sym_not] = ACTIONS(2621), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101862,17 +101888,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -101884,104 +101910,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [372] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2909), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2353), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2531), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2599), - [sym_property_pattern_clause] = STATE(2722), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5740), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2905), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2493), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5721), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(372), [sym_preproc_endregion] = STATE(372), [sym_preproc_line] = STATE(372), @@ -101991,53 +102017,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(372), [sym_preproc_define] = STATE(372), [sym_preproc_undef] = STATE(372), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2453), + [anon_sym_not] = ACTIONS(2605), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102079,98 +102105,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [373] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2920), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2524), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5755), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2929), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2368), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2528), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2589), + [sym_property_pattern_clause] = STATE(2873), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5723), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(373), [sym_preproc_endregion] = STATE(373), [sym_preproc_line] = STATE(373), @@ -102180,53 +102206,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(373), [sym_preproc_define] = STATE(373), [sym_preproc_undef] = STATE(373), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102240,17 +102266,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -102262,104 +102288,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [374] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5713), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2931), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2526), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5747), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(374), [sym_preproc_endregion] = STATE(374), [sym_preproc_line] = STATE(374), @@ -102369,53 +102395,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(374), [sym_preproc_define] = STATE(374), [sym_preproc_undef] = STATE(374), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102457,98 +102483,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [375] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2921), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2354), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2532), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2607), - [sym_property_pattern_clause] = STATE(2788), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5741), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2905), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2493), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5083), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5721), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(375), [sym_preproc_endregion] = STATE(375), [sym_preproc_line] = STATE(375), @@ -102558,53 +102584,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(375), [sym_preproc_define] = STATE(375), [sym_preproc_undef] = STATE(375), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2605), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102646,98 +102672,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [376] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2915), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2348), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2526), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2617), - [sym_property_pattern_clause] = STATE(2857), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2932), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2369), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2505), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2878), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5726), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(376), [sym_preproc_endregion] = STATE(376), [sym_preproc_line] = STATE(376), @@ -102747,53 +102773,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(376), [sym_preproc_define] = STATE(376), [sym_preproc_undef] = STATE(376), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_GT] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102807,17 +102833,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -102829,104 +102855,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [377] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5403), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5713), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2910), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2357), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2535), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2594), + [sym_property_pattern_clause] = STATE(2841), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5756), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(377), [sym_preproc_endregion] = STATE(377), [sym_preproc_line] = STATE(377), @@ -102936,53 +102962,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(377), [sym_preproc_define] = STATE(377), [sym_preproc_undef] = STATE(377), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2423), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103024,98 +103050,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [378] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2501), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5758), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2778), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2260), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2420), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4802), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2583), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5713), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(378), [sym_preproc_endregion] = STATE(378), [sym_preproc_line] = STATE(378), @@ -103125,77 +103151,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(378), [sym_preproc_define] = STATE(378), [sym_preproc_undef] = STATE(378), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_ref] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2379), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -103207,104 +103233,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [379] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2921), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2354), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2516), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5362), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2607), - [sym_property_pattern_clause] = STATE(2788), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5741), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2490), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5716), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(379), [sym_preproc_endregion] = STATE(379), [sym_preproc_line] = STATE(379), @@ -103314,53 +103340,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(379), [sym_preproc_define] = STATE(379), [sym_preproc_undef] = STATE(379), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(2593), + [anon_sym_LT_EQ] = ACTIONS(2593), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103374,17 +103400,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -103396,104 +103422,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [380] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2921), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2354), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2516), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2607), - [sym_property_pattern_clause] = STATE(2788), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5741), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2250), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(380), [sym_preproc_endregion] = STATE(380), [sym_preproc_line] = STATE(380), @@ -103503,53 +103529,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(380), [sym_preproc_define] = STATE(380), [sym_preproc_undef] = STATE(380), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2625), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103563,17 +103589,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -103585,104 +103611,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [381] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2258), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4448), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5759), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5285), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6744), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(5362), + [sym_postfix_unary_expression] = STATE(5364), + [sym_prefix_unary_expression] = STATE(5364), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(5362), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(5364), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(5362), + [sym_member_access_expression] = STATE(3532), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(5364), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(5362), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(5362), + [sym_typeof_expression] = STATE(5362), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3532), + [sym_literal] = STATE(5362), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(381), [sym_preproc_endregion] = STATE(381), [sym_preproc_line] = STATE(381), @@ -103692,53 +103718,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(381), [sym_preproc_define] = STATE(381), [sym_preproc_undef] = STATE(381), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2567), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2569), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103780,98 +103806,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [382] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2921), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2354), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2516), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5184), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2607), - [sym_property_pattern_clause] = STATE(2788), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5741), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2253), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4406), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(382), [sym_preproc_endregion] = STATE(382), [sym_preproc_line] = STATE(382), @@ -103881,53 +103907,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(382), [sym_preproc_define] = STATE(382), [sym_preproc_undef] = STATE(382), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2625), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103941,17 +103967,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -103963,104 +103989,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [383] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2243), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4144), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5728), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2650), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2242), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4505), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5725), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(383), [sym_preproc_endregion] = STATE(383), [sym_preproc_line] = STATE(383), @@ -104070,53 +104096,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(383), [sym_preproc_define] = STATE(383), [sym_preproc_undef] = STATE(383), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2505), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104158,98 +104184,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [384] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2825), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2387), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(5075), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2538), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5745), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2901), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2473), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3819), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2654), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5751), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(384), [sym_preproc_endregion] = STATE(384), [sym_preproc_line] = STATE(384), @@ -104259,77 +104285,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(384), [sym_preproc_define] = STATE(384), [sym_preproc_undef] = STATE(384), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_GT] = ACTIONS(2595), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2607), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -104341,104 +104367,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [385] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2919), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2370), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5269), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2744), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5723), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(385), [sym_preproc_endregion] = STATE(385), [sym_preproc_line] = STATE(385), @@ -104448,53 +104474,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(385), [sym_preproc_define] = STATE(385), [sym_preproc_undef] = STATE(385), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104508,17 +104534,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -104530,104 +104556,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [386] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2825), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2387), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4867), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2538), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5745), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2923), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5541), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2596), + [sym_property_pattern_clause] = STATE(2771), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5755), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(386), [sym_preproc_endregion] = STATE(386), [sym_preproc_line] = STATE(386), @@ -104637,77 +104663,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(386), [sym_preproc_define] = STATE(386), [sym_preproc_undef] = STATE(386), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_GT] = ACTIONS(2595), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2607), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -104719,104 +104745,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [387] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2825), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2387), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(5023), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2538), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5745), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2923), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2596), + [sym_property_pattern_clause] = STATE(2771), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5755), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(387), [sym_preproc_endregion] = STATE(387), [sym_preproc_line] = STATE(387), @@ -104826,77 +104852,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(387), [sym_preproc_define] = STATE(387), [sym_preproc_undef] = STATE(387), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_GT] = ACTIONS(2595), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2607), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -104908,104 +104934,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [388] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6707), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2923), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5472), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2596), + [sym_property_pattern_clause] = STATE(2771), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5755), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(388), [sym_preproc_endregion] = STATE(388), [sym_preproc_line] = STATE(388), @@ -105015,53 +105041,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(388), [sym_preproc_define] = STATE(388), [sym_preproc_undef] = STATE(388), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(2621), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105103,98 +105129,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [389] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2919), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2370), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2744), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5723), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6774), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(389), [sym_preproc_endregion] = STATE(389), [sym_preproc_line] = STATE(389), @@ -105204,53 +105230,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(389), [sym_preproc_define] = STATE(389), [sym_preproc_undef] = STATE(389), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105264,17 +105290,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -105286,104 +105312,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [390] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2902), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3456), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5691), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5716), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(390), [sym_preproc_endregion] = STATE(390), [sym_preproc_line] = STATE(390), @@ -105393,53 +105419,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(390), [sym_preproc_define] = STATE(390), [sym_preproc_undef] = STATE(390), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(2593), + [anon_sym_LT_EQ] = ACTIONS(2593), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105481,98 +105507,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [391] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2904), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3783), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2630), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5714), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5716), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(391), [sym_preproc_endregion] = STATE(391), [sym_preproc_line] = STATE(391), @@ -105582,53 +105608,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(391), [sym_preproc_define] = STATE(391), [sym_preproc_undef] = STATE(391), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(2593), + [anon_sym_LT_EQ] = ACTIONS(2593), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105642,17 +105668,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -105664,104 +105690,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [392] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5664), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2581), - [sym_property_pattern_clause] = STATE(2652), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5729), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(392), [sym_preproc_endregion] = STATE(392), [sym_preproc_line] = STATE(392), @@ -105771,53 +105797,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(392), [sym_preproc_define] = STATE(392), [sym_preproc_undef] = STATE(392), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_GT] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(2559), - [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2561), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105859,98 +105885,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [393] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6723), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(393), [sym_preproc_endregion] = STATE(393), [sym_preproc_line] = STATE(393), @@ -105960,17 +105986,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(393), [sym_preproc_define] = STATE(393), [sym_preproc_undef] = STATE(393), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2523), + [anon_sym_ref] = ACTIONS(2627), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -105994,19 +106020,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106048,98 +106074,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [394] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6770), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(394), [sym_preproc_endregion] = STATE(394), [sym_preproc_line] = STATE(394), @@ -106149,17 +106175,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(394), [sym_preproc_define] = STATE(394), [sym_preproc_undef] = STATE(394), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2523), + [anon_sym_ref] = ACTIONS(2627), [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -106183,19 +106209,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1141), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106237,98 +106263,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [395] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2919), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2370), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5187), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2744), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5723), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6734), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(395), [sym_preproc_endregion] = STATE(395), [sym_preproc_line] = STATE(395), @@ -106338,53 +106364,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(395), [sym_preproc_define] = STATE(395), [sym_preproc_undef] = STATE(395), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106398,17 +106424,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -106420,104 +106446,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [396] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2902), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5180), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5767), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5273), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6788), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4278), + [sym_postfix_unary_expression] = STATE(4296), + [sym_prefix_unary_expression] = STATE(4296), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4278), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4296), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4278), + [sym_member_access_expression] = STATE(3162), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4296), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4278), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4278), + [sym_typeof_expression] = STATE(4278), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3162), + [sym_literal] = STATE(4278), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(396), [sym_preproc_endregion] = STATE(396), [sym_preproc_line] = STATE(396), @@ -106527,53 +106553,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(396), [sym_preproc_define] = STATE(396), [sym_preproc_undef] = STATE(396), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_ref] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(1987), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(1989), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106615,98 +106641,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [397] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2792), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2264), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2394), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4703), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2583), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5730), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2496), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5729), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(397), [sym_preproc_endregion] = STATE(397), [sym_preproc_line] = STATE(397), @@ -106716,77 +106742,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(397), [sym_preproc_define] = STATE(397), [sym_preproc_undef] = STATE(397), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_ref] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_GT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -106798,104 +106824,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [398] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2258), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4802), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5712), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2920), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2524), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5219), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2600), + [sym_property_pattern_clause] = STATE(2858), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5711), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(398), [sym_preproc_endregion] = STATE(398), [sym_preproc_line] = STATE(398), @@ -106905,53 +106931,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(398), [sym_preproc_define] = STATE(398), [sym_preproc_undef] = STATE(398), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(2613), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106965,17 +106991,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -106987,104 +107013,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [399] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2920), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2536), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5562), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5755), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2253), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4803), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5746), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(399), [sym_preproc_endregion] = STATE(399), [sym_preproc_line] = STATE(399), @@ -107094,53 +107120,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(399), [sym_preproc_define] = STATE(399), [sym_preproc_undef] = STATE(399), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_GT] = ACTIONS(2389), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107182,98 +107208,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [400] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4717), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5743), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5549), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5716), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(400), [sym_preproc_endregion] = STATE(400), [sym_preproc_line] = STATE(400), @@ -107283,53 +107309,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(400), [sym_preproc_define] = STATE(400), [sym_preproc_undef] = STATE(400), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(2593), + [anon_sym_LT_EQ] = ACTIONS(2593), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107371,98 +107397,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [401] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5356), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5729), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(401), [sym_preproc_endregion] = STATE(401), [sym_preproc_line] = STATE(401), @@ -107472,53 +107498,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(401), [sym_preproc_define] = STATE(401), [sym_preproc_undef] = STATE(401), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_ref] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(2635), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107532,17 +107558,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -107554,104 +107580,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [402] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4803), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5712), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(4481), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6789), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5167), + [sym_property_pattern_clause] = STATE(5757), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4437), + [sym_postfix_unary_expression] = STATE(4438), + [sym_prefix_unary_expression] = STATE(4438), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4437), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4438), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4437), + [sym_member_access_expression] = STATE(3186), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4438), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4437), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4437), + [sym_typeof_expression] = STATE(4437), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3186), + [sym_literal] = STATE(4437), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(402), [sym_preproc_endregion] = STATE(402), [sym_preproc_line] = STATE(402), @@ -107661,53 +107687,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(402), [sym_preproc_define] = STATE(402), [sym_preproc_undef] = STATE(402), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(1149), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107749,98 +107775,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [403] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5712), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4804), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5746), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(403), [sym_preproc_endregion] = STATE(403), [sym_preproc_line] = STATE(403), @@ -107850,53 +107876,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(403), [sym_preproc_define] = STATE(403), [sym_preproc_undef] = STATE(403), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_GT] = ACTIONS(2389), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107938,98 +107964,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [404] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2627), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2255), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4733), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5712), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5746), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(404), [sym_preproc_endregion] = STATE(404), [sym_preproc_line] = STATE(404), @@ -108039,53 +108065,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(404), [sym_preproc_define] = STATE(404), [sym_preproc_undef] = STATE(404), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_GT] = ACTIONS(2389), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108127,98 +108153,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [405] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2920), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2536), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5755), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4734), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5746), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(405), [sym_preproc_endregion] = STATE(405), [sym_preproc_line] = STATE(405), @@ -108228,53 +108254,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(405), [sym_preproc_define] = STATE(405), [sym_preproc_undef] = STATE(405), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_GT] = ACTIONS(2389), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108316,98 +108342,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [406] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2920), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2536), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5466), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2723), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5755), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5729), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(406), [sym_preproc_endregion] = STATE(406), [sym_preproc_line] = STATE(406), @@ -108417,53 +108443,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(406), [sym_preproc_define] = STATE(406), [sym_preproc_undef] = STATE(406), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2603), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2635), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108477,17 +108503,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -108499,104 +108525,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [407] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2481), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5500), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2581), - [sym_property_pattern_clause] = STATE(2652), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5181), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), [sym_expression] = STATE(5729), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(407), [sym_preproc_endregion] = STATE(407), [sym_preproc_line] = STATE(407), @@ -108606,53 +108632,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(407), [sym_preproc_define] = STATE(407), [sym_preproc_undef] = STATE(407), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_GT] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(2559), - [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2561), + [anon_sym_var] = ACTIONS(2603), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2635), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108666,17 +108692,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -108688,104 +108714,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [408] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2473), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5232), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5746), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2475), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5489), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2672), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5715), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(408), [sym_preproc_endregion] = STATE(408), [sym_preproc_line] = STATE(408), @@ -108795,53 +108821,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(408), [sym_preproc_define] = STATE(408), [sym_preproc_undef] = STATE(408), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2473), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2477), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2479), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108855,17 +108881,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -108877,104 +108903,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [409] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6541), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2253), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5511), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5750), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(409), [sym_preproc_endregion] = STATE(409), [sym_preproc_line] = STATE(409), @@ -108984,53 +109010,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(409), [sym_preproc_define] = STATE(409), [sym_preproc_undef] = STATE(409), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(2587), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109072,98 +109098,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [410] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5773), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5287), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6765), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(5275), - [sym_postfix_unary_expression] = STATE(5164), - [sym_prefix_unary_expression] = STATE(5164), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(5275), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(5164), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(5275), - [sym_member_access_expression] = STATE(3409), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(5164), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(5275), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(5275), - [sym_typeof_expression] = STATE(5275), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3409), - [sym_literal] = STATE(5275), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2908), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2533), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4256), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2610), + [sym_property_pattern_clause] = STATE(2691), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5724), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(410), [sym_preproc_endregion] = STATE(410), [sym_preproc_line] = STATE(410), @@ -109173,53 +109199,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(410), [sym_preproc_define] = STATE(410), [sym_preproc_undef] = STATE(410), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2533), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109233,17 +109259,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -109255,104 +109281,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [411] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2932), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4179), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2686), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5753), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2920), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2525), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5270), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2600), + [sym_property_pattern_clause] = STATE(2858), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5711), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(411), [sym_preproc_endregion] = STATE(411), [sym_preproc_line] = STATE(411), @@ -109362,53 +109388,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(411), [sym_preproc_define] = STATE(411), [sym_preproc_undef] = STATE(411), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2581), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2613), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109422,17 +109448,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -109444,104 +109470,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [412] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2904), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3790), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2630), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5714), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2920), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2525), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2600), + [sym_property_pattern_clause] = STATE(2858), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5711), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(412), [sym_preproc_endregion] = STATE(412), [sym_preproc_line] = STATE(412), @@ -109551,53 +109577,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(412), [sym_preproc_define] = STATE(412), [sym_preproc_undef] = STATE(412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2613), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109611,17 +109637,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -109633,104 +109659,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [413] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2825), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2403), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4599), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2538), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5745), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2932), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2369), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2537), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5275), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2878), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5726), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(413), [sym_preproc_endregion] = STATE(413), [sym_preproc_line] = STATE(413), @@ -109740,77 +109766,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(413), [sym_preproc_define] = STATE(413), [sym_preproc_undef] = STATE(413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_GT] = ACTIONS(2595), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2607), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -109822,104 +109848,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [414] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2904), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2497), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3784), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2630), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5714), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2932), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2369), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2537), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2878), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5726), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(414), [sym_preproc_endregion] = STATE(414), [sym_preproc_line] = STATE(414), @@ -109929,53 +109955,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(414), [sym_preproc_define] = STATE(414), [sym_preproc_undef] = STATE(414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109989,17 +110015,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -110011,104 +110037,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [415] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2904), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2497), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3821), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2630), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5714), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2932), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2369), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2537), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5185), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2618), + [sym_property_pattern_clause] = STATE(2878), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5726), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(415), [sym_preproc_endregion] = STATE(415), [sym_preproc_line] = STATE(415), @@ -110118,53 +110144,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(415), [sym_preproc_define] = STATE(415), [sym_preproc_undef] = STATE(415), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110178,17 +110204,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -110200,104 +110226,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [416] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2904), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2497), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3807), - [sym_constant_pattern] = STATE(3910), - [sym_parenthesized_pattern] = STATE(3910), - [sym_var_pattern] = STATE(3910), - [sym_type_pattern] = STATE(3910), - [sym_list_pattern] = STATE(3910), - [sym_recursive_pattern] = STATE(3910), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2630), - [sym_relational_pattern] = STATE(3910), - [sym_negated_pattern] = STATE(3910), - [sym_and_pattern] = STATE(3910), - [sym_or_pattern] = STATE(3910), - [sym_declaration_pattern] = STATE(3910), - [sym_expression] = STATE(5714), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3921), - [sym_postfix_unary_expression] = STATE(3925), - [sym_prefix_unary_expression] = STATE(3925), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3921), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3925), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3921), - [sym_member_access_expression] = STATE(2953), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3925), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3921), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3921), - [sym_typeof_expression] = STATE(3921), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2953), - [sym_literal] = STATE(3921), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2920), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2525), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5177), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2600), + [sym_property_pattern_clause] = STATE(2858), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5711), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(416), [sym_preproc_endregion] = STATE(416), [sym_preproc_line] = STATE(416), @@ -110307,53 +110333,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(416), [sym_preproc_define] = STATE(416), [sym_preproc_undef] = STATE(416), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2463), - [sym_predefined_type] = ACTIONS(2465), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2613), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110367,17 +110393,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -110389,104 +110415,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [417] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2247), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5728), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2253), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4565), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5714), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(417), [sym_preproc_endregion] = STATE(417), [sym_preproc_line] = STATE(417), @@ -110496,53 +110522,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(417), [sym_preproc_define] = STATE(417), [sym_preproc_undef] = STATE(417), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2505), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110556,17 +110582,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -110578,104 +110604,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [418] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5761), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5274), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6700), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4280), - [sym_postfix_unary_expression] = STATE(4288), - [sym_prefix_unary_expression] = STATE(4288), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4280), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4288), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4280), - [sym_member_access_expression] = STATE(3158), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4288), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4280), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4280), - [sym_typeof_expression] = STATE(4280), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3158), - [sym_literal] = STATE(4280), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2778), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2260), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2416), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4705), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2583), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5713), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(418), [sym_preproc_endregion] = STATE(418), [sym_preproc_line] = STATE(418), @@ -110685,77 +110711,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(418), [sym_preproc_define] = STATE(418), [sym_preproc_undef] = STATE(418), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2065), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2067), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -110767,104 +110793,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [419] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2676), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4473), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5738), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2905), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2478), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5721), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(419), [sym_preproc_endregion] = STATE(419), [sym_preproc_line] = STATE(419), @@ -110874,53 +110900,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(419), [sym_preproc_define] = STATE(419), [sym_preproc_undef] = STATE(419), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2605), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110962,98 +110988,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [420] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2676), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5738), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5714), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(420), [sym_preproc_endregion] = STATE(420), [sym_preproc_line] = STATE(420), @@ -111063,22 +111089,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(420), [sym_preproc_define] = STATE(420), [sym_preproc_undef] = STATE(420), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -111087,29 +111113,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1381), [anon_sym_PLUS_PLUS] = ACTIONS(1381), [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1381), [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111123,17 +111149,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -111145,104 +111171,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [421] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2676), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4496), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5738), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2906), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2300), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2499), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2622), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5720), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(421), [sym_preproc_endregion] = STATE(421), [sym_preproc_line] = STATE(421), @@ -111252,53 +111278,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(421), [sym_preproc_define] = STATE(421), [sym_preproc_undef] = STATE(421), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2549), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111312,17 +111338,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -111334,104 +111360,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [422] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2792), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2264), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2412), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4599), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2583), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5730), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4521), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(422), [sym_preproc_endregion] = STATE(422), [sym_preproc_line] = STATE(422), @@ -111441,77 +111467,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(422), [sym_preproc_define] = STATE(422), [sym_preproc_undef] = STATE(422), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_GT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2625), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -111523,104 +111549,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [423] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2902), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4717), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5714), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(423), [sym_preproc_endregion] = STATE(423), [sym_preproc_line] = STATE(423), @@ -111630,53 +111656,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(423), [sym_preproc_define] = STATE(423), [sym_preproc_undef] = STATE(423), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2521), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111718,98 +111744,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [424] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2792), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2264), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4704), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2583), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5730), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2908), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2514), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4272), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2610), + [sym_property_pattern_clause] = STATE(2691), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5724), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(424), [sym_preproc_endregion] = STATE(424), [sym_preproc_line] = STATE(424), @@ -111819,77 +111845,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(424), [sym_preproc_define] = STATE(424), [sym_preproc_undef] = STATE(424), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_GT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -111901,104 +111927,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [425] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2792), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2264), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4867), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2583), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5730), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5759), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2299), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5285), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6547), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5568), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4599), + [sym_postfix_unary_expression] = STATE(4604), + [sym_prefix_unary_expression] = STATE(4604), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4599), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4604), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4599), + [sym_member_access_expression] = STATE(3212), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4604), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4599), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4599), + [sym_typeof_expression] = STATE(4599), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3212), + [sym_literal] = STATE(4599), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(425), [sym_preproc_endregion] = STATE(425), [sym_preproc_line] = STATE(425), @@ -112008,77 +112034,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(425), [sym_preproc_define] = STATE(425), [sym_preproc_undef] = STATE(425), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_GT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2567), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2569), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1239), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -112090,104 +112116,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [426] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2792), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2264), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(4801), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2583), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5730), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2931), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2522), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5708), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5747), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(426), [sym_preproc_endregion] = STATE(426), [sym_preproc_line] = STATE(426), @@ -112197,77 +112223,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(426), [sym_preproc_define] = STATE(426), [sym_preproc_undef] = STATE(426), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_GT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2627), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -112279,104 +112305,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [427] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2902), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5199), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2544), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5725), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2931), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2522), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5747), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(427), [sym_preproc_endregion] = STATE(427), [sym_preproc_line] = STATE(427), @@ -112386,53 +112412,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(427), [sym_preproc_define] = STATE(427), [sym_preproc_undef] = STATE(427), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2505), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_GT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112474,98 +112500,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [428] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2911), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2364), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2518), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4191), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2609), - [sym_property_pattern_clause] = STATE(2807), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5732), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2931), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2355), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2522), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5695), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2830), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5747), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(428), [sym_preproc_endregion] = STATE(428), [sym_preproc_line] = STATE(428), @@ -112575,53 +112601,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(428), [sym_preproc_define] = STATE(428), [sym_preproc_undef] = STATE(428), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_GT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2429), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2435), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112635,17 +112661,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -112657,104 +112683,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [429] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5464), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5758), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2899), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2484), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3779), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2574), + [sym_property_pattern_clause] = STATE(2676), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5710), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(429), [sym_preproc_endregion] = STATE(429), [sym_preproc_line] = STATE(429), @@ -112764,53 +112790,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(429), [sym_preproc_define] = STATE(429), [sym_preproc_undef] = STATE(429), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2461), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2467), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112824,17 +112850,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -112846,104 +112872,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [430] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3433), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2581), - [sym_property_pattern_clause] = STATE(2652), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5729), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2899), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2484), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3834), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2574), + [sym_property_pattern_clause] = STATE(2676), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5710), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(430), [sym_preproc_endregion] = STATE(430), [sym_preproc_line] = STATE(430), @@ -112953,53 +112979,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(430), [sym_preproc_define] = STATE(430), [sym_preproc_undef] = STATE(430), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_GT] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(2559), - [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2561), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2467), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113013,17 +113039,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -113035,104 +113061,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [431] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5552), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2304), - [sym_property_pattern_clause] = STATE(2335), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5758), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2250), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3429), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5714), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(431), [sym_preproc_endregion] = STATE(431), [sym_preproc_line] = STATE(431), @@ -113142,53 +113168,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(431), [sym_preproc_define] = STATE(431), [sym_preproc_undef] = STATE(431), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2521), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2379), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113230,98 +113256,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [432] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5363), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5724), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2713), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2280), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2429), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(5030), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2516), + [sym_property_pattern_clause] = STATE(2579), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5712), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(432), [sym_preproc_endregion] = STATE(432), [sym_preproc_line] = STATE(432), @@ -113331,77 +113357,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(432), [sym_preproc_define] = STATE(432), [sym_preproc_undef] = STATE(432), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2643), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2543), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -113413,104 +113439,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [433] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5724), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5363), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(433), [sym_preproc_endregion] = STATE(433), [sym_preproc_line] = STATE(433), @@ -113520,53 +113546,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(433), [sym_preproc_define] = STATE(433), [sym_preproc_undef] = STATE(433), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2645), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113608,98 +113634,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [434] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2245), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5283), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5724), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(434), [sym_preproc_endregion] = STATE(434), [sym_preproc_line] = STATE(434), @@ -113709,53 +113735,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(434), [sym_preproc_define] = STATE(434), [sym_preproc_undef] = STATE(434), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2645), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113797,98 +113823,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [435] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2243), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5285), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5724), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2246), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5281), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(435), [sym_preproc_endregion] = STATE(435), [sym_preproc_line] = STATE(435), @@ -113898,53 +113924,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(435), [sym_preproc_define] = STATE(435), [sym_preproc_undef] = STATE(435), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2645), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113986,98 +114012,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [436] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2504), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5170), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5746), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2242), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5283), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(436), [sym_preproc_endregion] = STATE(436), [sym_preproc_line] = STATE(436), @@ -114087,22 +114113,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(436), [sym_preproc_define] = STATE(436), [sym_preproc_undef] = STATE(436), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2639), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -114118,22 +114144,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1799), [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2645), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114175,98 +114201,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [437] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2504), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5746), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2248), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5733), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(437), [sym_preproc_endregion] = STATE(437), [sym_preproc_line] = STATE(437), @@ -114276,53 +114302,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(437), [sym_preproc_define] = STATE(437), [sym_preproc_undef] = STATE(437), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2381), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114364,98 +114390,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [438] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2911), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2364), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2518), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4275), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2609), - [sym_property_pattern_clause] = STATE(2807), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5732), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2899), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2484), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3863), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2574), + [sym_property_pattern_clause] = STATE(2676), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5710), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(438), [sym_preproc_endregion] = STATE(438), [sym_preproc_line] = STATE(438), @@ -114465,53 +114491,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(438), [sym_preproc_define] = STATE(438), [sym_preproc_undef] = STATE(438), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_GT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2429), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2435), + [anon_sym_not] = ACTIONS(2467), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114525,17 +114551,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -114547,104 +114573,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [439] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2504), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5190), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5746), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2501), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5218), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5729), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(439), [sym_preproc_endregion] = STATE(439), [sym_preproc_line] = STATE(439), @@ -114654,17 +114680,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(439), [sym_preproc_define] = STATE(439), [sym_preproc_undef] = STATE(439), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2361), [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_ref] = ACTIONS(2365), + [anon_sym_ref] = ACTIONS(2547), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -114674,31 +114700,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_GT_EQ] = ACTIONS(2633), [anon_sym_LT_EQ] = ACTIONS(2633), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2603), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2635), [anon_sym_from] = ACTIONS(125), @@ -114742,98 +114768,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [440] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2247), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5724), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(440), [sym_preproc_endregion] = STATE(440), [sym_preproc_line] = STATE(440), @@ -114843,53 +114869,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(440), [sym_preproc_define] = STATE(440), [sym_preproc_undef] = STATE(440), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_GT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2625), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114903,17 +114929,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -114925,104 +114951,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [441] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2897), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5055), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5744), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2248), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3367), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5736), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(441), [sym_preproc_endregion] = STATE(441), [sym_preproc_line] = STATE(441), @@ -115032,53 +115058,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(441), [sym_preproc_define] = STATE(441), [sym_preproc_undef] = STATE(441), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2567), - [anon_sym_GT] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(2569), - [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2645), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115120,98 +115146,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [442] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6795), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2449), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4461), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5740), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(442), [sym_preproc_endregion] = STATE(442), [sym_preproc_line] = STATE(442), @@ -115221,17 +115247,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(442), [sym_preproc_define] = STATE(442), [sym_preproc_undef] = STATE(442), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -115255,19 +115281,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2625), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115309,98 +115335,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [443] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5773), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5287), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6568), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4601), - [sym_postfix_unary_expression] = STATE(4602), - [sym_prefix_unary_expression] = STATE(4602), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4601), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4602), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4601), - [sym_member_access_expression] = STATE(3256), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4602), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4601), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4601), - [sym_typeof_expression] = STATE(4601), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3256), - [sym_literal] = STATE(4601), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2923), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2339), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2506), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5538), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2596), + [sym_property_pattern_clause] = STATE(2771), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5755), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(443), [sym_preproc_endregion] = STATE(443), [sym_preproc_line] = STATE(443), @@ -115410,53 +115436,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(443), [sym_preproc_define] = STATE(443), [sym_preproc_undef] = STATE(443), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2533), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1549), [sym_discard] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2621), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115498,98 +115524,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [444] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2825), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2431), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_pattern] = STATE(5036), - [sym_constant_pattern] = STATE(4781), - [sym_parenthesized_pattern] = STATE(4781), - [sym_var_pattern] = STATE(4781), - [sym_type_pattern] = STATE(4781), - [sym_list_pattern] = STATE(4781), - [sym_recursive_pattern] = STATE(4781), - [sym_positional_pattern_clause] = STATE(2538), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(4781), - [sym_negated_pattern] = STATE(4781), - [sym_and_pattern] = STATE(4781), - [sym_or_pattern] = STATE(4781), - [sym_declaration_pattern] = STATE(4781), - [sym_expression] = STATE(5745), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4561), - [sym_postfix_unary_expression] = STATE(4562), - [sym_prefix_unary_expression] = STATE(4562), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4561), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4562), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4561), - [sym_member_access_expression] = STATE(3194), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4562), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4561), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4561), - [sym_typeof_expression] = STATE(4561), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3194), - [sym_literal] = STATE(4561), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5516), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5750), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(444), [sym_preproc_endregion] = STATE(444), [sym_preproc_line] = STATE(444), @@ -115599,77 +115625,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(444), [sym_preproc_define] = STATE(444), [sym_preproc_undef] = STATE(444), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_delegate] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), + [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_GT] = ACTIONS(2595), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(2597), - [anon_sym_LT_EQ] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2601), - [sym_predefined_type] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2607), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -115681,104 +115707,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [445] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2897), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3364), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5744), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2217), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5759), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2305), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5285), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_pattern] = STATE(6708), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(5717), + [sym_property_pattern_clause] = STATE(5795), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5748), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(5362), + [sym_postfix_unary_expression] = STATE(5364), + [sym_prefix_unary_expression] = STATE(5364), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(5362), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(5364), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(5362), + [sym_member_access_expression] = STATE(3532), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(5364), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(5362), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(5362), + [sym_typeof_expression] = STATE(5362), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3532), + [sym_literal] = STATE(5362), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(445), [sym_preproc_endregion] = STATE(445), [sym_preproc_line] = STATE(445), @@ -115788,51 +115814,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(445), [sym_preproc_define] = STATE(445), [sym_preproc_undef] = STATE(445), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2567), - [anon_sym_GT] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(2569), - [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2567), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2569), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), @@ -115848,17 +115874,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -115870,104 +115896,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [446] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2897), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5017), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5744), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3535), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5750), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(446), [sym_preproc_endregion] = STATE(446), [sym_preproc_line] = STATE(446), @@ -115977,53 +116003,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(446), [sym_preproc_define] = STATE(446), [sym_preproc_undef] = STATE(446), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_ref] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2567), - [anon_sym_GT] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(2569), - [anon_sym_LT_EQ] = ACTIONS(2569), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2443), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2587), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116037,17 +116063,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -116059,104 +116085,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [447] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2931), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2333), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2537), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5536), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2618), - [sym_property_pattern_clause] = STATE(2871), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5754), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2896), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2497), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5053), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5728), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(447), [sym_preproc_endregion] = STATE(447), [sym_preproc_line] = STATE(447), @@ -116166,53 +116192,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(447), [sym_preproc_define] = STATE(447), [sym_preproc_undef] = STATE(447), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), + [anon_sym_var] = ACTIONS(2375), [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116226,17 +116252,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -116248,104 +116274,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [448] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5773), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5287), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6718), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5717), - [sym_property_pattern_clause] = STATE(5803), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5733), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(5275), - [sym_postfix_unary_expression] = STATE(5164), - [sym_prefix_unary_expression] = STATE(5164), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(5275), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(5164), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(5275), - [sym_member_access_expression] = STATE(3409), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(5164), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(5275), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(5275), - [sym_typeof_expression] = STATE(5275), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3409), - [sym_literal] = STATE(5275), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2896), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2497), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3280), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5728), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(448), [sym_preproc_endregion] = STATE(448), [sym_preproc_line] = STATE(448), @@ -116355,53 +116381,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(448), [sym_preproc_define] = STATE(448), [sym_preproc_undef] = STATE(448), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2533), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116415,17 +116441,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -116437,104 +116463,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [449] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2932), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2525), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4202), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2686), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5753), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2896), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2304), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2497), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5019), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2559), + [sym_property_pattern_clause] = STATE(2609), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5728), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(449), [sym_preproc_endregion] = STATE(449), [sym_preproc_line] = STATE(449), @@ -116544,53 +116570,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(449), [sym_preproc_define] = STATE(449), [sym_preproc_undef] = STATE(449), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2581), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116604,17 +116630,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -116626,104 +116652,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [450] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2468), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2196), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2493), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(3335), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2284), - [sym_property_pattern_clause] = STATE(2318), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5746), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2445), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2198), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2242), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4118), + [sym_constant_pattern] = STATE(3298), + [sym_parenthesized_pattern] = STATE(3298), + [sym_var_pattern] = STATE(3298), + [sym_type_pattern] = STATE(3298), + [sym_list_pattern] = STATE(3298), + [sym_recursive_pattern] = STATE(3298), + [sym_positional_pattern_clause] = STATE(2278), + [sym_property_pattern_clause] = STATE(2321), + [sym_relational_pattern] = STATE(3298), + [sym_negated_pattern] = STATE(3298), + [sym_and_pattern] = STATE(3298), + [sym_or_pattern] = STATE(3298), + [sym_declaration_pattern] = STATE(3298), + [sym_expression] = STATE(5733), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3382), + [sym_postfix_unary_expression] = STATE(3383), + [sym_prefix_unary_expression] = STATE(3383), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3382), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3383), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3382), + [sym_member_access_expression] = STATE(2629), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3383), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3382), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3382), + [sym_typeof_expression] = STATE(3382), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2629), + [sym_literal] = STATE(3382), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(450), [sym_preproc_endregion] = STATE(450), [sym_preproc_line] = STATE(450), @@ -116733,53 +116759,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(450), [sym_preproc_define] = STATE(450), [sym_preproc_undef] = STATE(450), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2375), + [sym_predefined_type] = ACTIONS(2377), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2379), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2381), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -116821,98 +116847,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [451] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2932), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2525), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4191), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2686), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5753), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2908), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2514), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4168), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2610), + [sym_property_pattern_clause] = STATE(2691), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5724), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(451), [sym_preproc_endregion] = STATE(451), [sym_preproc_line] = STATE(451), @@ -116922,53 +116948,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(451), [sym_preproc_define] = STATE(451), [sym_preproc_undef] = STATE(451), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2581), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117010,98 +117036,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [452] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2932), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2525), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(4195), - [sym_constant_pattern] = STATE(4198), - [sym_parenthesized_pattern] = STATE(4198), - [sym_var_pattern] = STATE(4198), - [sym_type_pattern] = STATE(4198), - [sym_list_pattern] = STATE(4198), - [sym_recursive_pattern] = STATE(4198), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2686), - [sym_relational_pattern] = STATE(4198), - [sym_negated_pattern] = STATE(4198), - [sym_and_pattern] = STATE(4198), - [sym_or_pattern] = STATE(4198), - [sym_declaration_pattern] = STATE(4198), - [sym_expression] = STATE(5753), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4214), - [sym_postfix_unary_expression] = STATE(4215), - [sym_prefix_unary_expression] = STATE(4215), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4214), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4215), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4214), - [sym_member_access_expression] = STATE(3140), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4215), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4214), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4214), - [sym_typeof_expression] = STATE(4214), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3140), - [sym_literal] = STATE(4214), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2637), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2199), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2249), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(5496), + [sym_constant_pattern] = STATE(3401), + [sym_parenthesized_pattern] = STATE(3401), + [sym_var_pattern] = STATE(3401), + [sym_type_pattern] = STATE(3401), + [sym_list_pattern] = STATE(3401), + [sym_recursive_pattern] = STATE(3401), + [sym_positional_pattern_clause] = STATE(2296), + [sym_property_pattern_clause] = STATE(2347), + [sym_relational_pattern] = STATE(3401), + [sym_negated_pattern] = STATE(3401), + [sym_and_pattern] = STATE(3401), + [sym_or_pattern] = STATE(3401), + [sym_declaration_pattern] = STATE(3401), + [sym_expression] = STATE(5750), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3408), + [sym_postfix_unary_expression] = STATE(3409), + [sym_prefix_unary_expression] = STATE(3409), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3408), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3409), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3408), + [sym_member_access_expression] = STATE(2718), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3409), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3408), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3408), + [sym_typeof_expression] = STATE(3408), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2718), + [sym_literal] = STATE(3408), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2217), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(452), [sym_preproc_endregion] = STATE(452), [sym_preproc_line] = STATE(452), @@ -117111,53 +117137,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(452), [sym_preproc_define] = STATE(452), [sym_preproc_undef] = STATE(452), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2581), - [sym_predefined_type] = ACTIONS(2431), + [anon_sym_var] = ACTIONS(2395), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2587), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117171,17 +117197,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -117193,104 +117219,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [453] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2472), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2195), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5503), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(2581), - [sym_property_pattern_clause] = STATE(2652), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5729), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3539), - [sym_postfix_unary_expression] = STATE(3541), - [sym_prefix_unary_expression] = STATE(3541), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3539), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3541), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3539), - [sym_member_access_expression] = STATE(2824), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3541), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3539), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3539), - [sym_typeof_expression] = STATE(3539), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2824), - [sym_literal] = STATE(3539), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2908), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2514), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(4236), + [sym_constant_pattern] = STATE(4213), + [sym_parenthesized_pattern] = STATE(4213), + [sym_var_pattern] = STATE(4213), + [sym_type_pattern] = STATE(4213), + [sym_list_pattern] = STATE(4213), + [sym_recursive_pattern] = STATE(4213), + [sym_positional_pattern_clause] = STATE(2610), + [sym_property_pattern_clause] = STATE(2691), + [sym_relational_pattern] = STATE(4213), + [sym_negated_pattern] = STATE(4213), + [sym_and_pattern] = STATE(4213), + [sym_or_pattern] = STATE(4213), + [sym_declaration_pattern] = STATE(4213), + [sym_expression] = STATE(5724), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4207), + [sym_prefix_unary_expression] = STATE(4207), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4207), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3118), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4207), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3118), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(453), [sym_preproc_endregion] = STATE(453), [sym_preproc_line] = STATE(453), @@ -117300,53 +117326,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(453), [sym_preproc_define] = STATE(453), [sym_preproc_undef] = STATE(453), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_GT] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(2559), - [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2561), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117360,17 +117386,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -117382,104 +117408,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [454] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2900), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2292), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2485), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_pattern] = STATE(5004), - [sym_constant_pattern] = STATE(3344), - [sym_parenthesized_pattern] = STATE(3344), - [sym_var_pattern] = STATE(3344), - [sym_type_pattern] = STATE(3344), - [sym_list_pattern] = STATE(3344), - [sym_recursive_pattern] = STATE(3344), - [sym_positional_pattern_clause] = STATE(2564), - [sym_property_pattern_clause] = STATE(2592), - [sym_relational_pattern] = STATE(3344), - [sym_negated_pattern] = STATE(3344), - [sym_and_pattern] = STATE(3344), - [sym_or_pattern] = STATE(3344), - [sym_declaration_pattern] = STATE(3344), - [sym_expression] = STATE(5737), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3395), - [sym_prefix_unary_expression] = STATE(3395), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3395), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2679), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3395), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2679), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2899), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2480), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_pattern] = STATE(3778), + [sym_constant_pattern] = STATE(3785), + [sym_parenthesized_pattern] = STATE(3785), + [sym_var_pattern] = STATE(3785), + [sym_type_pattern] = STATE(3785), + [sym_list_pattern] = STATE(3785), + [sym_recursive_pattern] = STATE(3785), + [sym_positional_pattern_clause] = STATE(2574), + [sym_property_pattern_clause] = STATE(2676), + [sym_relational_pattern] = STATE(3785), + [sym_negated_pattern] = STATE(3785), + [sym_and_pattern] = STATE(3785), + [sym_or_pattern] = STATE(3785), + [sym_declaration_pattern] = STATE(3785), + [sym_expression] = STATE(5710), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3920), + [sym_postfix_unary_expression] = STATE(3921), + [sym_prefix_unary_expression] = STATE(3921), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3920), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3921), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3920), + [sym_member_access_expression] = STATE(2938), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3921), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3920), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3920), + [sym_typeof_expression] = STATE(3920), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2938), + [sym_literal] = STATE(3920), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(454), [sym_preproc_endregion] = STATE(454), [sym_preproc_line] = STATE(454), @@ -117489,22 +117515,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(454), [sym_preproc_define] = STATE(454), [sym_preproc_undef] = STATE(454), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2461), [anon_sym_ref] = ACTIONS(2365), [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -117513,29 +117539,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1783), [anon_sym_PLUS_PLUS] = ACTIONS(1783), [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), [anon_sym_PLUS] = ACTIONS(1781), [anon_sym_DASH] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1783), [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(2401), - [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(2373), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2403), - [sym_predefined_type] = ACTIONS(2405), + [anon_sym_var] = ACTIONS(2409), + [sym_predefined_type] = ACTIONS(2411), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2413), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), + [anon_sym_not] = ACTIONS(2467), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117549,17 +117575,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -117571,104 +117597,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [455] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2239), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(4529), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_pattern] = STATE(6723), - [sym_constant_pattern] = STATE(3535), - [sym_parenthesized_pattern] = STATE(3535), - [sym_var_pattern] = STATE(3535), - [sym_type_pattern] = STATE(3535), - [sym_list_pattern] = STATE(3535), - [sym_recursive_pattern] = STATE(3535), - [sym_positional_pattern_clause] = STATE(5176), - [sym_property_pattern_clause] = STATE(5750), - [sym_relational_pattern] = STATE(3535), - [sym_negated_pattern] = STATE(3535), - [sym_and_pattern] = STATE(3535), - [sym_or_pattern] = STATE(3535), - [sym_declaration_pattern] = STATE(3535), - [sym_expression] = STATE(5721), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(4501), - [sym_postfix_unary_expression] = STATE(4506), - [sym_prefix_unary_expression] = STATE(4506), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(4501), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(4506), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(4501), - [sym_member_access_expression] = STATE(3179), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(4506), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(4501), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(4501), - [sym_typeof_expression] = STATE(4501), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3179), - [sym_literal] = STATE(4501), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2713), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2280), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2434), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_pattern] = STATE(4598), + [sym_constant_pattern] = STATE(4766), + [sym_parenthesized_pattern] = STATE(4766), + [sym_var_pattern] = STATE(4766), + [sym_type_pattern] = STATE(4766), + [sym_list_pattern] = STATE(4766), + [sym_recursive_pattern] = STATE(4766), + [sym_positional_pattern_clause] = STATE(2516), + [sym_property_pattern_clause] = STATE(2579), + [sym_relational_pattern] = STATE(4766), + [sym_negated_pattern] = STATE(4766), + [sym_and_pattern] = STATE(4766), + [sym_or_pattern] = STATE(4766), + [sym_declaration_pattern] = STATE(4766), + [sym_expression] = STATE(5712), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(4566), + [sym_postfix_unary_expression] = STATE(4567), + [sym_prefix_unary_expression] = STATE(4567), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(4566), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(4567), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(4566), + [sym_member_access_expression] = STATE(3230), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(4567), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(4566), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(4566), + [sym_typeof_expression] = STATE(4566), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3230), + [sym_literal] = STATE(4566), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(455), [sym_preproc_endregion] = STATE(455), [sym_preproc_line] = STATE(455), @@ -117678,77 +117704,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(455), [sym_preproc_define] = STATE(455), [sym_preproc_undef] = STATE(455), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1075), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2497), + [sym_predefined_type] = ACTIONS(2499), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [sym_discard] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [sym_discard] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1141), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(2543), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -117760,94 +117786,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [456] = { - [sym_attribute] = STATE(6808), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5835), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7092), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5840), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(456), [sym_preproc_endregion] = STATE(456), [sym_preproc_line] = STATE(456), @@ -117857,8 +117883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(456), [sym_preproc_define] = STATE(456), [sym_preproc_undef] = STATE(456), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -117866,7 +117892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_assembly] = ACTIONS(2647), [anon_sym_module] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -117874,9 +117900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -117886,17 +117913,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -117908,7 +117935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -117950,88 +117977,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [457] = { - [sym_attribute] = STATE(6808), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5835), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7092), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5840), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(457), [sym_preproc_endregion] = STATE(457), [sym_preproc_line] = STATE(457), @@ -118041,8 +118068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(457), [sym_preproc_define] = STATE(457), [sym_preproc_undef] = STATE(457), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -118050,7 +118077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_assembly] = ACTIONS(2651), [anon_sym_module] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118058,9 +118085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118070,17 +118098,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -118092,7 +118120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118134,88 +118162,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [458] = { - [sym_attribute] = STATE(6936), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), [sym_attribute_target_specifier] = STATE(5831), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6817), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(458), [sym_preproc_endregion] = STATE(458), [sym_preproc_line] = STATE(458), @@ -118225,14 +118253,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(458), [sym_preproc_define] = STATE(458), [sym_preproc_undef] = STATE(458), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118240,9 +118268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118252,17 +118281,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -118274,7 +118303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118316,88 +118345,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [459] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7025), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7044), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(459), [sym_preproc_endregion] = STATE(459), [sym_preproc_line] = STATE(459), @@ -118407,14 +118436,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(459), [sym_preproc_define] = STATE(459), [sym_preproc_undef] = STATE(459), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118422,9 +118451,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118434,17 +118464,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -118456,7 +118486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118498,88 +118528,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [460] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6932), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(6961), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5832), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(460), [sym_preproc_endregion] = STATE(460), [sym_preproc_line] = STATE(460), @@ -118589,14 +118619,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(460), [sym_preproc_define] = STATE(460), [sym_preproc_undef] = STATE(460), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118604,9 +118634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118616,17 +118647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -118638,7 +118669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118680,88 +118711,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [461] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6929), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6957), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(461), [sym_preproc_endregion] = STATE(461), [sym_preproc_line] = STATE(461), @@ -118771,14 +118802,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(461), [sym_preproc_define] = STATE(461), [sym_preproc_undef] = STATE(461), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118786,9 +118817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118798,17 +118830,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -118820,7 +118852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -118862,88 +118894,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [462] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7009), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(462), [sym_preproc_endregion] = STATE(462), [sym_preproc_line] = STATE(462), @@ -118953,14 +118985,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(462), [sym_preproc_define] = STATE(462), [sym_preproc_undef] = STATE(462), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -118968,9 +119000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -118980,17 +119013,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -119002,7 +119035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119044,88 +119077,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [463] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6937), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(463), [sym_preproc_endregion] = STATE(463), [sym_preproc_line] = STATE(463), @@ -119135,14 +119168,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(463), [sym_preproc_define] = STATE(463), [sym_preproc_undef] = STATE(463), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -119150,9 +119183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -119162,17 +119196,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -119184,7 +119218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119226,88 +119260,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [464] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_attribute_target_specifier] = STATE(5834), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6879), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5828), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute] = STATE(7041), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_attribute_target_specifier] = STATE(5831), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6962), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5826), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(464), [sym_preproc_endregion] = STATE(464), [sym_preproc_line] = STATE(464), @@ -119317,14 +119351,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(464), [sym_preproc_define] = STATE(464), [sym_preproc_undef] = STATE(464), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_field] = ACTIONS(1053), [anon_sym_event] = ACTIONS(1053), [anon_sym_method] = ACTIONS(1053), @@ -119332,9 +119366,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1053), [anon_sym_return] = ACTIONS(1053), [anon_sym_type] = ACTIONS(1053), + [anon_sym_typevar] = ACTIONS(1053), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -119344,17 +119379,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -119366,7 +119401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119408,89 +119443,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [465] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5876), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(465), [sym_preproc_endregion] = STATE(465), [sym_preproc_line] = STATE(465), @@ -119500,43 +119535,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(465), [sym_preproc_define] = STATE(465), [sym_preproc_undef] = STATE(465), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -119546,7 +119581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119588,89 +119623,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [466] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5846), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(466), [sym_preproc_endregion] = STATE(466), [sym_preproc_line] = STATE(466), @@ -119680,43 +119715,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(466), [sym_preproc_define] = STATE(466), [sym_preproc_undef] = STATE(466), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -119726,7 +119761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119768,89 +119803,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [467] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5910), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(467), [sym_preproc_endregion] = STATE(467), [sym_preproc_line] = STATE(467), @@ -119860,43 +119895,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(467), [sym_preproc_define] = STATE(467), [sym_preproc_undef] = STATE(467), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -119906,7 +119941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -119948,89 +119983,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [468] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5901), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5877), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5589), + [sym_lvalue_expression] = STATE(3633), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(468), [sym_preproc_endregion] = STATE(468), [sym_preproc_line] = STATE(468), @@ -120040,43 +120075,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(468), [sym_preproc_define] = STATE(468), [sym_preproc_undef] = STATE(468), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120086,7 +120121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120128,89 +120163,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [469] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5853), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5589), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5887), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), [sym_lvalue_expression] = STATE(3666), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(469), [sym_preproc_endregion] = STATE(469), [sym_preproc_line] = STATE(469), @@ -120220,43 +120255,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(469), [sym_preproc_define] = STATE(469), [sym_preproc_undef] = STATE(469), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120266,7 +120301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120308,89 +120343,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [470] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5912), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(470), [sym_preproc_endregion] = STATE(470), [sym_preproc_line] = STATE(470), @@ -120400,43 +120435,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(470), [sym_preproc_define] = STATE(470), [sym_preproc_undef] = STATE(470), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120446,7 +120481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120488,89 +120523,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [471] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5857), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5875), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3678), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(471), [sym_preproc_endregion] = STATE(471), [sym_preproc_line] = STATE(471), @@ -120580,43 +120615,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(471), [sym_preproc_define] = STATE(471), [sym_preproc_undef] = STATE(471), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120626,7 +120661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120668,89 +120703,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [472] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5911), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3641), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5886), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(472), [sym_preproc_endregion] = STATE(472), [sym_preproc_line] = STATE(472), @@ -120760,43 +120795,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(472), [sym_preproc_define] = STATE(472), [sym_preproc_undef] = STATE(472), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120806,7 +120841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -120848,89 +120883,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [473] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7106), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3633), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(473), [sym_preproc_endregion] = STATE(473), [sym_preproc_line] = STATE(473), @@ -120940,43 +120975,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(473), [sym_preproc_define] = STATE(473), [sym_preproc_undef] = STATE(473), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -120986,7 +121021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121028,89 +121063,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [474] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3666), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(474), [sym_preproc_endregion] = STATE(474), [sym_preproc_line] = STATE(474), @@ -121120,43 +121155,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(474), [sym_preproc_define] = STATE(474), [sym_preproc_undef] = STATE(474), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -121166,7 +121201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121208,89 +121243,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [475] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3678), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(475), [sym_preproc_endregion] = STATE(475), [sym_preproc_line] = STATE(475), @@ -121300,43 +121335,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(475), [sym_preproc_define] = STATE(475), [sym_preproc_undef] = STATE(475), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -121346,7 +121381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121388,89 +121423,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [476] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3641), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5847), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(476), [sym_preproc_endregion] = STATE(476), [sym_preproc_line] = STATE(476), @@ -121480,43 +121515,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(476), [sym_preproc_define] = STATE(476), [sym_preproc_undef] = STATE(476), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -121526,7 +121561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121568,89 +121603,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [477] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5877), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5908), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(477), [sym_preproc_endregion] = STATE(477), [sym_preproc_line] = STATE(477), @@ -121660,43 +121695,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(477), [sym_preproc_define] = STATE(477), [sym_preproc_undef] = STATE(477), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -121706,7 +121741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121748,89 +121783,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [478] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5887), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5866), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(478), [sym_preproc_endregion] = STATE(478), [sym_preproc_line] = STATE(478), @@ -121840,43 +121875,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(478), [sym_preproc_define] = STATE(478), [sym_preproc_undef] = STATE(478), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -121886,7 +121921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -121928,89 +121963,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [479] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5888), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5895), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(479), [sym_preproc_endregion] = STATE(479), [sym_preproc_line] = STATE(479), @@ -122020,43 +122055,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(479), [sym_preproc_define] = STATE(479), [sym_preproc_undef] = STATE(479), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122066,7 +122101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122108,89 +122143,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [480] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5847), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(480), [sym_preproc_endregion] = STATE(480), [sym_preproc_line] = STATE(480), @@ -122200,43 +122235,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(480), [sym_preproc_define] = STATE(480), [sym_preproc_undef] = STATE(480), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122246,7 +122281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122288,89 +122323,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [481] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(481), [sym_preproc_endregion] = STATE(481), [sym_preproc_line] = STATE(481), @@ -122380,43 +122415,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(481), [sym_preproc_define] = STATE(481), [sym_preproc_undef] = STATE(481), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122426,7 +122461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122468,89 +122503,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [482] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5850), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5915), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5589), + [sym_lvalue_expression] = STATE(3633), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(482), [sym_preproc_endregion] = STATE(482), [sym_preproc_line] = STATE(482), @@ -122560,43 +122595,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(482), [sym_preproc_define] = STATE(482), [sym_preproc_undef] = STATE(482), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122606,7 +122641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122648,89 +122683,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [483] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5848), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5882), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(483), [sym_preproc_endregion] = STATE(483), [sym_preproc_line] = STATE(483), @@ -122740,43 +122775,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(483), [sym_preproc_define] = STATE(483), [sym_preproc_undef] = STATE(483), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122786,7 +122821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -122828,89 +122863,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [484] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5854), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3641), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5897), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3678), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(484), [sym_preproc_endregion] = STATE(484), [sym_preproc_line] = STATE(484), @@ -122920,43 +122955,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(484), [sym_preproc_define] = STATE(484), [sym_preproc_undef] = STATE(484), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -122966,7 +123001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123008,89 +123043,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [485] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5869), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5890), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(485), [sym_preproc_endregion] = STATE(485), [sym_preproc_line] = STATE(485), @@ -123100,43 +123135,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(485), [sym_preproc_define] = STATE(485), [sym_preproc_undef] = STATE(485), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -123146,7 +123181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123188,89 +123223,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [486] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5883), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(486), [sym_preproc_endregion] = STATE(486), [sym_preproc_line] = STATE(486), @@ -123280,43 +123315,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(486), [sym_preproc_define] = STATE(486), [sym_preproc_undef] = STATE(486), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -123326,7 +123361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123368,89 +123403,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [487] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5907), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5871), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(487), [sym_preproc_endregion] = STATE(487), [sym_preproc_line] = STATE(487), @@ -123460,43 +123495,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(487), [sym_preproc_define] = STATE(487), [sym_preproc_undef] = STATE(487), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -123506,7 +123541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123548,89 +123583,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [488] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5852), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5872), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(488), [sym_preproc_endregion] = STATE(488), [sym_preproc_line] = STATE(488), @@ -123640,43 +123675,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(488), [sym_preproc_define] = STATE(488), [sym_preproc_undef] = STATE(488), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -123686,7 +123721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123728,89 +123763,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [489] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5862), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7106), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), [sym_non_lvalue_expression] = STATE(5589), - [sym_lvalue_expression] = STATE(3666), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_lvalue_expression] = STATE(3633), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(489), [sym_preproc_endregion] = STATE(489), [sym_preproc_line] = STATE(489), @@ -123820,43 +123855,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(489), [sym_preproc_define] = STATE(489), [sym_preproc_undef] = STATE(489), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -123866,7 +123901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -123908,89 +123943,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [490] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5916), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5879), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(490), [sym_preproc_endregion] = STATE(490), [sym_preproc_line] = STATE(490), @@ -124000,43 +124035,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(490), [sym_preproc_define] = STATE(490), [sym_preproc_undef] = STATE(490), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124046,7 +124081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124088,89 +124123,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [491] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5865), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3641), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5888), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3678), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(491), [sym_preproc_endregion] = STATE(491), [sym_preproc_line] = STATE(491), @@ -124180,43 +124215,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(491), [sym_preproc_define] = STATE(491), [sym_preproc_undef] = STATE(491), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124226,7 +124261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124268,89 +124303,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [492] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5917), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5889), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(492), [sym_preproc_endregion] = STATE(492), [sym_preproc_line] = STATE(492), @@ -124360,43 +124395,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(492), [sym_preproc_define] = STATE(492), [sym_preproc_undef] = STATE(492), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124406,7 +124441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124448,89 +124483,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [493] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5910), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7211), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(493), [sym_preproc_endregion] = STATE(493), [sym_preproc_line] = STATE(493), @@ -124540,43 +124575,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(493), [sym_preproc_define] = STATE(493), [sym_preproc_undef] = STATE(493), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124586,7 +124621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124628,89 +124663,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [494] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(494), [sym_preproc_endregion] = STATE(494), [sym_preproc_line] = STATE(494), @@ -124720,43 +124755,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(494), [sym_preproc_define] = STATE(494), [sym_preproc_undef] = STATE(494), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124766,7 +124801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124808,89 +124843,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [495] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5868), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(495), [sym_preproc_endregion] = STATE(495), [sym_preproc_line] = STATE(495), @@ -124900,43 +124935,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(495), [sym_preproc_define] = STATE(495), [sym_preproc_undef] = STATE(495), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -124946,7 +124981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -124988,89 +125023,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [496] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5895), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5905), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(496), [sym_preproc_endregion] = STATE(496), [sym_preproc_line] = STATE(496), @@ -125080,43 +125115,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(496), [sym_preproc_define] = STATE(496), [sym_preproc_undef] = STATE(496), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -125126,7 +125161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125168,89 +125203,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [497] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5916), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(497), [sym_preproc_endregion] = STATE(497), [sym_preproc_line] = STATE(497), @@ -125260,43 +125295,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(497), [sym_preproc_define] = STATE(497), [sym_preproc_undef] = STATE(497), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -125306,7 +125341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125348,89 +125383,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [498] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5851), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5848), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(498), [sym_preproc_endregion] = STATE(498), [sym_preproc_line] = STATE(498), @@ -125440,43 +125475,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(498), [sym_preproc_define] = STATE(498), [sym_preproc_undef] = STATE(498), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -125486,7 +125521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125528,89 +125563,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [499] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5855), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5850), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(499), [sym_preproc_endregion] = STATE(499), [sym_preproc_line] = STATE(499), @@ -125620,43 +125655,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(499), [sym_preproc_define] = STATE(499), [sym_preproc_undef] = STATE(499), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -125666,7 +125701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125708,89 +125743,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [500] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5858), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5854), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(500), [sym_preproc_endregion] = STATE(500), [sym_preproc_line] = STATE(500), @@ -125800,43 +125835,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(500), [sym_preproc_define] = STATE(500), [sym_preproc_undef] = STATE(500), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -125846,7 +125881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -125888,89 +125923,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [501] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5870), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7106), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5892), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), [sym_non_lvalue_expression] = STATE(5589), - [sym_lvalue_expression] = STATE(3666), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_lvalue_expression] = STATE(3633), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(501), [sym_preproc_endregion] = STATE(501), [sym_preproc_line] = STATE(501), @@ -125980,43 +126015,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(501), [sym_preproc_define] = STATE(501), [sym_preproc_undef] = STATE(501), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126026,7 +126061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126068,89 +126103,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [502] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5861), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5855), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(502), [sym_preproc_endregion] = STATE(502), [sym_preproc_line] = STATE(502), @@ -126160,43 +126195,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(502), [sym_preproc_define] = STATE(502), [sym_preproc_undef] = STATE(502), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126206,7 +126241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126248,89 +126283,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [503] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7221), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5871), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5480), - [sym_lvalue_expression] = STATE(3641), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7136), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5893), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5435), + [sym_lvalue_expression] = STATE(3678), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(503), [sym_preproc_endregion] = STATE(503), [sym_preproc_line] = STATE(503), @@ -126340,43 +126375,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(503), [sym_preproc_define] = STATE(503), [sym_preproc_undef] = STATE(503), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126386,7 +126421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126428,89 +126463,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [504] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5863), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3613), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5856), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(504), [sym_preproc_endregion] = STATE(504), [sym_preproc_line] = STATE(504), @@ -126520,43 +126555,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(504), [sym_preproc_define] = STATE(504), [sym_preproc_undef] = STATE(504), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126566,7 +126601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126608,89 +126643,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [505] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5866), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5862), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(505), [sym_preproc_endregion] = STATE(505), [sym_preproc_line] = STATE(505), @@ -126700,43 +126735,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(505), [sym_preproc_define] = STATE(505), [sym_preproc_undef] = STATE(505), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126746,7 +126781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126788,89 +126823,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [506] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5872), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5864), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(506), [sym_preproc_endregion] = STATE(506), [sym_preproc_line] = STATE(506), @@ -126880,43 +126915,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(506), [sym_preproc_define] = STATE(506), [sym_preproc_undef] = STATE(506), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -126926,7 +126961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -126968,89 +127003,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [507] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5873), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5867), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(507), [sym_preproc_endregion] = STATE(507), [sym_preproc_line] = STATE(507), @@ -127060,43 +127095,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(507), [sym_preproc_define] = STATE(507), [sym_preproc_undef] = STATE(507), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -127106,7 +127141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127148,89 +127183,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [508] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5896), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5880), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(508), [sym_preproc_endregion] = STATE(508), [sym_preproc_line] = STATE(508), @@ -127240,43 +127275,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(508), [sym_preproc_define] = STATE(508), [sym_preproc_undef] = STATE(508), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -127286,7 +127321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127328,89 +127363,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [509] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5886), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5900), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(509), [sym_preproc_endregion] = STATE(509), [sym_preproc_line] = STATE(509), @@ -127420,43 +127455,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(509), [sym_preproc_define] = STATE(509), [sym_preproc_undef] = STATE(509), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -127466,7 +127501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127508,89 +127543,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [510] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5889), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5400), - [sym_lvalue_expression] = STATE(3660), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5902), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5378), + [sym_lvalue_expression] = STATE(3672), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(510), [sym_preproc_endregion] = STATE(510), [sym_preproc_line] = STATE(510), @@ -127600,43 +127635,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(510), [sym_preproc_define] = STATE(510), [sym_preproc_undef] = STATE(510), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -127646,7 +127681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127688,89 +127723,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [511] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7115), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5891), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5530), - [sym_lvalue_expression] = STATE(3671), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(511), [sym_preproc_endregion] = STATE(511), [sym_preproc_line] = STATE(511), @@ -127780,43 +127815,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(511), [sym_preproc_define] = STATE(511), [sym_preproc_undef] = STATE(511), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -127826,7 +127861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -127868,89 +127903,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [512] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5874), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5896), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(512), [sym_preproc_endregion] = STATE(512), [sym_preproc_line] = STATE(512), @@ -127960,43 +127995,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(512), [sym_preproc_define] = STATE(512), [sym_preproc_undef] = STATE(512), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128006,7 +128041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128048,89 +128083,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [513] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5903), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5914), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(513), [sym_preproc_endregion] = STATE(513), [sym_preproc_line] = STATE(513), @@ -128140,43 +128175,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(513), [sym_preproc_define] = STATE(513), [sym_preproc_undef] = STATE(513), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128186,7 +128221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128228,89 +128263,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [514] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5913), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(514), [sym_preproc_endregion] = STATE(514), [sym_preproc_line] = STATE(514), @@ -128320,43 +128355,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(514), [sym_preproc_define] = STATE(514), [sym_preproc_undef] = STATE(514), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128366,7 +128401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128408,89 +128443,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [515] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5902), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5853), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(515), [sym_preproc_endregion] = STATE(515), [sym_preproc_line] = STATE(515), @@ -128500,43 +128535,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(515), [sym_preproc_define] = STATE(515), [sym_preproc_undef] = STATE(515), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128546,7 +128581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128588,89 +128623,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [516] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5858), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(516), [sym_preproc_endregion] = STATE(516), [sym_preproc_line] = STATE(516), @@ -128680,43 +128715,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(516), [sym_preproc_define] = STATE(516), [sym_preproc_undef] = STATE(516), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128726,7 +128761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128768,89 +128803,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [517] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7106), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(517), [sym_preproc_endregion] = STATE(517), [sym_preproc_line] = STATE(517), @@ -128860,43 +128895,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(517), [sym_preproc_define] = STATE(517), [sym_preproc_undef] = STATE(517), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -128906,7 +128941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -128948,89 +128983,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [518] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5878), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7145), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5917), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(518), [sym_preproc_endregion] = STATE(518), [sym_preproc_line] = STATE(518), @@ -129040,43 +129075,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(518), [sym_preproc_define] = STATE(518), [sym_preproc_undef] = STATE(518), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129086,7 +129121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129128,89 +129163,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [519] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5892), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5865), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(519), [sym_preproc_endregion] = STATE(519), [sym_preproc_line] = STATE(519), @@ -129220,43 +129255,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(519), [sym_preproc_define] = STATE(519), [sym_preproc_undef] = STATE(519), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129266,7 +129301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129308,89 +129343,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [520] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5905), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5868), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(520), [sym_preproc_endregion] = STATE(520), [sym_preproc_line] = STATE(520), @@ -129400,43 +129435,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(520), [sym_preproc_define] = STATE(520), [sym_preproc_undef] = STATE(520), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129446,7 +129481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129488,89 +129523,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [521] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5914), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5870), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(521), [sym_preproc_endregion] = STATE(521), [sym_preproc_line] = STATE(521), @@ -129580,43 +129615,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(521), [sym_preproc_define] = STATE(521), [sym_preproc_undef] = STATE(521), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129626,7 +129661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129668,89 +129703,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [522] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5898), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7339), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5541), - [sym_lvalue_expression] = STATE(3658), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5873), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5488), + [sym_lvalue_expression] = STATE(3666), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(522), [sym_preproc_endregion] = STATE(522), [sym_preproc_line] = STATE(522), @@ -129760,43 +129795,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(522), [sym_preproc_define] = STATE(522), [sym_preproc_undef] = STATE(522), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129806,7 +129841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -129848,89 +129883,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [523] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_argument] = STATE(7222), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(5589), - [sym_lvalue_expression] = STATE(3666), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2301), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_argument] = STATE(7337), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5898), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(5404), + [sym_lvalue_expression] = STATE(3658), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2292), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(523), [sym_preproc_endregion] = STATE(523), [sym_preproc_line] = STATE(523), @@ -129940,43 +129975,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(523), [sym_preproc_define] = STATE(523), [sym_preproc_undef] = STATE(523), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2888), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2893), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2653), [anon_sym_ref] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1119), - [anon_sym_out] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1127), + [anon_sym_out] = ACTIONS(1127), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(1127), - [anon_sym_scoped] = ACTIONS(1129), - [anon_sym_params] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(1135), + [anon_sym_scoped] = ACTIONS(1137), + [anon_sym_params] = ACTIONS(1139), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -129986,7 +130021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -130028,88 +130063,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [524] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4525), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7534), - [sym_preproc_elif_in_expression] = STATE(7534), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5520), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4457), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7767), + [sym_preproc_elif_in_expression] = STATE(7767), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7770), + [sym_preproc_elif_in_attribute_list] = STATE(7770), [sym_preproc_region] = STATE(524), [sym_preproc_endregion] = STATE(524), [sym_preproc_line] = STATE(524), @@ -130119,17 +130154,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(524), [sym_preproc_define] = STATE(524), [sym_preproc_undef] = STATE(524), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -130137,17 +130172,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -130156,9 +130191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -130204,88 +130239,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [525] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4459), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7403), - [sym_preproc_elif_in_expression] = STATE(7403), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4490), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7511), + [sym_preproc_elif_in_expression] = STATE(7511), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(525), [sym_preproc_endregion] = STATE(525), [sym_preproc_line] = STATE(525), @@ -130295,17 +130330,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(525), [sym_preproc_define] = STATE(525), [sym_preproc_undef] = STATE(525), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -130313,17 +130348,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -130332,9 +130367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -130380,88 +130415,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [526] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4434), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7428), - [sym_preproc_elif_in_expression] = STATE(7428), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4454), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7669), + [sym_preproc_elif_in_expression] = STATE(7669), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(526), [sym_preproc_endregion] = STATE(526), [sym_preproc_line] = STATE(526), @@ -130471,17 +130506,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(526), [sym_preproc_define] = STATE(526), [sym_preproc_undef] = STATE(526), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -130489,17 +130524,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -130508,9 +130543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -130556,88 +130591,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [527] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4477), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7656), + [sym_preproc_elif_in_expression] = STATE(7656), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(527), [sym_preproc_endregion] = STATE(527), [sym_preproc_line] = STATE(527), @@ -130647,17 +130682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(527), [sym_preproc_define] = STATE(527), [sym_preproc_undef] = STATE(527), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -130665,17 +130700,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -130684,9 +130719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -130713,7 +130748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2659), + [aux_sym_preproc_if_token3] = ACTIONS(2665), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -130732,88 +130767,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [528] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7681), - [sym_preproc_elif_in_expression] = STATE(7681), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4512), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7530), + [sym_preproc_elif_in_expression] = STATE(7530), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(528), [sym_preproc_endregion] = STATE(528), [sym_preproc_line] = STATE(528), @@ -130823,17 +130858,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(528), [sym_preproc_define] = STATE(528), [sym_preproc_undef] = STATE(528), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -130841,17 +130876,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -130860,9 +130895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -130889,7 +130924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2659), + [aux_sym_preproc_if_token3] = ACTIONS(2669), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -130908,88 +130943,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [529] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4492), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7507), - [sym_preproc_elif_in_expression] = STATE(7507), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(529), [sym_preproc_endregion] = STATE(529), [sym_preproc_line] = STATE(529), @@ -130999,17 +131034,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(529), [sym_preproc_define] = STATE(529), [sym_preproc_undef] = STATE(529), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131017,17 +131052,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131036,9 +131071,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131065,7 +131100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2667), + [aux_sym_preproc_if_token3] = ACTIONS(2669), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131084,88 +131119,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [530] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4492), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7507), - [sym_preproc_elif_in_expression] = STATE(7507), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4541), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7365), + [sym_preproc_elif_in_expression] = STATE(7365), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(530), [sym_preproc_endregion] = STATE(530), [sym_preproc_line] = STATE(530), @@ -131175,17 +131210,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(530), [sym_preproc_define] = STATE(530), [sym_preproc_undef] = STATE(530), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131193,17 +131228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131212,9 +131247,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131241,7 +131276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2659), + [aux_sym_preproc_if_token3] = ACTIONS(2669), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131260,88 +131295,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [531] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7681), - [sym_preproc_elif_in_expression] = STATE(7681), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7477), + [sym_preproc_elif_in_expression] = STATE(7477), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(531), [sym_preproc_endregion] = STATE(531), [sym_preproc_line] = STATE(531), @@ -131351,17 +131386,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(531), [sym_preproc_define] = STATE(531), [sym_preproc_undef] = STATE(531), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131369,17 +131404,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131388,9 +131423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131417,7 +131452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2667), + [aux_sym_preproc_if_token3] = ACTIONS(2665), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131436,88 +131471,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [532] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7703), - [sym_preproc_elif_in_expression] = STATE(7703), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4490), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7511), + [sym_preproc_elif_in_expression] = STATE(7511), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(532), [sym_preproc_endregion] = STATE(532), [sym_preproc_line] = STATE(532), @@ -131527,17 +131562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(532), [sym_preproc_define] = STATE(532), [sym_preproc_undef] = STATE(532), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131545,17 +131580,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131564,9 +131599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131593,7 +131628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2667), + [aux_sym_preproc_if_token3] = ACTIONS(2669), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131612,88 +131647,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [533] = { - [sym_attribute_list] = STATE(5620), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7797), - [sym_preproc_elif_in_expression] = STATE(7797), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7798), - [sym_preproc_elif_in_attribute_list] = STATE(7798), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4512), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7530), + [sym_preproc_elif_in_expression] = STATE(7530), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(533), [sym_preproc_endregion] = STATE(533), [sym_preproc_line] = STATE(533), @@ -131703,17 +131738,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(533), [sym_preproc_define] = STATE(533), [sym_preproc_undef] = STATE(533), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131721,17 +131756,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131740,9 +131775,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131769,7 +131804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2669), + [aux_sym_preproc_if_token3] = ACTIONS(2665), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131788,88 +131823,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [534] = { - [sym_attribute_list] = STATE(5502), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4525), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7534), - [sym_preproc_elif_in_expression] = STATE(7534), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_else_in_attribute_list] = STATE(7445), - [sym_preproc_elif_in_attribute_list] = STATE(7445), + [sym_attribute_list] = STATE(5439), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4541), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7365), + [sym_preproc_elif_in_expression] = STATE(7365), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_else_in_attribute_list] = STATE(7663), + [sym_preproc_elif_in_attribute_list] = STATE(7663), [sym_preproc_region] = STATE(534), [sym_preproc_endregion] = STATE(534), [sym_preproc_line] = STATE(534), @@ -131879,17 +131914,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(534), [sym_preproc_define] = STATE(534), [sym_preproc_undef] = STATE(534), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -131897,17 +131932,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -131916,9 +131951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -131945,7 +131980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2667), + [aux_sym_preproc_if_token3] = ACTIONS(2665), [aux_sym_preproc_else_token1] = ACTIONS(2661), [aux_sym_preproc_elif_token1] = ACTIONS(2663), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -131964,87 +131999,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [535] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6980), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7000), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(535), [sym_preproc_endregion] = STATE(535), [sym_preproc_line] = STATE(535), @@ -132054,18 +132089,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(535), [sym_preproc_define] = STATE(535), [sym_preproc_undef] = STATE(535), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2671), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132075,17 +132110,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132097,7 +132132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132139,87 +132174,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [536] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7116), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6971), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7167), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(536), [sym_preproc_endregion] = STATE(536), [sym_preproc_line] = STATE(536), @@ -132229,18 +132264,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(536), [sym_preproc_define] = STATE(536), [sym_preproc_undef] = STATE(536), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2677), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132250,17 +132285,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132272,7 +132307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132314,87 +132349,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [537] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7047), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7236), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6985), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7239), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(537), [sym_preproc_endregion] = STATE(537), [sym_preproc_line] = STATE(537), @@ -132404,18 +132439,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(537), [sym_preproc_define] = STATE(537), [sym_preproc_undef] = STATE(537), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(2679), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132425,17 +132460,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132447,7 +132482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132489,87 +132524,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [538] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6958), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7142), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6971), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7154), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(538), [sym_preproc_endregion] = STATE(538), [sym_preproc_line] = STATE(538), @@ -132579,18 +132614,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(538), [sym_preproc_define] = STATE(538), [sym_preproc_undef] = STATE(538), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2677), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132600,17 +132635,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132622,7 +132657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132664,87 +132699,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [539] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6834), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7240), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6934), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7137), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(539), [sym_preproc_endregion] = STATE(539), [sym_preproc_line] = STATE(539), @@ -132754,18 +132789,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(539), [sym_preproc_define] = STATE(539), [sym_preproc_undef] = STATE(539), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2681), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132775,17 +132810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132797,7 +132832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132839,87 +132874,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [540] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7047), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7239), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6988), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7234), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(540), [sym_preproc_endregion] = STATE(540), [sym_preproc_line] = STATE(540), @@ -132929,18 +132964,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(540), [sym_preproc_define] = STATE(540), [sym_preproc_undef] = STATE(540), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2683), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -132950,17 +132985,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -132972,7 +133007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133014,87 +133049,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [541] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6834), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5929), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7236), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6934), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5921), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7154), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(541), [sym_preproc_endregion] = STATE(541), [sym_preproc_line] = STATE(541), @@ -133104,18 +133139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(541), [sym_preproc_define] = STATE(541), [sym_preproc_undef] = STATE(541), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2681), [anon_sym_ref] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133125,17 +133160,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -133147,7 +133182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133189,86 +133224,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [542] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6971), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(542), [sym_preproc_endregion] = STATE(542), [sym_preproc_line] = STATE(542), @@ -133278,18 +133313,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(542), [sym_preproc_define] = STATE(542), [sym_preproc_undef] = STATE(542), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133299,17 +133334,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -133321,7 +133356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133363,86 +133398,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [543] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(543), [sym_preproc_endregion] = STATE(543), [sym_preproc_line] = STATE(543), @@ -133452,18 +133487,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(543), [sym_preproc_define] = STATE(543), [sym_preproc_undef] = STATE(543), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133473,17 +133508,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -133495,7 +133530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133537,86 +133572,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [544] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(544), [sym_preproc_endregion] = STATE(544), [sym_preproc_line] = STATE(544), @@ -133626,18 +133661,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(544), [sym_preproc_define] = STATE(544), [sym_preproc_undef] = STATE(544), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133647,17 +133682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -133669,7 +133704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133711,86 +133746,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [545] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(545), [sym_preproc_endregion] = STATE(545), [sym_preproc_line] = STATE(545), @@ -133800,18 +133835,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(545), [sym_preproc_define] = STATE(545), [sym_preproc_undef] = STATE(545), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133821,17 +133856,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -133843,7 +133878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -133885,86 +133920,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [546] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(546), [sym_preproc_endregion] = STATE(546), [sym_preproc_line] = STATE(546), @@ -133974,18 +134009,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(546), [sym_preproc_define] = STATE(546), [sym_preproc_undef] = STATE(546), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -133995,17 +134030,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134017,7 +134052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134059,86 +134094,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [547] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6958), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(547), [sym_preproc_endregion] = STATE(547), [sym_preproc_line] = STATE(547), @@ -134148,18 +134183,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(547), [sym_preproc_define] = STATE(547), [sym_preproc_undef] = STATE(547), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -134169,17 +134204,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134191,7 +134226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134233,86 +134268,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [548] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6834), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7000), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(548), [sym_preproc_endregion] = STATE(548), [sym_preproc_line] = STATE(548), @@ -134322,18 +134357,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(548), [sym_preproc_define] = STATE(548), [sym_preproc_undef] = STATE(548), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2683), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -134343,17 +134378,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134365,7 +134400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134407,86 +134442,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [549] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7047), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4457), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_else_in_expression] = STATE(7767), + [sym_preproc_elif_in_expression] = STATE(7767), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(549), [sym_preproc_endregion] = STATE(549), [sym_preproc_line] = STATE(549), @@ -134496,38 +134531,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(549), [sym_preproc_define] = STATE(549), [sym_preproc_undef] = STATE(549), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_out] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134536,10 +134568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134565,6 +134597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2697), + [aux_sym_preproc_else_token1] = ACTIONS(2699), + [aux_sym_preproc_elif_token1] = ACTIONS(2701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134581,86 +134616,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [550] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_else_in_expression] = STATE(7797), - [sym_preproc_elif_in_expression] = STATE(7797), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6985), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(550), [sym_preproc_endregion] = STATE(550), [sym_preproc_line] = STATE(550), @@ -134670,35 +134705,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(550), [sym_preproc_define] = STATE(550), [sym_preproc_undef] = STATE(550), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_out] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134707,10 +134745,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134736,9 +134774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2697), - [aux_sym_preproc_else_token1] = ACTIONS(2699), - [aux_sym_preproc_elif_token1] = ACTIONS(2701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134755,86 +134790,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [551] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(551), [sym_preproc_endregion] = STATE(551), [sym_preproc_line] = STATE(551), @@ -134844,18 +134879,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(551), [sym_preproc_define] = STATE(551), [sym_preproc_undef] = STATE(551), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -134865,17 +134900,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -134887,7 +134922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134929,86 +134964,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [552] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(552), [sym_preproc_endregion] = STATE(552), [sym_preproc_line] = STATE(552), @@ -135018,18 +135053,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(552), [sym_preproc_define] = STATE(552), [sym_preproc_undef] = STATE(552), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135039,17 +135074,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135061,7 +135096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135103,86 +135138,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [553] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(553), [sym_preproc_endregion] = STATE(553), [sym_preproc_line] = STATE(553), @@ -135192,18 +135227,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(553), [sym_preproc_define] = STATE(553), [sym_preproc_undef] = STATE(553), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RBRACK] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135213,17 +135248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135235,7 +135270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135277,86 +135312,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [554] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6934), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(554), [sym_preproc_endregion] = STATE(554), [sym_preproc_line] = STATE(554), @@ -135366,18 +135401,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(554), [sym_preproc_define] = STATE(554), [sym_preproc_undef] = STATE(554), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2681), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135387,17 +135422,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135409,7 +135444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135451,86 +135486,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [555] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(555), [sym_preproc_endregion] = STATE(555), [sym_preproc_line] = STATE(555), @@ -135540,18 +135575,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(555), [sym_preproc_define] = STATE(555), [sym_preproc_undef] = STATE(555), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135561,17 +135596,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135583,7 +135618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135625,86 +135660,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [556] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6980), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6988), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(556), [sym_preproc_endregion] = STATE(556), [sym_preproc_line] = STATE(556), @@ -135714,18 +135749,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(556), [sym_preproc_define] = STATE(556), [sym_preproc_undef] = STATE(556), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135735,17 +135770,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135757,7 +135792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135799,86 +135834,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [557] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(557), [sym_preproc_endregion] = STATE(557), [sym_preproc_line] = STATE(557), @@ -135888,18 +135923,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(557), [sym_preproc_define] = STATE(557), [sym_preproc_undef] = STATE(557), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2711), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -135909,17 +135944,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -135931,7 +135966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -135973,86 +136008,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [558] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(558), [sym_preproc_endregion] = STATE(558), [sym_preproc_line] = STATE(558), @@ -136062,18 +136097,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(558), [sym_preproc_define] = STATE(558), [sym_preproc_undef] = STATE(558), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -136083,17 +136118,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -136105,7 +136140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136147,86 +136182,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [559] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(559), [sym_preproc_endregion] = STATE(559), [sym_preproc_line] = STATE(559), @@ -136236,18 +136271,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(559), [sym_preproc_define] = STATE(559), [sym_preproc_undef] = STATE(559), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_RBRACK] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -136257,17 +136292,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -136279,7 +136314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136321,86 +136356,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [560] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6817), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(560), [sym_preproc_endregion] = STATE(560), [sym_preproc_line] = STATE(560), @@ -136410,17 +136445,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(560), [sym_preproc_define] = STATE(560), [sym_preproc_undef] = STATE(560), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -136430,17 +136465,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -136452,7 +136487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136494,85 +136529,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [561] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5756), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2272), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4941), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7044), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(561), [sym_preproc_endregion] = STATE(561), [sym_preproc_line] = STATE(561), @@ -136582,50 +136618,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(561), [sym_preproc_define] = STATE(561), [sym_preproc_undef] = STATE(561), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_out] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136667,86 +136702,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [562] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6932), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5282), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(562), [sym_preproc_endregion] = STATE(562), [sym_preproc_line] = STATE(562), @@ -136756,17 +136791,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(562), [sym_preproc_define] = STATE(562), [sym_preproc_undef] = STATE(562), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -136776,17 +136811,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -136798,7 +136833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -136840,86 +136875,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [563] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6879), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7009), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(563), [sym_preproc_endregion] = STATE(563), [sym_preproc_line] = STATE(563), @@ -136929,17 +136964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(563), [sym_preproc_define] = STATE(563), [sym_preproc_undef] = STATE(563), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -136949,17 +136984,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -136971,7 +137006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137013,86 +137048,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [564] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5284), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5732), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2263), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4938), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(564), [sym_preproc_endregion] = STATE(564), [sym_preproc_line] = STATE(564), @@ -137102,49 +137136,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(564), [sym_preproc_define] = STATE(564), [sym_preproc_undef] = STATE(564), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_out] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137186,85 +137221,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [565] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5064), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(565), [sym_preproc_endregion] = STATE(565), [sym_preproc_line] = STATE(565), @@ -137274,38 +137310,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(565), [sym_preproc_define] = STATE(565), [sym_preproc_undef] = STATE(565), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_out] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -137317,7 +137352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137359,86 +137394,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [566] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6937), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6957), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(566), [sym_preproc_endregion] = STATE(566), [sym_preproc_line] = STATE(566), @@ -137448,17 +137483,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(566), [sym_preproc_define] = STATE(566), [sym_preproc_undef] = STATE(566), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -137468,17 +137503,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -137490,7 +137525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137532,86 +137567,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [567] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6929), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5213), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(567), [sym_preproc_endregion] = STATE(567), [sym_preproc_line] = STATE(567), @@ -137621,17 +137656,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(567), [sym_preproc_define] = STATE(567), [sym_preproc_undef] = STATE(567), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -137641,17 +137676,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -137663,7 +137698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137705,85 +137740,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [568] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5056), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5038), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(568), [sym_preproc_endregion] = STATE(568), [sym_preproc_line] = STATE(568), @@ -137793,17 +137828,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(568), [sym_preproc_define] = STATE(568), [sym_preproc_undef] = STATE(568), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -137814,19 +137849,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), @@ -137836,7 +137871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137878,86 +137913,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [569] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5309), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5229), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(569), [sym_preproc_endregion] = STATE(569), [sym_preproc_line] = STATE(569), @@ -137967,17 +138002,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(569), [sym_preproc_define] = STATE(569), [sym_preproc_undef] = STATE(569), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -137987,17 +138022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138009,7 +138044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138051,86 +138086,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [570] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7025), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5054), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(570), [sym_preproc_endregion] = STATE(570), [sym_preproc_line] = STATE(570), @@ -138140,37 +138174,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(570), [sym_preproc_define] = STATE(570), [sym_preproc_undef] = STATE(570), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_out] = ACTIONS(1063), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138182,7 +138217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138224,86 +138259,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [571] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5212), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7020), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(571), [sym_preproc_endregion] = STATE(571), [sym_preproc_line] = STATE(571), @@ -138313,17 +138348,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(571), [sym_preproc_define] = STATE(571), [sym_preproc_undef] = STATE(571), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -138333,17 +138368,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138355,7 +138390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138397,86 +138432,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [572] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(7298), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5227), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7169), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5311), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(572), [sym_preproc_endregion] = STATE(572), [sym_preproc_line] = STATE(572), @@ -138486,17 +138521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(572), [sym_preproc_define] = STATE(572), [sym_preproc_undef] = STATE(572), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -138506,17 +138541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138528,7 +138563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138570,86 +138605,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [573] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6814), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(6962), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(573), [sym_preproc_endregion] = STATE(573), [sym_preproc_line] = STATE(573), @@ -138659,17 +138694,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(573), [sym_preproc_define] = STATE(573), [sym_preproc_undef] = STATE(573), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -138679,17 +138714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138701,7 +138736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138743,86 +138778,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [574] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_argument] = STATE(6867), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6850), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_argument] = STATE(7095), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6819), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2215), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(574), [sym_preproc_endregion] = STATE(574), [sym_preproc_line] = STATE(574), @@ -138832,17 +138867,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(574), [sym_preproc_define] = STATE(574), [sym_preproc_undef] = STATE(574), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_ref] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -138852,17 +138887,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -138874,7 +138909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138916,84 +138951,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [575] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5114), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7002), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(575), [sym_preproc_endregion] = STATE(575), [sym_preproc_line] = STATE(575), @@ -139003,20 +139039,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(575), [sym_preproc_define] = STATE(575), [sym_preproc_undef] = STATE(575), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6978), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -139024,17 +139059,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -139046,7 +139081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139088,84 +139123,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [576] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5085), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4901), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(576), [sym_preproc_endregion] = STATE(576), [sym_preproc_line] = STATE(576), @@ -139175,20 +139210,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(576), [sym_preproc_define] = STATE(576), [sym_preproc_undef] = STATE(576), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6988), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(7024), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -139196,17 +139231,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -139218,7 +139253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139260,84 +139295,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [577] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5087), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(6989), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(577), [sym_preproc_endregion] = STATE(577), [sym_preproc_line] = STATE(577), @@ -139347,20 +139383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(577), [sym_preproc_define] = STATE(577), [sym_preproc_undef] = STATE(577), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6908), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -139368,17 +139403,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -139390,7 +139425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139432,85 +139467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [578] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7048), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5082), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(578), [sym_preproc_endregion] = STATE(578), [sym_preproc_line] = STATE(578), @@ -139520,19 +139554,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(578), [sym_preproc_define] = STATE(578), [sym_preproc_undef] = STATE(578), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(7013), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -139540,17 +139575,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -139562,7 +139597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139604,85 +139639,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [579] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(6959), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(6942), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(579), [sym_preproc_endregion] = STATE(579), [sym_preproc_line] = STATE(579), @@ -139692,19 +139727,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(579), [sym_preproc_define] = STATE(579), [sym_preproc_undef] = STATE(579), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -139712,17 +139747,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -139734,7 +139769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139776,84 +139811,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [580] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5726), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4940), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(580), [sym_preproc_endregion] = STATE(580), [sym_preproc_line] = STATE(580), @@ -139863,192 +139898,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(580), [sym_preproc_define] = STATE(580), [sym_preproc_undef] = STATE(580), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(2719), - [anon_sym_alias] = ACTIONS(2719), - [anon_sym_global] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_ref] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(2719), - [anon_sym_notnull] = ACTIONS(2719), - [anon_sym_unmanaged] = ACTIONS(2719), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2719), - [anon_sym_scoped] = ACTIONS(2719), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2719), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(2719), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_from] = ACTIONS(2719), - [anon_sym_into] = ACTIONS(2719), - [anon_sym_join] = ACTIONS(2719), - [anon_sym_on] = ACTIONS(2719), - [anon_sym_equals] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_orderby] = ACTIONS(2719), - [anon_sym_ascending] = ACTIONS(2719), - [anon_sym_descending] = ACTIONS(2719), - [anon_sym_group] = ACTIONS(2719), - [anon_sym_by] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [581] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(6855), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(581), - [sym_preproc_endregion] = STATE(581), - [sym_preproc_line] = STATE(581), - [sym_preproc_pragma] = STATE(581), - [sym_preproc_nullable] = STATE(581), - [sym_preproc_error] = STATE(581), - [sym_preproc_warning] = STATE(581), - [sym_preproc_define] = STATE(581), - [sym_preproc_undef] = STATE(581), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(7078), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -140056,17 +139919,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140078,7 +139941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140119,108 +139982,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [582] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4901), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(582), - [sym_preproc_endregion] = STATE(582), - [sym_preproc_line] = STATE(582), - [sym_preproc_pragma] = STATE(582), - [sym_preproc_nullable] = STATE(582), - [sym_preproc_error] = STATE(582), - [sym_preproc_warning] = STATE(582), - [sym_preproc_define] = STATE(582), - [sym_preproc_undef] = STATE(582), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6973), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [581] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4975), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(581), + [sym_preproc_endregion] = STATE(581), + [sym_preproc_line] = STATE(581), + [sym_preproc_pragma] = STATE(581), + [sym_preproc_nullable] = STATE(581), + [sym_preproc_error] = STATE(581), + [sym_preproc_warning] = STATE(581), + [sym_preproc_define] = STATE(581), + [sym_preproc_undef] = STATE(581), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(7006), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -140228,17 +140091,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140250,7 +140113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140291,126 +140154,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [583] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4892), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6896), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(583), - [sym_preproc_endregion] = STATE(583), - [sym_preproc_line] = STATE(583), - [sym_preproc_pragma] = STATE(583), - [sym_preproc_nullable] = STATE(583), - [sym_preproc_error] = STATE(583), - [sym_preproc_warning] = STATE(583), - [sym_preproc_define] = STATE(583), - [sym_preproc_undef] = STATE(583), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [582] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5029), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(582), + [sym_preproc_endregion] = STATE(582), + [sym_preproc_line] = STATE(582), + [sym_preproc_pragma] = STATE(582), + [sym_preproc_nullable] = STATE(582), + [sym_preproc_error] = STATE(582), + [sym_preproc_warning] = STATE(582), + [sym_preproc_define] = STATE(582), + [sym_preproc_undef] = STATE(582), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(6799), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_out] = ACTIONS(1997), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140422,7 +140285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140463,86 +140326,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [583] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5753), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(583), + [sym_preproc_endregion] = STATE(583), + [sym_preproc_line] = STATE(583), + [sym_preproc_pragma] = STATE(583), + [sym_preproc_nullable] = STATE(583), + [sym_preproc_error] = STATE(583), + [sym_preproc_warning] = STATE(583), + [sym_preproc_define] = STATE(583), + [sym_preproc_undef] = STATE(583), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(2719), + [anon_sym_alias] = ACTIONS(2719), + [anon_sym_global] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_ref] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(2719), + [anon_sym_notnull] = ACTIONS(2719), + [anon_sym_unmanaged] = ACTIONS(2719), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(2719), + [anon_sym_scoped] = ACTIONS(2719), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2719), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_when] = ACTIONS(2719), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_from] = ACTIONS(2719), + [anon_sym_into] = ACTIONS(2719), + [anon_sym_join] = ACTIONS(2719), + [anon_sym_on] = ACTIONS(2719), + [anon_sym_equals] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_orderby] = ACTIONS(2719), + [anon_sym_ascending] = ACTIONS(2719), + [anon_sym_descending] = ACTIONS(2719), + [anon_sym_group] = ACTIONS(2719), + [anon_sym_by] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, [584] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(6803), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5085), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(584), [sym_preproc_endregion] = STATE(584), [sym_preproc_line] = STATE(584), @@ -140552,19 +140586,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(584), [sym_preproc_define] = STATE(584), [sym_preproc_undef] = STATE(584), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(6803), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -140572,17 +140607,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140594,7 +140629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140636,85 +140671,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [585] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7082), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(6987), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(585), [sym_preproc_endregion] = STATE(585), [sym_preproc_line] = STATE(585), @@ -140724,19 +140759,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(585), [sym_preproc_define] = STATE(585), [sym_preproc_undef] = STATE(585), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -140744,17 +140779,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140766,7 +140801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140808,84 +140843,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [586] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4973), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4959), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(586), [sym_preproc_endregion] = STATE(586), [sym_preproc_line] = STATE(586), @@ -140895,20 +140930,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(586), [sym_preproc_define] = STATE(586), [sym_preproc_undef] = STATE(586), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6848), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(6824), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -140916,17 +140951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -140938,7 +140973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140980,84 +141015,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [587] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4943), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7011), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(587), [sym_preproc_endregion] = STATE(587), [sym_preproc_line] = STATE(587), @@ -141067,20 +141103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(587), [sym_preproc_define] = STATE(587), [sym_preproc_undef] = STATE(587), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(7081), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -141088,17 +141123,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -141110,7 +141145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141152,84 +141187,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [588] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5028), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5149), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6809), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(588), [sym_preproc_endregion] = STATE(588), [sym_preproc_line] = STATE(588), @@ -141239,38 +141275,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(588), [sym_preproc_define] = STATE(588), [sym_preproc_undef] = STATE(588), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6966), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), + [anon_sym_in] = ACTIONS(2081), + [anon_sym_out] = ACTIONS(2081), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -141282,7 +141317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141324,85 +141359,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [589] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(6981), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4971), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(589), [sym_preproc_endregion] = STATE(589), [sym_preproc_line] = STATE(589), @@ -141412,19 +141446,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(589), [sym_preproc_define] = STATE(589), [sym_preproc_undef] = STATE(589), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym_array_rank_specifier_repeat1] = STATE(7096), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -141432,17 +141467,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -141454,7 +141489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141496,84 +141531,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [590] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4974), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7001), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(590), [sym_preproc_endregion] = STATE(590), [sym_preproc_line] = STATE(590), @@ -141583,20 +141619,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(590), [sym_preproc_define] = STATE(590), [sym_preproc_undef] = STATE(590), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym_array_rank_specifier_repeat1] = STATE(6806), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -141604,17 +141639,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -141626,7 +141661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141668,85 +141703,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [591] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5406), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7564), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5553), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(591), [sym_preproc_endregion] = STATE(591), [sym_preproc_line] = STATE(591), @@ -141756,48 +141792,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(591), [sym_preproc_define] = STATE(591), [sym_preproc_undef] = STATE(591), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141839,85 +141874,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [592] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5515), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(592), [sym_preproc_endregion] = STATE(592), [sym_preproc_line] = STATE(592), @@ -141927,48 +141961,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(592), [sym_preproc_define] = STATE(592), [sym_preproc_undef] = STATE(592), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2773), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2771), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142010,85 +142045,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [593] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5419), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(593), [sym_preproc_endregion] = STATE(593), [sym_preproc_line] = STATE(593), @@ -142098,37 +142132,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(593), [sym_preproc_define] = STATE(593), [sym_preproc_undef] = STATE(593), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -142136,10 +142171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142181,85 +142216,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [594] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4941), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(594), [sym_preproc_endregion] = STATE(594), [sym_preproc_line] = STATE(594), @@ -142269,18 +142303,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(594), [sym_preproc_define] = STATE(594), [sym_preproc_undef] = STATE(594), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -142288,17 +142323,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -142310,7 +142345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142352,85 +142387,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [595] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(595), [sym_preproc_endregion] = STATE(595), [sym_preproc_line] = STATE(595), @@ -142440,37 +142475,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(595), [sym_preproc_define] = STATE(595), [sym_preproc_undef] = STATE(595), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -142478,10 +142513,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142523,84 +142558,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [596] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5516), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5277), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(596), [sym_preproc_endregion] = STATE(596), [sym_preproc_line] = STATE(596), @@ -142610,49 +142646,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(596), [sym_preproc_define] = STATE(596), [sym_preproc_undef] = STATE(596), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2777), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142694,84 +142729,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [597] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5074), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(597), [sym_preproc_endregion] = STATE(597), [sym_preproc_line] = STATE(597), @@ -142781,19 +142817,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(597), [sym_preproc_define] = STATE(597), [sym_preproc_undef] = STATE(597), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -142801,17 +142836,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -142823,7 +142858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142865,85 +142900,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [598] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5410), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(598), [sym_preproc_endregion] = STATE(598), [sym_preproc_line] = STATE(598), @@ -142953,37 +142988,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(598), [sym_preproc_define] = STATE(598), [sym_preproc_undef] = STATE(598), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -142991,10 +143026,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143036,84 +143071,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [599] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5537), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(599), [sym_preproc_endregion] = STATE(599), [sym_preproc_line] = STATE(599), @@ -143123,38 +143159,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(599), [sym_preproc_define] = STATE(599), [sym_preproc_undef] = STATE(599), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2793), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -143162,10 +143197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143207,86 +143242,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [600] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7572), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5423), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7609), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5403), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(600), [sym_preproc_endregion] = STATE(600), [sym_preproc_line] = STATE(600), @@ -143296,17 +143331,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(600), [sym_preproc_define] = STATE(600), [sym_preproc_undef] = STATE(600), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -143314,21 +143349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -143336,7 +143371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143378,84 +143413,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [601] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4970), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5427), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(601), [sym_preproc_endregion] = STATE(601), [sym_preproc_line] = STATE(601), @@ -143465,38 +143501,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(601), [sym_preproc_define] = STATE(601), [sym_preproc_undef] = STATE(601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(715), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -143504,10 +143539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143549,85 +143584,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [602] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7616), [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5451), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5447), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(602), [sym_preproc_endregion] = STATE(602), [sym_preproc_line] = STATE(602), @@ -143637,48 +143673,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(602), [sym_preproc_define] = STATE(602), [sym_preproc_undef] = STATE(602), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143720,86 +143755,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [603] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5470), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(603), [sym_preproc_endregion] = STATE(603), [sym_preproc_line] = STATE(603), @@ -143809,47 +143842,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(603), [sym_preproc_define] = STATE(603), [sym_preproc_undef] = STATE(603), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143891,85 +143926,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [604] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5374), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7395), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5441), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(604), [sym_preproc_endregion] = STATE(604), [sym_preproc_line] = STATE(604), @@ -143979,48 +144015,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(604), [sym_preproc_define] = STATE(604), [sym_preproc_undef] = STATE(604), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144062,85 +144097,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [605] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5446), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(605), [sym_preproc_endregion] = STATE(605), [sym_preproc_line] = STATE(605), @@ -144150,37 +144185,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(605), [sym_preproc_define] = STATE(605), [sym_preproc_undef] = STATE(605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -144188,10 +144223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144233,85 +144268,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [606] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_argument] = STATE(7065), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5335), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2293), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(606), [sym_preproc_endregion] = STATE(606), [sym_preproc_line] = STATE(606), @@ -144321,18 +144356,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(606), [sym_preproc_define] = STATE(606), [sym_preproc_undef] = STATE(606), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -144340,17 +144375,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -144362,7 +144397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144404,85 +144439,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [607] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(607), [sym_preproc_endregion] = STATE(607), [sym_preproc_line] = STATE(607), @@ -144492,18 +144527,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(607), [sym_preproc_define] = STATE(607), [sym_preproc_undef] = STATE(607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -144511,17 +144546,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -144533,7 +144568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144575,85 +144610,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [608] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2933), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5706), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3841), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(608), [sym_preproc_endregion] = STATE(608), [sym_preproc_line] = STATE(608), @@ -144663,37 +144698,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(608), [sym_preproc_define] = STATE(608), [sym_preproc_undef] = STATE(608), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2807), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -144701,10 +144736,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144746,85 +144781,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [609] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5698), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(609), [sym_preproc_endregion] = STATE(609), [sym_preproc_line] = STATE(609), @@ -144834,37 +144869,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(609), [sym_preproc_define] = STATE(609), [sym_preproc_undef] = STATE(609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2809), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -144872,10 +144907,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144917,85 +144952,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [610] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(610), [sym_preproc_endregion] = STATE(610), [sym_preproc_line] = STATE(610), @@ -145005,18 +145040,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(610), [sym_preproc_define] = STATE(610), [sym_preproc_undef] = STATE(610), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -145024,17 +145059,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -145046,7 +145081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145088,85 +145123,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [611] = { - [sym_attribute_argument] = STATE(6872), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5364), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2297), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3249), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5374), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(4654), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(611), [sym_preproc_endregion] = STATE(611), [sym_preproc_line] = STATE(611), @@ -145176,37 +145211,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(611), [sym_preproc_define] = STATE(611), [sym_preproc_undef] = STATE(611), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2813), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -145214,10 +145249,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145259,85 +145294,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [612] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5404), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5450), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(612), [sym_preproc_endregion] = STATE(612), [sym_preproc_line] = STATE(612), @@ -145347,37 +145382,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(612), [sym_preproc_define] = STATE(612), [sym_preproc_undef] = STATE(612), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -145385,10 +145420,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145430,84 +145465,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [613] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5376), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(613), [sym_preproc_endregion] = STATE(613), [sym_preproc_line] = STATE(613), @@ -145517,49 +145553,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(613), [sym_preproc_define] = STATE(613), [sym_preproc_undef] = STATE(613), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2809), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145601,85 +145636,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [614] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5388), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(614), [sym_preproc_endregion] = STATE(614), [sym_preproc_line] = STATE(614), @@ -145689,37 +145724,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(614), [sym_preproc_define] = STATE(614), [sym_preproc_undef] = STATE(614), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -145727,10 +145762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145772,85 +145807,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [615] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5281), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5394), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(615), [sym_preproc_endregion] = STATE(615), [sym_preproc_line] = STATE(615), @@ -145860,37 +145895,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(615), [sym_preproc_define] = STATE(615), [sym_preproc_undef] = STATE(615), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -145898,10 +145933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145943,84 +145978,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [616] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4934), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5596), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(616), [sym_preproc_endregion] = STATE(616), [sym_preproc_line] = STATE(616), @@ -146030,37 +146065,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(616), [sym_preproc_define] = STATE(616), [sym_preproc_undef] = STATE(616), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2819), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -146068,11 +146102,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146114,85 +146149,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [617] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2929), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5394), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3913), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7398), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5612), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(617), [sym_preproc_endregion] = STATE(617), [sym_preproc_line] = STATE(617), @@ -146202,48 +146238,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(617), [sym_preproc_define] = STATE(617), [sym_preproc_undef] = STATE(617), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146285,85 +146320,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [618] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5393), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5465), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(618), [sym_preproc_endregion] = STATE(618), [sym_preproc_line] = STATE(618), @@ -146373,37 +146408,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(618), [sym_preproc_define] = STATE(618), [sym_preproc_undef] = STATE(618), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -146411,10 +146446,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146456,85 +146491,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [619] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7525), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5648), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(619), [sym_preproc_endregion] = STATE(619), [sym_preproc_line] = STATE(619), @@ -146544,18 +146580,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(619), [sym_preproc_define] = STATE(619), [sym_preproc_undef] = STATE(619), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -146563,21 +146598,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -146585,7 +146620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146627,85 +146662,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [620] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3249), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5398), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(4652), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5071), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(620), [sym_preproc_endregion] = STATE(620), [sym_preproc_line] = STATE(620), @@ -146715,37 +146749,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(620), [sym_preproc_define] = STATE(620), [sym_preproc_undef] = STATE(620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2827), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -146753,10 +146788,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146798,85 +146833,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [621] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5410), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(621), [sym_preproc_endregion] = STATE(621), [sym_preproc_line] = STATE(621), @@ -146886,37 +146921,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(621), [sym_preproc_define] = STATE(621), [sym_preproc_undef] = STATE(621), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -146924,10 +146959,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146969,85 +147004,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [622] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5513), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2933), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5485), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3841), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(622), [sym_preproc_endregion] = STATE(622), [sym_preproc_line] = STATE(622), @@ -147057,37 +147092,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(622), [sym_preproc_define] = STATE(622), [sym_preproc_undef] = STATE(622), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2807), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -147095,10 +147130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147140,85 +147175,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [623] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5399), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5559), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(623), [sym_preproc_endregion] = STATE(623), [sym_preproc_line] = STATE(623), @@ -147228,37 +147263,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(623), [sym_preproc_define] = STATE(623), [sym_preproc_undef] = STATE(623), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -147266,10 +147301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147311,85 +147346,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [624] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5408), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3249), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5486), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(4654), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(624), [sym_preproc_endregion] = STATE(624), [sym_preproc_line] = STATE(624), @@ -147399,37 +147434,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(624), [sym_preproc_define] = STATE(624), [sym_preproc_undef] = STATE(624), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2813), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -147437,10 +147472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147482,85 +147517,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [625] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5414), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5578), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(625), [sym_preproc_endregion] = STATE(625), [sym_preproc_line] = STATE(625), @@ -147570,37 +147605,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(625), [sym_preproc_define] = STATE(625), [sym_preproc_undef] = STATE(625), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -147608,10 +147643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147653,85 +147688,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [626] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5596), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5382), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(626), [sym_preproc_endregion] = STATE(626), [sym_preproc_line] = STATE(626), @@ -147741,37 +147776,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(626), [sym_preproc_define] = STATE(626), [sym_preproc_undef] = STATE(626), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -147779,10 +147814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147824,86 +147859,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [627] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7518), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5405), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5398), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(627), [sym_preproc_endregion] = STATE(627), [sym_preproc_line] = STATE(627), @@ -147913,47 +147947,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(627), [sym_preproc_define] = STATE(627), [sym_preproc_undef] = STATE(627), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2817), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147995,85 +148030,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [628] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5056), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7357), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5623), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(628), [sym_preproc_endregion] = STATE(628), [sym_preproc_line] = STATE(628), @@ -148083,40 +148119,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(628), [sym_preproc_define] = STATE(628), [sym_preproc_undef] = STATE(628), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -148124,7 +148159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148166,86 +148201,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [629] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7397), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5617), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_using_variable_declaration] = STATE(7645), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_expression] = STATE(5479), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(629), [sym_preproc_endregion] = STATE(629), [sym_preproc_line] = STATE(629), @@ -148255,17 +148290,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(629), [sym_preproc_define] = STATE(629), [sym_preproc_undef] = STATE(629), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -148273,21 +148308,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -148295,7 +148330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148337,85 +148372,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [630] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5475), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5392), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(630), [sym_preproc_endregion] = STATE(630), [sym_preproc_line] = STATE(630), @@ -148425,37 +148460,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(630), [sym_preproc_define] = STATE(630), [sym_preproc_undef] = STATE(630), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -148463,10 +148498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148508,85 +148543,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [631] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5432), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5484), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(631), [sym_preproc_endregion] = STATE(631), [sym_preproc_line] = STATE(631), @@ -148596,37 +148631,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(631), [sym_preproc_define] = STATE(631), [sym_preproc_undef] = STATE(631), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2829), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -148634,10 +148669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148679,85 +148714,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [632] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5400), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(632), [sym_preproc_endregion] = STATE(632), [sym_preproc_line] = STATE(632), @@ -148767,37 +148802,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(632), [sym_preproc_define] = STATE(632), [sym_preproc_undef] = STATE(632), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -148805,10 +148840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148850,86 +148885,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [633] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7529), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5648), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5393), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(633), [sym_preproc_endregion] = STATE(633), [sym_preproc_line] = STATE(633), @@ -148939,47 +148973,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(633), [sym_preproc_define] = STATE(633), [sym_preproc_undef] = STATE(633), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149021,85 +149056,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [634] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5281), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5387), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(634), [sym_preproc_endregion] = STATE(634), [sym_preproc_line] = STATE(634), @@ -149109,48 +149144,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(634), [sym_preproc_define] = STATE(634), [sym_preproc_undef] = STATE(634), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149192,84 +149227,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [635] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5401), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(635), [sym_preproc_endregion] = STATE(635), [sym_preproc_line] = STATE(635), @@ -149279,49 +149315,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(635), [sym_preproc_define] = STATE(635), [sym_preproc_undef] = STATE(635), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2835), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2839), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149363,85 +149398,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [636] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3249), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5555), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(4652), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(636), [sym_preproc_endregion] = STATE(636), [sym_preproc_line] = STATE(636), @@ -149451,37 +149486,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(636), [sym_preproc_define] = STATE(636), [sym_preproc_undef] = STATE(636), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2827), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -149489,10 +149524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149534,85 +149569,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [637] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5260), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(637), [sym_preproc_endregion] = STATE(637), [sym_preproc_line] = STATE(637), @@ -149622,18 +149656,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(637), [sym_preproc_define] = STATE(637), [sym_preproc_undef] = STATE(637), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -149641,17 +149676,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -149663,7 +149698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149705,85 +149740,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [638] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2929), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5494), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3913), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4891), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(638), [sym_preproc_endregion] = STATE(638), [sym_preproc_line] = STATE(638), @@ -149793,37 +149827,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(638), [sym_preproc_define] = STATE(638), [sym_preproc_undef] = STATE(638), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2821), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -149831,10 +149866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149876,85 +149911,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [639] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5417), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5700), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(639), [sym_preproc_endregion] = STATE(639), [sym_preproc_line] = STATE(639), @@ -149964,37 +149999,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(639), [sym_preproc_define] = STATE(639), [sym_preproc_undef] = STATE(639), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -150002,10 +150037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150047,85 +150082,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [640] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3249), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5396), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(4652), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(640), [sym_preproc_endregion] = STATE(640), [sym_preproc_line] = STATE(640), @@ -150135,37 +150170,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(640), [sym_preproc_define] = STATE(640), [sym_preproc_undef] = STATE(640), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2827), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -150173,10 +150208,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150218,85 +150253,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [641] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5559), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5402), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(641), [sym_preproc_endregion] = STATE(641), [sym_preproc_line] = STATE(641), @@ -150306,37 +150341,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(641), [sym_preproc_define] = STATE(641), [sym_preproc_undef] = STATE(641), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -150344,10 +150379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150389,85 +150424,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [642] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5673), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4969), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(642), [sym_preproc_endregion] = STATE(642), [sym_preproc_line] = STATE(642), @@ -150477,37 +150511,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(642), [sym_preproc_define] = STATE(642), [sym_preproc_undef] = STATE(642), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -150515,10 +150550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150560,85 +150595,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [643] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3168), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5401), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5038), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(643), [sym_preproc_endregion] = STATE(643), [sym_preproc_line] = STATE(643), @@ -150648,48 +150683,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(643), [sym_preproc_define] = STATE(643), [sym_preproc_undef] = STATE(643), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150731,85 +150766,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [644] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2929), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5397), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3913), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(644), [sym_preproc_endregion] = STATE(644), [sym_preproc_line] = STATE(644), @@ -150819,37 +150854,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(644), [sym_preproc_define] = STATE(644), [sym_preproc_undef] = STATE(644), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -150857,10 +150892,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150902,85 +150937,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [645] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3249), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5491), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5399), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(4652), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(645), [sym_preproc_endregion] = STATE(645), [sym_preproc_line] = STATE(645), @@ -150990,37 +151025,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(645), [sym_preproc_define] = STATE(645), [sym_preproc_undef] = STATE(645), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2827), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -151028,10 +151063,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151073,85 +151108,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [646] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5522), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(646), [sym_preproc_endregion] = STATE(646), [sym_preproc_line] = STATE(646), @@ -151161,37 +151196,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(646), [sym_preproc_define] = STATE(646), [sym_preproc_undef] = STATE(646), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -151199,10 +151234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151244,85 +151279,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [647] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5418), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2933), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5627), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3841), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(647), [sym_preproc_endregion] = STATE(647), [sym_preproc_line] = STATE(647), @@ -151332,35 +151367,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(647), [sym_preproc_define] = STATE(647), [sym_preproc_undef] = STATE(647), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_DOT] = ACTIONS(2807), [anon_sym_scoped] = ACTIONS(85), @@ -151370,10 +151405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151415,85 +151450,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [648] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_variable_declaration] = STATE(7517), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5882), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4995), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5752), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2262), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5084), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(7105), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(648), [sym_preproc_endregion] = STATE(648), [sym_preproc_line] = STATE(648), @@ -151503,48 +151538,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(648), [sym_preproc_define] = STATE(648), [sym_preproc_undef] = STATE(648), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2845), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151586,85 +151621,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [649] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2767), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5635), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(649), [sym_preproc_endregion] = STATE(649), [sym_preproc_line] = STATE(649), @@ -151674,37 +151709,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(649), [sym_preproc_define] = STATE(649), [sym_preproc_undef] = STATE(649), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2815), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -151712,10 +151747,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151757,85 +151792,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [650] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5650), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5551), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(650), [sym_preproc_endregion] = STATE(650), [sym_preproc_line] = STATE(650), @@ -151845,37 +151880,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(650), [sym_preproc_define] = STATE(650), [sym_preproc_undef] = STATE(650), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -151883,10 +151918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151928,84 +151963,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [651] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5502), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(651), [sym_preproc_endregion] = STATE(651), [sym_preproc_line] = STATE(651), @@ -152015,37 +152050,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(651), [sym_preproc_define] = STATE(651), [sym_preproc_undef] = STATE(651), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2843), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -152053,11 +152087,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2847), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152099,86 +152134,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [652] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7615), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5545), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5645), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3426), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(652), [sym_preproc_endregion] = STATE(652), [sym_preproc_line] = STATE(652), @@ -152188,47 +152222,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(652), [sym_preproc_define] = STATE(652), [sym_preproc_undef] = STATE(652), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152270,86 +152305,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [653] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5389), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(653), [sym_preproc_endregion] = STATE(653), [sym_preproc_line] = STATE(653), @@ -152359,17 +152393,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(653), [sym_preproc_define] = STATE(653), [sym_preproc_undef] = STATE(653), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -152377,21 +152412,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -152399,7 +152434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152441,86 +152476,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [654] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_using_variable_declaration] = STATE(7373), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5885), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_expression] = STATE(5507), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(654), [sym_preproc_endregion] = STATE(654), [sym_preproc_line] = STATE(654), @@ -152530,17 +152564,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(654), [sym_preproc_define] = STATE(654), [sym_preproc_undef] = STATE(654), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -152548,21 +152583,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -152570,7 +152605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152612,85 +152647,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [655] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5412), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5415), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(655), [sym_preproc_endregion] = STATE(655), [sym_preproc_line] = STATE(655), @@ -152700,37 +152735,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(655), [sym_preproc_define] = STATE(655), [sym_preproc_undef] = STATE(655), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -152738,10 +152773,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152783,85 +152818,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [656] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(656), [sym_preproc_endregion] = STATE(656), [sym_preproc_line] = STATE(656), @@ -152871,37 +152906,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(656), [sym_preproc_define] = STATE(656), [sym_preproc_undef] = STATE(656), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -152909,10 +152944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152954,85 +152989,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [657] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5493), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3249), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5442), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(4654), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(657), [sym_preproc_endregion] = STATE(657), [sym_preproc_line] = STATE(657), @@ -153042,37 +153077,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(657), [sym_preproc_define] = STATE(657), [sym_preproc_undef] = STATE(657), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2851), + [anon_sym_DOT] = ACTIONS(2813), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -153080,10 +153115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153125,85 +153160,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [658] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5420), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5555), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(658), [sym_preproc_endregion] = STATE(658), [sym_preproc_line] = STATE(658), @@ -153213,37 +153248,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(658), [sym_preproc_define] = STATE(658), [sym_preproc_undef] = STATE(658), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2793), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -153251,10 +153286,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153296,84 +153331,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [659] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4945), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2933), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5476), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3841), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(659), [sym_preproc_endregion] = STATE(659), [sym_preproc_line] = STATE(659), @@ -153383,38 +153419,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(659), [sym_preproc_define] = STATE(659), [sym_preproc_undef] = STATE(659), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2807), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -153422,10 +153457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153467,84 +153502,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [660] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5595), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(660), [sym_preproc_endregion] = STATE(660), [sym_preproc_line] = STATE(660), @@ -153554,36 +153590,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(660), [sym_preproc_define] = STATE(660), [sym_preproc_undef] = STATE(660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2855), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -153591,12 +153627,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153638,85 +153673,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [661] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3249), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5481), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(4654), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(661), [sym_preproc_endregion] = STATE(661), [sym_preproc_line] = STATE(661), @@ -153726,37 +153761,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(661), [sym_preproc_define] = STATE(661), [sym_preproc_undef] = STATE(661), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2813), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -153764,10 +153799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153809,85 +153844,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [662] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5413), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_variable_declaration] = STATE(7555), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5899), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4993), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(662), [sym_preproc_endregion] = STATE(662), [sym_preproc_line] = STATE(662), @@ -153897,208 +153932,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(662), [sym_preproc_define] = STATE(662), [sym_preproc_undef] = STATE(662), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [663] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5546), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(663), - [sym_preproc_endregion] = STATE(663), - [sym_preproc_line] = STATE(663), - [sym_preproc_pragma] = STATE(663), - [sym_preproc_nullable] = STATE(663), - [sym_preproc_error] = STATE(663), - [sym_preproc_warning] = STATE(663), - [sym_preproc_define] = STATE(663), - [sym_preproc_undef] = STATE(663), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2857), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -154106,10 +153970,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154150,86 +154014,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [664] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), + [663] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5698), - [sym_non_lvalue_expression] = STATE(3136), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(663), + [sym_preproc_endregion] = STATE(663), + [sym_preproc_line] = STATE(663), + [sym_preproc_pragma] = STATE(663), + [sym_preproc_nullable] = STATE(663), + [sym_preproc_error] = STATE(663), + [sym_preproc_warning] = STATE(663), + [sym_preproc_define] = STATE(663), + [sym_preproc_undef] = STATE(663), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [664] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(664), [sym_preproc_endregion] = STATE(664), [sym_preproc_line] = STATE(664), @@ -154239,37 +154274,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(664), [sym_preproc_define] = STATE(664), [sym_preproc_undef] = STATE(664), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2809), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -154277,10 +154312,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154322,85 +154357,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [665] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5565), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5386), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(665), [sym_preproc_endregion] = STATE(665), [sym_preproc_line] = STATE(665), @@ -154410,37 +154445,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(665), [sym_preproc_define] = STATE(665), [sym_preproc_undef] = STATE(665), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -154448,10 +154483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154493,85 +154528,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [666] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5421), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5487), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(666), [sym_preproc_endregion] = STATE(666), [sym_preproc_line] = STATE(666), @@ -154581,37 +154616,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(666), [sym_preproc_define] = STATE(666), [sym_preproc_undef] = STATE(666), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -154619,10 +154654,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154664,85 +154699,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [667] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5573), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5390), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(667), [sym_preproc_endregion] = STATE(667), [sym_preproc_line] = STATE(667), @@ -154752,48 +154786,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(667), [sym_preproc_define] = STATE(667), [sym_preproc_undef] = STATE(667), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2861), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154835,85 +154870,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [668] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2929), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5638), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5510), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3913), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(668), [sym_preproc_endregion] = STATE(668), [sym_preproc_line] = STATE(668), @@ -154923,37 +154958,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(668), [sym_preproc_define] = STATE(668), [sym_preproc_undef] = STATE(668), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -154961,10 +154996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155006,84 +155041,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [669] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5273), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5547), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(669), [sym_preproc_endregion] = STATE(669), [sym_preproc_line] = STATE(669), @@ -155093,38 +155129,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(669), [sym_preproc_define] = STATE(669), [sym_preproc_undef] = STATE(669), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -155132,10 +155167,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155177,85 +155212,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [670] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2495), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5579), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5564), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3123), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(670), [sym_preproc_endregion] = STATE(670), [sym_preproc_line] = STATE(670), @@ -155265,37 +155300,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(670), [sym_preproc_define] = STATE(670), [sym_preproc_undef] = STATE(670), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -155303,10 +155338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155348,85 +155383,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [671] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5089), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6951), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5038), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(671), [sym_preproc_endregion] = STATE(671), [sym_preproc_line] = STATE(671), @@ -155436,36 +155471,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(671), [sym_preproc_define] = STATE(671), [sym_preproc_undef] = STATE(671), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -155477,7 +155512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155519,85 +155554,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [672] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5056), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5571), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(672), [sym_preproc_endregion] = STATE(672), [sym_preproc_line] = STATE(672), @@ -155607,48 +155642,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(672), [sym_preproc_define] = STATE(672), [sym_preproc_undef] = STATE(672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155690,85 +155725,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [673] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5415), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5084), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(7105), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(673), [sym_preproc_endregion] = STATE(673), [sym_preproc_line] = STATE(673), @@ -155778,37 +155813,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(673), [sym_preproc_define] = STATE(673), [sym_preproc_undef] = STATE(673), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -155816,10 +155851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155861,85 +155896,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [674] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2856), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5416), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2474), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5575), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3452), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(674), [sym_preproc_endregion] = STATE(674), [sym_preproc_line] = STATE(674), @@ -155949,37 +155984,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(674), [sym_preproc_define] = STATE(674), [sym_preproc_undef] = STATE(674), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -155987,10 +156022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156032,85 +156067,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [675] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5422), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5727), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5277), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(675), [sym_preproc_endregion] = STATE(675), [sym_preproc_line] = STATE(675), @@ -156120,211 +156155,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(675), [sym_preproc_define] = STATE(675), [sym_preproc_undef] = STATE(675), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [676] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5734), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5751), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5089), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6951), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(676), - [sym_preproc_endregion] = STATE(676), - [sym_preproc_line] = STATE(676), - [sym_preproc_pragma] = STATE(676), - [sym_preproc_nullable] = STATE(676), - [sym_preproc_error] = STATE(676), - [sym_preproc_warning] = STATE(676), - [sym_preproc_define] = STATE(676), - [sym_preproc_undef] = STATE(676), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -156332,7 +156196,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [676] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4934), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(676), + [sym_preproc_endregion] = STATE(676), + [sym_preproc_line] = STATE(676), + [sym_preproc_pragma] = STATE(676), + [sym_preproc_nullable] = STATE(676), + [sym_preproc_error] = STATE(676), + [sym_preproc_warning] = STATE(676), + [sym_preproc_define] = STATE(676), + [sym_preproc_undef] = STATE(676), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156374,85 +156409,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [677] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5649), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3164), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5391), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(677), [sym_preproc_endregion] = STATE(677), [sym_preproc_line] = STATE(677), @@ -156462,37 +156497,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(677), [sym_preproc_define] = STATE(677), [sym_preproc_undef] = STATE(677), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -156500,10 +156535,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156545,85 +156580,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [678] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2658), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5651), - [sym_non_lvalue_expression] = STATE(3136), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5650), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3391), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(678), [sym_preproc_endregion] = STATE(678), [sym_preproc_line] = STATE(678), @@ -156633,37 +156668,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(678), [sym_preproc_define] = STATE(678), [sym_preproc_undef] = STATE(678), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -156671,10 +156706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156716,84 +156751,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [679] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2653), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3357), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(679), [sym_preproc_endregion] = STATE(679), [sym_preproc_line] = STATE(679), @@ -156803,38 +156839,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(679), [sym_preproc_define] = STATE(679), [sym_preproc_undef] = STATE(679), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2817), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -156842,10 +156877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156887,85 +156922,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [680] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2447), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2443), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), [sym_expression] = STATE(5395), - [sym_non_lvalue_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_member_binding_expression] = STATE(3031), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_member_binding_expression] = STATE(3002), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(680), [sym_preproc_endregion] = STATE(680), [sym_preproc_line] = STATE(680), @@ -156975,37 +157010,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(680), [sym_preproc_define] = STATE(680), [sym_preproc_undef] = STATE(680), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -157013,10 +157048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157058,85 +157093,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [681] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4449), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5159), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(681), [sym_preproc_endregion] = STATE(681), [sym_preproc_line] = STATE(681), @@ -157146,47 +157181,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(681), [sym_preproc_define] = STATE(681), [sym_preproc_undef] = STATE(681), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157199,19 +157234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157222,91 +157257,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [682] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5200), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5321), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(682), [sym_preproc_endregion] = STATE(682), [sym_preproc_line] = STATE(682), @@ -157316,35 +157350,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(682), [sym_preproc_define] = STATE(682), [sym_preproc_undef] = STATE(682), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -157353,10 +157388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157398,84 +157433,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [683] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5317), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3891), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3979), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(683), [sym_preproc_endregion] = STATE(683), [sym_preproc_line] = STATE(683), @@ -157485,48 +157521,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(683), [sym_preproc_define] = STATE(683), [sym_preproc_undef] = STATE(683), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157539,19 +157574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157562,90 +157597,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [684] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4732), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4369), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(684), [sym_preproc_endregion] = STATE(684), [sym_preproc_line] = STATE(684), @@ -157655,48 +157690,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(684), [sym_preproc_define] = STATE(684), [sym_preproc_undef] = STATE(684), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157709,19 +157744,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157732,91 +157767,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [685] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5106), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(685), [sym_preproc_endregion] = STATE(685), [sym_preproc_line] = STATE(685), @@ -157826,47 +157860,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(685), [sym_preproc_define] = STATE(685), [sym_preproc_undef] = STATE(685), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157879,19 +157914,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157908,85 +157943,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [686] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), [sym_expression] = STATE(4383), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(686), [sym_preproc_endregion] = STATE(686), [sym_preproc_line] = STATE(686), @@ -157996,8 +158031,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(686), [sym_preproc_define] = STATE(686), [sym_preproc_undef] = STATE(686), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -158005,7 +158040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2869), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), @@ -158014,17 +158049,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -158078,84 +158113,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [687] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5000), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4223), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(687), [sym_preproc_endregion] = STATE(687), [sym_preproc_line] = STATE(687), @@ -158165,206 +158200,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(687), [sym_preproc_define] = STATE(687), [sym_preproc_undef] = STATE(687), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [688] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4258), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(688), - [sym_preproc_endregion] = STATE(688), - [sym_preproc_line] = STATE(688), - [sym_preproc_pragma] = STATE(688), - [sym_preproc_nullable] = STATE(688), - [sym_preproc_error] = STATE(688), - [sym_preproc_warning] = STATE(688), - [sym_preproc_define] = STATE(688), - [sym_preproc_undef] = STATE(688), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -158373,10 +158238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158417,136 +158282,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [689] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5402), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(689), - [sym_preproc_endregion] = STATE(689), - [sym_preproc_line] = STATE(689), - [sym_preproc_pragma] = STATE(689), - [sym_preproc_nullable] = STATE(689), - [sym_preproc_error] = STATE(689), - [sym_preproc_warning] = STATE(689), - [sym_preproc_define] = STATE(689), - [sym_preproc_undef] = STATE(689), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [688] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(688), + [sym_preproc_endregion] = STATE(688), + [sym_preproc_line] = STATE(688), + [sym_preproc_pragma] = STATE(688), + [sym_preproc_nullable] = STATE(688), + [sym_preproc_error] = STATE(688), + [sym_preproc_warning] = STATE(688), + [sym_preproc_define] = STATE(688), + [sym_preproc_undef] = STATE(688), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2875), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158587,124 +158452,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [690] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4799), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(690), - [sym_preproc_endregion] = STATE(690), - [sym_preproc_line] = STATE(690), - [sym_preproc_pragma] = STATE(690), - [sym_preproc_nullable] = STATE(690), - [sym_preproc_error] = STATE(690), - [sym_preproc_warning] = STATE(690), - [sym_preproc_define] = STATE(690), - [sym_preproc_undef] = STATE(690), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [689] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4431), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(689), + [sym_preproc_endregion] = STATE(689), + [sym_preproc_line] = STATE(689), + [sym_preproc_pragma] = STATE(689), + [sym_preproc_nullable] = STATE(689), + [sym_preproc_error] = STATE(689), + [sym_preproc_warning] = STATE(689), + [sym_preproc_define] = STATE(689), + [sym_preproc_undef] = STATE(689), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2875), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -158713,10 +158578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158757,124 +158622,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [691] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5111), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), + [690] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4919), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(691), - [sym_preproc_endregion] = STATE(691), - [sym_preproc_line] = STATE(691), - [sym_preproc_pragma] = STATE(691), - [sym_preproc_nullable] = STATE(691), - [sym_preproc_error] = STATE(691), - [sym_preproc_warning] = STATE(691), - [sym_preproc_define] = STATE(691), - [sym_preproc_undef] = STATE(691), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(690), + [sym_preproc_endregion] = STATE(690), + [sym_preproc_line] = STATE(690), + [sym_preproc_pragma] = STATE(690), + [sym_preproc_nullable] = STATE(690), + [sym_preproc_error] = STATE(690), + [sym_preproc_warning] = STATE(690), + [sym_preproc_define] = STATE(690), + [sym_preproc_undef] = STATE(690), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2869), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -158883,10 +158748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158927,136 +158792,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [692] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4705), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(692), - [sym_preproc_endregion] = STATE(692), - [sym_preproc_line] = STATE(692), - [sym_preproc_pragma] = STATE(692), - [sym_preproc_nullable] = STATE(692), - [sym_preproc_error] = STATE(692), - [sym_preproc_warning] = STATE(692), - [sym_preproc_define] = STATE(692), - [sym_preproc_undef] = STATE(692), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [691] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5501), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(691), + [sym_preproc_endregion] = STATE(691), + [sym_preproc_line] = STATE(691), + [sym_preproc_pragma] = STATE(691), + [sym_preproc_nullable] = STATE(691), + [sym_preproc_error] = STATE(691), + [sym_preproc_warning] = STATE(691), + [sym_preproc_define] = STATE(691), + [sym_preproc_undef] = STATE(691), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2051), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159069,19 +158934,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159092,141 +158957,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [693] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5001), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(693), - [sym_preproc_endregion] = STATE(693), - [sym_preproc_line] = STATE(693), - [sym_preproc_pragma] = STATE(693), - [sym_preproc_nullable] = STATE(693), - [sym_preproc_error] = STATE(693), - [sym_preproc_warning] = STATE(693), - [sym_preproc_define] = STATE(693), - [sym_preproc_undef] = STATE(693), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [692] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4921), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(692), + [sym_preproc_endregion] = STATE(692), + [sym_preproc_line] = STATE(692), + [sym_preproc_pragma] = STATE(692), + [sym_preproc_nullable] = STATE(692), + [sym_preproc_error] = STATE(692), + [sym_preproc_warning] = STATE(692), + [sym_preproc_define] = STATE(692), + [sym_preproc_undef] = STATE(692), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2879), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159239,19 +159104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159267,85 +159132,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [693] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5113), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(693), + [sym_preproc_endregion] = STATE(693), + [sym_preproc_line] = STATE(693), + [sym_preproc_pragma] = STATE(693), + [sym_preproc_nullable] = STATE(693), + [sym_preproc_error] = STATE(693), + [sym_preproc_warning] = STATE(693), + [sym_preproc_define] = STATE(693), + [sym_preproc_undef] = STATE(693), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [694] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5727), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4266), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(694), [sym_preproc_endregion] = STATE(694), [sym_preproc_line] = STATE(694), @@ -159355,48 +159390,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(694), [sym_preproc_define] = STATE(694), [sym_preproc_undef] = STATE(694), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159409,19 +159444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159438,84 +159473,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [695] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5571), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5024), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(695), [sym_preproc_endregion] = STATE(695), [sym_preproc_line] = STATE(695), @@ -159525,36 +159561,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(695), [sym_preproc_define] = STATE(695), [sym_preproc_undef] = STATE(695), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -159563,10 +159598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159608,85 +159643,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [696] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4393), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5008), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(696), [sym_preproc_endregion] = STATE(696), [sym_preproc_line] = STATE(696), @@ -159696,47 +159730,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(696), [sym_preproc_define] = STATE(696), [sym_preproc_undef] = STATE(696), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159749,19 +159784,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159772,90 +159807,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [697] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4938), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym__anonymous_object_member_declarator] = STATE(7235), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2307), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(697), [sym_preproc_endregion] = STATE(697), [sym_preproc_line] = STATE(697), @@ -159865,36 +159901,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(697), [sym_preproc_define] = STATE(697), [sym_preproc_undef] = STATE(697), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2881), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -159903,10 +159938,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159948,85 +159983,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [698] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym__anonymous_object_member_declarator] = STATE(7118), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2313), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4556), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(698), [sym_preproc_endregion] = STATE(698), [sym_preproc_line] = STATE(698), @@ -160036,47 +160070,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(698), [sym_preproc_define] = STATE(698), [sym_preproc_undef] = STATE(698), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160089,19 +160124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160118,84 +160153,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [699] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5182), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(699), [sym_preproc_endregion] = STATE(699), [sym_preproc_line] = STATE(699), @@ -160205,48 +160240,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(699), [sym_preproc_define] = STATE(699), [sym_preproc_undef] = STATE(699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160259,19 +160294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160282,90 +160317,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [700] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5138), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4433), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(700), [sym_preproc_endregion] = STATE(700), [sym_preproc_line] = STATE(700), @@ -160375,48 +160410,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(700), [sym_preproc_define] = STATE(700), [sym_preproc_undef] = STATE(700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160429,19 +160464,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160452,90 +160487,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [701] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2469), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2199), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2277), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(701), [sym_preproc_endregion] = STATE(701), [sym_preproc_line] = STATE(701), @@ -160545,48 +160580,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(701), [sym_preproc_define] = STATE(701), [sym_preproc_undef] = STATE(701), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_ref] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2887), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2889), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160628,84 +160663,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [702] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5139), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4758), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(702), [sym_preproc_endregion] = STATE(702), [sym_preproc_line] = STATE(702), @@ -160715,48 +160750,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(702), [sym_preproc_define] = STATE(702), [sym_preproc_undef] = STATE(702), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160769,19 +160804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160792,90 +160827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [703] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2469), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2199), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2193), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4320), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(703), [sym_preproc_endregion] = STATE(703), [sym_preproc_line] = STATE(703), @@ -160885,48 +160920,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(703), [sym_preproc_define] = STATE(703), [sym_preproc_undef] = STATE(703), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_ref] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2893), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160939,19 +160974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160968,85 +161003,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [704] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4285), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(704), [sym_preproc_endregion] = STATE(704), [sym_preproc_line] = STATE(704), @@ -161056,47 +161090,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(704), [sym_preproc_define] = STATE(704), [sym_preproc_undef] = STATE(704), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161109,19 +161144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161132,91 +161167,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [705] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5591), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(705), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(705), [sym_preproc_endregion] = STATE(705), [sym_preproc_line] = STATE(705), [sym_preproc_pragma] = STATE(705), @@ -161225,36 +161260,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(705), [sym_preproc_define] = STATE(705), [sym_preproc_undef] = STATE(705), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2897), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -161263,10 +161298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161308,84 +161343,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [706] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5731), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5624), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(706), [sym_preproc_endregion] = STATE(706), [sym_preproc_line] = STATE(706), @@ -161395,47 +161430,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(706), [sym_preproc_define] = STATE(706), [sym_preproc_undef] = STATE(706), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2865), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -161462,6 +161496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161478,84 +161513,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [707] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4312), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(707), [sym_preproc_endregion] = STATE(707), [sym_preproc_line] = STATE(707), @@ -161565,48 +161600,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(707), [sym_preproc_define] = STATE(707), [sym_preproc_undef] = STATE(707), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161619,19 +161654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161648,84 +161683,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [708] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4410), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4531), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(708), [sym_preproc_endregion] = STATE(708), [sym_preproc_line] = STATE(708), @@ -161735,36 +161770,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(708), [sym_preproc_define] = STATE(708), [sym_preproc_undef] = STATE(708), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -161773,10 +161808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161818,84 +161853,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [709] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5504), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4146), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(709), [sym_preproc_endregion] = STATE(709), [sym_preproc_line] = STATE(709), @@ -161905,179 +161941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(709), [sym_preproc_define] = STATE(709), [sym_preproc_undef] = STATE(709), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [710] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4148), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(710), - [sym_preproc_endregion] = STATE(710), - [sym_preproc_line] = STATE(710), - [sym_preproc_pragma] = STATE(710), - [sym_preproc_nullable] = STATE(710), - [sym_preproc_error] = STATE(710), - [sym_preproc_warning] = STATE(710), - [sym_preproc_define] = STATE(710), - [sym_preproc_undef] = STATE(710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -162085,7 +161950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(1247), [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), @@ -162157,86 +162022,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, + [710] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4699), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(710), + [sym_preproc_endregion] = STATE(710), + [sym_preproc_line] = STATE(710), + [sym_preproc_pragma] = STATE(710), + [sym_preproc_nullable] = STATE(710), + [sym_preproc_error] = STATE(710), + [sym_preproc_warning] = STATE(710), + [sym_preproc_define] = STATE(710), + [sym_preproc_undef] = STATE(710), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [711] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5032), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(711), [sym_preproc_endregion] = STATE(711), [sym_preproc_line] = STATE(711), @@ -162246,35 +162280,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(711), [sym_preproc_define] = STATE(711), [sym_preproc_undef] = STATE(711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2889), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -162283,10 +162318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162328,85 +162363,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [712] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4698), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(712), [sym_preproc_endregion] = STATE(712), [sym_preproc_line] = STATE(712), @@ -162416,47 +162451,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(712), [sym_preproc_define] = STATE(712), [sym_preproc_undef] = STATE(712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162469,19 +162504,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162492,91 +162527,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [713] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5159), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5774), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2262), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(713), [sym_preproc_endregion] = STATE(713), [sym_preproc_line] = STATE(713), @@ -162586,47 +162620,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(713), [sym_preproc_define] = STATE(713), [sym_preproc_undef] = STATE(713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2891), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2567), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162639,19 +162674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162668,84 +162703,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [714] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5161), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5452), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(714), [sym_preproc_endregion] = STATE(714), [sym_preproc_line] = STATE(714), @@ -162755,48 +162790,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(714), [sym_preproc_define] = STATE(714), [sym_preproc_undef] = STATE(714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2893), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162809,19 +162844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162838,84 +162873,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [715] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4559), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3823), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(715), [sym_preproc_endregion] = STATE(715), [sym_preproc_line] = STATE(715), @@ -162925,48 +162961,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(715), [sym_preproc_define] = STATE(715), [sym_preproc_undef] = STATE(715), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2901), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162979,19 +163014,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163002,91 +163037,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [716] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5008), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(716), [sym_preproc_endregion] = STATE(716), [sym_preproc_line] = STATE(716), @@ -163096,47 +163130,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(716), [sym_preproc_define] = STATE(716), [sym_preproc_undef] = STATE(716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163149,19 +163184,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163178,85 +163213,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [717] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4287), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4809), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(717), [sym_preproc_endregion] = STATE(717), [sym_preproc_line] = STATE(717), @@ -163266,47 +163300,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(717), [sym_preproc_define] = STATE(717), [sym_preproc_undef] = STATE(717), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163320,17 +163355,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -163342,90 +163377,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [718] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5761), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2316), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5577), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2256), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(718), [sym_preproc_endregion] = STATE(718), [sym_preproc_line] = STATE(718), @@ -163435,48 +163470,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(718), [sym_preproc_define] = STATE(718), [sym_preproc_undef] = STATE(718), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2891), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2567), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163518,84 +163553,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [719] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4212), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5198), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(719), [sym_preproc_endregion] = STATE(719), [sym_preproc_line] = STATE(719), @@ -163605,36 +163641,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(719), [sym_preproc_define] = STATE(719), [sym_preproc_undef] = STATE(719), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -163643,10 +163678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163688,84 +163723,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [720] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5593), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(720), [sym_preproc_endregion] = STATE(720), [sym_preproc_line] = STATE(720), @@ -163775,36 +163810,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(720), [sym_preproc_define] = STATE(720), [sym_preproc_undef] = STATE(720), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2903), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -163813,10 +163848,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163858,85 +163893,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [721] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4755), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4163), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(721), [sym_preproc_endregion] = STATE(721), [sym_preproc_line] = STATE(721), @@ -163946,47 +163981,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(721), [sym_preproc_define] = STATE(721), [sym_preproc_undef] = STATE(721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163999,19 +164034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164022,91 +164057,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [722] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4549), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5411), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(722), [sym_preproc_endregion] = STATE(722), [sym_preproc_line] = STATE(722), @@ -164116,47 +164150,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(722), [sym_preproc_define] = STATE(722), [sym_preproc_undef] = STATE(722), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2065), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164169,19 +164204,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164198,84 +164233,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [723] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3136), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3120), [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(723), [sym_preproc_endregion] = STATE(723), [sym_preproc_line] = STATE(723), @@ -164285,36 +164320,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(723), [sym_preproc_define] = STATE(723), [sym_preproc_undef] = STATE(723), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -164323,10 +164358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164368,85 +164403,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [724] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5387), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3891), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3693), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(724), [sym_preproc_endregion] = STATE(724), [sym_preproc_line] = STATE(724), @@ -164456,47 +164491,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(724), [sym_preproc_define] = STATE(724), [sym_preproc_undef] = STATE(724), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164509,19 +164544,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164532,90 +164567,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [725] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5463), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(725), [sym_preproc_endregion] = STATE(725), [sym_preproc_line] = STATE(725), @@ -164625,36 +164660,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(725), [sym_preproc_define] = STATE(725), [sym_preproc_undef] = STATE(725), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2899), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -164663,10 +164698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164708,84 +164743,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [726] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5742), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5545), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(726), [sym_preproc_endregion] = STATE(726), [sym_preproc_line] = STATE(726), @@ -164795,48 +164830,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(726), [sym_preproc_define] = STATE(726), [sym_preproc_undef] = STATE(726), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164878,84 +164913,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [727] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5590), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(727), [sym_preproc_endregion] = STATE(727), [sym_preproc_line] = STATE(727), @@ -164965,36 +165000,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(727), [sym_preproc_define] = STATE(727), [sym_preproc_undef] = STATE(727), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2901), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -165003,10 +165038,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165048,85 +165083,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [728] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4285), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5183), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(728), [sym_preproc_endregion] = STATE(728), [sym_preproc_line] = STATE(728), @@ -165136,47 +165170,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(728), [sym_preproc_define] = STATE(728), [sym_preproc_undef] = STATE(728), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165189,19 +165224,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165212,91 +165247,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [729] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4464), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5619), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(729), [sym_preproc_endregion] = STATE(729), [sym_preproc_line] = STATE(729), @@ -165306,47 +165340,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(729), [sym_preproc_define] = STATE(729), [sym_preproc_undef] = STATE(729), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1991), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165359,19 +165394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165382,91 +165417,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [730] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4917), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4420), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(730), [sym_preproc_endregion] = STATE(730), [sym_preproc_line] = STATE(730), @@ -165476,47 +165511,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(730), [sym_preproc_define] = STATE(730), [sym_preproc_undef] = STATE(730), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165529,19 +165564,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165552,90 +165587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [731] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4919), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4620), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(731), [sym_preproc_endregion] = STATE(731), [sym_preproc_line] = STATE(731), @@ -165645,48 +165681,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(731), [sym_preproc_define] = STATE(731), [sym_preproc_undef] = STATE(731), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165699,19 +165734,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165728,84 +165763,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [732] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4317), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4731), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(732), [sym_preproc_endregion] = STATE(732), [sym_preproc_line] = STATE(732), @@ -165815,48 +165851,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(732), [sym_preproc_define] = STATE(732), [sym_preproc_undef] = STATE(732), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165869,19 +165904,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165892,90 +165927,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [733] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5428), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4230), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(733), [sym_preproc_endregion] = STATE(733), [sym_preproc_line] = STATE(733), @@ -165985,48 +166021,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(733), [sym_preproc_define] = STATE(733), [sym_preproc_undef] = STATE(733), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2023), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166039,19 +166074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166068,84 +166103,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [734] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4551), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(4659), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4964), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(734), [sym_preproc_endregion] = STATE(734), [sym_preproc_line] = STATE(734), @@ -166155,73 +166191,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(734), [sym_preproc_define] = STATE(734), [sym_preproc_undef] = STATE(734), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166232,90 +166267,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [735] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4229), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4143), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(735), [sym_preproc_endregion] = STATE(735), [sym_preproc_line] = STATE(735), @@ -166325,48 +166360,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(735), [sym_preproc_define] = STATE(735), [sym_preproc_undef] = STATE(735), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166379,19 +166414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166402,90 +166437,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [736] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5774), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2320), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(736), [sym_preproc_endregion] = STATE(736), [sym_preproc_line] = STATE(736), @@ -166495,47 +166530,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(736), [sym_preproc_define] = STATE(736), [sym_preproc_undef] = STATE(736), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -166578,84 +166613,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [737] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5485), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3694), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(737), [sym_preproc_endregion] = STATE(737), [sym_preproc_line] = STATE(737), @@ -166665,48 +166700,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(737), [sym_preproc_define] = STATE(737), [sym_preproc_undef] = STATE(737), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2909), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166719,19 +166754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166742,90 +166777,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [738] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2829), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2284), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2544), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2229), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(738), [sym_preproc_endregion] = STATE(738), [sym_preproc_line] = STATE(738), @@ -166835,60 +166870,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(738), [sym_preproc_define] = STATE(738), [sym_preproc_undef] = STATE(738), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_ref] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(2489), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(2495), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), - [sym_predefined_type] = ACTIONS(91), + [anon_sym_var] = ACTIONS(2909), + [sym_predefined_type] = ACTIONS(2911), [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(1393), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), @@ -166918,85 +166953,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [739] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3823), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4102), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4855), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(739), [sym_preproc_endregion] = STATE(739), [sym_preproc_line] = STATE(739), @@ -167006,47 +167041,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(739), [sym_preproc_define] = STATE(739), [sym_preproc_undef] = STATE(739), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167059,19 +167094,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167082,90 +167117,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [740] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5473), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5278), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(740), [sym_preproc_endregion] = STATE(740), [sym_preproc_line] = STATE(740), @@ -167175,48 +167211,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(740), [sym_preproc_define] = STATE(740), [sym_preproc_undef] = STATE(740), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2881), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167229,19 +167264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167252,90 +167287,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [741] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5726), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2276), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5669), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(741), [sym_preproc_endregion] = STATE(741), [sym_preproc_line] = STATE(741), @@ -167345,48 +167381,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(741), [sym_preproc_define] = STATE(741), [sym_preproc_undef] = STATE(741), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167428,84 +167463,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [742] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5010), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5286), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(742), [sym_preproc_endregion] = STATE(742), [sym_preproc_line] = STATE(742), @@ -167515,48 +167550,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(742), [sym_preproc_define] = STATE(742), [sym_preproc_undef] = STATE(742), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167569,19 +167604,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167592,92 +167627,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [743] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4757), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(743), - [sym_preproc_endregion] = STATE(743), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(743), + [sym_preproc_endregion] = STATE(743), [sym_preproc_line] = STATE(743), [sym_preproc_pragma] = STATE(743), [sym_preproc_nullable] = STATE(743), @@ -167685,48 +167720,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(743), [sym_preproc_define] = STATE(743), [sym_preproc_undef] = STATE(743), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167739,19 +167774,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167762,90 +167797,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [744] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5076), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(744), [sym_preproc_endregion] = STATE(744), [sym_preproc_line] = STATE(744), @@ -167855,48 +167891,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(744), [sym_preproc_define] = STATE(744), [sym_preproc_undef] = STATE(744), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2913), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167909,19 +167944,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167938,84 +167973,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [745] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5734), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(4659), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4486), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(745), [sym_preproc_endregion] = STATE(745), [sym_preproc_line] = STATE(745), @@ -168025,73 +168061,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(745), [sym_preproc_define] = STATE(745), [sym_preproc_undef] = STATE(745), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168102,90 +168137,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [746] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(746), [sym_preproc_endregion] = STATE(746), [sym_preproc_line] = STATE(746), @@ -168195,36 +168230,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(746), [sym_preproc_define] = STATE(746), [sym_preproc_undef] = STATE(746), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -168236,7 +168271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168278,84 +168313,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [747] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5020), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4780), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(747), [sym_preproc_endregion] = STATE(747), [sym_preproc_line] = STATE(747), @@ -168365,48 +168401,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(747), [sym_preproc_define] = STATE(747), [sym_preproc_undef] = STATE(747), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168419,19 +168454,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168442,91 +168477,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [748] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5462), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5080), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(748), [sym_preproc_endregion] = STATE(748), [sym_preproc_line] = STATE(748), @@ -168536,47 +168570,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(748), [sym_preproc_define] = STATE(748), [sym_preproc_undef] = STATE(748), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168589,19 +168624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168618,84 +168653,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [749] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4808), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4782), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(749), [sym_preproc_endregion] = STATE(749), [sym_preproc_line] = STATE(749), @@ -168705,36 +168740,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(749), [sym_preproc_define] = STATE(749), [sym_preproc_undef] = STATE(749), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), + }, + [750] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(750), + [sym_preproc_endregion] = STATE(750), + [sym_preproc_line] = STATE(750), + [sym_preproc_pragma] = STATE(750), + [sym_preproc_nullable] = STATE(750), + [sym_preproc_error] = STATE(750), + [sym_preproc_warning] = STATE(750), + [sym_preproc_define] = STATE(750), + [sym_preproc_undef] = STATE(750), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -168743,10 +168948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168787,255 +168992,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [750] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4698), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(750), - [sym_preproc_endregion] = STATE(750), - [sym_preproc_line] = STATE(750), - [sym_preproc_pragma] = STATE(750), - [sym_preproc_nullable] = STATE(750), - [sym_preproc_error] = STATE(750), - [sym_preproc_warning] = STATE(750), - [sym_preproc_define] = STATE(750), - [sym_preproc_undef] = STATE(750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, [751] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5642), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3843), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(751), [sym_preproc_endregion] = STATE(751), [sym_preproc_line] = STATE(751), @@ -169045,48 +169080,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(751), [sym_preproc_define] = STATE(751), [sym_preproc_undef] = STATE(751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1971), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169099,19 +169134,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169122,90 +169157,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [752] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4025), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym__ordering] = STATE(6385), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(752), [sym_preproc_endregion] = STATE(752), [sym_preproc_line] = STATE(752), @@ -169215,36 +169251,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(752), [sym_preproc_define] = STATE(752), [sym_preproc_undef] = STATE(752), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [753] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5562), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(753), + [sym_preproc_endregion] = STATE(753), + [sym_preproc_line] = STATE(753), + [sym_preproc_pragma] = STATE(753), + [sym_preproc_nullable] = STATE(753), + [sym_preproc_error] = STATE(753), + [sym_preproc_warning] = STATE(753), + [sym_preproc_define] = STATE(753), + [sym_preproc_undef] = STATE(753), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -169253,10 +169458,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169297,96 +169502,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [753] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [754] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4156), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(753), - [sym_preproc_endregion] = STATE(753), - [sym_preproc_line] = STATE(753), - [sym_preproc_pragma] = STATE(753), - [sym_preproc_nullable] = STATE(753), - [sym_preproc_error] = STATE(753), - [sym_preproc_warning] = STATE(753), - [sym_preproc_define] = STATE(753), - [sym_preproc_undef] = STATE(753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4111), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(754), + [sym_preproc_endregion] = STATE(754), + [sym_preproc_line] = STATE(754), + [sym_preproc_pragma] = STATE(754), + [sym_preproc_nullable] = STATE(754), + [sym_preproc_error] = STATE(754), + [sym_preproc_warning] = STATE(754), + [sym_preproc_define] = STATE(754), + [sym_preproc_undef] = STATE(754), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -169399,7 +169604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -169467,255 +169672,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [754] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5127), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(754), - [sym_preproc_endregion] = STATE(754), - [sym_preproc_line] = STATE(754), - [sym_preproc_pragma] = STATE(754), - [sym_preproc_nullable] = STATE(754), - [sym_preproc_error] = STATE(754), - [sym_preproc_warning] = STATE(754), - [sym_preproc_define] = STATE(754), - [sym_preproc_undef] = STATE(754), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, [755] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5629), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5688), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(755), [sym_preproc_endregion] = STATE(755), [sym_preproc_line] = STATE(755), @@ -169725,36 +169761,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(755), [sym_preproc_define] = STATE(755), [sym_preproc_undef] = STATE(755), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2133), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -169763,10 +169798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169808,85 +169843,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [756] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5054), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(6878), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(756), [sym_preproc_endregion] = STATE(756), [sym_preproc_line] = STATE(756), @@ -169896,35 +169931,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(756), [sym_preproc_define] = STATE(756), [sym_preproc_undef] = STATE(756), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -169933,10 +169968,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169978,84 +170013,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [757] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4232), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4589), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(757), [sym_preproc_endregion] = STATE(757), [sym_preproc_line] = STATE(757), @@ -170065,36 +170100,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(757), [sym_preproc_define] = STATE(757), [sym_preproc_undef] = STATE(757), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -170103,10 +170138,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170148,85 +170183,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [758] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4273), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(758), [sym_preproc_endregion] = STATE(758), [sym_preproc_line] = STATE(758), @@ -170236,47 +170270,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(758), [sym_preproc_define] = STATE(758), [sym_preproc_undef] = STATE(758), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170289,19 +170324,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170318,84 +170353,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [759] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5534), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(759), [sym_preproc_endregion] = STATE(759), [sym_preproc_line] = STATE(759), @@ -170405,36 +170441,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(759), [sym_preproc_define] = STATE(759), [sym_preproc_undef] = STATE(759), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -170443,10 +170478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170488,84 +170523,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [760] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4979), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(760), [sym_preproc_endregion] = STATE(760), [sym_preproc_line] = STATE(760), @@ -170575,48 +170611,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(760), [sym_preproc_define] = STATE(760), [sym_preproc_undef] = STATE(760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170629,19 +170664,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170658,84 +170693,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [761] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4025), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym__ordering] = STATE(6391), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(761), [sym_preproc_endregion] = STATE(761), [sym_preproc_line] = STATE(761), @@ -170745,48 +170781,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(761), [sym_preproc_define] = STATE(761), [sym_preproc_undef] = STATE(761), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170799,19 +170834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170822,91 +170857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [762] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5029), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5810), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5624), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(762), [sym_preproc_endregion] = STATE(762), [sym_preproc_line] = STATE(762), @@ -170916,35 +170950,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(762), [sym_preproc_define] = STATE(762), [sym_preproc_undef] = STATE(762), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -170953,10 +170987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170982,6 +171016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170998,85 +171033,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [763] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4386), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_argument] = STATE(7142), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5335), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2293), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(763), [sym_preproc_endregion] = STATE(763), [sym_preproc_line] = STATE(763), @@ -171086,47 +171121,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(763), [sym_preproc_define] = STATE(763), [sym_preproc_undef] = STATE(763), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171139,19 +171174,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171168,84 +171203,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [764] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5732), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2263), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4809), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(764), [sym_preproc_endregion] = STATE(764), [sym_preproc_line] = STATE(764), @@ -171255,48 +171290,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(764), [sym_preproc_define] = STATE(764), [sym_preproc_undef] = STATE(764), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2921), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171338,85 +171373,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [765] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5090), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(6951), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(765), [sym_preproc_endregion] = STATE(765), [sym_preproc_line] = STATE(765), @@ -171426,17 +171460,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(765), [sym_preproc_define] = STATE(765), [sym_preproc_undef] = STATE(765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -171444,17 +171479,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -171466,7 +171501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171508,85 +171543,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [766] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4697), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4981), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(766), [sym_preproc_endregion] = STATE(766), [sym_preproc_line] = STATE(766), @@ -171596,47 +171630,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(766), [sym_preproc_define] = STATE(766), [sym_preproc_undef] = STATE(766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171649,19 +171684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171678,85 +171713,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [767] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5445), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5542), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(767), [sym_preproc_endregion] = STATE(767), [sym_preproc_line] = STATE(767), @@ -171766,17 +171800,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(767), [sym_preproc_define] = STATE(767), [sym_preproc_undef] = STATE(767), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [768] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5426), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(768), + [sym_preproc_endregion] = STATE(768), + [sym_preproc_line] = STATE(768), + [sym_preproc_pragma] = STATE(768), + [sym_preproc_nullable] = STATE(768), + [sym_preproc_error] = STATE(768), + [sym_preproc_warning] = STATE(768), + [sym_preproc_define] = STATE(768), + [sym_preproc_undef] = STATE(768), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -171784,17 +171989,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -171803,10 +172008,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171831,177 +172036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [768] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2833), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2562), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(768), - [sym_preproc_endregion] = STATE(768), - [sym_preproc_line] = STATE(768), - [sym_preproc_pragma] = STATE(768), - [sym_preproc_nullable] = STATE(768), - [sym_preproc_error] = STATE(768), - [sym_preproc_warning] = STATE(768), - [sym_preproc_define] = STATE(768), - [sym_preproc_undef] = STATE(768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_ref] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2925), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2599), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2927), - [sym_predefined_type] = ACTIONS(2929), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172018,85 +172053,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [769] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5185), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4997), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(769), [sym_preproc_endregion] = STATE(769), [sym_preproc_line] = STATE(769), @@ -172106,47 +172140,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(769), [sym_preproc_define] = STATE(769), [sym_preproc_undef] = STATE(769), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172159,19 +172194,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172182,91 +172217,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [770] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4855), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5103), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(770), [sym_preproc_endregion] = STATE(770), [sym_preproc_line] = STATE(770), @@ -172276,47 +172311,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(770), [sym_preproc_define] = STATE(770), [sym_preproc_undef] = STATE(770), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172329,19 +172364,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172358,84 +172393,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [771] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4269), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(771), [sym_preproc_endregion] = STATE(771), [sym_preproc_line] = STATE(771), @@ -172445,48 +172481,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(771), [sym_preproc_define] = STATE(771), [sym_preproc_undef] = STATE(771), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172500,17 +172535,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -172522,90 +172557,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [772] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5705), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(772), [sym_preproc_endregion] = STATE(772), [sym_preproc_line] = STATE(772), @@ -172615,47 +172650,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(772), [sym_preproc_define] = STATE(772), [sym_preproc_undef] = STATE(772), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172681,7 +172717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172698,84 +172733,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [773] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4675), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(773), [sym_preproc_endregion] = STATE(773), [sym_preproc_line] = STATE(773), @@ -172785,21 +172820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(773), [sym_preproc_define] = STATE(773), [sym_preproc_undef] = STATE(773), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -172823,10 +172858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172868,85 +172903,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [774] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5238), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5460), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(774), [sym_preproc_endregion] = STATE(774), [sym_preproc_line] = STATE(774), @@ -172956,16 +172991,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(774), [sym_preproc_define] = STATE(774), [sym_preproc_undef] = STATE(774), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [775] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5236), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(775), + [sym_preproc_endregion] = STATE(775), + [sym_preproc_line] = STATE(775), + [sym_preproc_pragma] = STATE(775), + [sym_preproc_nullable] = STATE(775), + [sym_preproc_error] = STATE(775), + [sym_preproc_warning] = STATE(775), + [sym_preproc_define] = STATE(775), + [sym_preproc_undef] = STATE(775), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), @@ -172974,17 +173179,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -172993,10 +173198,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173021,7 +173226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173037,124 +173242,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [775] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5636), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(775), - [sym_preproc_endregion] = STATE(775), - [sym_preproc_line] = STATE(775), - [sym_preproc_pragma] = STATE(775), - [sym_preproc_nullable] = STATE(775), - [sym_preproc_error] = STATE(775), - [sym_preproc_warning] = STATE(775), - [sym_preproc_define] = STATE(775), - [sym_preproc_undef] = STATE(775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [776] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4998), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(776), + [sym_preproc_endregion] = STATE(776), + [sym_preproc_line] = STATE(776), + [sym_preproc_pragma] = STATE(776), + [sym_preproc_nullable] = STATE(776), + [sym_preproc_error] = STATE(776), + [sym_preproc_warning] = STATE(776), + [sym_preproc_define] = STATE(776), + [sym_preproc_undef] = STATE(776), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -173163,10 +173368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173207,124 +173412,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [776] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [777] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), [sym_expression] = STATE(5353), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(776), - [sym_preproc_endregion] = STATE(776), - [sym_preproc_line] = STATE(776), - [sym_preproc_pragma] = STATE(776), - [sym_preproc_nullable] = STATE(776), - [sym_preproc_error] = STATE(776), - [sym_preproc_warning] = STATE(776), - [sym_preproc_define] = STATE(776), - [sym_preproc_undef] = STATE(776), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(777), + [sym_preproc_endregion] = STATE(777), + [sym_preproc_line] = STATE(777), + [sym_preproc_pragma] = STATE(777), + [sym_preproc_nullable] = STATE(777), + [sym_preproc_error] = STATE(777), + [sym_preproc_warning] = STATE(777), + [sym_preproc_define] = STATE(777), + [sym_preproc_undef] = STATE(777), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -173333,10 +173538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173361,7 +173566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173377,136 +173582,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [777] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5295), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(777), - [sym_preproc_endregion] = STATE(777), - [sym_preproc_line] = STATE(777), - [sym_preproc_pragma] = STATE(777), - [sym_preproc_nullable] = STATE(777), - [sym_preproc_error] = STATE(777), - [sym_preproc_warning] = STATE(777), - [sym_preproc_define] = STATE(777), - [sym_preproc_undef] = STATE(777), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [778] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(778), + [sym_preproc_endregion] = STATE(778), + [sym_preproc_line] = STATE(778), + [sym_preproc_pragma] = STATE(778), + [sym_preproc_nullable] = STATE(778), + [sym_preproc_error] = STATE(778), + [sym_preproc_warning] = STATE(778), + [sym_preproc_define] = STATE(778), + [sym_preproc_undef] = STATE(778), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173519,19 +173724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173542,129 +173747,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [778] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(778), - [sym_preproc_endregion] = STATE(778), - [sym_preproc_line] = STATE(778), - [sym_preproc_pragma] = STATE(778), - [sym_preproc_nullable] = STATE(778), - [sym_preproc_error] = STATE(778), - [sym_preproc_warning] = STATE(778), - [sym_preproc_define] = STATE(778), - [sym_preproc_undef] = STATE(778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [779] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5543), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(779), + [sym_preproc_endregion] = STATE(779), + [sym_preproc_line] = STATE(779), + [sym_preproc_pragma] = STATE(779), + [sym_preproc_nullable] = STATE(779), + [sym_preproc_error] = STATE(779), + [sym_preproc_warning] = STATE(779), + [sym_preproc_define] = STATE(779), + [sym_preproc_undef] = STATE(779), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2933), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -173673,10 +173878,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173717,105 +173922,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [779] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), + [780] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4849), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(779), - [sym_preproc_endregion] = STATE(779), - [sym_preproc_line] = STATE(779), - [sym_preproc_pragma] = STATE(779), - [sym_preproc_nullable] = STATE(779), - [sym_preproc_error] = STATE(779), - [sym_preproc_warning] = STATE(779), - [sym_preproc_define] = STATE(779), - [sym_preproc_undef] = STATE(779), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4852), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(780), + [sym_preproc_endregion] = STATE(780), + [sym_preproc_line] = STATE(780), + [sym_preproc_pragma] = STATE(780), + [sym_preproc_nullable] = STATE(780), + [sym_preproc_error] = STATE(780), + [sym_preproc_warning] = STATE(780), + [sym_preproc_define] = STATE(780), + [sym_preproc_undef] = STATE(780), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(2875), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), @@ -173824,17 +174029,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -173843,10 +174048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173871,7 +174076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173887,105 +174092,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [780] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(2668), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2199), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2189), + [781] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2680), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2201), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), [sym_identifier] = STATE(2217), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(780), - [sym_preproc_endregion] = STATE(780), - [sym_preproc_line] = STATE(780), - [sym_preproc_pragma] = STATE(780), - [sym_preproc_nullable] = STATE(780), - [sym_preproc_error] = STATE(780), - [sym_preproc_warning] = STATE(780), - [sym_preproc_define] = STATE(780), - [sym_preproc_undef] = STATE(780), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(781), + [sym_preproc_endregion] = STATE(781), + [sym_preproc_line] = STATE(781), + [sym_preproc_pragma] = STATE(781), + [sym_preproc_nullable] = STATE(781), + [sym_preproc_error] = STATE(781), + [sym_preproc_warning] = STATE(781), + [sym_preproc_define] = STATE(781), + [sym_preproc_undef] = STATE(781), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_ref] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_ref] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -173994,28 +174199,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2389), + [anon_sym_scoped] = ACTIONS(2393), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2893), - [sym_predefined_type] = ACTIONS(2377), + [anon_sym_var] = ACTIONS(2939), + [sym_predefined_type] = ACTIONS(2397), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -174057,109 +174262,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [781] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5391), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(781), - [sym_preproc_endregion] = STATE(781), - [sym_preproc_line] = STATE(781), - [sym_preproc_pragma] = STATE(781), - [sym_preproc_nullable] = STATE(781), - [sym_preproc_error] = STATE(781), - [sym_preproc_warning] = STATE(781), - [sym_preproc_define] = STATE(781), - [sym_preproc_undef] = STATE(781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [782] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5379), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(782), + [sym_preproc_endregion] = STATE(782), + [sym_preproc_line] = STATE(782), + [sym_preproc_pragma] = STATE(782), + [sym_preproc_nullable] = STATE(782), + [sym_preproc_error] = STATE(782), + [sym_preproc_warning] = STATE(782), + [sym_preproc_define] = STATE(782), + [sym_preproc_undef] = STATE(782), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2941), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -174183,10 +174388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174227,124 +174432,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [782] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(782), - [sym_preproc_endregion] = STATE(782), - [sym_preproc_line] = STATE(782), - [sym_preproc_pragma] = STATE(782), - [sym_preproc_nullable] = STATE(782), - [sym_preproc_error] = STATE(782), - [sym_preproc_warning] = STATE(782), - [sym_preproc_define] = STATE(782), - [sym_preproc_undef] = STATE(782), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [783] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4800), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(783), + [sym_preproc_endregion] = STATE(783), + [sym_preproc_line] = STATE(783), + [sym_preproc_pragma] = STATE(783), + [sym_preproc_nullable] = STATE(783), + [sym_preproc_error] = STATE(783), + [sym_preproc_warning] = STATE(783), + [sym_preproc_define] = STATE(783), + [sym_preproc_undef] = STATE(783), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(2875), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -174353,10 +174558,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174397,124 +174602,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [783] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [784] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), [sym_expression] = STATE(4854), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(783), - [sym_preproc_endregion] = STATE(783), - [sym_preproc_line] = STATE(783), - [sym_preproc_pragma] = STATE(783), - [sym_preproc_nullable] = STATE(783), - [sym_preproc_error] = STATE(783), - [sym_preproc_warning] = STATE(783), - [sym_preproc_define] = STATE(783), - [sym_preproc_undef] = STATE(783), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(784), + [sym_preproc_endregion] = STATE(784), + [sym_preproc_line] = STATE(784), + [sym_preproc_pragma] = STATE(784), + [sym_preproc_nullable] = STATE(784), + [sym_preproc_error] = STATE(784), + [sym_preproc_warning] = STATE(784), + [sym_preproc_define] = STATE(784), + [sym_preproc_undef] = STATE(784), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1171), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -174523,10 +174728,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174551,7 +174756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174567,124 +174772,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [784] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [785] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5597), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(784), - [sym_preproc_endregion] = STATE(784), - [sym_preproc_line] = STATE(784), - [sym_preproc_pragma] = STATE(784), - [sym_preproc_nullable] = STATE(784), - [sym_preproc_error] = STATE(784), - [sym_preproc_warning] = STATE(784), - [sym_preproc_define] = STATE(784), - [sym_preproc_undef] = STATE(784), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5601), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(785), + [sym_preproc_endregion] = STATE(785), + [sym_preproc_line] = STATE(785), + [sym_preproc_pragma] = STATE(785), + [sym_preproc_nullable] = STATE(785), + [sym_preproc_error] = STATE(785), + [sym_preproc_warning] = STATE(785), + [sym_preproc_define] = STATE(785), + [sym_preproc_undef] = STATE(785), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -174693,10 +174898,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174721,7 +174926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174737,255 +174942,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [785] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(785), - [sym_preproc_endregion] = STATE(785), - [sym_preproc_line] = STATE(785), - [sym_preproc_pragma] = STATE(785), - [sym_preproc_nullable] = STATE(785), - [sym_preproc_error] = STATE(785), - [sym_preproc_warning] = STATE(785), - [sym_preproc_define] = STATE(785), - [sym_preproc_undef] = STATE(785), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, [786] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5105), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(786), [sym_preproc_endregion] = STATE(786), [sym_preproc_line] = STATE(786), @@ -174995,48 +175030,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(786), [sym_preproc_define] = STATE(786), [sym_preproc_undef] = STATE(786), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175049,19 +175084,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175078,85 +175113,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [787] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3823), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3873), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5222), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(787), [sym_preproc_endregion] = STATE(787), [sym_preproc_line] = STATE(787), @@ -175166,47 +175200,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(787), [sym_preproc_define] = STATE(787), [sym_preproc_undef] = STATE(787), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2943), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175219,19 +175254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175242,91 +175277,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [788] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3823), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3700), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4709), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(788), [sym_preproc_endregion] = STATE(788), [sym_preproc_line] = STATE(788), @@ -175336,47 +175370,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(788), [sym_preproc_define] = STATE(788), [sym_preproc_undef] = STATE(788), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175389,19 +175424,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175412,91 +175447,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [789] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5080), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5754), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(789), [sym_preproc_endregion] = STATE(789), [sym_preproc_line] = STATE(789), @@ -175506,47 +175540,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(789), [sym_preproc_define] = STATE(789), [sym_preproc_undef] = STATE(789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2771), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175559,19 +175594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175588,84 +175623,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [790] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(790), [sym_preproc_endregion] = STATE(790), [sym_preproc_line] = STATE(790), @@ -175675,18 +175710,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(790), [sym_preproc_define] = STATE(790), [sym_preproc_undef] = STATE(790), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -175694,17 +175729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -175716,7 +175751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175758,84 +175793,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [791] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3891), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3649), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(791), [sym_preproc_endregion] = STATE(791), [sym_preproc_line] = STATE(791), @@ -175845,48 +175881,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(791), [sym_preproc_define] = STATE(791), [sym_preproc_undef] = STATE(791), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175899,19 +175934,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175922,91 +175957,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [792] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3997), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3625), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(792), [sym_preproc_endregion] = STATE(792), [sym_preproc_line] = STATE(792), @@ -176016,47 +176050,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(792), [sym_preproc_define] = STATE(792), [sym_preproc_undef] = STATE(792), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176069,19 +176104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176092,90 +176127,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [793] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3966), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3955), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(793), [sym_preproc_endregion] = STATE(793), [sym_preproc_line] = STATE(793), @@ -176185,36 +176221,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(793), [sym_preproc_define] = STATE(793), [sym_preproc_undef] = STATE(793), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -176223,10 +176258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176268,85 +176303,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [794] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(4657), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4969), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3963), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(794), [sym_preproc_endregion] = STATE(794), [sym_preproc_line] = STATE(794), @@ -176356,72 +176390,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(794), [sym_preproc_define] = STATE(794), [sym_preproc_undef] = STATE(794), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1949), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176432,90 +176467,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [795] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4166), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5006), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(795), [sym_preproc_endregion] = STATE(795), [sym_preproc_line] = STATE(795), @@ -176525,48 +176561,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(795), [sym_preproc_define] = STATE(795), [sym_preproc_undef] = STATE(795), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176579,19 +176614,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176602,90 +176637,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [796] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3696), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3891), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3795), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(796), [sym_preproc_endregion] = STATE(796), [sym_preproc_line] = STATE(796), @@ -176695,48 +176731,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(796), [sym_preproc_define] = STATE(796), [sym_preproc_undef] = STATE(796), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176749,19 +176784,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176772,91 +176807,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [797] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4778), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(4659), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4351), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(797), [sym_preproc_endregion] = STATE(797), [sym_preproc_line] = STATE(797), @@ -176866,72 +176901,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(797), [sym_preproc_define] = STATE(797), [sym_preproc_undef] = STATE(797), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176942,91 +176977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [798] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(4657), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4406), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4311), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(798), [sym_preproc_endregion] = STATE(798), [sym_preproc_line] = STATE(798), @@ -177036,8 +177070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(798), [sym_preproc_define] = STATE(798), [sym_preproc_undef] = STATE(798), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -177045,11 +177079,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(1397), [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), [anon_sym_new] = ACTIONS(1405), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), @@ -177118,84 +177153,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [799] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2447), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2201), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5083), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2192), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(799), [sym_preproc_endregion] = STATE(799), [sym_preproc_line] = STATE(799), @@ -177205,48 +177240,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(799), [sym_preproc_define] = STATE(799), [sym_preproc_undef] = STATE(799), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_ref] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2947), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2939), + [sym_predefined_type] = ACTIONS(2397), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177259,19 +177294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177288,84 +177323,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [800] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5753), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(800), [sym_preproc_endregion] = STATE(800), [sym_preproc_line] = STATE(800), @@ -177375,48 +177410,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(800), [sym_preproc_define] = STATE(800), [sym_preproc_undef] = STATE(800), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177458,85 +177493,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [801] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4979), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5569), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(801), [sym_preproc_endregion] = STATE(801), [sym_preproc_line] = STATE(801), @@ -177546,47 +177580,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(801), [sym_preproc_define] = STATE(801), [sym_preproc_undef] = STATE(801), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177599,19 +177634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177628,84 +177663,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [802] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(2447), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2201), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4462), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2268), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(802), [sym_preproc_endregion] = STATE(802), [sym_preproc_line] = STATE(802), @@ -177715,73 +177750,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(802), [sym_preproc_define] = STATE(802), [sym_preproc_undef] = STATE(802), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_ref] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2947), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2373), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2397), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177792,90 +177827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [803] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4981), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(803), [sym_preproc_endregion] = STATE(803), [sym_preproc_line] = STATE(803), @@ -177885,48 +177920,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(803), [sym_preproc_define] = STATE(803), [sym_preproc_undef] = STATE(803), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177939,19 +177974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177968,85 +178003,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [804] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5977), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5064), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_declaration_expression] = STATE(7019), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4937), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(804), [sym_preproc_endregion] = STATE(804), [sym_preproc_line] = STATE(804), @@ -178056,35 +178090,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(804), [sym_preproc_define] = STATE(804), [sym_preproc_undef] = STATE(804), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2899), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -178093,10 +178128,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178138,84 +178173,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [805] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4780), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5491), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(805), [sym_preproc_endregion] = STATE(805), [sym_preproc_line] = STATE(805), @@ -178225,48 +178260,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(805), [sym_preproc_define] = STATE(805), [sym_preproc_undef] = STATE(805), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2951), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178279,19 +178314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178302,90 +178337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [806] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(806), [sym_preproc_endregion] = STATE(806), [sym_preproc_line] = STATE(806), @@ -178395,40 +178430,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(806), [sym_preproc_define] = STATE(806), [sym_preproc_undef] = STATE(806), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), @@ -178436,7 +178471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178478,84 +178513,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [807] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4398), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5604), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(807), [sym_preproc_endregion] = STATE(807), [sym_preproc_line] = STATE(807), @@ -178565,8 +178601,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(807), [sym_preproc_define] = STATE(807), [sym_preproc_undef] = STATE(807), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [808] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4408), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(808), + [sym_preproc_endregion] = STATE(808), + [sym_preproc_line] = STATE(808), + [sym_preproc_pragma] = STATE(808), + [sym_preproc_nullable] = STATE(808), + [sym_preproc_error] = STATE(808), + [sym_preproc_warning] = STATE(808), + [sym_preproc_define] = STATE(808), + [sym_preproc_undef] = STATE(808), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -178574,12 +178780,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(1485), [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), - [anon_sym_readonly] = ACTIONS(2817), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -178647,136 +178852,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [808] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3823), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3610), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(808), - [sym_preproc_endregion] = STATE(808), - [sym_preproc_line] = STATE(808), - [sym_preproc_pragma] = STATE(808), - [sym_preproc_nullable] = STATE(808), - [sym_preproc_error] = STATE(808), - [sym_preproc_warning] = STATE(808), - [sym_preproc_define] = STATE(808), - [sym_preproc_undef] = STATE(808), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [809] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4946), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(809), + [sym_preproc_endregion] = STATE(809), + [sym_preproc_line] = STATE(809), + [sym_preproc_pragma] = STATE(809), + [sym_preproc_nullable] = STATE(809), + [sym_preproc_error] = STATE(809), + [sym_preproc_warning] = STATE(809), + [sym_preproc_define] = STATE(809), + [sym_preproc_undef] = STATE(809), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178789,19 +178994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178812,141 +179017,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [809] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3664), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(809), - [sym_preproc_endregion] = STATE(809), - [sym_preproc_line] = STATE(809), - [sym_preproc_pragma] = STATE(809), - [sym_preproc_nullable] = STATE(809), - [sym_preproc_error] = STATE(809), - [sym_preproc_warning] = STATE(809), - [sym_preproc_define] = STATE(809), - [sym_preproc_undef] = STATE(809), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [810] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4332), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(810), + [sym_preproc_endregion] = STATE(810), + [sym_preproc_line] = STATE(810), + [sym_preproc_pragma] = STATE(810), + [sym_preproc_nullable] = STATE(810), + [sym_preproc_error] = STATE(810), + [sym_preproc_warning] = STATE(810), + [sym_preproc_define] = STATE(810), + [sym_preproc_undef] = STATE(810), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178959,19 +179164,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178982,140 +179187,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [810] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5211), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [811] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5749), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2259), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(810), - [sym_preproc_endregion] = STATE(810), - [sym_preproc_line] = STATE(810), - [sym_preproc_pragma] = STATE(810), - [sym_preproc_nullable] = STATE(810), - [sym_preproc_error] = STATE(810), - [sym_preproc_warning] = STATE(810), - [sym_preproc_define] = STATE(810), - [sym_preproc_undef] = STATE(810), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(811), + [sym_preproc_endregion] = STATE(811), + [sym_preproc_line] = STATE(811), + [sym_preproc_pragma] = STATE(811), + [sym_preproc_nullable] = STATE(811), + [sym_preproc_error] = STATE(811), + [sym_preproc_warning] = STATE(811), + [sym_preproc_define] = STATE(811), + [sym_preproc_undef] = STATE(811), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2951), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -179157,255 +179362,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [811] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(4657), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4364), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(811), - [sym_preproc_endregion] = STATE(811), - [sym_preproc_line] = STATE(811), - [sym_preproc_pragma] = STATE(811), - [sym_preproc_nullable] = STATE(811), - [sym_preproc_error] = STATE(811), - [sym_preproc_warning] = STATE(811), - [sym_preproc_define] = STATE(811), - [sym_preproc_undef] = STATE(811), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, [812] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3769), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4587), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(812), [sym_preproc_endregion] = STATE(812), [sym_preproc_line] = STATE(812), @@ -179415,48 +179451,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(812), [sym_preproc_define] = STATE(812), [sym_preproc_undef] = STATE(812), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179469,19 +179504,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179492,90 +179527,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [813] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5737), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2245), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4352), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4809), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(813), [sym_preproc_endregion] = STATE(813), [sym_preproc_line] = STATE(813), @@ -179585,73 +179620,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(813), [sym_preproc_define] = STATE(813), [sym_preproc_undef] = STATE(813), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2657), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179662,90 +179697,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [814] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3104), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5032), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(814), [sym_preproc_endregion] = STATE(814), [sym_preproc_line] = STATE(814), @@ -179755,36 +179791,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(814), [sym_preproc_define] = STATE(814), [sym_preproc_undef] = STATE(814), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2103), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -179793,10 +179828,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179838,84 +179873,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [815] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2241), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5722), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2221), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4808), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(815), [sym_preproc_endregion] = STATE(815), [sym_preproc_line] = STATE(815), @@ -179925,36 +179960,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(815), [sym_preproc_define] = STATE(815), [sym_preproc_undef] = STATE(815), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(2787), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), @@ -179963,10 +179998,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180008,84 +180043,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [816] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3831), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3761), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(816), [sym_preproc_endregion] = STATE(816), [sym_preproc_line] = STATE(816), @@ -180095,48 +180130,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(816), [sym_preproc_define] = STATE(816), [sym_preproc_undef] = STATE(816), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180149,19 +180184,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180172,90 +180207,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [817] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4185), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(817), [sym_preproc_endregion] = STATE(817), [sym_preproc_line] = STATE(817), @@ -180265,48 +180301,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(817), [sym_preproc_define] = STATE(817), [sym_preproc_undef] = STATE(817), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180319,19 +180354,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180342,90 +180377,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [818] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4948), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5593), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(818), [sym_preproc_endregion] = STATE(818), [sym_preproc_line] = STATE(818), @@ -180435,36 +180470,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(818), [sym_preproc_define] = STATE(818), [sym_preproc_undef] = STATE(818), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2957), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(2955), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -180473,10 +180508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180518,84 +180553,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [819] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5752), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2262), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5563), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(819), [sym_preproc_endregion] = STATE(819), [sym_preproc_line] = STATE(819), @@ -180605,48 +180640,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(819), [sym_preproc_define] = STATE(819), [sym_preproc_undef] = STATE(819), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2083), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2657), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180688,84 +180723,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [820] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5390), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5959), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5086), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_declaration_expression] = STATE(7105), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(820), [sym_preproc_endregion] = STATE(820), [sym_preproc_line] = STATE(820), @@ -180775,36 +180811,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(820), [sym_preproc_define] = STATE(820), [sym_preproc_undef] = STATE(820), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2957), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -180813,10 +180848,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180858,85 +180893,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [821] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3960), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym__ordering] = STATE(6365), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5022), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(821), [sym_preproc_endregion] = STATE(821), [sym_preproc_line] = STATE(821), @@ -180946,387 +180980,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(821), [sym_preproc_define] = STATE(821), [sym_preproc_undef] = STATE(821), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, - [822] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5120), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(822), - [sym_preproc_endregion] = STATE(822), - [sym_preproc_line] = STATE(822), - [sym_preproc_pragma] = STATE(822), - [sym_preproc_nullable] = STATE(822), - [sym_preproc_error] = STATE(822), - [sym_preproc_warning] = STATE(822), - [sym_preproc_define] = STATE(822), - [sym_preproc_undef] = STATE(822), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [823] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5777), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(823), - [sym_preproc_endregion] = STATE(823), - [sym_preproc_line] = STATE(823), - [sym_preproc_pragma] = STATE(823), - [sym_preproc_nullable] = STATE(823), - [sym_preproc_error] = STATE(823), - [sym_preproc_warning] = STATE(823), - [sym_preproc_define] = STATE(823), - [sym_preproc_undef] = STATE(823), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2531), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2791), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181367,124 +181062,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [824] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [822] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4454), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(824), - [sym_preproc_endregion] = STATE(824), - [sym_preproc_line] = STATE(824), - [sym_preproc_pragma] = STATE(824), - [sym_preproc_nullable] = STATE(824), - [sym_preproc_error] = STATE(824), - [sym_preproc_warning] = STATE(824), - [sym_preproc_define] = STATE(824), - [sym_preproc_undef] = STATE(824), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4733), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(822), + [sym_preproc_endregion] = STATE(822), + [sym_preproc_line] = STATE(822), + [sym_preproc_pragma] = STATE(822), + [sym_preproc_nullable] = STATE(822), + [sym_preproc_error] = STATE(822), + [sym_preproc_warning] = STATE(822), + [sym_preproc_define] = STATE(822), + [sym_preproc_undef] = STATE(822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1885), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -181493,10 +181188,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181537,124 +181232,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [825] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [823] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4586), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4890), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(825), - [sym_preproc_endregion] = STATE(825), - [sym_preproc_line] = STATE(825), - [sym_preproc_pragma] = STATE(825), - [sym_preproc_nullable] = STATE(825), - [sym_preproc_error] = STATE(825), - [sym_preproc_warning] = STATE(825), - [sym_preproc_define] = STATE(825), - [sym_preproc_undef] = STATE(825), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(823), + [sym_preproc_endregion] = STATE(823), + [sym_preproc_line] = STATE(823), + [sym_preproc_pragma] = STATE(823), + [sym_preproc_nullable] = STATE(823), + [sym_preproc_error] = STATE(823), + [sym_preproc_warning] = STATE(823), + [sym_preproc_define] = STATE(823), + [sym_preproc_undef] = STATE(823), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -181663,10 +181358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181707,124 +181402,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [826] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3141), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5616), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(826), - [sym_preproc_endregion] = STATE(826), - [sym_preproc_line] = STATE(826), - [sym_preproc_pragma] = STATE(826), - [sym_preproc_nullable] = STATE(826), - [sym_preproc_error] = STATE(826), - [sym_preproc_warning] = STATE(826), - [sym_preproc_define] = STATE(826), - [sym_preproc_undef] = STATE(826), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [824] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(824), + [sym_preproc_endregion] = STATE(824), + [sym_preproc_line] = STATE(824), + [sym_preproc_pragma] = STATE(824), + [sym_preproc_nullable] = STATE(824), + [sym_preproc_error] = STATE(824), + [sym_preproc_warning] = STATE(824), + [sym_preproc_define] = STATE(824), + [sym_preproc_undef] = STATE(824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -181833,10 +181528,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181877,136 +181572,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [827] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(827), - [sym_preproc_endregion] = STATE(827), - [sym_preproc_line] = STATE(827), - [sym_preproc_pragma] = STATE(827), - [sym_preproc_nullable] = STATE(827), - [sym_preproc_error] = STATE(827), - [sym_preproc_warning] = STATE(827), - [sym_preproc_define] = STATE(827), - [sym_preproc_undef] = STATE(827), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [825] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5267), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(825), + [sym_preproc_endregion] = STATE(825), + [sym_preproc_line] = STATE(825), + [sym_preproc_pragma] = STATE(825), + [sym_preproc_nullable] = STATE(825), + [sym_preproc_error] = STATE(825), + [sym_preproc_warning] = STATE(825), + [sym_preproc_define] = STATE(825), + [sym_preproc_undef] = STATE(825), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182019,19 +181714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182042,110 +181737,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [828] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3397), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3794), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(828), - [sym_preproc_endregion] = STATE(828), - [sym_preproc_line] = STATE(828), - [sym_preproc_pragma] = STATE(828), - [sym_preproc_nullable] = STATE(828), - [sym_preproc_error] = STATE(828), - [sym_preproc_warning] = STATE(828), - [sym_preproc_define] = STATE(828), - [sym_preproc_undef] = STATE(828), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [826] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4258), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(826), + [sym_preproc_endregion] = STATE(826), + [sym_preproc_line] = STATE(826), + [sym_preproc_pragma] = STATE(826), + [sym_preproc_nullable] = STATE(826), + [sym_preproc_error] = STATE(826), + [sym_preproc_warning] = STATE(826), + [sym_preproc_define] = STATE(826), + [sym_preproc_undef] = STATE(826), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(2875), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), @@ -182154,17 +181849,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -182173,10 +181868,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182217,139 +181912,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [829] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3960), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym__ordering] = STATE(6394), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(829), - [sym_preproc_endregion] = STATE(829), - [sym_preproc_line] = STATE(829), - [sym_preproc_pragma] = STATE(829), - [sym_preproc_nullable] = STATE(829), - [sym_preproc_error] = STATE(829), - [sym_preproc_warning] = STATE(829), - [sym_preproc_define] = STATE(829), - [sym_preproc_undef] = STATE(829), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [827] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4169), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(827), + [sym_preproc_endregion] = STATE(827), + [sym_preproc_line] = STATE(827), + [sym_preproc_pragma] = STATE(827), + [sym_preproc_nullable] = STATE(827), + [sym_preproc_error] = STATE(827), + [sym_preproc_warning] = STATE(827), + [sym_preproc_define] = STATE(827), + [sym_preproc_undef] = STATE(827), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), + }, + [828] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5573), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(828), + [sym_preproc_endregion] = STATE(828), + [sym_preproc_line] = STATE(828), + [sym_preproc_pragma] = STATE(828), + [sym_preproc_nullable] = STATE(828), + [sym_preproc_error] = STATE(828), + [sym_preproc_warning] = STATE(828), + [sym_preproc_define] = STATE(828), + [sym_preproc_undef] = STATE(828), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [829] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3388), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4756), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(829), + [sym_preproc_endregion] = STATE(829), + [sym_preproc_line] = STATE(829), + [sym_preproc_pragma] = STATE(829), + [sym_preproc_nullable] = STATE(829), + [sym_preproc_error] = STATE(829), + [sym_preproc_warning] = STATE(829), + [sym_preproc_define] = STATE(829), + [sym_preproc_undef] = STATE(829), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), [anon_sym_on] = ACTIONS(29), [anon_sym_equals] = ACTIONS(29), [anon_sym_let] = ACTIONS(29), @@ -182359,19 +182394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182382,91 +182417,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [830] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5266), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3097), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5337), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(830), [sym_preproc_endregion] = STATE(830), [sym_preproc_line] = STATE(830), @@ -182476,35 +182511,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(830), [sym_preproc_define] = STATE(830), [sym_preproc_undef] = STATE(830), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -182513,10 +182548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182558,85 +182593,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [831] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(4657), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4741), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(4659), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4742), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(831), [sym_preproc_endregion] = STATE(831), [sym_preproc_line] = STATE(831), @@ -182646,8 +182681,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(831), [sym_preproc_define] = STATE(831), [sym_preproc_undef] = STATE(831), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -182655,11 +182690,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(1529), [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1405), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), @@ -182672,7 +182707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1413), [anon_sym_PLUS] = ACTIONS(1533), [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1415), [anon_sym_CARET] = ACTIONS(1535), [anon_sym_AMP] = ACTIONS(1535), [anon_sym_this] = ACTIONS(1417), @@ -182728,84 +182763,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [832] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5355), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5359), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(832), [sym_preproc_endregion] = STATE(832), [sym_preproc_line] = STATE(832), @@ -182815,36 +182850,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(832), [sym_preproc_define] = STATE(832), [sym_preproc_undef] = STATE(832), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -182853,10 +182888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182898,84 +182933,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [833] = { - [sym_attribute_list] = STATE(5808), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5705), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4000), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(833), [sym_preproc_endregion] = STATE(833), [sym_preproc_line] = STATE(833), @@ -182985,47 +183020,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(833), [sym_preproc_define] = STATE(833), [sym_preproc_undef] = STATE(833), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183038,20 +183074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token3] = ACTIONS(2961), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183062,91 +183097,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [834] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3076), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5335), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5383), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(834), [sym_preproc_endregion] = STATE(834), [sym_preproc_line] = STATE(834), @@ -183156,217 +183190,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(834), [sym_preproc_define] = STATE(834), [sym_preproc_undef] = STATE(834), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [835] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5756), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2272), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4808), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(835), - [sym_preproc_endregion] = STATE(835), - [sym_preproc_line] = STATE(835), - [sym_preproc_pragma] = STATE(835), - [sym_preproc_nullable] = STATE(835), - [sym_preproc_error] = STATE(835), - [sym_preproc_warning] = STATE(835), - [sym_preproc_define] = STATE(835), - [sym_preproc_undef] = STATE(835), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2025), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), - [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1999), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2657), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183407,124 +183272,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [836] = { - [sym_attribute_argument] = STATE(7219), - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5364), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2297), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(836), - [sym_preproc_endregion] = STATE(836), - [sym_preproc_line] = STATE(836), - [sym_preproc_pragma] = STATE(836), - [sym_preproc_nullable] = STATE(836), - [sym_preproc_error] = STATE(836), - [sym_preproc_warning] = STATE(836), - [sym_preproc_define] = STATE(836), - [sym_preproc_undef] = STATE(836), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [835] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5483), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(835), + [sym_preproc_endregion] = STATE(835), + [sym_preproc_line] = STATE(835), + [sym_preproc_pragma] = STATE(835), + [sym_preproc_nullable] = STATE(835), + [sym_preproc_error] = STATE(835), + [sym_preproc_warning] = STATE(835), + [sym_preproc_define] = STATE(835), + [sym_preproc_undef] = STATE(835), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2961), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -183533,10 +183398,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183577,294 +183442,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [837] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(2295), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4028), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(837), - [sym_preproc_endregion] = STATE(837), - [sym_preproc_line] = STATE(837), - [sym_preproc_pragma] = STATE(837), - [sym_preproc_nullable] = STATE(837), - [sym_preproc_error] = STATE(837), - [sym_preproc_warning] = STATE(837), - [sym_preproc_define] = STATE(837), - [sym_preproc_undef] = STATE(837), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, - [838] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_block] = STATE(3459), - [sym_bracketed_argument_list] = STATE(2818), + [836] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_block] = STATE(3432), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4554), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(838), - [sym_preproc_endregion] = STATE(838), - [sym_preproc_line] = STATE(838), - [sym_preproc_pragma] = STATE(838), - [sym_preproc_nullable] = STATE(838), - [sym_preproc_error] = STATE(838), - [sym_preproc_warning] = STATE(838), - [sym_preproc_define] = STATE(838), - [sym_preproc_undef] = STATE(838), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(836), + [sym_preproc_endregion] = STATE(836), + [sym_preproc_line] = STATE(836), + [sym_preproc_pragma] = STATE(836), + [sym_preproc_nullable] = STATE(836), + [sym_preproc_error] = STATE(836), + [sym_preproc_warning] = STATE(836), + [sym_preproc_define] = STATE(836), + [sym_preproc_undef] = STATE(836), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(2869), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -183873,10 +183568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183917,124 +183612,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [839] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(839), - [sym_preproc_endregion] = STATE(839), - [sym_preproc_line] = STATE(839), - [sym_preproc_pragma] = STATE(839), - [sym_preproc_nullable] = STATE(839), - [sym_preproc_error] = STATE(839), - [sym_preproc_warning] = STATE(839), - [sym_preproc_define] = STATE(839), - [sym_preproc_undef] = STATE(839), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [837] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5561), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(837), + [sym_preproc_endregion] = STATE(837), + [sym_preproc_line] = STATE(837), + [sym_preproc_pragma] = STATE(837), + [sym_preproc_nullable] = STATE(837), + [sym_preproc_error] = STATE(837), + [sym_preproc_warning] = STATE(837), + [sym_preproc_define] = STATE(837), + [sym_preproc_undef] = STATE(837), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2963), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -184043,10 +183738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184087,96 +183782,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [840] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4522), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(840), - [sym_preproc_endregion] = STATE(840), - [sym_preproc_line] = STATE(840), - [sym_preproc_pragma] = STATE(840), - [sym_preproc_nullable] = STATE(840), - [sym_preproc_error] = STATE(840), - [sym_preproc_warning] = STATE(840), - [sym_preproc_define] = STATE(840), - [sym_preproc_undef] = STATE(840), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [838] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4451), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(838), + [sym_preproc_endregion] = STATE(838), + [sym_preproc_line] = STATE(838), + [sym_preproc_pragma] = STATE(838), + [sym_preproc_nullable] = STATE(838), + [sym_preproc_error] = STATE(838), + [sym_preproc_warning] = STATE(838), + [sym_preproc_define] = STATE(838), + [sym_preproc_undef] = STATE(838), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -184189,6 +183884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1255), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -184256,135 +183952,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [841] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(841), - [sym_preproc_endregion] = STATE(841), - [sym_preproc_line] = STATE(841), - [sym_preproc_pragma] = STATE(841), - [sym_preproc_nullable] = STATE(841), - [sym_preproc_error] = STATE(841), - [sym_preproc_warning] = STATE(841), - [sym_preproc_define] = STATE(841), - [sym_preproc_undef] = STATE(841), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [839] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(2295), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4489), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(839), + [sym_preproc_endregion] = STATE(839), + [sym_preproc_line] = STATE(839), + [sym_preproc_pragma] = STATE(839), + [sym_preproc_nullable] = STATE(839), + [sym_preproc_error] = STATE(839), + [sym_preproc_warning] = STATE(839), + [sym_preproc_define] = STATE(839), + [sym_preproc_undef] = STATE(839), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [840] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4586), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(840), + [sym_preproc_endregion] = STATE(840), + [sym_preproc_line] = STATE(840), + [sym_preproc_pragma] = STATE(840), + [sym_preproc_nullable] = STATE(840), + [sym_preproc_error] = STATE(840), + [sym_preproc_warning] = STATE(840), + [sym_preproc_define] = STATE(840), + [sym_preproc_undef] = STATE(840), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184397,19 +184263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184425,85 +184291,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [841] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3855), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(841), + [sym_preproc_endregion] = STATE(841), + [sym_preproc_line] = STATE(841), + [sym_preproc_pragma] = STATE(841), + [sym_preproc_nullable] = STATE(841), + [sym_preproc_error] = STATE(841), + [sym_preproc_warning] = STATE(841), + [sym_preproc_define] = STATE(841), + [sym_preproc_undef] = STATE(841), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, [842] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3856), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(842), [sym_preproc_endregion] = STATE(842), [sym_preproc_line] = STATE(842), @@ -184513,47 +184548,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(842), [sym_preproc_define] = STATE(842), [sym_preproc_undef] = STATE(842), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184566,19 +184601,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184589,90 +184624,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [843] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4153), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4474), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(843), [sym_preproc_endregion] = STATE(843), [sym_preproc_line] = STATE(843), @@ -184682,47 +184717,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(843), [sym_preproc_define] = STATE(843), [sym_preproc_undef] = STATE(843), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184735,19 +184770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184764,84 +184799,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [844] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5106), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(844), [sym_preproc_endregion] = STATE(844), [sym_preproc_line] = STATE(844), @@ -184851,17 +184886,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(844), [sym_preproc_define] = STATE(844), [sym_preproc_undef] = STATE(844), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -184869,17 +184904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -184891,7 +184926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -184933,84 +184968,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [845] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5517), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(845), [sym_preproc_endregion] = STATE(845), [sym_preproc_line] = STATE(845), @@ -185020,47 +185055,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(845), [sym_preproc_define] = STATE(845), [sym_preproc_undef] = STATE(845), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185073,19 +185108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185096,90 +185131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [846] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4227), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4274), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(846), [sym_preproc_endregion] = STATE(846), [sym_preproc_line] = STATE(846), @@ -185189,47 +185224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(846), [sym_preproc_define] = STATE(846), [sym_preproc_undef] = STATE(846), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185242,19 +185277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185265,90 +185300,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [847] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5518), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4413), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(847), [sym_preproc_endregion] = STATE(847), [sym_preproc_line] = STATE(847), @@ -185358,47 +185393,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(847), [sym_preproc_define] = STATE(847), [sym_preproc_undef] = STATE(847), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185411,19 +185446,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185434,90 +185469,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [848] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4967), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(848), [sym_preproc_endregion] = STATE(848), [sym_preproc_line] = STATE(848), @@ -185527,17 +185562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(848), [sym_preproc_define] = STATE(848), [sym_preproc_undef] = STATE(848), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -185545,17 +185580,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -185564,10 +185599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185609,84 +185644,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [849] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4713), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4737), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(849), [sym_preproc_endregion] = STATE(849), [sym_preproc_line] = STATE(849), @@ -185696,8 +185731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(849), [sym_preproc_define] = STATE(849), [sym_preproc_undef] = STATE(849), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), @@ -185709,7 +185744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1405), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), @@ -185722,7 +185757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1413), [anon_sym_PLUS] = ACTIONS(1533), [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1415), [anon_sym_CARET] = ACTIONS(1535), [anon_sym_AMP] = ACTIONS(1535), [anon_sym_this] = ACTIONS(1417), @@ -185778,84 +185813,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1465), }, [850] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3982), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4362), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(850), [sym_preproc_endregion] = STATE(850), [sym_preproc_line] = STATE(850), @@ -185865,72 +185900,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(850), [sym_preproc_define] = STATE(850), [sym_preproc_undef] = STATE(850), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185941,90 +185976,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [851] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4458), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(851), [sym_preproc_endregion] = STATE(851), [sym_preproc_line] = STATE(851), @@ -186034,47 +186069,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(851), [sym_preproc_define] = STATE(851), [sym_preproc_undef] = STATE(851), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186087,19 +186122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186110,90 +186145,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [852] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4231), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4493), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(852), [sym_preproc_endregion] = STATE(852), [sym_preproc_line] = STATE(852), @@ -186203,47 +186238,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(852), [sym_preproc_define] = STATE(852), [sym_preproc_undef] = STATE(852), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186256,19 +186291,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186285,84 +186320,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [853] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4234), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4499), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(853), [sym_preproc_endregion] = STATE(853), [sym_preproc_line] = STATE(853), @@ -186372,47 +186407,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(853), [sym_preproc_define] = STATE(853), [sym_preproc_undef] = STATE(853), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186425,19 +186460,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186454,84 +186489,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [854] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4236), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4500), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(854), [sym_preproc_endregion] = STATE(854), [sym_preproc_line] = STATE(854), @@ -186541,47 +186576,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(854), [sym_preproc_define] = STATE(854), [sym_preproc_undef] = STATE(854), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186594,19 +186629,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186623,84 +186658,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [855] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4237), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4510), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(855), [sym_preproc_endregion] = STATE(855), [sym_preproc_line] = STATE(855), @@ -186710,47 +186745,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(855), [sym_preproc_define] = STATE(855), [sym_preproc_undef] = STATE(855), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186763,19 +186798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186792,84 +186827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [856] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4518), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(856), [sym_preproc_endregion] = STATE(856), [sym_preproc_line] = STATE(856), @@ -186879,47 +186914,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(856), [sym_preproc_define] = STATE(856), [sym_preproc_undef] = STATE(856), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186932,19 +186967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186961,84 +186996,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [857] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4221), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4534), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(857), [sym_preproc_endregion] = STATE(857), [sym_preproc_line] = STATE(857), @@ -187048,47 +187083,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(857), [sym_preproc_define] = STATE(857), [sym_preproc_undef] = STATE(857), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187101,19 +187136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187130,84 +187165,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [858] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4473), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(858), [sym_preproc_endregion] = STATE(858), [sym_preproc_line] = STATE(858), @@ -187217,47 +187252,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(858), [sym_preproc_define] = STATE(858), [sym_preproc_undef] = STATE(858), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187270,19 +187305,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187299,84 +187334,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [859] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4242), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4400), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(859), [sym_preproc_endregion] = STATE(859), [sym_preproc_line] = STATE(859), @@ -187386,47 +187421,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(859), [sym_preproc_define] = STATE(859), [sym_preproc_undef] = STATE(859), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187439,19 +187474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187468,84 +187503,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [860] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4244), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4429), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(860), [sym_preproc_endregion] = STATE(860), [sym_preproc_line] = STATE(860), @@ -187555,47 +187590,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(860), [sym_preproc_define] = STATE(860), [sym_preproc_undef] = STATE(860), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187608,19 +187643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187637,84 +187672,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [861] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4245), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4410), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(861), [sym_preproc_endregion] = STATE(861), [sym_preproc_line] = STATE(861), @@ -187724,47 +187759,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(861), [sym_preproc_define] = STATE(861), [sym_preproc_undef] = STATE(861), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187777,19 +187812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187806,84 +187841,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [862] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4247), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4740), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(862), [sym_preproc_endregion] = STATE(862), [sym_preproc_line] = STATE(862), @@ -187893,72 +187928,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(862), [sym_preproc_define] = STATE(862), [sym_preproc_undef] = STATE(862), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187969,90 +188004,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [863] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5033), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(863), [sym_preproc_endregion] = STATE(863), [sym_preproc_line] = STATE(863), @@ -188062,47 +188097,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(863), [sym_preproc_define] = STATE(863), [sym_preproc_undef] = STATE(863), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188115,19 +188150,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188138,90 +188173,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [864] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(864), [sym_preproc_endregion] = STATE(864), [sym_preproc_line] = STATE(864), @@ -188231,47 +188266,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(864), [sym_preproc_define] = STATE(864), [sym_preproc_undef] = STATE(864), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188284,19 +188319,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188313,84 +188348,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [865] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3715), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4324), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(865), [sym_preproc_endregion] = STATE(865), [sym_preproc_line] = STATE(865), @@ -188400,72 +188435,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(865), [sym_preproc_define] = STATE(865), [sym_preproc_undef] = STATE(865), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188476,90 +188511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [866] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3979), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4743), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(866), [sym_preproc_endregion] = STATE(866), [sym_preproc_line] = STATE(866), @@ -188569,72 +188604,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(866), [sym_preproc_define] = STATE(866), [sym_preproc_undef] = STATE(866), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188645,90 +188680,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [867] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5110), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(867), [sym_preproc_endregion] = STATE(867), [sym_preproc_line] = STATE(867), @@ -188738,35 +188773,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(867), [sym_preproc_define] = STATE(867), [sym_preproc_undef] = STATE(867), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -188775,10 +188810,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188820,84 +188855,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [868] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4135), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(868), [sym_preproc_endregion] = STATE(868), [sym_preproc_line] = STATE(868), @@ -188907,47 +188942,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(868), [sym_preproc_define] = STATE(868), [sym_preproc_undef] = STATE(868), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188960,19 +188995,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188983,90 +189018,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [869] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(869), [sym_preproc_endregion] = STATE(869), [sym_preproc_line] = STATE(869), @@ -189076,47 +189111,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(869), [sym_preproc_define] = STATE(869), [sym_preproc_undef] = STATE(869), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189129,19 +189164,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189152,90 +189187,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [870] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4895), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4759), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(870), [sym_preproc_endregion] = STATE(870), [sym_preproc_line] = STATE(870), @@ -189245,72 +189280,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(870), [sym_preproc_define] = STATE(870), [sym_preproc_undef] = STATE(870), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189321,90 +189356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [871] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4033), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4760), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(871), [sym_preproc_endregion] = STATE(871), [sym_preproc_line] = STATE(871), @@ -189414,72 +189449,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(871), [sym_preproc_define] = STATE(871), [sym_preproc_undef] = STATE(871), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189490,90 +189525,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [872] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4035), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4761), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(872), [sym_preproc_endregion] = STATE(872), [sym_preproc_line] = STATE(872), @@ -189583,72 +189618,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(872), [sym_preproc_define] = STATE(872), [sym_preproc_undef] = STATE(872), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189659,90 +189694,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [873] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4036), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4545), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(873), [sym_preproc_endregion] = STATE(873), [sym_preproc_line] = STATE(873), @@ -189752,72 +189787,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(873), [sym_preproc_define] = STATE(873), [sym_preproc_undef] = STATE(873), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189828,90 +189863,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [874] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4037), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4546), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(874), [sym_preproc_endregion] = STATE(874), [sym_preproc_line] = STATE(874), @@ -189921,72 +189956,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(874), [sym_preproc_define] = STATE(874), [sym_preproc_undef] = STATE(874), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189997,90 +190032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [875] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4547), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(875), [sym_preproc_endregion] = STATE(875), [sym_preproc_line] = STATE(875), @@ -190090,166 +190125,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(875), [sym_preproc_define] = STATE(875), [sym_preproc_undef] = STATE(875), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [876] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4040), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4762), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(876), [sym_preproc_endregion] = STATE(876), [sym_preproc_line] = STATE(876), @@ -190259,72 +190294,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(876), [sym_preproc_define] = STATE(876), [sym_preproc_undef] = STATE(876), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190335,90 +190370,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [877] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4042), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4548), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(877), [sym_preproc_endregion] = STATE(877), [sym_preproc_line] = STATE(877), @@ -190428,72 +190463,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(877), [sym_preproc_define] = STATE(877), [sym_preproc_undef] = STATE(877), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190504,90 +190539,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [878] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4043), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4568), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(878), [sym_preproc_endregion] = STATE(878), [sym_preproc_line] = STATE(878), @@ -190597,47 +190632,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(878), [sym_preproc_define] = STATE(878), [sym_preproc_undef] = STATE(878), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190650,19 +190685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190673,90 +190708,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [879] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4044), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4550), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(879), [sym_preproc_endregion] = STATE(879), [sym_preproc_line] = STATE(879), @@ -190766,72 +190801,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(879), [sym_preproc_define] = STATE(879), [sym_preproc_undef] = STATE(879), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190842,90 +190877,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [880] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4045), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4551), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(880), [sym_preproc_endregion] = STATE(880), [sym_preproc_line] = STATE(880), @@ -190935,72 +190970,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(880), [sym_preproc_define] = STATE(880), [sym_preproc_undef] = STATE(880), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191011,90 +191046,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [881] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4046), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4552), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(881), [sym_preproc_endregion] = STATE(881), [sym_preproc_line] = STATE(881), @@ -191104,72 +191139,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(881), [sym_preproc_define] = STATE(881), [sym_preproc_undef] = STATE(881), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191180,90 +191215,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [882] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4936), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4229), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(882), [sym_preproc_endregion] = STATE(882), [sym_preproc_line] = STATE(882), @@ -191273,47 +191308,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(882), [sym_preproc_define] = STATE(882), [sym_preproc_undef] = STATE(882), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191326,19 +191361,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191355,84 +191390,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [883] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4134), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4363), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(883), [sym_preproc_endregion] = STATE(883), [sym_preproc_line] = STATE(883), @@ -191442,72 +191477,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(883), [sym_preproc_define] = STATE(883), [sym_preproc_undef] = STATE(883), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191518,90 +191553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [884] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4937), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(884), [sym_preproc_endregion] = STATE(884), [sym_preproc_line] = STATE(884), @@ -191611,17 +191646,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(884), [sym_preproc_define] = STATE(884), [sym_preproc_undef] = STATE(884), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -191629,17 +191664,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -191648,10 +191683,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191693,84 +191728,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [885] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4939), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4239), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(885), [sym_preproc_endregion] = STATE(885), [sym_preproc_line] = STATE(885), @@ -191780,47 +191815,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(885), [sym_preproc_define] = STATE(885), [sym_preproc_undef] = STATE(885), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191833,19 +191868,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191862,84 +191897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [886] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4243), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(886), [sym_preproc_endregion] = STATE(886), [sym_preproc_line] = STATE(886), @@ -191949,47 +191984,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(886), [sym_preproc_define] = STATE(886), [sym_preproc_undef] = STATE(886), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192002,19 +192037,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192025,90 +192060,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [887] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4455), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(887), [sym_preproc_endregion] = STATE(887), [sym_preproc_line] = STATE(887), @@ -192118,35 +192153,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(887), [sym_preproc_define] = STATE(887), [sym_preproc_undef] = STATE(887), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -192155,10 +192190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192200,84 +192235,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [888] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4947), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(888), [sym_preproc_endregion] = STATE(888), [sym_preproc_line] = STATE(888), @@ -192287,47 +192322,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(888), [sym_preproc_define] = STATE(888), [sym_preproc_undef] = STATE(888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192340,19 +192375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192363,90 +192398,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [889] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4949), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4254), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(889), [sym_preproc_endregion] = STATE(889), [sym_preproc_line] = STATE(889), @@ -192456,47 +192491,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(889), [sym_preproc_define] = STATE(889), [sym_preproc_undef] = STATE(889), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192509,19 +192544,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192532,90 +192567,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [890] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4950), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4271), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(890), [sym_preproc_endregion] = STATE(890), [sym_preproc_line] = STATE(890), @@ -192625,47 +192660,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(890), [sym_preproc_define] = STATE(890), [sym_preproc_undef] = STATE(890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192678,19 +192713,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192701,90 +192736,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [891] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4971), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4279), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(891), [sym_preproc_endregion] = STATE(891), [sym_preproc_line] = STATE(891), @@ -192794,47 +192829,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(891), [sym_preproc_define] = STATE(891), [sym_preproc_undef] = STATE(891), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192847,19 +192882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192870,90 +192905,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [892] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5112), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4224), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(892), [sym_preproc_endregion] = STATE(892), [sym_preproc_line] = STATE(892), @@ -192963,47 +192998,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(892), [sym_preproc_define] = STATE(892), [sym_preproc_undef] = STATE(892), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193016,19 +193051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193039,90 +193074,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [893] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4142), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4232), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(893), [sym_preproc_endregion] = STATE(893), [sym_preproc_line] = STATE(893), @@ -193132,47 +193167,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(893), [sym_preproc_define] = STATE(893), [sym_preproc_undef] = STATE(893), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193185,19 +193220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193208,90 +193243,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [894] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5113), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4233), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(894), [sym_preproc_endregion] = STATE(894), [sym_preproc_line] = STATE(894), @@ -193301,47 +193336,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(894), [sym_preproc_define] = STATE(894), [sym_preproc_undef] = STATE(894), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193354,19 +193389,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193377,90 +193412,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [895] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4940), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4240), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(895), [sym_preproc_endregion] = STATE(895), [sym_preproc_line] = STATE(895), @@ -193470,47 +193505,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(895), [sym_preproc_define] = STATE(895), [sym_preproc_undef] = STATE(895), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193523,19 +193558,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193546,90 +193581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [896] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4933), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4242), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(896), [sym_preproc_endregion] = STATE(896), [sym_preproc_line] = STATE(896), @@ -193639,72 +193674,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(896), [sym_preproc_define] = STATE(896), [sym_preproc_undef] = STATE(896), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193715,90 +193750,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [897] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4244), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(897), [sym_preproc_endregion] = STATE(897), [sym_preproc_line] = STATE(897), @@ -193808,72 +193843,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(897), [sym_preproc_define] = STATE(897), [sym_preproc_undef] = STATE(897), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193884,90 +193919,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [898] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4105), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4246), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(898), [sym_preproc_endregion] = STATE(898), [sym_preproc_line] = STATE(898), @@ -193977,47 +194012,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(898), [sym_preproc_define] = STATE(898), [sym_preproc_undef] = STATE(898), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194030,19 +194065,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194053,90 +194088,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [899] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4127), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4250), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(899), [sym_preproc_endregion] = STATE(899), [sym_preproc_line] = STATE(899), @@ -194146,47 +194181,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(899), [sym_preproc_define] = STATE(899), [sym_preproc_undef] = STATE(899), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194199,19 +194234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194222,90 +194257,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [900] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4133), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4418), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(900), [sym_preproc_endregion] = STATE(900), [sym_preproc_line] = STATE(900), @@ -194315,47 +194350,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(900), [sym_preproc_define] = STATE(900), [sym_preproc_undef] = STATE(900), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194368,19 +194403,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194391,90 +194426,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [901] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4141), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(901), [sym_preproc_endregion] = STATE(901), [sym_preproc_line] = STATE(901), @@ -194484,47 +194519,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(901), [sym_preproc_define] = STATE(901), [sym_preproc_undef] = STATE(901), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194537,19 +194572,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194560,90 +194595,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [902] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4146), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5424), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(902), [sym_preproc_endregion] = STATE(902), [sym_preproc_line] = STATE(902), @@ -194653,47 +194688,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(902), [sym_preproc_define] = STATE(902), [sym_preproc_undef] = STATE(902), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194706,19 +194741,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194729,90 +194764,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [903] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4154), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4440), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(903), [sym_preproc_endregion] = STATE(903), [sym_preproc_line] = STATE(903), @@ -194822,47 +194857,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(903), [sym_preproc_define] = STATE(903), [sym_preproc_undef] = STATE(903), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194875,19 +194910,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194898,90 +194933,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [904] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5230), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(904), [sym_preproc_endregion] = STATE(904), [sym_preproc_line] = STATE(904), @@ -194991,47 +195026,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(904), [sym_preproc_define] = STATE(904), [sym_preproc_undef] = STATE(904), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195044,19 +195079,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195067,90 +195102,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [905] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4132), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4623), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(905), [sym_preproc_endregion] = STATE(905), [sym_preproc_line] = STATE(905), @@ -195160,47 +195195,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(905), [sym_preproc_define] = STATE(905), [sym_preproc_undef] = STATE(905), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195213,19 +195248,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195236,90 +195271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [906] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4564), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5478), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(906), [sym_preproc_endregion] = STATE(906), [sym_preproc_line] = STATE(906), @@ -195329,35 +195364,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(906), [sym_preproc_define] = STATE(906), [sym_preproc_undef] = STATE(906), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -195366,10 +195401,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195411,84 +195446,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [907] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4106), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4104), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(907), [sym_preproc_endregion] = STATE(907), [sym_preproc_line] = STATE(907), @@ -195498,8 +195533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(907), [sym_preproc_define] = STATE(907), [sym_preproc_undef] = STATE(907), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -195580,84 +195615,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [908] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4108), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(908), [sym_preproc_endregion] = STATE(908), [sym_preproc_line] = STATE(908), @@ -195667,47 +195702,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(908), [sym_preproc_define] = STATE(908), [sym_preproc_undef] = STATE(908), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195720,19 +195755,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195743,90 +195778,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [909] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4122), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4190), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(909), [sym_preproc_endregion] = STATE(909), [sym_preproc_line] = STATE(909), @@ -195836,35 +195871,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(909), [sym_preproc_define] = STATE(909), [sym_preproc_undef] = STATE(909), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -195873,10 +195908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195918,84 +195953,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [910] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4951), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(910), [sym_preproc_endregion] = STATE(910), [sym_preproc_line] = STATE(910), @@ -196005,216 +196040,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(910), [sym_preproc_define] = STATE(910), [sym_preproc_undef] = STATE(910), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [911] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4297), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(911), - [sym_preproc_endregion] = STATE(911), - [sym_preproc_line] = STATE(911), - [sym_preproc_pragma] = STATE(911), - [sym_preproc_nullable] = STATE(911), - [sym_preproc_error] = STATE(911), - [sym_preproc_warning] = STATE(911), - [sym_preproc_define] = STATE(911), - [sym_preproc_undef] = STATE(911), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196228,17 +196094,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -196250,140 +196116,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [912] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(912), - [sym_preproc_endregion] = STATE(912), - [sym_preproc_line] = STATE(912), - [sym_preproc_pragma] = STATE(912), - [sym_preproc_nullable] = STATE(912), - [sym_preproc_error] = STATE(912), - [sym_preproc_warning] = STATE(912), - [sym_preproc_define] = STATE(912), - [sym_preproc_undef] = STATE(912), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [911] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5743), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(911), + [sym_preproc_endregion] = STATE(911), + [sym_preproc_line] = STATE(911), + [sym_preproc_pragma] = STATE(911), + [sym_preproc_nullable] = STATE(911), + [sym_preproc_error] = STATE(911), + [sym_preproc_warning] = STATE(911), + [sym_preproc_define] = STATE(911), + [sym_preproc_undef] = STATE(911), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196396,19 +196262,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196419,128 +196285,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [913] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4528), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(913), - [sym_preproc_endregion] = STATE(913), - [sym_preproc_line] = STATE(913), - [sym_preproc_pragma] = STATE(913), - [sym_preproc_nullable] = STATE(913), - [sym_preproc_error] = STATE(913), - [sym_preproc_warning] = STATE(913), - [sym_preproc_define] = STATE(913), - [sym_preproc_undef] = STATE(913), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [912] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4488), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(912), + [sym_preproc_endregion] = STATE(912), + [sym_preproc_line] = STATE(912), + [sym_preproc_pragma] = STATE(912), + [sym_preproc_nullable] = STATE(912), + [sym_preproc_error] = STATE(912), + [sym_preproc_warning] = STATE(912), + [sym_preproc_define] = STATE(912), + [sym_preproc_undef] = STATE(912), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), + [anon_sym_new] = ACTIONS(1471), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), [anon_sym_true] = ACTIONS(1413), [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), [anon_sym_this] = ACTIONS(1417), [anon_sym_scoped] = ACTIONS(1419), [anon_sym_base] = ACTIONS(1421), @@ -196549,10 +196415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1407), [anon_sym_yield] = ACTIONS(1393), [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), + [anon_sym_throw] = ACTIONS(1637), [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), [anon_sym_from] = ACTIONS(1435), [anon_sym_into] = ACTIONS(1393), [anon_sym_join] = ACTIONS(1393), @@ -196593,160 +196459,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1463), [sym_raw_string_start] = ACTIONS(1465), }, - [914] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5034), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(914), - [sym_preproc_endregion] = STATE(914), - [sym_preproc_line] = STATE(914), - [sym_preproc_pragma] = STATE(914), - [sym_preproc_nullable] = STATE(914), - [sym_preproc_error] = STATE(914), - [sym_preproc_warning] = STATE(914), - [sym_preproc_define] = STATE(914), - [sym_preproc_undef] = STATE(914), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [913] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4939), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(913), + [sym_preproc_endregion] = STATE(913), + [sym_preproc_line] = STATE(913), + [sym_preproc_pragma] = STATE(913), + [sym_preproc_nullable] = STATE(913), + [sym_preproc_error] = STATE(913), + [sym_preproc_warning] = STATE(913), + [sym_preproc_define] = STATE(913), + [sym_preproc_undef] = STATE(913), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196757,90 +196623,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [914] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(914), + [sym_preproc_endregion] = STATE(914), + [sym_preproc_line] = STATE(914), + [sym_preproc_pragma] = STATE(914), + [sym_preproc_nullable] = STATE(914), + [sym_preproc_error] = STATE(914), + [sym_preproc_warning] = STATE(914), + [sym_preproc_define] = STATE(914), + [sym_preproc_undef] = STATE(914), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [915] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5392), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5457), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(915), [sym_preproc_endregion] = STATE(915), [sym_preproc_line] = STATE(915), @@ -196850,35 +196885,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(915), [sym_preproc_define] = STATE(915), [sym_preproc_undef] = STATE(915), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -196887,10 +196922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196932,84 +196967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [916] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4342), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5504), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(916), [sym_preproc_endregion] = STATE(916), [sym_preproc_line] = STATE(916), @@ -197019,47 +197054,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(916), [sym_preproc_define] = STATE(916), [sym_preproc_undef] = STATE(916), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197072,19 +197107,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197101,84 +197136,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [917] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4826), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(917), [sym_preproc_endregion] = STATE(917), [sym_preproc_line] = STATE(917), @@ -197188,47 +197223,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(917), [sym_preproc_define] = STATE(917), [sym_preproc_undef] = STATE(917), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197241,19 +197276,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197270,84 +197305,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [918] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4150), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4827), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(918), [sym_preproc_endregion] = STATE(918), [sym_preproc_line] = STATE(918), @@ -197357,47 +197392,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(918), [sym_preproc_define] = STATE(918), [sym_preproc_undef] = STATE(918), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197410,19 +197445,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197433,90 +197468,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [919] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4894), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4828), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(919), [sym_preproc_endregion] = STATE(919), [sym_preproc_line] = STATE(919), @@ -197526,72 +197561,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(919), [sym_preproc_define] = STATE(919), [sym_preproc_undef] = STATE(919), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197602,90 +197637,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [920] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4896), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4829), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(920), [sym_preproc_endregion] = STATE(920), [sym_preproc_line] = STATE(920), @@ -197695,72 +197730,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(920), [sym_preproc_define] = STATE(920), [sym_preproc_undef] = STATE(920), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197771,90 +197806,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [921] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4897), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4830), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(921), [sym_preproc_endregion] = STATE(921), [sym_preproc_line] = STATE(921), @@ -197864,72 +197899,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(921), [sym_preproc_define] = STATE(921), [sym_preproc_undef] = STATE(921), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197940,90 +197975,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [922] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4898), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4831), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(922), [sym_preproc_endregion] = STATE(922), [sym_preproc_line] = STATE(922), @@ -198033,72 +198068,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(922), [sym_preproc_define] = STATE(922), [sym_preproc_undef] = STATE(922), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198109,90 +198144,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [923] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4899), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4832), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(923), [sym_preproc_endregion] = STATE(923), [sym_preproc_line] = STATE(923), @@ -198202,72 +198237,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(923), [sym_preproc_define] = STATE(923), [sym_preproc_undef] = STATE(923), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198278,90 +198313,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [924] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4902), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4833), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(924), [sym_preproc_endregion] = STATE(924), [sym_preproc_line] = STATE(924), @@ -198371,72 +198406,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(924), [sym_preproc_define] = STATE(924), [sym_preproc_undef] = STATE(924), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198447,90 +198482,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [925] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4903), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4835), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(925), [sym_preproc_endregion] = STATE(925), [sym_preproc_line] = STATE(925), @@ -198540,72 +198575,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(925), [sym_preproc_define] = STATE(925), [sym_preproc_undef] = STATE(925), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198616,90 +198651,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [926] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4920), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4836), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(926), [sym_preproc_endregion] = STATE(926), [sym_preproc_line] = STATE(926), @@ -198709,72 +198744,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(926), [sym_preproc_define] = STATE(926), [sym_preproc_undef] = STATE(926), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198785,90 +198820,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [927] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4921), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4837), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(927), [sym_preproc_endregion] = STATE(927), [sym_preproc_line] = STATE(927), @@ -198878,72 +198913,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(927), [sym_preproc_define] = STATE(927), [sym_preproc_undef] = STATE(927), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198954,90 +198989,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [928] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4923), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4953), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(928), [sym_preproc_endregion] = STATE(928), [sym_preproc_line] = STATE(928), @@ -199047,385 +199082,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(928), [sym_preproc_define] = STATE(928), [sym_preproc_undef] = STATE(928), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [929] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4927), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(929), - [sym_preproc_endregion] = STATE(929), - [sym_preproc_line] = STATE(929), - [sym_preproc_pragma] = STATE(929), - [sym_preproc_nullable] = STATE(929), - [sym_preproc_error] = STATE(929), - [sym_preproc_warning] = STATE(929), - [sym_preproc_define] = STATE(929), - [sym_preproc_undef] = STATE(929), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [930] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4384), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(930), - [sym_preproc_endregion] = STATE(930), - [sym_preproc_line] = STATE(930), - [sym_preproc_pragma] = STATE(930), - [sym_preproc_nullable] = STATE(930), - [sym_preproc_error] = STATE(930), - [sym_preproc_warning] = STATE(930), - [sym_preproc_define] = STATE(930), - [sym_preproc_undef] = STATE(930), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199438,19 +199135,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199466,292 +199163,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [931] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(931), - [sym_preproc_endregion] = STATE(931), - [sym_preproc_line] = STATE(931), - [sym_preproc_pragma] = STATE(931), - [sym_preproc_nullable] = STATE(931), - [sym_preproc_error] = STATE(931), - [sym_preproc_warning] = STATE(931), - [sym_preproc_define] = STATE(931), - [sym_preproc_undef] = STATE(931), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [932] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4018), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(932), - [sym_preproc_endregion] = STATE(932), - [sym_preproc_line] = STATE(932), - [sym_preproc_pragma] = STATE(932), - [sym_preproc_nullable] = STATE(932), - [sym_preproc_error] = STATE(932), - [sym_preproc_warning] = STATE(932), - [sym_preproc_define] = STATE(932), - [sym_preproc_undef] = STATE(932), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [929] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4220), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(929), + [sym_preproc_endregion] = STATE(929), + [sym_preproc_line] = STATE(929), + [sym_preproc_pragma] = STATE(929), + [sym_preproc_nullable] = STATE(929), + [sym_preproc_error] = STATE(929), + [sym_preproc_warning] = STATE(929), + [sym_preproc_define] = STATE(929), + [sym_preproc_undef] = STATE(929), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -199760,10 +199288,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199804,123 +199332,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [933] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4313), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [930] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(930), + [sym_preproc_endregion] = STATE(930), + [sym_preproc_line] = STATE(930), + [sym_preproc_pragma] = STATE(930), + [sym_preproc_nullable] = STATE(930), + [sym_preproc_error] = STATE(930), + [sym_preproc_warning] = STATE(930), + [sym_preproc_define] = STATE(930), + [sym_preproc_undef] = STATE(930), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [931] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4739), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(933), - [sym_preproc_endregion] = STATE(933), - [sym_preproc_line] = STATE(933), - [sym_preproc_pragma] = STATE(933), - [sym_preproc_nullable] = STATE(933), - [sym_preproc_error] = STATE(933), - [sym_preproc_warning] = STATE(933), - [sym_preproc_define] = STATE(933), - [sym_preproc_undef] = STATE(933), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(931), + [sym_preproc_endregion] = STATE(931), + [sym_preproc_line] = STATE(931), + [sym_preproc_pragma] = STATE(931), + [sym_preproc_nullable] = STATE(931), + [sym_preproc_error] = STATE(931), + [sym_preproc_warning] = STATE(931), + [sym_preproc_define] = STATE(931), + [sym_preproc_undef] = STATE(931), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -199929,10 +199626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199973,135 +199670,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [934] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3764), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(934), - [sym_preproc_endregion] = STATE(934), - [sym_preproc_line] = STATE(934), - [sym_preproc_pragma] = STATE(934), - [sym_preproc_nullable] = STATE(934), - [sym_preproc_error] = STATE(934), - [sym_preproc_warning] = STATE(934), - [sym_preproc_define] = STATE(934), - [sym_preproc_undef] = STATE(934), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [932] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5544), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(932), + [sym_preproc_endregion] = STATE(932), + [sym_preproc_line] = STATE(932), + [sym_preproc_pragma] = STATE(932), + [sym_preproc_nullable] = STATE(932), + [sym_preproc_error] = STATE(932), + [sym_preproc_warning] = STATE(932), + [sym_preproc_define] = STATE(932), + [sym_preproc_undef] = STATE(932), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200114,19 +199811,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200137,140 +199834,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [935] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(935), - [sym_preproc_endregion] = STATE(935), - [sym_preproc_line] = STATE(935), - [sym_preproc_pragma] = STATE(935), - [sym_preproc_nullable] = STATE(935), - [sym_preproc_error] = STATE(935), - [sym_preproc_warning] = STATE(935), - [sym_preproc_define] = STATE(935), - [sym_preproc_undef] = STATE(935), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [933] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5629), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(933), + [sym_preproc_endregion] = STATE(933), + [sym_preproc_line] = STATE(933), + [sym_preproc_pragma] = STATE(933), + [sym_preproc_nullable] = STATE(933), + [sym_preproc_error] = STATE(933), + [sym_preproc_warning] = STATE(933), + [sym_preproc_define] = STATE(933), + [sym_preproc_undef] = STATE(933), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200283,19 +199980,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200306,140 +200003,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [936] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3771), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(936), - [sym_preproc_endregion] = STATE(936), - [sym_preproc_line] = STATE(936), - [sym_preproc_pragma] = STATE(936), - [sym_preproc_nullable] = STATE(936), - [sym_preproc_error] = STATE(936), - [sym_preproc_warning] = STATE(936), - [sym_preproc_define] = STATE(936), - [sym_preproc_undef] = STATE(936), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [934] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4859), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(934), + [sym_preproc_endregion] = STATE(934), + [sym_preproc_line] = STATE(934), + [sym_preproc_pragma] = STATE(934), + [sym_preproc_nullable] = STATE(934), + [sym_preproc_error] = STATE(934), + [sym_preproc_warning] = STATE(934), + [sym_preproc_define] = STATE(934), + [sym_preproc_undef] = STATE(934), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200452,19 +200149,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200475,140 +200172,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [937] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3774), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(937), - [sym_preproc_endregion] = STATE(937), - [sym_preproc_line] = STATE(937), - [sym_preproc_pragma] = STATE(937), - [sym_preproc_nullable] = STATE(937), - [sym_preproc_error] = STATE(937), - [sym_preproc_warning] = STATE(937), - [sym_preproc_define] = STATE(937), - [sym_preproc_undef] = STATE(937), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [935] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5375), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(935), + [sym_preproc_endregion] = STATE(935), + [sym_preproc_line] = STATE(935), + [sym_preproc_pragma] = STATE(935), + [sym_preproc_nullable] = STATE(935), + [sym_preproc_error] = STATE(935), + [sym_preproc_warning] = STATE(935), + [sym_preproc_define] = STATE(935), + [sym_preproc_undef] = STATE(935), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200621,19 +200318,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200644,140 +200341,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [938] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3775), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(938), - [sym_preproc_endregion] = STATE(938), - [sym_preproc_line] = STATE(938), - [sym_preproc_pragma] = STATE(938), - [sym_preproc_nullable] = STATE(938), - [sym_preproc_error] = STATE(938), - [sym_preproc_warning] = STATE(938), - [sym_preproc_define] = STATE(938), - [sym_preproc_undef] = STATE(938), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [936] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4214), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(936), + [sym_preproc_endregion] = STATE(936), + [sym_preproc_line] = STATE(936), + [sym_preproc_pragma] = STATE(936), + [sym_preproc_nullable] = STATE(936), + [sym_preproc_error] = STATE(936), + [sym_preproc_warning] = STATE(936), + [sym_preproc_define] = STATE(936), + [sym_preproc_undef] = STATE(936), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200790,19 +200487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200813,90 +200510,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), + }, + [937] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4370), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(937), + [sym_preproc_endregion] = STATE(937), + [sym_preproc_line] = STATE(937), + [sym_preproc_pragma] = STATE(937), + [sym_preproc_nullable] = STATE(937), + [sym_preproc_error] = STATE(937), + [sym_preproc_warning] = STATE(937), + [sym_preproc_define] = STATE(937), + [sym_preproc_undef] = STATE(937), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [938] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5738), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3219), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(938), + [sym_preproc_endregion] = STATE(938), + [sym_preproc_line] = STATE(938), + [sym_preproc_pragma] = STATE(938), + [sym_preproc_nullable] = STATE(938), + [sym_preproc_error] = STATE(938), + [sym_preproc_warning] = STATE(938), + [sym_preproc_define] = STATE(938), + [sym_preproc_undef] = STATE(938), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [939] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3776), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4872), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(939), [sym_preproc_endregion] = STATE(939), [sym_preproc_line] = STATE(939), @@ -200906,47 +200941,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(939), [sym_preproc_define] = STATE(939), [sym_preproc_undef] = STATE(939), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200959,19 +200994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200982,90 +201017,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [940] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3777), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4873), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(940), [sym_preproc_endregion] = STATE(940), [sym_preproc_line] = STATE(940), @@ -201075,47 +201110,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(940), [sym_preproc_define] = STATE(940), [sym_preproc_undef] = STATE(940), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201128,19 +201163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201151,90 +201186,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [941] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3778), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4543), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(941), [sym_preproc_endregion] = STATE(941), [sym_preproc_line] = STATE(941), @@ -201244,47 +201279,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(941), [sym_preproc_define] = STATE(941), [sym_preproc_undef] = STATE(941), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201297,19 +201332,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201320,90 +201355,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [942] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3779), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4874), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(942), [sym_preproc_endregion] = STATE(942), [sym_preproc_line] = STATE(942), @@ -201413,47 +201448,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(942), [sym_preproc_define] = STATE(942), [sym_preproc_undef] = STATE(942), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201466,19 +201501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201489,90 +201524,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [943] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3780), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4875), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(943), [sym_preproc_endregion] = STATE(943), [sym_preproc_line] = STATE(943), @@ -201582,47 +201617,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(943), [sym_preproc_define] = STATE(943), [sym_preproc_undef] = STATE(943), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201635,19 +201670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201658,90 +201693,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [944] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3782), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4876), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(944), [sym_preproc_endregion] = STATE(944), [sym_preproc_line] = STATE(944), @@ -201751,47 +201786,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(944), [sym_preproc_define] = STATE(944), [sym_preproc_undef] = STATE(944), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201804,19 +201839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201827,90 +201862,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [945] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3786), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4877), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(945), [sym_preproc_endregion] = STATE(945), [sym_preproc_line] = STATE(945), @@ -201920,47 +201955,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(945), [sym_preproc_define] = STATE(945), [sym_preproc_undef] = STATE(945), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201973,19 +202008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201996,90 +202031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [946] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3787), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4878), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(946), [sym_preproc_endregion] = STATE(946), [sym_preproc_line] = STATE(946), @@ -202089,47 +202124,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(946), [sym_preproc_define] = STATE(946), [sym_preproc_undef] = STATE(946), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202142,19 +202177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202165,90 +202200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [947] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3793), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4879), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(947), [sym_preproc_endregion] = STATE(947), [sym_preproc_line] = STATE(947), @@ -202258,47 +202293,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(947), [sym_preproc_define] = STATE(947), [sym_preproc_undef] = STATE(947), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202311,19 +202346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202334,90 +202369,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [948] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4880), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(948), [sym_preproc_endregion] = STATE(948), [sym_preproc_line] = STATE(948), @@ -202427,47 +202462,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(948), [sym_preproc_define] = STATE(948), [sym_preproc_undef] = STATE(948), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202480,19 +202515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202503,90 +202538,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [949] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3811), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4881), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(949), [sym_preproc_endregion] = STATE(949), [sym_preproc_line] = STATE(949), @@ -202596,47 +202631,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(949), [sym_preproc_define] = STATE(949), [sym_preproc_undef] = STATE(949), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202649,19 +202684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202672,90 +202707,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [950] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4443), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(950), [sym_preproc_endregion] = STATE(950), [sym_preproc_line] = STATE(950), @@ -202765,72 +202800,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(950), [sym_preproc_define] = STATE(950), [sym_preproc_undef] = STATE(950), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202841,90 +202876,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [951] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(951), [sym_preproc_endregion] = STATE(951), [sym_preproc_line] = STATE(951), @@ -202934,17 +202969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(951), [sym_preproc_define] = STATE(951), [sym_preproc_undef] = STATE(951), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -202952,17 +202987,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -202971,10 +203006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203016,84 +203051,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [952] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4173), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(952), [sym_preproc_endregion] = STATE(952), [sym_preproc_line] = STATE(952), @@ -203103,47 +203138,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(952), [sym_preproc_define] = STATE(952), [sym_preproc_undef] = STATE(952), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203156,19 +203191,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203179,90 +203214,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [953] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(953), [sym_preproc_endregion] = STATE(953), [sym_preproc_line] = STATE(953), @@ -203272,47 +203307,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(953), [sym_preproc_define] = STATE(953), [sym_preproc_undef] = STATE(953), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203325,19 +203360,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203348,90 +203383,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [954] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4893), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4892), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(954), [sym_preproc_endregion] = STATE(954), [sym_preproc_line] = STATE(954), @@ -203441,17 +203476,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(954), [sym_preproc_define] = STATE(954), [sym_preproc_undef] = STATE(954), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -203459,17 +203494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -203481,7 +203516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203523,84 +203558,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [955] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4677), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4231), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(955), [sym_preproc_endregion] = STATE(955), [sym_preproc_line] = STATE(955), @@ -203610,47 +203645,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(955), [sym_preproc_define] = STATE(955), [sym_preproc_undef] = STATE(955), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203664,17 +203699,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -203686,90 +203721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [956] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4182), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(956), [sym_preproc_endregion] = STATE(956), [sym_preproc_line] = STATE(956), @@ -203779,47 +203814,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(956), [sym_preproc_define] = STATE(956), [sym_preproc_undef] = STATE(956), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203832,19 +203867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203855,90 +203890,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [957] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4682), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4134), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(957), [sym_preproc_endregion] = STATE(957), [sym_preproc_line] = STATE(957), @@ -203948,47 +203983,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(957), [sym_preproc_define] = STATE(957), [sym_preproc_undef] = STATE(957), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204002,17 +204037,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -204024,90 +204059,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [958] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4683), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4745), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(958), [sym_preproc_endregion] = STATE(958), [sym_preproc_line] = STATE(958), @@ -204117,47 +204152,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(958), [sym_preproc_define] = STATE(958), [sym_preproc_undef] = STATE(958), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204170,19 +204205,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204193,90 +204228,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [959] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4684), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4198), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(959), [sym_preproc_endregion] = STATE(959), [sym_preproc_line] = STATE(959), @@ -204286,47 +204321,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(959), [sym_preproc_define] = STATE(959), [sym_preproc_undef] = STATE(959), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204339,19 +204374,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204362,90 +204397,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [960] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4687), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4195), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(960), [sym_preproc_endregion] = STATE(960), [sym_preproc_line] = STATE(960), @@ -204455,47 +204490,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(960), [sym_preproc_define] = STATE(960), [sym_preproc_undef] = STATE(960), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204508,19 +204543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204531,90 +204566,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [961] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4688), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4199), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(961), [sym_preproc_endregion] = STATE(961), [sym_preproc_line] = STATE(961), @@ -204624,47 +204659,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(961), [sym_preproc_define] = STATE(961), [sym_preproc_undef] = STATE(961), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204677,19 +204712,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204700,90 +204735,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [962] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4689), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4204), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(962), [sym_preproc_endregion] = STATE(962), [sym_preproc_line] = STATE(962), @@ -204793,47 +204828,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(962), [sym_preproc_define] = STATE(962), [sym_preproc_undef] = STATE(962), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204846,19 +204881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204869,90 +204904,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [963] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4690), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4208), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(963), [sym_preproc_endregion] = STATE(963), [sym_preproc_line] = STATE(963), @@ -204962,47 +204997,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(963), [sym_preproc_define] = STATE(963), [sym_preproc_undef] = STATE(963), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205015,19 +205050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205038,90 +205073,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [964] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4691), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4218), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(964), [sym_preproc_endregion] = STATE(964), [sym_preproc_line] = STATE(964), @@ -205131,47 +205166,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(964), [sym_preproc_define] = STATE(964), [sym_preproc_undef] = STATE(964), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205184,19 +205219,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205207,90 +205242,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [965] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4693), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4194), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(965), [sym_preproc_endregion] = STATE(965), [sym_preproc_line] = STATE(965), @@ -205300,47 +205335,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(965), [sym_preproc_define] = STATE(965), [sym_preproc_undef] = STATE(965), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205353,19 +205388,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205376,90 +205411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [966] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4694), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4192), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(966), [sym_preproc_endregion] = STATE(966), [sym_preproc_line] = STATE(966), @@ -205469,47 +205504,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(966), [sym_preproc_define] = STATE(966), [sym_preproc_undef] = STATE(966), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205522,19 +205557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205545,90 +205580,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [967] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4695), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(967), [sym_preproc_endregion] = STATE(967), [sym_preproc_line] = STATE(967), @@ -205638,47 +205673,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(967), [sym_preproc_define] = STATE(967), [sym_preproc_undef] = STATE(967), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205691,19 +205726,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205714,90 +205749,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [968] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4678), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4183), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(968), [sym_preproc_endregion] = STATE(968), [sym_preproc_line] = STATE(968), @@ -205807,47 +205842,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(968), [sym_preproc_define] = STATE(968), [sym_preproc_undef] = STATE(968), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205860,19 +205895,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205883,90 +205918,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [969] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4485), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4184), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(969), [sym_preproc_endregion] = STATE(969), [sym_preproc_line] = STATE(969), @@ -205976,35 +206011,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(969), [sym_preproc_define] = STATE(969), [sym_preproc_undef] = STATE(969), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -206013,10 +206048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206058,84 +206093,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [970] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4187), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(970), [sym_preproc_endregion] = STATE(970), [sym_preproc_line] = STATE(970), @@ -206145,47 +206180,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(970), [sym_preproc_define] = STATE(970), [sym_preproc_undef] = STATE(970), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206198,19 +206233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206221,90 +206256,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [971] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5328), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(971), [sym_preproc_endregion] = STATE(971), [sym_preproc_line] = STATE(971), @@ -206314,47 +206349,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(971), [sym_preproc_define] = STATE(971), [sym_preproc_undef] = STATE(971), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206367,19 +206402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206390,90 +206425,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [972] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5330), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4544), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(972), [sym_preproc_endregion] = STATE(972), [sym_preproc_line] = STATE(972), @@ -206483,47 +206518,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(972), [sym_preproc_define] = STATE(972), [sym_preproc_undef] = STATE(972), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206536,19 +206571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206565,84 +206600,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [973] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4294), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(973), [sym_preproc_endregion] = STATE(973), [sym_preproc_line] = STATE(973), @@ -206652,35 +206687,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(973), [sym_preproc_define] = STATE(973), [sym_preproc_undef] = STATE(973), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -206689,10 +206724,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206734,85 +206769,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [974] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(974), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4553), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(974), [sym_preproc_endregion] = STATE(974), [sym_preproc_line] = STATE(974), [sym_preproc_pragma] = STATE(974), @@ -206821,47 +206856,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(974), [sym_preproc_define] = STATE(974), [sym_preproc_undef] = STATE(974), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206874,19 +206909,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206903,84 +206938,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [975] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4972), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4555), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(975), [sym_preproc_endregion] = STATE(975), [sym_preproc_line] = STATE(975), @@ -206990,47 +207025,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(975), [sym_preproc_define] = STATE(975), [sym_preproc_undef] = STATE(975), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207043,19 +207078,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207072,84 +207107,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [976] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4248), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(976), [sym_preproc_endregion] = STATE(976), [sym_preproc_line] = STATE(976), @@ -207159,47 +207194,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(976), [sym_preproc_define] = STATE(976), [sym_preproc_undef] = STATE(976), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207212,19 +207247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207235,90 +207270,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [977] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5173), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(977), [sym_preproc_endregion] = STATE(977), [sym_preproc_line] = STATE(977), @@ -207328,47 +207363,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(977), [sym_preproc_define] = STATE(977), [sym_preproc_undef] = STATE(977), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207381,19 +207416,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207404,90 +207439,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [978] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4707), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4479), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(978), [sym_preproc_endregion] = STATE(978), [sym_preproc_line] = STATE(978), @@ -207497,47 +207532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(978), [sym_preproc_define] = STATE(978), [sym_preproc_undef] = STATE(978), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207550,19 +207585,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207573,90 +207608,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [979] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4436), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4480), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(979), [sym_preproc_endregion] = STATE(979), [sym_preproc_line] = STATE(979), @@ -207666,47 +207701,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(979), [sym_preproc_define] = STATE(979), [sym_preproc_undef] = STATE(979), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207719,19 +207754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207742,90 +207777,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [980] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4975), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4494), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(980), [sym_preproc_endregion] = STATE(980), [sym_preproc_line] = STATE(980), @@ -207835,47 +207870,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(980), [sym_preproc_define] = STATE(980), [sym_preproc_undef] = STATE(980), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207888,19 +207923,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207911,90 +207946,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [981] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5472), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4502), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(981), [sym_preproc_endregion] = STATE(981), [sym_preproc_line] = STATE(981), @@ -208004,47 +208039,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(981), [sym_preproc_define] = STATE(981), [sym_preproc_undef] = STATE(981), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208057,19 +208092,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208080,90 +208115,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [982] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5409), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4513), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(982), [sym_preproc_endregion] = STATE(982), [sym_preproc_line] = STATE(982), @@ -208173,47 +208208,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(982), [sym_preproc_define] = STATE(982), [sym_preproc_undef] = STATE(982), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208226,19 +208261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208249,90 +208284,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [983] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4228), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4516), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(983), [sym_preproc_endregion] = STATE(983), [sym_preproc_line] = STATE(983), @@ -208342,47 +208377,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(983), [sym_preproc_define] = STATE(983), [sym_preproc_undef] = STATE(983), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208395,19 +208430,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208418,90 +208453,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [984] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4509), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(984), [sym_preproc_endregion] = STATE(984), [sym_preproc_line] = STATE(984), @@ -208511,72 +208546,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(984), [sym_preproc_define] = STATE(984), [sym_preproc_undef] = STATE(984), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208587,90 +208622,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [985] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5757), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3223), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4528), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(985), [sym_preproc_endregion] = STATE(985), [sym_preproc_line] = STATE(985), @@ -208680,72 +208715,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(985), [sym_preproc_define] = STATE(985), [sym_preproc_undef] = STATE(985), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208756,90 +208791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [986] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4226), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4397), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(986), [sym_preproc_endregion] = STATE(986), [sym_preproc_line] = STATE(986), @@ -208849,47 +208884,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(986), [sym_preproc_define] = STATE(986), [sym_preproc_undef] = STATE(986), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208902,113 +208937,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [987] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4286), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4475), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(987), [sym_preproc_endregion] = STATE(987), [sym_preproc_line] = STATE(987), @@ -209018,47 +209053,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(987), [sym_preproc_define] = STATE(987), [sym_preproc_undef] = STATE(987), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209071,19 +209106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209094,90 +209129,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [988] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4235), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4392), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(988), [sym_preproc_endregion] = STATE(988), [sym_preproc_line] = STATE(988), @@ -209187,47 +209222,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(988), [sym_preproc_define] = STATE(988), [sym_preproc_undef] = STATE(988), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209240,19 +209275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209263,90 +209298,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [989] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4264), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4255), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(989), [sym_preproc_endregion] = STATE(989), [sym_preproc_line] = STATE(989), @@ -209356,47 +209391,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(989), [sym_preproc_define] = STATE(989), [sym_preproc_undef] = STATE(989), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209409,19 +209444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209432,90 +209467,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [990] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4296), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(990), [sym_preproc_endregion] = STATE(990), [sym_preproc_line] = STATE(990), @@ -209525,47 +209560,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(990), [sym_preproc_define] = STATE(990), [sym_preproc_undef] = STATE(990), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209578,19 +209613,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209601,90 +209636,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [991] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4223), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4281), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(991), [sym_preproc_endregion] = STATE(991), [sym_preproc_line] = STATE(991), @@ -209694,47 +209729,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(991), [sym_preproc_define] = STATE(991), [sym_preproc_undef] = STATE(991), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209747,19 +209782,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209770,90 +209805,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [992] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4225), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(992), [sym_preproc_endregion] = STATE(992), [sym_preproc_line] = STATE(992), @@ -209863,15 +209898,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(992), [sym_preproc_define] = STATE(992), [sym_preproc_undef] = STATE(992), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -209881,17 +209916,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -209900,10 +209935,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209945,84 +209980,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [993] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4233), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5718), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2948), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(993), [sym_preproc_endregion] = STATE(993), [sym_preproc_line] = STATE(993), @@ -210032,47 +210067,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(993), [sym_preproc_define] = STATE(993), [sym_preproc_undef] = STATE(993), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210085,19 +210120,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210114,84 +210149,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [994] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4246), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4301), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(994), [sym_preproc_endregion] = STATE(994), [sym_preproc_line] = STATE(994), @@ -210201,15 +210236,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(994), [sym_preproc_define] = STATE(994), [sym_preproc_undef] = STATE(994), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -210219,17 +210254,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -210238,10 +210273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210283,84 +210318,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [995] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4338), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(995), [sym_preproc_endregion] = STATE(995), [sym_preproc_line] = STATE(995), @@ -210370,15 +210405,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(995), [sym_preproc_define] = STATE(995), [sym_preproc_undef] = STATE(995), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -210388,17 +210423,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -210407,10 +210442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210452,84 +210487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [996] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4222), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4350), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(996), [sym_preproc_endregion] = STATE(996), [sym_preproc_line] = STATE(996), @@ -210539,15 +210574,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(996), [sym_preproc_define] = STATE(996), [sym_preproc_undef] = STATE(996), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -210557,17 +210592,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -210576,10 +210611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210621,84 +210656,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [997] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4356), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(997), [sym_preproc_endregion] = STATE(997), [sym_preproc_line] = STATE(997), @@ -210708,15 +210743,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(997), [sym_preproc_define] = STATE(997), [sym_preproc_undef] = STATE(997), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -210726,17 +210761,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -210745,10 +210780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210790,84 +210825,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [998] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3844), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4359), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(998), [sym_preproc_endregion] = STATE(998), [sym_preproc_line] = STATE(998), @@ -210877,47 +210912,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(998), [sym_preproc_define] = STATE(998), [sym_preproc_undef] = STATE(998), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210930,19 +210965,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210953,90 +210988,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [999] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4996), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(999), [sym_preproc_endregion] = STATE(999), [sym_preproc_line] = STATE(999), @@ -211046,47 +211081,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(999), [sym_preproc_define] = STATE(999), [sym_preproc_undef] = STATE(999), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211099,19 +211134,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211122,90 +211157,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1000] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3871), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1000), [sym_preproc_endregion] = STATE(1000), [sym_preproc_line] = STATE(1000), @@ -211215,47 +211250,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1000), [sym_preproc_define] = STATE(1000), [sym_preproc_undef] = STATE(1000), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211268,19 +211303,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211291,90 +211326,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1001] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3652), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4315), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1001), [sym_preproc_endregion] = STATE(1001), [sym_preproc_line] = STATE(1001), @@ -211384,47 +211419,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1001), [sym_preproc_define] = STATE(1001), [sym_preproc_undef] = STATE(1001), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211437,19 +211472,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211460,90 +211495,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1002] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3879), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4328), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1002), [sym_preproc_endregion] = STATE(1002), [sym_preproc_line] = STATE(1002), @@ -211553,47 +211588,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1002), [sym_preproc_define] = STATE(1002), [sym_preproc_undef] = STATE(1002), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211606,19 +211641,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211629,90 +211664,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1003] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4504), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4335), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1003), [sym_preproc_endregion] = STATE(1003), [sym_preproc_line] = STATE(1003), @@ -211722,47 +211757,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1003), [sym_preproc_define] = STATE(1003), [sym_preproc_undef] = STATE(1003), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211775,19 +211810,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211798,90 +211833,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1004] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4349), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1004), [sym_preproc_endregion] = STATE(1004), [sym_preproc_line] = STATE(1004), @@ -211891,47 +211926,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1004), [sym_preproc_define] = STATE(1004), [sym_preproc_undef] = STATE(1004), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211944,19 +211979,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211967,90 +212002,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1005] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3936), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4352), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1005), [sym_preproc_endregion] = STATE(1005), [sym_preproc_line] = STATE(1005), @@ -212060,47 +212095,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1005), [sym_preproc_define] = STATE(1005), [sym_preproc_undef] = STATE(1005), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212113,19 +212148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212136,90 +212171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1006] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3938), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4354), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1006), [sym_preproc_endregion] = STATE(1006), [sym_preproc_line] = STATE(1006), @@ -212229,47 +212264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1006), [sym_preproc_define] = STATE(1006), [sym_preproc_undef] = STATE(1006), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212282,19 +212317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212305,90 +212340,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1007] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3847), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4225), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1007), [sym_preproc_endregion] = STATE(1007), [sym_preproc_line] = STATE(1007), @@ -212398,47 +212433,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1007), [sym_preproc_define] = STATE(1007), [sym_preproc_undef] = STATE(1007), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212451,19 +212486,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212474,90 +212509,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1008] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3750), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4994), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1008), [sym_preproc_endregion] = STATE(1008), [sym_preproc_line] = STATE(1008), @@ -212567,47 +212602,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1008), [sym_preproc_define] = STATE(1008), [sym_preproc_undef] = STATE(1008), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212620,19 +212655,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212643,90 +212678,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1009] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3751), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5001), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1009), [sym_preproc_endregion] = STATE(1009), [sym_preproc_line] = STATE(1009), @@ -212736,47 +212771,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1009), [sym_preproc_define] = STATE(1009), [sym_preproc_undef] = STATE(1009), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212789,19 +212824,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212812,90 +212847,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1010] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3752), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5009), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1010), [sym_preproc_endregion] = STATE(1010), [sym_preproc_line] = STATE(1010), @@ -212905,47 +212940,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1010), [sym_preproc_define] = STATE(1010), [sym_preproc_undef] = STATE(1010), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212958,19 +212993,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212981,90 +213016,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1011] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3738), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5010), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1011), [sym_preproc_endregion] = STATE(1011), [sym_preproc_line] = STATE(1011), @@ -213074,47 +213109,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1011), [sym_preproc_define] = STATE(1011), [sym_preproc_undef] = STATE(1011), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213127,19 +213162,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213150,90 +213185,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1012] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3753), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5012), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1012), [sym_preproc_endregion] = STATE(1012), [sym_preproc_line] = STATE(1012), @@ -213243,47 +213278,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1012), [sym_preproc_define] = STATE(1012), [sym_preproc_undef] = STATE(1012), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213296,19 +213331,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213319,90 +213354,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1013] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3755), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5013), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1013), [sym_preproc_endregion] = STATE(1013), [sym_preproc_line] = STATE(1013), @@ -213412,47 +213447,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1013), [sym_preproc_define] = STATE(1013), [sym_preproc_undef] = STATE(1013), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213465,19 +213500,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213488,90 +213523,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1014] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5014), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1014), [sym_preproc_endregion] = STATE(1014), [sym_preproc_line] = STATE(1014), @@ -213581,47 +213616,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1014), [sym_preproc_define] = STATE(1014), [sym_preproc_undef] = STATE(1014), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213634,19 +213669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213657,90 +213692,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1015] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3758), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5015), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1015), [sym_preproc_endregion] = STATE(1015), [sym_preproc_line] = STATE(1015), @@ -213750,47 +213785,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1015), [sym_preproc_define] = STATE(1015), [sym_preproc_undef] = STATE(1015), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -213803,19 +213838,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213826,90 +213861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1016] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4445), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4658), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1016), [sym_preproc_endregion] = STATE(1016), [sym_preproc_line] = STATE(1016), @@ -213919,72 +213954,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1016), [sym_preproc_define] = STATE(1016), [sym_preproc_undef] = STATE(1016), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213995,90 +214030,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1017] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5017), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1017), [sym_preproc_endregion] = STATE(1017), [sym_preproc_line] = STATE(1017), @@ -214088,47 +214123,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1017), [sym_preproc_define] = STATE(1017), [sym_preproc_undef] = STATE(1017), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214141,19 +214176,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214164,90 +214199,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1018] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5020), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1018), [sym_preproc_endregion] = STATE(1018), [sym_preproc_line] = STATE(1018), @@ -214257,47 +214292,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1018), [sym_preproc_define] = STATE(1018), [sym_preproc_undef] = STATE(1018), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214310,19 +214345,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214333,90 +214368,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1019] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5023), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1019), [sym_preproc_endregion] = STATE(1019), [sym_preproc_line] = STATE(1019), @@ -214426,47 +214461,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1019), [sym_preproc_define] = STATE(1019), [sym_preproc_undef] = STATE(1019), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214479,19 +214514,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214502,90 +214537,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1020] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4736), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4999), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1020), [sym_preproc_endregion] = STATE(1020), [sym_preproc_line] = STATE(1020), @@ -214595,72 +214630,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1020), [sym_preproc_define] = STATE(1020), [sym_preproc_undef] = STATE(1020), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214671,90 +214706,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1021] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3881), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1021), [sym_preproc_endregion] = STATE(1021), [sym_preproc_line] = STATE(1021), @@ -214764,72 +214799,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1021), [sym_preproc_define] = STATE(1021), [sym_preproc_undef] = STATE(1021), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214840,90 +214875,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1022] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4502), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1022), [sym_preproc_endregion] = STATE(1022), [sym_preproc_line] = STATE(1022), @@ -214933,47 +214968,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1022), [sym_preproc_define] = STATE(1022), [sym_preproc_undef] = STATE(1022), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214986,19 +215021,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215009,90 +215044,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1023] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4394), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1023), [sym_preproc_endregion] = STATE(1023), [sym_preproc_line] = STATE(1023), @@ -215102,47 +215137,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1023), [sym_preproc_define] = STATE(1023), [sym_preproc_undef] = STATE(1023), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215155,19 +215190,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215178,90 +215213,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1024] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4395), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4765), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1024), [sym_preproc_endregion] = STATE(1024), [sym_preproc_line] = STATE(1024), @@ -215271,47 +215306,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1024), [sym_preproc_define] = STATE(1024), [sym_preproc_undef] = STATE(1024), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215324,19 +215359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215347,90 +215382,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1025] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4409), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5031), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1025), [sym_preproc_endregion] = STATE(1025), [sym_preproc_line] = STATE(1025), @@ -215440,47 +215475,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1025), [sym_preproc_define] = STATE(1025), [sym_preproc_undef] = STATE(1025), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215493,19 +215528,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215516,90 +215551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1026] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4411), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3886), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1026), [sym_preproc_endregion] = STATE(1026), [sym_preproc_line] = STATE(1026), @@ -215609,47 +215644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1026), [sym_preproc_define] = STATE(1026), [sym_preproc_undef] = STATE(1026), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215662,19 +215697,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215685,90 +215720,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1027] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4425), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4151), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1027), [sym_preproc_endregion] = STATE(1027), [sym_preproc_line] = STATE(1027), @@ -215778,47 +215813,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1027), [sym_preproc_define] = STATE(1027), [sym_preproc_undef] = STATE(1027), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215831,19 +215866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215860,84 +215895,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1028] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4426), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4305), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1028), [sym_preproc_endregion] = STATE(1028), [sym_preproc_line] = STATE(1028), @@ -215947,47 +215982,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1028), [sym_preproc_define] = STATE(1028), [sym_preproc_undef] = STATE(1028), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216000,19 +216035,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216023,90 +216058,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1029] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4437), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4322), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1029), [sym_preproc_endregion] = STATE(1029), [sym_preproc_line] = STATE(1029), @@ -216116,47 +216151,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1029), [sym_preproc_define] = STATE(1029), [sym_preproc_undef] = STATE(1029), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216169,19 +216204,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216192,90 +216227,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1030] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4439), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4310), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1030), [sym_preproc_endregion] = STATE(1030), [sym_preproc_line] = STATE(1030), @@ -216285,47 +216320,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1030), [sym_preproc_define] = STATE(1030), [sym_preproc_undef] = STATE(1030), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216338,19 +216373,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216361,90 +216396,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1031] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4442), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4325), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1031), [sym_preproc_endregion] = STATE(1031), [sym_preproc_line] = STATE(1031), @@ -216454,47 +216489,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1031), [sym_preproc_define] = STATE(1031), [sym_preproc_undef] = STATE(1031), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216507,19 +216542,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216530,90 +216565,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1032] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4739), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4339), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1032), [sym_preproc_endregion] = STATE(1032), [sym_preproc_line] = STATE(1032), @@ -216623,72 +216658,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1032), [sym_preproc_define] = STATE(1032), [sym_preproc_undef] = STATE(1032), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216699,90 +216734,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1033] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4345), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1033), [sym_preproc_endregion] = STATE(1033), [sym_preproc_line] = STATE(1033), @@ -216792,47 +216827,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1033), [sym_preproc_define] = STATE(1033), [sym_preproc_undef] = STATE(1033), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216845,19 +216880,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216868,90 +216903,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1034] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4375), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4371), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1034), [sym_preproc_endregion] = STATE(1034), [sym_preproc_line] = STATE(1034), @@ -216961,72 +216996,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1034), [sym_preproc_define] = STATE(1034), [sym_preproc_undef] = STATE(1034), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217037,90 +217072,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1035] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4742), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4307), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1035), [sym_preproc_endregion] = STATE(1035), [sym_preproc_line] = STATE(1035), @@ -217130,72 +217165,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1035), [sym_preproc_define] = STATE(1035), [sym_preproc_undef] = STATE(1035), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1321), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217206,90 +217241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1036] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5260), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4308), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1036), [sym_preproc_endregion] = STATE(1036), [sym_preproc_line] = STATE(1036), @@ -217299,47 +217334,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1036), [sym_preproc_define] = STATE(1036), [sym_preproc_undef] = STATE(1036), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217352,19 +217387,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217381,84 +217416,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1037] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4241), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4313), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1037), [sym_preproc_endregion] = STATE(1037), [sym_preproc_line] = STATE(1037), @@ -217468,15 +217503,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1037), [sym_preproc_define] = STATE(1037), [sym_preproc_undef] = STATE(1037), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -217486,17 +217521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -217505,10 +217540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217550,84 +217585,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1038] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4317), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1038), [sym_preproc_endregion] = STATE(1038), [sym_preproc_line] = STATE(1038), @@ -217637,15 +217672,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1038), [sym_preproc_define] = STATE(1038), [sym_preproc_undef] = STATE(1038), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -217655,17 +217690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -217674,10 +217709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217719,84 +217754,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1039] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5271), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1039), [sym_preproc_endregion] = STATE(1039), [sym_preproc_line] = STATE(1039), @@ -217806,47 +217841,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1039), [sym_preproc_define] = STATE(1039), [sym_preproc_undef] = STATE(1039), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217859,19 +217894,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217888,84 +217923,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1040] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4758), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5333), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1040), [sym_preproc_endregion] = STATE(1040), [sym_preproc_line] = STATE(1040), @@ -217975,72 +218010,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1040), [sym_preproc_define] = STATE(1040), [sym_preproc_undef] = STATE(1040), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218051,90 +218086,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1041] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4759), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1041), [sym_preproc_endregion] = STATE(1041), [sym_preproc_line] = STATE(1041), @@ -218144,72 +218179,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1041), [sym_preproc_define] = STATE(1041), [sym_preproc_undef] = STATE(1041), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218220,90 +218255,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1042] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4760), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5336), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1042), [sym_preproc_endregion] = STATE(1042), [sym_preproc_line] = STATE(1042), @@ -218313,72 +218348,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1042), [sym_preproc_define] = STATE(1042), [sym_preproc_undef] = STATE(1042), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218389,90 +218424,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1043] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4540), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4462), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1043), [sym_preproc_endregion] = STATE(1043), [sym_preproc_line] = STATE(1043), @@ -218482,72 +218517,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1043), [sym_preproc_define] = STATE(1043), [sym_preproc_undef] = STATE(1043), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218558,90 +218593,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1044] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4541), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5338), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1044), [sym_preproc_endregion] = STATE(1044), [sym_preproc_line] = STATE(1044), @@ -218651,72 +218686,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1044), [sym_preproc_define] = STATE(1044), [sym_preproc_undef] = STATE(1044), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218727,90 +218762,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1045] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4542), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5339), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1045), [sym_preproc_endregion] = STATE(1045), [sym_preproc_line] = STATE(1045), @@ -218820,72 +218855,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1045), [sym_preproc_define] = STATE(1045), [sym_preproc_undef] = STATE(1045), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218896,90 +218931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1046] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4761), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5345), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1046), [sym_preproc_endregion] = STATE(1046), [sym_preproc_line] = STATE(1046), @@ -218989,72 +219024,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1046), [sym_preproc_define] = STATE(1046), [sym_preproc_undef] = STATE(1046), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219065,90 +219100,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1047] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4543), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5361), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1047), [sym_preproc_endregion] = STATE(1047), [sym_preproc_line] = STATE(1047), @@ -219158,72 +219193,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1047), [sym_preproc_define] = STATE(1047), [sym_preproc_undef] = STATE(1047), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219234,90 +219269,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1048] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4545), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5186), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1048), [sym_preproc_endregion] = STATE(1048), [sym_preproc_line] = STATE(1048), @@ -219327,72 +219362,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1048), [sym_preproc_define] = STATE(1048), [sym_preproc_undef] = STATE(1048), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219403,90 +219438,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1049] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4546), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5199), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1049), [sym_preproc_endregion] = STATE(1049), [sym_preproc_line] = STATE(1049), @@ -219496,72 +219531,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1049), [sym_preproc_define] = STATE(1049), [sym_preproc_undef] = STATE(1049), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219572,90 +219607,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1050] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4547), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5235), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1050), [sym_preproc_endregion] = STATE(1050), [sym_preproc_line] = STATE(1050), @@ -219665,72 +219700,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1050), [sym_preproc_define] = STATE(1050), [sym_preproc_undef] = STATE(1050), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219741,90 +219776,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1051] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4252), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5237), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1051), [sym_preproc_endregion] = STATE(1051), [sym_preproc_line] = STATE(1051), @@ -219834,47 +219869,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1051), [sym_preproc_define] = STATE(1051), [sym_preproc_undef] = STATE(1051), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219887,113 +219922,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1052] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5238), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1052), [sym_preproc_endregion] = STATE(1052), [sym_preproc_line] = STATE(1052), @@ -220003,72 +220038,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1052), [sym_preproc_define] = STATE(1052), [sym_preproc_undef] = STATE(1052), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220079,90 +220114,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1053] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4291), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5253), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1053), [sym_preproc_endregion] = STATE(1053), [sym_preproc_line] = STATE(1053), @@ -220172,47 +220207,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1053), [sym_preproc_define] = STATE(1053), [sym_preproc_undef] = STATE(1053), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220225,19 +220260,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220248,90 +220283,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1054] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4469), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5254), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1054), [sym_preproc_endregion] = STATE(1054), [sym_preproc_line] = STATE(1054), @@ -220341,47 +220376,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1054), [sym_preproc_define] = STATE(1054), [sym_preproc_undef] = STATE(1054), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220394,19 +220429,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220417,90 +220452,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1055] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5264), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1055), [sym_preproc_endregion] = STATE(1055), [sym_preproc_line] = STATE(1055), @@ -220510,47 +220545,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1055), [sym_preproc_define] = STATE(1055), [sym_preproc_undef] = STATE(1055), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220563,19 +220598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220586,90 +220621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1056] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4256), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1056), [sym_preproc_endregion] = STATE(1056), [sym_preproc_line] = STATE(1056), @@ -220679,47 +220714,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1056), [sym_preproc_define] = STATE(1056), [sym_preproc_undef] = STATE(1056), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220732,19 +220767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220755,90 +220790,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1057] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4257), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4314), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1057), [sym_preproc_endregion] = STATE(1057), [sym_preproc_line] = STATE(1057), @@ -220848,47 +220883,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1057), [sym_preproc_define] = STATE(1057), [sym_preproc_undef] = STATE(1057), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220901,19 +220936,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220924,90 +220959,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1058] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1058), [sym_preproc_endregion] = STATE(1058), [sym_preproc_line] = STATE(1058), @@ -221017,47 +221052,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1058), [sym_preproc_define] = STATE(1058), [sym_preproc_undef] = STATE(1058), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221070,19 +221105,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221093,90 +221128,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1059] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4263), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4381), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1059), [sym_preproc_endregion] = STATE(1059), [sym_preproc_line] = STATE(1059), @@ -221186,47 +221221,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1059), [sym_preproc_define] = STATE(1059), [sym_preproc_undef] = STATE(1059), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221239,19 +221274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221262,90 +221297,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1060] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4304), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1060), [sym_preproc_endregion] = STATE(1060), [sym_preproc_line] = STATE(1060), @@ -221355,47 +221390,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1060), [sym_preproc_define] = STATE(1060), [sym_preproc_undef] = STATE(1060), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221408,19 +221443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221431,90 +221466,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1061] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4266), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4443), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1061), [sym_preproc_endregion] = STATE(1061), [sym_preproc_line] = STATE(1061), @@ -221524,35 +221559,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1061), [sym_preproc_define] = STATE(1061), [sym_preproc_undef] = STATE(1061), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -221561,10 +221596,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221606,84 +221641,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1062] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4267), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1062), [sym_preproc_endregion] = STATE(1062), [sym_preproc_line] = STATE(1062), @@ -221693,35 +221728,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1062), [sym_preproc_define] = STATE(1062), [sym_preproc_undef] = STATE(1062), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -221730,10 +221765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221775,84 +221810,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1063] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4268), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4570), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1063), [sym_preproc_endregion] = STATE(1063), [sym_preproc_line] = STATE(1063), @@ -221862,35 +221897,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1063), [sym_preproc_define] = STATE(1063), [sym_preproc_undef] = STATE(1063), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -221899,10 +221934,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221944,84 +221979,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1064] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4269), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4571), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1064), [sym_preproc_endregion] = STATE(1064), [sym_preproc_line] = STATE(1064), @@ -222031,35 +222066,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1064), [sym_preproc_define] = STATE(1064), [sym_preproc_undef] = STATE(1064), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -222068,10 +222103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222113,84 +222148,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1065] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4274), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4726), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1065), [sym_preproc_endregion] = STATE(1065), [sym_preproc_line] = STATE(1065), @@ -222200,35 +222235,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1065), [sym_preproc_define] = STATE(1065), [sym_preproc_undef] = STATE(1065), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -222237,10 +222272,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222282,84 +222317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1066] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4279), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4557), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1066), [sym_preproc_endregion] = STATE(1066), [sym_preproc_line] = STATE(1066), @@ -222369,47 +222404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1066), [sym_preproc_define] = STATE(1066), [sym_preproc_undef] = STATE(1066), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222451,84 +222486,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1067] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4460), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4558), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1067), [sym_preproc_endregion] = STATE(1067), [sym_preproc_line] = STATE(1067), @@ -222538,35 +222573,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1067), [sym_preproc_define] = STATE(1067), [sym_preproc_undef] = STATE(1067), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -222575,10 +222610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222620,84 +222655,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1068] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4559), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1068), [sym_preproc_endregion] = STATE(1068), [sym_preproc_line] = STATE(1068), @@ -222707,35 +222742,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1068), [sym_preproc_define] = STATE(1068), [sym_preproc_undef] = STATE(1068), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -222744,10 +222779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222789,84 +222824,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1069] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4404), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4572), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1069), [sym_preproc_endregion] = STATE(1069), [sym_preproc_line] = STATE(1069), @@ -222876,35 +222911,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1069), [sym_preproc_define] = STATE(1069), [sym_preproc_undef] = STATE(1069), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -222913,10 +222948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222958,84 +222993,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1070] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4334), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4560), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1070), [sym_preproc_endregion] = STATE(1070), [sym_preproc_line] = STATE(1070), @@ -223045,47 +223080,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1070), [sym_preproc_define] = STATE(1070), [sym_preproc_undef] = STATE(1070), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223098,19 +223133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223121,90 +223156,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1071] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4561), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1071), [sym_preproc_endregion] = STATE(1071), [sym_preproc_line] = STATE(1071), @@ -223214,47 +223249,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1071), [sym_preproc_define] = STATE(1071), [sym_preproc_undef] = STATE(1071), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223267,19 +223302,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223290,90 +223325,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1072] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5752), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4562), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1072), [sym_preproc_endregion] = STATE(1072), [sym_preproc_line] = STATE(1072), @@ -223383,47 +223418,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1072), [sym_preproc_define] = STATE(1072), [sym_preproc_undef] = STATE(1072), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223436,19 +223471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223459,90 +223494,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1073] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4942), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1073), [sym_preproc_endregion] = STATE(1073), [sym_preproc_line] = STATE(1073), @@ -223552,47 +223587,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1073), [sym_preproc_define] = STATE(1073), [sym_preproc_undef] = STATE(1073), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223605,19 +223640,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223628,90 +223663,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1074] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4476), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1074), [sym_preproc_endregion] = STATE(1074), [sym_preproc_line] = STATE(1074), @@ -223721,47 +223756,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1074), [sym_preproc_define] = STATE(1074), [sym_preproc_undef] = STATE(1074), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223774,19 +223809,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223797,90 +223832,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1075] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4826), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1075), [sym_preproc_endregion] = STATE(1075), [sym_preproc_line] = STATE(1075), @@ -223890,47 +223925,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1075), [sym_preproc_define] = STATE(1075), [sym_preproc_undef] = STATE(1075), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223943,19 +223978,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223966,90 +224001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1076] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4827), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4464), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1076), [sym_preproc_endregion] = STATE(1076), [sym_preproc_line] = STATE(1076), @@ -224059,47 +224094,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1076), [sym_preproc_define] = STATE(1076), [sym_preproc_undef] = STATE(1076), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224112,19 +224147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224135,90 +224170,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1077] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4828), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4277), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1077), [sym_preproc_endregion] = STATE(1077), [sym_preproc_line] = STATE(1077), @@ -224228,47 +224263,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1077), [sym_preproc_define] = STATE(1077), [sym_preproc_undef] = STATE(1077), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224282,17 +224317,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -224304,90 +224339,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1078] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4829), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4116), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1078), [sym_preproc_endregion] = STATE(1078), [sym_preproc_line] = STATE(1078), @@ -224397,47 +224432,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1078), [sym_preproc_define] = STATE(1078), [sym_preproc_undef] = STATE(1078), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224451,17 +224486,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -224473,90 +224508,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1079] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4830), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1079), [sym_preproc_endregion] = STATE(1079), [sym_preproc_line] = STATE(1079), @@ -224566,35 +224601,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1079), [sym_preproc_define] = STATE(1079), [sym_preproc_undef] = STATE(1079), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -224603,10 +224638,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224648,84 +224683,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1080] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4831), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5919), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5560), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1080), [sym_preproc_endregion] = STATE(1080), [sym_preproc_line] = STATE(1080), @@ -224735,35 +224770,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1080), [sym_preproc_define] = STATE(1080), [sym_preproc_undef] = STATE(1080), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -224772,10 +224807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224800,7 +224835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224817,84 +224852,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1081] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4832), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4714), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1081), [sym_preproc_endregion] = STATE(1081), [sym_preproc_line] = STATE(1081), @@ -224904,72 +224939,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1081), [sym_preproc_define] = STATE(1081), [sym_preproc_undef] = STATE(1081), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224980,90 +225015,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1082] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4833), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5613), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1082), [sym_preproc_endregion] = STATE(1082), [sym_preproc_line] = STATE(1082), @@ -225073,35 +225108,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1082), [sym_preproc_define] = STATE(1082), [sym_preproc_undef] = STATE(1082), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -225110,10 +225145,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225155,84 +225190,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1083] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4850), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1083), [sym_preproc_endregion] = STATE(1083), [sym_preproc_line] = STATE(1083), @@ -225242,35 +225277,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1083), [sym_preproc_define] = STATE(1083), [sym_preproc_undef] = STATE(1083), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -225279,10 +225314,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225324,84 +225359,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1084] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4851), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5436), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1084), [sym_preproc_endregion] = STATE(1084), [sym_preproc_line] = STATE(1084), @@ -225411,35 +225446,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1084), [sym_preproc_define] = STATE(1084), [sym_preproc_undef] = STATE(1084), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -225448,10 +225483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225493,84 +225528,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1085] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4852), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5443), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1085), [sym_preproc_endregion] = STATE(1085), [sym_preproc_line] = STATE(1085), @@ -225580,35 +225615,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1085), [sym_preproc_define] = STATE(1085), [sym_preproc_undef] = STATE(1085), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -225617,10 +225652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225662,84 +225697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1086] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4955), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5444), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1086), [sym_preproc_endregion] = STATE(1086), [sym_preproc_line] = STATE(1086), @@ -225749,35 +225784,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1086), [sym_preproc_define] = STATE(1086), [sym_preproc_undef] = STATE(1086), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -225786,10 +225821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225831,84 +225866,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1087] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4207), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5445), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1087), [sym_preproc_endregion] = STATE(1087), [sym_preproc_line] = STATE(1087), @@ -225918,47 +225953,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1087), [sym_preproc_define] = STATE(1087), [sym_preproc_undef] = STATE(1087), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225971,19 +226006,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225994,90 +226029,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1088] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5446), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1088), [sym_preproc_endregion] = STATE(1088), [sym_preproc_line] = STATE(1088), @@ -226087,35 +226122,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1088), [sym_preproc_define] = STATE(1088), [sym_preproc_undef] = STATE(1088), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -226124,10 +226159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226169,84 +226204,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1089] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4737), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5448), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1089), [sym_preproc_endregion] = STATE(1089), [sym_preproc_line] = STATE(1089), @@ -226256,47 +226291,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1089), [sym_preproc_define] = STATE(1089), [sym_preproc_undef] = STATE(1089), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226309,19 +226344,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226338,84 +226373,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1090] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4858), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5449), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1090), [sym_preproc_endregion] = STATE(1090), [sym_preproc_line] = STATE(1090), @@ -226425,35 +226460,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1090), [sym_preproc_define] = STATE(1090), [sym_preproc_undef] = STATE(1090), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -226462,10 +226497,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226507,84 +226542,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1091] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5091), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5451), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1091), [sym_preproc_endregion] = STATE(1091), [sym_preproc_line] = STATE(1091), @@ -226594,35 +226629,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1091), [sym_preproc_define] = STATE(1091), [sym_preproc_undef] = STATE(1091), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -226631,10 +226666,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226676,84 +226711,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1092] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4209), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5454), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1092), [sym_preproc_endregion] = STATE(1092), [sym_preproc_line] = STATE(1092), @@ -226763,47 +226798,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1092), [sym_preproc_define] = STATE(1092), [sym_preproc_undef] = STATE(1092), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226816,19 +226851,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226839,90 +226874,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1093] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5092), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5455), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1093), [sym_preproc_endregion] = STATE(1093), [sym_preproc_line] = STATE(1093), @@ -226932,35 +226967,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1093), [sym_preproc_define] = STATE(1093), [sym_preproc_undef] = STATE(1093), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -226969,10 +227004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227014,84 +227049,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1094] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4872), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5456), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1094), [sym_preproc_endregion] = STATE(1094), [sym_preproc_line] = STATE(1094), @@ -227101,47 +227136,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1094), [sym_preproc_define] = STATE(1094), [sym_preproc_undef] = STATE(1094), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227154,19 +227189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227183,84 +227218,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1095] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4873), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5644), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1095), [sym_preproc_endregion] = STATE(1095), [sym_preproc_line] = STATE(1095), @@ -227270,47 +227305,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1095), [sym_preproc_define] = STATE(1095), [sym_preproc_undef] = STATE(1095), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227323,19 +227358,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227352,84 +227387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1096] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4538), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5312), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1096), [sym_preproc_endregion] = STATE(1096), [sym_preproc_line] = STATE(1096), @@ -227439,47 +227474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1096), [sym_preproc_define] = STATE(1096), [sym_preproc_undef] = STATE(1096), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227492,19 +227527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227515,90 +227550,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1097] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4874), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1097), [sym_preproc_endregion] = STATE(1097), [sym_preproc_line] = STATE(1097), @@ -227608,47 +227643,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1097), [sym_preproc_define] = STATE(1097), [sym_preproc_undef] = STATE(1097), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227661,19 +227696,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227690,84 +227725,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1098] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4875), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5048), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1098), [sym_preproc_endregion] = STATE(1098), [sym_preproc_line] = STATE(1098), @@ -227777,35 +227812,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1098), [sym_preproc_define] = STATE(1098), [sym_preproc_undef] = STATE(1098), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -227814,10 +227849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227859,84 +227894,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1099] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4876), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4237), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1099), [sym_preproc_endregion] = STATE(1099), [sym_preproc_line] = STATE(1099), @@ -227946,47 +227981,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1099), [sym_preproc_define] = STATE(1099), [sym_preproc_undef] = STATE(1099), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227999,19 +228034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228022,90 +228057,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1100] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5470), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1100), [sym_preproc_endregion] = STATE(1100), [sym_preproc_line] = STATE(1100), @@ -228115,47 +228150,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1100), [sym_preproc_define] = STATE(1100), [sym_preproc_undef] = STATE(1100), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228168,19 +228203,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228197,84 +228232,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1101] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4878), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4101), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1101), [sym_preproc_endregion] = STATE(1101), [sym_preproc_line] = STATE(1101), @@ -228284,47 +228319,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1101), [sym_preproc_define] = STATE(1101), [sym_preproc_undef] = STATE(1101), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228337,19 +228372,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228360,90 +228395,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1102] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4879), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5318), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6217), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1102), [sym_preproc_endregion] = STATE(1102), [sym_preproc_line] = STATE(1102), @@ -228453,47 +228488,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1102), [sym_preproc_define] = STATE(1102), [sym_preproc_undef] = STATE(1102), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228506,19 +228541,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228529,90 +228564,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1103] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4880), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3597), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1103), [sym_preproc_endregion] = STATE(1103), [sym_preproc_line] = STATE(1103), @@ -228622,47 +228657,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1103), [sym_preproc_define] = STATE(1103), [sym_preproc_undef] = STATE(1103), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228675,19 +228710,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228698,90 +228733,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1104] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4881), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4574), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1104), [sym_preproc_endregion] = STATE(1104), [sym_preproc_line] = STATE(1104), @@ -228791,35 +228826,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1104), [sym_preproc_define] = STATE(1104), [sym_preproc_undef] = STATE(1104), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -228828,10 +228863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228873,84 +228908,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1105] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4575), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1105), [sym_preproc_endregion] = STATE(1105), [sym_preproc_line] = STATE(1105), @@ -228960,35 +228995,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1105), [sym_preproc_define] = STATE(1105), [sym_preproc_undef] = STATE(1105), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -228997,10 +229032,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229042,84 +229077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1106] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4186), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4788), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1106), [sym_preproc_endregion] = STATE(1106), [sym_preproc_line] = STATE(1106), @@ -229129,47 +229164,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1106), [sym_preproc_define] = STATE(1106), [sym_preproc_undef] = STATE(1106), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229182,19 +229217,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229205,90 +229240,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1107] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4576), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1107), [sym_preproc_endregion] = STATE(1107), [sym_preproc_line] = STATE(1107), @@ -229298,47 +229333,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1107), [sym_preproc_define] = STATE(1107), [sym_preproc_undef] = STATE(1107), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229351,19 +229386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229374,90 +229409,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1108] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4201), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4577), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1108), [sym_preproc_endregion] = STATE(1108), [sym_preproc_line] = STATE(1108), @@ -229467,47 +229502,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1108), [sym_preproc_define] = STATE(1108), [sym_preproc_undef] = STATE(1108), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229520,19 +229555,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229543,90 +229578,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1109] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4744), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4578), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1109), [sym_preproc_endregion] = STATE(1109), [sym_preproc_line] = STATE(1109), @@ -229636,47 +229671,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1109), [sym_preproc_define] = STATE(1109), [sym_preproc_undef] = STATE(1109), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229689,19 +229724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229712,90 +229747,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1110] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4180), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1110), [sym_preproc_endregion] = STATE(1110), [sym_preproc_line] = STATE(1110), @@ -229805,47 +229840,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1110), [sym_preproc_define] = STATE(1110), [sym_preproc_undef] = STATE(1110), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229858,19 +229893,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229881,90 +229916,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1111] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4205), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4580), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1111), [sym_preproc_endregion] = STATE(1111), [sym_preproc_line] = STATE(1111), @@ -229974,47 +230009,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1111), [sym_preproc_define] = STATE(1111), [sym_preproc_undef] = STATE(1111), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230027,19 +230062,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230050,90 +230085,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1112] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4216), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4581), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1112), [sym_preproc_endregion] = STATE(1112), [sym_preproc_line] = STATE(1112), @@ -230143,47 +230178,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1112), [sym_preproc_define] = STATE(1112), [sym_preproc_undef] = STATE(1112), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230196,19 +230231,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230219,90 +230254,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1113] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4168), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4582), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1113), [sym_preproc_endregion] = STATE(1113), [sym_preproc_line] = STATE(1113), @@ -230312,47 +230347,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1113), [sym_preproc_define] = STATE(1113), [sym_preproc_undef] = STATE(1113), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230365,19 +230400,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230388,90 +230423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1114] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4169), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4583), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1114), [sym_preproc_endregion] = STATE(1114), [sym_preproc_line] = STATE(1114), @@ -230481,47 +230516,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1114), [sym_preproc_define] = STATE(1114), [sym_preproc_undef] = STATE(1114), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230534,19 +230569,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230557,90 +230592,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1115] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4170), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1115), [sym_preproc_endregion] = STATE(1115), [sym_preproc_line] = STATE(1115), @@ -230650,47 +230685,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1115), [sym_preproc_define] = STATE(1115), [sym_preproc_undef] = STATE(1115), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230703,19 +230738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230726,90 +230761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1116] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4172), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5240), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1116), [sym_preproc_endregion] = STATE(1116), [sym_preproc_line] = STATE(1116), @@ -230819,35 +230854,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1116), [sym_preproc_define] = STATE(1116), [sym_preproc_undef] = STATE(1116), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -230856,10 +230891,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230901,84 +230936,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1117] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1117), [sym_preproc_endregion] = STATE(1117), [sym_preproc_line] = STATE(1117), @@ -230988,35 +231023,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1117), [sym_preproc_define] = STATE(1117), [sym_preproc_undef] = STATE(1117), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -231025,10 +231060,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231070,84 +231105,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1118] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4174), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5262), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1118), [sym_preproc_endregion] = STATE(1118), [sym_preproc_line] = STATE(1118), @@ -231157,35 +231192,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1118), [sym_preproc_define] = STATE(1118), [sym_preproc_undef] = STATE(1118), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -231194,10 +231229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231239,84 +231274,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1119] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4177), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4768), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1119), [sym_preproc_endregion] = STATE(1119), [sym_preproc_line] = STATE(1119), @@ -231326,47 +231361,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1119), [sym_preproc_define] = STATE(1119), [sym_preproc_undef] = STATE(1119), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231379,19 +231414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231402,90 +231437,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1120] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4178), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5268), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1120), [sym_preproc_endregion] = STATE(1120), [sym_preproc_line] = STATE(1120), @@ -231495,35 +231530,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1120), [sym_preproc_define] = STATE(1120), [sym_preproc_undef] = STATE(1120), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -231532,10 +231567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231577,84 +231612,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1121] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4185), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5272), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1121), [sym_preproc_endregion] = STATE(1121), [sym_preproc_line] = STATE(1121), @@ -231664,35 +231699,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1121), [sym_preproc_define] = STATE(1121), [sym_preproc_undef] = STATE(1121), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -231701,10 +231736,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231746,84 +231781,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1122] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5316), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5274), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1122), [sym_preproc_endregion] = STATE(1122), [sym_preproc_line] = STATE(1122), @@ -231833,47 +231868,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1122), [sym_preproc_define] = STATE(1122), [sym_preproc_undef] = STATE(1122), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231886,19 +231921,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231909,90 +231944,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1123] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5276), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1123), [sym_preproc_endregion] = STATE(1123), [sym_preproc_line] = STATE(1123), @@ -232002,35 +232037,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1123), [sym_preproc_define] = STATE(1123), [sym_preproc_undef] = STATE(1123), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -232039,10 +232074,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232084,84 +232119,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1124] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4539), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5280), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1124), [sym_preproc_endregion] = STATE(1124), [sym_preproc_line] = STATE(1124), @@ -232171,47 +232206,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1124), [sym_preproc_define] = STATE(1124), [sym_preproc_undef] = STATE(1124), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232224,19 +232259,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232247,90 +232282,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1125] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5284), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1125), [sym_preproc_endregion] = STATE(1125), [sym_preproc_line] = STATE(1125), @@ -232340,47 +232375,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1125), [sym_preproc_define] = STATE(1125), [sym_preproc_undef] = STATE(1125), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232393,19 +232428,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232416,90 +232451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1126] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5658), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5290), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1126), [sym_preproc_endregion] = STATE(1126), [sym_preproc_line] = STATE(1126), @@ -232509,47 +232544,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1126), [sym_preproc_define] = STATE(1126), [sym_preproc_undef] = STATE(1126), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232562,19 +232597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232585,90 +232620,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1127] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4548), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5298), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1127), [sym_preproc_endregion] = STATE(1127), [sym_preproc_line] = STATE(1127), @@ -232678,47 +232713,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1127), [sym_preproc_define] = STATE(1127), [sym_preproc_undef] = STATE(1127), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232731,19 +232766,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232754,90 +232789,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1128] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4550), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5303), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1128), [sym_preproc_endregion] = STATE(1128), [sym_preproc_line] = STATE(1128), @@ -232847,47 +232882,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1128), [sym_preproc_define] = STATE(1128), [sym_preproc_undef] = STATE(1128), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232900,19 +232935,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232923,90 +232958,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1129] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4255), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5307), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1129), [sym_preproc_endregion] = STATE(1129), [sym_preproc_line] = STATE(1129), @@ -233016,47 +233051,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1129), [sym_preproc_define] = STATE(1129), [sym_preproc_undef] = STATE(1129), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233069,19 +233104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233092,90 +233127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1130] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5328), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1130), [sym_preproc_endregion] = STATE(1130), [sym_preproc_line] = STATE(1130), @@ -233185,47 +233220,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1130), [sym_preproc_define] = STATE(1130), [sym_preproc_undef] = STATE(1130), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233238,19 +233273,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233261,90 +233296,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1131] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4483), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5331), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1131), [sym_preproc_endregion] = STATE(1131), [sym_preproc_line] = STATE(1131), @@ -233354,47 +233389,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1131), [sym_preproc_define] = STATE(1131), [sym_preproc_undef] = STATE(1131), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233407,19 +233442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233430,90 +233465,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1132] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4487), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1132), [sym_preproc_endregion] = STATE(1132), [sym_preproc_line] = STATE(1132), @@ -233523,47 +233558,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1132), [sym_preproc_define] = STATE(1132), [sym_preproc_undef] = STATE(1132), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233576,19 +233611,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233599,90 +233634,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1133] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4488), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4584), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1133), [sym_preproc_endregion] = STATE(1133), [sym_preproc_line] = STATE(1133), @@ -233692,47 +233727,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1133), [sym_preproc_define] = STATE(1133), [sym_preproc_undef] = STATE(1133), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233745,19 +233780,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233768,90 +233803,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1134] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4495), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1134), [sym_preproc_endregion] = STATE(1134), [sym_preproc_line] = STATE(1134), @@ -233861,47 +233896,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1134), [sym_preproc_define] = STATE(1134), [sym_preproc_undef] = STATE(1134), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233914,19 +233949,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233937,90 +233972,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1135] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4515), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1135), [sym_preproc_endregion] = STATE(1135), [sym_preproc_line] = STATE(1135), @@ -234030,47 +234065,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1135), [sym_preproc_define] = STATE(1135), [sym_preproc_undef] = STATE(1135), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234083,19 +234118,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234106,90 +234141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1136] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4526), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4275), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1136), [sym_preproc_endregion] = STATE(1136), [sym_preproc_line] = STATE(1136), @@ -234199,47 +234234,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1136), [sym_preproc_define] = STATE(1136), [sym_preproc_undef] = STATE(1136), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234252,19 +234287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234275,90 +234310,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1137] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4489), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4276), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1137), [sym_preproc_endregion] = STATE(1137), [sym_preproc_line] = STATE(1137), @@ -234368,47 +234403,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1137), [sym_preproc_define] = STATE(1137), [sym_preproc_undef] = STATE(1137), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234421,19 +234456,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234444,90 +234479,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1138] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4536), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4288), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1138), [sym_preproc_endregion] = STATE(1138), [sym_preproc_line] = STATE(1138), @@ -234537,47 +234572,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1138), [sym_preproc_define] = STATE(1138), [sym_preproc_undef] = STATE(1138), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234590,19 +234625,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234613,90 +234648,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1139] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4391), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4588), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1139), [sym_preproc_endregion] = STATE(1139), [sym_preproc_line] = STATE(1139), @@ -234706,47 +234741,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1139), [sym_preproc_define] = STATE(1139), [sym_preproc_undef] = STATE(1139), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234759,19 +234794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234782,90 +234817,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1140] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4412), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4295), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1140), [sym_preproc_endregion] = STATE(1140), [sym_preproc_line] = STATE(1140), @@ -234875,47 +234910,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1140), [sym_preproc_define] = STATE(1140), [sym_preproc_undef] = STATE(1140), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234928,19 +234963,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234951,90 +234986,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1141] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4438), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4729), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1141), [sym_preproc_endregion] = STATE(1141), [sym_preproc_line] = STATE(1141), @@ -235044,35 +235079,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1141), [sym_preproc_define] = STATE(1141), [sym_preproc_undef] = STATE(1141), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -235081,10 +235116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235126,84 +235161,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1142] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4284), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1142), [sym_preproc_endregion] = STATE(1142), [sym_preproc_line] = STATE(1142), @@ -235213,35 +235248,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1142), [sym_preproc_define] = STATE(1142), [sym_preproc_undef] = STATE(1142), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -235250,10 +235285,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235295,84 +235330,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1143] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5313), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4529), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1143), [sym_preproc_endregion] = STATE(1143), [sym_preproc_line] = STATE(1143), @@ -235382,47 +235417,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1143), [sym_preproc_define] = STATE(1143), [sym_preproc_undef] = STATE(1143), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235435,19 +235470,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235458,90 +235493,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1144] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4532), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1144), [sym_preproc_endregion] = STATE(1144), [sym_preproc_line] = STATE(1144), @@ -235551,35 +235586,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1144), [sym_preproc_define] = STATE(1144), [sym_preproc_undef] = STATE(1144), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -235588,10 +235623,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235633,84 +235668,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1145] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4261), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4446), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1145), [sym_preproc_endregion] = STATE(1145), [sym_preproc_line] = STATE(1145), @@ -235720,35 +235755,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1145), [sym_preproc_define] = STATE(1145), [sym_preproc_undef] = STATE(1145), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -235757,10 +235792,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235802,84 +235837,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1146] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4423), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1146), [sym_preproc_endregion] = STATE(1146), [sym_preproc_line] = STATE(1146), @@ -235889,47 +235924,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1146), [sym_preproc_define] = STATE(1146), [sym_preproc_undef] = STATE(1146), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235942,19 +235977,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235965,90 +236000,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1147] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4424), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1147), [sym_preproc_endregion] = STATE(1147), [sym_preproc_line] = STATE(1147), @@ -236058,47 +236093,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1147), [sym_preproc_define] = STATE(1147), [sym_preproc_undef] = STATE(1147), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236111,19 +236146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236134,90 +236169,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1148] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5736), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2943), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4425), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1148), [sym_preproc_endregion] = STATE(1148), [sym_preproc_line] = STATE(1148), @@ -236227,47 +236262,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1148), [sym_preproc_define] = STATE(1148), [sym_preproc_undef] = STATE(1148), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236280,19 +236315,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236303,90 +236338,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1149] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4535), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1149), [sym_preproc_endregion] = STATE(1149), [sym_preproc_line] = STATE(1149), @@ -236396,47 +236431,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1149), [sym_preproc_define] = STATE(1149), [sym_preproc_undef] = STATE(1149), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236449,19 +236484,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236472,90 +236507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1150] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4998), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4426), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1150), [sym_preproc_endregion] = STATE(1150), [sym_preproc_line] = STATE(1150), @@ -236565,47 +236600,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1150), [sym_preproc_define] = STATE(1150), [sym_preproc_undef] = STATE(1150), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236618,19 +236653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236641,90 +236676,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1151] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4292), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1151), [sym_preproc_endregion] = STATE(1151), [sym_preproc_line] = STATE(1151), @@ -236734,47 +236769,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1151), [sym_preproc_define] = STATE(1151), [sym_preproc_undef] = STATE(1151), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236788,17 +236823,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -236810,90 +236845,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1152] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4271), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4428), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1152), [sym_preproc_endregion] = STATE(1152), [sym_preproc_line] = STATE(1152), @@ -236903,47 +236938,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1152), [sym_preproc_define] = STATE(1152), [sym_preproc_undef] = STATE(1152), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236956,19 +236991,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236979,90 +237014,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1153] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4996), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4430), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1153), [sym_preproc_endregion] = STATE(1153), [sym_preproc_line] = STATE(1153), @@ -237072,47 +237107,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1153), [sym_preproc_define] = STATE(1153), [sym_preproc_undef] = STATE(1153), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237125,19 +237160,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237148,90 +237183,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1154] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5003), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4432), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1154), [sym_preproc_endregion] = STATE(1154), [sym_preproc_line] = STATE(1154), @@ -237241,47 +237276,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1154), [sym_preproc_define] = STATE(1154), [sym_preproc_undef] = STATE(1154), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237294,19 +237329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237317,90 +237352,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1155] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5011), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4730), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1155), [sym_preproc_endregion] = STATE(1155), [sym_preproc_line] = STATE(1155), @@ -237410,47 +237445,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1155), [sym_preproc_define] = STATE(1155), [sym_preproc_undef] = STATE(1155), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237463,19 +237498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237486,90 +237521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1156] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5012), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4261), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1156), [sym_preproc_endregion] = STATE(1156), [sym_preproc_line] = STATE(1156), @@ -237579,47 +237614,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1156), [sym_preproc_define] = STATE(1156), [sym_preproc_undef] = STATE(1156), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237633,17 +237668,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -237655,90 +237690,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1157] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5013), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1157), [sym_preproc_endregion] = STATE(1157), [sym_preproc_line] = STATE(1157), @@ -237748,47 +237783,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1157), [sym_preproc_define] = STATE(1157), [sym_preproc_undef] = STATE(1157), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237801,19 +237836,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237824,90 +237859,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1158] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5014), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4284), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1158), [sym_preproc_endregion] = STATE(1158), [sym_preproc_line] = STATE(1158), @@ -237917,47 +237952,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1158), [sym_preproc_define] = STATE(1158), [sym_preproc_undef] = STATE(1158), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237971,17 +238006,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -237993,90 +238028,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1159] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5015), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4732), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1159), [sym_preproc_endregion] = STATE(1159), [sym_preproc_line] = STATE(1159), @@ -238086,47 +238121,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1159), [sym_preproc_define] = STATE(1159), [sym_preproc_undef] = STATE(1159), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238139,19 +238174,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238162,90 +238197,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1160] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5016), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4290), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1160), [sym_preproc_endregion] = STATE(1160), [sym_preproc_line] = STATE(1160), @@ -238255,47 +238290,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1160), [sym_preproc_define] = STATE(1160), [sym_preproc_undef] = STATE(1160), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238309,17 +238344,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -238331,90 +238366,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1161] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5022), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4260), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1161), [sym_preproc_endregion] = STATE(1161), [sym_preproc_line] = STATE(1161), @@ -238424,47 +238459,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1161), [sym_preproc_define] = STATE(1161), [sym_preproc_undef] = STATE(1161), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238478,17 +238513,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -238500,90 +238535,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1162] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4226), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1162), [sym_preproc_endregion] = STATE(1162), [sym_preproc_line] = STATE(1162), @@ -238593,47 +238628,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1162), [sym_preproc_define] = STATE(1162), [sym_preproc_undef] = STATE(1162), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238647,17 +238682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -238669,90 +238704,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1163] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5027), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3630), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1163), [sym_preproc_endregion] = STATE(1163), [sym_preproc_line] = STATE(1163), @@ -238762,47 +238797,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1163), [sym_preproc_define] = STATE(1163), [sym_preproc_undef] = STATE(1163), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238815,19 +238850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238838,90 +238873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1164] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4999), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1164), [sym_preproc_endregion] = STATE(1164), [sym_preproc_line] = STATE(1164), @@ -238931,47 +238966,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1164), [sym_preproc_define] = STATE(1164), [sym_preproc_undef] = STATE(1164), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239013,84 +239048,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1165] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3806), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3978), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1165), [sym_preproc_endregion] = STATE(1165), [sym_preproc_line] = STATE(1165), @@ -239100,47 +239135,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1165), [sym_preproc_define] = STATE(1165), [sym_preproc_undef] = STATE(1165), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239153,19 +239188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239176,90 +239211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1166] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5626), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1166), [sym_preproc_endregion] = STATE(1166), [sym_preproc_line] = STATE(1166), @@ -239269,35 +239304,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1166), [sym_preproc_define] = STATE(1166), [sym_preproc_undef] = STATE(1166), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -239306,10 +239341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239351,84 +239386,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1167] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1167), [sym_preproc_endregion] = STATE(1167), [sym_preproc_line] = STATE(1167), @@ -239438,35 +239473,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1167), [sym_preproc_define] = STATE(1167), [sym_preproc_undef] = STATE(1167), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -239475,10 +239510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239520,84 +239555,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1168] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4764), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4136), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1168), [sym_preproc_endregion] = STATE(1168), [sym_preproc_line] = STATE(1168), @@ -239607,47 +239642,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1168), [sym_preproc_define] = STATE(1168), [sym_preproc_undef] = STATE(1168), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239660,19 +239695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239683,90 +239718,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1169] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5177), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5634), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1169), [sym_preproc_endregion] = STATE(1169), [sym_preproc_line] = STATE(1169), @@ -239776,35 +239811,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1169), [sym_preproc_define] = STATE(1169), [sym_preproc_undef] = STATE(1169), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -239813,10 +239848,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239858,84 +239893,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1170] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5031), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5636), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1170), [sym_preproc_endregion] = STATE(1170), [sym_preproc_line] = STATE(1170), @@ -239945,35 +239980,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1170), [sym_preproc_define] = STATE(1170), [sym_preproc_undef] = STATE(1170), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -239982,10 +240017,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240027,84 +240062,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1171] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5188), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5637), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1171), [sym_preproc_endregion] = STATE(1171), [sym_preproc_line] = STATE(1171), @@ -240114,35 +240149,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1171), [sym_preproc_define] = STATE(1171), [sym_preproc_undef] = STATE(1171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -240151,10 +240186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240196,84 +240231,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1172] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3905), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5638), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1172), [sym_preproc_endregion] = STATE(1172), [sym_preproc_line] = STATE(1172), @@ -240283,47 +240318,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1172), [sym_preproc_define] = STATE(1172), [sym_preproc_undef] = STATE(1172), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240336,19 +240371,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240359,90 +240394,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1173] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5196), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3572), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7508), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5639), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1173), [sym_preproc_endregion] = STATE(1173), [sym_preproc_line] = STATE(1173), @@ -240452,35 +240487,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1173), [sym_preproc_define] = STATE(1173), [sym_preproc_undef] = STATE(1173), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(679), - [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -240489,10 +240524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240534,84 +240569,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1174] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4954), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5640), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1174), [sym_preproc_endregion] = STATE(1174), [sym_preproc_line] = STATE(1174), @@ -240621,35 +240656,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1174), [sym_preproc_define] = STATE(1174), [sym_preproc_undef] = STATE(1174), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -240658,10 +240693,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240703,84 +240738,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1175] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4318), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5641), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1175), [sym_preproc_endregion] = STATE(1175), [sym_preproc_line] = STATE(1175), @@ -240790,47 +240825,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1175), [sym_preproc_define] = STATE(1175), [sym_preproc_undef] = STATE(1175), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240843,19 +240878,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240872,84 +240907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1176] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4319), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5642), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1176), [sym_preproc_endregion] = STATE(1176), [sym_preproc_line] = STATE(1176), @@ -240959,47 +240994,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1176), [sym_preproc_define] = STATE(1176), [sym_preproc_undef] = STATE(1176), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241012,19 +241047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241041,84 +241076,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1177] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4349), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3704), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1177), [sym_preproc_endregion] = STATE(1177), [sym_preproc_line] = STATE(1177), @@ -241128,47 +241163,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1177), [sym_preproc_define] = STATE(1177), [sym_preproc_undef] = STATE(1177), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241181,19 +241216,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241204,90 +241239,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1178] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4320), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5679), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1178), [sym_preproc_endregion] = STATE(1178), [sym_preproc_line] = STATE(1178), @@ -241297,47 +241332,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1178), [sym_preproc_define] = STATE(1178), [sym_preproc_undef] = STATE(1178), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241350,19 +241385,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241379,84 +241414,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1179] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4321), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1179), [sym_preproc_endregion] = STATE(1179), [sym_preproc_line] = STATE(1179), @@ -241466,47 +241501,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1179), [sym_preproc_define] = STATE(1179), [sym_preproc_undef] = STATE(1179), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241519,19 +241554,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241548,84 +241583,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1180] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4322), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5685), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1180), [sym_preproc_endregion] = STATE(1180), [sym_preproc_line] = STATE(1180), @@ -241635,47 +241670,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1180), [sym_preproc_define] = STATE(1180), [sym_preproc_undef] = STATE(1180), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241688,19 +241723,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241717,84 +241752,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1181] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4323), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5461), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1181), [sym_preproc_endregion] = STATE(1181), [sym_preproc_line] = STATE(1181), @@ -241804,47 +241839,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1181), [sym_preproc_define] = STATE(1181), [sym_preproc_undef] = STATE(1181), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241857,19 +241892,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241886,84 +241921,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1182] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4324), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3923), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1182), [sym_preproc_endregion] = STATE(1182), [sym_preproc_line] = STATE(1182), @@ -241973,47 +242008,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1182), [sym_preproc_define] = STATE(1182), [sym_preproc_undef] = STATE(1182), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242026,19 +242061,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242049,90 +242084,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1183] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4325), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5202), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1183), [sym_preproc_endregion] = STATE(1183), [sym_preproc_line] = STATE(1183), @@ -242142,47 +242177,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1183), [sym_preproc_define] = STATE(1183), [sym_preproc_undef] = STATE(1183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242195,19 +242230,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242224,84 +242259,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1184] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1184), [sym_preproc_endregion] = STATE(1184), [sym_preproc_line] = STATE(1184), @@ -242311,47 +242346,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1184), [sym_preproc_define] = STATE(1184), [sym_preproc_undef] = STATE(1184), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242364,19 +242399,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242393,84 +242428,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1185] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4329), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5259), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1185), [sym_preproc_endregion] = STATE(1185), [sym_preproc_line] = STATE(1185), @@ -242480,47 +242515,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1185), [sym_preproc_define] = STATE(1185), [sym_preproc_undef] = STATE(1185), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242533,19 +242568,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242562,84 +242597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1186] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5056), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1186), [sym_preproc_endregion] = STATE(1186), [sym_preproc_line] = STATE(1186), @@ -242649,47 +242684,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1186), [sym_preproc_define] = STATE(1186), [sym_preproc_undef] = STATE(1186), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242702,19 +242737,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242731,84 +242766,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1187] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5469), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1187), [sym_preproc_endregion] = STATE(1187), [sym_preproc_line] = STATE(1187), @@ -242818,47 +242853,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1187), [sym_preproc_define] = STATE(1187), [sym_preproc_undef] = STATE(1187), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242871,19 +242906,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242900,84 +242935,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1188] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5331), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5694), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1188), [sym_preproc_endregion] = STATE(1188), [sym_preproc_line] = STATE(1188), @@ -242987,47 +243022,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1188), [sym_preproc_define] = STATE(1188), [sym_preproc_undef] = STATE(1188), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243040,19 +243075,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243063,90 +243098,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1189] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3991), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1189), [sym_preproc_endregion] = STATE(1189), [sym_preproc_line] = STATE(1189), @@ -243156,47 +243191,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1189), [sym_preproc_define] = STATE(1189), [sym_preproc_undef] = STATE(1189), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243209,19 +243244,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243232,90 +243267,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1190] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5334), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3765), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1190), [sym_preproc_endregion] = STATE(1190), [sym_preproc_line] = STATE(1190), @@ -243325,47 +243360,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1190), [sym_preproc_define] = STATE(1190), [sym_preproc_undef] = STATE(1190), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243378,19 +243413,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243401,90 +243436,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1191] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4524), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4982), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1191), [sym_preproc_endregion] = STATE(1191), [sym_preproc_line] = STATE(1191), @@ -243494,47 +243529,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1191), [sym_preproc_define] = STATE(1191), [sym_preproc_undef] = STATE(1191), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243547,19 +243582,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243570,90 +243605,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1192] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5336), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4984), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1192), [sym_preproc_endregion] = STATE(1192), [sym_preproc_line] = STATE(1192), @@ -243663,47 +243698,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1192), [sym_preproc_define] = STATE(1192), [sym_preproc_undef] = STATE(1192), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243716,19 +243751,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243739,90 +243774,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1193] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5340), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5050), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1193), [sym_preproc_endregion] = STATE(1193), [sym_preproc_line] = STATE(1193), @@ -243832,47 +243867,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1193), [sym_preproc_define] = STATE(1193), [sym_preproc_undef] = STATE(1193), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243885,21 +243920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -243908,90 +243943,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1194] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5359), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4985), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1194), [sym_preproc_endregion] = STATE(1194), [sym_preproc_line] = STATE(1194), @@ -244001,47 +244036,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1194), [sym_preproc_define] = STATE(1194), [sym_preproc_undef] = STATE(1194), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244054,19 +244089,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244077,90 +244112,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1195] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5193), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4986), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1195), [sym_preproc_endregion] = STATE(1195), [sym_preproc_line] = STATE(1195), @@ -244170,47 +244205,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1195), [sym_preproc_define] = STATE(1195), [sym_preproc_undef] = STATE(1195), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244223,19 +244258,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244246,90 +244281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1196] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5215), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4987), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1196), [sym_preproc_endregion] = STATE(1196), [sym_preproc_line] = STATE(1196), @@ -244339,47 +244374,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1196), [sym_preproc_define] = STATE(1196), [sym_preproc_undef] = STATE(1196), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244392,19 +244427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244415,90 +244450,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1197] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5239), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4988), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1197), [sym_preproc_endregion] = STATE(1197), [sym_preproc_line] = STATE(1197), @@ -244508,47 +244543,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1197), [sym_preproc_define] = STATE(1197), [sym_preproc_undef] = STATE(1197), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244561,19 +244596,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244584,90 +244619,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1198] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5240), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4989), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1198), [sym_preproc_endregion] = STATE(1198), [sym_preproc_line] = STATE(1198), @@ -244677,47 +244712,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1198), [sym_preproc_define] = STATE(1198), [sym_preproc_undef] = STATE(1198), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244730,19 +244765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244753,90 +244788,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1199] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5255), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4990), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1199), [sym_preproc_endregion] = STATE(1199), [sym_preproc_line] = STATE(1199), @@ -244846,47 +244881,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1199), [sym_preproc_define] = STATE(1199), [sym_preproc_undef] = STATE(1199), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244899,19 +244934,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244922,90 +244957,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1200] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5256), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4991), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1200), [sym_preproc_endregion] = STATE(1200), [sym_preproc_line] = STATE(1200), @@ -245015,47 +245050,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1200), [sym_preproc_define] = STATE(1200), [sym_preproc_undef] = STATE(1200), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245068,19 +245103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245091,90 +245126,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1201] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5257), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4992), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1201), [sym_preproc_endregion] = STATE(1201), [sym_preproc_line] = STATE(1201), @@ -245184,47 +245219,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1201), [sym_preproc_define] = STATE(1201), [sym_preproc_undef] = STATE(1201), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245237,19 +245272,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245260,90 +245295,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1202] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5267), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1202), [sym_preproc_endregion] = STATE(1202), [sym_preproc_line] = STATE(1202), @@ -245353,47 +245388,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1202), [sym_preproc_define] = STATE(1202), [sym_preproc_undef] = STATE(1202), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245406,19 +245441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245429,90 +245464,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1203] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4342), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1203), [sym_preproc_endregion] = STATE(1203), [sym_preproc_line] = STATE(1203), @@ -245522,47 +245557,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1203), [sym_preproc_define] = STATE(1203), [sym_preproc_undef] = STATE(1203), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245575,19 +245610,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245604,84 +245639,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1204] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5192), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1204), [sym_preproc_endregion] = STATE(1204), [sym_preproc_line] = STATE(1204), @@ -245691,35 +245726,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1204), [sym_preproc_define] = STATE(1204), [sym_preproc_undef] = STATE(1204), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -245728,10 +245763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245773,84 +245808,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1205] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4370), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1205), [sym_preproc_endregion] = STATE(1205), [sym_preproc_line] = STATE(1205), @@ -245860,47 +245895,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1205), [sym_preproc_define] = STATE(1205), [sym_preproc_undef] = STATE(1205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245913,19 +245948,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245936,90 +245971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1206] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5195), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1206), [sym_preproc_endregion] = STATE(1206), [sym_preproc_line] = STATE(1206), @@ -246029,47 +246064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1206), [sym_preproc_define] = STATE(1206), [sym_preproc_undef] = STATE(1206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246082,19 +246117,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246105,90 +246140,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1207] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4382), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4791), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1207), [sym_preproc_endregion] = STATE(1207), [sym_preproc_line] = STATE(1207), @@ -246198,47 +246233,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1207), [sym_preproc_define] = STATE(1207), [sym_preproc_undef] = STATE(1207), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246251,19 +246286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246274,90 +246309,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1208] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5200), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1208), [sym_preproc_endregion] = STATE(1208), [sym_preproc_line] = STATE(1208), @@ -246367,47 +246402,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1208), [sym_preproc_define] = STATE(1208), [sym_preproc_undef] = STATE(1208), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246420,19 +246455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246443,90 +246478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1209] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4299), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5204), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1209), [sym_preproc_endregion] = STATE(1209), [sym_preproc_line] = STATE(1209), @@ -246536,47 +246571,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1209), [sym_preproc_define] = STATE(1209), [sym_preproc_undef] = STATE(1209), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246589,19 +246624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246612,90 +246647,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1210] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4472), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5205), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1210), [sym_preproc_endregion] = STATE(1210), [sym_preproc_line] = STATE(1210), @@ -246705,47 +246740,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1210), [sym_preproc_define] = STATE(1210), [sym_preproc_undef] = STATE(1210), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246758,19 +246793,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246781,90 +246816,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1211] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5207), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1211), [sym_preproc_endregion] = STATE(1211), [sym_preproc_line] = STATE(1211), @@ -246874,47 +246909,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1211), [sym_preproc_define] = STATE(1211), [sym_preproc_undef] = STATE(1211), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -246927,19 +246962,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246950,90 +246985,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1212] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4566), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5208), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1212), [sym_preproc_endregion] = STATE(1212), [sym_preproc_line] = STATE(1212), @@ -247043,47 +247078,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1212), [sym_preproc_define] = STATE(1212), [sym_preproc_undef] = STATE(1212), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247096,19 +247131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247119,90 +247154,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1213] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4567), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5209), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1213), [sym_preproc_endregion] = STATE(1213), [sym_preproc_line] = STATE(1213), @@ -247212,47 +247247,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1213), [sym_preproc_define] = STATE(1213), [sym_preproc_undef] = STATE(1213), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247265,19 +247300,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247288,90 +247323,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1214] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4725), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5211), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1214), [sym_preproc_endregion] = STATE(1214), [sym_preproc_line] = STATE(1214), @@ -247381,47 +247416,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1214), [sym_preproc_define] = STATE(1214), [sym_preproc_undef] = STATE(1214), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247434,19 +247469,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247457,90 +247492,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1215] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4552), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5224), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1215), [sym_preproc_endregion] = STATE(1215), [sym_preproc_line] = STATE(1215), @@ -247550,47 +247585,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1215), [sym_preproc_define] = STATE(1215), [sym_preproc_undef] = STATE(1215), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247603,19 +247638,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247626,90 +247661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1216] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4553), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5225), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1216), [sym_preproc_endregion] = STATE(1216), [sym_preproc_line] = STATE(1216), @@ -247719,47 +247754,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1216), [sym_preproc_define] = STATE(1216), [sym_preproc_undef] = STATE(1216), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247772,19 +247807,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247795,90 +247830,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1217] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4554), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5226), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1217), [sym_preproc_endregion] = STATE(1217), [sym_preproc_line] = STATE(1217), @@ -247888,47 +247923,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1217), [sym_preproc_define] = STATE(1217), [sym_preproc_undef] = STATE(1217), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247941,19 +247976,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247964,90 +247999,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1218] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4568), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5252), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1218), [sym_preproc_endregion] = STATE(1218), [sym_preproc_line] = STATE(1218), @@ -248057,47 +248092,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1218), [sym_preproc_define] = STATE(1218), [sym_preproc_undef] = STATE(1218), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248110,19 +248145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248133,90 +248168,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1219] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4555), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5257), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1219), [sym_preproc_endregion] = STATE(1219), [sym_preproc_line] = STATE(1219), @@ -248226,47 +248261,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1219), [sym_preproc_define] = STATE(1219), [sym_preproc_undef] = STATE(1219), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248279,19 +248314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248302,90 +248337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1220] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4556), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1220), [sym_preproc_endregion] = STATE(1220), [sym_preproc_line] = STATE(1220), @@ -248395,47 +248430,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1220), [sym_preproc_define] = STATE(1220), [sym_preproc_undef] = STATE(1220), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248448,19 +248483,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248471,90 +248506,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1221] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4557), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5003), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1221), [sym_preproc_endregion] = STATE(1221), [sym_preproc_line] = STATE(1221), @@ -248564,47 +248599,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1221), [sym_preproc_define] = STATE(1221), [sym_preproc_undef] = STATE(1221), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248617,19 +248652,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248640,90 +248675,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1222] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4558), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1222), [sym_preproc_endregion] = STATE(1222), [sym_preproc_line] = STATE(1222), @@ -248733,47 +248768,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1222), [sym_preproc_define] = STATE(1222), [sym_preproc_undef] = STATE(1222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248786,19 +248821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248809,90 +248844,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1223] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4510), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5471), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1223), [sym_preproc_endregion] = STATE(1223), [sym_preproc_line] = STATE(1223), @@ -248902,47 +248937,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1223), [sym_preproc_define] = STATE(1223), [sym_preproc_undef] = STATE(1223), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248955,19 +248990,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248978,90 +249013,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1224] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5005), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1224), [sym_preproc_endregion] = STATE(1224), [sym_preproc_line] = STATE(1224), @@ -249071,47 +249106,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1224), [sym_preproc_define] = STATE(1224), [sym_preproc_undef] = STATE(1224), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249124,19 +249159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249147,90 +249182,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1225] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4407), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5007), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1225), [sym_preproc_endregion] = STATE(1225), [sym_preproc_line] = STATE(1225), @@ -249240,47 +249275,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1225), [sym_preproc_define] = STATE(1225), [sym_preproc_undef] = STATE(1225), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249293,19 +249328,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249316,90 +249351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1226] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4109), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4166), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1226), [sym_preproc_endregion] = STATE(1226), [sym_preproc_line] = STATE(1226), @@ -249409,47 +249444,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1226), [sym_preproc_define] = STATE(1226), [sym_preproc_undef] = STATE(1226), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249462,19 +249497,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249491,84 +249526,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1227] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4747), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1227), [sym_preproc_endregion] = STATE(1227), [sym_preproc_line] = STATE(1227), @@ -249578,47 +249613,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1227), [sym_preproc_define] = STATE(1227), [sym_preproc_undef] = STATE(1227), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249631,19 +249666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249654,90 +249689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1228] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5483), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1228), [sym_preproc_endregion] = STATE(1228), [sym_preproc_line] = STATE(1228), @@ -249747,47 +249782,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1228), [sym_preproc_define] = STATE(1228), [sym_preproc_undef] = STATE(1228), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249800,19 +249835,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249823,90 +249858,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1229] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5484), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4600), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1229), [sym_preproc_endregion] = STATE(1229), [sym_preproc_line] = STATE(1229), @@ -249916,47 +249951,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1229), [sym_preproc_define] = STATE(1229), [sym_preproc_undef] = STATE(1229), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249969,19 +250004,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249992,90 +250027,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1230] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5618), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4601), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1230), [sym_preproc_endregion] = STATE(1230), [sym_preproc_line] = STATE(1230), @@ -250085,47 +250120,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1230), [sym_preproc_define] = STATE(1230), [sym_preproc_undef] = STATE(1230), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250138,19 +250173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250161,90 +250196,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1231] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4770), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1231), [sym_preproc_endregion] = STATE(1231), [sym_preproc_line] = STATE(1231), @@ -250254,47 +250289,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1231), [sym_preproc_define] = STATE(1231), [sym_preproc_undef] = STATE(1231), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250307,19 +250342,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250330,90 +250365,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1232] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4239), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4748), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1232), [sym_preproc_endregion] = STATE(1232), [sym_preproc_line] = STATE(1232), @@ -250423,47 +250458,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1232), [sym_preproc_define] = STATE(1232), [sym_preproc_undef] = STATE(1232), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250476,19 +250511,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250499,90 +250534,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1233] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4131), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4749), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1233), [sym_preproc_endregion] = STATE(1233), [sym_preproc_line] = STATE(1233), @@ -250592,47 +250627,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1233), [sym_preproc_define] = STATE(1233), [sym_preproc_undef] = STATE(1233), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250645,19 +250680,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250668,90 +250703,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1234] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5553), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4750), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1234), [sym_preproc_endregion] = STATE(1234), [sym_preproc_line] = STATE(1234), @@ -250761,47 +250796,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1234), [sym_preproc_define] = STATE(1234), [sym_preproc_undef] = STATE(1234), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250814,19 +250849,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250837,90 +250872,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1235] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5556), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4602), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1235), [sym_preproc_endregion] = STATE(1235), [sym_preproc_line] = STATE(1235), @@ -250930,47 +250965,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1235), [sym_preproc_define] = STATE(1235), [sym_preproc_undef] = STATE(1235), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250983,19 +251018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251006,90 +251041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1236] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5558), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4751), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1236), [sym_preproc_endregion] = STATE(1236), [sym_preproc_line] = STATE(1236), @@ -251099,47 +251134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1236), [sym_preproc_define] = STATE(1236), [sym_preproc_undef] = STATE(1236), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251152,19 +251187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251175,90 +251210,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1237] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5570), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1237), [sym_preproc_endregion] = STATE(1237), [sym_preproc_line] = STATE(1237), @@ -251268,49 +251303,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1237), [sym_preproc_define] = STATE(1237), [sym_preproc_undef] = STATE(1237), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), [anon_sym_on] = ACTIONS(29), [anon_sym_equals] = ACTIONS(29), @@ -251321,19 +251356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251344,90 +251379,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1238] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5575), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4752), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1238), [sym_preproc_endregion] = STATE(1238), [sym_preproc_line] = STATE(1238), @@ -251437,47 +251472,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1238), [sym_preproc_define] = STATE(1238), [sym_preproc_undef] = STATE(1238), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251490,19 +251525,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251513,90 +251548,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1239] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5581), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4753), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1239), [sym_preproc_endregion] = STATE(1239), [sym_preproc_line] = STATE(1239), @@ -251606,47 +251641,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1239), [sym_preproc_define] = STATE(1239), [sym_preproc_undef] = STATE(1239), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251659,19 +251694,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251682,90 +251717,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1240] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5590), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4754), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1240), [sym_preproc_endregion] = STATE(1240), [sym_preproc_line] = STATE(1240), @@ -251775,47 +251810,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1240), [sym_preproc_define] = STATE(1240), [sym_preproc_undef] = STATE(1240), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251828,19 +251863,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251851,90 +251886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1241] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5619), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4755), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1241), [sym_preproc_endregion] = STATE(1241), [sym_preproc_line] = STATE(1241), @@ -251944,47 +251979,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1241), [sym_preproc_define] = STATE(1241), [sym_preproc_undef] = STATE(1241), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251997,19 +252032,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252020,90 +252055,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1242] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5209), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1242), [sym_preproc_endregion] = STATE(1242), [sym_preproc_line] = STATE(1242), @@ -252113,72 +252148,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1242), [sym_preproc_define] = STATE(1242), [sym_preproc_undef] = STATE(1242), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252189,90 +252224,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1243] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5623), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4757), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1243), [sym_preproc_endregion] = STATE(1243), [sym_preproc_line] = STATE(1243), @@ -252282,47 +252317,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1243), [sym_preproc_define] = STATE(1243), [sym_preproc_undef] = STATE(1243), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252335,19 +252370,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252358,90 +252393,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1244] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5624), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1244), [sym_preproc_endregion] = STATE(1244), [sym_preproc_line] = STATE(1244), @@ -252451,35 +252486,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1244), [sym_preproc_define] = STATE(1244), [sym_preproc_undef] = STATE(1244), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -252488,10 +252523,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252533,84 +252568,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1245] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5631), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1245), [sym_preproc_endregion] = STATE(1245), [sym_preproc_line] = STATE(1245), @@ -252620,35 +252655,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1245), [sym_preproc_define] = STATE(1245), [sym_preproc_undef] = STATE(1245), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -252657,10 +252692,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252702,84 +252737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1246] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5647), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4727), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1246), [sym_preproc_endregion] = STATE(1246), [sym_preproc_line] = STATE(1246), @@ -252789,35 +252824,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1246), [sym_preproc_define] = STATE(1246), [sym_preproc_undef] = STATE(1246), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -252826,10 +252861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252871,84 +252906,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1247] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5310), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1247), [sym_preproc_endregion] = STATE(1247), [sym_preproc_line] = STATE(1247), @@ -252958,47 +252993,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1247), [sym_preproc_define] = STATE(1247), [sym_preproc_undef] = STATE(1247), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253011,19 +253046,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253034,90 +253069,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1248] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4608), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1248), [sym_preproc_endregion] = STATE(1248), [sym_preproc_line] = STATE(1248), @@ -253127,35 +253162,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1248), [sym_preproc_define] = STATE(1248), [sym_preproc_undef] = STATE(1248), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -253164,10 +253199,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253209,84 +253244,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1249] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5210), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4609), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1249), [sym_preproc_endregion] = STATE(1249), [sym_preproc_line] = STATE(1249), @@ -253296,35 +253331,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1249), [sym_preproc_define] = STATE(1249), [sym_preproc_undef] = STATE(1249), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -253333,10 +253368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253378,84 +253413,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1250] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5050), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4610), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1250), [sym_preproc_endregion] = STATE(1250), [sym_preproc_line] = STATE(1250), @@ -253465,47 +253500,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1250), [sym_preproc_define] = STATE(1250), [sym_preproc_undef] = STATE(1250), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253518,19 +253553,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253547,84 +253582,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1251] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5216), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4611), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1251), [sym_preproc_endregion] = STATE(1251), [sym_preproc_line] = STATE(1251), @@ -253634,35 +253669,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1251), [sym_preproc_define] = STATE(1251), [sym_preproc_undef] = STATE(1251), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -253671,10 +253706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253716,84 +253751,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1252] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5643), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4612), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1252), [sym_preproc_endregion] = STATE(1252), [sym_preproc_line] = STATE(1252), @@ -253803,35 +253838,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1252), [sym_preproc_define] = STATE(1252), [sym_preproc_undef] = STATE(1252), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -253840,10 +253875,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253885,84 +253920,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1253] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4997), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4613), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1253), [sym_preproc_endregion] = STATE(1253), [sym_preproc_line] = STATE(1253), @@ -253972,35 +254007,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1253), [sym_preproc_define] = STATE(1253), [sym_preproc_undef] = STATE(1253), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -254009,10 +254044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254054,84 +254089,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1254] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5315), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4614), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1254), [sym_preproc_endregion] = STATE(1254), [sym_preproc_line] = STATE(1254), @@ -254141,47 +254176,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1254), [sym_preproc_define] = STATE(1254), [sym_preproc_undef] = STATE(1254), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254194,19 +254229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254217,90 +254252,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1255] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4571), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4615), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1255), [sym_preproc_endregion] = STATE(1255), [sym_preproc_line] = STATE(1255), @@ -254310,47 +254345,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1255), [sym_preproc_define] = STATE(1255), [sym_preproc_undef] = STATE(1255), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254363,19 +254398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254392,84 +254427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1256] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4572), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4617), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1256), [sym_preproc_endregion] = STATE(1256), [sym_preproc_line] = STATE(1256), @@ -254479,47 +254514,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1256), [sym_preproc_define] = STATE(1256), [sym_preproc_undef] = STATE(1256), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254532,19 +254567,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254561,84 +254596,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1257] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4783), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4618), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1257), [sym_preproc_endregion] = STATE(1257), [sym_preproc_line] = STATE(1257), @@ -254648,47 +254683,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1257), [sym_preproc_define] = STATE(1257), [sym_preproc_undef] = STATE(1257), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254701,19 +254736,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254730,84 +254765,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1258] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4573), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4619), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1258), [sym_preproc_endregion] = STATE(1258), [sym_preproc_line] = STATE(1258), @@ -254817,47 +254852,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1258), [sym_preproc_define] = STATE(1258), [sym_preproc_undef] = STATE(1258), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254870,19 +254905,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254899,84 +254934,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1259] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4574), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4034), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1259), [sym_preproc_endregion] = STATE(1259), [sym_preproc_line] = STATE(1259), @@ -254986,47 +255021,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1259), [sym_preproc_define] = STATE(1259), [sym_preproc_undef] = STATE(1259), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255039,19 +255074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255062,90 +255097,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1260] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4575), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4728), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1260), [sym_preproc_endregion] = STATE(1260), [sym_preproc_line] = STATE(1260), @@ -255155,47 +255190,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1260), [sym_preproc_define] = STATE(1260), [sym_preproc_undef] = STATE(1260), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255208,19 +255243,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255237,84 +255272,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1261] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4576), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4411), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1261), [sym_preproc_endregion] = STATE(1261), [sym_preproc_line] = STATE(1261), @@ -255324,47 +255359,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1261), [sym_preproc_define] = STATE(1261), [sym_preproc_undef] = STATE(1261), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255377,19 +255412,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255400,90 +255435,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1262] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4577), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4037), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1262), [sym_preproc_endregion] = STATE(1262), [sym_preproc_line] = STATE(1262), @@ -255493,47 +255528,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1262), [sym_preproc_define] = STATE(1262), [sym_preproc_undef] = STATE(1262), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255546,19 +255581,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255569,90 +255604,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1263] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4578), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1263), [sym_preproc_endregion] = STATE(1263), [sym_preproc_line] = STATE(1263), @@ -255662,47 +255697,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1263), [sym_preproc_define] = STATE(1263), [sym_preproc_undef] = STATE(1263), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255715,19 +255750,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255744,84 +255779,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1264] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4579), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4038), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1264), [sym_preproc_endregion] = STATE(1264), [sym_preproc_line] = STATE(1264), @@ -255831,47 +255866,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1264), [sym_preproc_define] = STATE(1264), [sym_preproc_undef] = STATE(1264), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255884,19 +255919,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255907,90 +255942,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1265] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4372), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1265), [sym_preproc_endregion] = STATE(1265), [sym_preproc_line] = STATE(1265), @@ -256000,35 +256035,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1265), [sym_preproc_define] = STATE(1265), [sym_preproc_undef] = STATE(1265), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -256037,10 +256072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256082,84 +256117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1266] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4039), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1266), [sym_preproc_endregion] = STATE(1266), [sym_preproc_line] = STATE(1266), @@ -256169,47 +256204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1266), [sym_preproc_define] = STATE(1266), [sym_preproc_undef] = STATE(1266), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256222,19 +256257,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256245,90 +256280,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1267] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5237), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4621), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1267), [sym_preproc_endregion] = STATE(1267), [sym_preproc_line] = STATE(1267), @@ -256338,47 +256373,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1267), [sym_preproc_define] = STATE(1267), [sym_preproc_undef] = STATE(1267), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256391,19 +256426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256414,90 +256449,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1268] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4040), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1268), [sym_preproc_endregion] = STATE(1268), [sym_preproc_line] = STATE(1268), @@ -256507,47 +256542,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1268), [sym_preproc_define] = STATE(1268), [sym_preproc_undef] = STATE(1268), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256560,19 +256595,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256583,90 +256618,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1269] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5265), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4041), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1269), [sym_preproc_endregion] = STATE(1269), [sym_preproc_line] = STATE(1269), @@ -256676,47 +256711,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1269), [sym_preproc_define] = STATE(1269), [sym_preproc_undef] = STATE(1269), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256729,19 +256764,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256752,90 +256787,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1270] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4766), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4412), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1270), [sym_preproc_endregion] = STATE(1270), [sym_preproc_line] = STATE(1270), @@ -256845,35 +256880,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1270), [sym_preproc_define] = STATE(1270), [sym_preproc_undef] = STATE(1270), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -256882,10 +256917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256927,84 +256962,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1271] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5268), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4042), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1271), [sym_preproc_endregion] = STATE(1271), [sym_preproc_line] = STATE(1271), @@ -257014,47 +257049,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1271), [sym_preproc_define] = STATE(1271), [sym_preproc_undef] = STATE(1271), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257067,19 +257102,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257090,90 +257125,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1272] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5272), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5039), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1272), [sym_preproc_endregion] = STATE(1272), [sym_preproc_line] = STATE(1272), @@ -257183,47 +257218,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1272), [sym_preproc_define] = STATE(1272), [sym_preproc_undef] = STATE(1272), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257236,19 +257271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257259,90 +257294,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1273] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5370), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5040), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1273), [sym_preproc_endregion] = STATE(1273), [sym_preproc_line] = STATE(1273), @@ -257352,47 +257387,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1273), [sym_preproc_define] = STATE(1273), [sym_preproc_undef] = STATE(1273), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257405,19 +257440,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257428,90 +257463,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1274] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5282), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5057), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1274), [sym_preproc_endregion] = STATE(1274), [sym_preproc_line] = STATE(1274), @@ -257521,47 +257556,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1274), [sym_preproc_define] = STATE(1274), [sym_preproc_undef] = STATE(1274), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257574,19 +257609,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257597,90 +257632,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1275] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5290), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5041), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1275), [sym_preproc_endregion] = STATE(1275), [sym_preproc_line] = STATE(1275), @@ -257690,47 +257725,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1275), [sym_preproc_define] = STATE(1275), [sym_preproc_undef] = STATE(1275), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257743,19 +257778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257766,90 +257801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1276] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5300), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1276), [sym_preproc_endregion] = STATE(1276), [sym_preproc_line] = STATE(1276), @@ -257859,47 +257894,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1276), [sym_preproc_define] = STATE(1276), [sym_preproc_undef] = STATE(1276), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257912,19 +257947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257935,90 +257970,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1277] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5301), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5043), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1277), [sym_preproc_endregion] = STATE(1277), [sym_preproc_line] = STATE(1277), @@ -258028,47 +258063,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1277), [sym_preproc_define] = STATE(1277), [sym_preproc_undef] = STATE(1277), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258081,19 +258116,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258104,90 +258139,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1278] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5311), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5044), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1278), [sym_preproc_endregion] = STATE(1278), [sym_preproc_line] = STATE(1278), @@ -258197,47 +258232,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1278), [sym_preproc_define] = STATE(1278), [sym_preproc_undef] = STATE(1278), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258250,19 +258285,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258273,90 +258308,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1279] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5320), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5045), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1279), [sym_preproc_endregion] = STATE(1279), [sym_preproc_line] = STATE(1279), @@ -258366,47 +258401,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1279), [sym_preproc_define] = STATE(1279), [sym_preproc_undef] = STATE(1279), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258419,19 +258454,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258442,90 +258477,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1280] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5348), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5046), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1280), [sym_preproc_endregion] = STATE(1280), [sym_preproc_line] = STATE(1280), @@ -258535,47 +258570,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1280), [sym_preproc_define] = STATE(1280), [sym_preproc_undef] = STATE(1280), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258588,19 +258623,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258611,90 +258646,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1281] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5349), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5049), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1281), [sym_preproc_endregion] = STATE(1281), [sym_preproc_line] = STATE(1281), @@ -258704,47 +258739,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1281), [sym_preproc_define] = STATE(1281), [sym_preproc_undef] = STATE(1281), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258757,19 +258792,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258780,90 +258815,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1282] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5350), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5051), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1282), [sym_preproc_endregion] = STATE(1282), [sym_preproc_line] = STATE(1282), @@ -258873,47 +258908,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1282), [sym_preproc_define] = STATE(1282), [sym_preproc_undef] = STATE(1282), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258926,19 +258961,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258949,90 +258984,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1283] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4043), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1283), [sym_preproc_endregion] = STATE(1283), [sym_preproc_line] = STATE(1283), @@ -259042,47 +259077,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1283), [sym_preproc_define] = STATE(1283), [sym_preproc_undef] = STATE(1283), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259095,19 +259130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259118,90 +259153,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1284] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4581), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1284), [sym_preproc_endregion] = STATE(1284), [sym_preproc_line] = STATE(1284), @@ -259211,35 +259246,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1284), [sym_preproc_define] = STATE(1284), [sym_preproc_undef] = STATE(1284), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -259248,10 +259283,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259293,84 +259328,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1285] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5323), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1285), [sym_preproc_endregion] = STATE(1285), [sym_preproc_line] = STATE(1285), @@ -259380,47 +259415,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1285), [sym_preproc_define] = STATE(1285), [sym_preproc_undef] = STATE(1285), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259433,19 +259468,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259456,90 +259491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1286] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4583), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1286), [sym_preproc_endregion] = STATE(1286), [sym_preproc_line] = STATE(1286), @@ -259549,47 +259584,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1286), [sym_preproc_define] = STATE(1286), [sym_preproc_undef] = STATE(1286), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259602,19 +259637,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259625,90 +259660,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1287] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4045), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1287), [sym_preproc_endregion] = STATE(1287), [sym_preproc_line] = STATE(1287), @@ -259718,47 +259753,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1287), [sym_preproc_define] = STATE(1287), [sym_preproc_undef] = STATE(1287), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259771,19 +259806,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259794,90 +259829,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1288] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4728), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5365), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1288), [sym_preproc_endregion] = STATE(1288), [sym_preproc_line] = STATE(1288), @@ -259887,47 +259922,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1288), [sym_preproc_define] = STATE(1288), [sym_preproc_undef] = STATE(1288), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259940,19 +259975,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259963,90 +259998,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1289] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4046), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1289), [sym_preproc_endregion] = STATE(1289), [sym_preproc_line] = STATE(1289), @@ -260056,47 +260091,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1289), [sym_preproc_define] = STATE(1289), [sym_preproc_undef] = STATE(1289), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260109,19 +260144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260132,90 +260167,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1290] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4427), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4434), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1290), [sym_preproc_endregion] = STATE(1290), [sym_preproc_line] = STATE(1290), @@ -260225,35 +260260,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1290), [sym_preproc_define] = STATE(1290), [sym_preproc_undef] = STATE(1290), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -260262,10 +260297,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260307,84 +260342,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1291] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4428), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5189), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1291), [sym_preproc_endregion] = STATE(1291), [sym_preproc_line] = STATE(1291), @@ -260394,47 +260429,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1291), [sym_preproc_define] = STATE(1291), [sym_preproc_undef] = STATE(1291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260447,19 +260482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260470,90 +260505,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1292] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4486), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5203), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1292), [sym_preproc_endregion] = STATE(1292), [sym_preproc_line] = STATE(1292), @@ -260563,47 +260598,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1292), [sym_preproc_define] = STATE(1292), [sym_preproc_undef] = STATE(1292), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260616,19 +260651,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260639,90 +260674,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1293] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4418), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5214), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1293), [sym_preproc_endregion] = STATE(1293), [sym_preproc_line] = STATE(1293), @@ -260732,47 +260767,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1293), [sym_preproc_define] = STATE(1293), [sym_preproc_undef] = STATE(1293), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260785,19 +260820,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260808,90 +260843,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1294] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4420), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5216), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1294), [sym_preproc_endregion] = STATE(1294), [sym_preproc_line] = STATE(1294), @@ -260901,47 +260936,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1294), [sym_preproc_define] = STATE(1294), [sym_preproc_undef] = STATE(1294), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260954,21 +260989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -260977,90 +261012,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1295] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5340), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1295), [sym_preproc_endregion] = STATE(1295), [sym_preproc_line] = STATE(1295), @@ -261070,47 +261105,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1295), [sym_preproc_define] = STATE(1295), [sym_preproc_undef] = STATE(1295), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261123,19 +261158,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261146,90 +261181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1296] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4429), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5341), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1296), [sym_preproc_endregion] = STATE(1296), [sym_preproc_line] = STATE(1296), @@ -261239,47 +261274,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1296), [sym_preproc_define] = STATE(1296), [sym_preproc_undef] = STATE(1296), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261292,19 +261327,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261315,90 +261350,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1297] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4422), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5342), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1297), [sym_preproc_endregion] = STATE(1297), [sym_preproc_line] = STATE(1297), @@ -261408,47 +261443,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1297), [sym_preproc_define] = STATE(1297), [sym_preproc_undef] = STATE(1297), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261461,19 +261496,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261484,90 +261519,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1298] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4430), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5217), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1298), [sym_preproc_endregion] = STATE(1298), [sym_preproc_line] = STATE(1298), @@ -261577,47 +261612,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1298), [sym_preproc_define] = STATE(1298), [sym_preproc_undef] = STATE(1298), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261630,19 +261665,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261653,90 +261688,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1299] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4431), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5347), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1299), [sym_preproc_endregion] = STATE(1299), [sym_preproc_line] = STATE(1299), @@ -261746,47 +261781,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1299), [sym_preproc_define] = STATE(1299), [sym_preproc_undef] = STATE(1299), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261799,19 +261834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261822,90 +261857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1300] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4433), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5352), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1300), [sym_preproc_endregion] = STATE(1300), [sym_preproc_line] = STATE(1300), @@ -261915,47 +261950,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1300), [sym_preproc_define] = STATE(1300), [sym_preproc_undef] = STATE(1300), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261968,19 +262003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261991,90 +262026,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1301] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4729), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5357), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1301), [sym_preproc_endregion] = STATE(1301), [sym_preproc_line] = STATE(1301), @@ -262084,47 +262119,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1301), [sym_preproc_define] = STATE(1301), [sym_preproc_undef] = STATE(1301), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262137,19 +262172,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262160,90 +262195,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1302] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5358), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1302), [sym_preproc_endregion] = STATE(1302), [sym_preproc_line] = STATE(1302), @@ -262253,47 +262288,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1302), [sym_preproc_define] = STATE(1302), [sym_preproc_undef] = STATE(1302), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262306,19 +262341,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262329,90 +262364,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1303] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4731), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1303), [sym_preproc_endregion] = STATE(1303), [sym_preproc_line] = STATE(1303), @@ -262422,47 +262457,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1303), [sym_preproc_define] = STATE(1303), [sym_preproc_undef] = STATE(1303), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262475,19 +262510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262498,90 +262533,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1304] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4047), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1304), [sym_preproc_endregion] = STATE(1304), [sym_preproc_line] = STATE(1304), @@ -262591,47 +262626,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1304), [sym_preproc_define] = STATE(1304), [sym_preproc_undef] = STATE(1304), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262644,19 +262679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262667,90 +262702,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1305] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5073), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1305), [sym_preproc_endregion] = STATE(1305), [sym_preproc_line] = STATE(1305), @@ -262760,47 +262795,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1305), [sym_preproc_define] = STATE(1305), [sym_preproc_undef] = STATE(1305), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262813,19 +262848,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262842,84 +262877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1306] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3150), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7651), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1306), [sym_preproc_endregion] = STATE(1306), [sym_preproc_line] = STATE(1306), @@ -262929,47 +262964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1306), [sym_preproc_define] = STATE(1306), [sym_preproc_undef] = STATE(1306), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262982,19 +263017,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263005,90 +263040,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1307] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4145), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1307), [sym_preproc_endregion] = STATE(1307), [sym_preproc_line] = STATE(1307), @@ -263098,47 +263133,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1307), [sym_preproc_define] = STATE(1307), [sym_preproc_undef] = STATE(1307), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263151,19 +263186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263174,90 +263209,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1308] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5510), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5075), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1308), [sym_preproc_endregion] = STATE(1308), [sym_preproc_line] = STATE(1308), @@ -263267,47 +263302,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1308), [sym_preproc_define] = STATE(1308), [sym_preproc_undef] = STATE(1308), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263320,19 +263355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263349,84 +263384,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1309] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5551), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5079), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1309), [sym_preproc_endregion] = STATE(1309), [sym_preproc_line] = STATE(1309), @@ -263436,47 +263471,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1309), [sym_preproc_define] = STATE(1309), [sym_preproc_undef] = STATE(1309), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263489,19 +263524,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263518,84 +263553,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1310] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4771), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1310), [sym_preproc_endregion] = STATE(1310), [sym_preproc_line] = STATE(1310), @@ -263605,47 +263640,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1310), [sym_preproc_define] = STATE(1310), [sym_preproc_undef] = STATE(1310), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263658,19 +263693,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263681,90 +263716,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1311] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5444), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1311), [sym_preproc_endregion] = STATE(1311), [sym_preproc_line] = STATE(1311), @@ -263774,47 +263809,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1311), [sym_preproc_define] = STATE(1311), [sym_preproc_undef] = STATE(1311), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263827,19 +263862,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263850,90 +263885,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1312] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5447), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4624), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1312), [sym_preproc_endregion] = STATE(1312), [sym_preproc_line] = STATE(1312), @@ -263943,47 +263978,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1312), [sym_preproc_define] = STATE(1312), [sym_preproc_undef] = STATE(1312), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263996,19 +264031,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264019,90 +264054,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1313] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5448), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4625), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1313), [sym_preproc_endregion] = STATE(1313), [sym_preproc_line] = STATE(1313), @@ -264112,47 +264147,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1313), [sym_preproc_define] = STATE(1313), [sym_preproc_undef] = STATE(1313), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264165,19 +264200,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264188,90 +264223,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1314] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5449), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4797), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1314), [sym_preproc_endregion] = STATE(1314), [sym_preproc_line] = STATE(1314), @@ -264281,47 +264316,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1314), [sym_preproc_define] = STATE(1314), [sym_preproc_undef] = STATE(1314), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264334,19 +264369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264357,90 +264392,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1315] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5450), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4772), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1315), [sym_preproc_endregion] = STATE(1315), [sym_preproc_line] = STATE(1315), @@ -264450,47 +264485,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1315), [sym_preproc_define] = STATE(1315), [sym_preproc_undef] = STATE(1315), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264503,19 +264538,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264526,90 +264561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1316] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5452), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4773), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1316), [sym_preproc_endregion] = STATE(1316), [sym_preproc_line] = STATE(1316), @@ -264619,47 +264654,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1316), [sym_preproc_define] = STATE(1316), [sym_preproc_undef] = STATE(1316), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264672,19 +264707,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264695,90 +264730,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1317] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5453), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4774), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1317), [sym_preproc_endregion] = STATE(1317), [sym_preproc_line] = STATE(1317), @@ -264788,47 +264823,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1317), [sym_preproc_define] = STATE(1317), [sym_preproc_undef] = STATE(1317), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264841,19 +264876,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264864,90 +264899,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1318] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5454), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4626), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1318), [sym_preproc_endregion] = STATE(1318), [sym_preproc_line] = STATE(1318), @@ -264957,47 +264992,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1318), [sym_preproc_define] = STATE(1318), [sym_preproc_undef] = STATE(1318), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265010,19 +265045,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265033,90 +265068,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1319] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5456), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4775), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1319), [sym_preproc_endregion] = STATE(1319), [sym_preproc_line] = STATE(1319), @@ -265126,47 +265161,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1319), [sym_preproc_define] = STATE(1319), [sym_preproc_undef] = STATE(1319), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265179,19 +265214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265202,90 +265237,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1320] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5457), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4776), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1320), [sym_preproc_endregion] = STATE(1320), [sym_preproc_line] = STATE(1320), @@ -265295,47 +265330,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1320), [sym_preproc_define] = STATE(1320), [sym_preproc_undef] = STATE(1320), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265348,19 +265383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265371,90 +265406,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1321] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5458), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4777), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1321), [sym_preproc_endregion] = STATE(1321), [sym_preproc_line] = STATE(1321), @@ -265464,47 +265499,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1321), [sym_preproc_define] = STATE(1321), [sym_preproc_undef] = STATE(1321), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265517,19 +265552,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265540,90 +265575,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1322] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5372), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4778), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1322), [sym_preproc_endregion] = STATE(1322), [sym_preproc_line] = STATE(1322), @@ -265633,47 +265668,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1322), [sym_preproc_define] = STATE(1322), [sym_preproc_undef] = STATE(1322), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265686,19 +265721,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265709,90 +265744,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1323] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3929), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4779), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1323), [sym_preproc_endregion] = STATE(1323), [sym_preproc_line] = STATE(1323), @@ -265802,35 +265837,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1323), [sym_preproc_define] = STATE(1323), [sym_preproc_undef] = STATE(1323), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -265839,10 +265874,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265884,84 +265919,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1324] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1324), [sym_preproc_endregion] = STATE(1324), [sym_preproc_line] = STATE(1324), @@ -265971,47 +266006,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1324), [sym_preproc_define] = STATE(1324), [sym_preproc_undef] = STATE(1324), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266024,19 +266059,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266047,90 +266082,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1325] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5058), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4781), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1325), [sym_preproc_endregion] = STATE(1325), [sym_preproc_line] = STATE(1325), @@ -266140,47 +266175,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1325), [sym_preproc_define] = STATE(1325), [sym_preproc_undef] = STATE(1325), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266193,19 +266228,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266216,90 +266251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1326] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5465), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3140), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7543), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1326), [sym_preproc_endregion] = STATE(1326), [sym_preproc_line] = STATE(1326), @@ -266309,47 +266344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1326), [sym_preproc_define] = STATE(1326), [sym_preproc_undef] = STATE(1326), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_ref] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(2097), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2101), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266362,19 +266397,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266385,90 +266420,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1327] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3845), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1327), [sym_preproc_endregion] = STATE(1327), [sym_preproc_line] = STATE(1327), @@ -266478,47 +266513,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1327), [sym_preproc_define] = STATE(1327), [sym_preproc_undef] = STATE(1327), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266531,19 +266566,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266554,90 +266589,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1328] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5181), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1328), [sym_preproc_endregion] = STATE(1328), [sym_preproc_line] = STATE(1328), @@ -266647,17 +266682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1328), [sym_preproc_define] = STATE(1328), [sym_preproc_undef] = STATE(1328), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -266665,18 +266700,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -266684,10 +266719,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266729,84 +266764,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1329] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5191), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5428), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1329), [sym_preproc_endregion] = STATE(1329), [sym_preproc_line] = STATE(1329), @@ -266816,35 +266851,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1329), [sym_preproc_define] = STATE(1329), [sym_preproc_undef] = STATE(1329), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -266853,10 +266888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266898,84 +266933,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1330] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4985), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1330), [sym_preproc_endregion] = STATE(1330), [sym_preproc_line] = STATE(1330), @@ -266985,47 +267020,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1330), [sym_preproc_define] = STATE(1330), [sym_preproc_undef] = STATE(1330), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267038,19 +267073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267067,84 +267102,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1331] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4986), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5521), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1331), [sym_preproc_endregion] = STATE(1331), [sym_preproc_line] = STATE(1331), @@ -267154,47 +267189,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1331), [sym_preproc_define] = STATE(1331), [sym_preproc_undef] = STATE(1331), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267207,19 +267242,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267236,84 +267271,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1332] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5052), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5523), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1332), [sym_preproc_endregion] = STATE(1332), [sym_preproc_line] = STATE(1332), @@ -267323,47 +267358,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1332), [sym_preproc_define] = STATE(1332), [sym_preproc_undef] = STATE(1332), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267376,19 +267411,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267405,84 +267440,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1333] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4987), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5524), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1333), [sym_preproc_endregion] = STATE(1333), [sym_preproc_line] = STATE(1333), @@ -267492,47 +267527,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1333), [sym_preproc_define] = STATE(1333), [sym_preproc_undef] = STATE(1333), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267545,19 +267580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267574,84 +267609,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1334] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4988), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5525), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1334), [sym_preproc_endregion] = STATE(1334), [sym_preproc_line] = STATE(1334), @@ -267661,47 +267696,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1334), [sym_preproc_define] = STATE(1334), [sym_preproc_undef] = STATE(1334), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267714,19 +267749,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267743,84 +267778,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1335] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4989), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5526), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1335), [sym_preproc_endregion] = STATE(1335), [sym_preproc_line] = STATE(1335), @@ -267830,47 +267865,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1335), [sym_preproc_define] = STATE(1335), [sym_preproc_undef] = STATE(1335), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267883,19 +267918,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267912,84 +267947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1336] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4990), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5527), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1336), [sym_preproc_endregion] = STATE(1336), [sym_preproc_line] = STATE(1336), @@ -267999,47 +268034,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1336), [sym_preproc_define] = STATE(1336), [sym_preproc_undef] = STATE(1336), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268052,19 +268087,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268081,84 +268116,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1337] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4991), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5528), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1337), [sym_preproc_endregion] = STATE(1337), [sym_preproc_line] = STATE(1337), @@ -268168,47 +268203,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1337), [sym_preproc_define] = STATE(1337), [sym_preproc_undef] = STATE(1337), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268221,19 +268256,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268250,84 +268285,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1338] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4992), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5529), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1338), [sym_preproc_endregion] = STATE(1338), [sym_preproc_line] = STATE(1338), @@ -268337,47 +268372,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1338), [sym_preproc_define] = STATE(1338), [sym_preproc_undef] = STATE(1338), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268390,19 +268425,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268419,84 +268454,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1339] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4993), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1339), [sym_preproc_endregion] = STATE(1339), [sym_preproc_line] = STATE(1339), @@ -268506,47 +268541,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1339), [sym_preproc_define] = STATE(1339), [sym_preproc_undef] = STATE(1339), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268559,19 +268594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268588,84 +268623,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1340] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4994), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5532), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1340), [sym_preproc_endregion] = STATE(1340), [sym_preproc_line] = STATE(1340), @@ -268675,47 +268710,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1340), [sym_preproc_define] = STATE(1340), [sym_preproc_undef] = STATE(1340), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268728,19 +268763,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268757,84 +268792,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1341] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5557), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5533), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1341), [sym_preproc_endregion] = STATE(1341), [sym_preproc_line] = STATE(1341), @@ -268844,35 +268879,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1341), [sym_preproc_define] = STATE(1341), [sym_preproc_undef] = STATE(1341), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -268881,10 +268916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268926,84 +268961,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1342] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5459), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1342), [sym_preproc_endregion] = STATE(1342), [sym_preproc_line] = STATE(1342), @@ -269013,47 +269048,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1342), [sym_preproc_define] = STATE(1342), [sym_preproc_undef] = STATE(1342), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269066,19 +269101,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269095,84 +269130,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1343] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5194), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4273), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1343), [sym_preproc_endregion] = STATE(1343), [sym_preproc_line] = STATE(1343), @@ -269182,47 +269217,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1343), [sym_preproc_define] = STATE(1343), [sym_preproc_undef] = STATE(1343), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269235,19 +269270,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269258,90 +269293,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1344] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1344), [sym_preproc_endregion] = STATE(1344), [sym_preproc_line] = STATE(1344), @@ -269351,47 +269386,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1344), [sym_preproc_define] = STATE(1344), [sym_preproc_undef] = STATE(1344), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269404,19 +269439,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269427,90 +269462,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1345] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5198), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5063), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1345), [sym_preproc_endregion] = STATE(1345), [sym_preproc_line] = STATE(1345), @@ -269520,47 +269555,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1345), [sym_preproc_define] = STATE(1345), [sym_preproc_undef] = STATE(1345), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269573,19 +269608,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269596,90 +269631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1346] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4785), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3934), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1346), [sym_preproc_endregion] = STATE(1346), [sym_preproc_line] = STATE(1346), @@ -269689,35 +269724,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1346), [sym_preproc_define] = STATE(1346), [sym_preproc_undef] = STATE(1346), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -269726,10 +269761,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269771,84 +269806,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1347] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5201), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5540), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1347), [sym_preproc_endregion] = STATE(1347), [sym_preproc_line] = STATE(1347), @@ -269858,47 +269893,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1347), [sym_preproc_define] = STATE(1347), [sym_preproc_undef] = STATE(1347), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269911,19 +269946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269934,90 +269969,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1348] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5203), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4282), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1348), [sym_preproc_endregion] = STATE(1348), [sym_preproc_line] = STATE(1348), @@ -270027,47 +270062,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1348), [sym_preproc_define] = STATE(1348), [sym_preproc_undef] = STATE(1348), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270080,19 +270115,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270103,90 +270138,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1349] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5204), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5090), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1349), [sym_preproc_endregion] = STATE(1349), [sym_preproc_line] = STATE(1349), @@ -270196,47 +270231,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1349), [sym_preproc_define] = STATE(1349), [sym_preproc_undef] = STATE(1349), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270249,19 +270284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270272,90 +270307,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1350] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5205), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5091), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1350), [sym_preproc_endregion] = STATE(1350), [sym_preproc_line] = STATE(1350), @@ -270365,47 +270400,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1350), [sym_preproc_define] = STATE(1350), [sym_preproc_undef] = STATE(1350), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270418,19 +270453,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270441,90 +270476,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1351] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5207), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5060), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1351), [sym_preproc_endregion] = STATE(1351), [sym_preproc_line] = STATE(1351), @@ -270534,47 +270569,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1351), [sym_preproc_define] = STATE(1351), [sym_preproc_undef] = STATE(1351), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270587,19 +270622,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270610,90 +270645,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1352] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5208), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5092), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1352), [sym_preproc_endregion] = STATE(1352), [sym_preproc_line] = STATE(1352), @@ -270703,47 +270738,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1352), [sym_preproc_define] = STATE(1352), [sym_preproc_undef] = STATE(1352), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270756,19 +270791,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270779,90 +270814,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1353] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5213), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5093), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1353), [sym_preproc_endregion] = STATE(1353), [sym_preproc_line] = STATE(1353), @@ -270872,47 +270907,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1353), [sym_preproc_define] = STATE(1353), [sym_preproc_undef] = STATE(1353), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270925,19 +270960,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270948,90 +270983,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1354] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5225), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5094), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1354), [sym_preproc_endregion] = STATE(1354), [sym_preproc_line] = STATE(1354), @@ -271041,47 +271076,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1354), [sym_preproc_define] = STATE(1354), [sym_preproc_undef] = STATE(1354), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271094,19 +271129,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271117,90 +271152,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1355] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5230), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1355), [sym_preproc_endregion] = STATE(1355), [sym_preproc_line] = STATE(1355), @@ -271210,47 +271245,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1355), [sym_preproc_define] = STATE(1355), [sym_preproc_undef] = STATE(1355), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271263,19 +271298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271286,90 +271321,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1356] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5242), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5096), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1356), [sym_preproc_endregion] = STATE(1356), [sym_preproc_line] = STATE(1356), @@ -271379,47 +271414,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1356), [sym_preproc_define] = STATE(1356), [sym_preproc_undef] = STATE(1356), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271432,19 +271467,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271455,90 +271490,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1357] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5254), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5097), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1357), [sym_preproc_endregion] = STATE(1357), [sym_preproc_line] = STATE(1357), @@ -271548,47 +271583,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1357), [sym_preproc_define] = STATE(1357), [sym_preproc_undef] = STATE(1357), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271601,19 +271636,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271624,90 +271659,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1358] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5258), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5098), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1358), [sym_preproc_endregion] = STATE(1358), [sym_preproc_line] = STATE(1358), @@ -271717,47 +271752,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1358), [sym_preproc_define] = STATE(1358), [sym_preproc_undef] = STATE(1358), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271770,19 +271805,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271793,90 +271828,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1359] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5099), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1359), [sym_preproc_endregion] = STATE(1359), [sym_preproc_line] = STATE(1359), @@ -271886,47 +271921,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1359), [sym_preproc_define] = STATE(1359), [sym_preproc_undef] = STATE(1359), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271939,19 +271974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271962,90 +271997,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1360] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5005), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1360), [sym_preproc_endregion] = STATE(1360), [sym_preproc_line] = STATE(1360), @@ -272055,35 +272090,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1360), [sym_preproc_define] = STATE(1360), [sym_preproc_undef] = STATE(1360), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -272092,10 +272127,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272137,84 +272172,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1361] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4783), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1361), [sym_preproc_endregion] = STATE(1361), [sym_preproc_line] = STATE(1361), @@ -272224,47 +272259,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1361), [sym_preproc_define] = STATE(1361), [sym_preproc_undef] = STATE(1361), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272277,19 +272312,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272300,90 +272335,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1362] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5007), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5100), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1362), [sym_preproc_endregion] = STATE(1362), [sym_preproc_line] = STATE(1362), @@ -272393,35 +272428,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1362), [sym_preproc_define] = STATE(1362), [sym_preproc_undef] = STATE(1362), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -272430,10 +272465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272475,84 +272510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1363] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5009), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1363), [sym_preproc_endregion] = STATE(1363), [sym_preproc_line] = STATE(1363), @@ -272562,35 +272597,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1363), [sym_preproc_define] = STATE(1363), [sym_preproc_undef] = STATE(1363), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -272599,10 +272634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272644,84 +272679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1364] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4746), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5102), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1364), [sym_preproc_endregion] = STATE(1364), [sym_preproc_line] = STATE(1364), @@ -272731,43 +272766,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1364), [sym_preproc_define] = STATE(1364), [sym_preproc_undef] = STATE(1364), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1863), [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1871), [anon_sym_TILDE] = ACTIONS(1871), [anon_sym_PLUS_PLUS] = ACTIONS(1871), [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1869), [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(1873), [anon_sym_CARET] = ACTIONS(1871), [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1877), @@ -272784,19 +272819,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272807,90 +272842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1365] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5104), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1365), [sym_preproc_endregion] = STATE(1365), [sym_preproc_line] = STATE(1365), @@ -272900,43 +272935,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1365), [sym_preproc_define] = STATE(1365), [sym_preproc_undef] = STATE(1365), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(1863), [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), + [anon_sym_checked] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1871), [anon_sym_TILDE] = ACTIONS(1871), [anon_sym_PLUS_PLUS] = ACTIONS(1871), [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1869), [anon_sym_DASH] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(1873), [anon_sym_CARET] = ACTIONS(1871), [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(109), [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1877), @@ -272953,19 +272988,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272976,90 +273011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1366] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4595), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5475), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1366), [sym_preproc_endregion] = STATE(1366), [sym_preproc_line] = STATE(1366), @@ -273069,47 +273104,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1366), [sym_preproc_define] = STATE(1366), [sym_preproc_undef] = STATE(1366), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273122,19 +273157,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273145,90 +273180,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1367] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4596), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4784), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1367), [sym_preproc_endregion] = STATE(1367), [sym_preproc_line] = STATE(1367), @@ -273238,35 +273273,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1367), [sym_preproc_define] = STATE(1367), [sym_preproc_undef] = STATE(1367), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -273275,10 +273310,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273320,84 +273355,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1368] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4768), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1368), [sym_preproc_endregion] = STATE(1368), [sym_preproc_line] = STATE(1368), @@ -273407,35 +273442,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1368), [sym_preproc_define] = STATE(1368), [sym_preproc_undef] = STATE(1368), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -273444,10 +273479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273489,84 +273524,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1369] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4747), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4634), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1369), [sym_preproc_endregion] = STATE(1369), [sym_preproc_line] = STATE(1369), @@ -273576,35 +273611,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1369), [sym_preproc_define] = STATE(1369), [sym_preproc_undef] = STATE(1369), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -273613,10 +273648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273658,84 +273693,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1370] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4748), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4635), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1370), [sym_preproc_endregion] = STATE(1370), [sym_preproc_line] = STATE(1370), @@ -273745,35 +273780,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1370), [sym_preproc_define] = STATE(1370), [sym_preproc_undef] = STATE(1370), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -273782,10 +273817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273827,84 +273862,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1371] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4749), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4808), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1371), [sym_preproc_endregion] = STATE(1371), [sym_preproc_line] = STATE(1371), @@ -273914,35 +273949,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1371), [sym_preproc_define] = STATE(1371), [sym_preproc_undef] = STATE(1371), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -273951,10 +273986,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273996,84 +274031,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1372] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4597), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4785), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1372), [sym_preproc_endregion] = STATE(1372), [sym_preproc_line] = STATE(1372), @@ -274083,35 +274118,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1372), [sym_preproc_define] = STATE(1372), [sym_preproc_undef] = STATE(1372), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -274120,10 +274155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274165,84 +274200,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1373] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4750), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4786), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1373), [sym_preproc_endregion] = STATE(1373), [sym_preproc_line] = STATE(1373), @@ -274252,35 +274287,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1373), [sym_preproc_define] = STATE(1373), [sym_preproc_undef] = STATE(1373), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -274289,10 +274324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274334,84 +274369,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1374] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4751), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4787), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1374), [sym_preproc_endregion] = STATE(1374), [sym_preproc_line] = STATE(1374), @@ -274421,35 +274456,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1374), [sym_preproc_define] = STATE(1374), [sym_preproc_undef] = STATE(1374), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -274458,10 +274493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274503,84 +274538,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1375] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4752), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4636), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1375), [sym_preproc_endregion] = STATE(1375), [sym_preproc_line] = STATE(1375), @@ -274590,35 +274625,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1375), [sym_preproc_define] = STATE(1375), [sym_preproc_undef] = STATE(1375), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -274627,10 +274662,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274672,84 +274707,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1376] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4753), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4789), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1376), [sym_preproc_endregion] = STATE(1376), [sym_preproc_line] = STATE(1376), @@ -274759,35 +274794,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1376), [sym_preproc_define] = STATE(1376), [sym_preproc_undef] = STATE(1376), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -274796,10 +274831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274841,84 +274876,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1377] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4754), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5477), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1377), [sym_preproc_endregion] = STATE(1377), [sym_preproc_line] = STATE(1377), @@ -274928,47 +274963,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1377), [sym_preproc_define] = STATE(1377), [sym_preproc_undef] = STATE(1377), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274981,19 +275016,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275004,90 +275039,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1378] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4793), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1378), [sym_preproc_endregion] = STATE(1378), [sym_preproc_line] = STATE(1378), @@ -275097,35 +275132,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1378), [sym_preproc_define] = STATE(1378), [sym_preproc_undef] = STATE(1378), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -275134,10 +275169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275179,84 +275214,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1379] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4756), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4795), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1379), [sym_preproc_endregion] = STATE(1379), [sym_preproc_line] = STATE(1379), @@ -275266,35 +275301,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1379), [sym_preproc_define] = STATE(1379), [sym_preproc_undef] = STATE(1379), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -275303,10 +275338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275348,84 +275383,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1380] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4798), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1380), [sym_preproc_endregion] = STATE(1380), [sym_preproc_line] = STATE(1380), @@ -275435,47 +275470,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1380), [sym_preproc_define] = STATE(1380), [sym_preproc_undef] = STATE(1380), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275488,19 +275523,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275511,90 +275546,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1381] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4799), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1381), [sym_preproc_endregion] = STATE(1381), [sym_preproc_line] = STATE(1381), @@ -275604,47 +275639,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1381), [sym_preproc_define] = STATE(1381), [sym_preproc_undef] = STATE(1381), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275657,19 +275692,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275680,90 +275715,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1382] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4726), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1382), [sym_preproc_endregion] = STATE(1382), [sym_preproc_line] = STATE(1382), @@ -275773,47 +275808,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1382), [sym_preproc_define] = STATE(1382), [sym_preproc_undef] = STATE(1382), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275826,19 +275861,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275849,90 +275884,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1383] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4801), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1383), [sym_preproc_endregion] = STATE(1383), [sym_preproc_line] = STATE(1383), @@ -275942,47 +275977,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1383), [sym_preproc_define] = STATE(1383), [sym_preproc_undef] = STATE(1383), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275995,19 +276030,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276018,90 +276053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1384] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1384), [sym_preproc_endregion] = STATE(1384), [sym_preproc_line] = STATE(1384), @@ -276111,47 +276146,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1384), [sym_preproc_define] = STATE(1384), [sym_preproc_undef] = STATE(1384), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276164,19 +276199,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276193,84 +276228,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1385] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1385), [sym_preproc_endregion] = STATE(1385), [sym_preproc_line] = STATE(1385), @@ -276280,36 +276315,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1385), [sym_preproc_define] = STATE(1385), [sym_preproc_undef] = STATE(1385), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -276317,10 +276352,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276362,84 +276397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1386] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5480), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1386), [sym_preproc_endregion] = STATE(1386), [sym_preproc_line] = STATE(1386), @@ -276449,35 +276484,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1386), [sym_preproc_define] = STATE(1386), [sym_preproc_undef] = STATE(1386), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -276486,10 +276521,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276531,84 +276566,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1387] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1387), [sym_preproc_endregion] = STATE(1387), [sym_preproc_line] = STATE(1387), @@ -276618,35 +276653,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1387), [sym_preproc_define] = STATE(1387), [sym_preproc_undef] = STATE(1387), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -276655,10 +276690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276700,84 +276735,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1388] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5577), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1388), [sym_preproc_endregion] = STATE(1388), [sym_preproc_line] = STATE(1388), @@ -276787,35 +276822,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1388), [sym_preproc_define] = STATE(1388), [sym_preproc_undef] = STATE(1388), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -276824,10 +276859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276869,84 +276904,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1389] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1389), [sym_preproc_endregion] = STATE(1389), [sym_preproc_line] = STATE(1389), @@ -276956,35 +276991,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1389), [sym_preproc_define] = STATE(1389), [sym_preproc_undef] = STATE(1389), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -276993,10 +277028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277038,84 +277073,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1390] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5581), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1390), [sym_preproc_endregion] = STATE(1390), [sym_preproc_line] = STATE(1390), @@ -277125,35 +277160,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1390), [sym_preproc_define] = STATE(1390), [sym_preproc_undef] = STATE(1390), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -277162,10 +277197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277207,84 +277242,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1391] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5584), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1391), [sym_preproc_endregion] = STATE(1391), [sym_preproc_line] = STATE(1391), @@ -277294,35 +277329,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1391), [sym_preproc_define] = STATE(1391), [sym_preproc_undef] = STATE(1391), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -277331,10 +277366,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277376,84 +277411,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1392] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5592), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1392), [sym_preproc_endregion] = STATE(1392), [sym_preproc_line] = STATE(1392), @@ -277463,35 +277498,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1392), [sym_preproc_define] = STATE(1392), [sym_preproc_undef] = STATE(1392), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -277500,10 +277535,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277545,84 +277580,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1393] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5594), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1393), [sym_preproc_endregion] = STATE(1393), [sym_preproc_line] = STATE(1393), @@ -277632,35 +277667,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1393), [sym_preproc_define] = STATE(1393), [sym_preproc_undef] = STATE(1393), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -277669,10 +277704,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277714,84 +277749,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1394] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4617), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5595), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1394), [sym_preproc_endregion] = STATE(1394), [sym_preproc_line] = STATE(1394), @@ -277801,35 +277836,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1394), [sym_preproc_define] = STATE(1394), [sym_preproc_undef] = STATE(1394), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -277838,10 +277873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277883,84 +277918,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1395] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4727), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5597), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1395), [sym_preproc_endregion] = STATE(1395), [sym_preproc_line] = STATE(1395), @@ -277970,35 +278005,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1395), [sym_preproc_define] = STATE(1395), [sym_preproc_undef] = STATE(1395), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -278007,10 +278042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278052,84 +278087,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1396] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4417), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5599), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1396), [sym_preproc_endregion] = STATE(1396), [sym_preproc_line] = STATE(1396), @@ -278139,47 +278174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1396), [sym_preproc_define] = STATE(1396), [sym_preproc_undef] = STATE(1396), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278192,19 +278227,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278215,90 +278250,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1397] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5224), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5600), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1397), [sym_preproc_endregion] = STATE(1397), [sym_preproc_line] = STATE(1397), @@ -278308,35 +278343,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1397), [sym_preproc_define] = STATE(1397), [sym_preproc_undef] = STATE(1397), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -278345,10 +278380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278390,84 +278425,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1398] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5602), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1398), [sym_preproc_endregion] = STATE(1398), [sym_preproc_line] = STATE(1398), @@ -278477,35 +278512,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1398), [sym_preproc_define] = STATE(1398), [sym_preproc_undef] = STATE(1398), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -278514,10 +278549,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278559,84 +278594,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1399] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5604), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4153), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1399), [sym_preproc_endregion] = STATE(1399), [sym_preproc_line] = STATE(1399), @@ -278646,35 +278681,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1399), [sym_preproc_define] = STATE(1399), [sym_preproc_undef] = STATE(1399), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), + }, + [1400] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1400), + [sym_preproc_endregion] = STATE(1400), + [sym_preproc_line] = STATE(1400), + [sym_preproc_pragma] = STATE(1400), + [sym_preproc_nullable] = STATE(1400), + [sym_preproc_error] = STATE(1400), + [sym_preproc_warning] = STATE(1400), + [sym_preproc_define] = STATE(1400), + [sym_preproc_undef] = STATE(1400), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -278683,10 +278887,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278727,135 +278931,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1400] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4350), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1400), - [sym_preproc_endregion] = STATE(1400), - [sym_preproc_line] = STATE(1400), - [sym_preproc_pragma] = STATE(1400), - [sym_preproc_nullable] = STATE(1400), - [sym_preproc_error] = STATE(1400), - [sym_preproc_warning] = STATE(1400), - [sym_preproc_define] = STATE(1400), - [sym_preproc_undef] = STATE(1400), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1401] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5343), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1401), + [sym_preproc_endregion] = STATE(1401), + [sym_preproc_line] = STATE(1401), + [sym_preproc_pragma] = STATE(1401), + [sym_preproc_nullable] = STATE(1401), + [sym_preproc_error] = STATE(1401), + [sym_preproc_warning] = STATE(1401), + [sym_preproc_define] = STATE(1401), + [sym_preproc_undef] = STATE(1401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278868,19 +279072,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278891,128 +279095,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1401] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1401), - [sym_preproc_endregion] = STATE(1401), - [sym_preproc_line] = STATE(1401), - [sym_preproc_pragma] = STATE(1401), - [sym_preproc_nullable] = STATE(1401), - [sym_preproc_error] = STATE(1401), - [sym_preproc_warning] = STATE(1401), - [sym_preproc_define] = STATE(1401), - [sym_preproc_undef] = STATE(1401), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1402] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5087), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1402), + [sym_preproc_endregion] = STATE(1402), + [sym_preproc_line] = STATE(1402), + [sym_preproc_pragma] = STATE(1402), + [sym_preproc_nullable] = STATE(1402), + [sym_preproc_error] = STATE(1402), + [sym_preproc_warning] = STATE(1402), + [sym_preproc_define] = STATE(1402), + [sym_preproc_undef] = STATE(1402), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -279021,10 +279225,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279065,254 +279269,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1402] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4514), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1402), - [sym_preproc_endregion] = STATE(1402), - [sym_preproc_line] = STATE(1402), - [sym_preproc_pragma] = STATE(1402), - [sym_preproc_nullable] = STATE(1402), - [sym_preproc_error] = STATE(1402), - [sym_preproc_warning] = STATE(1402), - [sym_preproc_define] = STATE(1402), - [sym_preproc_undef] = STATE(1402), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, [1403] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5041), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1403), [sym_preproc_endregion] = STATE(1403), [sym_preproc_line] = STATE(1403), @@ -279322,47 +279357,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1403), [sym_preproc_define] = STATE(1403), [sym_preproc_undef] = STATE(1403), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279375,19 +279410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279404,84 +279439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1404] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5042), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5089), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1404), [sym_preproc_endregion] = STATE(1404), [sym_preproc_line] = STATE(1404), @@ -279491,47 +279526,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1404), [sym_preproc_define] = STATE(1404), [sym_preproc_undef] = STATE(1404), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279544,19 +279579,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279573,84 +279608,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1405] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5059), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5067), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1405), [sym_preproc_endregion] = STATE(1405), [sym_preproc_line] = STATE(1405), @@ -279660,35 +279695,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1405), [sym_preproc_define] = STATE(1405), [sym_preproc_undef] = STATE(1405), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -279697,10 +279732,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279742,84 +279777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1406] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5043), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5611), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1406), [sym_preproc_endregion] = STATE(1406), [sym_preproc_line] = STATE(1406), @@ -279829,47 +279864,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1406), [sym_preproc_define] = STATE(1406), [sym_preproc_undef] = STATE(1406), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279882,19 +279917,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279911,84 +279946,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1407] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5044), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5355), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1407), [sym_preproc_endregion] = STATE(1407), [sym_preproc_line] = STATE(1407), @@ -279998,47 +280033,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1407), [sym_preproc_define] = STATE(1407), [sym_preproc_undef] = STATE(1407), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280051,19 +280086,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280074,90 +280109,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1408] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5045), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5139), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1408), [sym_preproc_endregion] = STATE(1408), [sym_preproc_line] = STATE(1408), @@ -280167,35 +280202,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1408), [sym_preproc_define] = STATE(1408), [sym_preproc_undef] = STATE(1408), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -280204,10 +280239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280249,84 +280284,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1409] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5046), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5140), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1409), [sym_preproc_endregion] = STATE(1409), [sym_preproc_line] = STATE(1409), @@ -280336,35 +280371,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1409), [sym_preproc_define] = STATE(1409), [sym_preproc_undef] = STATE(1409), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -280373,10 +280408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280418,84 +280453,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1410] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5047), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5064), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1410), [sym_preproc_endregion] = STATE(1410), [sym_preproc_line] = STATE(1410), @@ -280505,35 +280540,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1410), [sym_preproc_define] = STATE(1410), [sym_preproc_undef] = STATE(1410), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -280542,10 +280577,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280587,84 +280622,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1411] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5048), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5142), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1411), [sym_preproc_endregion] = STATE(1411), [sym_preproc_line] = STATE(1411), @@ -280674,35 +280709,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1411), [sym_preproc_define] = STATE(1411), [sym_preproc_undef] = STATE(1411), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -280711,10 +280746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280756,84 +280791,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1412] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5051), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1412), [sym_preproc_endregion] = STATE(1412), [sym_preproc_line] = STATE(1412), @@ -280843,35 +280878,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1412), [sym_preproc_define] = STATE(1412), [sym_preproc_undef] = STATE(1412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -280880,10 +280915,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280925,84 +280960,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1413] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5053), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1413), [sym_preproc_endregion] = STATE(1413), [sym_preproc_line] = STATE(1413), @@ -281012,35 +281047,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1413), [sym_preproc_define] = STATE(1413), [sym_preproc_undef] = STATE(1413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -281049,10 +281084,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281094,84 +281129,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1414] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1414), [sym_preproc_endregion] = STATE(1414), [sym_preproc_line] = STATE(1414), @@ -281181,35 +281216,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1414), [sym_preproc_define] = STATE(1414), [sym_preproc_undef] = STATE(1414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -281218,10 +281253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281263,84 +281298,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1415] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5337), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5146), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1415), [sym_preproc_endregion] = STATE(1415), [sym_preproc_line] = STATE(1415), @@ -281350,47 +281385,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1415), [sym_preproc_define] = STATE(1415), [sym_preproc_undef] = STATE(1415), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281403,19 +281438,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281426,90 +281461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1416] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5147), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1416), [sym_preproc_endregion] = STATE(1416), [sym_preproc_line] = STATE(1416), @@ -281519,47 +281554,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1416), [sym_preproc_define] = STATE(1416), [sym_preproc_undef] = STATE(1416), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281572,19 +281607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281595,90 +281630,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1417] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5165), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5148), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1417), [sym_preproc_endregion] = STATE(1417), [sym_preproc_line] = STATE(1417), @@ -281688,47 +281723,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1417), [sym_preproc_define] = STATE(1417), [sym_preproc_undef] = STATE(1417), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281741,19 +281776,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281764,90 +281799,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1418] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4516), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1418), [sym_preproc_endregion] = STATE(1418), [sym_preproc_line] = STATE(1418), @@ -281857,47 +281892,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1418), [sym_preproc_define] = STATE(1418), [sym_preproc_undef] = STATE(1418), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281910,19 +281945,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281933,90 +281968,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1419] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5192), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1419), [sym_preproc_endregion] = STATE(1419), [sym_preproc_line] = STATE(1419), @@ -282026,47 +282061,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1419), [sym_preproc_define] = STATE(1419), [sym_preproc_undef] = STATE(1419), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282079,19 +282114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282102,90 +282137,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1420] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5219), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [1420] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1420), [sym_preproc_endregion] = STATE(1420), [sym_preproc_line] = STATE(1420), @@ -282195,47 +282230,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1420), [sym_preproc_define] = STATE(1420), [sym_preproc_undef] = STATE(1420), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282248,19 +282283,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282271,90 +282306,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1421] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5220), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5156), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1421), [sym_preproc_endregion] = STATE(1421), [sym_preproc_line] = STATE(1421), @@ -282364,47 +282399,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1421), [sym_preproc_define] = STATE(1421), [sym_preproc_undef] = STATE(1421), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282417,19 +282452,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282440,90 +282475,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1422] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5221), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5161), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1422), [sym_preproc_endregion] = STATE(1422), [sym_preproc_line] = STATE(1422), @@ -282533,47 +282568,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1422), [sym_preproc_define] = STATE(1422), [sym_preproc_undef] = STATE(1422), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282586,19 +282621,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282609,90 +282644,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1423] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5352), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3494), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6235), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1423), [sym_preproc_endregion] = STATE(1423), [sym_preproc_line] = STATE(1423), @@ -282702,47 +282737,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1423), [sym_preproc_define] = STATE(1423), [sym_preproc_undef] = STATE(1423), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282755,19 +282790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282778,90 +282813,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1424] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5357), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1424), [sym_preproc_endregion] = STATE(1424), [sym_preproc_line] = STATE(1424), @@ -282871,47 +282906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1424), [sym_preproc_define] = STATE(1424), [sym_preproc_undef] = STATE(1424), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282924,19 +282959,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282947,90 +282982,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1425] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5358), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5628), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1425), [sym_preproc_endregion] = STATE(1425), [sym_preproc_line] = STATE(1425), @@ -283040,47 +283075,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1425), [sym_preproc_define] = STATE(1425), [sym_preproc_undef] = STATE(1425), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283093,19 +283128,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283116,90 +283151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1426] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5223), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1426), [sym_preproc_endregion] = STATE(1426), [sym_preproc_line] = STATE(1426), @@ -283209,47 +283244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1426), [sym_preproc_define] = STATE(1426), [sym_preproc_undef] = STATE(1426), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283262,19 +283297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283285,90 +283320,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1427] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5360), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5643), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1427), [sym_preproc_endregion] = STATE(1427), [sym_preproc_line] = STATE(1427), @@ -283378,47 +283413,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1427), [sym_preproc_define] = STATE(1427), [sym_preproc_undef] = STATE(1427), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283431,19 +283466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283454,90 +283489,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1428] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5361), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5647), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1428), [sym_preproc_endregion] = STATE(1428), [sym_preproc_line] = STATE(1428), @@ -283547,47 +283582,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1428), [sym_preproc_define] = STATE(1428), [sym_preproc_undef] = STATE(1428), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283600,19 +283635,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283623,90 +283658,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1429] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5367), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5649), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1429), [sym_preproc_endregion] = STATE(1429), [sym_preproc_line] = STATE(1429), @@ -283716,47 +283751,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1429), [sym_preproc_define] = STATE(1429), [sym_preproc_undef] = STATE(1429), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283769,19 +283804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283792,90 +283827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1430] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5369), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5651), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1430), [sym_preproc_endregion] = STATE(1430), [sym_preproc_line] = STATE(1430), @@ -283885,47 +283920,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1430), [sym_preproc_define] = STATE(1430), [sym_preproc_undef] = STATE(1430), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283938,19 +283973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283961,90 +283996,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1431] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1431), [sym_preproc_endregion] = STATE(1431), [sym_preproc_line] = STATE(1431), @@ -284054,47 +284089,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1431), [sym_preproc_define] = STATE(1431), [sym_preproc_undef] = STATE(1431), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284107,19 +284142,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284130,90 +284165,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1432] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5109), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1432), [sym_preproc_endregion] = STATE(1432), [sym_preproc_line] = STATE(1432), @@ -284223,17 +284258,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1432), [sym_preproc_define] = STATE(1432), [sym_preproc_undef] = STATE(1432), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -284241,17 +284276,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -284260,10 +284295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284305,84 +284340,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1433] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5076), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1433), [sym_preproc_endregion] = STATE(1433), [sym_preproc_line] = STATE(1433), @@ -284392,47 +284427,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1433), [sym_preproc_define] = STATE(1433), [sym_preproc_undef] = STATE(1433), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284445,19 +284480,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284474,84 +284509,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1434] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1434), [sym_preproc_endregion] = STATE(1434), [sym_preproc_line] = STATE(1434), @@ -284561,47 +284596,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1434), [sym_preproc_define] = STATE(1434), [sym_preproc_undef] = STATE(1434), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284614,19 +284649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284643,84 +284678,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1435] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5078), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1435), [sym_preproc_endregion] = STATE(1435), [sym_preproc_line] = STATE(1435), @@ -284730,47 +284765,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1435), [sym_preproc_define] = STATE(1435), [sym_preproc_undef] = STATE(1435), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284783,19 +284818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284812,84 +284847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1436] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5082), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5666), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1436), [sym_preproc_endregion] = STATE(1436), [sym_preproc_line] = STATE(1436), @@ -284899,47 +284934,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1436), [sym_preproc_define] = STATE(1436), [sym_preproc_undef] = STATE(1436), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284952,19 +284987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284981,84 +285016,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1437] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4769), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5667), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1437), [sym_preproc_endregion] = STATE(1437), [sym_preproc_line] = STATE(1437), @@ -285068,47 +285103,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1437), [sym_preproc_define] = STATE(1437), [sym_preproc_undef] = STATE(1437), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285121,19 +285156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285144,90 +285179,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1438] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1438), [sym_preproc_endregion] = STATE(1438), [sym_preproc_line] = STATE(1438), @@ -285237,47 +285272,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1438), [sym_preproc_define] = STATE(1438), [sym_preproc_undef] = STATE(1438), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285290,19 +285325,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285313,90 +285348,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1439] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5175), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1439), [sym_preproc_endregion] = STATE(1439), [sym_preproc_line] = STATE(1439), @@ -285406,47 +285441,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1439), [sym_preproc_define] = STATE(1439), [sym_preproc_undef] = STATE(1439), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285459,19 +285494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285482,90 +285517,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1440] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1440), [sym_preproc_endregion] = STATE(1440), [sym_preproc_line] = STATE(1440), @@ -285575,47 +285610,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1440), [sym_preproc_define] = STATE(1440), [sym_preproc_undef] = STATE(1440), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285628,19 +285663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285651,90 +285686,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1441] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4791), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5070), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1441), [sym_preproc_endregion] = STATE(1441), [sym_preproc_line] = STATE(1441), @@ -285744,47 +285779,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1441), [sym_preproc_define] = STATE(1441), [sym_preproc_undef] = STATE(1441), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285797,19 +285832,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285820,90 +285855,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1442] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4770), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5676), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1442), [sym_preproc_endregion] = STATE(1442), [sym_preproc_line] = STATE(1442), @@ -285913,47 +285948,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1442), [sym_preproc_define] = STATE(1442), [sym_preproc_undef] = STATE(1442), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285966,19 +286001,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285989,90 +286024,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1443] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4771), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5180), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1443), [sym_preproc_endregion] = STATE(1443), [sym_preproc_line] = STATE(1443), @@ -286082,47 +286117,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1443), [sym_preproc_define] = STATE(1443), [sym_preproc_undef] = STATE(1443), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286135,19 +286170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286158,90 +286193,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1444] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4772), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4905), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1444), [sym_preproc_endregion] = STATE(1444), [sym_preproc_line] = STATE(1444), @@ -286251,47 +286286,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1444), [sym_preproc_define] = STATE(1444), [sym_preproc_undef] = STATE(1444), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286304,19 +286339,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286327,90 +286362,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1445] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4624), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4906), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1445), [sym_preproc_endregion] = STATE(1445), [sym_preproc_line] = STATE(1445), @@ -286420,47 +286455,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1445), [sym_preproc_define] = STATE(1445), [sym_preproc_undef] = STATE(1445), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286473,19 +286508,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286496,90 +286531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1446] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4773), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5068), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1446), [sym_preproc_endregion] = STATE(1446), [sym_preproc_line] = STATE(1446), @@ -286589,47 +286624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1446), [sym_preproc_define] = STATE(1446), [sym_preproc_undef] = STATE(1446), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286642,19 +286677,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286665,90 +286700,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1447] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4774), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4907), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1447), [sym_preproc_endregion] = STATE(1447), [sym_preproc_line] = STATE(1447), @@ -286758,47 +286793,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1447), [sym_preproc_define] = STATE(1447), [sym_preproc_undef] = STATE(1447), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286811,19 +286846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286834,90 +286869,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1448] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4775), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4908), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1448), [sym_preproc_endregion] = STATE(1448), [sym_preproc_line] = STATE(1448), @@ -286927,47 +286962,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1448), [sym_preproc_define] = STATE(1448), [sym_preproc_undef] = STATE(1448), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286980,19 +287015,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287003,90 +287038,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1449] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4776), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4909), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1449), [sym_preproc_endregion] = STATE(1449), [sym_preproc_line] = STATE(1449), @@ -287096,47 +287131,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1449), [sym_preproc_define] = STATE(1449), [sym_preproc_undef] = STATE(1449), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287149,19 +287184,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287172,90 +287207,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1450] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4777), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4910), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1450), [sym_preproc_endregion] = STATE(1450), [sym_preproc_line] = STATE(1450), @@ -287265,47 +287300,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1450), [sym_preproc_define] = STATE(1450), [sym_preproc_undef] = STATE(1450), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287318,19 +287353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287341,90 +287376,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1451] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4911), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1451), [sym_preproc_endregion] = STATE(1451), [sym_preproc_line] = STATE(1451), @@ -287434,47 +287469,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1451), [sym_preproc_define] = STATE(1451), [sym_preproc_undef] = STATE(1451), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287487,19 +287522,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287510,90 +287545,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1452] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4779), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4912), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1452), [sym_preproc_endregion] = STATE(1452), [sym_preproc_line] = STATE(1452), @@ -287603,47 +287638,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1452), [sym_preproc_define] = STATE(1452), [sym_preproc_undef] = STATE(1452), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287656,19 +287691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287679,90 +287714,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1453] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3160), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6229), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7431), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4913), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1453), [sym_preproc_endregion] = STATE(1453), [sym_preproc_line] = STATE(1453), @@ -287772,47 +287807,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1453), [sym_preproc_define] = STATE(1453), [sym_preproc_undef] = STATE(1453), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287825,19 +287860,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287848,90 +287883,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1454] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4914), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1454), [sym_preproc_endregion] = STATE(1454), [sym_preproc_line] = STATE(1454), @@ -287941,47 +287976,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1454), [sym_preproc_define] = STATE(1454), [sym_preproc_undef] = STATE(1454), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287994,19 +288029,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288023,84 +288058,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1455] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5540), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1455), [sym_preproc_endregion] = STATE(1455), [sym_preproc_line] = STATE(1455), @@ -288110,47 +288145,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1455), [sym_preproc_define] = STATE(1455), [sym_preproc_undef] = STATE(1455), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288163,19 +288198,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288192,84 +288227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1456] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4916), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1456), [sym_preproc_endregion] = STATE(1456), [sym_preproc_line] = STATE(1456), @@ -288279,47 +288314,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1456), [sym_preproc_define] = STATE(1456), [sym_preproc_undef] = STATE(1456), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288332,19 +288367,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288361,84 +288396,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1457] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5707), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1457), [sym_preproc_endregion] = STATE(1457), [sym_preproc_line] = STATE(1457), @@ -288448,47 +288483,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1457), [sym_preproc_define] = STATE(1457), [sym_preproc_undef] = STATE(1457), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288501,19 +288536,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288530,84 +288565,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1458] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5592), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4918), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1458), [sym_preproc_endregion] = STATE(1458), [sym_preproc_line] = STATE(1458), @@ -288617,47 +288652,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1458), [sym_preproc_define] = STATE(1458), [sym_preproc_undef] = STATE(1458), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288670,19 +288705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288699,84 +288734,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1459] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5598), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4920), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1459), [sym_preproc_endregion] = STATE(1459), [sym_preproc_line] = STATE(1459), @@ -288786,47 +288821,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1459), [sym_preproc_define] = STATE(1459), [sym_preproc_undef] = STATE(1459), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288839,19 +288874,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288868,84 +288903,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1460] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5599), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5111), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1460), [sym_preproc_endregion] = STATE(1460), [sym_preproc_line] = STATE(1460), @@ -288955,72 +288990,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1460), [sym_preproc_define] = STATE(1460), [sym_preproc_undef] = STATE(1460), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289031,90 +289066,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1461] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5600), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3200), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1461), [sym_preproc_endregion] = STATE(1461), [sym_preproc_line] = STATE(1461), @@ -289124,47 +289159,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1461), [sym_preproc_define] = STATE(1461), [sym_preproc_undef] = STATE(1461), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289177,19 +289212,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289206,84 +289241,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1462] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5601), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5922), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1462), [sym_preproc_endregion] = STATE(1462), [sym_preproc_line] = STATE(1462), @@ -289293,36 +289328,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1462), [sym_preproc_define] = STATE(1462), [sym_preproc_undef] = STATE(1462), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -289330,10 +289365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289375,84 +289410,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1463] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5602), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4362), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1463), [sym_preproc_endregion] = STATE(1463), [sym_preproc_line] = STATE(1463), @@ -289462,72 +289497,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1463), [sym_preproc_define] = STATE(1463), [sym_preproc_undef] = STATE(1463), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289538,90 +289573,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1464] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5603), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5947), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5500), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1464), [sym_preproc_endregion] = STATE(1464), [sym_preproc_line] = STATE(1464), @@ -289631,35 +289666,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1464), [sym_preproc_define] = STATE(1464), [sym_preproc_undef] = STATE(1464), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -289668,10 +289703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289696,7 +289731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289713,84 +289748,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1465] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5605), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4514), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1465), [sym_preproc_endregion] = STATE(1465), [sym_preproc_line] = STATE(1465), @@ -289800,47 +289835,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1465), [sym_preproc_define] = STATE(1465), [sym_preproc_undef] = STATE(1465), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289853,19 +289888,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289876,90 +289911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1466] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5607), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4154), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1466), [sym_preproc_endregion] = STATE(1466), [sym_preproc_line] = STATE(1466), @@ -289969,47 +290004,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1466), [sym_preproc_define] = STATE(1466), [sym_preproc_undef] = STATE(1466), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290022,19 +290057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290045,90 +290080,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1467] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5608), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4393), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1467), [sym_preproc_endregion] = STATE(1467), [sym_preproc_line] = STATE(1467), @@ -290138,47 +290173,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1467), [sym_preproc_define] = STATE(1467), [sym_preproc_undef] = STATE(1467), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290191,19 +290226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290214,90 +290249,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1468] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5615), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4109), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1468), [sym_preproc_endregion] = STATE(1468), [sym_preproc_line] = STATE(1468), @@ -290307,47 +290342,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1468), [sym_preproc_define] = STATE(1468), [sym_preproc_undef] = STATE(1468), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290360,113 +290395,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1469] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5633), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4113), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1469), [sym_preproc_endregion] = STATE(1469), [sym_preproc_line] = STATE(1469), @@ -290476,47 +290511,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1469), [sym_preproc_define] = STATE(1469), [sym_preproc_undef] = STATE(1469), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290529,19 +290564,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290552,90 +290587,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1470] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4270), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6226), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7540), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1470), [sym_preproc_endregion] = STATE(1470), [sym_preproc_line] = STATE(1470), @@ -290645,47 +290680,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1470), [sym_preproc_define] = STATE(1470), [sym_preproc_undef] = STATE(1470), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290698,19 +290733,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290721,90 +290756,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1471] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1471), [sym_preproc_endregion] = STATE(1471), [sym_preproc_line] = STATE(1471), @@ -290814,36 +290849,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1471), [sym_preproc_define] = STATE(1471), [sym_preproc_undef] = STATE(1471), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -290851,10 +290886,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290896,84 +290931,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1472] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5066), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4122), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1472), [sym_preproc_endregion] = STATE(1472), [sym_preproc_line] = STATE(1472), @@ -290983,47 +291018,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1472), [sym_preproc_define] = STATE(1472), [sym_preproc_undef] = STATE(1472), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291036,19 +291071,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291059,90 +291094,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1473] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5621), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5255), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1473), [sym_preproc_endregion] = STATE(1473), [sym_preproc_line] = STATE(1473), @@ -291152,47 +291187,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1473), [sym_preproc_define] = STATE(1473), [sym_preproc_undef] = STATE(1473), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291205,19 +291240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291228,90 +291263,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1474] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4124), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1474), [sym_preproc_endregion] = STATE(1474), [sym_preproc_line] = STATE(1474), @@ -291321,47 +291356,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1474), [sym_preproc_define] = STATE(1474), [sym_preproc_undef] = STATE(1474), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291374,19 +291409,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291397,90 +291432,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1475] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5093), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5327), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1475), [sym_preproc_endregion] = STATE(1475), [sym_preproc_line] = STATE(1475), @@ -291490,47 +291525,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1475), [sym_preproc_define] = STATE(1475), [sym_preproc_undef] = STATE(1475), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291543,19 +291578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291566,90 +291601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1476] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5094), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4125), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1476), [sym_preproc_endregion] = STATE(1476), [sym_preproc_line] = STATE(1476), @@ -291659,47 +291694,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1476), [sym_preproc_define] = STATE(1476), [sym_preproc_undef] = STATE(1476), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291712,19 +291747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291735,90 +291770,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1477] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5062), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4131), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1477), [sym_preproc_endregion] = STATE(1477), [sym_preproc_line] = STATE(1477), @@ -291828,47 +291863,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1477), [sym_preproc_define] = STATE(1477), [sym_preproc_undef] = STATE(1477), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291881,19 +291916,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291904,90 +291939,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1478] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5095), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3575), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6216), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7577), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1478), [sym_preproc_endregion] = STATE(1478), [sym_preproc_line] = STATE(1478), @@ -291997,35 +292032,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1478), [sym_preproc_define] = STATE(1478), [sym_preproc_undef] = STATE(1478), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_ref] = ACTIONS(1645), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -292034,10 +292069,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1653), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1657), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292079,84 +292114,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1479] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5096), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1479), [sym_preproc_endregion] = STATE(1479), [sym_preproc_line] = STATE(1479), @@ -292166,47 +292201,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1479), [sym_preproc_define] = STATE(1479), [sym_preproc_undef] = STATE(1479), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292219,19 +292254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292248,84 +292283,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1480] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5097), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4133), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1480), [sym_preproc_endregion] = STATE(1480), [sym_preproc_line] = STATE(1480), @@ -292335,47 +292370,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1480), [sym_preproc_define] = STATE(1480), [sym_preproc_undef] = STATE(1480), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292388,19 +292423,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292411,90 +292446,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1481] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5098), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4767), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1481), [sym_preproc_endregion] = STATE(1481), [sym_preproc_line] = STATE(1481), @@ -292504,47 +292539,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1481), [sym_preproc_define] = STATE(1481), [sym_preproc_undef] = STATE(1481), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292557,19 +292592,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292580,90 +292615,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1482] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5099), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5305), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1482), [sym_preproc_endregion] = STATE(1482), [sym_preproc_line] = STATE(1482), @@ -292673,47 +292708,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1482), [sym_preproc_define] = STATE(1482), [sym_preproc_undef] = STATE(1482), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292726,19 +292761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292755,84 +292790,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1483] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5100), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4769), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1483), [sym_preproc_endregion] = STATE(1483), [sym_preproc_line] = STATE(1483), @@ -292842,47 +292877,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1483), [sym_preproc_define] = STATE(1483), [sym_preproc_undef] = STATE(1483), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1187), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292895,19 +292930,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292918,90 +292953,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1484] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5101), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4164), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1484), [sym_preproc_endregion] = STATE(1484), [sym_preproc_line] = STATE(1484), @@ -293011,47 +293046,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1484), [sym_preproc_define] = STATE(1484), [sym_preproc_undef] = STATE(1484), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293064,19 +293099,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293087,90 +293122,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1485] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5102), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4105), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1485), [sym_preproc_endregion] = STATE(1485), [sym_preproc_line] = STATE(1485), @@ -293180,47 +293215,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1485), [sym_preproc_define] = STATE(1485), [sym_preproc_undef] = STATE(1485), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293233,19 +293268,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293256,90 +293291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1486] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1486), [sym_preproc_endregion] = STATE(1486), [sym_preproc_line] = STATE(1486), @@ -293349,47 +293384,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1486), [sym_preproc_define] = STATE(1486), [sym_preproc_undef] = STATE(1486), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293402,19 +293437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293425,90 +293460,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1487] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4782), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1487), [sym_preproc_endregion] = STATE(1487), [sym_preproc_line] = STATE(1487), @@ -293518,47 +293553,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1487), [sym_preproc_define] = STATE(1487), [sym_preproc_undef] = STATE(1487), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293571,19 +293606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293594,90 +293629,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1488] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5103), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4110), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1488), [sym_preproc_endregion] = STATE(1488), [sym_preproc_line] = STATE(1488), @@ -293687,47 +293722,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1488), [sym_preproc_define] = STATE(1488), [sym_preproc_undef] = STATE(1488), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293740,19 +293775,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293763,90 +293798,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1489] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4790), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1489), [sym_preproc_endregion] = STATE(1489), [sym_preproc_line] = STATE(1489), @@ -293856,47 +293891,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1489), [sym_preproc_define] = STATE(1489), [sym_preproc_undef] = STATE(1489), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293909,19 +293944,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293932,90 +293967,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1490] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5105), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5558), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1490), [sym_preproc_endregion] = STATE(1490), [sym_preproc_line] = STATE(1490), @@ -294025,47 +294060,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1490), [sym_preproc_define] = STATE(1490), [sym_preproc_undef] = STATE(1490), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294078,19 +294113,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294107,84 +294142,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1491] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5107), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4792), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6219), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1491), [sym_preproc_endregion] = STATE(1491), [sym_preproc_line] = STATE(1491), @@ -294194,204 +294229,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1491), [sym_preproc_define] = STATE(1491), [sym_preproc_undef] = STATE(1491), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1492] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4787), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1492), - [sym_preproc_endregion] = STATE(1492), - [sym_preproc_line] = STATE(1492), - [sym_preproc_pragma] = STATE(1492), - [sym_preproc_nullable] = STATE(1492), - [sym_preproc_error] = STATE(1492), - [sym_preproc_warning] = STATE(1492), - [sym_preproc_define] = STATE(1492), - [sym_preproc_undef] = STATE(1492), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -294400,10 +294266,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294444,85 +294310,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, + [1492] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4949), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1492), + [sym_preproc_endregion] = STATE(1492), + [sym_preproc_line] = STATE(1492), + [sym_preproc_pragma] = STATE(1492), + [sym_preproc_nullable] = STATE(1492), + [sym_preproc_error] = STATE(1492), + [sym_preproc_warning] = STATE(1492), + [sym_preproc_define] = STATE(1492), + [sym_preproc_undef] = STATE(1492), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [1493] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3524), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7430), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1493), [sym_preproc_endregion] = STATE(1493), [sym_preproc_line] = STATE(1493), @@ -294532,47 +294567,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1493), [sym_preproc_define] = STATE(1493), [sym_preproc_undef] = STATE(1493), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294585,19 +294620,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294608,90 +294643,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1494] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1494), [sym_preproc_endregion] = STATE(1494), [sym_preproc_line] = STATE(1494), @@ -294701,47 +294736,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1494), [sym_preproc_define] = STATE(1494), [sym_preproc_undef] = STATE(1494), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294754,19 +294789,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294777,90 +294812,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1495] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4805), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1495), [sym_preproc_endregion] = STATE(1495), [sym_preproc_line] = STATE(1495), @@ -294870,35 +294905,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1495), [sym_preproc_define] = STATE(1495), [sym_preproc_undef] = STATE(1495), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -294907,10 +294942,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294952,84 +294987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1496] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4807), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1496), [sym_preproc_endregion] = STATE(1496), [sym_preproc_line] = STATE(1496), @@ -295039,48 +295074,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1496), [sym_preproc_define] = STATE(1496), [sym_preproc_undef] = STATE(1496), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(125), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), [anon_sym_on] = ACTIONS(29), @@ -295092,19 +295127,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295115,90 +295150,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1497] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4789), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4806), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1497), [sym_preproc_endregion] = STATE(1497), [sym_preproc_line] = STATE(1497), @@ -295208,35 +295243,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1497), [sym_preproc_define] = STATE(1497), [sym_preproc_undef] = STATE(1497), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -295245,10 +295280,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295290,84 +295325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1498] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4792), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4460), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1498), [sym_preproc_endregion] = STATE(1498), [sym_preproc_line] = STATE(1498), @@ -295377,72 +295412,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1498), [sym_preproc_define] = STATE(1498), [sym_preproc_undef] = STATE(1498), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295453,90 +295488,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1499] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4793), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3163), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6238), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7781), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1499), [sym_preproc_endregion] = STATE(1499), [sym_preproc_line] = STATE(1499), @@ -295546,47 +295581,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1499), [sym_preproc_define] = STATE(1499), [sym_preproc_undef] = STATE(1499), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295599,19 +295634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295622,90 +295657,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1500] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5718), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2948), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1500), [sym_preproc_endregion] = STATE(1500), [sym_preproc_line] = STATE(1500), @@ -295715,47 +295750,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1500), [sym_preproc_define] = STATE(1500), [sym_preproc_undef] = STATE(1500), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295768,19 +295803,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295791,90 +295826,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1501] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4794), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4741), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1501), [sym_preproc_endregion] = STATE(1501), [sym_preproc_line] = STATE(1501), @@ -295884,15 +295919,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1501), [sym_preproc_define] = STATE(1501), [sym_preproc_undef] = STATE(1501), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -295902,17 +295937,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -295921,10 +295956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295966,84 +296001,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1502] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4795), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4744), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1502), [sym_preproc_endregion] = STATE(1502), [sym_preproc_line] = STATE(1502), @@ -296053,15 +296088,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1502), [sym_preproc_define] = STATE(1502), [sym_preproc_undef] = STATE(1502), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -296071,17 +296106,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -296090,10 +296125,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296135,84 +296170,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1227), }, [1503] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4796), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1503), [sym_preproc_endregion] = STATE(1503), [sym_preproc_line] = STATE(1503), @@ -296222,47 +296257,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1503), [sym_preproc_define] = STATE(1503), [sym_preproc_undef] = STATE(1503), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296275,19 +296310,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296298,90 +296333,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1504] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4797), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1504), [sym_preproc_endregion] = STATE(1504), [sym_preproc_line] = STATE(1504), @@ -296391,47 +296426,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1504), [sym_preproc_define] = STATE(1504), [sym_preproc_undef] = STATE(1504), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296444,19 +296479,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296467,90 +296502,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1505] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4798), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1505), [sym_preproc_endregion] = STATE(1505), [sym_preproc_line] = STATE(1505), @@ -296560,47 +296595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1505), [sym_preproc_define] = STATE(1505), [sym_preproc_undef] = STATE(1505), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296613,19 +296648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296636,90 +296671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1506] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5940), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2348), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1506), [sym_preproc_endregion] = STATE(1506), [sym_preproc_line] = STATE(1506), @@ -296729,47 +296764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1506), [sym_preproc_define] = STATE(1506), [sym_preproc_undef] = STATE(1506), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296782,19 +296817,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296805,90 +296840,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1507] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4800), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3630), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1507), [sym_preproc_endregion] = STATE(1507), [sym_preproc_line] = STATE(1507), @@ -296898,47 +296933,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1507), [sym_preproc_define] = STATE(1507), [sym_preproc_undef] = STATE(1507), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296951,19 +296986,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296974,90 +297009,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1508] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5538), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5949), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1508), [sym_preproc_endregion] = STATE(1508), [sym_preproc_line] = STATE(1508), @@ -297067,36 +297102,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1508), [sym_preproc_define] = STATE(1508), [sym_preproc_undef] = STATE(1508), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -297104,10 +297139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297149,84 +297184,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1509] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3173), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3582), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6222), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7756), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7647), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1509), [sym_preproc_endregion] = STATE(1509), [sym_preproc_line] = STATE(1509), @@ -297236,35 +297271,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1509), [sym_preproc_define] = STATE(1509), [sym_preproc_undef] = STATE(1509), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1829), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1831), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -297273,10 +297308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297318,84 +297353,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1510] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1510), [sym_preproc_endregion] = STATE(1510), [sym_preproc_line] = STATE(1510), @@ -297405,17 +297440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1510), [sym_preproc_define] = STATE(1510), [sym_preproc_undef] = STATE(1510), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -297423,18 +297458,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -297442,9 +297477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -297487,84 +297522,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1511] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5490), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5929), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3626), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1511), [sym_preproc_endregion] = STATE(1511), [sym_preproc_line] = STATE(1511), @@ -297574,47 +297609,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1511), [sym_preproc_define] = STATE(1511), [sym_preproc_undef] = STATE(1511), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297627,19 +297662,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297650,90 +297685,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1512] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1512), [sym_preproc_endregion] = STATE(1512), [sym_preproc_line] = STATE(1512), @@ -297743,47 +297778,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1512), [sym_preproc_define] = STATE(1512), [sym_preproc_undef] = STATE(1512), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297825,84 +297860,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1513] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1513), [sym_preproc_endregion] = STATE(1513), [sym_preproc_line] = STATE(1513), @@ -297912,47 +297947,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1513), [sym_preproc_define] = STATE(1513), [sym_preproc_undef] = STATE(1513), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297965,19 +298000,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297988,90 +298023,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1514] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5675), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1514), [sym_preproc_endregion] = STATE(1514), [sym_preproc_line] = STATE(1514), @@ -298081,36 +298116,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1514), [sym_preproc_define] = STATE(1514), [sym_preproc_undef] = STATE(1514), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), @@ -298118,10 +298153,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298163,84 +298198,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1515] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1515), [sym_preproc_endregion] = STATE(1515), [sym_preproc_line] = STATE(1515), @@ -298250,35 +298285,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1515), [sym_preproc_define] = STATE(1515), [sym_preproc_undef] = STATE(1515), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -298287,10 +298322,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298332,84 +298367,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1516] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1516), [sym_preproc_endregion] = STATE(1516), [sym_preproc_line] = STATE(1516), @@ -298419,47 +298454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1516), [sym_preproc_define] = STATE(1516), [sym_preproc_undef] = STATE(1516), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298501,84 +298536,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1517] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3185), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6223), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1517), [sym_preproc_endregion] = STATE(1517), [sym_preproc_line] = STATE(1517), @@ -298588,47 +298623,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1517), [sym_preproc_define] = STATE(1517), [sym_preproc_undef] = STATE(1517), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1369), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1373), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298641,19 +298676,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298664,90 +298699,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1518] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5956), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1518), [sym_preproc_endregion] = STATE(1518), [sym_preproc_line] = STATE(1518), @@ -298757,47 +298792,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1518), [sym_preproc_define] = STATE(1518), [sym_preproc_undef] = STATE(1518), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298839,84 +298874,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1519] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5932), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3329), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6201), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1519), [sym_preproc_endregion] = STATE(1519), [sym_preproc_line] = STATE(1519), @@ -298926,47 +298961,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1519), [sym_preproc_define] = STATE(1519), [sym_preproc_undef] = STATE(1519), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_ref] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1563), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298979,19 +299014,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299002,90 +299037,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1520] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5682), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1520), [sym_preproc_endregion] = STATE(1520), [sym_preproc_line] = STATE(1520), @@ -299095,47 +299130,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1520), [sym_preproc_define] = STATE(1520), [sym_preproc_undef] = STATE(1520), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299177,84 +299212,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1521] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3590), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6203), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7748), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1521), [sym_preproc_endregion] = STATE(1521), [sym_preproc_line] = STATE(1521), @@ -299264,47 +299299,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1521), [sym_preproc_define] = STATE(1521), [sym_preproc_undef] = STATE(1521), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_ref] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1867), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1875), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1879), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299317,19 +299352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299346,84 +299381,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1522] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1522), [sym_preproc_endregion] = STATE(1522), [sym_preproc_line] = STATE(1522), @@ -299433,47 +299468,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1522), [sym_preproc_define] = STATE(1522), [sym_preproc_undef] = STATE(1522), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299515,84 +299550,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1523] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5933), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6228), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7702), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1523), [sym_preproc_endregion] = STATE(1523), [sym_preproc_line] = STATE(1523), @@ -299602,47 +299637,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1523), [sym_preproc_define] = STATE(1523), [sym_preproc_undef] = STATE(1523), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_ref] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2283), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2291), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2295), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299655,19 +299690,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299678,90 +299713,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1524] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1524), [sym_preproc_endregion] = STATE(1524), [sym_preproc_line] = STATE(1524), @@ -299771,47 +299806,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1524), [sym_preproc_define] = STATE(1524), [sym_preproc_undef] = STATE(1524), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1189), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299853,84 +299888,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1525] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5345), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1525), [sym_preproc_endregion] = STATE(1525), [sym_preproc_line] = STATE(1525), @@ -299940,47 +299975,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1525), [sym_preproc_define] = STATE(1525), [sym_preproc_undef] = STATE(1525), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1905), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -299993,19 +300028,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300016,90 +300051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1526] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5735), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2463), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1526), [sym_preproc_endregion] = STATE(1526), [sym_preproc_line] = STATE(1526), @@ -300109,47 +300144,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1526), [sym_preproc_define] = STATE(1526), [sym_preproc_undef] = STATE(1526), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300191,84 +300226,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1527] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5226), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5934), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3638), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6234), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7718), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1527), [sym_preproc_endregion] = STATE(1527), [sym_preproc_line] = STATE(1527), @@ -300278,47 +300313,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1527), [sym_preproc_define] = STATE(1527), [sym_preproc_undef] = STATE(1527), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_ref] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2253), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2261), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2265), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300331,19 +300366,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300354,90 +300389,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1528] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5070), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1528), [sym_preproc_endregion] = STATE(1528), [sym_preproc_line] = STATE(1528), @@ -300447,47 +300482,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1528), [sym_preproc_define] = STATE(1528), [sym_preproc_undef] = STATE(1528), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300500,19 +300535,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300529,84 +300564,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1529] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3511), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6232), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7769), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1529), [sym_preproc_endregion] = STATE(1529), [sym_preproc_line] = STATE(1529), @@ -300616,47 +300651,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1529), [sym_preproc_define] = STATE(1529), [sym_preproc_undef] = STATE(1529), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_ref] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1885), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1893), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1897), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300669,19 +300704,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300692,90 +300727,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1530] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5351), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1530), [sym_preproc_endregion] = STATE(1530), [sym_preproc_line] = STATE(1530), @@ -300785,47 +300820,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1530), [sym_preproc_define] = STATE(1530), [sym_preproc_undef] = STATE(1530), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -300838,19 +300873,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300861,90 +300896,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1531] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5142), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5957), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2363), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3359), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6229), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7727), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1531), [sym_preproc_endregion] = STATE(1531), [sym_preproc_line] = STATE(1531), @@ -300954,47 +300989,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1531), [sym_preproc_define] = STATE(1531), [sym_preproc_undef] = STATE(1531), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1555), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301007,19 +301042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301030,90 +301065,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1532] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5143), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5935), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2409), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1532), [sym_preproc_endregion] = STATE(1532), [sym_preproc_line] = STATE(1532), @@ -301123,47 +301158,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1532), [sym_preproc_define] = STATE(1532), [sym_preproc_undef] = STATE(1532), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301176,19 +301211,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301205,84 +301240,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1533] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5067), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3560), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6236), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7798), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1533), [sym_preproc_endregion] = STATE(1533), [sym_preproc_line] = STATE(1533), @@ -301292,35 +301327,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1533), [sym_preproc_define] = STATE(1533), [sym_preproc_undef] = STATE(1533), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -301329,10 +301364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301374,84 +301409,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1534] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5709), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1534), [sym_preproc_endregion] = STATE(1534), [sym_preproc_line] = STATE(1534), @@ -301461,47 +301496,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1534), [sym_preproc_define] = STATE(1534), [sym_preproc_undef] = STATE(1534), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301514,19 +301549,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301543,84 +301578,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1535] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5145), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3641), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6214), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7739), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1535), [sym_preproc_endregion] = STATE(1535), [sym_preproc_line] = STATE(1535), @@ -301630,47 +301665,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1535), [sym_preproc_define] = STATE(1535), [sym_preproc_undef] = STATE(1535), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2019), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2023), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301683,19 +301718,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301706,90 +301741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1536] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5146), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1536), [sym_preproc_endregion] = STATE(1536), [sym_preproc_line] = STATE(1536), @@ -301799,47 +301834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1536), [sym_preproc_define] = STATE(1536), [sym_preproc_undef] = STATE(1536), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301852,19 +301887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301881,84 +301916,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1537] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5147), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5936), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2426), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3517), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1537), [sym_preproc_endregion] = STATE(1537), [sym_preproc_line] = STATE(1537), @@ -301968,47 +302003,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1537), [sym_preproc_define] = STATE(1537), [sym_preproc_undef] = STATE(1537), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1923), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1931), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1935), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302021,19 +302056,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302044,90 +302079,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1538] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5148), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1538), [sym_preproc_endregion] = STATE(1538), [sym_preproc_line] = STATE(1538), @@ -302137,47 +302172,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1538), [sym_preproc_define] = STATE(1538), [sym_preproc_undef] = STATE(1538), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302190,19 +302225,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302219,84 +302254,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1539] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5149), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5937), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2430), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3523), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6208), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7787), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1539), [sym_preproc_endregion] = STATE(1539), [sym_preproc_line] = STATE(1539), @@ -302306,47 +302341,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1539), [sym_preproc_define] = STATE(1539), [sym_preproc_undef] = STATE(1539), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1849), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1861), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302359,19 +302394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302382,90 +302417,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1540] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5150), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5730), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2648), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1540), [sym_preproc_endregion] = STATE(1540), [sym_preproc_line] = STATE(1540), @@ -302475,47 +302510,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1540), [sym_preproc_define] = STATE(1540), [sym_preproc_undef] = STATE(1540), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302528,19 +302563,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302557,84 +302592,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1541] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3529), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6199), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7700), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1541), [sym_preproc_endregion] = STATE(1541), [sym_preproc_line] = STATE(1541), @@ -302644,47 +302679,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1541), [sym_preproc_define] = STATE(1541), [sym_preproc_undef] = STATE(1541), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1669), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1673), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302697,19 +302732,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302720,90 +302755,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1542] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5479), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5034), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1542), [sym_preproc_endregion] = STATE(1542), [sym_preproc_line] = STATE(1542), @@ -302813,72 +302848,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1542), [sym_preproc_define] = STATE(1542), [sym_preproc_undef] = STATE(1542), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302889,90 +302924,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1543] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1543), [sym_preproc_endregion] = STATE(1543), [sym_preproc_line] = STATE(1543), @@ -302982,47 +303017,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1543), [sym_preproc_define] = STATE(1543), [sym_preproc_undef] = STATE(1543), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303035,19 +303070,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303064,84 +303099,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1544] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5153), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1544), [sym_preproc_endregion] = STATE(1544), [sym_preproc_line] = STATE(1544), @@ -303151,47 +303186,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1544), [sym_preproc_define] = STATE(1544), [sym_preproc_undef] = STATE(1544), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303204,19 +303239,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303233,84 +303268,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1545] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5348), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1545), [sym_preproc_endregion] = STATE(1545), [sym_preproc_line] = STATE(1545), @@ -303320,47 +303355,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1545), [sym_preproc_define] = STATE(1545), [sym_preproc_undef] = STATE(1545), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303373,19 +303408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303402,84 +303437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1546] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5158), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5503), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1546), [sym_preproc_endregion] = STATE(1546), [sym_preproc_line] = STATE(1546), @@ -303489,47 +303524,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1546), [sym_preproc_define] = STATE(1546), [sym_preproc_undef] = STATE(1546), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303542,19 +303577,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303571,84 +303606,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1547] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5160), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5407), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1547), [sym_preproc_endregion] = STATE(1547), [sym_preproc_line] = STATE(1547), @@ -303658,47 +303693,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1547), [sym_preproc_define] = STATE(1547), [sym_preproc_undef] = STATE(1547), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303711,19 +303746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303740,84 +303775,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1548] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3476), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6201), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7687), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5408), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1548), [sym_preproc_endregion] = STATE(1548), [sym_preproc_line] = STATE(1548), @@ -303827,47 +303862,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1548), [sym_preproc_define] = STATE(1548), [sym_preproc_undef] = STATE(1548), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_ref] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1693), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303880,19 +303915,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303909,84 +303944,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1549] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5409), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1549), [sym_preproc_endregion] = STATE(1549), [sym_preproc_line] = STATE(1549), @@ -303996,17 +304031,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1549), [sym_preproc_define] = STATE(1549), [sym_preproc_undef] = STATE(1549), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -304014,29 +304049,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304078,84 +304113,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1550] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5425), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5371), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1550), [sym_preproc_endregion] = STATE(1550), [sym_preproc_line] = STATE(1550), @@ -304165,35 +304200,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1550), [sym_preproc_define] = STATE(1550), [sym_preproc_undef] = STATE(1550), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -304202,10 +304237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304247,84 +304282,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1551] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5412), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1551), [sym_preproc_endregion] = STATE(1551), [sym_preproc_line] = STATE(1551), @@ -304334,17 +304369,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1551), [sym_preproc_define] = STATE(1551), [sym_preproc_undef] = STATE(1551), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -304352,17 +304387,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -304371,10 +304406,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304416,84 +304451,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1552] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5373), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5413), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1552), [sym_preproc_endregion] = STATE(1552), [sym_preproc_line] = STATE(1552), @@ -304503,17 +304538,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1552), [sym_preproc_define] = STATE(1552), [sym_preproc_undef] = STATE(1552), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -304521,17 +304556,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -304540,10 +304575,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304585,84 +304620,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1553] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5375), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5414), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1553), [sym_preproc_endregion] = STATE(1553), [sym_preproc_line] = STATE(1553), @@ -304672,17 +304707,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1553), [sym_preproc_define] = STATE(1553), [sym_preproc_undef] = STATE(1553), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -304690,17 +304725,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -304709,10 +304744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304754,84 +304789,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1554] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5376), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4361), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1554), [sym_preproc_endregion] = STATE(1554), [sym_preproc_line] = STATE(1554), @@ -304841,47 +304876,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1554), [sym_preproc_define] = STATE(1554), [sym_preproc_undef] = STATE(1554), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304894,19 +304929,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304923,84 +304958,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1555] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5377), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5440), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1555), [sym_preproc_endregion] = STATE(1555), [sym_preproc_line] = STATE(1555), @@ -305010,35 +305045,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1555), [sym_preproc_define] = STATE(1555), [sym_preproc_undef] = STATE(1555), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -305047,10 +305082,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305092,84 +305127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1556] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5378), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1556), [sym_preproc_endregion] = STATE(1556), [sym_preproc_line] = STATE(1556), @@ -305179,47 +305214,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1556), [sym_preproc_define] = STATE(1556), [sym_preproc_undef] = STATE(1556), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305232,19 +305267,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305261,84 +305296,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1557] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5379), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4893), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1557), [sym_preproc_endregion] = STATE(1557), [sym_preproc_line] = STATE(1557), @@ -305348,72 +305383,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1557), [sym_preproc_define] = STATE(1557), [sym_preproc_undef] = STATE(1557), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305424,90 +305459,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1558] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5380), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4894), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1558), [sym_preproc_endregion] = STATE(1558), [sym_preproc_line] = STATE(1558), @@ -305517,72 +305552,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1558), [sym_preproc_define] = STATE(1558), [sym_preproc_undef] = STATE(1558), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305593,90 +305628,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1559] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5381), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5036), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1559), [sym_preproc_endregion] = STATE(1559), [sym_preproc_line] = STATE(1559), @@ -305686,47 +305721,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1559), [sym_preproc_define] = STATE(1559), [sym_preproc_undef] = STATE(1559), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305739,19 +305774,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305768,84 +305803,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1560] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5383), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4895), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1560), [sym_preproc_endregion] = STATE(1560), [sym_preproc_line] = STATE(1560), @@ -305855,72 +305890,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1560), [sym_preproc_define] = STATE(1560), [sym_preproc_undef] = STATE(1560), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305931,90 +305966,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1561] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5384), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4896), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1561), [sym_preproc_endregion] = STATE(1561), [sym_preproc_line] = STATE(1561), @@ -306024,72 +306059,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1561), [sym_preproc_define] = STATE(1561), [sym_preproc_undef] = STATE(1561), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306100,90 +306135,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1562] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4897), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1562), [sym_preproc_endregion] = STATE(1562), [sym_preproc_line] = STATE(1562), @@ -306193,72 +306228,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1562), [sym_preproc_define] = STATE(1562), [sym_preproc_undef] = STATE(1562), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306269,90 +306304,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1563] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5461), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4898), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1563), [sym_preproc_endregion] = STATE(1563), [sym_preproc_line] = STATE(1563), @@ -306362,72 +306397,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1563), [sym_preproc_define] = STATE(1563), [sym_preproc_undef] = STATE(1563), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306438,90 +306473,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1564] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5175), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4899), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1564), [sym_preproc_endregion] = STATE(1564), [sym_preproc_line] = STATE(1564), @@ -306531,47 +306566,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1564), [sym_preproc_define] = STATE(1564), [sym_preproc_undef] = STATE(1564), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1565] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4900), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1565), + [sym_preproc_endregion] = STATE(1565), + [sym_preproc_line] = STATE(1565), + [sym_preproc_pragma] = STATE(1565), + [sym_preproc_nullable] = STATE(1565), + [sym_preproc_error] = STATE(1565), + [sym_preproc_warning] = STATE(1565), + [sym_preproc_define] = STATE(1565), + [sym_preproc_undef] = STATE(1565), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1566] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4137), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1566), + [sym_preproc_endregion] = STATE(1566), + [sym_preproc_line] = STATE(1566), + [sym_preproc_pragma] = STATE(1566), + [sym_preproc_nullable] = STATE(1566), + [sym_preproc_error] = STATE(1566), + [sym_preproc_warning] = STATE(1566), + [sym_preproc_define] = STATE(1566), + [sym_preproc_undef] = STATE(1566), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306584,19 +306957,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306612,135 +306985,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1565] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4176), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), + [1567] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4134), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1565), - [sym_preproc_endregion] = STATE(1565), - [sym_preproc_line] = STATE(1565), - [sym_preproc_pragma] = STATE(1565), - [sym_preproc_nullable] = STATE(1565), - [sym_preproc_error] = STATE(1565), - [sym_preproc_warning] = STATE(1565), - [sym_preproc_define] = STATE(1565), - [sym_preproc_undef] = STATE(1565), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1567), + [sym_preproc_endregion] = STATE(1567), + [sym_preproc_line] = STATE(1567), + [sym_preproc_pragma] = STATE(1567), + [sym_preproc_nullable] = STATE(1567), + [sym_preproc_error] = STATE(1567), + [sym_preproc_warning] = STATE(1567), + [sym_preproc_define] = STATE(1567), + [sym_preproc_undef] = STATE(1567), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306753,19 +307126,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306781,135 +307154,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1566] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1566), - [sym_preproc_endregion] = STATE(1566), - [sym_preproc_line] = STATE(1566), - [sym_preproc_pragma] = STATE(1566), - [sym_preproc_nullable] = STATE(1566), - [sym_preproc_error] = STATE(1566), - [sym_preproc_warning] = STATE(1566), - [sym_preproc_define] = STATE(1566), - [sym_preproc_undef] = STATE(1566), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1568] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1568), + [sym_preproc_endregion] = STATE(1568), + [sym_preproc_line] = STATE(1568), + [sym_preproc_pragma] = STATE(1568), + [sym_preproc_nullable] = STATE(1568), + [sym_preproc_error] = STATE(1568), + [sym_preproc_warning] = STATE(1568), + [sym_preproc_define] = STATE(1568), + [sym_preproc_undef] = STATE(1568), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306922,19 +307295,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306950,123 +307323,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1567] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5073), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [1569] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4955), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1567), - [sym_preproc_endregion] = STATE(1567), - [sym_preproc_line] = STATE(1567), - [sym_preproc_pragma] = STATE(1567), - [sym_preproc_nullable] = STATE(1567), - [sym_preproc_error] = STATE(1567), - [sym_preproc_warning] = STATE(1567), - [sym_preproc_define] = STATE(1567), - [sym_preproc_undef] = STATE(1567), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1569), + [sym_preproc_endregion] = STATE(1569), + [sym_preproc_line] = STATE(1569), + [sym_preproc_pragma] = STATE(1569), + [sym_preproc_nullable] = STATE(1569), + [sym_preproc_error] = STATE(1569), + [sym_preproc_warning] = STATE(1569), + [sym_preproc_define] = STATE(1569), + [sym_preproc_undef] = STATE(1569), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -307075,10 +307448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307103,7 +307476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307119,135 +307492,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1568] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5388), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1568), - [sym_preproc_endregion] = STATE(1568), - [sym_preproc_line] = STATE(1568), - [sym_preproc_pragma] = STATE(1568), - [sym_preproc_nullable] = STATE(1568), - [sym_preproc_error] = STATE(1568), - [sym_preproc_warning] = STATE(1568), - [sym_preproc_define] = STATE(1568), - [sym_preproc_undef] = STATE(1568), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1570] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5078), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1570), + [sym_preproc_endregion] = STATE(1570), + [sym_preproc_line] = STATE(1570), + [sym_preproc_pragma] = STATE(1570), + [sym_preproc_nullable] = STATE(1570), + [sym_preproc_error] = STATE(1570), + [sym_preproc_warning] = STATE(1570), + [sym_preproc_define] = STATE(1570), + [sym_preproc_undef] = STATE(1570), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307260,19 +307633,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307288,461 +307661,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1569] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5179), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1569), - [sym_preproc_endregion] = STATE(1569), - [sym_preproc_line] = STATE(1569), - [sym_preproc_pragma] = STATE(1569), - [sym_preproc_nullable] = STATE(1569), - [sym_preproc_error] = STATE(1569), - [sym_preproc_warning] = STATE(1569), - [sym_preproc_define] = STATE(1569), - [sym_preproc_undef] = STATE(1569), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1570] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4904), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1570), - [sym_preproc_endregion] = STATE(1570), - [sym_preproc_line] = STATE(1570), - [sym_preproc_pragma] = STATE(1570), - [sym_preproc_nullable] = STATE(1570), - [sym_preproc_error] = STATE(1570), - [sym_preproc_warning] = STATE(1570), - [sym_preproc_define] = STATE(1570), - [sym_preproc_undef] = STATE(1570), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1571] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4905), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1571), - [sym_preproc_endregion] = STATE(1571), - [sym_preproc_line] = STATE(1571), - [sym_preproc_pragma] = STATE(1571), - [sym_preproc_nullable] = STATE(1571), - [sym_preproc_error] = STATE(1571), - [sym_preproc_warning] = STATE(1571), - [sym_preproc_define] = STATE(1571), - [sym_preproc_undef] = STATE(1571), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1571] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4956), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1571), + [sym_preproc_endregion] = STATE(1571), + [sym_preproc_line] = STATE(1571), + [sym_preproc_pragma] = STATE(1571), + [sym_preproc_nullable] = STATE(1571), + [sym_preproc_error] = STATE(1571), + [sym_preproc_warning] = STATE(1571), + [sym_preproc_define] = STATE(1571), + [sym_preproc_undef] = STATE(1571), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -307751,10 +307786,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307779,7 +307814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307796,84 +307831,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1572] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5071), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4957), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1572), [sym_preproc_endregion] = STATE(1572), [sym_preproc_line] = STATE(1572), @@ -307883,35 +307918,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1572), [sym_preproc_define] = STATE(1572), [sym_preproc_undef] = STATE(1572), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -307920,10 +307955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307948,7 +307983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307965,84 +308000,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1573] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4906), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4958), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1573), [sym_preproc_endregion] = STATE(1573), [sym_preproc_line] = STATE(1573), @@ -308052,35 +308087,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1573), [sym_preproc_define] = STATE(1573), [sym_preproc_undef] = STATE(1573), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308089,10 +308124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308117,7 +308152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308134,84 +308169,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1574] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4907), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4889), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1574), [sym_preproc_endregion] = STATE(1574), [sym_preproc_line] = STATE(1574), @@ -308221,35 +308256,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1574), [sym_preproc_define] = STATE(1574), [sym_preproc_undef] = STATE(1574), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308258,10 +308293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308286,7 +308321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308303,84 +308338,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1575] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4908), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4960), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1575), [sym_preproc_endregion] = STATE(1575), [sym_preproc_line] = STATE(1575), @@ -308390,35 +308425,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1575), [sym_preproc_define] = STATE(1575), [sym_preproc_undef] = STATE(1575), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308427,10 +308462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308455,7 +308490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308472,84 +308507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1576] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4909), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4961), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1576), [sym_preproc_endregion] = STATE(1576), [sym_preproc_line] = STATE(1576), @@ -308559,35 +308594,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1576), [sym_preproc_define] = STATE(1576), [sym_preproc_undef] = STATE(1576), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308596,10 +308631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308624,7 +308659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308641,84 +308676,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1577] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4910), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4962), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1577), [sym_preproc_endregion] = STATE(1577), [sym_preproc_line] = STATE(1577), @@ -308728,35 +308763,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1577), [sym_preproc_define] = STATE(1577), [sym_preproc_undef] = STATE(1577), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308765,10 +308800,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308793,7 +308828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308810,84 +308845,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1578] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4911), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4963), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1578), [sym_preproc_endregion] = STATE(1578), [sym_preproc_line] = STATE(1578), @@ -308897,35 +308932,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1578), [sym_preproc_define] = STATE(1578), [sym_preproc_undef] = STATE(1578), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -308934,10 +308969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308962,7 +308997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308979,84 +309014,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1579] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5162), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4158), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1579), [sym_preproc_endregion] = STATE(1579), [sym_preproc_line] = STATE(1579), @@ -309066,47 +309101,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1579), [sym_preproc_define] = STATE(1579), [sym_preproc_undef] = STATE(1579), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309119,19 +309154,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309142,90 +309177,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1580] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4912), - [sym_non_lvalue_expression] = STATE(3410), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4903), + [sym_non_lvalue_expression] = STATE(4632), [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1580), [sym_preproc_endregion] = STATE(1580), [sym_preproc_line] = STATE(1580), @@ -309235,72 +309270,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1580), [sym_preproc_define] = STATE(1580), [sym_preproc_undef] = STATE(1580), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309311,90 +309346,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1581] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1581), [sym_preproc_endregion] = STATE(1581), [sym_preproc_line] = STATE(1581), @@ -309404,35 +309439,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1581), [sym_preproc_define] = STATE(1581), [sym_preproc_undef] = STATE(1581), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -309441,10 +309476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309469,7 +309504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309486,84 +309521,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1582] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4914), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1582), [sym_preproc_endregion] = STATE(1582), [sym_preproc_line] = STATE(1582), @@ -309573,47 +309608,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1582), [sym_preproc_define] = STATE(1582), [sym_preproc_undef] = STATE(1582), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309626,19 +309661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309649,90 +309684,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1583] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3713), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1583), [sym_preproc_endregion] = STATE(1583), [sym_preproc_line] = STATE(1583), @@ -309742,47 +309777,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1583), [sym_preproc_define] = STATE(1583), [sym_preproc_undef] = STATE(1583), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309795,19 +309830,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309818,90 +309853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1584] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4916), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3597), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1584), [sym_preproc_endregion] = STATE(1584), [sym_preproc_line] = STATE(1584), @@ -309911,47 +309946,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1584), [sym_preproc_define] = STATE(1584), [sym_preproc_undef] = STATE(1584), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309964,19 +309999,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309987,90 +310022,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1585] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4918), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4156), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1585), [sym_preproc_endregion] = STATE(1585), [sym_preproc_line] = STATE(1585), @@ -310080,47 +310115,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1585), [sym_preproc_define] = STATE(1585), [sym_preproc_undef] = STATE(1585), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310133,19 +310168,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310156,90 +310191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1586] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3246), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7484), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4157), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1586), [sym_preproc_endregion] = STATE(1586), [sym_preproc_line] = STATE(1586), @@ -310249,47 +310284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1586), [sym_preproc_define] = STATE(1586), [sym_preproc_undef] = STATE(1586), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310302,19 +310337,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310325,90 +310360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1587] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5936), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4159), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1587), [sym_preproc_endregion] = STATE(1587), [sym_preproc_line] = STATE(1587), @@ -310418,47 +310453,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1587), [sym_preproc_define] = STATE(1587), [sym_preproc_undef] = STATE(1587), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310472,17 +310507,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -310494,90 +310529,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1588] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4479), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4114), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1588), [sym_preproc_endregion] = STATE(1588), [sym_preproc_line] = STATE(1588), @@ -310587,47 +310622,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1588), [sym_preproc_define] = STATE(1588), [sym_preproc_undef] = STATE(1588), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310640,19 +310675,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310663,90 +310698,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1589] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4480), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4115), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1589), [sym_preproc_endregion] = STATE(1589), [sym_preproc_line] = STATE(1589), @@ -310756,47 +310791,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1589), [sym_preproc_define] = STATE(1589), [sym_preproc_undef] = STATE(1589), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310809,19 +310844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310832,90 +310867,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1590] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4128), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), [sym_from_clause] = STATE(6202), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1590), [sym_preproc_endregion] = STATE(1590), [sym_preproc_line] = STATE(1590), @@ -310925,47 +310960,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1590), [sym_preproc_define] = STATE(1590), [sym_preproc_undef] = STATE(1590), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_ref] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310978,19 +311013,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311001,90 +311036,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1591] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4160), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1591), [sym_preproc_endregion] = STATE(1591), [sym_preproc_line] = STATE(1591), @@ -311094,47 +311129,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1591), [sym_preproc_define] = STATE(1591), [sym_preproc_undef] = STATE(1591), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311148,17 +311183,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -311170,90 +311205,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1592] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5231), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4120), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1592), [sym_preproc_endregion] = STATE(1592), [sym_preproc_line] = STATE(1592), @@ -311263,47 +311298,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1592), [sym_preproc_define] = STATE(1592), [sym_preproc_undef] = STATE(1592), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311316,19 +311351,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311345,84 +311380,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1593] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5327), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4915), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1593), [sym_preproc_endregion] = STATE(1593), [sym_preproc_line] = STATE(1593), @@ -311432,72 +311467,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1593), [sym_preproc_define] = STATE(1593), [sym_preproc_undef] = STATE(1593), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311508,90 +311543,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1594] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3585), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6203), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7719), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4140), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1594), [sym_preproc_endregion] = STATE(1594), [sym_preproc_line] = STATE(1594), @@ -311601,47 +311636,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1594), [sym_preproc_define] = STATE(1594), [sym_preproc_undef] = STATE(1594), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_ref] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311654,19 +311689,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311677,90 +311712,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1595] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4142), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1595), [sym_preproc_endregion] = STATE(1595), [sym_preproc_line] = STATE(1595), @@ -311770,47 +311805,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1595), [sym_preproc_define] = STATE(1595), [sym_preproc_undef] = STATE(1595), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311824,17 +311859,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -311846,90 +311881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1596] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4765), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4106), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1596), [sym_preproc_endregion] = STATE(1596), [sym_preproc_line] = STATE(1596), @@ -311939,47 +311974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1596), [sym_preproc_define] = STATE(1596), [sym_preproc_undef] = STATE(1596), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311992,19 +312027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312015,90 +312050,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1597] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4767), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3706), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1597), [sym_preproc_endregion] = STATE(1597), [sym_preproc_line] = STATE(1597), @@ -312108,47 +312143,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1597), [sym_preproc_define] = STATE(1597), [sym_preproc_undef] = STATE(1597), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312161,19 +312196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312184,90 +312219,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1598] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5482), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4922), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1598), [sym_preproc_endregion] = STATE(1598), [sym_preproc_line] = STATE(1598), @@ -312277,72 +312312,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1598), [sym_preproc_define] = STATE(1598), [sym_preproc_undef] = STATE(1598), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312353,90 +312388,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1599] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5925), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3334), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6211), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7753), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4136), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1599), [sym_preproc_endregion] = STATE(1599), [sym_preproc_line] = STATE(1599), @@ -312446,47 +312481,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1599), [sym_preproc_define] = STATE(1599), [sym_preproc_undef] = STATE(1599), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1817), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1821), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1825), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312499,19 +312534,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312528,84 +312563,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1600] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4331), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1600), [sym_preproc_endregion] = STATE(1600), [sym_preproc_line] = STATE(1600), @@ -312615,47 +312650,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1600), [sym_preproc_define] = STATE(1600), [sym_preproc_undef] = STATE(1600), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312668,19 +312703,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312697,84 +312732,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1601] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4784), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3695), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1601), [sym_preproc_endregion] = STATE(1601), [sym_preproc_line] = STATE(1601), @@ -312784,47 +312819,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1601), [sym_preproc_define] = STATE(1601), [sym_preproc_undef] = STATE(1601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312837,19 +312872,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -312860,90 +312895,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1602] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4786), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5506), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1602), [sym_preproc_endregion] = STATE(1602), [sym_preproc_line] = STATE(1602), @@ -312953,204 +312988,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1602), [sym_preproc_define] = STATE(1602), [sym_preproc_undef] = STATE(1602), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1603] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1603), - [sym_preproc_endregion] = STATE(1603), - [sym_preproc_line] = STATE(1603), - [sym_preproc_pragma] = STATE(1603), - [sym_preproc_nullable] = STATE(1603), - [sym_preproc_error] = STATE(1603), - [sym_preproc_warning] = STATE(1603), - [sym_preproc_define] = STATE(1603), - [sym_preproc_undef] = STATE(1603), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -313159,10 +313025,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1133), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313203,85 +313069,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [1603] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4363), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1603), + [sym_preproc_endregion] = STATE(1603), + [sym_preproc_line] = STATE(1603), + [sym_preproc_pragma] = STATE(1603), + [sym_preproc_nullable] = STATE(1603), + [sym_preproc_error] = STATE(1603), + [sym_preproc_warning] = STATE(1603), + [sym_preproc_define] = STATE(1603), + [sym_preproc_undef] = STATE(1603), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [1604] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3715), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1604), [sym_preproc_endregion] = STATE(1604), [sym_preproc_line] = STATE(1604), @@ -313291,47 +313326,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1604), [sym_preproc_define] = STATE(1604), [sym_preproc_undef] = STATE(1604), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313344,19 +313379,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313367,90 +313402,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1605] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4804), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3716), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1605), [sym_preproc_endregion] = STATE(1605), [sym_preproc_line] = STATE(1605), @@ -313460,47 +313495,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1605), [sym_preproc_define] = STATE(1605), [sym_preproc_undef] = STATE(1605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313513,19 +313548,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313536,90 +313571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1606] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4805), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3717), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1606), [sym_preproc_endregion] = STATE(1606), [sym_preproc_line] = STATE(1606), @@ -313629,47 +313664,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1606), [sym_preproc_define] = STATE(1606), [sym_preproc_undef] = STATE(1606), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313682,19 +313717,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313705,90 +313740,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1607] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3166), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6222), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7391), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3722), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1607), [sym_preproc_endregion] = STATE(1607), [sym_preproc_line] = STATE(1607), @@ -313798,47 +313833,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1607), [sym_preproc_define] = STATE(1607), [sym_preproc_undef] = STATE(1607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_ref] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313851,19 +313886,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313874,90 +313909,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1608] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5736), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2943), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3726), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1608), [sym_preproc_endregion] = STATE(1608), [sym_preproc_line] = STATE(1608), @@ -313967,47 +314002,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1608), [sym_preproc_define] = STATE(1608), [sym_preproc_undef] = STATE(1608), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314020,19 +314055,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314043,90 +314078,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1609] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4740), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3727), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1609), [sym_preproc_endregion] = STATE(1609), [sym_preproc_line] = STATE(1609), @@ -314136,47 +314171,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1609), [sym_preproc_define] = STATE(1609), [sym_preproc_undef] = STATE(1609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314189,19 +314224,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314212,90 +314247,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1610] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4743), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3689), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1610), [sym_preproc_endregion] = STATE(1610), [sym_preproc_line] = STATE(1610), @@ -314305,47 +314340,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1610), [sym_preproc_define] = STATE(1610), [sym_preproc_undef] = STATE(1610), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314358,19 +314393,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314381,90 +314416,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1611] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3706), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6205), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7571), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3732), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1611), [sym_preproc_endregion] = STATE(1611), [sym_preproc_line] = STATE(1611), @@ -314474,47 +314509,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1611), [sym_preproc_define] = STATE(1611), [sym_preproc_undef] = STATE(1611), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314527,19 +314562,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314550,90 +314585,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1612] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3733), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1612), [sym_preproc_endregion] = STATE(1612), [sym_preproc_line] = STATE(1612), @@ -314643,47 +314678,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1612), [sym_preproc_define] = STATE(1612), [sym_preproc_undef] = STATE(1612), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314696,19 +314731,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314719,90 +314754,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1613] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3711), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6217), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7634), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3690), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1613), [sym_preproc_endregion] = STATE(1613), [sym_preproc_line] = STATE(1613), @@ -314812,47 +314847,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1613), [sym_preproc_define] = STATE(1613), [sym_preproc_undef] = STATE(1613), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_ref] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314865,19 +314900,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314888,90 +314923,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1614] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5922), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2334), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3691), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1614), [sym_preproc_endregion] = STATE(1614), [sym_preproc_line] = STATE(1614), @@ -314981,47 +315016,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1614), [sym_preproc_define] = STATE(1614), [sym_preproc_undef] = STATE(1614), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315034,19 +315069,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315057,90 +315092,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1615] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(3043), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6210), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1615), [sym_preproc_endregion] = STATE(1615), [sym_preproc_line] = STATE(1615), @@ -315150,47 +315185,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1615), [sym_preproc_define] = STATE(1615), [sym_preproc_undef] = STATE(1615), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_ref] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315203,19 +315238,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315226,90 +315261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1616] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5956), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4444), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1616), [sym_preproc_endregion] = STATE(1616), [sym_preproc_line] = STATE(1616), @@ -315319,72 +315354,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1616), [sym_preproc_define] = STATE(1616), [sym_preproc_undef] = STATE(1616), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315395,90 +315430,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1617] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6216), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7358), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4362), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1617), [sym_preproc_endregion] = STATE(1617), [sym_preproc_line] = STATE(1617), @@ -315488,72 +315523,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1617), [sym_preproc_define] = STATE(1617), [sym_preproc_undef] = STATE(1617), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_ref] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1885), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1893), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315564,90 +315599,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1618] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4050), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1618), [sym_preproc_endregion] = STATE(1618), [sym_preproc_line] = STATE(1618), @@ -315657,204 +315692,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1618), [sym_preproc_define] = STATE(1618), [sym_preproc_undef] = STATE(1618), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1619] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1619), - [sym_preproc_endregion] = STATE(1619), - [sym_preproc_line] = STATE(1619), - [sym_preproc_pragma] = STATE(1619), - [sym_preproc_nullable] = STATE(1619), - [sym_preproc_error] = STATE(1619), - [sym_preproc_warning] = STATE(1619), - [sym_preproc_define] = STATE(1619), - [sym_preproc_undef] = STATE(1619), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -315863,10 +315729,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315907,85 +315773,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, + [1619] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4421), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1619), + [sym_preproc_endregion] = STATE(1619), + [sym_preproc_line] = STATE(1619), + [sym_preproc_pragma] = STATE(1619), + [sym_preproc_nullable] = STATE(1619), + [sym_preproc_error] = STATE(1619), + [sym_preproc_warning] = STATE(1619), + [sym_preproc_define] = STATE(1619), + [sym_preproc_undef] = STATE(1619), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, [1620] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4427), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1620), [sym_preproc_endregion] = STATE(1620), [sym_preproc_line] = STATE(1620), @@ -315995,72 +316030,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1620), [sym_preproc_define] = STATE(1620), [sym_preproc_undef] = STATE(1620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316071,90 +316106,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1621] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3088), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6199), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7778), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4326), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3250), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7605), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1621), [sym_preproc_endregion] = STATE(1621), [sym_preproc_line] = STATE(1621), @@ -316164,47 +316199,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1621), [sym_preproc_define] = STATE(1621), [sym_preproc_undef] = STATE(1621), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_ref] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1385), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1389), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316217,19 +316252,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316240,90 +316275,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1622] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4974), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1622), [sym_preproc_endregion] = STATE(1622), [sym_preproc_line] = STATE(1622), @@ -316333,47 +316368,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1622), [sym_preproc_define] = STATE(1622), [sym_preproc_undef] = STATE(1622), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316386,19 +316421,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316415,84 +316450,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1623] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3716), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6221), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7660), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3222), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1623), [sym_preproc_endregion] = STATE(1623), [sym_preproc_line] = STATE(1623), @@ -316502,47 +316537,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1623), [sym_preproc_define] = STATE(1623), [sym_preproc_undef] = STATE(1623), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_ref] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1989), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316555,19 +316590,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316584,84 +316619,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1624] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4467), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1624), [sym_preproc_endregion] = STATE(1624), [sym_preproc_line] = STATE(1624), @@ -316671,72 +316706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1624), [sym_preproc_define] = STATE(1624), [sym_preproc_undef] = STATE(1624), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316747,90 +316782,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1625] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3178), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6215), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7390), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4468), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1625), [sym_preproc_endregion] = STATE(1625), [sym_preproc_line] = STATE(1625), @@ -316840,72 +316875,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1625), [sym_preproc_define] = STATE(1625), [sym_preproc_undef] = STATE(1625), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_ref] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1385), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316916,90 +316951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1626] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5940), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4469), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1626), [sym_preproc_endregion] = STATE(1626), [sym_preproc_line] = STATE(1626), @@ -317009,72 +317044,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1626), [sym_preproc_define] = STATE(1626), [sym_preproc_undef] = STATE(1626), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317085,90 +317120,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1627] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5939), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3341), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6234), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7375), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4471), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1627), [sym_preproc_endregion] = STATE(1627), [sym_preproc_line] = STATE(1627), @@ -317178,72 +317213,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1627), [sym_preproc_define] = STATE(1627), [sym_preproc_undef] = STATE(1627), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_ref] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317254,90 +317289,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1628] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4501), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1628), [sym_preproc_endregion] = STATE(1628), [sym_preproc_line] = STATE(1628), @@ -317347,72 +317382,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1628), [sym_preproc_define] = STATE(1628), [sym_preproc_undef] = STATE(1628), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317423,90 +317458,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1629] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3558), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6237), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7463), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4396), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1629), [sym_preproc_endregion] = STATE(1629), [sym_preproc_line] = STATE(1629), @@ -317516,72 +317551,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1629), [sym_preproc_define] = STATE(1629), [sym_preproc_undef] = STATE(1629), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_ref] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317592,90 +317627,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1630] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4482), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1630), [sym_preproc_endregion] = STATE(1630), [sym_preproc_line] = STATE(1630), @@ -317685,72 +317720,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1630), [sym_preproc_define] = STATE(1630), [sym_preproc_undef] = STATE(1630), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317761,90 +317796,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1631] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5941), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3591), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6200), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7402), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4390), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1631), [sym_preproc_endregion] = STATE(1631), [sym_preproc_line] = STATE(1631), @@ -317854,241 +317889,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1631), [sym_preproc_define] = STATE(1631), [sym_preproc_undef] = STATE(1631), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_ref] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2249), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1632] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1632), - [sym_preproc_endregion] = STATE(1632), - [sym_preproc_line] = STATE(1632), - [sym_preproc_pragma] = STATE(1632), - [sym_preproc_nullable] = STATE(1632), - [sym_preproc_error] = STATE(1632), - [sym_preproc_warning] = STATE(1632), - [sym_preproc_define] = STATE(1632), - [sym_preproc_undef] = STATE(1632), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1632] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4507), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1632), + [sym_preproc_endregion] = STATE(1632), + [sym_preproc_line] = STATE(1632), + [sym_preproc_pragma] = STATE(1632), + [sym_preproc_nullable] = STATE(1632), + [sym_preproc_error] = STATE(1632), + [sym_preproc_warning] = STATE(1632), + [sym_preproc_define] = STATE(1632), + [sym_preproc_undef] = STATE(1632), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318099,90 +318134,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1633] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3579), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6219), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7471), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4511), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1633), [sym_preproc_endregion] = STATE(1633), [sym_preproc_line] = STATE(1633), @@ -318192,35 +318227,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1633), [sym_preproc_define] = STATE(1633), [sym_preproc_undef] = STATE(1633), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1634] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4391), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1634), + [sym_preproc_endregion] = STATE(1634), + [sym_preproc_line] = STATE(1634), + [sym_preproc_pragma] = STATE(1634), + [sym_preproc_nullable] = STATE(1634), + [sym_preproc_error] = STATE(1634), + [sym_preproc_warning] = STATE(1634), + [sym_preproc_define] = STATE(1634), + [sym_preproc_undef] = STATE(1634), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1635] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4978), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1635), + [sym_preproc_endregion] = STATE(1635), + [sym_preproc_line] = STATE(1635), + [sym_preproc_pragma] = STATE(1635), + [sym_preproc_nullable] = STATE(1635), + [sym_preproc_error] = STATE(1635), + [sym_preproc_warning] = STATE(1635), + [sym_preproc_define] = STATE(1635), + [sym_preproc_undef] = STATE(1635), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_ref] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -318229,10 +318602,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318257,7 +318630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318273,135 +318646,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1634] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5711), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2471), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1634), - [sym_preproc_endregion] = STATE(1634), - [sym_preproc_line] = STATE(1634), - [sym_preproc_pragma] = STATE(1634), - [sym_preproc_nullable] = STATE(1634), - [sym_preproc_error] = STATE(1634), - [sym_preproc_warning] = STATE(1634), - [sym_preproc_define] = STATE(1634), - [sym_preproc_undef] = STATE(1634), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1636] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4363), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1636), + [sym_preproc_endregion] = STATE(1636), + [sym_preproc_line] = STATE(1636), + [sym_preproc_pragma] = STATE(1636), + [sym_preproc_nullable] = STATE(1636), + [sym_preproc_error] = STATE(1636), + [sym_preproc_warning] = STATE(1636), + [sym_preproc_define] = STATE(1636), + [sym_preproc_undef] = STATE(1636), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1637] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4980), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1637), + [sym_preproc_endregion] = STATE(1637), + [sym_preproc_line] = STATE(1637), + [sym_preproc_pragma] = STATE(1637), + [sym_preproc_nullable] = STATE(1637), + [sym_preproc_error] = STATE(1637), + [sym_preproc_warning] = STATE(1637), + [sym_preproc_define] = STATE(1637), + [sym_preproc_undef] = STATE(1637), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318414,19 +318956,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318442,135 +318984,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1635] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5943), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3608), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6218), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7422), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1635), - [sym_preproc_endregion] = STATE(1635), - [sym_preproc_line] = STATE(1635), - [sym_preproc_pragma] = STATE(1635), - [sym_preproc_nullable] = STATE(1635), - [sym_preproc_error] = STATE(1635), - [sym_preproc_warning] = STATE(1635), - [sym_preproc_define] = STATE(1635), - [sym_preproc_undef] = STATE(1635), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1638] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3647), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1638), + [sym_preproc_endregion] = STATE(1638), + [sym_preproc_line] = STATE(1638), + [sym_preproc_pragma] = STATE(1638), + [sym_preproc_nullable] = STATE(1638), + [sym_preproc_error] = STATE(1638), + [sym_preproc_warning] = STATE(1638), + [sym_preproc_define] = STATE(1638), + [sym_preproc_undef] = STATE(1638), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318583,19 +319125,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318606,140 +319148,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1636] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5920), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2400), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1636), - [sym_preproc_endregion] = STATE(1636), - [sym_preproc_line] = STATE(1636), - [sym_preproc_pragma] = STATE(1636), - [sym_preproc_nullable] = STATE(1636), - [sym_preproc_error] = STATE(1636), - [sym_preproc_warning] = STATE(1636), - [sym_preproc_define] = STATE(1636), - [sym_preproc_undef] = STATE(1636), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1639] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3597), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1639), + [sym_preproc_endregion] = STATE(1639), + [sym_preproc_line] = STATE(1639), + [sym_preproc_pragma] = STATE(1639), + [sym_preproc_nullable] = STATE(1639), + [sym_preproc_error] = STATE(1639), + [sym_preproc_warning] = STATE(1639), + [sym_preproc_define] = STATE(1639), + [sym_preproc_undef] = STATE(1639), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318752,19 +319294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318775,128 +319317,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1637] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6225), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7480), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1637), - [sym_preproc_endregion] = STATE(1637), - [sym_preproc_line] = STATE(1637), - [sym_preproc_pragma] = STATE(1637), - [sym_preproc_nullable] = STATE(1637), - [sym_preproc_error] = STATE(1637), - [sym_preproc_warning] = STATE(1637), - [sym_preproc_define] = STATE(1637), - [sym_preproc_undef] = STATE(1637), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1640] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3799), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1640), + [sym_preproc_endregion] = STATE(1640), + [sym_preproc_line] = STATE(1640), + [sym_preproc_pragma] = STATE(1640), + [sym_preproc_nullable] = STATE(1640), + [sym_preproc_error] = STATE(1640), + [sym_preproc_warning] = STATE(1640), + [sym_preproc_define] = STATE(1640), + [sym_preproc_undef] = STATE(1640), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_ref] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -318905,10 +319447,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1857), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318949,135 +319491,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1638] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5938), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2406), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1638), - [sym_preproc_endregion] = STATE(1638), - [sym_preproc_line] = STATE(1638), - [sym_preproc_pragma] = STATE(1638), - [sym_preproc_nullable] = STATE(1638), - [sym_preproc_error] = STATE(1638), - [sym_preproc_warning] = STATE(1638), - [sym_preproc_define] = STATE(1638), - [sym_preproc_undef] = STATE(1638), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1641] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3648), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1641), + [sym_preproc_endregion] = STATE(1641), + [sym_preproc_line] = STATE(1641), + [sym_preproc_pragma] = STATE(1641), + [sym_preproc_nullable] = STATE(1641), + [sym_preproc_error] = STATE(1641), + [sym_preproc_warning] = STATE(1641), + [sym_preproc_define] = STATE(1641), + [sym_preproc_undef] = STATE(1641), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319090,19 +319632,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319113,128 +319655,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1639] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5918), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3356), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6236), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7440), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1639), - [sym_preproc_endregion] = STATE(1639), - [sym_preproc_line] = STATE(1639), - [sym_preproc_pragma] = STATE(1639), - [sym_preproc_nullable] = STATE(1639), - [sym_preproc_error] = STATE(1639), - [sym_preproc_warning] = STATE(1639), - [sym_preproc_define] = STATE(1639), - [sym_preproc_undef] = STATE(1639), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1642] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1642), + [sym_preproc_endregion] = STATE(1642), + [sym_preproc_line] = STATE(1642), + [sym_preproc_pragma] = STATE(1642), + [sym_preproc_nullable] = STATE(1642), + [sym_preproc_error] = STATE(1642), + [sym_preproc_warning] = STATE(1642), + [sym_preproc_define] = STATE(1642), + [sym_preproc_undef] = STATE(1642), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_ref] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -319243,10 +319785,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319287,135 +319829,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1640] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5946), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1640), - [sym_preproc_endregion] = STATE(1640), - [sym_preproc_line] = STATE(1640), - [sym_preproc_pragma] = STATE(1640), - [sym_preproc_nullable] = STATE(1640), - [sym_preproc_error] = STATE(1640), - [sym_preproc_warning] = STATE(1640), - [sym_preproc_define] = STATE(1640), - [sym_preproc_undef] = STATE(1640), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1643] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3650), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1643), + [sym_preproc_endregion] = STATE(1643), + [sym_preproc_line] = STATE(1643), + [sym_preproc_pragma] = STATE(1643), + [sym_preproc_nullable] = STATE(1643), + [sym_preproc_error] = STATE(1643), + [sym_preproc_warning] = STATE(1643), + [sym_preproc_define] = STATE(1643), + [sym_preproc_undef] = STATE(1643), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319428,19 +319970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319451,140 +319993,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1641] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6208), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1641), - [sym_preproc_endregion] = STATE(1641), - [sym_preproc_line] = STATE(1641), - [sym_preproc_pragma] = STATE(1641), - [sym_preproc_nullable] = STATE(1641), - [sym_preproc_error] = STATE(1641), - [sym_preproc_warning] = STATE(1641), - [sym_preproc_define] = STATE(1641), - [sym_preproc_undef] = STATE(1641), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1644] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3593), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1644), + [sym_preproc_endregion] = STATE(1644), + [sym_preproc_line] = STATE(1644), + [sym_preproc_pragma] = STATE(1644), + [sym_preproc_nullable] = STATE(1644), + [sym_preproc_error] = STATE(1644), + [sym_preproc_warning] = STATE(1644), + [sym_preproc_define] = STATE(1644), + [sym_preproc_undef] = STATE(1644), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_ref] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319597,19 +320139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319620,597 +320162,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1642] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5719), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2689), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1642), - [sym_preproc_endregion] = STATE(1642), - [sym_preproc_line] = STATE(1642), - [sym_preproc_pragma] = STATE(1642), - [sym_preproc_nullable] = STATE(1642), - [sym_preproc_error] = STATE(1642), - [sym_preproc_warning] = STATE(1642), - [sym_preproc_define] = STATE(1642), - [sym_preproc_undef] = STATE(1642), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1643] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6226), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7449), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1643), - [sym_preproc_endregion] = STATE(1643), - [sym_preproc_line] = STATE(1643), - [sym_preproc_pragma] = STATE(1643), - [sym_preproc_nullable] = STATE(1643), - [sym_preproc_error] = STATE(1643), - [sym_preproc_warning] = STATE(1643), - [sym_preproc_define] = STATE(1643), - [sym_preproc_undef] = STATE(1643), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_ref] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2047), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1644] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1644), - [sym_preproc_endregion] = STATE(1644), - [sym_preproc_line] = STATE(1644), - [sym_preproc_pragma] = STATE(1644), - [sym_preproc_nullable] = STATE(1644), - [sym_preproc_error] = STATE(1644), - [sym_preproc_warning] = STATE(1644), - [sym_preproc_define] = STATE(1644), - [sym_preproc_undef] = STATE(1644), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1645] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5957), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2399), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3513), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6238), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7494), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3594), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1645), [sym_preproc_endregion] = STATE(1645), [sym_preproc_line] = STATE(1645), @@ -320220,47 +320255,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1645), [sym_preproc_define] = STATE(1645), [sym_preproc_undef] = STATE(1645), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_ref] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320273,19 +320308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320296,90 +320331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1646] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3595), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1646), [sym_preproc_endregion] = STATE(1646), [sym_preproc_line] = STATE(1646), @@ -320389,47 +320424,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1646), [sym_preproc_define] = STATE(1646), [sym_preproc_undef] = STATE(1646), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320442,19 +320477,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320465,90 +320500,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1647] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5937), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2401), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3519), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6204), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7506), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3653), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1647), [sym_preproc_endregion] = STATE(1647), [sym_preproc_line] = STATE(1647), @@ -320558,47 +320593,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1647), [sym_preproc_define] = STATE(1647), [sym_preproc_undef] = STATE(1647), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_ref] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320611,19 +320646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320634,90 +320669,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1648] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5748), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2656), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3654), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1648), [sym_preproc_endregion] = STATE(1648), [sym_preproc_line] = STATE(1648), @@ -320727,47 +320762,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1648), [sym_preproc_define] = STATE(1648), [sym_preproc_undef] = STATE(1648), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320780,19 +320815,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320803,90 +320838,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1649] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6233), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7519), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3657), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1649), [sym_preproc_endregion] = STATE(1649), [sym_preproc_line] = STATE(1649), @@ -320896,47 +320931,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1649), [sym_preproc_define] = STATE(1649), [sym_preproc_undef] = STATE(1649), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_ref] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320949,19 +320984,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320972,90 +321007,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1650] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3578), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3596), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1650), [sym_preproc_endregion] = STATE(1650), [sym_preproc_line] = STATE(1650), @@ -321065,47 +321100,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1650), [sym_preproc_define] = STATE(1650), [sym_preproc_undef] = STATE(1650), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321118,19 +321153,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321141,90 +321176,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1651] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5749), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(2484), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3661), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1651), [sym_preproc_endregion] = STATE(1651), [sym_preproc_line] = STATE(1651), @@ -321234,47 +321269,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1651), [sym_preproc_define] = STATE(1651), [sym_preproc_undef] = STATE(1651), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321287,19 +321322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321310,90 +321345,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1652] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5386), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3662), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1652), [sym_preproc_endregion] = STATE(1652), [sym_preproc_line] = STATE(1652), @@ -321403,47 +321438,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1652), [sym_preproc_define] = STATE(1652), [sym_preproc_undef] = STATE(1652), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321456,19 +321491,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321479,90 +321514,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1653] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5424), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3664), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1653), [sym_preproc_endregion] = STATE(1653), [sym_preproc_line] = STATE(1653), @@ -321572,47 +321607,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1653), [sym_preproc_define] = STATE(1653), [sym_preproc_undef] = STATE(1653), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321625,19 +321660,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321648,90 +321683,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1654] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5426), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3668), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1654), [sym_preproc_endregion] = STATE(1654), [sym_preproc_line] = STATE(1654), @@ -321741,47 +321776,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1654), [sym_preproc_define] = STATE(1654), [sym_preproc_undef] = STATE(1654), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321794,19 +321829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321817,90 +321852,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1655] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5427), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1655), [sym_preproc_endregion] = STATE(1655), [sym_preproc_line] = STATE(1655), @@ -321910,47 +321945,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1655), [sym_preproc_define] = STATE(1655), [sym_preproc_undef] = STATE(1655), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321963,19 +321998,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321986,90 +322021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1656] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5371), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4384), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1656), [sym_preproc_endregion] = STATE(1656), [sym_preproc_line] = STATE(1656), @@ -322079,72 +322114,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1656), [sym_preproc_define] = STATE(1656), [sym_preproc_undef] = STATE(1656), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322155,90 +322190,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1657] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5430), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4362), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1657), [sym_preproc_endregion] = STATE(1657), [sym_preproc_line] = STATE(1657), @@ -322248,17 +322283,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1657), [sym_preproc_define] = STATE(1657), [sym_preproc_undef] = STATE(1657), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1658] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5614), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1658), + [sym_preproc_endregion] = STATE(1658), + [sym_preproc_line] = STATE(1658), + [sym_preproc_pragma] = STATE(1658), + [sym_preproc_nullable] = STATE(1658), + [sym_preproc_error] = STATE(1658), + [sym_preproc_warning] = STATE(1658), + [sym_preproc_define] = STATE(1658), + [sym_preproc_undef] = STATE(1658), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -322266,17 +322470,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -322288,176 +322492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1658] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5440), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1658), - [sym_preproc_endregion] = STATE(1658), - [sym_preproc_line] = STATE(1658), - [sym_preproc_pragma] = STATE(1658), - [sym_preproc_nullable] = STATE(1658), - [sym_preproc_error] = STATE(1658), - [sym_preproc_warning] = STATE(1658), - [sym_preproc_define] = STATE(1658), - [sym_preproc_undef] = STATE(1658), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322499,84 +322534,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1659] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5441), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3804), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1659), [sym_preproc_endregion] = STATE(1659), [sym_preproc_line] = STATE(1659), @@ -322586,47 +322621,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1659), [sym_preproc_define] = STATE(1659), [sym_preproc_undef] = STATE(1659), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322639,19 +322674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322662,90 +322697,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1660] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5468), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4299), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1660), [sym_preproc_endregion] = STATE(1660), [sym_preproc_line] = STATE(1660), @@ -322755,72 +322790,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1660), [sym_preproc_define] = STATE(1660), [sym_preproc_undef] = STATE(1660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322831,90 +322866,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1661] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5039), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3806), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1661), [sym_preproc_endregion] = STATE(1661), [sym_preproc_line] = STATE(1661), @@ -322924,47 +322959,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1661), [sym_preproc_define] = STATE(1661), [sym_preproc_undef] = STATE(1661), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322977,19 +323012,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323000,90 +323035,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1662] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5469), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4309), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1662), [sym_preproc_endregion] = STATE(1662), [sym_preproc_line] = STATE(1662), @@ -323093,72 +323128,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1662), [sym_preproc_define] = STATE(1662), [sym_preproc_undef] = STATE(1662), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323169,90 +323204,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1663] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4119), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4340), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1663), [sym_preproc_endregion] = STATE(1663), [sym_preproc_line] = STATE(1663), @@ -323262,72 +323297,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1663), [sym_preproc_define] = STATE(1663), [sym_preproc_undef] = STATE(1663), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323338,90 +323373,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1664] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4125), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4341), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1664), [sym_preproc_endregion] = STATE(1664), [sym_preproc_line] = STATE(1664), @@ -323431,72 +323466,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1664), [sym_preproc_define] = STATE(1664), [sym_preproc_undef] = STATE(1664), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323507,90 +323542,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1665] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4956), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4344), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1665), [sym_preproc_endregion] = STATE(1665), [sym_preproc_line] = STATE(1665), @@ -323600,72 +323635,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1665), [sym_preproc_define] = STATE(1665), [sym_preproc_undef] = STATE(1665), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323676,90 +323711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1666] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4957), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4321), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1666), [sym_preproc_endregion] = STATE(1666), [sym_preproc_line] = STATE(1666), @@ -323769,241 +323804,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1666), [sym_preproc_define] = STATE(1666), [sym_preproc_undef] = STATE(1666), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1667] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5081), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1667), - [sym_preproc_endregion] = STATE(1667), - [sym_preproc_line] = STATE(1667), - [sym_preproc_pragma] = STATE(1667), - [sym_preproc_nullable] = STATE(1667), - [sym_preproc_error] = STATE(1667), - [sym_preproc_warning] = STATE(1667), - [sym_preproc_define] = STATE(1667), - [sym_preproc_undef] = STATE(1667), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324014,90 +323880,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1667] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4327), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1667), + [sym_preproc_endregion] = STATE(1667), + [sym_preproc_line] = STATE(1667), + [sym_preproc_pragma] = STATE(1667), + [sym_preproc_nullable] = STATE(1667), + [sym_preproc_error] = STATE(1667), + [sym_preproc_warning] = STATE(1667), + [sym_preproc_define] = STATE(1667), + [sym_preproc_undef] = STATE(1667), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1668] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4958), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4330), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1668), [sym_preproc_endregion] = STATE(1668), [sym_preproc_line] = STATE(1668), @@ -324107,72 +324142,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1668), [sym_preproc_define] = STATE(1668), [sym_preproc_undef] = STATE(1668), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324183,90 +324218,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1669] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4959), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4346), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1669), [sym_preproc_endregion] = STATE(1669), [sym_preproc_line] = STATE(1669), @@ -324276,72 +324311,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1669), [sym_preproc_define] = STATE(1669), [sym_preproc_undef] = STATE(1669), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324352,90 +324387,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1670] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4960), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4298), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1670), [sym_preproc_endregion] = STATE(1670), [sym_preproc_line] = STATE(1670), @@ -324445,72 +324480,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1670), [sym_preproc_define] = STATE(1670), [sym_preproc_undef] = STATE(1670), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324521,90 +324556,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1671] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4961), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4375), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1671), [sym_preproc_endregion] = STATE(1671), [sym_preproc_line] = STATE(1671), @@ -324614,72 +324649,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1671), [sym_preproc_define] = STATE(1671), [sym_preproc_undef] = STATE(1671), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324690,90 +324725,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1672] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4962), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4376), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1672), [sym_preproc_endregion] = STATE(1672), [sym_preproc_line] = STATE(1672), @@ -324783,72 +324818,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1672), [sym_preproc_define] = STATE(1672), [sym_preproc_undef] = STATE(1672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324859,90 +324894,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1673] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4963), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4379), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1673), [sym_preproc_endregion] = STATE(1673), [sym_preproc_line] = STATE(1673), @@ -324952,72 +324987,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1673), [sym_preproc_define] = STATE(1673), [sym_preproc_undef] = STATE(1673), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325028,90 +325063,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1674] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4964), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4363), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1674), [sym_preproc_endregion] = STATE(1674), [sym_preproc_line] = STATE(1674), @@ -325121,72 +325156,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1674), [sym_preproc_define] = STATE(1674), [sym_preproc_undef] = STATE(1674), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325197,90 +325232,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, [1675] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4965), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3807), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1675), [sym_preproc_endregion] = STATE(1675), [sym_preproc_line] = STATE(1675), @@ -325290,47 +325325,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1675), [sym_preproc_define] = STATE(1675), [sym_preproc_undef] = STATE(1675), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325343,19 +325378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325366,90 +325401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1676] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4110), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5464), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1676), [sym_preproc_endregion] = STATE(1676), [sym_preproc_line] = STATE(1676), @@ -325459,47 +325494,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1676), [sym_preproc_define] = STATE(1676), [sym_preproc_undef] = STATE(1676), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325513,18 +325548,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325535,90 +325570,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1677] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1677), [sym_preproc_endregion] = STATE(1677), [sym_preproc_line] = STATE(1677), @@ -325628,47 +325663,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1677), [sym_preproc_define] = STATE(1677), [sym_preproc_undef] = STATE(1677), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325681,19 +325716,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325710,84 +325745,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1678] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4118), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3808), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1678), [sym_preproc_endregion] = STATE(1678), [sym_preproc_line] = STATE(1678), @@ -325797,47 +325832,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1678), [sym_preproc_define] = STATE(1678), [sym_preproc_undef] = STATE(1678), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325850,19 +325885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325873,90 +325908,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1679] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3704), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5466), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1679), [sym_preproc_endregion] = STATE(1679), [sym_preproc_line] = STATE(1679), @@ -325966,47 +326001,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1679), [sym_preproc_define] = STATE(1679), [sym_preproc_undef] = STATE(1679), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326019,19 +326054,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326042,90 +326077,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1680] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3248), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3572), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6233), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7777), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1680), [sym_preproc_endregion] = STATE(1680), [sym_preproc_line] = STATE(1680), @@ -326135,47 +326170,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1680), [sym_preproc_define] = STATE(1680), [sym_preproc_undef] = STATE(1680), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1761), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326188,19 +326223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326211,90 +326246,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1681] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4158), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3809), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1681), [sym_preproc_endregion] = STATE(1681), [sym_preproc_line] = STATE(1681), @@ -326304,47 +326339,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1681), [sym_preproc_define] = STATE(1681), [sym_preproc_undef] = STATE(1681), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326357,19 +326392,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326380,90 +326415,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1682] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3655), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1682), [sym_preproc_endregion] = STATE(1682), [sym_preproc_line] = STATE(1682), @@ -326473,47 +326508,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1682), [sym_preproc_define] = STATE(1682), [sym_preproc_undef] = STATE(1682), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326526,19 +326561,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326549,90 +326584,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1683] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4111), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3810), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1683), [sym_preproc_endregion] = STATE(1683), [sym_preproc_line] = STATE(1683), @@ -326642,47 +326677,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1683), [sym_preproc_define] = STATE(1683), [sym_preproc_undef] = STATE(1683), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326695,19 +326730,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326718,90 +326753,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1684] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4136), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3811), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1684), [sym_preproc_endregion] = STATE(1684), [sym_preproc_line] = STATE(1684), @@ -326811,47 +326846,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1684), [sym_preproc_define] = STATE(1684), [sym_preproc_undef] = STATE(1684), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326864,19 +326899,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326887,90 +326922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1685] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4124), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3812), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1685), [sym_preproc_endregion] = STATE(1685), [sym_preproc_line] = STATE(1685), @@ -326980,47 +327015,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1685), [sym_preproc_define] = STATE(1685), [sym_preproc_undef] = STATE(1685), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327033,19 +327068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327056,90 +327091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1686] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4129), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3659), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1686), [sym_preproc_endregion] = STATE(1686), [sym_preproc_line] = STATE(1686), @@ -327149,47 +327184,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1686), [sym_preproc_define] = STATE(1686), [sym_preproc_undef] = STATE(1686), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327202,19 +327237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327225,90 +327260,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1687] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4113), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4116), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3161), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6202), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7391), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1687), [sym_preproc_endregion] = STATE(1687), [sym_preproc_line] = STATE(1687), @@ -327318,8 +327353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1687), [sym_preproc_define] = STATE(1687), [sym_preproc_undef] = STATE(1687), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -327327,8 +327362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(1809), [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1813), @@ -327400,84 +327435,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1309), }, [1688] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4139), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3814), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1688), [sym_preproc_endregion] = STATE(1688), [sym_preproc_line] = STATE(1688), @@ -327487,47 +327522,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1688), [sym_preproc_define] = STATE(1688), [sym_preproc_undef] = STATE(1688), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327540,22 +327575,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), @@ -327563,90 +327598,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1689] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4157), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5920), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3630), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7630), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1689), [sym_preproc_endregion] = STATE(1689), [sym_preproc_line] = STATE(1689), @@ -327656,47 +327691,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1689), [sym_preproc_define] = STATE(1689), [sym_preproc_undef] = STATE(1689), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_ref] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1701), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327709,19 +327744,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327732,90 +327767,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1690] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4162), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3815), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1690), [sym_preproc_endregion] = STATE(1690), [sym_preproc_line] = STATE(1690), @@ -327825,47 +327860,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1690), [sym_preproc_define] = STATE(1690), [sym_preproc_undef] = STATE(1690), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327878,19 +327913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327901,90 +327936,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1691] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4121), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3816), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1691), [sym_preproc_endregion] = STATE(1691), [sym_preproc_line] = STATE(1691), @@ -327994,47 +328029,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1691), [sym_preproc_define] = STATE(1691), [sym_preproc_undef] = STATE(1691), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328047,19 +328082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328070,90 +328105,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1692] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3717), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3822), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1692), [sym_preproc_endregion] = STATE(1692), [sym_preproc_line] = STATE(1692), @@ -328163,47 +328198,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1692), [sym_preproc_define] = STATE(1692), [sym_preproc_undef] = STATE(1692), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328216,19 +328251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328239,90 +328274,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1693] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5507), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1693), [sym_preproc_endregion] = STATE(1693), [sym_preproc_line] = STATE(1693), @@ -328332,47 +328367,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1693), [sym_preproc_define] = STATE(1693), [sym_preproc_undef] = STATE(1693), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328386,17 +328421,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -328408,90 +328443,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1694] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3701), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3630), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1694), [sym_preproc_endregion] = STATE(1694), [sym_preproc_line] = STATE(1694), @@ -328501,47 +328536,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1694), [sym_preproc_define] = STATE(1694), [sym_preproc_undef] = STATE(1694), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1779), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1715), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328554,19 +328589,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328577,90 +328612,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, [1695] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3707), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1695), [sym_preproc_endregion] = STATE(1695), [sym_preproc_line] = STATE(1695), @@ -328670,47 +328705,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1695), [sym_preproc_define] = STATE(1695), [sym_preproc_undef] = STATE(1695), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328723,19 +328758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328746,90 +328781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1696] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3713), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1696), [sym_preproc_endregion] = STATE(1696), [sym_preproc_line] = STATE(1696), @@ -328839,47 +328874,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1696), [sym_preproc_define] = STATE(1696), [sym_preproc_undef] = STATE(1696), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328892,19 +328927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328915,90 +328950,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1697] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3722), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4252), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1697), [sym_preproc_endregion] = STATE(1697), [sym_preproc_line] = STATE(1697), @@ -329008,47 +329043,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1697), [sym_preproc_define] = STATE(1697), [sym_preproc_undef] = STATE(1697), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329061,19 +329096,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329084,90 +329119,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, [1698] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3725), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5615), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1698), [sym_preproc_endregion] = STATE(1698), [sym_preproc_line] = STATE(1698), @@ -329177,47 +329212,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1698), [sym_preproc_define] = STATE(1698), [sym_preproc_undef] = STATE(1698), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329230,19 +329265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329253,90 +329288,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1699] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3708), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5616), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1699), [sym_preproc_endregion] = STATE(1699), [sym_preproc_line] = STATE(1699), @@ -329346,47 +329381,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1699), [sym_preproc_define] = STATE(1699), [sym_preproc_undef] = STATE(1699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329399,19 +329434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329422,90 +329457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1700] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3699), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5617), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1700), [sym_preproc_endregion] = STATE(1700), [sym_preproc_line] = STATE(1700), @@ -329515,47 +329550,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1700), [sym_preproc_define] = STATE(1700), [sym_preproc_undef] = STATE(1700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329568,19 +329603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329591,90 +329626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1701] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3731), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5618), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1701), [sym_preproc_endregion] = STATE(1701), [sym_preproc_line] = STATE(1701), @@ -329684,47 +329719,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1701), [sym_preproc_define] = STATE(1701), [sym_preproc_undef] = STATE(1701), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329737,19 +329772,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329760,90 +329795,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1702] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3733), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5620), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1702), [sym_preproc_endregion] = STATE(1702), [sym_preproc_line] = STATE(1702), @@ -329853,47 +329888,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1702), [sym_preproc_define] = STATE(1702), [sym_preproc_undef] = STATE(1702), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329906,19 +329941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329929,90 +329964,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1703] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3690), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5621), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1703), [sym_preproc_endregion] = STATE(1703), [sym_preproc_line] = STATE(1703), @@ -330022,47 +330057,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1703), [sym_preproc_define] = STATE(1703), [sym_preproc_undef] = STATE(1703), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330075,19 +330110,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330098,90 +330133,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1704] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5622), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1704), [sym_preproc_endregion] = STATE(1704), [sym_preproc_line] = STATE(1704), @@ -330191,47 +330226,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1704), [sym_preproc_define] = STATE(1704), [sym_preproc_undef] = STATE(1704), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330244,19 +330279,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330267,90 +330302,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1705] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3694), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3826), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3103), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6207), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1705), [sym_preproc_endregion] = STATE(1705), [sym_preproc_line] = STATE(1705), @@ -330360,47 +330395,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1705), [sym_preproc_define] = STATE(1705), [sym_preproc_undef] = STATE(1705), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_ref] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1197), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330413,19 +330448,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330436,90 +330471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, [1706] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5509), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1706), [sym_preproc_endregion] = STATE(1706), [sym_preproc_line] = STATE(1706), @@ -330529,47 +330564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1706), [sym_preproc_define] = STATE(1706), [sym_preproc_undef] = STATE(1706), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330582,19 +330617,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330605,90 +330640,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1707] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4401), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1707), [sym_preproc_endregion] = STATE(1707), [sym_preproc_line] = STATE(1707), @@ -330698,72 +330733,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1707), [sym_preproc_define] = STATE(1707), [sym_preproc_undef] = STATE(1707), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330774,90 +330809,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1708] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5172), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1708), [sym_preproc_endregion] = STATE(1708), [sym_preproc_line] = STATE(1708), @@ -330867,72 +330902,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1708), [sym_preproc_define] = STATE(1708), [sym_preproc_undef] = STATE(1708), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330943,90 +330978,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1709] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5196), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1709), [sym_preproc_endregion] = STATE(1709), [sym_preproc_line] = STATE(1709), @@ -331036,35 +331071,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1709), [sym_preproc_define] = STATE(1709), [sym_preproc_undef] = STATE(1709), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -331073,10 +331108,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1573), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331118,84 +331153,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1710] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4392), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5201), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3578), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7546), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1710), [sym_preproc_endregion] = STATE(1710), [sym_preproc_line] = STATE(1710), @@ -331205,72 +331240,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1710), [sym_preproc_define] = STATE(1710), [sym_preproc_undef] = STATE(1710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(717), + [anon_sym_TILDE] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331281,90 +331316,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1711] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4423), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4950), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1711), [sym_preproc_endregion] = STATE(1711), [sym_preproc_line] = STATE(1711), @@ -331374,72 +331409,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1711), [sym_preproc_define] = STATE(1711), [sym_preproc_undef] = STATE(1711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331450,90 +331485,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1712] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4976), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1712), [sym_preproc_endregion] = STATE(1712), [sym_preproc_line] = STATE(1712), @@ -331543,47 +331578,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1712), [sym_preproc_define] = STATE(1712), [sym_preproc_undef] = STATE(1712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331596,19 +331631,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331625,84 +331660,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1713] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5633), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1713), [sym_preproc_endregion] = STATE(1713), [sym_preproc_line] = STATE(1713), @@ -331712,47 +331747,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1713), [sym_preproc_define] = STATE(1713), [sym_preproc_undef] = STATE(1713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331765,19 +331800,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331794,84 +331829,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1714] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4500), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1714), [sym_preproc_endregion] = STATE(1714), [sym_preproc_line] = STATE(1714), @@ -331881,72 +331916,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1714), [sym_preproc_define] = STATE(1714), [sym_preproc_undef] = STATE(1714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331957,90 +331992,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1715] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4505), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5377), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1715), [sym_preproc_endregion] = STATE(1715), [sym_preproc_line] = STATE(1715), @@ -332050,72 +332085,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1715), [sym_preproc_define] = STATE(1715), [sym_preproc_undef] = STATE(1715), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332126,90 +332161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1716] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4471), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5381), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1716), [sym_preproc_endregion] = STATE(1716), [sym_preproc_line] = STATE(1716), @@ -332219,72 +332254,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1716), [sym_preproc_define] = STATE(1716), [sym_preproc_undef] = STATE(1716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332295,90 +332330,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1717] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4414), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5384), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1717), [sym_preproc_endregion] = STATE(1717), [sym_preproc_line] = STATE(1717), @@ -332388,72 +332423,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1717), [sym_preproc_define] = STATE(1717), [sym_preproc_undef] = STATE(1717), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332464,90 +332499,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1718] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4416), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5385), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(1718), [sym_preproc_endregion] = STATE(1718), [sym_preproc_line] = STATE(1718), @@ -332557,1230 +332592,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1718), [sym_preproc_define] = STATE(1718), [sym_preproc_undef] = STATE(1718), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1719] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4424), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1719), - [sym_preproc_endregion] = STATE(1719), - [sym_preproc_line] = STATE(1719), - [sym_preproc_pragma] = STATE(1719), - [sym_preproc_nullable] = STATE(1719), - [sym_preproc_error] = STATE(1719), - [sym_preproc_warning] = STATE(1719), - [sym_preproc_define] = STATE(1719), - [sym_preproc_undef] = STATE(1719), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1720] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4535), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1720), - [sym_preproc_endregion] = STATE(1720), - [sym_preproc_line] = STATE(1720), - [sym_preproc_pragma] = STATE(1720), - [sym_preproc_nullable] = STATE(1720), - [sym_preproc_error] = STATE(1720), - [sym_preproc_warning] = STATE(1720), - [sym_preproc_define] = STATE(1720), - [sym_preproc_undef] = STATE(1720), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1721] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4441), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1721), - [sym_preproc_endregion] = STATE(1721), - [sym_preproc_line] = STATE(1721), - [sym_preproc_pragma] = STATE(1721), - [sym_preproc_nullable] = STATE(1721), - [sym_preproc_error] = STATE(1721), - [sym_preproc_warning] = STATE(1721), - [sym_preproc_define] = STATE(1721), - [sym_preproc_undef] = STATE(1721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1722] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4477), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1722), - [sym_preproc_endregion] = STATE(1722), - [sym_preproc_line] = STATE(1722), - [sym_preproc_pragma] = STATE(1722), - [sym_preproc_nullable] = STATE(1722), - [sym_preproc_error] = STATE(1722), - [sym_preproc_warning] = STATE(1722), - [sym_preproc_define] = STATE(1722), - [sym_preproc_undef] = STATE(1722), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1723] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4478), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1723), - [sym_preproc_endregion] = STATE(1723), - [sym_preproc_line] = STATE(1723), - [sym_preproc_pragma] = STATE(1723), - [sym_preproc_nullable] = STATE(1723), - [sym_preproc_error] = STATE(1723), - [sym_preproc_warning] = STATE(1723), - [sym_preproc_define] = STATE(1723), - [sym_preproc_undef] = STATE(1723), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1724] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4482), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1724), - [sym_preproc_endregion] = STATE(1724), - [sym_preproc_line] = STATE(1724), - [sym_preproc_pragma] = STATE(1724), - [sym_preproc_nullable] = STATE(1724), - [sym_preproc_error] = STATE(1724), - [sym_preproc_warning] = STATE(1724), - [sym_preproc_define] = STATE(1724), - [sym_preproc_undef] = STATE(1724), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1725] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4978), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1725), - [sym_preproc_endregion] = STATE(1725), - [sym_preproc_line] = STATE(1725), - [sym_preproc_pragma] = STATE(1725), - [sym_preproc_nullable] = STATE(1725), - [sym_preproc_error] = STATE(1725), - [sym_preproc_warning] = STATE(1725), - [sym_preproc_define] = STATE(1725), - [sym_preproc_undef] = STATE(1725), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333793,19 +332645,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333821,304 +332673,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1726] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1726), - [sym_preproc_endregion] = STATE(1726), - [sym_preproc_line] = STATE(1726), - [sym_preproc_pragma] = STATE(1726), - [sym_preproc_nullable] = STATE(1726), - [sym_preproc_error] = STATE(1726), - [sym_preproc_warning] = STATE(1726), - [sym_preproc_define] = STATE(1726), - [sym_preproc_undef] = STATE(1726), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1727] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4980), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1727), - [sym_preproc_endregion] = STATE(1727), - [sym_preproc_line] = STATE(1727), - [sym_preproc_pragma] = STATE(1727), - [sym_preproc_nullable] = STATE(1727), - [sym_preproc_error] = STATE(1727), - [sym_preproc_warning] = STATE(1727), - [sym_preproc_define] = STATE(1727), - [sym_preproc_undef] = STATE(1727), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1719] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5389), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1719), + [sym_preproc_endregion] = STATE(1719), + [sym_preproc_line] = STATE(1719), + [sym_preproc_pragma] = STATE(1719), + [sym_preproc_nullable] = STATE(1719), + [sym_preproc_error] = STATE(1719), + [sym_preproc_warning] = STATE(1719), + [sym_preproc_define] = STATE(1719), + [sym_preproc_undef] = STATE(1719), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334131,19 +332814,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334159,135 +332842,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1728] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1728), - [sym_preproc_endregion] = STATE(1728), - [sym_preproc_line] = STATE(1728), - [sym_preproc_pragma] = STATE(1728), - [sym_preproc_nullable] = STATE(1728), - [sym_preproc_error] = STATE(1728), - [sym_preproc_warning] = STATE(1728), - [sym_preproc_define] = STATE(1728), - [sym_preproc_undef] = STATE(1728), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1720] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5429), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1720), + [sym_preproc_endregion] = STATE(1720), + [sym_preproc_line] = STATE(1720), + [sym_preproc_pragma] = STATE(1720), + [sym_preproc_nullable] = STATE(1720), + [sym_preproc_error] = STATE(1720), + [sym_preproc_warning] = STATE(1720), + [sym_preproc_define] = STATE(1720), + [sym_preproc_undef] = STATE(1720), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334300,19 +332983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334323,140 +333006,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1729] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1729), - [sym_preproc_endregion] = STATE(1729), - [sym_preproc_line] = STATE(1729), - [sym_preproc_pragma] = STATE(1729), - [sym_preproc_nullable] = STATE(1729), - [sym_preproc_error] = STATE(1729), - [sym_preproc_warning] = STATE(1729), - [sym_preproc_define] = STATE(1729), - [sym_preproc_undef] = STATE(1729), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1721] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5430), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1721), + [sym_preproc_endregion] = STATE(1721), + [sym_preproc_line] = STATE(1721), + [sym_preproc_pragma] = STATE(1721), + [sym_preproc_nullable] = STATE(1721), + [sym_preproc_error] = STATE(1721), + [sym_preproc_warning] = STATE(1721), + [sym_preproc_define] = STATE(1721), + [sym_preproc_undef] = STATE(1721), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334469,19 +333152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334492,128 +333175,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1730] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1730), - [sym_preproc_endregion] = STATE(1730), - [sym_preproc_line] = STATE(1730), - [sym_preproc_pragma] = STATE(1730), - [sym_preproc_nullable] = STATE(1730), - [sym_preproc_error] = STATE(1730), - [sym_preproc_warning] = STATE(1730), - [sym_preproc_define] = STATE(1730), - [sym_preproc_undef] = STATE(1730), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1722] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5432), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1722), + [sym_preproc_endregion] = STATE(1722), + [sym_preproc_line] = STATE(1722), + [sym_preproc_pragma] = STATE(1722), + [sym_preproc_nullable] = STATE(1722), + [sym_preproc_error] = STATE(1722), + [sym_preproc_warning] = STATE(1722), + [sym_preproc_define] = STATE(1722), + [sym_preproc_undef] = STATE(1722), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -334622,10 +333305,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334666,135 +333349,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1731] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3609), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1731), - [sym_preproc_endregion] = STATE(1731), - [sym_preproc_line] = STATE(1731), - [sym_preproc_pragma] = STATE(1731), - [sym_preproc_nullable] = STATE(1731), - [sym_preproc_error] = STATE(1731), - [sym_preproc_warning] = STATE(1731), - [sym_preproc_define] = STATE(1731), - [sym_preproc_undef] = STATE(1731), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [1723] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5926), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2397), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5473), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3714), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6206), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7504), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1723), + [sym_preproc_endregion] = STATE(1723), + [sym_preproc_line] = STATE(1723), + [sym_preproc_pragma] = STATE(1723), + [sym_preproc_nullable] = STATE(1723), + [sym_preproc_error] = STATE(1723), + [sym_preproc_warning] = STATE(1723), + [sym_preproc_define] = STATE(1723), + [sym_preproc_undef] = STATE(1723), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334807,19 +333490,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334830,140 +333513,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1732] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3612), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1732), - [sym_preproc_endregion] = STATE(1732), - [sym_preproc_line] = STATE(1732), - [sym_preproc_pragma] = STATE(1732), - [sym_preproc_nullable] = STATE(1732), - [sym_preproc_error] = STATE(1732), - [sym_preproc_warning] = STATE(1732), - [sym_preproc_define] = STATE(1732), - [sym_preproc_undef] = STATE(1732), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1724] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5630), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1724), + [sym_preproc_endregion] = STATE(1724), + [sym_preproc_line] = STATE(1724), + [sym_preproc_pragma] = STATE(1724), + [sym_preproc_nullable] = STATE(1724), + [sym_preproc_error] = STATE(1724), + [sym_preproc_warning] = STATE(1724), + [sym_preproc_define] = STATE(1724), + [sym_preproc_undef] = STATE(1724), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334976,19 +333659,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334999,140 +333682,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1733] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1733), - [sym_preproc_endregion] = STATE(1733), - [sym_preproc_line] = STATE(1733), - [sym_preproc_pragma] = STATE(1733), - [sym_preproc_nullable] = STATE(1733), - [sym_preproc_error] = STATE(1733), - [sym_preproc_warning] = STATE(1733), - [sym_preproc_define] = STATE(1733), - [sym_preproc_undef] = STATE(1733), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1725] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5631), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1725), + [sym_preproc_endregion] = STATE(1725), + [sym_preproc_line] = STATE(1725), + [sym_preproc_pragma] = STATE(1725), + [sym_preproc_nullable] = STATE(1725), + [sym_preproc_error] = STATE(1725), + [sym_preproc_warning] = STATE(1725), + [sym_preproc_define] = STATE(1725), + [sym_preproc_undef] = STATE(1725), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335145,19 +333828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335168,140 +333851,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1734] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3598), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1734), - [sym_preproc_endregion] = STATE(1734), - [sym_preproc_line] = STATE(1734), - [sym_preproc_pragma] = STATE(1734), - [sym_preproc_nullable] = STATE(1734), - [sym_preproc_error] = STATE(1734), - [sym_preproc_warning] = STATE(1734), - [sym_preproc_define] = STATE(1734), - [sym_preproc_undef] = STATE(1734), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1726] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5632), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1726), + [sym_preproc_endregion] = STATE(1726), + [sym_preproc_line] = STATE(1726), + [sym_preproc_pragma] = STATE(1726), + [sym_preproc_nullable] = STATE(1726), + [sym_preproc_error] = STATE(1726), + [sym_preproc_warning] = STATE(1726), + [sym_preproc_define] = STATE(1726), + [sym_preproc_undef] = STATE(1726), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335314,19 +333997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335337,140 +334020,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1735] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3600), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1735), - [sym_preproc_endregion] = STATE(1735), - [sym_preproc_line] = STATE(1735), - [sym_preproc_pragma] = STATE(1735), - [sym_preproc_nullable] = STATE(1735), - [sym_preproc_error] = STATE(1735), - [sym_preproc_warning] = STATE(1735), - [sym_preproc_define] = STATE(1735), - [sym_preproc_undef] = STATE(1735), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1727] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5474), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1727), + [sym_preproc_endregion] = STATE(1727), + [sym_preproc_line] = STATE(1727), + [sym_preproc_pragma] = STATE(1727), + [sym_preproc_nullable] = STATE(1727), + [sym_preproc_error] = STATE(1727), + [sym_preproc_warning] = STATE(1727), + [sym_preproc_define] = STATE(1727), + [sym_preproc_undef] = STATE(1727), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335483,19 +334166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335506,140 +334189,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1736] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3615), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1736), - [sym_preproc_endregion] = STATE(1736), - [sym_preproc_line] = STATE(1736), - [sym_preproc_pragma] = STATE(1736), - [sym_preproc_nullable] = STATE(1736), - [sym_preproc_error] = STATE(1736), - [sym_preproc_warning] = STATE(1736), - [sym_preproc_define] = STATE(1736), - [sym_preproc_undef] = STATE(1736), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1728] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5923), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2392), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4234), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3178), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6211), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7479), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1728), + [sym_preproc_endregion] = STATE(1728), + [sym_preproc_line] = STATE(1728), + [sym_preproc_pragma] = STATE(1728), + [sym_preproc_nullable] = STATE(1728), + [sym_preproc_error] = STATE(1728), + [sym_preproc_warning] = STATE(1728), + [sym_preproc_define] = STATE(1728), + [sym_preproc_undef] = STATE(1728), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_ref] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1813), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2205), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2209), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335652,19 +334335,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335675,140 +334358,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1737] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1737), - [sym_preproc_endregion] = STATE(1737), - [sym_preproc_line] = STATE(1737), - [sym_preproc_pragma] = STATE(1737), - [sym_preproc_nullable] = STATE(1737), - [sym_preproc_error] = STATE(1737), - [sym_preproc_warning] = STATE(1737), - [sym_preproc_define] = STATE(1737), - [sym_preproc_undef] = STATE(1737), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1729] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1729), + [sym_preproc_endregion] = STATE(1729), + [sym_preproc_line] = STATE(1729), + [sym_preproc_pragma] = STATE(1729), + [sym_preproc_nullable] = STATE(1729), + [sym_preproc_error] = STATE(1729), + [sym_preproc_warning] = STATE(1729), + [sym_preproc_define] = STATE(1729), + [sym_preproc_undef] = STATE(1729), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335821,19 +334504,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335844,140 +334527,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1738] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3618), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1738), - [sym_preproc_endregion] = STATE(1738), - [sym_preproc_line] = STATE(1738), - [sym_preproc_pragma] = STATE(1738), - [sym_preproc_nullable] = STATE(1738), - [sym_preproc_error] = STATE(1738), - [sym_preproc_warning] = STATE(1738), - [sym_preproc_define] = STATE(1738), - [sym_preproc_undef] = STATE(1738), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1730] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1730), + [sym_preproc_endregion] = STATE(1730), + [sym_preproc_line] = STATE(1730), + [sym_preproc_pragma] = STATE(1730), + [sym_preproc_nullable] = STATE(1730), + [sym_preproc_error] = STATE(1730), + [sym_preproc_warning] = STATE(1730), + [sym_preproc_define] = STATE(1730), + [sym_preproc_undef] = STATE(1730), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -335990,19 +334673,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336013,140 +334696,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1739] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3601), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1739), - [sym_preproc_endregion] = STATE(1739), - [sym_preproc_line] = STATE(1739), - [sym_preproc_pragma] = STATE(1739), - [sym_preproc_nullable] = STATE(1739), - [sym_preproc_error] = STATE(1739), - [sym_preproc_warning] = STATE(1739), - [sym_preproc_define] = STATE(1739), - [sym_preproc_undef] = STATE(1739), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1731] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4121), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3158), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6231), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7410), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1731), + [sym_preproc_endregion] = STATE(1731), + [sym_preproc_line] = STATE(1731), + [sym_preproc_pragma] = STATE(1731), + [sym_preproc_nullable] = STATE(1731), + [sym_preproc_error] = STATE(1731), + [sym_preproc_warning] = STATE(1731), + [sym_preproc_define] = STATE(1731), + [sym_preproc_undef] = STATE(1731), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1275), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336159,19 +334842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336182,140 +334865,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1740] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3619), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1740), - [sym_preproc_endregion] = STATE(1740), - [sym_preproc_line] = STATE(1740), - [sym_preproc_pragma] = STATE(1740), - [sym_preproc_nullable] = STATE(1740), - [sym_preproc_error] = STATE(1740), - [sym_preproc_warning] = STATE(1740), - [sym_preproc_define] = STATE(1740), - [sym_preproc_undef] = STATE(1740), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1732] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5210), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3581), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6209), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1732), + [sym_preproc_endregion] = STATE(1732), + [sym_preproc_line] = STATE(1732), + [sym_preproc_pragma] = STATE(1732), + [sym_preproc_nullable] = STATE(1732), + [sym_preproc_error] = STATE(1732), + [sym_preproc_warning] = STATE(1732), + [sym_preproc_define] = STATE(1732), + [sym_preproc_undef] = STATE(1732), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1637), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1733] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5212), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1733), + [sym_preproc_endregion] = STATE(1733), + [sym_preproc_line] = STATE(1733), + [sym_preproc_pragma] = STATE(1733), + [sym_preproc_nullable] = STATE(1733), + [sym_preproc_error] = STATE(1733), + [sym_preproc_warning] = STATE(1733), + [sym_preproc_define] = STATE(1733), + [sym_preproc_undef] = STATE(1733), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336328,19 +335180,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336351,140 +335203,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1741] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3620), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1741), - [sym_preproc_endregion] = STATE(1741), - [sym_preproc_line] = STATE(1741), - [sym_preproc_pragma] = STATE(1741), - [sym_preproc_nullable] = STATE(1741), - [sym_preproc_error] = STATE(1741), - [sym_preproc_warning] = STATE(1741), - [sym_preproc_define] = STATE(1741), - [sym_preproc_undef] = STATE(1741), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1734] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4678), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1734), + [sym_preproc_endregion] = STATE(1734), + [sym_preproc_line] = STATE(1734), + [sym_preproc_pragma] = STATE(1734), + [sym_preproc_nullable] = STATE(1734), + [sym_preproc_error] = STATE(1734), + [sym_preproc_warning] = STATE(1734), + [sym_preproc_define] = STATE(1734), + [sym_preproc_undef] = STATE(1734), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336497,19 +335349,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336520,140 +335372,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1742] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3621), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1742), - [sym_preproc_endregion] = STATE(1742), - [sym_preproc_line] = STATE(1742), - [sym_preproc_pragma] = STATE(1742), - [sym_preproc_nullable] = STATE(1742), - [sym_preproc_error] = STATE(1742), - [sym_preproc_warning] = STATE(1742), - [sym_preproc_define] = STATE(1742), - [sym_preproc_undef] = STATE(1742), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1735] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3579), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1735), + [sym_preproc_endregion] = STATE(1735), + [sym_preproc_line] = STATE(1735), + [sym_preproc_pragma] = STATE(1735), + [sym_preproc_nullable] = STATE(1735), + [sym_preproc_error] = STATE(1735), + [sym_preproc_warning] = STATE(1735), + [sym_preproc_define] = STATE(1735), + [sym_preproc_undef] = STATE(1735), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336666,19 +335518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336689,140 +335541,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1743] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3622), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1743), - [sym_preproc_endregion] = STATE(1743), - [sym_preproc_line] = STATE(1743), - [sym_preproc_pragma] = STATE(1743), - [sym_preproc_nullable] = STATE(1743), - [sym_preproc_error] = STATE(1743), - [sym_preproc_warning] = STATE(1743), - [sym_preproc_define] = STATE(1743), - [sym_preproc_undef] = STATE(1743), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1736] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5215), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1736), + [sym_preproc_endregion] = STATE(1736), + [sym_preproc_line] = STATE(1736), + [sym_preproc_pragma] = STATE(1736), + [sym_preproc_nullable] = STATE(1736), + [sym_preproc_error] = STATE(1736), + [sym_preproc_warning] = STATE(1736), + [sym_preproc_define] = STATE(1736), + [sym_preproc_undef] = STATE(1736), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336835,19 +335687,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336858,140 +335710,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1744] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1744), - [sym_preproc_endregion] = STATE(1744), - [sym_preproc_line] = STATE(1744), - [sym_preproc_pragma] = STATE(1744), - [sym_preproc_nullable] = STATE(1744), - [sym_preproc_error] = STATE(1744), - [sym_preproc_warning] = STATE(1744), - [sym_preproc_define] = STATE(1744), - [sym_preproc_undef] = STATE(1744), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1737] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4995), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1737), + [sym_preproc_endregion] = STATE(1737), + [sym_preproc_line] = STATE(1737), + [sym_preproc_pragma] = STATE(1737), + [sym_preproc_nullable] = STATE(1737), + [sym_preproc_error] = STATE(1737), + [sym_preproc_warning] = STATE(1737), + [sym_preproc_define] = STATE(1737), + [sym_preproc_undef] = STATE(1737), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337004,188 +335856,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, - [1745] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4353), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1745), - [sym_preproc_endregion] = STATE(1745), - [sym_preproc_line] = STATE(1745), - [sym_preproc_pragma] = STATE(1745), - [sym_preproc_nullable] = STATE(1745), - [sym_preproc_error] = STATE(1745), - [sym_preproc_warning] = STATE(1745), - [sym_preproc_define] = STATE(1745), - [sym_preproc_undef] = STATE(1745), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337196,165 +335879,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1746] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1746), - [sym_preproc_endregion] = STATE(1746), - [sym_preproc_line] = STATE(1746), - [sym_preproc_pragma] = STATE(1746), - [sym_preproc_nullable] = STATE(1746), - [sym_preproc_error] = STATE(1746), - [sym_preproc_warning] = STATE(1746), - [sym_preproc_define] = STATE(1746), - [sym_preproc_undef] = STATE(1746), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1738] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4681), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1738), + [sym_preproc_endregion] = STATE(1738), + [sym_preproc_line] = STATE(1738), + [sym_preproc_pragma] = STATE(1738), + [sym_preproc_nullable] = STATE(1738), + [sym_preproc_error] = STATE(1738), + [sym_preproc_warning] = STATE(1738), + [sym_preproc_define] = STATE(1738), + [sym_preproc_undef] = STATE(1738), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337365,165 +336048,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1747] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4361), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1747), - [sym_preproc_endregion] = STATE(1747), - [sym_preproc_line] = STATE(1747), - [sym_preproc_pragma] = STATE(1747), - [sym_preproc_nullable] = STATE(1747), - [sym_preproc_error] = STATE(1747), - [sym_preproc_warning] = STATE(1747), - [sym_preproc_define] = STATE(1747), - [sym_preproc_undef] = STATE(1747), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1739] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4685), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1739), + [sym_preproc_endregion] = STATE(1739), + [sym_preproc_line] = STATE(1739), + [sym_preproc_pragma] = STATE(1739), + [sym_preproc_nullable] = STATE(1739), + [sym_preproc_error] = STATE(1739), + [sym_preproc_warning] = STATE(1739), + [sym_preproc_define] = STATE(1739), + [sym_preproc_undef] = STATE(1739), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337534,165 +336217,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1748] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4365), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1748), - [sym_preproc_endregion] = STATE(1748), - [sym_preproc_line] = STATE(1748), - [sym_preproc_pragma] = STATE(1748), - [sym_preproc_nullable] = STATE(1748), - [sym_preproc_error] = STATE(1748), - [sym_preproc_warning] = STATE(1748), - [sym_preproc_define] = STATE(1748), - [sym_preproc_undef] = STATE(1748), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1740] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4686), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1740), + [sym_preproc_endregion] = STATE(1740), + [sym_preproc_line] = STATE(1740), + [sym_preproc_pragma] = STATE(1740), + [sym_preproc_nullable] = STATE(1740), + [sym_preproc_error] = STATE(1740), + [sym_preproc_warning] = STATE(1740), + [sym_preproc_define] = STATE(1740), + [sym_preproc_undef] = STATE(1740), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337703,165 +336386,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1749] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4303), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1749), - [sym_preproc_endregion] = STATE(1749), - [sym_preproc_line] = STATE(1749), - [sym_preproc_pragma] = STATE(1749), - [sym_preproc_nullable] = STATE(1749), - [sym_preproc_error] = STATE(1749), - [sym_preproc_warning] = STATE(1749), - [sym_preproc_define] = STATE(1749), - [sym_preproc_undef] = STATE(1749), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1741] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4687), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1741), + [sym_preproc_endregion] = STATE(1741), + [sym_preproc_line] = STATE(1741), + [sym_preproc_pragma] = STATE(1741), + [sym_preproc_nullable] = STATE(1741), + [sym_preproc_error] = STATE(1741), + [sym_preproc_warning] = STATE(1741), + [sym_preproc_define] = STATE(1741), + [sym_preproc_undef] = STATE(1741), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337872,165 +336555,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1750] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4304), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1750), - [sym_preproc_endregion] = STATE(1750), - [sym_preproc_line] = STATE(1750), - [sym_preproc_pragma] = STATE(1750), - [sym_preproc_nullable] = STATE(1750), - [sym_preproc_error] = STATE(1750), - [sym_preproc_warning] = STATE(1750), - [sym_preproc_define] = STATE(1750), - [sym_preproc_undef] = STATE(1750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1742] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4688), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1742), + [sym_preproc_endregion] = STATE(1742), + [sym_preproc_line] = STATE(1742), + [sym_preproc_pragma] = STATE(1742), + [sym_preproc_nullable] = STATE(1742), + [sym_preproc_error] = STATE(1742), + [sym_preproc_warning] = STATE(1742), + [sym_preproc_define] = STATE(1742), + [sym_preproc_undef] = STATE(1742), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338041,165 +336724,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1751] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4305), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1751), - [sym_preproc_endregion] = STATE(1751), - [sym_preproc_line] = STATE(1751), - [sym_preproc_pragma] = STATE(1751), - [sym_preproc_nullable] = STATE(1751), - [sym_preproc_error] = STATE(1751), - [sym_preproc_warning] = STATE(1751), - [sym_preproc_define] = STATE(1751), - [sym_preproc_undef] = STATE(1751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1743] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4689), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1743), + [sym_preproc_endregion] = STATE(1743), + [sym_preproc_line] = STATE(1743), + [sym_preproc_pragma] = STATE(1743), + [sym_preproc_nullable] = STATE(1743), + [sym_preproc_error] = STATE(1743), + [sym_preproc_warning] = STATE(1743), + [sym_preproc_define] = STATE(1743), + [sym_preproc_undef] = STATE(1743), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338210,1631 +336893,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1752] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4371), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1752), - [sym_preproc_endregion] = STATE(1752), - [sym_preproc_line] = STATE(1752), - [sym_preproc_pragma] = STATE(1752), - [sym_preproc_nullable] = STATE(1752), - [sym_preproc_error] = STATE(1752), - [sym_preproc_warning] = STATE(1752), - [sym_preproc_define] = STATE(1752), - [sym_preproc_undef] = STATE(1752), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1744] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4690), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1744), + [sym_preproc_endregion] = STATE(1744), + [sym_preproc_line] = STATE(1744), + [sym_preproc_pragma] = STATE(1744), + [sym_preproc_nullable] = STATE(1744), + [sym_preproc_error] = STATE(1744), + [sym_preproc_warning] = STATE(1744), + [sym_preproc_define] = STATE(1744), + [sym_preproc_undef] = STATE(1744), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1753] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4372), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1753), - [sym_preproc_endregion] = STATE(1753), - [sym_preproc_line] = STATE(1753), - [sym_preproc_pragma] = STATE(1753), - [sym_preproc_nullable] = STATE(1753), - [sym_preproc_error] = STATE(1753), - [sym_preproc_warning] = STATE(1753), - [sym_preproc_define] = STATE(1753), - [sym_preproc_undef] = STATE(1753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1754] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4376), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1754), - [sym_preproc_endregion] = STATE(1754), - [sym_preproc_line] = STATE(1754), - [sym_preproc_pragma] = STATE(1754), - [sym_preproc_nullable] = STATE(1754), - [sym_preproc_error] = STATE(1754), - [sym_preproc_warning] = STATE(1754), - [sym_preproc_define] = STATE(1754), - [sym_preproc_undef] = STATE(1754), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1755] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4389), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1755), - [sym_preproc_endregion] = STATE(1755), - [sym_preproc_line] = STATE(1755), - [sym_preproc_pragma] = STATE(1755), - [sym_preproc_nullable] = STATE(1755), - [sym_preproc_error] = STATE(1755), - [sym_preproc_warning] = STATE(1755), - [sym_preproc_define] = STATE(1755), - [sym_preproc_undef] = STATE(1755), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1756] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4298), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1756), - [sym_preproc_endregion] = STATE(1756), - [sym_preproc_line] = STATE(1756), - [sym_preproc_pragma] = STATE(1756), - [sym_preproc_nullable] = STATE(1756), - [sym_preproc_error] = STATE(1756), - [sym_preproc_warning] = STATE(1756), - [sym_preproc_define] = STATE(1756), - [sym_preproc_undef] = STATE(1756), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1757] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4379), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1757), - [sym_preproc_endregion] = STATE(1757), - [sym_preproc_line] = STATE(1757), - [sym_preproc_pragma] = STATE(1757), - [sym_preproc_nullable] = STATE(1757), - [sym_preproc_error] = STATE(1757), - [sym_preproc_warning] = STATE(1757), - [sym_preproc_define] = STATE(1757), - [sym_preproc_undef] = STATE(1757), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1758] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4380), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1758), - [sym_preproc_endregion] = STATE(1758), - [sym_preproc_line] = STATE(1758), - [sym_preproc_pragma] = STATE(1758), - [sym_preproc_nullable] = STATE(1758), - [sym_preproc_error] = STATE(1758), - [sym_preproc_warning] = STATE(1758), - [sym_preproc_define] = STATE(1758), - [sym_preproc_undef] = STATE(1758), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1759] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4381), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1759), - [sym_preproc_endregion] = STATE(1759), - [sym_preproc_line] = STATE(1759), - [sym_preproc_pragma] = STATE(1759), - [sym_preproc_nullable] = STATE(1759), - [sym_preproc_error] = STATE(1759), - [sym_preproc_warning] = STATE(1759), - [sym_preproc_define] = STATE(1759), - [sym_preproc_undef] = STATE(1759), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1760] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1760), - [sym_preproc_endregion] = STATE(1760), - [sym_preproc_line] = STATE(1760), - [sym_preproc_pragma] = STATE(1760), - [sym_preproc_nullable] = STATE(1760), - [sym_preproc_error] = STATE(1760), - [sym_preproc_warning] = STATE(1760), - [sym_preproc_define] = STATE(1760), - [sym_preproc_undef] = STATE(1760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1761] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5474), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1761), - [sym_preproc_endregion] = STATE(1761), - [sym_preproc_line] = STATE(1761), - [sym_preproc_pragma] = STATE(1761), - [sym_preproc_nullable] = STATE(1761), - [sym_preproc_error] = STATE(1761), - [sym_preproc_warning] = STATE(1761), - [sym_preproc_define] = STATE(1761), - [sym_preproc_undef] = STATE(1761), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -339842,17 +337004,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -339861,10 +337023,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339889,7 +337051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339905,105 +337067,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1762] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1762), - [sym_preproc_endregion] = STATE(1762), - [sym_preproc_line] = STATE(1762), - [sym_preproc_pragma] = STATE(1762), - [sym_preproc_nullable] = STATE(1762), - [sym_preproc_error] = STATE(1762), - [sym_preproc_warning] = STATE(1762), - [sym_preproc_define] = STATE(1762), - [sym_preproc_undef] = STATE(1762), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1745] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4691), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1745), + [sym_preproc_endregion] = STATE(1745), + [sym_preproc_line] = STATE(1745), + [sym_preproc_pragma] = STATE(1745), + [sym_preproc_nullable] = STATE(1745), + [sym_preproc_error] = STATE(1745), + [sym_preproc_warning] = STATE(1745), + [sym_preproc_define] = STATE(1745), + [sym_preproc_undef] = STATE(1745), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -340011,17 +337173,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -340030,10 +337192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340058,7 +337220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340074,105 +337236,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1763] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5476), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1763), - [sym_preproc_endregion] = STATE(1763), - [sym_preproc_line] = STATE(1763), - [sym_preproc_pragma] = STATE(1763), - [sym_preproc_nullable] = STATE(1763), - [sym_preproc_error] = STATE(1763), - [sym_preproc_warning] = STATE(1763), - [sym_preproc_define] = STATE(1763), - [sym_preproc_undef] = STATE(1763), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1746] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5739), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(2479), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1746), + [sym_preproc_endregion] = STATE(1746), + [sym_preproc_line] = STATE(1746), + [sym_preproc_pragma] = STATE(1746), + [sym_preproc_nullable] = STATE(1746), + [sym_preproc_error] = STATE(1746), + [sym_preproc_warning] = STATE(1746), + [sym_preproc_define] = STATE(1746), + [sym_preproc_undef] = STATE(1746), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -340180,17 +337342,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -340199,10 +337361,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340227,7 +337389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340243,135 +337405,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1764] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3590), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6235), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1764), - [sym_preproc_endregion] = STATE(1764), - [sym_preproc_line] = STATE(1764), - [sym_preproc_pragma] = STATE(1764), - [sym_preproc_nullable] = STATE(1764), - [sym_preproc_error] = STATE(1764), - [sym_preproc_warning] = STATE(1764), - [sym_preproc_define] = STATE(1764), - [sym_preproc_undef] = STATE(1764), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1747] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4695), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1747), + [sym_preproc_endregion] = STATE(1747), + [sym_preproc_line] = STATE(1747), + [sym_preproc_pragma] = STATE(1747), + [sym_preproc_nullable] = STATE(1747), + [sym_preproc_error] = STATE(1747), + [sym_preproc_warning] = STATE(1747), + [sym_preproc_define] = STATE(1747), + [sym_preproc_undef] = STATE(1747), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340384,19 +337546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1775), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340412,135 +337574,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1765] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3594), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1765), - [sym_preproc_endregion] = STATE(1765), - [sym_preproc_line] = STATE(1765), - [sym_preproc_pragma] = STATE(1765), - [sym_preproc_nullable] = STATE(1765), - [sym_preproc_error] = STATE(1765), - [sym_preproc_warning] = STATE(1765), - [sym_preproc_define] = STATE(1765), - [sym_preproc_undef] = STATE(1765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1748] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4696), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1748), + [sym_preproc_endregion] = STATE(1748), + [sym_preproc_line] = STATE(1748), + [sym_preproc_pragma] = STATE(1748), + [sym_preproc_nullable] = STATE(1748), + [sym_preproc_error] = STATE(1748), + [sym_preproc_warning] = STATE(1748), + [sym_preproc_define] = STATE(1748), + [sym_preproc_undef] = STATE(1748), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340553,19 +337715,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340576,309 +337738,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1766] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3595), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1766), - [sym_preproc_endregion] = STATE(1766), - [sym_preproc_line] = STATE(1766), - [sym_preproc_pragma] = STATE(1766), - [sym_preproc_nullable] = STATE(1766), - [sym_preproc_error] = STATE(1766), - [sym_preproc_warning] = STATE(1766), - [sym_preproc_define] = STATE(1766), - [sym_preproc_undef] = STATE(1766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), - }, - [1767] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4109), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6214), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7525), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1767), - [sym_preproc_endregion] = STATE(1767), - [sym_preproc_line] = STATE(1767), - [sym_preproc_pragma] = STATE(1767), - [sym_preproc_nullable] = STATE(1767), - [sym_preproc_error] = STATE(1767), - [sym_preproc_warning] = STATE(1767), - [sym_preproc_define] = STATE(1767), - [sym_preproc_undef] = STATE(1767), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1749] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4697), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1749), + [sym_preproc_endregion] = STATE(1749), + [sym_preproc_line] = STATE(1749), + [sym_preproc_pragma] = STATE(1749), + [sym_preproc_nullable] = STATE(1749), + [sym_preproc_error] = STATE(1749), + [sym_preproc_warning] = STATE(1749), + [sym_preproc_define] = STATE(1749), + [sym_preproc_undef] = STATE(1749), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_ref] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340892,17 +337885,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -340914,140 +337907,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1768] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5932), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2977), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7550), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1768), - [sym_preproc_endregion] = STATE(1768), - [sym_preproc_line] = STATE(1768), - [sym_preproc_pragma] = STATE(1768), - [sym_preproc_nullable] = STATE(1768), - [sym_preproc_error] = STATE(1768), - [sym_preproc_warning] = STATE(1768), - [sym_preproc_define] = STATE(1768), - [sym_preproc_undef] = STATE(1768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1750] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4682), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1750), + [sym_preproc_endregion] = STATE(1750), + [sym_preproc_line] = STATE(1750), + [sym_preproc_pragma] = STATE(1750), + [sym_preproc_nullable] = STATE(1750), + [sym_preproc_error] = STATE(1750), + [sym_preproc_warning] = STATE(1750), + [sym_preproc_define] = STATE(1750), + [sym_preproc_undef] = STATE(1750), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_ref] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341060,19 +338053,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341083,140 +338076,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1769] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2946), - [sym__name] = STATE(5942), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2374), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(3874), - [sym_lvalue_expression] = STATE(2950), - [sym__expression_statement_expression] = STATE(3866), - [sym_assignment_expression] = STATE(3875), - [sym_binary_expression] = STATE(3866), - [sym_postfix_unary_expression] = STATE(3875), - [sym_prefix_unary_expression] = STATE(3875), - [sym__pointer_indirection_expression] = STATE(2948), - [sym_query_expression] = STATE(3866), - [sym_from_clause] = STATE(6228), - [sym_conditional_expression] = STATE(3866), - [sym_conditional_access_expression] = STATE(3866), - [sym_as_expression] = STATE(3866), - [sym_is_expression] = STATE(3866), - [sym_is_pattern_expression] = STATE(3866), - [sym_cast_expression] = STATE(3866), - [sym_checked_expression] = STATE(3866), - [sym_invocation_expression] = STATE(3875), - [sym_switch_expression] = STATE(3866), - [sym_await_expression] = STATE(3875), - [sym_throw_expression] = STATE(3866), - [sym_element_access_expression] = STATE(2948), - [sym_interpolated_string_expression] = STATE(3866), - [sym_member_access_expression] = STATE(2948), - [sym_object_creation_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3875), - [sym__parenthesized_lvalue_expression] = STATE(2948), - [sym_lambda_expression] = STATE(3866), - [sym__lambda_expression_init] = STATE(7421), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3866), - [sym_anonymous_method_expression] = STATE(3866), - [sym_anonymous_object_creation_expression] = STATE(3866), - [sym_implicit_array_creation_expression] = STATE(3866), - [sym_implicit_object_creation_expression] = STATE(3866), - [sym_implicit_stackalloc_expression] = STATE(3866), - [sym_initializer_expression] = STATE(3866), - [sym_default_expression] = STATE(3866), - [sym_with_expression] = STATE(3866), - [sym_sizeof_expression] = STATE(3866), - [sym_typeof_expression] = STATE(3866), - [sym_makeref_expression] = STATE(3866), - [sym_ref_expression] = STATE(3866), - [sym_reftype_expression] = STATE(3866), - [sym_refvalue_expression] = STATE(3866), - [sym_stackalloc_expression] = STATE(3866), - [sym_range_expression] = STATE(3866), - [sym_tuple_expression] = STATE(2948), - [sym_literal] = STATE(3866), - [sym_character_literal] = STATE(3869), - [sym_string_literal] = STATE(3869), - [sym_raw_string_literal] = STATE(3869), - [sym_boolean_literal] = STATE(3869), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3866), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1769), - [sym_preproc_endregion] = STATE(1769), - [sym_preproc_line] = STATE(1769), - [sym_preproc_pragma] = STATE(1769), - [sym_preproc_nullable] = STATE(1769), - [sym_preproc_error] = STATE(1769), - [sym_preproc_warning] = STATE(1769), - [sym_preproc_define] = STATE(1769), - [sym_preproc_undef] = STATE(1769), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3415), + [1751] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4436), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1751), + [sym_preproc_endregion] = STATE(1751), + [sym_preproc_line] = STATE(1751), + [sym_preproc_pragma] = STATE(1751), + [sym_preproc_nullable] = STATE(1751), + [sym_preproc_error] = STATE(1751), + [sym_preproc_warning] = STATE(1751), + [sym_preproc_define] = STATE(1751), + [sym_preproc_undef] = STATE(1751), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_delegate] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_this] = ACTIONS(1565), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1567), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1569), - [anon_sym_unchecked] = ACTIONS(1555), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_throw] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341229,19 +338222,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___makeref] = ACTIONS(1585), - [anon_sym___reftype] = ACTIONS(1587), - [anon_sym___refvalue] = ACTIONS(1589), - [sym_null_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym_verbatim_string_literal] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1599), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341252,110 +338245,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1601), - [sym_interpolation_verbatim_start] = ACTIONS(1603), - [sym_interpolation_raw_start] = ACTIONS(1605), - [sym_raw_string_start] = ACTIONS(1607), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1770] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1770), - [sym_preproc_endregion] = STATE(1770), - [sym_preproc_line] = STATE(1770), - [sym_preproc_pragma] = STATE(1770), - [sym_preproc_nullable] = STATE(1770), - [sym_preproc_error] = STATE(1770), - [sym_preproc_warning] = STATE(1770), - [sym_preproc_define] = STATE(1770), - [sym_preproc_undef] = STATE(1770), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1752] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1752), + [sym_preproc_endregion] = STATE(1752), + [sym_preproc_line] = STATE(1752), + [sym_preproc_pragma] = STATE(1752), + [sym_preproc_nullable] = STATE(1752), + [sym_preproc_error] = STATE(1752), + [sym_preproc_warning] = STATE(1752), + [sym_preproc_define] = STATE(1752), + [sym_preproc_undef] = STATE(1752), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -341363,17 +338356,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -341382,10 +338375,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341410,7 +338403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341426,108 +338419,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1771] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5478), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1771), - [sym_preproc_endregion] = STATE(1771), - [sym_preproc_line] = STATE(1771), - [sym_preproc_pragma] = STATE(1771), - [sym_preproc_nullable] = STATE(1771), - [sym_preproc_error] = STATE(1771), - [sym_preproc_warning] = STATE(1771), - [sym_preproc_define] = STATE(1771), - [sym_preproc_undef] = STATE(1771), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1753] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5552), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3461), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7422), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1753), + [sym_preproc_endregion] = STATE(1753), + [sym_preproc_line] = STATE(1753), + [sym_preproc_pragma] = STATE(1753), + [sym_preproc_nullable] = STATE(1753), + [sym_preproc_error] = STATE(1753), + [sym_preproc_warning] = STATE(1753), + [sym_preproc_define] = STATE(1753), + [sym_preproc_undef] = STATE(1753), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -341551,10 +338544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(1523), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341595,105 +338588,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1772] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5625), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1772), - [sym_preproc_endregion] = STATE(1772), - [sym_preproc_line] = STATE(1772), - [sym_preproc_pragma] = STATE(1772), - [sym_preproc_nullable] = STATE(1772), - [sym_preproc_error] = STATE(1772), - [sym_preproc_warning] = STATE(1772), - [sym_preproc_define] = STATE(1772), - [sym_preproc_undef] = STATE(1772), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1754] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5606), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1754), + [sym_preproc_endregion] = STATE(1754), + [sym_preproc_line] = STATE(1754), + [sym_preproc_pragma] = STATE(1754), + [sym_preproc_nullable] = STATE(1754), + [sym_preproc_error] = STATE(1754), + [sym_preproc_warning] = STATE(1754), + [sym_preproc_define] = STATE(1754), + [sym_preproc_undef] = STATE(1754), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -341701,17 +338694,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -341720,10 +338713,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341748,7 +338741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341764,105 +338757,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1773] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5626), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1773), - [sym_preproc_endregion] = STATE(1773), - [sym_preproc_line] = STATE(1773), - [sym_preproc_pragma] = STATE(1773), - [sym_preproc_nullable] = STATE(1773), - [sym_preproc_error] = STATE(1773), - [sym_preproc_warning] = STATE(1773), - [sym_preproc_define] = STATE(1773), - [sym_preproc_undef] = STATE(1773), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1755] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5165), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1755), + [sym_preproc_endregion] = STATE(1755), + [sym_preproc_line] = STATE(1755), + [sym_preproc_pragma] = STATE(1755), + [sym_preproc_nullable] = STATE(1755), + [sym_preproc_error] = STATE(1755), + [sym_preproc_warning] = STATE(1755), + [sym_preproc_define] = STATE(1755), + [sym_preproc_undef] = STATE(1755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -341870,17 +338863,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -341892,7 +338885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341933,105 +338926,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1774] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5627), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1774), - [sym_preproc_endregion] = STATE(1774), - [sym_preproc_line] = STATE(1774), - [sym_preproc_pragma] = STATE(1774), - [sym_preproc_nullable] = STATE(1774), - [sym_preproc_error] = STATE(1774), - [sym_preproc_warning] = STATE(1774), - [sym_preproc_define] = STATE(1774), - [sym_preproc_undef] = STATE(1774), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1756] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5607), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1756), + [sym_preproc_endregion] = STATE(1756), + [sym_preproc_line] = STATE(1756), + [sym_preproc_pragma] = STATE(1756), + [sym_preproc_nullable] = STATE(1756), + [sym_preproc_error] = STATE(1756), + [sym_preproc_warning] = STATE(1756), + [sym_preproc_define] = STATE(1756), + [sym_preproc_undef] = STATE(1756), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -342039,17 +339032,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342058,10 +339051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342086,7 +339079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342102,123 +339095,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1775] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5628), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1775), - [sym_preproc_endregion] = STATE(1775), - [sym_preproc_line] = STATE(1775), - [sym_preproc_pragma] = STATE(1775), - [sym_preproc_nullable] = STATE(1775), - [sym_preproc_error] = STATE(1775), - [sym_preproc_warning] = STATE(1775), - [sym_preproc_define] = STATE(1775), - [sym_preproc_undef] = STATE(1775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1757] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5608), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1757), + [sym_preproc_endregion] = STATE(1757), + [sym_preproc_line] = STATE(1757), + [sym_preproc_pragma] = STATE(1757), + [sym_preproc_nullable] = STATE(1757), + [sym_preproc_error] = STATE(1757), + [sym_preproc_warning] = STATE(1757), + [sym_preproc_define] = STATE(1757), + [sym_preproc_undef] = STATE(1757), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342227,10 +339220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342255,7 +339248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342271,105 +339264,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1776] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5630), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1776), - [sym_preproc_endregion] = STATE(1776), - [sym_preproc_line] = STATE(1776), - [sym_preproc_pragma] = STATE(1776), - [sym_preproc_nullable] = STATE(1776), - [sym_preproc_error] = STATE(1776), - [sym_preproc_warning] = STATE(1776), - [sym_preproc_define] = STATE(1776), - [sym_preproc_undef] = STATE(1776), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1758] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5416), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1758), + [sym_preproc_endregion] = STATE(1758), + [sym_preproc_line] = STATE(1758), + [sym_preproc_pragma] = STATE(1758), + [sym_preproc_nullable] = STATE(1758), + [sym_preproc_error] = STATE(1758), + [sym_preproc_warning] = STATE(1758), + [sym_preproc_define] = STATE(1758), + [sym_preproc_undef] = STATE(1758), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -342377,17 +339370,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342396,10 +339389,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342424,7 +339417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342440,105 +339433,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1777] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5634), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1777), - [sym_preproc_endregion] = STATE(1777), - [sym_preproc_line] = STATE(1777), - [sym_preproc_pragma] = STATE(1777), - [sym_preproc_nullable] = STATE(1777), - [sym_preproc_error] = STATE(1777), - [sym_preproc_warning] = STATE(1777), - [sym_preproc_define] = STATE(1777), - [sym_preproc_undef] = STATE(1777), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1759] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5417), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1759), + [sym_preproc_endregion] = STATE(1759), + [sym_preproc_line] = STATE(1759), + [sym_preproc_pragma] = STATE(1759), + [sym_preproc_nullable] = STATE(1759), + [sym_preproc_error] = STATE(1759), + [sym_preproc_warning] = STATE(1759), + [sym_preproc_define] = STATE(1759), + [sym_preproc_undef] = STATE(1759), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -342546,17 +339539,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342565,10 +339558,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342593,7 +339586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342609,105 +339602,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1778] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5635), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1778), - [sym_preproc_endregion] = STATE(1778), - [sym_preproc_line] = STATE(1778), - [sym_preproc_pragma] = STATE(1778), - [sym_preproc_nullable] = STATE(1778), - [sym_preproc_error] = STATE(1778), - [sym_preproc_warning] = STATE(1778), - [sym_preproc_define] = STATE(1778), - [sym_preproc_undef] = STATE(1778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1760] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5418), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1760), + [sym_preproc_endregion] = STATE(1760), + [sym_preproc_line] = STATE(1760), + [sym_preproc_pragma] = STATE(1760), + [sym_preproc_nullable] = STATE(1760), + [sym_preproc_error] = STATE(1760), + [sym_preproc_warning] = STATE(1760), + [sym_preproc_define] = STATE(1760), + [sym_preproc_undef] = STATE(1760), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -342715,17 +339708,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342734,10 +339727,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342762,7 +339755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342778,123 +339771,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1779] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5498), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1779), - [sym_preproc_endregion] = STATE(1779), - [sym_preproc_line] = STATE(1779), - [sym_preproc_pragma] = STATE(1779), - [sym_preproc_nullable] = STATE(1779), - [sym_preproc_error] = STATE(1779), - [sym_preproc_warning] = STATE(1779), - [sym_preproc_define] = STATE(1779), - [sym_preproc_undef] = STATE(1779), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1761] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5609), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1761), + [sym_preproc_endregion] = STATE(1761), + [sym_preproc_line] = STATE(1761), + [sym_preproc_pragma] = STATE(1761), + [sym_preproc_nullable] = STATE(1761), + [sym_preproc_error] = STATE(1761), + [sym_preproc_warning] = STATE(1761), + [sym_preproc_define] = STATE(1761), + [sym_preproc_undef] = STATE(1761), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -342903,10 +339896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342931,7 +339924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342947,123 +339940,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1780] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5396), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3719), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6232), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7740), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1780), - [sym_preproc_endregion] = STATE(1780), - [sym_preproc_line] = STATE(1780), - [sym_preproc_pragma] = STATE(1780), - [sym_preproc_nullable] = STATE(1780), - [sym_preproc_error] = STATE(1780), - [sym_preproc_warning] = STATE(1780), - [sym_preproc_define] = STATE(1780), - [sym_preproc_undef] = STATE(1780), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1762] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5419), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1762), + [sym_preproc_endregion] = STATE(1762), + [sym_preproc_line] = STATE(1762), + [sym_preproc_pragma] = STATE(1762), + [sym_preproc_nullable] = STATE(1762), + [sym_preproc_error] = STATE(1762), + [sym_preproc_warning] = STATE(1762), + [sym_preproc_define] = STATE(1762), + [sym_preproc_undef] = STATE(1762), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_ref] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343072,10 +340065,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1239), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343100,7 +340093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343116,105 +340109,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1781] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5632), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1781), - [sym_preproc_endregion] = STATE(1781), - [sym_preproc_line] = STATE(1781), - [sym_preproc_pragma] = STATE(1781), - [sym_preproc_nullable] = STATE(1781), - [sym_preproc_error] = STATE(1781), - [sym_preproc_warning] = STATE(1781), - [sym_preproc_define] = STATE(1781), - [sym_preproc_undef] = STATE(1781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1763] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5166), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1763), + [sym_preproc_endregion] = STATE(1763), + [sym_preproc_line] = STATE(1763), + [sym_preproc_pragma] = STATE(1763), + [sym_preproc_nullable] = STATE(1763), + [sym_preproc_error] = STATE(1763), + [sym_preproc_warning] = STATE(1763), + [sym_preproc_define] = STATE(1763), + [sym_preproc_undef] = STATE(1763), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -343222,17 +340215,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343244,7 +340237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343285,105 +340278,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1782] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5637), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1782), - [sym_preproc_endregion] = STATE(1782), - [sym_preproc_line] = STATE(1782), - [sym_preproc_pragma] = STATE(1782), - [sym_preproc_nullable] = STATE(1782), - [sym_preproc_error] = STATE(1782), - [sym_preproc_warning] = STATE(1782), - [sym_preproc_define] = STATE(1782), - [sym_preproc_undef] = STATE(1782), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1764] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5420), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1764), + [sym_preproc_endregion] = STATE(1764), + [sym_preproc_line] = STATE(1764), + [sym_preproc_pragma] = STATE(1764), + [sym_preproc_nullable] = STATE(1764), + [sym_preproc_error] = STATE(1764), + [sym_preproc_warning] = STATE(1764), + [sym_preproc_define] = STATE(1764), + [sym_preproc_undef] = STATE(1764), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -343391,17 +340384,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343410,10 +340403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343438,7 +340431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343454,105 +340447,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1783] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5639), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1783), - [sym_preproc_endregion] = STATE(1783), - [sym_preproc_line] = STATE(1783), - [sym_preproc_pragma] = STATE(1783), - [sym_preproc_nullable] = STATE(1783), - [sym_preproc_error] = STATE(1783), - [sym_preproc_warning] = STATE(1783), - [sym_preproc_define] = STATE(1783), - [sym_preproc_undef] = STATE(1783), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1765] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5421), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1765), + [sym_preproc_endregion] = STATE(1765), + [sym_preproc_line] = STATE(1765), + [sym_preproc_pragma] = STATE(1765), + [sym_preproc_nullable] = STATE(1765), + [sym_preproc_error] = STATE(1765), + [sym_preproc_warning] = STATE(1765), + [sym_preproc_define] = STATE(1765), + [sym_preproc_undef] = STATE(1765), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -343560,17 +340553,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343579,10 +340572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343607,7 +340600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343623,123 +340616,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1784] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5640), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1784), - [sym_preproc_endregion] = STATE(1784), - [sym_preproc_line] = STATE(1784), - [sym_preproc_pragma] = STATE(1784), - [sym_preproc_nullable] = STATE(1784), - [sym_preproc_error] = STATE(1784), - [sym_preproc_warning] = STATE(1784), - [sym_preproc_define] = STATE(1784), - [sym_preproc_undef] = STATE(1784), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1766] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5422), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1766), + [sym_preproc_endregion] = STATE(1766), + [sym_preproc_line] = STATE(1766), + [sym_preproc_pragma] = STATE(1766), + [sym_preproc_nullable] = STATE(1766), + [sym_preproc_error] = STATE(1766), + [sym_preproc_warning] = STATE(1766), + [sym_preproc_define] = STATE(1766), + [sym_preproc_undef] = STATE(1766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343748,10 +340741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343776,7 +340769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343792,123 +340785,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1785] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5645), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1785), - [sym_preproc_endregion] = STATE(1785), - [sym_preproc_line] = STATE(1785), - [sym_preproc_pragma] = STATE(1785), - [sym_preproc_nullable] = STATE(1785), - [sym_preproc_error] = STATE(1785), - [sym_preproc_warning] = STATE(1785), - [sym_preproc_define] = STATE(1785), - [sym_preproc_undef] = STATE(1785), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1767] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5425), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1767), + [sym_preproc_endregion] = STATE(1767), + [sym_preproc_line] = STATE(1767), + [sym_preproc_pragma] = STATE(1767), + [sym_preproc_nullable] = STATE(1767), + [sym_preproc_error] = STATE(1767), + [sym_preproc_warning] = STATE(1767), + [sym_preproc_define] = STATE(1767), + [sym_preproc_undef] = STATE(1767), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -343917,10 +340910,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343961,135 +340954,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1786] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1768] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5693), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1786), - [sym_preproc_endregion] = STATE(1786), - [sym_preproc_line] = STATE(1786), - [sym_preproc_pragma] = STATE(1786), - [sym_preproc_nullable] = STATE(1786), - [sym_preproc_error] = STATE(1786), - [sym_preproc_warning] = STATE(1786), - [sym_preproc_define] = STATE(1786), - [sym_preproc_undef] = STATE(1786), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5349), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1768), + [sym_preproc_endregion] = STATE(1768), + [sym_preproc_line] = STATE(1768), + [sym_preproc_pragma] = STATE(1768), + [sym_preproc_nullable] = STATE(1768), + [sym_preproc_error] = STATE(1768), + [sym_preproc_warning] = STATE(1768), + [sym_preproc_define] = STATE(1768), + [sym_preproc_undef] = STATE(1768), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344102,19 +341095,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344125,110 +341118,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1787] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5694), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1787), - [sym_preproc_endregion] = STATE(1787), - [sym_preproc_line] = STATE(1787), - [sym_preproc_pragma] = STATE(1787), - [sym_preproc_nullable] = STATE(1787), - [sym_preproc_error] = STATE(1787), - [sym_preproc_warning] = STATE(1787), - [sym_preproc_define] = STATE(1787), - [sym_preproc_undef] = STATE(1787), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1769] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5494), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1769), + [sym_preproc_endregion] = STATE(1769), + [sym_preproc_line] = STATE(1769), + [sym_preproc_pragma] = STATE(1769), + [sym_preproc_nullable] = STATE(1769), + [sym_preproc_error] = STATE(1769), + [sym_preproc_warning] = STATE(1769), + [sym_preproc_define] = STATE(1769), + [sym_preproc_undef] = STATE(1769), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -344236,17 +341229,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -344258,7 +341251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344299,105 +341292,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1788] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5547), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1788), - [sym_preproc_endregion] = STATE(1788), - [sym_preproc_line] = STATE(1788), - [sym_preproc_pragma] = STATE(1788), - [sym_preproc_nullable] = STATE(1788), - [sym_preproc_error] = STATE(1788), - [sym_preproc_warning] = STATE(1788), - [sym_preproc_define] = STATE(1788), - [sym_preproc_undef] = STATE(1788), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1770] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1770), + [sym_preproc_endregion] = STATE(1770), + [sym_preproc_line] = STATE(1770), + [sym_preproc_pragma] = STATE(1770), + [sym_preproc_nullable] = STATE(1770), + [sym_preproc_error] = STATE(1770), + [sym_preproc_warning] = STATE(1770), + [sym_preproc_define] = STATE(1770), + [sym_preproc_undef] = STATE(1770), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -344405,17 +341398,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -344424,10 +341417,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344452,7 +341445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344468,105 +341461,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1789] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5548), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1789), - [sym_preproc_endregion] = STATE(1789), - [sym_preproc_line] = STATE(1789), - [sym_preproc_pragma] = STATE(1789), - [sym_preproc_nullable] = STATE(1789), - [sym_preproc_error] = STATE(1789), - [sym_preproc_warning] = STATE(1789), - [sym_preproc_define] = STATE(1789), - [sym_preproc_undef] = STATE(1789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1771] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5431), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1771), + [sym_preproc_endregion] = STATE(1771), + [sym_preproc_line] = STATE(1771), + [sym_preproc_pragma] = STATE(1771), + [sym_preproc_nullable] = STATE(1771), + [sym_preproc_error] = STATE(1771), + [sym_preproc_warning] = STATE(1771), + [sym_preproc_define] = STATE(1771), + [sym_preproc_undef] = STATE(1771), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -344574,17 +341567,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -344596,7 +341589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344637,105 +341630,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1790] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5550), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1790), - [sym_preproc_endregion] = STATE(1790), - [sym_preproc_line] = STATE(1790), - [sym_preproc_pragma] = STATE(1790), - [sym_preproc_nullable] = STATE(1790), - [sym_preproc_error] = STATE(1790), - [sym_preproc_warning] = STATE(1790), - [sym_preproc_define] = STATE(1790), - [sym_preproc_undef] = STATE(1790), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1772] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5434), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3731), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6225), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7726), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1772), + [sym_preproc_endregion] = STATE(1772), + [sym_preproc_line] = STATE(1772), + [sym_preproc_pragma] = STATE(1772), + [sym_preproc_nullable] = STATE(1772), + [sym_preproc_error] = STATE(1772), + [sym_preproc_warning] = STATE(1772), + [sym_preproc_define] = STATE(1772), + [sym_preproc_undef] = STATE(1772), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_ref] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -344743,17 +341736,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -344762,10 +341755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2115), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344790,7 +341783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344806,473 +341799,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1791] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1791), - [sym_preproc_endregion] = STATE(1791), - [sym_preproc_line] = STATE(1791), - [sym_preproc_pragma] = STATE(1791), - [sym_preproc_nullable] = STATE(1791), - [sym_preproc_error] = STATE(1791), - [sym_preproc_warning] = STATE(1791), - [sym_preproc_define] = STATE(1791), - [sym_preproc_undef] = STATE(1791), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1792] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5429), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1792), - [sym_preproc_endregion] = STATE(1792), - [sym_preproc_line] = STATE(1792), - [sym_preproc_pragma] = STATE(1792), - [sym_preproc_nullable] = STATE(1792), - [sym_preproc_error] = STATE(1792), - [sym_preproc_warning] = STATE(1792), - [sym_preproc_define] = STATE(1792), - [sym_preproc_undef] = STATE(1792), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1793] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1773] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5431), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1793), - [sym_preproc_endregion] = STATE(1793), - [sym_preproc_line] = STATE(1793), - [sym_preproc_pragma] = STATE(1793), - [sym_preproc_nullable] = STATE(1793), - [sym_preproc_error] = STATE(1793), - [sym_preproc_warning] = STATE(1793), - [sym_preproc_define] = STATE(1793), - [sym_preproc_undef] = STATE(1793), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5350), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1773), + [sym_preproc_endregion] = STATE(1773), + [sym_preproc_line] = STATE(1773), + [sym_preproc_pragma] = STATE(1773), + [sym_preproc_nullable] = STATE(1773), + [sym_preproc_error] = STATE(1773), + [sym_preproc_warning] = STATE(1773), + [sym_preproc_define] = STATE(1773), + [sym_preproc_undef] = STATE(1773), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345285,19 +341940,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345308,165 +341963,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1794] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5442), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1794), - [sym_preproc_endregion] = STATE(1794), - [sym_preproc_line] = STATE(1794), - [sym_preproc_pragma] = STATE(1794), - [sym_preproc_nullable] = STATE(1794), - [sym_preproc_error] = STATE(1794), - [sym_preproc_warning] = STATE(1794), - [sym_preproc_define] = STATE(1794), - [sym_preproc_undef] = STATE(1794), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [1774] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5946), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2318), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4370), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3353), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7761), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1774), + [sym_preproc_endregion] = STATE(1774), + [sym_preproc_line] = STATE(1774), + [sym_preproc_pragma] = STATE(1774), + [sym_preproc_nullable] = STATE(1774), + [sym_preproc_error] = STATE(1774), + [sym_preproc_warning] = STATE(1774), + [sym_preproc_define] = STATE(1774), + [sym_preproc_undef] = STATE(1774), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345477,108 +342132,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, - [1795] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3582), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7436), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1795), - [sym_preproc_endregion] = STATE(1795), - [sym_preproc_line] = STATE(1795), - [sym_preproc_pragma] = STATE(1795), - [sym_preproc_nullable] = STATE(1795), - [sym_preproc_error] = STATE(1795), - [sym_preproc_warning] = STATE(1795), - [sym_preproc_define] = STATE(1795), - [sym_preproc_undef] = STATE(1795), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [1775] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4386), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1775), + [sym_preproc_endregion] = STATE(1775), + [sym_preproc_line] = STATE(1775), + [sym_preproc_pragma] = STATE(1775), + [sym_preproc_nullable] = STATE(1775), + [sym_preproc_error] = STATE(1775), + [sym_preproc_warning] = STATE(1775), + [sym_preproc_define] = STATE(1775), + [sym_preproc_undef] = STATE(1775), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_ref] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), @@ -345588,17 +342243,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), [anon_sym_true] = ACTIONS(1413), [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), [anon_sym_this] = ACTIONS(1417), [anon_sym_scoped] = ACTIONS(1419), [anon_sym_base] = ACTIONS(1421), @@ -345607,10 +342262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1407), [anon_sym_yield] = ACTIONS(1393), [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1675), + [anon_sym_throw] = ACTIONS(1429), [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1679), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), [anon_sym_from] = ACTIONS(1435), [anon_sym_into] = ACTIONS(1393), [anon_sym_join] = ACTIONS(1393), @@ -345651,135 +342306,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1463), [sym_raw_string_start] = ACTIONS(1465), }, - [1796] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5757), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3223), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7601), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1796), - [sym_preproc_endregion] = STATE(1796), - [sym_preproc_line] = STATE(1796), - [sym_preproc_pragma] = STATE(1796), - [sym_preproc_nullable] = STATE(1796), - [sym_preproc_error] = STATE(1796), - [sym_preproc_warning] = STATE(1796), - [sym_preproc_define] = STATE(1796), - [sym_preproc_undef] = STATE(1796), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1776] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4357), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), + [sym_from_clause] = STATE(6227), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1776), + [sym_preproc_endregion] = STATE(1776), + [sym_preproc_line] = STATE(1776), + [sym_preproc_pragma] = STATE(1776), + [sym_preproc_nullable] = STATE(1776), + [sym_preproc_error] = STATE(1776), + [sym_preproc_warning] = STATE(1776), + [sym_preproc_define] = STATE(1776), + [sym_preproc_undef] = STATE(1776), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1405), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), [anon_sym_this] = ACTIONS(1417), [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1421), [anon_sym_var] = ACTIONS(1423), [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1407), [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1429), [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), [anon_sym_from] = ACTIONS(1435), [anon_sym_into] = ACTIONS(1393), [anon_sym_join] = ACTIONS(1393), @@ -345792,19 +342447,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(1393), [anon_sym_by] = ACTIONS(1393), [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345815,140 +342470,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), }, - [1797] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5610), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1797), - [sym_preproc_endregion] = STATE(1797), - [sym_preproc_line] = STATE(1797), - [sym_preproc_pragma] = STATE(1797), - [sym_preproc_nullable] = STATE(1797), - [sym_preproc_error] = STATE(1797), - [sym_preproc_warning] = STATE(1797), - [sym_preproc_define] = STATE(1797), - [sym_preproc_undef] = STATE(1797), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1777] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4286), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1777), + [sym_preproc_endregion] = STATE(1777), + [sym_preproc_line] = STATE(1777), + [sym_preproc_pragma] = STATE(1777), + [sym_preproc_nullable] = STATE(1777), + [sym_preproc_error] = STATE(1777), + [sym_preproc_warning] = STATE(1777), + [sym_preproc_define] = STATE(1777), + [sym_preproc_undef] = STATE(1777), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345961,19 +342616,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345989,135 +342644,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1798] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5611), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1798), - [sym_preproc_endregion] = STATE(1798), - [sym_preproc_line] = STATE(1798), - [sym_preproc_pragma] = STATE(1798), - [sym_preproc_nullable] = STATE(1798), - [sym_preproc_error] = STATE(1798), - [sym_preproc_warning] = STATE(1798), - [sym_preproc_define] = STATE(1798), - [sym_preproc_undef] = STATE(1798), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1778] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5231), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1778), + [sym_preproc_endregion] = STATE(1778), + [sym_preproc_line] = STATE(1778), + [sym_preproc_pragma] = STATE(1778), + [sym_preproc_nullable] = STATE(1778), + [sym_preproc_error] = STATE(1778), + [sym_preproc_warning] = STATE(1778), + [sym_preproc_define] = STATE(1778), + [sym_preproc_undef] = STATE(1778), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346130,19 +342785,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346153,140 +342808,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1799] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5612), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1799), - [sym_preproc_endregion] = STATE(1799), - [sym_preproc_line] = STATE(1799), - [sym_preproc_pragma] = STATE(1799), - [sym_preproc_nullable] = STATE(1799), - [sym_preproc_error] = STATE(1799), - [sym_preproc_warning] = STATE(1799), - [sym_preproc_define] = STATE(1799), - [sym_preproc_undef] = STATE(1799), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1779] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1779), + [sym_preproc_endregion] = STATE(1779), + [sym_preproc_line] = STATE(1779), + [sym_preproc_pragma] = STATE(1779), + [sym_preproc_nullable] = STATE(1779), + [sym_preproc_error] = STATE(1779), + [sym_preproc_warning] = STATE(1779), + [sym_preproc_define] = STATE(1779), + [sym_preproc_undef] = STATE(1779), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346299,19 +342954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346322,110 +342977,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1800] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5433), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1800), - [sym_preproc_endregion] = STATE(1800), - [sym_preproc_line] = STATE(1800), - [sym_preproc_pragma] = STATE(1800), - [sym_preproc_nullable] = STATE(1800), - [sym_preproc_error] = STATE(1800), - [sym_preproc_warning] = STATE(1800), - [sym_preproc_define] = STATE(1800), - [sym_preproc_undef] = STATE(1800), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1780] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5498), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1780), + [sym_preproc_endregion] = STATE(1780), + [sym_preproc_line] = STATE(1780), + [sym_preproc_pragma] = STATE(1780), + [sym_preproc_nullable] = STATE(1780), + [sym_preproc_error] = STATE(1780), + [sym_preproc_warning] = STATE(1780), + [sym_preproc_define] = STATE(1780), + [sym_preproc_undef] = STATE(1780), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -346433,17 +343088,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -346452,10 +343107,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346480,7 +343135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346496,135 +343151,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1801] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5434), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1801), - [sym_preproc_endregion] = STATE(1801), - [sym_preproc_line] = STATE(1801), - [sym_preproc_pragma] = STATE(1801), - [sym_preproc_nullable] = STATE(1801), - [sym_preproc_error] = STATE(1801), - [sym_preproc_warning] = STATE(1801), - [sym_preproc_define] = STATE(1801), - [sym_preproc_undef] = STATE(1801), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1781] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5233), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1781), + [sym_preproc_endregion] = STATE(1781), + [sym_preproc_line] = STATE(1781), + [sym_preproc_pragma] = STATE(1781), + [sym_preproc_nullable] = STATE(1781), + [sym_preproc_error] = STATE(1781), + [sym_preproc_warning] = STATE(1781), + [sym_preproc_define] = STATE(1781), + [sym_preproc_undef] = STATE(1781), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346637,19 +343292,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346660,110 +343315,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1802] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5435), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1802), - [sym_preproc_endregion] = STATE(1802), - [sym_preproc_line] = STATE(1802), - [sym_preproc_pragma] = STATE(1802), - [sym_preproc_nullable] = STATE(1802), - [sym_preproc_error] = STATE(1802), - [sym_preproc_warning] = STATE(1802), - [sym_preproc_define] = STATE(1802), - [sym_preproc_undef] = STATE(1802), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1782] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5499), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1782), + [sym_preproc_endregion] = STATE(1782), + [sym_preproc_line] = STATE(1782), + [sym_preproc_pragma] = STATE(1782), + [sym_preproc_nullable] = STATE(1782), + [sym_preproc_error] = STATE(1782), + [sym_preproc_warning] = STATE(1782), + [sym_preproc_define] = STATE(1782), + [sym_preproc_undef] = STATE(1782), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -346771,17 +343426,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -346790,10 +343445,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346818,7 +343473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346834,135 +343489,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1803] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5613), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1803), - [sym_preproc_endregion] = STATE(1803), - [sym_preproc_line] = STATE(1803), - [sym_preproc_pragma] = STATE(1803), - [sym_preproc_nullable] = STATE(1803), - [sym_preproc_error] = STATE(1803), - [sym_preproc_warning] = STATE(1803), - [sym_preproc_define] = STATE(1803), - [sym_preproc_undef] = STATE(1803), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1783] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4885), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1783), + [sym_preproc_endregion] = STATE(1783), + [sym_preproc_line] = STATE(1783), + [sym_preproc_pragma] = STATE(1783), + [sym_preproc_nullable] = STATE(1783), + [sym_preproc_error] = STATE(1783), + [sym_preproc_warning] = STATE(1783), + [sym_preproc_define] = STATE(1783), + [sym_preproc_undef] = STATE(1783), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346975,19 +343630,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346998,140 +343653,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1804] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5436), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1804), - [sym_preproc_endregion] = STATE(1804), - [sym_preproc_line] = STATE(1804), - [sym_preproc_pragma] = STATE(1804), - [sym_preproc_nullable] = STATE(1804), - [sym_preproc_error] = STATE(1804), - [sym_preproc_warning] = STATE(1804), - [sym_preproc_define] = STATE(1804), - [sym_preproc_undef] = STATE(1804), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [1784] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5239), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1784), + [sym_preproc_endregion] = STATE(1784), + [sym_preproc_line] = STATE(1784), + [sym_preproc_pragma] = STATE(1784), + [sym_preproc_nullable] = STATE(1784), + [sym_preproc_error] = STATE(1784), + [sym_preproc_warning] = STATE(1784), + [sym_preproc_define] = STATE(1784), + [sym_preproc_undef] = STATE(1784), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347144,19 +343799,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347167,140 +343822,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1805] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5437), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1805), - [sym_preproc_endregion] = STATE(1805), - [sym_preproc_line] = STATE(1805), - [sym_preproc_pragma] = STATE(1805), - [sym_preproc_nullable] = STATE(1805), - [sym_preproc_error] = STATE(1805), - [sym_preproc_warning] = STATE(1805), - [sym_preproc_define] = STATE(1805), - [sym_preproc_undef] = STATE(1805), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1785] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5241), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1785), + [sym_preproc_endregion] = STATE(1785), + [sym_preproc_line] = STATE(1785), + [sym_preproc_pragma] = STATE(1785), + [sym_preproc_nullable] = STATE(1785), + [sym_preproc_error] = STATE(1785), + [sym_preproc_warning] = STATE(1785), + [sym_preproc_define] = STATE(1785), + [sym_preproc_undef] = STATE(1785), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347313,19 +343968,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347336,140 +343991,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1806] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5438), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1806), - [sym_preproc_endregion] = STATE(1806), - [sym_preproc_line] = STATE(1806), - [sym_preproc_pragma] = STATE(1806), - [sym_preproc_nullable] = STATE(1806), - [sym_preproc_error] = STATE(1806), - [sym_preproc_warning] = STATE(1806), - [sym_preproc_define] = STATE(1806), - [sym_preproc_undef] = STATE(1806), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1786] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5242), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1786), + [sym_preproc_endregion] = STATE(1786), + [sym_preproc_line] = STATE(1786), + [sym_preproc_pragma] = STATE(1786), + [sym_preproc_nullable] = STATE(1786), + [sym_preproc_error] = STATE(1786), + [sym_preproc_warning] = STATE(1786), + [sym_preproc_define] = STATE(1786), + [sym_preproc_undef] = STATE(1786), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347482,19 +344137,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347505,140 +344160,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1807] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5439), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1807), - [sym_preproc_endregion] = STATE(1807), - [sym_preproc_line] = STATE(1807), - [sym_preproc_pragma] = STATE(1807), - [sym_preproc_nullable] = STATE(1807), - [sym_preproc_error] = STATE(1807), - [sym_preproc_warning] = STATE(1807), - [sym_preproc_define] = STATE(1807), - [sym_preproc_undef] = STATE(1807), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1787] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5243), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1787), + [sym_preproc_endregion] = STATE(1787), + [sym_preproc_line] = STATE(1787), + [sym_preproc_pragma] = STATE(1787), + [sym_preproc_nullable] = STATE(1787), + [sym_preproc_error] = STATE(1787), + [sym_preproc_warning] = STATE(1787), + [sym_preproc_define] = STATE(1787), + [sym_preproc_undef] = STATE(1787), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347651,19 +344306,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347674,140 +344329,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1808] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5443), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1808), - [sym_preproc_endregion] = STATE(1808), - [sym_preproc_line] = STATE(1808), - [sym_preproc_pragma] = STATE(1808), - [sym_preproc_nullable] = STATE(1808), - [sym_preproc_error] = STATE(1808), - [sym_preproc_warning] = STATE(1808), - [sym_preproc_define] = STATE(1808), - [sym_preproc_undef] = STATE(1808), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1788] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5244), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1788), + [sym_preproc_endregion] = STATE(1788), + [sym_preproc_line] = STATE(1788), + [sym_preproc_pragma] = STATE(1788), + [sym_preproc_nullable] = STATE(1788), + [sym_preproc_error] = STATE(1788), + [sym_preproc_warning] = STATE(1788), + [sym_preproc_define] = STATE(1788), + [sym_preproc_undef] = STATE(1788), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347820,19 +344475,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347843,108 +344498,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1809] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5346), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1809), - [sym_preproc_endregion] = STATE(1809), - [sym_preproc_line] = STATE(1809), - [sym_preproc_pragma] = STATE(1809), - [sym_preproc_nullable] = STATE(1809), - [sym_preproc_error] = STATE(1809), - [sym_preproc_warning] = STATE(1809), - [sym_preproc_define] = STATE(1809), - [sym_preproc_undef] = STATE(1809), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1789] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5245), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1789), + [sym_preproc_endregion] = STATE(1789), + [sym_preproc_line] = STATE(1789), + [sym_preproc_pragma] = STATE(1789), + [sym_preproc_nullable] = STATE(1789), + [sym_preproc_error] = STATE(1789), + [sym_preproc_warning] = STATE(1789), + [sym_preproc_define] = STATE(1789), + [sym_preproc_undef] = STATE(1789), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), @@ -347954,17 +344609,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -347973,10 +344628,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348001,7 +344656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348017,135 +344672,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1810] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4230), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1810), - [sym_preproc_endregion] = STATE(1810), - [sym_preproc_line] = STATE(1810), - [sym_preproc_pragma] = STATE(1810), - [sym_preproc_nullable] = STATE(1810), - [sym_preproc_error] = STATE(1810), - [sym_preproc_warning] = STATE(1810), - [sym_preproc_define] = STATE(1810), - [sym_preproc_undef] = STATE(1810), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1790] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5246), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1790), + [sym_preproc_endregion] = STATE(1790), + [sym_preproc_line] = STATE(1790), + [sym_preproc_pragma] = STATE(1790), + [sym_preproc_nullable] = STATE(1790), + [sym_preproc_error] = STATE(1790), + [sym_preproc_warning] = STATE(1790), + [sym_preproc_define] = STATE(1790), + [sym_preproc_undef] = STATE(1790), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348158,19 +344813,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348186,135 +344841,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1811] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1811), - [sym_preproc_endregion] = STATE(1811), - [sym_preproc_line] = STATE(1811), - [sym_preproc_pragma] = STATE(1811), - [sym_preproc_nullable] = STATE(1811), - [sym_preproc_error] = STATE(1811), - [sym_preproc_warning] = STATE(1811), - [sym_preproc_define] = STATE(1811), - [sym_preproc_undef] = STATE(1811), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1791] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5247), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1791), + [sym_preproc_endregion] = STATE(1791), + [sym_preproc_line] = STATE(1791), + [sym_preproc_pragma] = STATE(1791), + [sym_preproc_nullable] = STATE(1791), + [sym_preproc_error] = STATE(1791), + [sym_preproc_warning] = STATE(1791), + [sym_preproc_define] = STATE(1791), + [sym_preproc_undef] = STATE(1791), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348327,19 +344982,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348350,140 +345005,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1812] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4125), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1812), - [sym_preproc_endregion] = STATE(1812), - [sym_preproc_line] = STATE(1812), - [sym_preproc_pragma] = STATE(1812), - [sym_preproc_nullable] = STATE(1812), - [sym_preproc_error] = STATE(1812), - [sym_preproc_warning] = STATE(1812), - [sym_preproc_define] = STATE(1812), - [sym_preproc_undef] = STATE(1812), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1792] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5248), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1792), + [sym_preproc_endregion] = STATE(1792), + [sym_preproc_line] = STATE(1792), + [sym_preproc_pragma] = STATE(1792), + [sym_preproc_nullable] = STATE(1792), + [sym_preproc_error] = STATE(1792), + [sym_preproc_warning] = STATE(1792), + [sym_preproc_define] = STATE(1792), + [sym_preproc_undef] = STATE(1792), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348496,19 +345151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1281), [anon_sym_sizeof] = ACTIONS(1283), [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), [sym_null_literal] = ACTIONS(1293), [anon_sym_SQUOTE] = ACTIONS(1295), [sym_integer_literal] = ACTIONS(1293), [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348524,135 +345179,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1813] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1793] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5459), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1813), - [sym_preproc_endregion] = STATE(1813), - [sym_preproc_line] = STATE(1813), - [sym_preproc_pragma] = STATE(1813), - [sym_preproc_nullable] = STATE(1813), - [sym_preproc_error] = STATE(1813), - [sym_preproc_warning] = STATE(1813), - [sym_preproc_define] = STATE(1813), - [sym_preproc_undef] = STATE(1813), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5249), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1793), + [sym_preproc_endregion] = STATE(1793), + [sym_preproc_line] = STATE(1793), + [sym_preproc_pragma] = STATE(1793), + [sym_preproc_nullable] = STATE(1793), + [sym_preproc_error] = STATE(1793), + [sym_preproc_warning] = STATE(1793), + [sym_preproc_define] = STATE(1793), + [sym_preproc_undef] = STATE(1793), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348665,19 +345320,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348688,140 +345343,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1814] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5460), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1814), - [sym_preproc_endregion] = STATE(1814), - [sym_preproc_line] = STATE(1814), - [sym_preproc_pragma] = STATE(1814), - [sym_preproc_nullable] = STATE(1814), - [sym_preproc_error] = STATE(1814), - [sym_preproc_warning] = STATE(1814), - [sym_preproc_define] = STATE(1814), - [sym_preproc_undef] = STATE(1814), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1794] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5250), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1794), + [sym_preproc_endregion] = STATE(1794), + [sym_preproc_line] = STATE(1794), + [sym_preproc_pragma] = STATE(1794), + [sym_preproc_nullable] = STATE(1794), + [sym_preproc_error] = STATE(1794), + [sym_preproc_warning] = STATE(1794), + [sym_preproc_define] = STATE(1794), + [sym_preproc_undef] = STATE(1794), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348834,19 +345489,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348857,108 +345512,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1815] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5347), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1815), - [sym_preproc_endregion] = STATE(1815), - [sym_preproc_line] = STATE(1815), - [sym_preproc_pragma] = STATE(1815), - [sym_preproc_nullable] = STATE(1815), - [sym_preproc_error] = STATE(1815), - [sym_preproc_warning] = STATE(1815), - [sym_preproc_define] = STATE(1815), - [sym_preproc_undef] = STATE(1815), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1795] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5251), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1795), + [sym_preproc_endregion] = STATE(1795), + [sym_preproc_line] = STATE(1795), + [sym_preproc_pragma] = STATE(1795), + [sym_preproc_nullable] = STATE(1795), + [sym_preproc_error] = STATE(1795), + [sym_preproc_warning] = STATE(1795), + [sym_preproc_define] = STATE(1795), + [sym_preproc_undef] = STATE(1795), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), @@ -348968,17 +345623,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -348987,10 +345642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349015,7 +345670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349031,160 +345686,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1816] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5933), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3376), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7355), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1816), - [sym_preproc_endregion] = STATE(1816), - [sym_preproc_line] = STATE(1816), - [sym_preproc_pragma] = STATE(1816), - [sym_preproc_nullable] = STATE(1816), - [sym_preproc_error] = STATE(1816), - [sym_preproc_warning] = STATE(1816), - [sym_preproc_define] = STATE(1816), - [sym_preproc_undef] = STATE(1816), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1796] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5954), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1796), + [sym_preproc_endregion] = STATE(1796), + [sym_preproc_line] = STATE(1796), + [sym_preproc_pragma] = STATE(1796), + [sym_preproc_nullable] = STATE(1796), + [sym_preproc_error] = STATE(1796), + [sym_preproc_warning] = STATE(1796), + [sym_preproc_define] = STATE(1796), + [sym_preproc_undef] = STATE(1796), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349195,478 +345850,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1817] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4331), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1817), - [sym_preproc_endregion] = STATE(1817), - [sym_preproc_line] = STATE(1817), - [sym_preproc_pragma] = STATE(1817), - [sym_preproc_nullable] = STATE(1817), - [sym_preproc_error] = STATE(1817), - [sym_preproc_warning] = STATE(1817), - [sym_preproc_define] = STATE(1817), - [sym_preproc_undef] = STATE(1817), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1797] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4838), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1797), + [sym_preproc_endregion] = STATE(1797), + [sym_preproc_line] = STATE(1797), + [sym_preproc_pragma] = STATE(1797), + [sym_preproc_nullable] = STATE(1797), + [sym_preproc_error] = STATE(1797), + [sym_preproc_warning] = STATE(1797), + [sym_preproc_define] = STATE(1797), + [sym_preproc_undef] = STATE(1797), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1818] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4333), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1818), - [sym_preproc_endregion] = STATE(1818), - [sym_preproc_line] = STATE(1818), - [sym_preproc_pragma] = STATE(1818), - [sym_preproc_nullable] = STATE(1818), - [sym_preproc_error] = STATE(1818), - [sym_preproc_warning] = STATE(1818), - [sym_preproc_define] = STATE(1818), - [sym_preproc_undef] = STATE(1818), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), - }, - [1819] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5233), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1819), - [sym_preproc_endregion] = STATE(1819), - [sym_preproc_line] = STATE(1819), - [sym_preproc_pragma] = STATE(1819), - [sym_preproc_nullable] = STATE(1819), - [sym_preproc_error] = STATE(1819), - [sym_preproc_warning] = STATE(1819), - [sym_preproc_define] = STATE(1819), - [sym_preproc_undef] = STATE(1819), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349679,19 +345996,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349702,140 +346019,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1820] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1820), - [sym_preproc_endregion] = STATE(1820), - [sym_preproc_line] = STATE(1820), - [sym_preproc_pragma] = STATE(1820), - [sym_preproc_nullable] = STATE(1820), - [sym_preproc_error] = STATE(1820), - [sym_preproc_warning] = STATE(1820), - [sym_preproc_define] = STATE(1820), - [sym_preproc_undef] = STATE(1820), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1798] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3173), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1798), + [sym_preproc_endregion] = STATE(1798), + [sym_preproc_line] = STATE(1798), + [sym_preproc_pragma] = STATE(1798), + [sym_preproc_nullable] = STATE(1798), + [sym_preproc_error] = STATE(1798), + [sym_preproc_warning] = STATE(1798), + [sym_preproc_define] = STATE(1798), + [sym_preproc_undef] = STATE(1798), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349848,19 +346165,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349871,140 +346188,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1821] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5235), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1821), - [sym_preproc_endregion] = STATE(1821), - [sym_preproc_line] = STATE(1821), - [sym_preproc_pragma] = STATE(1821), - [sym_preproc_nullable] = STATE(1821), - [sym_preproc_error] = STATE(1821), - [sym_preproc_warning] = STATE(1821), - [sym_preproc_define] = STATE(1821), - [sym_preproc_undef] = STATE(1821), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1799] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4839), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1799), + [sym_preproc_endregion] = STATE(1799), + [sym_preproc_line] = STATE(1799), + [sym_preproc_pragma] = STATE(1799), + [sym_preproc_nullable] = STATE(1799), + [sym_preproc_error] = STATE(1799), + [sym_preproc_warning] = STATE(1799), + [sym_preproc_define] = STATE(1799), + [sym_preproc_undef] = STATE(1799), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350017,19 +346334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350040,108 +346357,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1822] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1800] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4883), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1822), - [sym_preproc_endregion] = STATE(1822), - [sym_preproc_line] = STATE(1822), - [sym_preproc_pragma] = STATE(1822), - [sym_preproc_nullable] = STATE(1822), - [sym_preproc_error] = STATE(1822), - [sym_preproc_warning] = STATE(1822), - [sym_preproc_define] = STATE(1822), - [sym_preproc_undef] = STATE(1822), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4840), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1800), + [sym_preproc_endregion] = STATE(1800), + [sym_preproc_line] = STATE(1800), + [sym_preproc_pragma] = STATE(1800), + [sym_preproc_nullable] = STATE(1800), + [sym_preproc_error] = STATE(1800), + [sym_preproc_warning] = STATE(1800), + [sym_preproc_define] = STATE(1800), + [sym_preproc_undef] = STATE(1800), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -350151,17 +346468,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -350170,10 +346487,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350198,7 +346515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350214,135 +346531,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1823] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5241), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1823), - [sym_preproc_endregion] = STATE(1823), - [sym_preproc_line] = STATE(1823), - [sym_preproc_pragma] = STATE(1823), - [sym_preproc_nullable] = STATE(1823), - [sym_preproc_error] = STATE(1823), - [sym_preproc_warning] = STATE(1823), - [sym_preproc_define] = STATE(1823), - [sym_preproc_undef] = STATE(1823), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1801] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4841), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1801), + [sym_preproc_endregion] = STATE(1801), + [sym_preproc_line] = STATE(1801), + [sym_preproc_pragma] = STATE(1801), + [sym_preproc_nullable] = STATE(1801), + [sym_preproc_error] = STATE(1801), + [sym_preproc_warning] = STATE(1801), + [sym_preproc_define] = STATE(1801), + [sym_preproc_undef] = STATE(1801), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350355,19 +346672,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350378,140 +346695,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1824] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5243), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1824), - [sym_preproc_endregion] = STATE(1824), - [sym_preproc_line] = STATE(1824), - [sym_preproc_pragma] = STATE(1824), - [sym_preproc_nullable] = STATE(1824), - [sym_preproc_error] = STATE(1824), - [sym_preproc_warning] = STATE(1824), - [sym_preproc_define] = STATE(1824), - [sym_preproc_undef] = STATE(1824), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1802] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4842), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1802), + [sym_preproc_endregion] = STATE(1802), + [sym_preproc_line] = STATE(1802), + [sym_preproc_pragma] = STATE(1802), + [sym_preproc_nullable] = STATE(1802), + [sym_preproc_error] = STATE(1802), + [sym_preproc_warning] = STATE(1802), + [sym_preproc_define] = STATE(1802), + [sym_preproc_undef] = STATE(1802), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350524,19 +346841,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350547,140 +346864,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1825] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5244), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1825), - [sym_preproc_endregion] = STATE(1825), - [sym_preproc_line] = STATE(1825), - [sym_preproc_pragma] = STATE(1825), - [sym_preproc_nullable] = STATE(1825), - [sym_preproc_error] = STATE(1825), - [sym_preproc_warning] = STATE(1825), - [sym_preproc_define] = STATE(1825), - [sym_preproc_undef] = STATE(1825), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1803] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4843), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1803), + [sym_preproc_endregion] = STATE(1803), + [sym_preproc_line] = STATE(1803), + [sym_preproc_pragma] = STATE(1803), + [sym_preproc_nullable] = STATE(1803), + [sym_preproc_error] = STATE(1803), + [sym_preproc_warning] = STATE(1803), + [sym_preproc_define] = STATE(1803), + [sym_preproc_undef] = STATE(1803), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350693,19 +347010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350716,140 +347033,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1826] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5245), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1826), - [sym_preproc_endregion] = STATE(1826), - [sym_preproc_line] = STATE(1826), - [sym_preproc_pragma] = STATE(1826), - [sym_preproc_nullable] = STATE(1826), - [sym_preproc_error] = STATE(1826), - [sym_preproc_warning] = STATE(1826), - [sym_preproc_define] = STATE(1826), - [sym_preproc_undef] = STATE(1826), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1804] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4844), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1804), + [sym_preproc_endregion] = STATE(1804), + [sym_preproc_line] = STATE(1804), + [sym_preproc_pragma] = STATE(1804), + [sym_preproc_nullable] = STATE(1804), + [sym_preproc_error] = STATE(1804), + [sym_preproc_warning] = STATE(1804), + [sym_preproc_define] = STATE(1804), + [sym_preproc_undef] = STATE(1804), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350862,19 +347179,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350885,140 +347202,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1827] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5246), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1827), - [sym_preproc_endregion] = STATE(1827), - [sym_preproc_line] = STATE(1827), - [sym_preproc_pragma] = STATE(1827), - [sym_preproc_nullable] = STATE(1827), - [sym_preproc_error] = STATE(1827), - [sym_preproc_warning] = STATE(1827), - [sym_preproc_define] = STATE(1827), - [sym_preproc_undef] = STATE(1827), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1805] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4845), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1805), + [sym_preproc_endregion] = STATE(1805), + [sym_preproc_line] = STATE(1805), + [sym_preproc_pragma] = STATE(1805), + [sym_preproc_nullable] = STATE(1805), + [sym_preproc_error] = STATE(1805), + [sym_preproc_warning] = STATE(1805), + [sym_preproc_define] = STATE(1805), + [sym_preproc_undef] = STATE(1805), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351031,19 +347348,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351054,140 +347371,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1828] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5247), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1828), - [sym_preproc_endregion] = STATE(1828), - [sym_preproc_line] = STATE(1828), - [sym_preproc_pragma] = STATE(1828), - [sym_preproc_nullable] = STATE(1828), - [sym_preproc_error] = STATE(1828), - [sym_preproc_warning] = STATE(1828), - [sym_preproc_define] = STATE(1828), - [sym_preproc_undef] = STATE(1828), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1806] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4846), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1806), + [sym_preproc_endregion] = STATE(1806), + [sym_preproc_line] = STATE(1806), + [sym_preproc_pragma] = STATE(1806), + [sym_preproc_nullable] = STATE(1806), + [sym_preproc_error] = STATE(1806), + [sym_preproc_warning] = STATE(1806), + [sym_preproc_define] = STATE(1806), + [sym_preproc_undef] = STATE(1806), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351200,1033 +347517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1829] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5248), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1829), - [sym_preproc_endregion] = STATE(1829), - [sym_preproc_line] = STATE(1829), - [sym_preproc_pragma] = STATE(1829), - [sym_preproc_nullable] = STATE(1829), - [sym_preproc_error] = STATE(1829), - [sym_preproc_warning] = STATE(1829), - [sym_preproc_define] = STATE(1829), - [sym_preproc_undef] = STATE(1829), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1830] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5249), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1830), - [sym_preproc_endregion] = STATE(1830), - [sym_preproc_line] = STATE(1830), - [sym_preproc_pragma] = STATE(1830), - [sym_preproc_nullable] = STATE(1830), - [sym_preproc_error] = STATE(1830), - [sym_preproc_warning] = STATE(1830), - [sym_preproc_define] = STATE(1830), - [sym_preproc_undef] = STATE(1830), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1831] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5250), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1831), - [sym_preproc_endregion] = STATE(1831), - [sym_preproc_line] = STATE(1831), - [sym_preproc_pragma] = STATE(1831), - [sym_preproc_nullable] = STATE(1831), - [sym_preproc_error] = STATE(1831), - [sym_preproc_warning] = STATE(1831), - [sym_preproc_define] = STATE(1831), - [sym_preproc_undef] = STATE(1831), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1832] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5251), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1832), - [sym_preproc_endregion] = STATE(1832), - [sym_preproc_line] = STATE(1832), - [sym_preproc_pragma] = STATE(1832), - [sym_preproc_nullable] = STATE(1832), - [sym_preproc_error] = STATE(1832), - [sym_preproc_warning] = STATE(1832), - [sym_preproc_define] = STATE(1832), - [sym_preproc_undef] = STATE(1832), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1833] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5252), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1833), - [sym_preproc_endregion] = STATE(1833), - [sym_preproc_line] = STATE(1833), - [sym_preproc_pragma] = STATE(1833), - [sym_preproc_nullable] = STATE(1833), - [sym_preproc_error] = STATE(1833), - [sym_preproc_warning] = STATE(1833), - [sym_preproc_define] = STATE(1833), - [sym_preproc_undef] = STATE(1833), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), - }, - [1834] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5253), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1834), - [sym_preproc_endregion] = STATE(1834), - [sym_preproc_line] = STATE(1834), - [sym_preproc_pragma] = STATE(1834), - [sym_preproc_nullable] = STATE(1834), - [sym_preproc_error] = STATE(1834), - [sym_preproc_warning] = STATE(1834), - [sym_preproc_define] = STATE(1834), - [sym_preproc_undef] = STATE(1834), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352237,140 +347540,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1835] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1835), - [sym_preproc_endregion] = STATE(1835), - [sym_preproc_line] = STATE(1835), - [sym_preproc_pragma] = STATE(1835), - [sym_preproc_nullable] = STATE(1835), - [sym_preproc_error] = STATE(1835), - [sym_preproc_warning] = STATE(1835), - [sym_preproc_define] = STATE(1835), - [sym_preproc_undef] = STATE(1835), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1807] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1807), + [sym_preproc_endregion] = STATE(1807), + [sym_preproc_line] = STATE(1807), + [sym_preproc_pragma] = STATE(1807), + [sym_preproc_nullable] = STATE(1807), + [sym_preproc_error] = STATE(1807), + [sym_preproc_warning] = STATE(1807), + [sym_preproc_define] = STATE(1807), + [sym_preproc_undef] = STATE(1807), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352383,19 +347686,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352406,108 +347709,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1836] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1808] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4834), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1836), - [sym_preproc_endregion] = STATE(1836), - [sym_preproc_line] = STATE(1836), - [sym_preproc_pragma] = STATE(1836), - [sym_preproc_nullable] = STATE(1836), - [sym_preproc_error] = STATE(1836), - [sym_preproc_warning] = STATE(1836), - [sym_preproc_define] = STATE(1836), - [sym_preproc_undef] = STATE(1836), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4848), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1808), + [sym_preproc_endregion] = STATE(1808), + [sym_preproc_line] = STATE(1808), + [sym_preproc_pragma] = STATE(1808), + [sym_preproc_nullable] = STATE(1808), + [sym_preproc_error] = STATE(1808), + [sym_preproc_warning] = STATE(1808), + [sym_preproc_define] = STATE(1808), + [sym_preproc_undef] = STATE(1808), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -352517,17 +347820,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -352536,10 +347839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352564,7 +347867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352580,103 +347883,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1837] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1809] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1837), - [sym_preproc_endregion] = STATE(1837), - [sym_preproc_line] = STATE(1837), - [sym_preproc_pragma] = STATE(1837), - [sym_preproc_nullable] = STATE(1837), - [sym_preproc_error] = STATE(1837), - [sym_preproc_warning] = STATE(1837), - [sym_preproc_define] = STATE(1837), - [sym_preproc_undef] = STATE(1837), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4849), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1809), + [sym_preproc_endregion] = STATE(1809), + [sym_preproc_line] = STATE(1809), + [sym_preproc_pragma] = STATE(1809), + [sym_preproc_nullable] = STATE(1809), + [sym_preproc_error] = STATE(1809), + [sym_preproc_warning] = STATE(1809), + [sym_preproc_define] = STATE(1809), + [sym_preproc_undef] = STATE(1809), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -352686,17 +347989,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -352705,10 +348008,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352733,7 +348036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352749,103 +348052,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1838] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1810] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4835), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1838), - [sym_preproc_endregion] = STATE(1838), - [sym_preproc_line] = STATE(1838), - [sym_preproc_pragma] = STATE(1838), - [sym_preproc_nullable] = STATE(1838), - [sym_preproc_error] = STATE(1838), - [sym_preproc_warning] = STATE(1838), - [sym_preproc_define] = STATE(1838), - [sym_preproc_undef] = STATE(1838), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4850), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1810), + [sym_preproc_endregion] = STATE(1810), + [sym_preproc_line] = STATE(1810), + [sym_preproc_pragma] = STATE(1810), + [sym_preproc_nullable] = STATE(1810), + [sym_preproc_error] = STATE(1810), + [sym_preproc_warning] = STATE(1810), + [sym_preproc_define] = STATE(1810), + [sym_preproc_undef] = STATE(1810), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -352855,17 +348158,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -352874,10 +348177,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352902,7 +348205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352918,103 +348221,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1839] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1811] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4836), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1839), - [sym_preproc_endregion] = STATE(1839), - [sym_preproc_line] = STATE(1839), - [sym_preproc_pragma] = STATE(1839), - [sym_preproc_nullable] = STATE(1839), - [sym_preproc_error] = STATE(1839), - [sym_preproc_warning] = STATE(1839), - [sym_preproc_define] = STATE(1839), - [sym_preproc_undef] = STATE(1839), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4851), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1811), + [sym_preproc_endregion] = STATE(1811), + [sym_preproc_line] = STATE(1811), + [sym_preproc_pragma] = STATE(1811), + [sym_preproc_nullable] = STATE(1811), + [sym_preproc_error] = STATE(1811), + [sym_preproc_warning] = STATE(1811), + [sym_preproc_define] = STATE(1811), + [sym_preproc_undef] = STATE(1811), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -353024,17 +348327,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -353043,10 +348346,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353071,7 +348374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353087,103 +348390,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1840] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1812] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4837), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1840), - [sym_preproc_endregion] = STATE(1840), - [sym_preproc_line] = STATE(1840), - [sym_preproc_pragma] = STATE(1840), - [sym_preproc_nullable] = STATE(1840), - [sym_preproc_error] = STATE(1840), - [sym_preproc_warning] = STATE(1840), - [sym_preproc_define] = STATE(1840), - [sym_preproc_undef] = STATE(1840), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3184), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1812), + [sym_preproc_endregion] = STATE(1812), + [sym_preproc_line] = STATE(1812), + [sym_preproc_pragma] = STATE(1812), + [sym_preproc_nullable] = STATE(1812), + [sym_preproc_error] = STATE(1812), + [sym_preproc_warning] = STATE(1812), + [sym_preproc_define] = STATE(1812), + [sym_preproc_undef] = STATE(1812), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -353193,17 +348496,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -353212,10 +348515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353240,7 +348543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353256,135 +348559,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1841] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4838), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1841), - [sym_preproc_endregion] = STATE(1841), - [sym_preproc_line] = STATE(1841), - [sym_preproc_pragma] = STATE(1841), - [sym_preproc_nullable] = STATE(1841), - [sym_preproc_error] = STATE(1841), - [sym_preproc_warning] = STATE(1841), - [sym_preproc_define] = STATE(1841), - [sym_preproc_undef] = STATE(1841), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1813] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4972), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1813), + [sym_preproc_endregion] = STATE(1813), + [sym_preproc_line] = STATE(1813), + [sym_preproc_pragma] = STATE(1813), + [sym_preproc_nullable] = STATE(1813), + [sym_preproc_error] = STATE(1813), + [sym_preproc_warning] = STATE(1813), + [sym_preproc_define] = STATE(1813), + [sym_preproc_undef] = STATE(1813), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353397,19 +348700,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353420,108 +348723,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1842] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), + [1814] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4839), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1842), - [sym_preproc_endregion] = STATE(1842), - [sym_preproc_line] = STATE(1842), - [sym_preproc_pragma] = STATE(1842), - [sym_preproc_nullable] = STATE(1842), - [sym_preproc_error] = STATE(1842), - [sym_preproc_warning] = STATE(1842), - [sym_preproc_define] = STATE(1842), - [sym_preproc_undef] = STATE(1842), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4853), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1814), + [sym_preproc_endregion] = STATE(1814), + [sym_preproc_line] = STATE(1814), + [sym_preproc_pragma] = STATE(1814), + [sym_preproc_nullable] = STATE(1814), + [sym_preproc_error] = STATE(1814), + [sym_preproc_warning] = STATE(1814), + [sym_preproc_define] = STATE(1814), + [sym_preproc_undef] = STATE(1814), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), [anon_sym_LBRACE] = ACTIONS(1167), [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), @@ -353531,17 +348834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), [anon_sym_true] = ACTIONS(1181), [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1187), @@ -353550,10 +348853,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353578,7 +348881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1215), [anon_sym_DQUOTE] = ACTIONS(1217), [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353594,135 +348897,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1225), [sym_raw_string_start] = ACTIONS(1227), }, - [1843] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4840), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1843), - [sym_preproc_endregion] = STATE(1843), - [sym_preproc_line] = STATE(1843), - [sym_preproc_pragma] = STATE(1843), - [sym_preproc_nullable] = STATE(1843), - [sym_preproc_error] = STATE(1843), - [sym_preproc_warning] = STATE(1843), - [sym_preproc_define] = STATE(1843), - [sym_preproc_undef] = STATE(1843), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1815] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5179), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1815), + [sym_preproc_endregion] = STATE(1815), + [sym_preproc_line] = STATE(1815), + [sym_preproc_pragma] = STATE(1815), + [sym_preproc_nullable] = STATE(1815), + [sym_preproc_error] = STATE(1815), + [sym_preproc_warning] = STATE(1815), + [sym_preproc_define] = STATE(1815), + [sym_preproc_undef] = STATE(1815), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353735,19 +349038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353758,985 +349061,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1844] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4841), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1844), - [sym_preproc_endregion] = STATE(1844), - [sym_preproc_line] = STATE(1844), - [sym_preproc_pragma] = STATE(1844), - [sym_preproc_nullable] = STATE(1844), - [sym_preproc_error] = STATE(1844), - [sym_preproc_warning] = STATE(1844), - [sym_preproc_define] = STATE(1844), - [sym_preproc_undef] = STATE(1844), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1816] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5182), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1816), + [sym_preproc_endregion] = STATE(1816), + [sym_preproc_line] = STATE(1816), + [sym_preproc_pragma] = STATE(1816), + [sym_preproc_nullable] = STATE(1816), + [sym_preproc_error] = STATE(1816), + [sym_preproc_warning] = STATE(1816), + [sym_preproc_define] = STATE(1816), + [sym_preproc_undef] = STATE(1816), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1845] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4842), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1845), - [sym_preproc_endregion] = STATE(1845), - [sym_preproc_line] = STATE(1845), - [sym_preproc_pragma] = STATE(1845), - [sym_preproc_nullable] = STATE(1845), - [sym_preproc_error] = STATE(1845), - [sym_preproc_warning] = STATE(1845), - [sym_preproc_define] = STATE(1845), - [sym_preproc_undef] = STATE(1845), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1846] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4844), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1846), - [sym_preproc_endregion] = STATE(1846), - [sym_preproc_line] = STATE(1846), - [sym_preproc_pragma] = STATE(1846), - [sym_preproc_nullable] = STATE(1846), - [sym_preproc_error] = STATE(1846), - [sym_preproc_warning] = STATE(1846), - [sym_preproc_define] = STATE(1846), - [sym_preproc_undef] = STATE(1846), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1847] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4845), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1847), - [sym_preproc_endregion] = STATE(1847), - [sym_preproc_line] = STATE(1847), - [sym_preproc_pragma] = STATE(1847), - [sym_preproc_nullable] = STATE(1847), - [sym_preproc_error] = STATE(1847), - [sym_preproc_warning] = STATE(1847), - [sym_preproc_define] = STATE(1847), - [sym_preproc_undef] = STATE(1847), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1848] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4846), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1848), - [sym_preproc_endregion] = STATE(1848), - [sym_preproc_line] = STATE(1848), - [sym_preproc_pragma] = STATE(1848), - [sym_preproc_nullable] = STATE(1848), - [sym_preproc_error] = STATE(1848), - [sym_preproc_warning] = STATE(1848), - [sym_preproc_define] = STATE(1848), - [sym_preproc_undef] = STATE(1848), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1849] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4848), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1849), - [sym_preproc_endregion] = STATE(1849), - [sym_preproc_line] = STATE(1849), - [sym_preproc_pragma] = STATE(1849), - [sym_preproc_nullable] = STATE(1849), - [sym_preproc_error] = STATE(1849), - [sym_preproc_warning] = STATE(1849), - [sym_preproc_define] = STATE(1849), - [sym_preproc_undef] = STATE(1849), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354749,19 +349207,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354772,140 +349230,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1850] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1850), - [sym_preproc_endregion] = STATE(1850), - [sym_preproc_line] = STATE(1850), - [sym_preproc_pragma] = STATE(1850), - [sym_preproc_nullable] = STATE(1850), - [sym_preproc_error] = STATE(1850), - [sym_preproc_warning] = STATE(1850), - [sym_preproc_define] = STATE(1850), - [sym_preproc_undef] = STATE(1850), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1817] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4708), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1817), + [sym_preproc_endregion] = STATE(1817), + [sym_preproc_line] = STATE(1817), + [sym_preproc_pragma] = STATE(1817), + [sym_preproc_nullable] = STATE(1817), + [sym_preproc_error] = STATE(1817), + [sym_preproc_warning] = STATE(1817), + [sym_preproc_define] = STATE(1817), + [sym_preproc_undef] = STATE(1817), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354918,19 +349376,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354941,140 +349399,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1851] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4853), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1851), - [sym_preproc_endregion] = STATE(1851), - [sym_preproc_line] = STATE(1851), - [sym_preproc_pragma] = STATE(1851), - [sym_preproc_nullable] = STATE(1851), - [sym_preproc_error] = STATE(1851), - [sym_preproc_warning] = STATE(1851), - [sym_preproc_define] = STATE(1851), - [sym_preproc_undef] = STATE(1851), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1818] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4943), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1818), + [sym_preproc_endregion] = STATE(1818), + [sym_preproc_line] = STATE(1818), + [sym_preproc_pragma] = STATE(1818), + [sym_preproc_nullable] = STATE(1818), + [sym_preproc_error] = STATE(1818), + [sym_preproc_warning] = STATE(1818), + [sym_preproc_define] = STATE(1818), + [sym_preproc_undef] = STATE(1818), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355087,19 +349545,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355110,128 +349568,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1852] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3201), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), + [1819] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4370), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3252), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6227), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7439), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1852), - [sym_preproc_endregion] = STATE(1852), - [sym_preproc_line] = STATE(1852), - [sym_preproc_pragma] = STATE(1852), - [sym_preproc_nullable] = STATE(1852), - [sym_preproc_error] = STATE(1852), - [sym_preproc_warning] = STATE(1852), - [sym_preproc_define] = STATE(1852), - [sym_preproc_undef] = STATE(1852), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7553), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1819), + [sym_preproc_endregion] = STATE(1819), + [sym_preproc_line] = STATE(1819), + [sym_preproc_pragma] = STATE(1819), + [sym_preproc_nullable] = STATE(1819), + [sym_preproc_error] = STATE(1819), + [sym_preproc_warning] = STATE(1819), + [sym_preproc_define] = STATE(1819), + [sym_preproc_undef] = STATE(1819), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), [sym__identifier_token] = ACTIONS(1391), [anon_sym_alias] = ACTIONS(1393), [anon_sym_global] = ACTIONS(1393), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1399), [anon_sym_LBRACE] = ACTIONS(1401), [anon_sym_delegate] = ACTIONS(1403), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1405), [anon_sym_where] = ACTIONS(1393), [anon_sym_notnull] = ACTIONS(1393), [anon_sym_unmanaged] = ACTIONS(1393), [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), [anon_sym_true] = ACTIONS(1413), [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), [anon_sym_this] = ACTIONS(1417), [anon_sym_scoped] = ACTIONS(1419), [anon_sym_base] = ACTIONS(1421), @@ -355240,10 +349698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1407), [anon_sym_yield] = ACTIONS(1393), [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1429), [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1433), [anon_sym_from] = ACTIONS(1435), [anon_sym_into] = ACTIONS(1393), [anon_sym_join] = ACTIONS(1393), @@ -355284,123 +349742,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1463), [sym_raw_string_start] = ACTIONS(1465), }, - [1853] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), + [1820] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3964), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1853), - [sym_preproc_endregion] = STATE(1853), - [sym_preproc_line] = STATE(1853), - [sym_preproc_pragma] = STATE(1853), - [sym_preproc_nullable] = STATE(1853), - [sym_preproc_error] = STATE(1853), - [sym_preproc_warning] = STATE(1853), - [sym_preproc_define] = STATE(1853), - [sym_preproc_undef] = STATE(1853), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4452), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1820), + [sym_preproc_endregion] = STATE(1820), + [sym_preproc_line] = STATE(1820), + [sym_preproc_pragma] = STATE(1820), + [sym_preproc_nullable] = STATE(1820), + [sym_preproc_error] = STATE(1820), + [sym_preproc_warning] = STATE(1820), + [sym_preproc_define] = STATE(1820), + [sym_preproc_undef] = STATE(1820), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -355409,10 +349867,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355453,135 +349911,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1854] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3965), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1854), - [sym_preproc_endregion] = STATE(1854), - [sym_preproc_line] = STATE(1854), - [sym_preproc_pragma] = STATE(1854), - [sym_preproc_nullable] = STATE(1854), - [sym_preproc_error] = STATE(1854), - [sym_preproc_warning] = STATE(1854), - [sym_preproc_define] = STATE(1854), - [sym_preproc_undef] = STATE(1854), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1821] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4973), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1821), + [sym_preproc_endregion] = STATE(1821), + [sym_preproc_line] = STATE(1821), + [sym_preproc_pragma] = STATE(1821), + [sym_preproc_nullable] = STATE(1821), + [sym_preproc_error] = STATE(1821), + [sym_preproc_warning] = STATE(1821), + [sym_preproc_define] = STATE(1821), + [sym_preproc_undef] = STATE(1821), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355594,19 +350052,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355617,128 +350075,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1855] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3993), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1855), - [sym_preproc_endregion] = STATE(1855), - [sym_preproc_line] = STATE(1855), - [sym_preproc_pragma] = STATE(1855), - [sym_preproc_nullable] = STATE(1855), - [sym_preproc_error] = STATE(1855), - [sym_preproc_warning] = STATE(1855), - [sym_preproc_define] = STATE(1855), - [sym_preproc_undef] = STATE(1855), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1822] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3960), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1822), + [sym_preproc_endregion] = STATE(1822), + [sym_preproc_line] = STATE(1822), + [sym_preproc_pragma] = STATE(1822), + [sym_preproc_nullable] = STATE(1822), + [sym_preproc_error] = STATE(1822), + [sym_preproc_warning] = STATE(1822), + [sym_preproc_define] = STATE(1822), + [sym_preproc_undef] = STATE(1822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -355747,10 +350205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355791,123 +350249,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1856] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2947), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1856), - [sym_preproc_endregion] = STATE(1856), - [sym_preproc_line] = STATE(1856), - [sym_preproc_pragma] = STATE(1856), - [sym_preproc_nullable] = STATE(1856), - [sym_preproc_error] = STATE(1856), - [sym_preproc_warning] = STATE(1856), - [sym_preproc_define] = STATE(1856), - [sym_preproc_undef] = STATE(1856), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1823] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3962), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1823), + [sym_preproc_endregion] = STATE(1823), + [sym_preproc_line] = STATE(1823), + [sym_preproc_pragma] = STATE(1823), + [sym_preproc_nullable] = STATE(1823), + [sym_preproc_error] = STATE(1823), + [sym_preproc_warning] = STATE(1823), + [sym_preproc_define] = STATE(1823), + [sym_preproc_undef] = STATE(1823), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -355916,10 +350374,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355960,123 +350418,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1857] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3996), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1857), - [sym_preproc_endregion] = STATE(1857), - [sym_preproc_line] = STATE(1857), - [sym_preproc_pragma] = STATE(1857), - [sym_preproc_nullable] = STATE(1857), - [sym_preproc_error] = STATE(1857), - [sym_preproc_warning] = STATE(1857), - [sym_preproc_define] = STATE(1857), - [sym_preproc_undef] = STATE(1857), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1824] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3952), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1824), + [sym_preproc_endregion] = STATE(1824), + [sym_preproc_line] = STATE(1824), + [sym_preproc_pragma] = STATE(1824), + [sym_preproc_nullable] = STATE(1824), + [sym_preproc_error] = STATE(1824), + [sym_preproc_warning] = STATE(1824), + [sym_preproc_define] = STATE(1824), + [sym_preproc_undef] = STATE(1824), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -356085,10 +350543,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356129,123 +350587,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1858] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1858), - [sym_preproc_endregion] = STATE(1858), - [sym_preproc_line] = STATE(1858), - [sym_preproc_pragma] = STATE(1858), - [sym_preproc_nullable] = STATE(1858), - [sym_preproc_error] = STATE(1858), - [sym_preproc_warning] = STATE(1858), - [sym_preproc_define] = STATE(1858), - [sym_preproc_undef] = STATE(1858), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1825] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1825), + [sym_preproc_endregion] = STATE(1825), + [sym_preproc_line] = STATE(1825), + [sym_preproc_pragma] = STATE(1825), + [sym_preproc_nullable] = STATE(1825), + [sym_preproc_error] = STATE(1825), + [sym_preproc_warning] = STATE(1825), + [sym_preproc_define] = STATE(1825), + [sym_preproc_undef] = STATE(1825), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -356254,10 +350712,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356298,135 +350756,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1859] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4055), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1859), - [sym_preproc_endregion] = STATE(1859), - [sym_preproc_line] = STATE(1859), - [sym_preproc_pragma] = STATE(1859), - [sym_preproc_nullable] = STATE(1859), - [sym_preproc_error] = STATE(1859), - [sym_preproc_warning] = STATE(1859), - [sym_preproc_define] = STATE(1859), - [sym_preproc_undef] = STATE(1859), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1826] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5707), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5458), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3719), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6200), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7570), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1826), + [sym_preproc_endregion] = STATE(1826), + [sym_preproc_line] = STATE(1826), + [sym_preproc_pragma] = STATE(1826), + [sym_preproc_nullable] = STATE(1826), + [sym_preproc_error] = STATE(1826), + [sym_preproc_warning] = STATE(1826), + [sym_preproc_define] = STATE(1826), + [sym_preproc_undef] = STATE(1826), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_ref] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1123), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1237), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356439,19 +350897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356462,128 +350920,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1860] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4056), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1860), - [sym_preproc_endregion] = STATE(1860), - [sym_preproc_line] = STATE(1860), - [sym_preproc_pragma] = STATE(1860), - [sym_preproc_nullable] = STATE(1860), - [sym_preproc_error] = STATE(1860), - [sym_preproc_warning] = STATE(1860), - [sym_preproc_define] = STATE(1860), - [sym_preproc_undef] = STATE(1860), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1827] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3953), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1827), + [sym_preproc_endregion] = STATE(1827), + [sym_preproc_line] = STATE(1827), + [sym_preproc_pragma] = STATE(1827), + [sym_preproc_nullable] = STATE(1827), + [sym_preproc_error] = STATE(1827), + [sym_preproc_warning] = STATE(1827), + [sym_preproc_define] = STATE(1827), + [sym_preproc_undef] = STATE(1827), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -356592,10 +351050,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356636,135 +351094,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1861] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4057), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1861), - [sym_preproc_endregion] = STATE(1861), - [sym_preproc_line] = STATE(1861), - [sym_preproc_pragma] = STATE(1861), - [sym_preproc_nullable] = STATE(1861), - [sym_preproc_error] = STATE(1861), - [sym_preproc_warning] = STATE(1861), - [sym_preproc_define] = STATE(1861), - [sym_preproc_undef] = STATE(1861), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1828] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5173), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1828), + [sym_preproc_endregion] = STATE(1828), + [sym_preproc_line] = STATE(1828), + [sym_preproc_pragma] = STATE(1828), + [sym_preproc_nullable] = STATE(1828), + [sym_preproc_error] = STATE(1828), + [sym_preproc_warning] = STATE(1828), + [sym_preproc_define] = STATE(1828), + [sym_preproc_undef] = STATE(1828), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_this] = ACTIONS(1267), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1269), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), - [anon_sym_unchecked] = ACTIONS(1257), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356777,19 +351235,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___makeref] = ACTIONS(1287), - [anon_sym___reftype] = ACTIONS(1289), - [anon_sym___refvalue] = ACTIONS(1291), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1301), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356800,128 +351258,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1862] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4001), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1862), - [sym_preproc_endregion] = STATE(1862), - [sym_preproc_line] = STATE(1862), - [sym_preproc_pragma] = STATE(1862), - [sym_preproc_nullable] = STATE(1862), - [sym_preproc_error] = STATE(1862), - [sym_preproc_warning] = STATE(1862), - [sym_preproc_define] = STATE(1862), - [sym_preproc_undef] = STATE(1862), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1829] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3956), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1829), + [sym_preproc_endregion] = STATE(1829), + [sym_preproc_line] = STATE(1829), + [sym_preproc_pragma] = STATE(1829), + [sym_preproc_nullable] = STATE(1829), + [sym_preproc_error] = STATE(1829), + [sym_preproc_warning] = STATE(1829), + [sym_preproc_define] = STATE(1829), + [sym_preproc_undef] = STATE(1829), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -356930,10 +351388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356974,123 +351432,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1863] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1863), - [sym_preproc_endregion] = STATE(1863), - [sym_preproc_line] = STATE(1863), - [sym_preproc_pragma] = STATE(1863), - [sym_preproc_nullable] = STATE(1863), - [sym_preproc_error] = STATE(1863), - [sym_preproc_warning] = STATE(1863), - [sym_preproc_define] = STATE(1863), - [sym_preproc_undef] = STATE(1863), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1830] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4058), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1830), + [sym_preproc_endregion] = STATE(1830), + [sym_preproc_line] = STATE(1830), + [sym_preproc_pragma] = STATE(1830), + [sym_preproc_nullable] = STATE(1830), + [sym_preproc_error] = STATE(1830), + [sym_preproc_warning] = STATE(1830), + [sym_preproc_define] = STATE(1830), + [sym_preproc_undef] = STATE(1830), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357099,10 +351557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357143,123 +351601,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1864] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4004), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1864), - [sym_preproc_endregion] = STATE(1864), - [sym_preproc_line] = STATE(1864), - [sym_preproc_pragma] = STATE(1864), - [sym_preproc_nullable] = STATE(1864), - [sym_preproc_error] = STATE(1864), - [sym_preproc_warning] = STATE(1864), - [sym_preproc_define] = STATE(1864), - [sym_preproc_undef] = STATE(1864), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1831] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4059), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1831), + [sym_preproc_endregion] = STATE(1831), + [sym_preproc_line] = STATE(1831), + [sym_preproc_pragma] = STATE(1831), + [sym_preproc_nullable] = STATE(1831), + [sym_preproc_error] = STATE(1831), + [sym_preproc_warning] = STATE(1831), + [sym_preproc_define] = STATE(1831), + [sym_preproc_undef] = STATE(1831), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357268,10 +351726,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357312,123 +351770,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1865] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4058), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1865), - [sym_preproc_endregion] = STATE(1865), - [sym_preproc_line] = STATE(1865), - [sym_preproc_pragma] = STATE(1865), - [sym_preproc_nullable] = STATE(1865), - [sym_preproc_error] = STATE(1865), - [sym_preproc_warning] = STATE(1865), - [sym_preproc_define] = STATE(1865), - [sym_preproc_undef] = STATE(1865), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1832] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4060), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1832), + [sym_preproc_endregion] = STATE(1832), + [sym_preproc_line] = STATE(1832), + [sym_preproc_pragma] = STATE(1832), + [sym_preproc_nullable] = STATE(1832), + [sym_preproc_error] = STATE(1832), + [sym_preproc_warning] = STATE(1832), + [sym_preproc_define] = STATE(1832), + [sym_preproc_undef] = STATE(1832), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357437,10 +351895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357481,123 +351939,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1866] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4005), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1866), - [sym_preproc_endregion] = STATE(1866), - [sym_preproc_line] = STATE(1866), - [sym_preproc_pragma] = STATE(1866), - [sym_preproc_nullable] = STATE(1866), - [sym_preproc_error] = STATE(1866), - [sym_preproc_warning] = STATE(1866), - [sym_preproc_define] = STATE(1866), - [sym_preproc_undef] = STATE(1866), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1833] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3959), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1833), + [sym_preproc_endregion] = STATE(1833), + [sym_preproc_line] = STATE(1833), + [sym_preproc_pragma] = STATE(1833), + [sym_preproc_nullable] = STATE(1833), + [sym_preproc_error] = STATE(1833), + [sym_preproc_warning] = STATE(1833), + [sym_preproc_define] = STATE(1833), + [sym_preproc_undef] = STATE(1833), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357606,10 +352064,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357650,123 +352108,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1867] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4007), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1867), - [sym_preproc_endregion] = STATE(1867), - [sym_preproc_line] = STATE(1867), - [sym_preproc_pragma] = STATE(1867), - [sym_preproc_nullable] = STATE(1867), - [sym_preproc_error] = STATE(1867), - [sym_preproc_warning] = STATE(1867), - [sym_preproc_define] = STATE(1867), - [sym_preproc_undef] = STATE(1867), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1834] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3964), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1834), + [sym_preproc_endregion] = STATE(1834), + [sym_preproc_line] = STATE(1834), + [sym_preproc_pragma] = STATE(1834), + [sym_preproc_nullable] = STATE(1834), + [sym_preproc_error] = STATE(1834), + [sym_preproc_warning] = STATE(1834), + [sym_preproc_define] = STATE(1834), + [sym_preproc_undef] = STATE(1834), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357775,10 +352233,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357819,123 +352277,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1868] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4008), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1868), - [sym_preproc_endregion] = STATE(1868), - [sym_preproc_line] = STATE(1868), - [sym_preproc_pragma] = STATE(1868), - [sym_preproc_nullable] = STATE(1868), - [sym_preproc_error] = STATE(1868), - [sym_preproc_warning] = STATE(1868), - [sym_preproc_define] = STATE(1868), - [sym_preproc_undef] = STATE(1868), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1835] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3966), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1835), + [sym_preproc_endregion] = STATE(1835), + [sym_preproc_line] = STATE(1835), + [sym_preproc_pragma] = STATE(1835), + [sym_preproc_nullable] = STATE(1835), + [sym_preproc_error] = STATE(1835), + [sym_preproc_warning] = STATE(1835), + [sym_preproc_define] = STATE(1835), + [sym_preproc_undef] = STATE(1835), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -357944,10 +352402,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357988,123 +352446,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1869] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4010), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1869), - [sym_preproc_endregion] = STATE(1869), - [sym_preproc_line] = STATE(1869), - [sym_preproc_pragma] = STATE(1869), - [sym_preproc_nullable] = STATE(1869), - [sym_preproc_error] = STATE(1869), - [sym_preproc_warning] = STATE(1869), - [sym_preproc_define] = STATE(1869), - [sym_preproc_undef] = STATE(1869), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1836] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4061), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1836), + [sym_preproc_endregion] = STATE(1836), + [sym_preproc_line] = STATE(1836), + [sym_preproc_pragma] = STATE(1836), + [sym_preproc_nullable] = STATE(1836), + [sym_preproc_error] = STATE(1836), + [sym_preproc_warning] = STATE(1836), + [sym_preproc_define] = STATE(1836), + [sym_preproc_undef] = STATE(1836), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -358113,10 +352571,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358157,123 +352615,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1870] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2941), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1870), - [sym_preproc_endregion] = STATE(1870), - [sym_preproc_line] = STATE(1870), - [sym_preproc_pragma] = STATE(1870), - [sym_preproc_nullable] = STATE(1870), - [sym_preproc_error] = STATE(1870), - [sym_preproc_warning] = STATE(1870), - [sym_preproc_define] = STATE(1870), - [sym_preproc_undef] = STATE(1870), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1837] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3967), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1837), + [sym_preproc_endregion] = STATE(1837), + [sym_preproc_line] = STATE(1837), + [sym_preproc_pragma] = STATE(1837), + [sym_preproc_nullable] = STATE(1837), + [sym_preproc_error] = STATE(1837), + [sym_preproc_warning] = STATE(1837), + [sym_preproc_define] = STATE(1837), + [sym_preproc_undef] = STATE(1837), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -358282,10 +352740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358326,304 +352784,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1871] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4882), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1871), - [sym_preproc_endregion] = STATE(1871), - [sym_preproc_line] = STATE(1871), - [sym_preproc_pragma] = STATE(1871), - [sym_preproc_nullable] = STATE(1871), - [sym_preproc_error] = STATE(1871), - [sym_preproc_warning] = STATE(1871), - [sym_preproc_define] = STATE(1871), - [sym_preproc_undef] = STATE(1871), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), - }, - [1872] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4885), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1872), - [sym_preproc_endregion] = STATE(1872), - [sym_preproc_line] = STATE(1872), - [sym_preproc_pragma] = STATE(1872), - [sym_preproc_nullable] = STATE(1872), - [sym_preproc_error] = STATE(1872), - [sym_preproc_warning] = STATE(1872), - [sym_preproc_define] = STATE(1872), - [sym_preproc_undef] = STATE(1872), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1838] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3969), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1838), + [sym_preproc_endregion] = STATE(1838), + [sym_preproc_line] = STATE(1838), + [sym_preproc_pragma] = STATE(1838), + [sym_preproc_nullable] = STATE(1838), + [sym_preproc_error] = STATE(1838), + [sym_preproc_warning] = STATE(1838), + [sym_preproc_define] = STATE(1838), + [sym_preproc_undef] = STATE(1838), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358636,19 +352925,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358659,128 +352948,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1873] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3685), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6231), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1873), - [sym_preproc_endregion] = STATE(1873), - [sym_preproc_line] = STATE(1873), - [sym_preproc_pragma] = STATE(1873), - [sym_preproc_nullable] = STATE(1873), - [sym_preproc_error] = STATE(1873), - [sym_preproc_warning] = STATE(1873), - [sym_preproc_define] = STATE(1873), - [sym_preproc_undef] = STATE(1873), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1839] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3970), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1839), + [sym_preproc_endregion] = STATE(1839), + [sym_preproc_line] = STATE(1839), + [sym_preproc_pragma] = STATE(1839), + [sym_preproc_nullable] = STATE(1839), + [sym_preproc_error] = STATE(1839), + [sym_preproc_warning] = STATE(1839), + [sym_preproc_define] = STATE(1839), + [sym_preproc_undef] = STATE(1839), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_ref] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -358789,10 +353078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1963), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358817,7 +353106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1297), [anon_sym_DQUOTE] = ACTIONS(1299), [sym_verbatim_string_literal] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1969), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358833,123 +353122,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1874] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5950), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(2945), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3118), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6206), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7553), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1874), - [sym_preproc_endregion] = STATE(1874), - [sym_preproc_line] = STATE(1874), - [sym_preproc_pragma] = STATE(1874), - [sym_preproc_nullable] = STATE(1874), - [sym_preproc_error] = STATE(1874), - [sym_preproc_warning] = STATE(1874), - [sym_preproc_define] = STATE(1874), - [sym_preproc_undef] = STATE(1874), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1840] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3972), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1840), + [sym_preproc_endregion] = STATE(1840), + [sym_preproc_line] = STATE(1840), + [sym_preproc_pragma] = STATE(1840), + [sym_preproc_nullable] = STATE(1840), + [sym_preproc_error] = STATE(1840), + [sym_preproc_warning] = STATE(1840), + [sym_preproc_define] = STATE(1840), + [sym_preproc_undef] = STATE(1840), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_ref] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -358958,10 +353247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(1839), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359002,135 +353291,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1875] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2648), - [sym__name] = STATE(5931), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(3377), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3375), - [sym_assignment_expression] = STATE(3378), - [sym_binary_expression] = STATE(3375), - [sym_postfix_unary_expression] = STATE(3378), - [sym_prefix_unary_expression] = STATE(3378), - [sym__pointer_indirection_expression] = STATE(2645), - [sym_query_expression] = STATE(3375), - [sym_from_clause] = STATE(6212), - [sym_conditional_expression] = STATE(3375), - [sym_conditional_access_expression] = STATE(3375), - [sym_as_expression] = STATE(3375), - [sym_is_expression] = STATE(3375), - [sym_is_pattern_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_checked_expression] = STATE(3375), - [sym_invocation_expression] = STATE(3378), - [sym_switch_expression] = STATE(3375), - [sym_await_expression] = STATE(3378), - [sym_throw_expression] = STATE(3375), - [sym_element_access_expression] = STATE(2645), - [sym_interpolated_string_expression] = STATE(3375), - [sym_member_access_expression] = STATE(2645), - [sym_object_creation_expression] = STATE(3378), - [sym_parenthesized_expression] = STATE(3378), - [sym__parenthesized_lvalue_expression] = STATE(2645), - [sym_lambda_expression] = STATE(3375), - [sym__lambda_expression_init] = STATE(7558), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3375), - [sym_anonymous_method_expression] = STATE(3375), - [sym_anonymous_object_creation_expression] = STATE(3375), - [sym_implicit_array_creation_expression] = STATE(3375), - [sym_implicit_object_creation_expression] = STATE(3375), - [sym_implicit_stackalloc_expression] = STATE(3375), - [sym_initializer_expression] = STATE(3375), - [sym_default_expression] = STATE(3375), - [sym_with_expression] = STATE(3375), - [sym_sizeof_expression] = STATE(3375), - [sym_typeof_expression] = STATE(3375), - [sym_makeref_expression] = STATE(3375), - [sym_ref_expression] = STATE(3375), - [sym_reftype_expression] = STATE(3375), - [sym_refvalue_expression] = STATE(3375), - [sym_stackalloc_expression] = STATE(3375), - [sym_range_expression] = STATE(3375), - [sym_tuple_expression] = STATE(2645), - [sym_literal] = STATE(3375), - [sym_character_literal] = STATE(3322), - [sym_string_literal] = STATE(3322), - [sym_raw_string_literal] = STATE(3322), - [sym_boolean_literal] = STATE(3322), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3375), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1875), - [sym_preproc_endregion] = STATE(1875), - [sym_preproc_line] = STATE(1875), - [sym_preproc_pragma] = STATE(1875), - [sym_preproc_nullable] = STATE(1875), - [sym_preproc_error] = STATE(1875), - [sym_preproc_warning] = STATE(1875), - [sym_preproc_define] = STATE(1875), - [sym_preproc_undef] = STATE(1875), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [1841] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2950), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1841), + [sym_preproc_endregion] = STATE(1841), + [sym_preproc_line] = STATE(1841), + [sym_preproc_pragma] = STATE(1841), + [sym_preproc_nullable] = STATE(1841), + [sym_preproc_error] = STATE(1841), + [sym_preproc_warning] = STATE(1841), + [sym_preproc_define] = STATE(1841), + [sym_preproc_undef] = STATE(1841), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_delegate] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_this] = ACTIONS(1185), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1187), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1189), - [anon_sym_unchecked] = ACTIONS(1175), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_throw] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359143,19 +353432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1203), - [anon_sym___makeref] = ACTIONS(1205), - [anon_sym___reftype] = ACTIONS(1207), - [anon_sym___refvalue] = ACTIONS(1209), - [sym_null_literal] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1213), - [sym_integer_literal] = ACTIONS(1211), - [sym_real_literal] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_verbatim_string_literal] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1741), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359166,128 +353455,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1221), - [sym_interpolation_verbatim_start] = ACTIONS(1223), - [sym_interpolation_raw_start] = ACTIONS(1225), - [sym_raw_string_start] = ACTIONS(1227), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1876] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1842] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5646), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1876), - [sym_preproc_endregion] = STATE(1876), - [sym_preproc_line] = STATE(1876), - [sym_preproc_pragma] = STATE(1876), - [sym_preproc_nullable] = STATE(1876), - [sym_preproc_error] = STATE(1876), - [sym_preproc_warning] = STATE(1876), - [sym_preproc_define] = STATE(1876), - [sym_preproc_undef] = STATE(1876), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5176), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1842), + [sym_preproc_endregion] = STATE(1842), + [sym_preproc_line] = STATE(1842), + [sym_preproc_pragma] = STATE(1842), + [sym_preproc_nullable] = STATE(1842), + [sym_preproc_error] = STATE(1842), + [sym_preproc_warning] = STATE(1842), + [sym_preproc_define] = STATE(1842), + [sym_preproc_undef] = STATE(1842), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -359296,10 +353585,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359340,123 +353629,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1877] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1877), - [sym_preproc_endregion] = STATE(1877), - [sym_preproc_line] = STATE(1877), - [sym_preproc_pragma] = STATE(1877), - [sym_preproc_nullable] = STATE(1877), - [sym_preproc_error] = STATE(1877), - [sym_preproc_warning] = STATE(1877), - [sym_preproc_define] = STATE(1877), - [sym_preproc_undef] = STATE(1877), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1843] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5550), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3723), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6205), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7599), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2271), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1843), + [sym_preproc_endregion] = STATE(1843), + [sym_preproc_line] = STATE(1843), + [sym_preproc_pragma] = STATE(1843), + [sym_preproc_nullable] = STATE(1843), + [sym_preproc_error] = STATE(1843), + [sym_preproc_warning] = STATE(1843), + [sym_preproc_define] = STATE(1843), + [sym_preproc_undef] = STATE(1843), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_ref] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -359465,10 +353754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(2045), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2049), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359509,105 +353798,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1878] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1878), - [sym_preproc_endregion] = STATE(1878), - [sym_preproc_line] = STATE(1878), - [sym_preproc_pragma] = STATE(1878), - [sym_preproc_nullable] = STATE(1878), - [sym_preproc_error] = STATE(1878), - [sym_preproc_warning] = STATE(1878), - [sym_preproc_define] = STATE(1878), - [sym_preproc_undef] = STATE(1878), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1844] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4947), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1844), + [sym_preproc_endregion] = STATE(1844), + [sym_preproc_line] = STATE(1844), + [sym_preproc_pragma] = STATE(1844), + [sym_preproc_nullable] = STATE(1844), + [sym_preproc_error] = STATE(1844), + [sym_preproc_warning] = STATE(1844), + [sym_preproc_define] = STATE(1844), + [sym_preproc_undef] = STATE(1844), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -359615,17 +353904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -359634,10 +353923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359678,135 +353967,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1879] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1879), - [sym_preproc_endregion] = STATE(1879), - [sym_preproc_line] = STATE(1879), - [sym_preproc_pragma] = STATE(1879), - [sym_preproc_nullable] = STATE(1879), - [sym_preproc_error] = STATE(1879), - [sym_preproc_warning] = STATE(1879), - [sym_preproc_define] = STATE(1879), - [sym_preproc_undef] = STATE(1879), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), + [1845] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4884), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1845), + [sym_preproc_endregion] = STATE(1845), + [sym_preproc_line] = STATE(1845), + [sym_preproc_pragma] = STATE(1845), + [sym_preproc_nullable] = STATE(1845), + [sym_preproc_error] = STATE(1845), + [sym_preproc_warning] = STATE(1845), + [sym_preproc_define] = STATE(1845), + [sym_preproc_undef] = STATE(1845), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), + [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359819,19 +354108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359842,140 +354131,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1880] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4332), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1880), - [sym_preproc_endregion] = STATE(1880), - [sym_preproc_line] = STATE(1880), - [sym_preproc_pragma] = STATE(1880), - [sym_preproc_nullable] = STATE(1880), - [sym_preproc_error] = STATE(1880), - [sym_preproc_warning] = STATE(1880), - [sym_preproc_define] = STATE(1880), - [sym_preproc_undef] = STATE(1880), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1846] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4886), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1846), + [sym_preproc_endregion] = STATE(1846), + [sym_preproc_line] = STATE(1846), + [sym_preproc_pragma] = STATE(1846), + [sym_preproc_nullable] = STATE(1846), + [sym_preproc_error] = STATE(1846), + [sym_preproc_warning] = STATE(1846), + [sym_preproc_define] = STATE(1846), + [sym_preproc_undef] = STATE(1846), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -359988,19 +354277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360011,110 +354300,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1881] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1881), - [sym_preproc_endregion] = STATE(1881), - [sym_preproc_line] = STATE(1881), - [sym_preproc_pragma] = STATE(1881), - [sym_preproc_nullable] = STATE(1881), - [sym_preproc_error] = STATE(1881), - [sym_preproc_warning] = STATE(1881), - [sym_preproc_define] = STATE(1881), - [sym_preproc_undef] = STATE(1881), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1847] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5112), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1847), + [sym_preproc_endregion] = STATE(1847), + [sym_preproc_line] = STATE(1847), + [sym_preproc_pragma] = STATE(1847), + [sym_preproc_nullable] = STATE(1847), + [sym_preproc_error] = STATE(1847), + [sym_preproc_warning] = STATE(1847), + [sym_preproc_define] = STATE(1847), + [sym_preproc_undef] = STATE(1847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1059), @@ -360122,17 +354411,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -360141,10 +354430,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360185,135 +354474,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1882] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), + [1848] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4335), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1882), - [sym_preproc_endregion] = STATE(1882), - [sym_preproc_line] = STATE(1882), - [sym_preproc_pragma] = STATE(1882), - [sym_preproc_nullable] = STATE(1882), - [sym_preproc_error] = STATE(1882), - [sym_preproc_warning] = STATE(1882), - [sym_preproc_define] = STATE(1882), - [sym_preproc_undef] = STATE(1882), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3686), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6221), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7539), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1848), + [sym_preproc_endregion] = STATE(1848), + [sym_preproc_line] = STATE(1848), + [sym_preproc_pragma] = STATE(1848), + [sym_preproc_nullable] = STATE(1848), + [sym_preproc_error] = STATE(1848), + [sym_preproc_warning] = STATE(1848), + [sym_preproc_define] = STATE(1848), + [sym_preproc_undef] = STATE(1848), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_ref] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(2131), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2135), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360326,19 +354615,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(2137), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360349,140 +354638,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1883] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1883), - [sym_preproc_endregion] = STATE(1883), - [sym_preproc_line] = STATE(1883), - [sym_preproc_pragma] = STATE(1883), - [sym_preproc_nullable] = STATE(1883), - [sym_preproc_error] = STATE(1883), - [sym_preproc_warning] = STATE(1883), - [sym_preproc_define] = STATE(1883), - [sym_preproc_undef] = STATE(1883), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1849] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5924), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2391), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2940), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3141), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6237), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7554), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1849), + [sym_preproc_endregion] = STATE(1849), + [sym_preproc_line] = STATE(1849), + [sym_preproc_pragma] = STATE(1849), + [sym_preproc_nullable] = STATE(1849), + [sym_preproc_error] = STATE(1849), + [sym_preproc_warning] = STATE(1849), + [sym_preproc_define] = STATE(1849), + [sym_preproc_undef] = STATE(1849), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_ref] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1941), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1269), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1949), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1953), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360495,19 +354784,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360518,140 +354807,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1884] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1884), - [sym_preproc_endregion] = STATE(1884), - [sym_preproc_line] = STATE(1884), - [sym_preproc_pragma] = STATE(1884), - [sym_preproc_nullable] = STATE(1884), - [sym_preproc_error] = STATE(1884), - [sym_preproc_warning] = STATE(1884), - [sym_preproc_define] = STATE(1884), - [sym_preproc_undef] = STATE(1884), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1850] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2625), + [sym__name] = STATE(5931), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3177), + [sym_non_lvalue_expression] = STATE(3343), + [sym_lvalue_expression] = STATE(3557), + [sym__expression_statement_expression] = STATE(3325), + [sym_assignment_expression] = STATE(3346), + [sym_binary_expression] = STATE(3325), + [sym_postfix_unary_expression] = STATE(3346), + [sym_prefix_unary_expression] = STATE(3346), + [sym__pointer_indirection_expression] = STATE(2677), + [sym_query_expression] = STATE(3325), + [sym_from_clause] = STATE(6215), + [sym_conditional_expression] = STATE(3325), + [sym_conditional_access_expression] = STATE(3325), + [sym_as_expression] = STATE(3325), + [sym_is_expression] = STATE(3325), + [sym_is_pattern_expression] = STATE(3325), + [sym_cast_expression] = STATE(3325), + [sym_checked_expression] = STATE(3325), + [sym_invocation_expression] = STATE(3346), + [sym_switch_expression] = STATE(3325), + [sym_await_expression] = STATE(3346), + [sym_throw_expression] = STATE(3325), + [sym_element_access_expression] = STATE(2677), + [sym_interpolated_string_expression] = STATE(3325), + [sym_member_access_expression] = STATE(2677), + [sym_object_creation_expression] = STATE(3346), + [sym_parenthesized_expression] = STATE(3346), + [sym__parenthesized_lvalue_expression] = STATE(2677), + [sym_lambda_expression] = STATE(3325), + [sym__lambda_expression_init] = STATE(7559), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3325), + [sym_anonymous_method_expression] = STATE(3325), + [sym_anonymous_object_creation_expression] = STATE(3325), + [sym_implicit_array_creation_expression] = STATE(3325), + [sym_implicit_object_creation_expression] = STATE(3325), + [sym_implicit_stackalloc_expression] = STATE(3325), + [sym_initializer_expression] = STATE(3325), + [sym_default_expression] = STATE(3325), + [sym_with_expression] = STATE(3325), + [sym_sizeof_expression] = STATE(3325), + [sym_typeof_expression] = STATE(3325), + [sym_makeref_expression] = STATE(3325), + [sym_ref_expression] = STATE(3325), + [sym_reftype_expression] = STATE(3325), + [sym_refvalue_expression] = STATE(3325), + [sym_stackalloc_expression] = STATE(3325), + [sym_range_expression] = STATE(3325), + [sym_tuple_expression] = STATE(2677), + [sym_literal] = STATE(3325), + [sym_character_literal] = STATE(3276), + [sym_string_literal] = STATE(3276), + [sym_raw_string_literal] = STATE(3276), + [sym_boolean_literal] = STATE(3276), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3325), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1850), + [sym_preproc_endregion] = STATE(1850), + [sym_preproc_line] = STATE(1850), + [sym_preproc_pragma] = STATE(1850), + [sym_preproc_nullable] = STATE(1850), + [sym_preproc_error] = STATE(1850), + [sym_preproc_warning] = STATE(1850), + [sym_preproc_define] = STATE(1850), + [sym_preproc_undef] = STATE(1850), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3512), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_ref] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_delegate] = ACTIONS(1169), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1171), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_checked] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_this] = ACTIONS(1185), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(1187), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [sym_predefined_type] = ACTIONS(1189), + [anon_sym_unchecked] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_throw] = ACTIONS(1801), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1805), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360664,19 +354953,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [anon_sym_stackalloc] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym___makeref] = ACTIONS(1205), + [anon_sym___reftype] = ACTIONS(1207), + [anon_sym___refvalue] = ACTIONS(1209), + [sym_null_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [sym_real_literal] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_verbatim_string_literal] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1807), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360687,140 +354976,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1221), + [sym_interpolation_verbatim_start] = ACTIONS(1223), + [sym_interpolation_raw_start] = ACTIONS(1225), + [sym_raw_string_start] = ACTIONS(1227), }, - [1885] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4315), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1885), - [sym_preproc_endregion] = STATE(1885), - [sym_preproc_line] = STATE(1885), - [sym_preproc_pragma] = STATE(1885), - [sym_preproc_nullable] = STATE(1885), - [sym_preproc_error] = STATE(1885), - [sym_preproc_warning] = STATE(1885), - [sym_preproc_define] = STATE(1885), - [sym_preproc_undef] = STATE(1885), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1851] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5646), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1851), + [sym_preproc_endregion] = STATE(1851), + [sym_preproc_line] = STATE(1851), + [sym_preproc_pragma] = STATE(1851), + [sym_preproc_nullable] = STATE(1851), + [sym_preproc_error] = STATE(1851), + [sym_preproc_warning] = STATE(1851), + [sym_preproc_define] = STATE(1851), + [sym_preproc_undef] = STATE(1851), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -360833,19 +355122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360861,135 +355150,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1886] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4330), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1886), - [sym_preproc_endregion] = STATE(1886), - [sym_preproc_line] = STATE(1886), - [sym_preproc_pragma] = STATE(1886), - [sym_preproc_nullable] = STATE(1886), - [sym_preproc_error] = STATE(1886), - [sym_preproc_warning] = STATE(1886), - [sym_preproc_define] = STATE(1886), - [sym_preproc_undef] = STATE(1886), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1852] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5150), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1852), + [sym_preproc_endregion] = STATE(1852), + [sym_preproc_line] = STATE(1852), + [sym_preproc_pragma] = STATE(1852), + [sym_preproc_nullable] = STATE(1852), + [sym_preproc_error] = STATE(1852), + [sym_preproc_warning] = STATE(1852), + [sym_preproc_define] = STATE(1852), + [sym_preproc_undef] = STATE(1852), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361002,19 +355291,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361030,123 +355319,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1887] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5549), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), + [1853] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4370), + [sym_non_lvalue_expression] = STATE(4632), + [sym_lvalue_expression] = STATE(3480), + [sym__expression_statement_expression] = STATE(4629), + [sym_assignment_expression] = STATE(4633), + [sym_binary_expression] = STATE(4629), + [sym_postfix_unary_expression] = STATE(4633), + [sym_prefix_unary_expression] = STATE(4633), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(4629), [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1887), - [sym_preproc_endregion] = STATE(1887), - [sym_preproc_line] = STATE(1887), - [sym_preproc_pragma] = STATE(1887), - [sym_preproc_nullable] = STATE(1887), - [sym_preproc_error] = STATE(1887), - [sym_preproc_warning] = STATE(1887), - [sym_preproc_define] = STATE(1887), - [sym_preproc_undef] = STATE(1887), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_conditional_expression] = STATE(4629), + [sym_conditional_access_expression] = STATE(4629), + [sym_as_expression] = STATE(4629), + [sym_is_expression] = STATE(4629), + [sym_is_pattern_expression] = STATE(4629), + [sym_cast_expression] = STATE(4629), + [sym_checked_expression] = STATE(4629), + [sym_invocation_expression] = STATE(4633), + [sym_switch_expression] = STATE(4629), + [sym_await_expression] = STATE(4633), + [sym_throw_expression] = STATE(4629), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(4629), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(4633), + [sym_parenthesized_expression] = STATE(4633), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(4629), + [sym__lambda_expression_init] = STATE(7483), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(4629), + [sym_anonymous_method_expression] = STATE(4629), + [sym_anonymous_object_creation_expression] = STATE(4629), + [sym_implicit_array_creation_expression] = STATE(4629), + [sym_implicit_object_creation_expression] = STATE(4629), + [sym_implicit_stackalloc_expression] = STATE(4629), + [sym_initializer_expression] = STATE(4629), + [sym_default_expression] = STATE(4629), + [sym_with_expression] = STATE(4629), + [sym_sizeof_expression] = STATE(4629), + [sym_typeof_expression] = STATE(4629), + [sym_makeref_expression] = STATE(4629), + [sym_ref_expression] = STATE(4629), + [sym_reftype_expression] = STATE(4629), + [sym_refvalue_expression] = STATE(4629), + [sym_stackalloc_expression] = STATE(4629), + [sym_range_expression] = STATE(4629), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(4629), + [sym_character_literal] = STATE(4631), + [sym_string_literal] = STATE(4631), + [sym_raw_string_literal] = STATE(4631), + [sym_boolean_literal] = STATE(4631), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(4629), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1853), + [sym_preproc_endregion] = STATE(1853), + [sym_preproc_line] = STATE(1853), + [sym_preproc_pragma] = STATE(1853), + [sym_preproc_nullable] = STATE(1853), + [sym_preproc_error] = STATE(1853), + [sym_preproc_warning] = STATE(1853), + [sym_preproc_define] = STATE(1853), + [sym_preproc_undef] = STATE(1853), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3495), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___makeref] = ACTIONS(1443), + [anon_sym___reftype] = ACTIONS(1445), + [anon_sym___refvalue] = ACTIONS(1447), + [sym_null_literal] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym_verbatim_string_literal] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1459), + [sym_interpolation_verbatim_start] = ACTIONS(1461), + [sym_interpolation_raw_start] = ACTIONS(1463), + [sym_raw_string_start] = ACTIONS(1465), + }, + [1854] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(3253), + [sym__name] = STATE(5941), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2326), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2272), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5738), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3219), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(3226), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(3226), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(3226), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(3226), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(3226), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2255), + [sym__reserved_identifier] = STATE(2244), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1854), + [sym_preproc_endregion] = STATE(1854), + [sym_preproc_line] = STATE(1854), + [sym_preproc_pragma] = STATE(1854), + [sym_preproc_nullable] = STATE(1854), + [sym_preproc_error] = STATE(1854), + [sym_preproc_warning] = STATE(1854), + [sym_preproc_define] = STATE(1854), + [sym_preproc_undef] = STATE(1854), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1393), + [anon_sym_global] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1393), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(1393), + [anon_sym_notnull] = ACTIONS(1393), + [anon_sym_unmanaged] = ACTIONS(1393), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1417), + [anon_sym_scoped] = ACTIONS(1419), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1423), + [sym_predefined_type] = ACTIONS(1425), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1393), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1435), + [anon_sym_into] = ACTIONS(1393), + [anon_sym_join] = ACTIONS(1393), + [anon_sym_on] = ACTIONS(1393), + [anon_sym_equals] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_orderby] = ACTIONS(1393), + [anon_sym_ascending] = ACTIONS(1393), + [anon_sym_descending] = ACTIONS(1393), + [anon_sym_group] = ACTIONS(1393), + [anon_sym_by] = ACTIONS(1393), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [1855] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4932), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1855), + [sym_preproc_endregion] = STATE(1855), + [sym_preproc_line] = STATE(1855), + [sym_preproc_pragma] = STATE(1855), + [sym_preproc_nullable] = STATE(1855), + [sym_preproc_error] = STATE(1855), + [sym_preproc_warning] = STATE(1855), + [sym_preproc_define] = STATE(1855), + [sym_preproc_undef] = STATE(1855), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -361155,10 +355782,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361199,135 +355826,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1888] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4339), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), - [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), - [sym_postfix_unary_expression] = STATE(3412), - [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), - [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), - [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3412), - [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1888), - [sym_preproc_endregion] = STATE(1888), - [sym_preproc_line] = STATE(1888), - [sym_preproc_pragma] = STATE(1888), - [sym_preproc_nullable] = STATE(1888), - [sym_preproc_error] = STATE(1888), - [sym_preproc_warning] = STATE(1888), - [sym_preproc_define] = STATE(1888), - [sym_preproc_undef] = STATE(1888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [1856] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4933), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1856), + [sym_preproc_endregion] = STATE(1856), + [sym_preproc_line] = STATE(1856), + [sym_preproc_pragma] = STATE(1856), + [sym_preproc_nullable] = STATE(1856), + [sym_preproc_error] = STATE(1856), + [sym_preproc_warning] = STATE(1856), + [sym_preproc_define] = STATE(1856), + [sym_preproc_undef] = STATE(1856), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_this] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1329), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361340,19 +355967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1339), - [anon_sym___reftype] = ACTIONS(1341), - [anon_sym___refvalue] = ACTIONS(1343), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361368,103 +355995,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1889] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4360), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [1857] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4238), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1889), - [sym_preproc_endregion] = STATE(1889), - [sym_preproc_line] = STATE(1889), - [sym_preproc_pragma] = STATE(1889), - [sym_preproc_nullable] = STATE(1889), - [sym_preproc_error] = STATE(1889), - [sym_preproc_warning] = STATE(1889), - [sym_preproc_define] = STATE(1889), - [sym_preproc_undef] = STATE(1889), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1857), + [sym_preproc_endregion] = STATE(1857), + [sym_preproc_line] = STATE(1857), + [sym_preproc_pragma] = STATE(1857), + [sym_preproc_nullable] = STATE(1857), + [sym_preproc_error] = STATE(1857), + [sym_preproc_warning] = STATE(1857), + [sym_preproc_define] = STATE(1857), + [sym_preproc_undef] = STATE(1857), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -361474,17 +356101,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -361493,10 +356120,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361537,103 +356164,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1890] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4367), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [1858] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4241), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1890), - [sym_preproc_endregion] = STATE(1890), - [sym_preproc_line] = STATE(1890), - [sym_preproc_pragma] = STATE(1890), - [sym_preproc_nullable] = STATE(1890), - [sym_preproc_error] = STATE(1890), - [sym_preproc_warning] = STATE(1890), - [sym_preproc_define] = STATE(1890), - [sym_preproc_undef] = STATE(1890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1858), + [sym_preproc_endregion] = STATE(1858), + [sym_preproc_line] = STATE(1858), + [sym_preproc_pragma] = STATE(1858), + [sym_preproc_nullable] = STATE(1858), + [sym_preproc_error] = STATE(1858), + [sym_preproc_warning] = STATE(1858), + [sym_preproc_define] = STATE(1858), + [sym_preproc_undef] = STATE(1858), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -361643,17 +356270,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -361662,10 +356289,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361706,135 +356333,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1891] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1859] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5561), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1891), - [sym_preproc_endregion] = STATE(1891), - [sym_preproc_line] = STATE(1891), - [sym_preproc_pragma] = STATE(1891), - [sym_preproc_nullable] = STATE(1891), - [sym_preproc_error] = STATE(1891), - [sym_preproc_warning] = STATE(1891), - [sym_preproc_define] = STATE(1891), - [sym_preproc_undef] = STATE(1891), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4228), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1859), + [sym_preproc_endregion] = STATE(1859), + [sym_preproc_line] = STATE(1859), + [sym_preproc_pragma] = STATE(1859), + [sym_preproc_nullable] = STATE(1859), + [sym_preproc_error] = STATE(1859), + [sym_preproc_warning] = STATE(1859), + [sym_preproc_define] = STATE(1859), + [sym_preproc_undef] = STATE(1859), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -361847,19 +356474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361875,103 +356502,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1892] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4307), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [1860] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4245), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1892), - [sym_preproc_endregion] = STATE(1892), - [sym_preproc_line] = STATE(1892), - [sym_preproc_pragma] = STATE(1892), - [sym_preproc_nullable] = STATE(1892), - [sym_preproc_error] = STATE(1892), - [sym_preproc_warning] = STATE(1892), - [sym_preproc_define] = STATE(1892), - [sym_preproc_undef] = STATE(1892), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1860), + [sym_preproc_endregion] = STATE(1860), + [sym_preproc_line] = STATE(1860), + [sym_preproc_pragma] = STATE(1860), + [sym_preproc_nullable] = STATE(1860), + [sym_preproc_error] = STATE(1860), + [sym_preproc_warning] = STATE(1860), + [sym_preproc_define] = STATE(1860), + [sym_preproc_undef] = STATE(1860), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -361981,17 +356608,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -362000,10 +356627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362044,103 +356671,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1893] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4309), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [1861] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5490), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1861), + [sym_preproc_endregion] = STATE(1861), + [sym_preproc_line] = STATE(1861), + [sym_preproc_pragma] = STATE(1861), + [sym_preproc_nullable] = STATE(1861), + [sym_preproc_error] = STATE(1861), + [sym_preproc_warning] = STATE(1861), + [sym_preproc_define] = STATE(1861), + [sym_preproc_undef] = STATE(1861), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [1862] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4247), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1893), - [sym_preproc_endregion] = STATE(1893), - [sym_preproc_line] = STATE(1893), - [sym_preproc_pragma] = STATE(1893), - [sym_preproc_nullable] = STATE(1893), - [sym_preproc_error] = STATE(1893), - [sym_preproc_warning] = STATE(1893), - [sym_preproc_define] = STATE(1893), - [sym_preproc_undef] = STATE(1893), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1862), + [sym_preproc_endregion] = STATE(1862), + [sym_preproc_line] = STATE(1862), + [sym_preproc_pragma] = STATE(1862), + [sym_preproc_nullable] = STATE(1862), + [sym_preproc_error] = STATE(1862), + [sym_preproc_warning] = STATE(1862), + [sym_preproc_define] = STATE(1862), + [sym_preproc_undef] = STATE(1862), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -362150,17 +356946,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -362169,10 +356965,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362213,123 +357009,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1894] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1863] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5567), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1894), - [sym_preproc_endregion] = STATE(1894), - [sym_preproc_line] = STATE(1894), - [sym_preproc_pragma] = STATE(1894), - [sym_preproc_nullable] = STATE(1894), - [sym_preproc_error] = STATE(1894), - [sym_preproc_warning] = STATE(1894), - [sym_preproc_define] = STATE(1894), - [sym_preproc_undef] = STATE(1894), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5497), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1863), + [sym_preproc_endregion] = STATE(1863), + [sym_preproc_line] = STATE(1863), + [sym_preproc_pragma] = STATE(1863), + [sym_preproc_nullable] = STATE(1863), + [sym_preproc_error] = STATE(1863), + [sym_preproc_warning] = STATE(1863), + [sym_preproc_define] = STATE(1863), + [sym_preproc_undef] = STATE(1863), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -362338,10 +357134,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362382,103 +357178,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1895] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2818), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4302), - [sym_non_lvalue_expression] = STATE(3410), - [sym_lvalue_expression] = STATE(3236), - [sym__expression_statement_expression] = STATE(3402), + [1864] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4257), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), [sym_assignment_expression] = STATE(3412), - [sym_binary_expression] = STATE(3402), + [sym_binary_expression] = STATE(3407), [sym_postfix_unary_expression] = STATE(3412), [sym_prefix_unary_expression] = STATE(3412), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3402), - [sym_from_clause] = STATE(6220), - [sym_conditional_expression] = STATE(3402), - [sym_conditional_access_expression] = STATE(3402), - [sym_as_expression] = STATE(3402), - [sym_is_expression] = STATE(3402), - [sym_is_pattern_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_checked_expression] = STATE(3402), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), [sym_invocation_expression] = STATE(3412), - [sym_switch_expression] = STATE(3402), + [sym_switch_expression] = STATE(3407), [sym_await_expression] = STATE(3412), - [sym_throw_expression] = STATE(3402), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3402), - [sym_member_access_expression] = STATE(2811), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), [sym_object_creation_expression] = STATE(3412), [sym_parenthesized_expression] = STATE(3412), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3402), - [sym__lambda_expression_init] = STATE(7481), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3402), - [sym_anonymous_method_expression] = STATE(3402), - [sym_anonymous_object_creation_expression] = STATE(3402), - [sym_implicit_array_creation_expression] = STATE(3402), - [sym_implicit_object_creation_expression] = STATE(3402), - [sym_implicit_stackalloc_expression] = STATE(3402), - [sym_initializer_expression] = STATE(3402), - [sym_default_expression] = STATE(3402), - [sym_with_expression] = STATE(3402), - [sym_sizeof_expression] = STATE(3402), - [sym_typeof_expression] = STATE(3402), - [sym_makeref_expression] = STATE(3402), - [sym_ref_expression] = STATE(3402), - [sym_reftype_expression] = STATE(3402), - [sym_refvalue_expression] = STATE(3402), - [sym_stackalloc_expression] = STATE(3402), - [sym_range_expression] = STATE(3402), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3402), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3402), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1895), - [sym_preproc_endregion] = STATE(1895), - [sym_preproc_line] = STATE(1895), - [sym_preproc_pragma] = STATE(1895), - [sym_preproc_nullable] = STATE(1895), - [sym_preproc_error] = STATE(1895), - [sym_preproc_warning] = STATE(1895), - [sym_preproc_define] = STATE(1895), - [sym_preproc_undef] = STATE(1895), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3490), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1864), + [sym_preproc_endregion] = STATE(1864), + [sym_preproc_line] = STATE(1864), + [sym_preproc_pragma] = STATE(1864), + [sym_preproc_nullable] = STATE(1864), + [sym_preproc_error] = STATE(1864), + [sym_preproc_warning] = STATE(1864), + [sym_preproc_define] = STATE(1864), + [sym_preproc_undef] = STATE(1864), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), @@ -362488,17 +357284,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1329), @@ -362507,10 +357303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1369), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362551,135 +357347,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1896] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5308), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2211), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5926), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5511), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3723), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6223), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7730), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1896), - [sym_preproc_endregion] = STATE(1896), - [sym_preproc_line] = STATE(1896), - [sym_preproc_pragma] = STATE(1896), - [sym_preproc_nullable] = STATE(1896), - [sym_preproc_error] = STATE(1896), - [sym_preproc_warning] = STATE(1896), - [sym_preproc_define] = STATE(1896), - [sym_preproc_undef] = STATE(1896), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1865] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4221), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1865), + [sym_preproc_endregion] = STATE(1865), + [sym_preproc_line] = STATE(1865), + [sym_preproc_pragma] = STATE(1865), + [sym_preproc_nullable] = STATE(1865), + [sym_preproc_error] = STATE(1865), + [sym_preproc_warning] = STATE(1865), + [sym_preproc_define] = STATE(1865), + [sym_preproc_undef] = STATE(1865), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362692,19 +357488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362720,135 +357516,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1897] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1866] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5574), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1897), - [sym_preproc_endregion] = STATE(1897), - [sym_preproc_line] = STATE(1897), - [sym_preproc_pragma] = STATE(1897), - [sym_preproc_nullable] = STATE(1897), - [sym_preproc_error] = STATE(1897), - [sym_preproc_warning] = STATE(1897), - [sym_preproc_define] = STATE(1897), - [sym_preproc_undef] = STATE(1897), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1866), + [sym_preproc_endregion] = STATE(1866), + [sym_preproc_line] = STATE(1866), + [sym_preproc_pragma] = STATE(1866), + [sym_preproc_nullable] = STATE(1866), + [sym_preproc_error] = STATE(1866), + [sym_preproc_warning] = STATE(1866), + [sym_preproc_define] = STATE(1866), + [sym_preproc_undef] = STATE(1866), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -362861,19 +357657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362889,135 +357685,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1898] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1867] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5580), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1898), - [sym_preproc_endregion] = STATE(1898), - [sym_preproc_line] = STATE(1898), - [sym_preproc_pragma] = STATE(1898), - [sym_preproc_nullable] = STATE(1898), - [sym_preproc_error] = STATE(1898), - [sym_preproc_warning] = STATE(1898), - [sym_preproc_define] = STATE(1898), - [sym_preproc_undef] = STATE(1898), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4263), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1867), + [sym_preproc_endregion] = STATE(1867), + [sym_preproc_line] = STATE(1867), + [sym_preproc_pragma] = STATE(1867), + [sym_preproc_nullable] = STATE(1867), + [sym_preproc_error] = STATE(1867), + [sym_preproc_warning] = STATE(1867), + [sym_preproc_define] = STATE(1867), + [sym_preproc_undef] = STATE(1867), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363030,19 +357826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363058,135 +357854,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1899] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1868] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5582), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1899), - [sym_preproc_endregion] = STATE(1899), - [sym_preproc_line] = STATE(1899), - [sym_preproc_pragma] = STATE(1899), - [sym_preproc_nullable] = STATE(1899), - [sym_preproc_error] = STATE(1899), - [sym_preproc_warning] = STATE(1899), - [sym_preproc_define] = STATE(1899), - [sym_preproc_undef] = STATE(1899), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4264), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1868), + [sym_preproc_endregion] = STATE(1868), + [sym_preproc_line] = STATE(1868), + [sym_preproc_pragma] = STATE(1868), + [sym_preproc_nullable] = STATE(1868), + [sym_preproc_error] = STATE(1868), + [sym_preproc_warning] = STATE(1868), + [sym_preproc_define] = STATE(1868), + [sym_preproc_undef] = STATE(1868), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363199,19 +357995,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363227,108 +358023,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1900] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5952), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2419), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4293), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3170), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6230), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1900), - [sym_preproc_endregion] = STATE(1900), - [sym_preproc_line] = STATE(1900), - [sym_preproc_pragma] = STATE(1900), - [sym_preproc_nullable] = STATE(1900), - [sym_preproc_error] = STATE(1900), - [sym_preproc_warning] = STATE(1900), - [sym_preproc_define] = STATE(1900), - [sym_preproc_undef] = STATE(1900), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1869] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5512), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1869), + [sym_preproc_endregion] = STATE(1869), + [sym_preproc_line] = STATE(1869), + [sym_preproc_pragma] = STATE(1869), + [sym_preproc_nullable] = STATE(1869), + [sym_preproc_error] = STATE(1869), + [sym_preproc_warning] = STATE(1869), + [sym_preproc_define] = STATE(1869), + [sym_preproc_undef] = STATE(1869), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_ref] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), @@ -363337,25 +358133,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(2221), [anon_sym_PLUS_PLUS] = ACTIONS(2221), [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(2219), [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_STAR] = ACTIONS(2223), [anon_sym_CARET] = ACTIONS(2221), [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1271), + [sym_predefined_type] = ACTIONS(91), [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363369,17 +358165,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_verbatim_string_literal] = ACTIONS(1297), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -363391,140 +358187,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1303), - [sym_interpolation_verbatim_start] = ACTIONS(1305), - [sym_interpolation_raw_start] = ACTIONS(1307), - [sym_raw_string_start] = ACTIONS(1309), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1901] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1870] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5657), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1901), - [sym_preproc_endregion] = STATE(1901), - [sym_preproc_line] = STATE(1901), - [sym_preproc_pragma] = STATE(1901), - [sym_preproc_nullable] = STATE(1901), - [sym_preproc_error] = STATE(1901), - [sym_preproc_warning] = STATE(1901), - [sym_preproc_define] = STATE(1901), - [sym_preproc_undef] = STATE(1901), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4265), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1870), + [sym_preproc_endregion] = STATE(1870), + [sym_preproc_line] = STATE(1870), + [sym_preproc_pragma] = STATE(1870), + [sym_preproc_nullable] = STATE(1870), + [sym_preproc_error] = STATE(1870), + [sym_preproc_warning] = STATE(1870), + [sym_preproc_define] = STATE(1870), + [sym_preproc_undef] = STATE(1870), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363537,19 +358333,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363565,123 +358361,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1902] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1871] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5583), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1902), - [sym_preproc_endregion] = STATE(1902), - [sym_preproc_line] = STATE(1902), - [sym_preproc_pragma] = STATE(1902), - [sym_preproc_nullable] = STATE(1902), - [sym_preproc_error] = STATE(1902), - [sym_preproc_warning] = STATE(1902), - [sym_preproc_define] = STATE(1902), - [sym_preproc_undef] = STATE(1902), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5519), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1871), + [sym_preproc_endregion] = STATE(1871), + [sym_preproc_line] = STATE(1871), + [sym_preproc_pragma] = STATE(1871), + [sym_preproc_nullable] = STATE(1871), + [sym_preproc_error] = STATE(1871), + [sym_preproc_warning] = STATE(1871), + [sym_preproc_define] = STATE(1871), + [sym_preproc_undef] = STATE(1871), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -363690,10 +358486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363734,123 +358530,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1903] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5652), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1903), - [sym_preproc_endregion] = STATE(1903), - [sym_preproc_line] = STATE(1903), - [sym_preproc_pragma] = STATE(1903), - [sym_preproc_nullable] = STATE(1903), - [sym_preproc_error] = STATE(1903), - [sym_preproc_warning] = STATE(1903), - [sym_preproc_define] = STATE(1903), - [sym_preproc_undef] = STATE(1903), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1872] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4935), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1872), + [sym_preproc_endregion] = STATE(1872), + [sym_preproc_line] = STATE(1872), + [sym_preproc_pragma] = STATE(1872), + [sym_preproc_nullable] = STATE(1872), + [sym_preproc_error] = STATE(1872), + [sym_preproc_warning] = STATE(1872), + [sym_preproc_define] = STATE(1872), + [sym_preproc_undef] = STATE(1872), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -363859,10 +358655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -363903,135 +358699,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1904] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1873] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5584), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1904), - [sym_preproc_endregion] = STATE(1904), - [sym_preproc_line] = STATE(1904), - [sym_preproc_pragma] = STATE(1904), - [sym_preproc_nullable] = STATE(1904), - [sym_preproc_error] = STATE(1904), - [sym_preproc_warning] = STATE(1904), - [sym_preproc_define] = STATE(1904), - [sym_preproc_undef] = STATE(1904), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3262), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3188), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6213), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7682), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1873), + [sym_preproc_endregion] = STATE(1873), + [sym_preproc_line] = STATE(1873), + [sym_preproc_pragma] = STATE(1873), + [sym_preproc_nullable] = STATE(1873), + [sym_preproc_error] = STATE(1873), + [sym_preproc_warning] = STATE(1873), + [sym_preproc_define] = STATE(1873), + [sym_preproc_undef] = STATE(1873), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_ref] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1321), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1327), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1329), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_unchecked] = ACTIONS(1323), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1331), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364044,19 +358840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_stackalloc] = ACTIONS(1337), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364072,123 +358868,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1905] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5585), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1905), - [sym_preproc_endregion] = STATE(1905), - [sym_preproc_line] = STATE(1905), - [sym_preproc_pragma] = STATE(1905), - [sym_preproc_nullable] = STATE(1905), - [sym_preproc_error] = STATE(1905), - [sym_preproc_warning] = STATE(1905), - [sym_preproc_define] = STATE(1905), - [sym_preproc_undef] = STATE(1905), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1874] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5539), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1874), + [sym_preproc_endregion] = STATE(1874), + [sym_preproc_line] = STATE(1874), + [sym_preproc_pragma] = STATE(1874), + [sym_preproc_nullable] = STATE(1874), + [sym_preproc_error] = STATE(1874), + [sym_preproc_warning] = STATE(1874), + [sym_preproc_define] = STATE(1874), + [sym_preproc_undef] = STATE(1874), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -364197,10 +358993,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364241,123 +359037,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1906] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5586), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1906), - [sym_preproc_endregion] = STATE(1906), - [sym_preproc_line] = STATE(1906), - [sym_preproc_pragma] = STATE(1906), - [sym_preproc_nullable] = STATE(1906), - [sym_preproc_error] = STATE(1906), - [sym_preproc_warning] = STATE(1906), - [sym_preproc_define] = STATE(1906), - [sym_preproc_undef] = STATE(1906), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1045), + [1875] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5279), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4936), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3568), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1875), + [sym_preproc_endregion] = STATE(1875), + [sym_preproc_line] = STATE(1875), + [sym_preproc_pragma] = STATE(1875), + [sym_preproc_nullable] = STATE(1875), + [sym_preproc_error] = STATE(1875), + [sym_preproc_warning] = STATE(1875), + [sym_preproc_define] = STATE(1875), + [sym_preproc_undef] = STATE(1875), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1545), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -364366,10 +359162,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1547), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364410,123 +359206,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1907] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5587), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1907), - [sym_preproc_endregion] = STATE(1907), - [sym_preproc_line] = STATE(1907), - [sym_preproc_pragma] = STATE(1907), - [sym_preproc_nullable] = STATE(1907), - [sym_preproc_error] = STATE(1907), - [sym_preproc_warning] = STATE(1907), - [sym_preproc_define] = STATE(1907), - [sym_preproc_undef] = STATE(1907), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1876] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3858), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1876), + [sym_preproc_endregion] = STATE(1876), + [sym_preproc_line] = STATE(1876), + [sym_preproc_pragma] = STATE(1876), + [sym_preproc_nullable] = STATE(1876), + [sym_preproc_error] = STATE(1876), + [sym_preproc_warning] = STATE(1876), + [sym_preproc_define] = STATE(1876), + [sym_preproc_undef] = STATE(1876), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [1877] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3597), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1877), + [sym_preproc_endregion] = STATE(1877), + [sym_preproc_line] = STATE(1877), + [sym_preproc_pragma] = STATE(1877), + [sym_preproc_nullable] = STATE(1877), + [sym_preproc_error] = STATE(1877), + [sym_preproc_warning] = STATE(1877), + [sym_preproc_define] = STATE(1877), + [sym_preproc_undef] = STATE(1877), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [1878] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5548), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1878), + [sym_preproc_endregion] = STATE(1878), + [sym_preproc_line] = STATE(1878), + [sym_preproc_pragma] = STATE(1878), + [sym_preproc_nullable] = STATE(1878), + [sym_preproc_error] = STATE(1878), + [sym_preproc_warning] = STATE(1878), + [sym_preproc_define] = STATE(1878), + [sym_preproc_undef] = STATE(1878), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -364535,10 +359669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364579,123 +359713,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1908] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), + [1879] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5557), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1879), + [sym_preproc_endregion] = STATE(1879), + [sym_preproc_line] = STATE(1879), + [sym_preproc_pragma] = STATE(1879), + [sym_preproc_nullable] = STATE(1879), + [sym_preproc_error] = STATE(1879), + [sym_preproc_warning] = STATE(1879), + [sym_preproc_define] = STATE(1879), + [sym_preproc_undef] = STATE(1879), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [1880] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), [sym__name] = STATE(5928), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2430), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5588), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3703), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6209), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7417), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1908), - [sym_preproc_endregion] = STATE(1908), - [sym_preproc_line] = STATE(1908), - [sym_preproc_pragma] = STATE(1908), - [sym_preproc_nullable] = STATE(1908), - [sym_preproc_error] = STATE(1908), - [sym_preproc_warning] = STATE(1908), - [sym_preproc_define] = STATE(1908), - [sym_preproc_undef] = STATE(1908), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5223), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1880), + [sym_preproc_endregion] = STATE(1880), + [sym_preproc_line] = STATE(1880), + [sym_preproc_pragma] = STATE(1880), + [sym_preproc_nullable] = STATE(1880), + [sym_preproc_error] = STATE(1880), + [sym_preproc_warning] = STATE(1880), + [sym_preproc_define] = STATE(1880), + [sym_preproc_undef] = STATE(1880), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_ref] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -364704,10 +360007,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2267), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -364748,160 +360051,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1909] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(3191), - [sym__name] = STATE(5955), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2259), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(4656), - [sym_non_lvalue_expression] = STATE(4630), - [sym_lvalue_expression] = STATE(3428), - [sym__expression_statement_expression] = STATE(4627), - [sym_assignment_expression] = STATE(4631), - [sym_binary_expression] = STATE(4627), - [sym_postfix_unary_expression] = STATE(4631), - [sym_prefix_unary_expression] = STATE(4631), - [sym__pointer_indirection_expression] = STATE(3195), - [sym_query_expression] = STATE(4627), - [sym_from_clause] = STATE(6224), - [sym_conditional_expression] = STATE(4627), - [sym_conditional_access_expression] = STATE(4627), - [sym_as_expression] = STATE(4627), - [sym_is_expression] = STATE(4627), - [sym_is_pattern_expression] = STATE(4627), - [sym_cast_expression] = STATE(4627), - [sym_checked_expression] = STATE(4627), - [sym_invocation_expression] = STATE(4631), - [sym_switch_expression] = STATE(4627), - [sym_await_expression] = STATE(4631), - [sym_throw_expression] = STATE(4627), - [sym_element_access_expression] = STATE(3195), - [sym_interpolated_string_expression] = STATE(4627), - [sym_member_access_expression] = STATE(3195), - [sym_object_creation_expression] = STATE(4631), - [sym_parenthesized_expression] = STATE(4631), - [sym__parenthesized_lvalue_expression] = STATE(3195), - [sym_lambda_expression] = STATE(4627), - [sym__lambda_expression_init] = STATE(7632), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(4627), - [sym_anonymous_method_expression] = STATE(4627), - [sym_anonymous_object_creation_expression] = STATE(4627), - [sym_implicit_array_creation_expression] = STATE(4627), - [sym_implicit_object_creation_expression] = STATE(4627), - [sym_implicit_stackalloc_expression] = STATE(4627), - [sym_initializer_expression] = STATE(4627), - [sym_default_expression] = STATE(4627), - [sym_with_expression] = STATE(4627), - [sym_sizeof_expression] = STATE(4627), - [sym_typeof_expression] = STATE(4627), - [sym_makeref_expression] = STATE(4627), - [sym_ref_expression] = STATE(4627), - [sym_reftype_expression] = STATE(4627), - [sym_refvalue_expression] = STATE(4627), - [sym_stackalloc_expression] = STATE(4627), - [sym_range_expression] = STATE(4627), - [sym_tuple_expression] = STATE(3195), - [sym_literal] = STATE(4627), - [sym_character_literal] = STATE(4629), - [sym_string_literal] = STATE(4629), - [sym_raw_string_literal] = STATE(4629), - [sym_boolean_literal] = STATE(4629), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2246), - [sym_preproc_if_in_expression] = STATE(4627), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1909), - [sym_preproc_endregion] = STATE(1909), - [sym_preproc_line] = STATE(1909), - [sym_preproc_pragma] = STATE(1909), - [sym_preproc_nullable] = STATE(1909), - [sym_preproc_error] = STATE(1909), - [sym_preproc_warning] = STATE(1909), - [sym_preproc_define] = STATE(1909), - [sym_preproc_undef] = STATE(1909), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(1391), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_global] = ACTIONS(1393), + [1881] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3788), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1881), + [sym_preproc_endregion] = STATE(1881), + [sym_preproc_line] = STATE(1881), + [sym_preproc_pragma] = STATE(1881), + [sym_preproc_nullable] = STATE(1881), + [sym_preproc_error] = STATE(1881), + [sym_preproc_warning] = STATE(1881), + [sym_preproc_define] = STATE(1881), + [sym_preproc_undef] = STATE(1881), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_delegate] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_notnull] = ACTIONS(1393), - [anon_sym_unmanaged] = ACTIONS(1393), - [anon_sym_checked] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_this] = ACTIONS(1417), - [anon_sym_scoped] = ACTIONS(1419), - [anon_sym_base] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1423), - [sym_predefined_type] = ACTIONS(1425), - [anon_sym_unchecked] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(1393), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_from] = ACTIONS(1435), - [anon_sym_into] = ACTIONS(1393), - [anon_sym_join] = ACTIONS(1393), - [anon_sym_on] = ACTIONS(1393), - [anon_sym_equals] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_orderby] = ACTIONS(1393), - [anon_sym_ascending] = ACTIONS(1393), - [anon_sym_descending] = ACTIONS(1393), - [anon_sym_group] = ACTIONS(1393), - [anon_sym_by] = ACTIONS(1393), - [anon_sym_select] = ACTIONS(1393), - [anon_sym_stackalloc] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1441), - [anon_sym___makeref] = ACTIONS(1443), - [anon_sym___reftype] = ACTIONS(1445), - [anon_sym___refvalue] = ACTIONS(1447), - [sym_null_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_verbatim_string_literal] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1457), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364912,128 +360215,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1459), - [sym_interpolation_verbatim_start] = ACTIONS(1461), - [sym_interpolation_raw_start] = ACTIONS(1463), - [sym_raw_string_start] = ACTIONS(1465), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1910] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5609), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1910), - [sym_preproc_endregion] = STATE(1910), - [sym_preproc_line] = STATE(1910), - [sym_preproc_pragma] = STATE(1910), - [sym_preproc_nullable] = STATE(1910), - [sym_preproc_error] = STATE(1910), - [sym_preproc_warning] = STATE(1910), - [sym_preproc_define] = STATE(1910), - [sym_preproc_undef] = STATE(1910), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1882] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5603), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3720), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6230), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7556), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1882), + [sym_preproc_endregion] = STATE(1882), + [sym_preproc_line] = STATE(1882), + [sym_preproc_pragma] = STATE(1882), + [sym_preproc_nullable] = STATE(1882), + [sym_preproc_error] = STATE(1882), + [sym_preproc_warning] = STATE(1882), + [sym_preproc_define] = STATE(1882), + [sym_preproc_undef] = STATE(1882), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_ref] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2183), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -365042,10 +360345,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2191), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2195), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365086,123 +360389,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1911] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5659), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1911), - [sym_preproc_endregion] = STATE(1911), - [sym_preproc_line] = STATE(1911), - [sym_preproc_pragma] = STATE(1911), - [sym_preproc_nullable] = STATE(1911), - [sym_preproc_error] = STATE(1911), - [sym_preproc_warning] = STATE(1911), - [sym_preproc_define] = STATE(1911), - [sym_preproc_undef] = STATE(1911), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1883] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5566), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1883), + [sym_preproc_endregion] = STATE(1883), + [sym_preproc_line] = STATE(1883), + [sym_preproc_pragma] = STATE(1883), + [sym_preproc_nullable] = STATE(1883), + [sym_preproc_error] = STATE(1883), + [sym_preproc_warning] = STATE(1883), + [sym_preproc_define] = STATE(1883), + [sym_preproc_undef] = STATE(1883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -365211,10 +360514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365255,123 +360558,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1912] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1912), - [sym_preproc_endregion] = STATE(1912), - [sym_preproc_line] = STATE(1912), - [sym_preproc_pragma] = STATE(1912), - [sym_preproc_nullable] = STATE(1912), - [sym_preproc_error] = STATE(1912), - [sym_preproc_warning] = STATE(1912), - [sym_preproc_define] = STATE(1912), - [sym_preproc_undef] = STATE(1912), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1884] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3639), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(2947), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6220), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7600), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1884), + [sym_preproc_endregion] = STATE(1884), + [sym_preproc_line] = STATE(1884), + [sym_preproc_pragma] = STATE(1884), + [sym_preproc_nullable] = STATE(1884), + [sym_preproc_error] = STATE(1884), + [sym_preproc_warning] = STATE(1884), + [sym_preproc_define] = STATE(1884), + [sym_preproc_undef] = STATE(1884), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_ref] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [1885] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3839), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1885), + [sym_preproc_endregion] = STATE(1885), + [sym_preproc_line] = STATE(1885), + [sym_preproc_pragma] = STATE(1885), + [sym_preproc_nullable] = STATE(1885), + [sym_preproc_error] = STATE(1885), + [sym_preproc_warning] = STATE(1885), + [sym_preproc_define] = STATE(1885), + [sym_preproc_undef] = STATE(1885), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), + }, + [1886] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5572), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1886), + [sym_preproc_endregion] = STATE(1886), + [sym_preproc_line] = STATE(1886), + [sym_preproc_pragma] = STATE(1886), + [sym_preproc_nullable] = STATE(1886), + [sym_preproc_error] = STATE(1886), + [sym_preproc_warning] = STATE(1886), + [sym_preproc_define] = STATE(1886), + [sym_preproc_undef] = STATE(1886), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -365380,10 +361021,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365424,123 +361065,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1913] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2490), - [sym__name] = STATE(5954), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5676), - [sym_non_lvalue_expression] = STATE(3136), - [sym_lvalue_expression] = STATE(3414), - [sym__expression_statement_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3128), - [sym_binary_expression] = STATE(3144), - [sym_postfix_unary_expression] = STATE(3128), - [sym_prefix_unary_expression] = STATE(3128), - [sym__pointer_indirection_expression] = STATE(2498), - [sym_query_expression] = STATE(3144), - [sym_from_clause] = STATE(6207), - [sym_conditional_expression] = STATE(3144), - [sym_conditional_access_expression] = STATE(3144), - [sym_as_expression] = STATE(3144), - [sym_is_expression] = STATE(3144), - [sym_is_pattern_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_checked_expression] = STATE(3144), - [sym_invocation_expression] = STATE(3128), - [sym_switch_expression] = STATE(3144), - [sym_await_expression] = STATE(3128), - [sym_throw_expression] = STATE(3144), - [sym_element_access_expression] = STATE(2498), - [sym_interpolated_string_expression] = STATE(3144), - [sym_member_access_expression] = STATE(2498), - [sym_object_creation_expression] = STATE(3128), - [sym_parenthesized_expression] = STATE(3128), - [sym__parenthesized_lvalue_expression] = STATE(2498), - [sym_lambda_expression] = STATE(3144), - [sym__lambda_expression_init] = STATE(7594), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3144), - [sym_anonymous_method_expression] = STATE(3144), - [sym_anonymous_object_creation_expression] = STATE(3144), - [sym_implicit_array_creation_expression] = STATE(3144), - [sym_implicit_object_creation_expression] = STATE(3144), - [sym_implicit_stackalloc_expression] = STATE(3144), - [sym_initializer_expression] = STATE(3144), - [sym_default_expression] = STATE(3144), - [sym_with_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_typeof_expression] = STATE(3144), - [sym_makeref_expression] = STATE(3144), - [sym_ref_expression] = STATE(3144), - [sym_reftype_expression] = STATE(3144), - [sym_refvalue_expression] = STATE(3144), - [sym_stackalloc_expression] = STATE(3144), - [sym_range_expression] = STATE(3144), - [sym_tuple_expression] = STATE(2498), - [sym_literal] = STATE(3144), - [sym_character_literal] = STATE(3555), - [sym_string_literal] = STATE(3555), - [sym_raw_string_literal] = STATE(3555), - [sym_boolean_literal] = STATE(3555), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3144), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1913), - [sym_preproc_endregion] = STATE(1913), - [sym_preproc_line] = STATE(1913), - [sym_preproc_pragma] = STATE(1913), - [sym_preproc_nullable] = STATE(1913), - [sym_preproc_error] = STATE(1913), - [sym_preproc_warning] = STATE(1913), - [sym_preproc_define] = STATE(1913), - [sym_preproc_undef] = STATE(1913), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3401), + [1887] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5576), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1887), + [sym_preproc_endregion] = STATE(1887), + [sym_preproc_line] = STATE(1887), + [sym_preproc_pragma] = STATE(1887), + [sym_preproc_nullable] = STATE(1887), + [sym_preproc_error] = STATE(1887), + [sym_preproc_warning] = STATE(1887), + [sym_preproc_define] = STATE(1887), + [sym_preproc_undef] = STATE(1887), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_delegate] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), @@ -365549,10 +361190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1077), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365593,123 +361234,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1914] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym_bracketed_argument_list] = STATE(2466), - [sym__name] = STATE(5921), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(2388), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_type] = STATE(5960), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_expression] = STATE(5163), - [sym_non_lvalue_expression] = STATE(3010), - [sym_lvalue_expression] = STATE(3667), - [sym__expression_statement_expression] = STATE(3013), - [sym_assignment_expression] = STATE(3085), - [sym_binary_expression] = STATE(3013), - [sym_postfix_unary_expression] = STATE(3085), - [sym_prefix_unary_expression] = STATE(3085), - [sym__pointer_indirection_expression] = STATE(2437), - [sym_query_expression] = STATE(3013), - [sym_from_clause] = STATE(6213), - [sym_conditional_expression] = STATE(3013), - [sym_conditional_access_expression] = STATE(3013), - [sym_as_expression] = STATE(3013), - [sym_is_expression] = STATE(3013), - [sym_is_pattern_expression] = STATE(3013), - [sym_cast_expression] = STATE(3013), - [sym_checked_expression] = STATE(3013), - [sym_invocation_expression] = STATE(3085), - [sym_switch_expression] = STATE(3013), - [sym_await_expression] = STATE(3085), - [sym_throw_expression] = STATE(3013), - [sym_element_access_expression] = STATE(2437), - [sym_interpolated_string_expression] = STATE(3013), - [sym_member_access_expression] = STATE(2437), - [sym_object_creation_expression] = STATE(3085), - [sym_parenthesized_expression] = STATE(3085), - [sym__parenthesized_lvalue_expression] = STATE(2437), - [sym_lambda_expression] = STATE(3013), - [sym__lambda_expression_init] = STATE(7528), - [sym__lambda_parameters] = STATE(7692), - [sym_array_creation_expression] = STATE(3013), - [sym_anonymous_method_expression] = STATE(3013), - [sym_anonymous_object_creation_expression] = STATE(3013), - [sym_implicit_array_creation_expression] = STATE(3013), - [sym_implicit_object_creation_expression] = STATE(3013), - [sym_implicit_stackalloc_expression] = STATE(3013), - [sym_initializer_expression] = STATE(3013), - [sym_default_expression] = STATE(3013), - [sym_with_expression] = STATE(3013), - [sym_sizeof_expression] = STATE(3013), - [sym_typeof_expression] = STATE(3013), - [sym_makeref_expression] = STATE(3013), - [sym_ref_expression] = STATE(3013), - [sym_reftype_expression] = STATE(3013), - [sym_refvalue_expression] = STATE(3013), - [sym_stackalloc_expression] = STATE(3013), - [sym_range_expression] = STATE(3013), - [sym_tuple_expression] = STATE(2437), - [sym_literal] = STATE(3013), - [sym_character_literal] = STATE(3034), - [sym_string_literal] = STATE(3034), - [sym_raw_string_literal] = STATE(3034), - [sym_boolean_literal] = STATE(3034), - [sym_identifier] = STATE(2191), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_expression] = STATE(3013), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(1914), - [sym_preproc_endregion] = STATE(1914), - [sym_preproc_line] = STATE(1914), - [sym_preproc_pragma] = STATE(1914), - [sym_preproc_nullable] = STATE(1914), - [sym_preproc_error] = STATE(1914), - [sym_preproc_warning] = STATE(1914), - [sym_preproc_define] = STATE(1914), - [sym_preproc_undef] = STATE(1914), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3146), - [aux_sym__lambda_expression_init_repeat1] = STATE(3462), + [1888] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(4394), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1888), + [sym_preproc_endregion] = STATE(1888), + [sym_preproc_line] = STATE(1888), + [sym_preproc_pragma] = STATE(1888), + [sym_preproc_nullable] = STATE(1888), + [sym_preproc_error] = STATE(1888), + [sym_preproc_warning] = STATE(1888), + [sym_preproc_define] = STATE(1888), + [sym_preproc_undef] = STATE(1888), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_ref] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), [anon_sym_LBRACE] = ACTIONS(1251), [anon_sym_delegate] = ACTIONS(1253), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(1255), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), [anon_sym_checked] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), [anon_sym_true] = ACTIONS(1263), [anon_sym_false] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), [anon_sym_this] = ACTIONS(1267), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(1269), @@ -365718,10 +361359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unchecked] = ACTIONS(1257), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(1273), - [anon_sym_throw] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(1495), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -365762,141 +361403,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1307), [sym_raw_string_start] = ACTIONS(1309), }, - [1915] = { - [sym_preproc_region] = STATE(1915), - [sym_preproc_endregion] = STATE(1915), - [sym_preproc_line] = STATE(1915), - [sym_preproc_pragma] = STATE(1915), - [sym_preproc_nullable] = STATE(1915), - [sym_preproc_error] = STATE(1915), - [sym_preproc_warning] = STATE(1915), - [sym_preproc_define] = STATE(1915), - [sym_preproc_undef] = STATE(1915), - [sym__identifier_token] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym_alias] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_global] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_ref] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_delegate] = ACTIONS(2977), - [anon_sym_record] = ACTIONS(2977), - [anon_sym_abstract] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_file] = ACTIONS(2977), - [anon_sym_fixed] = ACTIONS(2977), - [anon_sym_internal] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_partial] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_required] = ACTIONS(2977), - [anon_sym_sealed] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(2977), - [anon_sym_unmanaged] = ACTIONS(2977), - [anon_sym_checked] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_true] = ACTIONS(2977), - [anon_sym_false] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_this] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(2977), - [anon_sym_base] = ACTIONS(2977), - [anon_sym_var] = ACTIONS(2977), - [sym_predefined_type] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_unchecked] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_when] = ACTIONS(2977), - [anon_sym_await] = ACTIONS(2977), - [anon_sym_foreach] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_DOT_DOT] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(2977), - [anon_sym_into] = ACTIONS(2977), - [anon_sym_join] = ACTIONS(2977), - [anon_sym_on] = ACTIONS(2977), - [anon_sym_equals] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_orderby] = ACTIONS(2977), - [anon_sym_ascending] = ACTIONS(2977), - [anon_sym_descending] = ACTIONS(2977), - [anon_sym_group] = ACTIONS(2977), - [anon_sym_by] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_stackalloc] = ACTIONS(2977), - [anon_sym_with] = ACTIONS(2981), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym_typeof] = ACTIONS(2977), - [anon_sym___makeref] = ACTIONS(2977), - [anon_sym___reftype] = ACTIONS(2977), - [anon_sym___refvalue] = ACTIONS(2977), - [sym_null_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2979), - [sym_integer_literal] = ACTIONS(2977), - [sym_real_literal] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_verbatim_string_literal] = ACTIONS(2979), - [aux_sym_preproc_if_token1] = ACTIONS(2979), - [aux_sym_preproc_if_token3] = ACTIONS(2979), - [aux_sym_preproc_else_token1] = ACTIONS(2979), - [aux_sym_preproc_elif_token1] = ACTIONS(2979), + [1889] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5580), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1889), + [sym_preproc_endregion] = STATE(1889), + [sym_preproc_line] = STATE(1889), + [sym_preproc_pragma] = STATE(1889), + [sym_preproc_nullable] = STATE(1889), + [sym_preproc_error] = STATE(1889), + [sym_preproc_warning] = STATE(1889), + [sym_preproc_define] = STATE(1889), + [sym_preproc_undef] = STATE(1889), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365907,294 +361567,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2979), - [sym_interpolation_verbatim_start] = ACTIONS(2979), - [sym_interpolation_raw_start] = ACTIONS(2979), - [sym_raw_string_start] = ACTIONS(2979), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1916] = { - [sym_preproc_region] = STATE(1916), - [sym_preproc_endregion] = STATE(1916), - [sym_preproc_line] = STATE(1916), - [sym_preproc_pragma] = STATE(1916), - [sym_preproc_nullable] = STATE(1916), - [sym_preproc_error] = STATE(1916), - [sym_preproc_warning] = STATE(1916), - [sym_preproc_define] = STATE(1916), - [sym_preproc_undef] = STATE(1916), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_record] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_this] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_base] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_unchecked] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2985), - [anon_sym_foreach] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_stackalloc] = ACTIONS(2985), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym_typeof] = ACTIONS(2985), - [anon_sym___makeref] = ACTIONS(2985), - [anon_sym___reftype] = ACTIONS(2985), - [anon_sym___refvalue] = ACTIONS(2985), - [sym_null_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2987), - [sym_integer_literal] = ACTIONS(2985), - [sym_real_literal] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_verbatim_string_literal] = ACTIONS(2987), - [aux_sym_preproc_if_token1] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2987), - [sym_interpolation_verbatim_start] = ACTIONS(2987), - [sym_interpolation_raw_start] = ACTIONS(2987), - [sym_raw_string_start] = ACTIONS(2987), - }, - [1917] = { - [sym_preproc_region] = STATE(1917), - [sym_preproc_endregion] = STATE(1917), - [sym_preproc_line] = STATE(1917), - [sym_preproc_pragma] = STATE(1917), - [sym_preproc_nullable] = STATE(1917), - [sym_preproc_error] = STATE(1917), - [sym_preproc_warning] = STATE(1917), - [sym_preproc_define] = STATE(1917), - [sym_preproc_undef] = STATE(1917), - [ts_builtin_sym_end] = ACTIONS(2979), - [sym__identifier_token] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym_alias] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_global] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_ref] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_delegate] = ACTIONS(2977), - [anon_sym_record] = ACTIONS(2977), - [anon_sym_abstract] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_file] = ACTIONS(2977), - [anon_sym_fixed] = ACTIONS(2977), - [anon_sym_internal] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_partial] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_required] = ACTIONS(2977), - [anon_sym_sealed] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(2977), - [anon_sym_unmanaged] = ACTIONS(2977), - [anon_sym_checked] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_true] = ACTIONS(2977), - [anon_sym_false] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_this] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(2977), - [anon_sym_base] = ACTIONS(2977), - [anon_sym_var] = ACTIONS(2977), - [sym_predefined_type] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_unchecked] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_when] = ACTIONS(2977), - [anon_sym_await] = ACTIONS(2977), - [anon_sym_foreach] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_DOT_DOT] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(2977), - [anon_sym_into] = ACTIONS(2977), - [anon_sym_join] = ACTIONS(2977), - [anon_sym_on] = ACTIONS(2977), - [anon_sym_equals] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_orderby] = ACTIONS(2977), - [anon_sym_ascending] = ACTIONS(2977), - [anon_sym_descending] = ACTIONS(2977), - [anon_sym_group] = ACTIONS(2977), - [anon_sym_by] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_stackalloc] = ACTIONS(2977), - [anon_sym_with] = ACTIONS(2981), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym_typeof] = ACTIONS(2977), - [anon_sym___makeref] = ACTIONS(2977), - [anon_sym___reftype] = ACTIONS(2977), - [anon_sym___refvalue] = ACTIONS(2977), - [sym_null_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2979), - [sym_integer_literal] = ACTIONS(2977), - [sym_real_literal] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_verbatim_string_literal] = ACTIONS(2979), - [aux_sym_preproc_if_token1] = ACTIONS(2979), + [1890] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2458), + [sym__name] = STATE(5950), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2205), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(2942), + [sym_non_lvalue_expression] = STATE(3070), + [sym_lvalue_expression] = STATE(3379), + [sym__expression_statement_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3071), + [sym_binary_expression] = STATE(3064), + [sym_postfix_unary_expression] = STATE(3071), + [sym_prefix_unary_expression] = STATE(3071), + [sym__pointer_indirection_expression] = STATE(2457), + [sym_query_expression] = STATE(3064), + [sym_from_clause] = STATE(6212), + [sym_conditional_expression] = STATE(3064), + [sym_conditional_access_expression] = STATE(3064), + [sym_as_expression] = STATE(3064), + [sym_is_expression] = STATE(3064), + [sym_is_pattern_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_checked_expression] = STATE(3064), + [sym_invocation_expression] = STATE(3071), + [sym_switch_expression] = STATE(3064), + [sym_await_expression] = STATE(3071), + [sym_throw_expression] = STATE(3064), + [sym_element_access_expression] = STATE(2457), + [sym_interpolated_string_expression] = STATE(3064), + [sym_member_access_expression] = STATE(2457), + [sym_object_creation_expression] = STATE(3071), + [sym_parenthesized_expression] = STATE(3071), + [sym__parenthesized_lvalue_expression] = STATE(2457), + [sym_lambda_expression] = STATE(3064), + [sym__lambda_expression_init] = STATE(7629), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3064), + [sym_anonymous_method_expression] = STATE(3064), + [sym_anonymous_object_creation_expression] = STATE(3064), + [sym_implicit_array_creation_expression] = STATE(3064), + [sym_implicit_object_creation_expression] = STATE(3064), + [sym_implicit_stackalloc_expression] = STATE(3064), + [sym_initializer_expression] = STATE(3064), + [sym_default_expression] = STATE(3064), + [sym_with_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_typeof_expression] = STATE(3064), + [sym_makeref_expression] = STATE(3064), + [sym_ref_expression] = STATE(3064), + [sym_reftype_expression] = STATE(3064), + [sym_refvalue_expression] = STATE(3064), + [sym_stackalloc_expression] = STATE(3064), + [sym_range_expression] = STATE(3064), + [sym_tuple_expression] = STATE(2457), + [sym_literal] = STATE(3064), + [sym_character_literal] = STATE(3067), + [sym_string_literal] = STATE(3067), + [sym_raw_string_literal] = STATE(3067), + [sym_boolean_literal] = STATE(3067), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3064), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1890), + [sym_preproc_endregion] = STATE(1890), + [sym_preproc_line] = STATE(1890), + [sym_preproc_pragma] = STATE(1890), + [sym_preproc_nullable] = STATE(1890), + [sym_preproc_error] = STATE(1890), + [sym_preproc_warning] = STATE(1890), + [sym_preproc_define] = STATE(1890), + [sym_preproc_undef] = STATE(1890), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3487), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_ref] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_delegate] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1269), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1271), + [anon_sym_unchecked] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1285), + [anon_sym___makeref] = ACTIONS(1287), + [anon_sym___reftype] = ACTIONS(1289), + [anon_sym___refvalue] = ACTIONS(1291), + [sym_null_literal] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [sym_real_literal] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_verbatim_string_literal] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366205,144 +361736,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2979), - [sym_interpolation_verbatim_start] = ACTIONS(2979), - [sym_interpolation_raw_start] = ACTIONS(2979), - [sym_raw_string_start] = ACTIONS(2979), + [sym_interpolation_regular_start] = ACTIONS(1303), + [sym_interpolation_verbatim_start] = ACTIONS(1305), + [sym_interpolation_raw_start] = ACTIONS(1307), + [sym_raw_string_start] = ACTIONS(1309), }, - [1918] = { - [sym_preproc_region] = STATE(1918), - [sym_preproc_endregion] = STATE(1918), - [sym_preproc_line] = STATE(1918), - [sym_preproc_pragma] = STATE(1918), - [sym_preproc_nullable] = STATE(1918), - [sym_preproc_error] = STATE(1918), - [sym_preproc_warning] = STATE(1918), - [sym_preproc_define] = STATE(1918), - [sym_preproc_undef] = STATE(1918), - [ts_builtin_sym_end] = ACTIONS(2987), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_record] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_this] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_base] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_unchecked] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2985), - [anon_sym_foreach] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_stackalloc] = ACTIONS(2985), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym_typeof] = ACTIONS(2985), - [anon_sym___makeref] = ACTIONS(2985), - [anon_sym___reftype] = ACTIONS(2985), - [anon_sym___refvalue] = ACTIONS(2985), - [sym_null_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2987), - [sym_integer_literal] = ACTIONS(2985), - [sym_real_literal] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_verbatim_string_literal] = ACTIONS(2987), - [aux_sym_preproc_if_token1] = ACTIONS(2987), + [1891] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5663), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1891), + [sym_preproc_endregion] = STATE(1891), + [sym_preproc_line] = STATE(1891), + [sym_preproc_pragma] = STATE(1891), + [sym_preproc_nullable] = STATE(1891), + [sym_preproc_error] = STATE(1891), + [sym_preproc_warning] = STATE(1891), + [sym_preproc_define] = STATE(1891), + [sym_preproc_undef] = STATE(1891), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366353,140 +361905,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2987), - [sym_interpolation_verbatim_start] = ACTIONS(2987), - [sym_interpolation_raw_start] = ACTIONS(2987), - [sym_raw_string_start] = ACTIONS(2987), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1919] = { - [sym_preproc_region] = STATE(1919), - [sym_preproc_endregion] = STATE(1919), - [sym_preproc_line] = STATE(1919), - [sym_preproc_pragma] = STATE(1919), - [sym_preproc_nullable] = STATE(1919), - [sym_preproc_error] = STATE(1919), - [sym_preproc_warning] = STATE(1919), - [sym_preproc_define] = STATE(1919), - [sym_preproc_undef] = STATE(1919), - [sym__identifier_token] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym_alias] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_global] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_ref] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_delegate] = ACTIONS(2977), - [anon_sym_abstract] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_file] = ACTIONS(2977), - [anon_sym_fixed] = ACTIONS(2977), - [anon_sym_internal] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_partial] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_readonly] = ACTIONS(2977), - [anon_sym_required] = ACTIONS(2977), - [anon_sym_sealed] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(2977), - [anon_sym_unmanaged] = ACTIONS(2977), - [anon_sym_checked] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_true] = ACTIONS(2977), - [anon_sym_false] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_this] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(2977), - [anon_sym_base] = ACTIONS(2977), - [anon_sym_var] = ACTIONS(2977), - [sym_predefined_type] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_unchecked] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_when] = ACTIONS(2977), - [anon_sym_await] = ACTIONS(2977), - [anon_sym_foreach] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_DOT_DOT] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(2977), - [anon_sym_into] = ACTIONS(2977), - [anon_sym_join] = ACTIONS(2977), - [anon_sym_on] = ACTIONS(2977), - [anon_sym_equals] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_orderby] = ACTIONS(2977), - [anon_sym_ascending] = ACTIONS(2977), - [anon_sym_descending] = ACTIONS(2977), - [anon_sym_group] = ACTIONS(2977), - [anon_sym_by] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_stackalloc] = ACTIONS(2977), - [anon_sym_with] = ACTIONS(2981), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym_typeof] = ACTIONS(2977), - [anon_sym___makeref] = ACTIONS(2977), - [anon_sym___reftype] = ACTIONS(2977), - [anon_sym___refvalue] = ACTIONS(2977), - [sym_null_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2979), - [sym_integer_literal] = ACTIONS(2977), - [sym_real_literal] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_verbatim_string_literal] = ACTIONS(2979), - [aux_sym_preproc_if_token1] = ACTIONS(2979), + [1892] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3741), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1892), + [sym_preproc_endregion] = STATE(1892), + [sym_preproc_line] = STATE(1892), + [sym_preproc_pragma] = STATE(1892), + [sym_preproc_nullable] = STATE(1892), + [sym_preproc_error] = STATE(1892), + [sym_preproc_warning] = STATE(1892), + [sym_preproc_define] = STATE(1892), + [sym_preproc_undef] = STATE(1892), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366497,140 +362074,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2979), - [sym_interpolation_verbatim_start] = ACTIONS(2979), - [sym_interpolation_raw_start] = ACTIONS(2979), - [sym_raw_string_start] = ACTIONS(2979), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1920] = { - [sym_preproc_region] = STATE(1920), - [sym_preproc_endregion] = STATE(1920), - [sym_preproc_line] = STATE(1920), - [sym_preproc_pragma] = STATE(1920), - [sym_preproc_nullable] = STATE(1920), - [sym_preproc_error] = STATE(1920), - [sym_preproc_warning] = STATE(1920), - [sym_preproc_define] = STATE(1920), - [sym_preproc_undef] = STATE(1920), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_this] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_base] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_unchecked] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2985), - [anon_sym_foreach] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_stackalloc] = ACTIONS(2985), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym_typeof] = ACTIONS(2985), - [anon_sym___makeref] = ACTIONS(2985), - [anon_sym___reftype] = ACTIONS(2985), - [anon_sym___refvalue] = ACTIONS(2985), - [sym_null_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2987), - [sym_integer_literal] = ACTIONS(2985), - [sym_real_literal] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_verbatim_string_literal] = ACTIONS(2987), - [aux_sym_preproc_if_token1] = ACTIONS(2987), + [1893] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5582), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1893), + [sym_preproc_endregion] = STATE(1893), + [sym_preproc_line] = STATE(1893), + [sym_preproc_pragma] = STATE(1893), + [sym_preproc_nullable] = STATE(1893), + [sym_preproc_error] = STATE(1893), + [sym_preproc_warning] = STATE(1893), + [sym_preproc_define] = STATE(1893), + [sym_preproc_undef] = STATE(1893), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366641,140 +362243,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2987), - [sym_interpolation_verbatim_start] = ACTIONS(2987), - [sym_interpolation_raw_start] = ACTIONS(2987), - [sym_raw_string_start] = ACTIONS(2987), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1921] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(2893), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_else] = STATE(7541), - [sym_preproc_elif] = STATE(7541), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7705), - [sym_preproc_elif_in_attribute_list] = STATE(7705), - [sym_preproc_region] = STATE(1921), - [sym_preproc_endregion] = STATE(1921), - [sym_preproc_line] = STATE(1921), - [sym_preproc_pragma] = STATE(1921), - [sym_preproc_nullable] = STATE(1921), - [sym_preproc_error] = STATE(1921), - [sym_preproc_warning] = STATE(1921), - [sym_preproc_define] = STATE(1921), - [sym_preproc_undef] = STATE(1921), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1924), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3029), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3033), + [1894] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1894), + [sym_preproc_endregion] = STATE(1894), + [sym_preproc_line] = STATE(1894), + [sym_preproc_pragma] = STATE(1894), + [sym_preproc_nullable] = STATE(1894), + [sym_preproc_error] = STATE(1894), + [sym_preproc_warning] = STATE(1894), + [sym_preproc_define] = STATE(1894), + [sym_preproc_undef] = STATE(1894), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366785,136 +362412,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1922] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(2895), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_else] = STATE(7394), - [sym_preproc_elif] = STATE(7394), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_else_in_attribute_list] = STATE(7798), - [sym_preproc_elif_in_attribute_list] = STATE(7798), - [sym_preproc_region] = STATE(1922), - [sym_preproc_endregion] = STATE(1922), - [sym_preproc_line] = STATE(1922), - [sym_preproc_pragma] = STATE(1922), - [sym_preproc_nullable] = STATE(1922), - [sym_preproc_error] = STATE(1922), - [sym_preproc_warning] = STATE(1922), - [sym_preproc_define] = STATE(1922), - [sym_preproc_undef] = STATE(1922), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1923), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3031), - [aux_sym_preproc_elif_token1] = ACTIONS(3033), + [1895] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5583), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1895), + [sym_preproc_endregion] = STATE(1895), + [sym_preproc_line] = STATE(1895), + [sym_preproc_pragma] = STATE(1895), + [sym_preproc_nullable] = STATE(1895), + [sym_preproc_error] = STATE(1895), + [sym_preproc_warning] = STATE(1895), + [sym_preproc_define] = STATE(1895), + [sym_preproc_undef] = STATE(1895), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366925,134 +362581,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1923] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_else] = STATE(7459), - [sym_preproc_elif] = STATE(7459), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1923), - [sym_preproc_endregion] = STATE(1923), - [sym_preproc_line] = STATE(1923), - [sym_preproc_pragma] = STATE(1923), - [sym_preproc_nullable] = STATE(1923), - [sym_preproc_error] = STATE(1923), - [sym_preproc_warning] = STATE(1923), - [sym_preproc_define] = STATE(1923), - [sym_preproc_undef] = STATE(1923), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1926), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [1896] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5585), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1896), + [sym_preproc_endregion] = STATE(1896), + [sym_preproc_line] = STATE(1896), + [sym_preproc_pragma] = STATE(1896), + [sym_preproc_nullable] = STATE(1896), + [sym_preproc_error] = STATE(1896), + [sym_preproc_warning] = STATE(1896), + [sym_preproc_define] = STATE(1896), + [sym_preproc_undef] = STATE(1896), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367063,134 +362750,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1924] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_else] = STATE(7467), - [sym_preproc_elif] = STATE(7467), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1924), - [sym_preproc_endregion] = STATE(1924), - [sym_preproc_line] = STATE(1924), - [sym_preproc_pragma] = STATE(1924), - [sym_preproc_nullable] = STATE(1924), - [sym_preproc_error] = STATE(1924), - [sym_preproc_warning] = STATE(1924), - [sym_preproc_define] = STATE(1924), - [sym_preproc_undef] = STATE(1924), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1926), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3043), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [1897] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5586), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1897), + [sym_preproc_endregion] = STATE(1897), + [sym_preproc_line] = STATE(1897), + [sym_preproc_pragma] = STATE(1897), + [sym_preproc_nullable] = STATE(1897), + [sym_preproc_error] = STATE(1897), + [sym_preproc_warning] = STATE(1897), + [sym_preproc_define] = STATE(1897), + [sym_preproc_undef] = STATE(1897), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367201,134 +362919,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1925] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_else] = STATE(7394), - [sym_preproc_elif] = STATE(7394), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1925), - [sym_preproc_endregion] = STATE(1925), - [sym_preproc_line] = STATE(1925), - [sym_preproc_pragma] = STATE(1925), - [sym_preproc_nullable] = STATE(1925), - [sym_preproc_error] = STATE(1925), - [sym_preproc_warning] = STATE(1925), - [sym_preproc_define] = STATE(1925), - [sym_preproc_undef] = STATE(1925), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1923), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3035), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [1898] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5587), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1898), + [sym_preproc_endregion] = STATE(1898), + [sym_preproc_line] = STATE(1898), + [sym_preproc_pragma] = STATE(1898), + [sym_preproc_nullable] = STATE(1898), + [sym_preproc_error] = STATE(1898), + [sym_preproc_warning] = STATE(1898), + [sym_preproc_define] = STATE(1898), + [sym_preproc_undef] = STATE(1898), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367339,133 +363088,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1926] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1926), - [sym_preproc_endregion] = STATE(1926), - [sym_preproc_line] = STATE(1926), - [sym_preproc_pragma] = STATE(1926), - [sym_preproc_nullable] = STATE(1926), - [sym_preproc_error] = STATE(1926), - [sym_preproc_warning] = STATE(1926), - [sym_preproc_define] = STATE(1926), - [sym_preproc_undef] = STATE(1926), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1926), - [sym__identifier_token] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3048), - [anon_sym_alias] = ACTIONS(3051), - [anon_sym_global] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_event] = ACTIONS(3069), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_ref] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3089), - [anon_sym_delegate] = ACTIONS(3092), - [anon_sym_record] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_const] = ACTIONS(3060), - [anon_sym_file] = ACTIONS(3098), - [anon_sym_fixed] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_partial] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_protected] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_sealed] = ACTIONS(3060), - [anon_sym_virtual] = ACTIONS(3060), - [anon_sym_volatile] = ACTIONS(3060), - [anon_sym_where] = ACTIONS(3051), - [anon_sym_notnull] = ACTIONS(3051), - [anon_sym_unmanaged] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_implicit] = ACTIONS(3104), - [anon_sym_explicit] = ACTIONS(3104), - [anon_sym_scoped] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3110), - [sym_predefined_type] = ACTIONS(3113), - [anon_sym_yield] = ACTIONS(3051), - [anon_sym_when] = ACTIONS(3051), - [anon_sym_from] = ACTIONS(3051), - [anon_sym_into] = ACTIONS(3051), - [anon_sym_join] = ACTIONS(3051), - [anon_sym_on] = ACTIONS(3051), - [anon_sym_equals] = ACTIONS(3051), - [anon_sym_let] = ACTIONS(3051), - [anon_sym_orderby] = ACTIONS(3051), - [anon_sym_ascending] = ACTIONS(3051), - [anon_sym_descending] = ACTIONS(3051), - [anon_sym_group] = ACTIONS(3051), - [anon_sym_by] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token3] = ACTIONS(3087), - [aux_sym_preproc_else_token1] = ACTIONS(3087), - [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [1899] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5588), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1899), + [sym_preproc_endregion] = STATE(1899), + [sym_preproc_line] = STATE(1899), + [sym_preproc_pragma] = STATE(1899), + [sym_preproc_nullable] = STATE(1899), + [sym_preproc_error] = STATE(1899), + [sym_preproc_warning] = STATE(1899), + [sym_preproc_define] = STATE(1899), + [sym_preproc_undef] = STATE(1899), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367476,264 +363257,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1927] = { - [sym_catch_clause] = STATE(1940), - [sym_finally_clause] = STATE(1952), - [sym_preproc_region] = STATE(1927), - [sym_preproc_endregion] = STATE(1927), - [sym_preproc_line] = STATE(1927), - [sym_preproc_pragma] = STATE(1927), - [sym_preproc_nullable] = STATE(1927), - [sym_preproc_error] = STATE(1927), - [sym_preproc_warning] = STATE(1927), - [sym_preproc_define] = STATE(1927), - [sym_preproc_undef] = STATE(1927), - [aux_sym_try_statement_repeat1] = STATE(1929), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_record] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_catch] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3119), - [anon_sym_finally] = ACTIONS(3125), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_if_token3] = ACTIONS(3121), - [aux_sym_preproc_else_token1] = ACTIONS(3121), - [aux_sym_preproc_elif_token1] = ACTIONS(3121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), - }, - [1928] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1928), - [sym_preproc_endregion] = STATE(1928), - [sym_preproc_line] = STATE(1928), - [sym_preproc_pragma] = STATE(1928), - [sym_preproc_nullable] = STATE(1928), - [sym_preproc_error] = STATE(1928), - [sym_preproc_warning] = STATE(1928), - [sym_preproc_define] = STATE(1928), - [sym_preproc_undef] = STATE(1928), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1926), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), + [1900] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3742), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1900), + [sym_preproc_endregion] = STATE(1900), + [sym_preproc_line] = STATE(1900), + [sym_preproc_pragma] = STATE(1900), + [sym_preproc_nullable] = STATE(1900), + [sym_preproc_error] = STATE(1900), + [sym_preproc_warning] = STATE(1900), + [sym_preproc_define] = STATE(1900), + [sym_preproc_undef] = STATE(1900), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367744,126 +363426,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1929] = { - [sym_catch_clause] = STATE(1940), - [sym_finally_clause] = STATE(1961), - [sym_preproc_region] = STATE(1929), - [sym_preproc_endregion] = STATE(1929), - [sym_preproc_line] = STATE(1929), - [sym_preproc_pragma] = STATE(1929), - [sym_preproc_nullable] = STATE(1929), - [sym_preproc_error] = STATE(1929), - [sym_preproc_warning] = STATE(1929), - [sym_preproc_define] = STATE(1929), - [sym_preproc_undef] = STATE(1929), - [aux_sym_try_statement_repeat1] = STATE(1934), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_record] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_catch] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3125), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token3] = ACTIONS(3131), - [aux_sym_preproc_else_token1] = ACTIONS(3131), - [aux_sym_preproc_elif_token1] = ACTIONS(3131), + [1901] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5605), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1901), + [sym_preproc_endregion] = STATE(1901), + [sym_preproc_line] = STATE(1901), + [sym_preproc_pragma] = STATE(1901), + [sym_preproc_nullable] = STATE(1901), + [sym_preproc_error] = STATE(1901), + [sym_preproc_warning] = STATE(1901), + [sym_preproc_define] = STATE(1901), + [sym_preproc_undef] = STATE(1901), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367874,134 +363595,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1930] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1930), - [sym_preproc_endregion] = STATE(1930), - [sym_preproc_line] = STATE(1930), - [sym_preproc_pragma] = STATE(1930), - [sym_preproc_nullable] = STATE(1930), - [sym_preproc_error] = STATE(1930), - [sym_preproc_warning] = STATE(1930), - [sym_preproc_define] = STATE(1930), - [sym_preproc_undef] = STATE(1930), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1932), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3133), + [1902] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3743), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1902), + [sym_preproc_endregion] = STATE(1902), + [sym_preproc_line] = STATE(1902), + [sym_preproc_pragma] = STATE(1902), + [sym_preproc_nullable] = STATE(1902), + [sym_preproc_error] = STATE(1902), + [sym_preproc_warning] = STATE(1902), + [sym_preproc_define] = STATE(1902), + [sym_preproc_undef] = STATE(1902), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368012,130 +363764,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1931] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(2971), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1931), - [sym_preproc_endregion] = STATE(1931), - [sym_preproc_line] = STATE(1931), - [sym_preproc_pragma] = STATE(1931), - [sym_preproc_nullable] = STATE(1931), - [sym_preproc_error] = STATE(1931), - [sym_preproc_warning] = STATE(1931), - [sym_preproc_define] = STATE(1931), - [sym_preproc_undef] = STATE(1931), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1932), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3133), + [1903] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3801), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1903), + [sym_preproc_endregion] = STATE(1903), + [sym_preproc_line] = STATE(1903), + [sym_preproc_pragma] = STATE(1903), + [sym_preproc_nullable] = STATE(1903), + [sym_preproc_error] = STATE(1903), + [sym_preproc_warning] = STATE(1903), + [sym_preproc_define] = STATE(1903), + [sym_preproc_undef] = STATE(1903), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368146,130 +363933,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1932] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1932), - [sym_preproc_endregion] = STATE(1932), - [sym_preproc_line] = STATE(1932), - [sym_preproc_pragma] = STATE(1932), - [sym_preproc_nullable] = STATE(1932), - [sym_preproc_error] = STATE(1932), - [sym_preproc_warning] = STATE(1932), - [sym_preproc_define] = STATE(1932), - [sym_preproc_undef] = STATE(1932), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1926), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token3] = ACTIONS(3135), + [1904] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3818), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1904), + [sym_preproc_endregion] = STATE(1904), + [sym_preproc_line] = STATE(1904), + [sym_preproc_pragma] = STATE(1904), + [sym_preproc_nullable] = STATE(1904), + [sym_preproc_error] = STATE(1904), + [sym_preproc_warning] = STATE(1904), + [sym_preproc_define] = STATE(1904), + [sym_preproc_undef] = STATE(1904), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368280,130 +364102,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1933] = { - [sym_using_directive] = STATE(2870), - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_namespace_declaration] = STATE(2870), - [sym_class_declaration] = STATE(2870), - [sym__class_declaration_initializer] = STATE(6741), - [sym_struct_declaration] = STATE(2870), - [sym__struct_declaration_initializer] = STATE(6743), - [sym_enum_declaration] = STATE(2870), - [sym__enum_declaration_initializer] = STATE(6889), - [sym_interface_declaration] = STATE(2870), - [sym__interface_declaration_initializer] = STATE(6744), - [sym_delegate_declaration] = STATE(2870), - [sym__delegate_declaration_initializer] = STATE(6745), - [sym_record_declaration] = STATE(2870), - [sym__record_declaration_initializer] = STATE(6748), - [sym_modifier] = STATE(3164), - [sym_operator_declaration] = STATE(2870), - [sym_conversion_operator_declaration] = STATE(2870), - [sym_declaration] = STATE(2878), - [sym_field_declaration] = STATE(2870), - [sym_constructor_declaration] = STATE(2870), - [sym__constructor_declaration_initializer] = STATE(6464), - [sym_destructor_declaration] = STATE(2870), - [sym_method_declaration] = STATE(2870), - [sym_event_declaration] = STATE(2870), - [sym_event_field_declaration] = STATE(2870), - [sym_indexer_declaration] = STATE(2870), - [sym_property_declaration] = STATE(2870), - [sym_variable_declaration] = STATE(7747), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5594), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5764), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if] = STATE(2870), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(1933), - [sym_preproc_endregion] = STATE(1933), - [sym_preproc_line] = STATE(1933), - [sym_preproc_pragma] = STATE(1933), - [sym_preproc_nullable] = STATE(1933), - [sym_preproc_error] = STATE(1933), - [sym_preproc_warning] = STATE(1933), - [sym_preproc_define] = STATE(1933), - [sym_preproc_undef] = STATE(1933), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), - [aux_sym_declaration_list_repeat1] = STATE(1928), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(3013), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_implicit] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3027), + [1905] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3849), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1905), + [sym_preproc_endregion] = STATE(1905), + [sym_preproc_line] = STATE(1905), + [sym_preproc_pragma] = STATE(1905), + [sym_preproc_nullable] = STATE(1905), + [sym_preproc_error] = STATE(1905), + [sym_preproc_warning] = STATE(1905), + [sym_preproc_define] = STATE(1905), + [sym_preproc_undef] = STATE(1905), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368414,125 +364271,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1934] = { - [sym_catch_clause] = STATE(1940), - [sym_preproc_region] = STATE(1934), - [sym_preproc_endregion] = STATE(1934), - [sym_preproc_line] = STATE(1934), - [sym_preproc_pragma] = STATE(1934), - [sym_preproc_nullable] = STATE(1934), - [sym_preproc_error] = STATE(1934), - [sym_preproc_warning] = STATE(1934), - [sym_preproc_define] = STATE(1934), - [sym_preproc_undef] = STATE(1934), - [aux_sym_try_statement_repeat1] = STATE(1934), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_record] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_catch] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_finally] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), - [aux_sym_preproc_if_token3] = ACTIONS(3141), - [aux_sym_preproc_else_token1] = ACTIONS(3141), - [aux_sym_preproc_elif_token1] = ACTIONS(3141), + [1906] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1906), + [sym_preproc_endregion] = STATE(1906), + [sym_preproc_line] = STATE(1906), + [sym_preproc_pragma] = STATE(1906), + [sym_preproc_nullable] = STATE(1906), + [sym_preproc_error] = STATE(1906), + [sym_preproc_warning] = STATE(1906), + [sym_preproc_define] = STATE(1906), + [sym_preproc_undef] = STATE(1906), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368543,128 +364440,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1935] = { - [sym_catch_clause] = STATE(1992), - [sym_finally_clause] = STATE(2055), - [sym_preproc_region] = STATE(1935), - [sym_preproc_endregion] = STATE(1935), - [sym_preproc_line] = STATE(1935), - [sym_preproc_pragma] = STATE(1935), - [sym_preproc_nullable] = STATE(1935), - [sym_preproc_error] = STATE(1935), - [sym_preproc_warning] = STATE(1935), - [sym_preproc_define] = STATE(1935), - [sym_preproc_undef] = STATE(1935), - [aux_sym_try_statement_repeat1] = STATE(1938), - [ts_builtin_sym_end] = ACTIONS(3131), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_record] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_catch] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), + [1907] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1907), + [sym_preproc_endregion] = STATE(1907), + [sym_preproc_line] = STATE(1907), + [sym_preproc_pragma] = STATE(1907), + [sym_preproc_nullable] = STATE(1907), + [sym_preproc_error] = STATE(1907), + [sym_preproc_warning] = STATE(1907), + [sym_preproc_define] = STATE(1907), + [sym_preproc_undef] = STATE(1907), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368675,128 +364609,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1936] = { - [sym_catch_clause] = STATE(1992), - [sym_finally_clause] = STATE(2056), - [sym_preproc_region] = STATE(1936), - [sym_preproc_endregion] = STATE(1936), - [sym_preproc_line] = STATE(1936), - [sym_preproc_pragma] = STATE(1936), - [sym_preproc_nullable] = STATE(1936), - [sym_preproc_error] = STATE(1936), - [sym_preproc_warning] = STATE(1936), - [sym_preproc_define] = STATE(1936), - [sym_preproc_undef] = STATE(1936), - [aux_sym_try_statement_repeat1] = STATE(1935), - [ts_builtin_sym_end] = ACTIONS(3121), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_record] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_catch] = ACTIONS(3146), - [anon_sym_when] = ACTIONS(3119), - [anon_sym_finally] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), + [1908] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5689), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1908), + [sym_preproc_endregion] = STATE(1908), + [sym_preproc_line] = STATE(1908), + [sym_preproc_pragma] = STATE(1908), + [sym_preproc_nullable] = STATE(1908), + [sym_preproc_error] = STATE(1908), + [sym_preproc_warning] = STATE(1908), + [sym_preproc_define] = STATE(1908), + [sym_preproc_undef] = STATE(1908), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368807,127 +364778,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1937] = { - [sym_preproc_region] = STATE(1937), - [sym_preproc_endregion] = STATE(1937), - [sym_preproc_line] = STATE(1937), - [sym_preproc_pragma] = STATE(1937), - [sym_preproc_nullable] = STATE(1937), - [sym_preproc_error] = STATE(1937), - [sym_preproc_warning] = STATE(1937), - [sym_preproc_define] = STATE(1937), - [sym_preproc_undef] = STATE(1937), - [sym__identifier_token] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_alias] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_global] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_unsafe] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_ref] = ACTIONS(3150), - [anon_sym_struct] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_delegate] = ACTIONS(3150), - [anon_sym_record] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_file] = ACTIONS(3150), - [anon_sym_fixed] = ACTIONS(3150), - [anon_sym_internal] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_partial] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_required] = ACTIONS(3150), - [anon_sym_sealed] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3150), - [anon_sym_notnull] = ACTIONS(3150), - [anon_sym_unmanaged] = ACTIONS(3150), - [anon_sym_checked] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_true] = ACTIONS(3150), - [anon_sym_false] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_this] = ACTIONS(3150), - [anon_sym_scoped] = ACTIONS(3150), - [anon_sym_base] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [sym_predefined_type] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_unchecked] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_lock] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_catch] = ACTIONS(3150), - [anon_sym_when] = ACTIONS(3150), - [anon_sym_finally] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_foreach] = ACTIONS(3150), - [anon_sym_goto] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_from] = ACTIONS(3150), - [anon_sym_into] = ACTIONS(3150), - [anon_sym_join] = ACTIONS(3150), - [anon_sym_on] = ACTIONS(3150), - [anon_sym_equals] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_orderby] = ACTIONS(3150), - [anon_sym_ascending] = ACTIONS(3150), - [anon_sym_descending] = ACTIONS(3150), - [anon_sym_group] = ACTIONS(3150), - [anon_sym_by] = ACTIONS(3150), - [anon_sym_select] = ACTIONS(3150), - [anon_sym_stackalloc] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym___makeref] = ACTIONS(3150), - [anon_sym___reftype] = ACTIONS(3150), - [anon_sym___refvalue] = ACTIONS(3150), - [sym_null_literal] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3152), - [sym_integer_literal] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym_verbatim_string_literal] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), + [1909] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5928), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2251), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5693), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3472), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6204), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7361), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1909), + [sym_preproc_endregion] = STATE(1909), + [sym_preproc_line] = STATE(1909), + [sym_preproc_pragma] = STATE(1909), + [sym_preproc_nullable] = STATE(1909), + [sym_preproc_error] = STATE(1909), + [sym_preproc_warning] = STATE(1909), + [sym_preproc_define] = STATE(1909), + [sym_preproc_undef] = STATE(1909), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_ref] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(727), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -368938,127 +364947,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3152), - [sym_interpolation_verbatim_start] = ACTIONS(3152), - [sym_interpolation_raw_start] = ACTIONS(3152), - [sym_raw_string_start] = ACTIONS(3152), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1938] = { - [sym_catch_clause] = STATE(1992), - [sym_preproc_region] = STATE(1938), - [sym_preproc_endregion] = STATE(1938), - [sym_preproc_line] = STATE(1938), - [sym_preproc_pragma] = STATE(1938), - [sym_preproc_nullable] = STATE(1938), - [sym_preproc_error] = STATE(1938), - [sym_preproc_warning] = STATE(1938), - [sym_preproc_define] = STATE(1938), - [sym_preproc_undef] = STATE(1938), - [aux_sym_try_statement_repeat1] = STATE(1938), - [ts_builtin_sym_end] = ACTIONS(3141), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_record] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_catch] = ACTIONS(3154), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_finally] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), + [1910] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3745), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1910), + [sym_preproc_endregion] = STATE(1910), + [sym_preproc_line] = STATE(1910), + [sym_preproc_pragma] = STATE(1910), + [sym_preproc_nullable] = STATE(1910), + [sym_preproc_error] = STATE(1910), + [sym_preproc_warning] = STATE(1910), + [sym_preproc_define] = STATE(1910), + [sym_preproc_undef] = STATE(1910), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369069,127 +365116,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1939] = { - [sym_preproc_region] = STATE(1939), - [sym_preproc_endregion] = STATE(1939), - [sym_preproc_line] = STATE(1939), - [sym_preproc_pragma] = STATE(1939), - [sym_preproc_nullable] = STATE(1939), - [sym_preproc_error] = STATE(1939), - [sym_preproc_warning] = STATE(1939), - [sym_preproc_define] = STATE(1939), - [sym_preproc_undef] = STATE(1939), - [sym__identifier_token] = ACTIONS(3157), - [anon_sym_extern] = ACTIONS(3157), - [anon_sym_alias] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_global] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_ref] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_delegate] = ACTIONS(3157), - [anon_sym_record] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_file] = ACTIONS(3157), - [anon_sym_fixed] = ACTIONS(3157), - [anon_sym_internal] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_partial] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_required] = ACTIONS(3157), - [anon_sym_sealed] = ACTIONS(3157), - [anon_sym_virtual] = ACTIONS(3157), - [anon_sym_volatile] = ACTIONS(3157), - [anon_sym_where] = ACTIONS(3157), - [anon_sym_notnull] = ACTIONS(3157), - [anon_sym_unmanaged] = ACTIONS(3157), - [anon_sym_checked] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_true] = ACTIONS(3157), - [anon_sym_false] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3157), - [anon_sym_scoped] = ACTIONS(3157), - [anon_sym_base] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [sym_predefined_type] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_unchecked] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_default] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_catch] = ACTIONS(3157), - [anon_sym_when] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_foreach] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_DOT_DOT] = ACTIONS(3159), - [anon_sym_from] = ACTIONS(3157), - [anon_sym_into] = ACTIONS(3157), - [anon_sym_join] = ACTIONS(3157), - [anon_sym_on] = ACTIONS(3157), - [anon_sym_equals] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_orderby] = ACTIONS(3157), - [anon_sym_ascending] = ACTIONS(3157), - [anon_sym_descending] = ACTIONS(3157), - [anon_sym_group] = ACTIONS(3157), - [anon_sym_by] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_stackalloc] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym___makeref] = ACTIONS(3157), - [anon_sym___reftype] = ACTIONS(3157), - [anon_sym___refvalue] = ACTIONS(3157), - [sym_null_literal] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3159), - [sym_integer_literal] = ACTIONS(3157), - [sym_real_literal] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(3159), - [sym_verbatim_string_literal] = ACTIONS(3159), - [aux_sym_preproc_if_token1] = ACTIONS(3159), - [aux_sym_preproc_if_token3] = ACTIONS(3159), - [aux_sym_preproc_else_token1] = ACTIONS(3159), - [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [1911] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3850), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1911), + [sym_preproc_endregion] = STATE(1911), + [sym_preproc_line] = STATE(1911), + [sym_preproc_pragma] = STATE(1911), + [sym_preproc_nullable] = STATE(1911), + [sym_preproc_error] = STATE(1911), + [sym_preproc_warning] = STATE(1911), + [sym_preproc_define] = STATE(1911), + [sym_preproc_undef] = STATE(1911), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369200,127 +365285,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3159), - [sym_interpolation_verbatim_start] = ACTIONS(3159), - [sym_interpolation_raw_start] = ACTIONS(3159), - [sym_raw_string_start] = ACTIONS(3159), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1940] = { - [sym_preproc_region] = STATE(1940), - [sym_preproc_endregion] = STATE(1940), - [sym_preproc_line] = STATE(1940), - [sym_preproc_pragma] = STATE(1940), - [sym_preproc_nullable] = STATE(1940), - [sym_preproc_error] = STATE(1940), - [sym_preproc_warning] = STATE(1940), - [sym_preproc_define] = STATE(1940), - [sym_preproc_undef] = STATE(1940), - [sym__identifier_token] = ACTIONS(3161), - [anon_sym_extern] = ACTIONS(3161), - [anon_sym_alias] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_global] = ACTIONS(3161), - [anon_sym_using] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_static] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_namespace] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_ref] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_delegate] = ACTIONS(3161), - [anon_sym_record] = ACTIONS(3161), - [anon_sym_abstract] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_file] = ACTIONS(3161), - [anon_sym_fixed] = ACTIONS(3161), - [anon_sym_internal] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3161), - [anon_sym_partial] = ACTIONS(3161), - [anon_sym_private] = ACTIONS(3161), - [anon_sym_protected] = ACTIONS(3161), - [anon_sym_public] = ACTIONS(3161), - [anon_sym_readonly] = ACTIONS(3161), - [anon_sym_required] = ACTIONS(3161), - [anon_sym_sealed] = ACTIONS(3161), - [anon_sym_virtual] = ACTIONS(3161), - [anon_sym_volatile] = ACTIONS(3161), - [anon_sym_where] = ACTIONS(3161), - [anon_sym_notnull] = ACTIONS(3161), - [anon_sym_unmanaged] = ACTIONS(3161), - [anon_sym_checked] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_this] = ACTIONS(3161), - [anon_sym_scoped] = ACTIONS(3161), - [anon_sym_base] = ACTIONS(3161), - [anon_sym_var] = ACTIONS(3161), - [sym_predefined_type] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_unchecked] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_switch] = ACTIONS(3161), - [anon_sym_default] = ACTIONS(3161), - [anon_sym_throw] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_catch] = ACTIONS(3161), - [anon_sym_when] = ACTIONS(3161), - [anon_sym_finally] = ACTIONS(3161), - [anon_sym_await] = ACTIONS(3161), - [anon_sym_foreach] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_DOT_DOT] = ACTIONS(3163), - [anon_sym_from] = ACTIONS(3161), - [anon_sym_into] = ACTIONS(3161), - [anon_sym_join] = ACTIONS(3161), - [anon_sym_on] = ACTIONS(3161), - [anon_sym_equals] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_orderby] = ACTIONS(3161), - [anon_sym_ascending] = ACTIONS(3161), - [anon_sym_descending] = ACTIONS(3161), - [anon_sym_group] = ACTIONS(3161), - [anon_sym_by] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_stackalloc] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3161), - [anon_sym_typeof] = ACTIONS(3161), - [anon_sym___makeref] = ACTIONS(3161), - [anon_sym___reftype] = ACTIONS(3161), - [anon_sym___refvalue] = ACTIONS(3161), - [sym_null_literal] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3163), - [sym_integer_literal] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_verbatim_string_literal] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token3] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [1912] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2495), + [sym__name] = STATE(5943), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2389), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5701), + [sym_non_lvalue_expression] = STATE(3120), + [sym_lvalue_expression] = STATE(3709), + [sym__expression_statement_expression] = STATE(3117), + [sym_assignment_expression] = STATE(3116), + [sym_binary_expression] = STATE(3117), + [sym_postfix_unary_expression] = STATE(3116), + [sym_prefix_unary_expression] = STATE(3116), + [sym__pointer_indirection_expression] = STATE(2503), + [sym_query_expression] = STATE(3117), + [sym_from_clause] = STATE(6224), + [sym_conditional_expression] = STATE(3117), + [sym_conditional_access_expression] = STATE(3117), + [sym_as_expression] = STATE(3117), + [sym_is_expression] = STATE(3117), + [sym_is_pattern_expression] = STATE(3117), + [sym_cast_expression] = STATE(3117), + [sym_checked_expression] = STATE(3117), + [sym_invocation_expression] = STATE(3116), + [sym_switch_expression] = STATE(3117), + [sym_await_expression] = STATE(3116), + [sym_throw_expression] = STATE(3117), + [sym_element_access_expression] = STATE(2503), + [sym_interpolated_string_expression] = STATE(3117), + [sym_member_access_expression] = STATE(2503), + [sym_object_creation_expression] = STATE(3116), + [sym_parenthesized_expression] = STATE(3116), + [sym__parenthesized_lvalue_expression] = STATE(2503), + [sym_lambda_expression] = STATE(3117), + [sym__lambda_expression_init] = STATE(7352), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3117), + [sym_anonymous_method_expression] = STATE(3117), + [sym_anonymous_object_creation_expression] = STATE(3117), + [sym_implicit_array_creation_expression] = STATE(3117), + [sym_implicit_object_creation_expression] = STATE(3117), + [sym_implicit_stackalloc_expression] = STATE(3117), + [sym_initializer_expression] = STATE(3117), + [sym_default_expression] = STATE(3117), + [sym_with_expression] = STATE(3117), + [sym_sizeof_expression] = STATE(3117), + [sym_typeof_expression] = STATE(3117), + [sym_makeref_expression] = STATE(3117), + [sym_ref_expression] = STATE(3117), + [sym_reftype_expression] = STATE(3117), + [sym_refvalue_expression] = STATE(3117), + [sym_stackalloc_expression] = STATE(3117), + [sym_range_expression] = STATE(3117), + [sym_tuple_expression] = STATE(2503), + [sym_literal] = STATE(3117), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3117), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1912), + [sym_preproc_endregion] = STATE(1912), + [sym_preproc_line] = STATE(1912), + [sym_preproc_pragma] = STATE(1912), + [sym_preproc_nullable] = STATE(1912), + [sym_preproc_error] = STATE(1912), + [sym_preproc_warning] = STATE(1912), + [sym_preproc_define] = STATE(1912), + [sym_preproc_undef] = STATE(1912), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3550), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_ref] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_delegate] = ACTIONS(665), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369331,127 +365454,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3163), - [sym_interpolation_verbatim_start] = ACTIONS(3163), - [sym_interpolation_raw_start] = ACTIONS(3163), - [sym_raw_string_start] = ACTIONS(3163), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1941] = { - [sym_preproc_region] = STATE(1941), - [sym_preproc_endregion] = STATE(1941), - [sym_preproc_line] = STATE(1941), - [sym_preproc_pragma] = STATE(1941), - [sym_preproc_nullable] = STATE(1941), - [sym_preproc_error] = STATE(1941), - [sym_preproc_warning] = STATE(1941), - [sym_preproc_define] = STATE(1941), - [sym_preproc_undef] = STATE(1941), - [sym__identifier_token] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym_alias] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_global] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_ref] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_delegate] = ACTIONS(3165), - [anon_sym_record] = ACTIONS(3165), - [anon_sym_abstract] = ACTIONS(3165), - [anon_sym_async] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_file] = ACTIONS(3165), - [anon_sym_fixed] = ACTIONS(3165), - [anon_sym_internal] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3165), - [anon_sym_partial] = ACTIONS(3165), - [anon_sym_private] = ACTIONS(3165), - [anon_sym_protected] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_readonly] = ACTIONS(3165), - [anon_sym_required] = ACTIONS(3165), - [anon_sym_sealed] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_where] = ACTIONS(3165), - [anon_sym_notnull] = ACTIONS(3165), - [anon_sym_unmanaged] = ACTIONS(3165), - [anon_sym_checked] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_this] = ACTIONS(3165), - [anon_sym_scoped] = ACTIONS(3165), - [anon_sym_base] = ACTIONS(3165), - [anon_sym_var] = ACTIONS(3165), - [sym_predefined_type] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_unchecked] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(3165), - [anon_sym_when] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_await] = ACTIONS(3165), - [anon_sym_foreach] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_from] = ACTIONS(3165), - [anon_sym_into] = ACTIONS(3165), - [anon_sym_join] = ACTIONS(3165), - [anon_sym_on] = ACTIONS(3165), - [anon_sym_equals] = ACTIONS(3165), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_orderby] = ACTIONS(3165), - [anon_sym_ascending] = ACTIONS(3165), - [anon_sym_descending] = ACTIONS(3165), - [anon_sym_group] = ACTIONS(3165), - [anon_sym_by] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_stackalloc] = ACTIONS(3165), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym_typeof] = ACTIONS(3165), - [anon_sym___makeref] = ACTIONS(3165), - [anon_sym___reftype] = ACTIONS(3165), - [anon_sym___refvalue] = ACTIONS(3165), - [sym_null_literal] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(3167), - [sym_integer_literal] = ACTIONS(3165), - [sym_real_literal] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_verbatim_string_literal] = ACTIONS(3167), - [aux_sym_preproc_if_token1] = ACTIONS(3167), - [aux_sym_preproc_if_token3] = ACTIONS(3167), - [aux_sym_preproc_else_token1] = ACTIONS(3167), - [aux_sym_preproc_elif_token1] = ACTIONS(3167), + [1913] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2937), + [sym__name] = STATE(5918), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2381), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(3852), + [sym_non_lvalue_expression] = STATE(3876), + [sym_lvalue_expression] = STATE(3094), + [sym__expression_statement_expression] = STATE(3906), + [sym_assignment_expression] = STATE(3879), + [sym_binary_expression] = STATE(3906), + [sym_postfix_unary_expression] = STATE(3879), + [sym_prefix_unary_expression] = STATE(3879), + [sym__pointer_indirection_expression] = STATE(2944), + [sym_query_expression] = STATE(3906), + [sym_from_clause] = STATE(6210), + [sym_conditional_expression] = STATE(3906), + [sym_conditional_access_expression] = STATE(3906), + [sym_as_expression] = STATE(3906), + [sym_is_expression] = STATE(3906), + [sym_is_pattern_expression] = STATE(3906), + [sym_cast_expression] = STATE(3906), + [sym_checked_expression] = STATE(3906), + [sym_invocation_expression] = STATE(3879), + [sym_switch_expression] = STATE(3906), + [sym_await_expression] = STATE(3879), + [sym_throw_expression] = STATE(3906), + [sym_element_access_expression] = STATE(2944), + [sym_interpolated_string_expression] = STATE(3906), + [sym_member_access_expression] = STATE(2944), + [sym_object_creation_expression] = STATE(3879), + [sym_parenthesized_expression] = STATE(3879), + [sym__parenthesized_lvalue_expression] = STATE(2944), + [sym_lambda_expression] = STATE(3906), + [sym__lambda_expression_init] = STATE(7403), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3906), + [sym_anonymous_method_expression] = STATE(3906), + [sym_anonymous_object_creation_expression] = STATE(3906), + [sym_implicit_array_creation_expression] = STATE(3906), + [sym_implicit_object_creation_expression] = STATE(3906), + [sym_implicit_stackalloc_expression] = STATE(3906), + [sym_initializer_expression] = STATE(3906), + [sym_default_expression] = STATE(3906), + [sym_with_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(3906), + [sym_typeof_expression] = STATE(3906), + [sym_makeref_expression] = STATE(3906), + [sym_ref_expression] = STATE(3906), + [sym_reftype_expression] = STATE(3906), + [sym_refvalue_expression] = STATE(3906), + [sym_stackalloc_expression] = STATE(3906), + [sym_range_expression] = STATE(3906), + [sym_tuple_expression] = STATE(2944), + [sym_literal] = STATE(3906), + [sym_character_literal] = STATE(3791), + [sym_string_literal] = STATE(3791), + [sym_raw_string_literal] = STATE(3791), + [sym_boolean_literal] = STATE(3791), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3906), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1913), + [sym_preproc_endregion] = STATE(1913), + [sym_preproc_line] = STATE(1913), + [sym_preproc_pragma] = STATE(1913), + [sym_preproc_nullable] = STATE(1913), + [sym_preproc_error] = STATE(1913), + [sym_preproc_warning] = STATE(1913), + [sym_preproc_define] = STATE(1913), + [sym_preproc_undef] = STATE(1913), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3473), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_ref] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_delegate] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1713), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1717), + [anon_sym_unchecked] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1729), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym___makeref] = ACTIONS(1733), + [anon_sym___reftype] = ACTIONS(1735), + [anon_sym___refvalue] = ACTIONS(1737), + [sym_null_literal] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [sym_real_literal] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym_verbatim_string_literal] = ACTIONS(1743), + [aux_sym_preproc_if_token1] = ACTIONS(1747), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369462,21 +365623,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3167), - [sym_interpolation_verbatim_start] = ACTIONS(3167), - [sym_interpolation_raw_start] = ACTIONS(3167), - [sym_raw_string_start] = ACTIONS(3167), + [sym_interpolation_regular_start] = ACTIONS(1749), + [sym_interpolation_verbatim_start] = ACTIONS(1751), + [sym_interpolation_raw_start] = ACTIONS(1753), + [sym_raw_string_start] = ACTIONS(1755), }, - [1942] = { - [sym_preproc_region] = STATE(1942), - [sym_preproc_endregion] = STATE(1942), - [sym_preproc_line] = STATE(1942), - [sym_preproc_pragma] = STATE(1942), - [sym_preproc_nullable] = STATE(1942), - [sym_preproc_error] = STATE(1942), - [sym_preproc_warning] = STATE(1942), - [sym_preproc_define] = STATE(1942), - [sym_preproc_undef] = STATE(1942), + [1914] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym_bracketed_argument_list] = STATE(2712), + [sym__name] = STATE(5927), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(2401), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_type] = STATE(5967), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_expression] = STATE(5141), + [sym_non_lvalue_expression] = STATE(3411), + [sym_lvalue_expression] = STATE(3559), + [sym__expression_statement_expression] = STATE(3407), + [sym_assignment_expression] = STATE(3412), + [sym_binary_expression] = STATE(3407), + [sym_postfix_unary_expression] = STATE(3412), + [sym_prefix_unary_expression] = STATE(3412), + [sym__pointer_indirection_expression] = STATE(2711), + [sym_query_expression] = STATE(3407), + [sym_from_clause] = STATE(6218), + [sym_conditional_expression] = STATE(3407), + [sym_conditional_access_expression] = STATE(3407), + [sym_as_expression] = STATE(3407), + [sym_is_expression] = STATE(3407), + [sym_is_pattern_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_checked_expression] = STATE(3407), + [sym_invocation_expression] = STATE(3412), + [sym_switch_expression] = STATE(3407), + [sym_await_expression] = STATE(3412), + [sym_throw_expression] = STATE(3407), + [sym_element_access_expression] = STATE(2711), + [sym_interpolated_string_expression] = STATE(3407), + [sym_member_access_expression] = STATE(2711), + [sym_object_creation_expression] = STATE(3412), + [sym_parenthesized_expression] = STATE(3412), + [sym__parenthesized_lvalue_expression] = STATE(2711), + [sym_lambda_expression] = STATE(3407), + [sym__lambda_expression_init] = STATE(7757), + [sym__lambda_parameters] = STATE(7486), + [sym_array_creation_expression] = STATE(3407), + [sym_anonymous_method_expression] = STATE(3407), + [sym_anonymous_object_creation_expression] = STATE(3407), + [sym_implicit_array_creation_expression] = STATE(3407), + [sym_implicit_object_creation_expression] = STATE(3407), + [sym_implicit_stackalloc_expression] = STATE(3407), + [sym_initializer_expression] = STATE(3407), + [sym_default_expression] = STATE(3407), + [sym_with_expression] = STATE(3407), + [sym_sizeof_expression] = STATE(3407), + [sym_typeof_expression] = STATE(3407), + [sym_makeref_expression] = STATE(3407), + [sym_ref_expression] = STATE(3407), + [sym_reftype_expression] = STATE(3407), + [sym_refvalue_expression] = STATE(3407), + [sym_stackalloc_expression] = STATE(3407), + [sym_range_expression] = STATE(3407), + [sym_tuple_expression] = STATE(2711), + [sym_literal] = STATE(3407), + [sym_character_literal] = STATE(3468), + [sym_string_literal] = STATE(3468), + [sym_raw_string_literal] = STATE(3468), + [sym_boolean_literal] = STATE(3468), + [sym_identifier] = STATE(2191), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_expression] = STATE(3407), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(1914), + [sym_preproc_endregion] = STATE(1914), + [sym_preproc_line] = STATE(1914), + [sym_preproc_pragma] = STATE(1914), + [sym_preproc_nullable] = STATE(1914), + [sym_preproc_error] = STATE(1914), + [sym_preproc_warning] = STATE(1914), + [sym_preproc_define] = STATE(1914), + [sym_preproc_undef] = STATE(1914), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3136), + [aux_sym__lambda_expression_init_repeat1] = STATE(3505), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_ref] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_delegate] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1329), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1913), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1339), + [anon_sym___reftype] = ACTIONS(1341), + [anon_sym___refvalue] = ACTIONS(1343), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [1915] = { + [sym_preproc_region] = STATE(1915), + [sym_preproc_endregion] = STATE(1915), + [sym_preproc_line] = STATE(1915), + [sym_preproc_pragma] = STATE(1915), + [sym_preproc_nullable] = STATE(1915), + [sym_preproc_error] = STATE(1915), + [sym_preproc_warning] = STATE(1915), + [sym_preproc_define] = STATE(1915), + [sym_preproc_undef] = STATE(1915), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_record] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), + }, + [1916] = { + [sym_preproc_region] = STATE(1916), + [sym_preproc_endregion] = STATE(1916), + [sym_preproc_line] = STATE(1916), + [sym_preproc_pragma] = STATE(1916), + [sym_preproc_nullable] = STATE(1916), + [sym_preproc_error] = STATE(1916), + [sym_preproc_warning] = STATE(1916), + [sym_preproc_define] = STATE(1916), + [sym_preproc_undef] = STATE(1916), [sym__identifier_token] = ACTIONS(2985), [anon_sym_extern] = ACTIONS(2985), [anon_sym_alias] = ACTIONS(2985), @@ -369514,11 +365994,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(2985), [anon_sym_virtual] = ACTIONS(2985), [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), [anon_sym_where] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2989), [anon_sym_notnull] = ACTIONS(2985), [anon_sym_unmanaged] = ACTIONS(2985), [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2985), [anon_sym_TILDE] = ACTIONS(2987), [anon_sym_PLUS_PLUS] = ACTIONS(2987), [anon_sym_DASH_DASH] = ACTIONS(2987), @@ -369527,9 +366010,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2985), [anon_sym_DASH] = ACTIONS(2985), [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), [anon_sym_this] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2989), [anon_sym_scoped] = ACTIONS(2985), [anon_sym_base] = ACTIONS(2985), [anon_sym_var] = ACTIONS(2985), @@ -369546,15 +366040,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2985), [anon_sym_throw] = ACTIONS(2985), [anon_sym_try] = ACTIONS(2985), - [anon_sym_catch] = ACTIONS(2985), [anon_sym_when] = ACTIONS(2985), - [anon_sym_finally] = ACTIONS(2985), [anon_sym_await] = ACTIONS(2985), [anon_sym_foreach] = ACTIONS(2985), [anon_sym_goto] = ACTIONS(2985), [anon_sym_if] = ACTIONS(2985), [anon_sym_else] = ACTIONS(2985), [anon_sym_DOT_DOT] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), [anon_sym_from] = ACTIONS(2985), [anon_sym_into] = ACTIONS(2985), [anon_sym_join] = ACTIONS(2985), @@ -369567,7 +366062,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(2985), [anon_sym_by] = ACTIONS(2985), [anon_sym_select] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), [anon_sym_stackalloc] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2989), [anon_sym_sizeof] = ACTIONS(2985), [anon_sym_typeof] = ACTIONS(2985), [anon_sym___makeref] = ACTIONS(2985), @@ -369598,249 +366097,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(2987), [sym_raw_string_start] = ACTIONS(2987), }, - [1943] = { - [sym_preproc_region] = STATE(1943), - [sym_preproc_endregion] = STATE(1943), - [sym_preproc_line] = STATE(1943), - [sym_preproc_pragma] = STATE(1943), - [sym_preproc_nullable] = STATE(1943), - [sym_preproc_error] = STATE(1943), - [sym_preproc_warning] = STATE(1943), - [sym_preproc_define] = STATE(1943), - [sym_preproc_undef] = STATE(1943), - [sym__identifier_token] = ACTIONS(3169), - [anon_sym_extern] = ACTIONS(3169), - [anon_sym_alias] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_global] = ACTIONS(3169), - [anon_sym_using] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_static] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_namespace] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_ref] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_delegate] = ACTIONS(3169), - [anon_sym_record] = ACTIONS(3169), - [anon_sym_abstract] = ACTIONS(3169), - [anon_sym_async] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_file] = ACTIONS(3169), - [anon_sym_fixed] = ACTIONS(3169), - [anon_sym_internal] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3169), - [anon_sym_partial] = ACTIONS(3169), - [anon_sym_private] = ACTIONS(3169), - [anon_sym_protected] = ACTIONS(3169), - [anon_sym_public] = ACTIONS(3169), - [anon_sym_readonly] = ACTIONS(3169), - [anon_sym_required] = ACTIONS(3169), - [anon_sym_sealed] = ACTIONS(3169), - [anon_sym_virtual] = ACTIONS(3169), - [anon_sym_volatile] = ACTIONS(3169), - [anon_sym_where] = ACTIONS(3169), - [anon_sym_notnull] = ACTIONS(3169), - [anon_sym_unmanaged] = ACTIONS(3169), - [anon_sym_checked] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_this] = ACTIONS(3169), - [anon_sym_scoped] = ACTIONS(3169), - [anon_sym_base] = ACTIONS(3169), - [anon_sym_var] = ACTIONS(3169), - [sym_predefined_type] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_unchecked] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_do] = ACTIONS(3169), - [anon_sym_while] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3169), - [anon_sym_switch] = ACTIONS(3169), - [anon_sym_default] = ACTIONS(3169), - [anon_sym_throw] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3169), - [anon_sym_when] = ACTIONS(3169), - [anon_sym_await] = ACTIONS(3169), - [anon_sym_foreach] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3171), - [anon_sym_from] = ACTIONS(3169), - [anon_sym_into] = ACTIONS(3169), - [anon_sym_join] = ACTIONS(3169), - [anon_sym_on] = ACTIONS(3169), - [anon_sym_equals] = ACTIONS(3169), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_orderby] = ACTIONS(3169), - [anon_sym_ascending] = ACTIONS(3169), - [anon_sym_descending] = ACTIONS(3169), - [anon_sym_group] = ACTIONS(3169), - [anon_sym_by] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_stackalloc] = ACTIONS(3169), - [anon_sym_sizeof] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(3169), - [anon_sym___makeref] = ACTIONS(3169), - [anon_sym___reftype] = ACTIONS(3169), - [anon_sym___refvalue] = ACTIONS(3169), - [sym_null_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3171), - [sym_integer_literal] = ACTIONS(3169), - [sym_real_literal] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_verbatim_string_literal] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token3] = ACTIONS(3171), - [aux_sym_preproc_else_token1] = ACTIONS(3171), - [aux_sym_preproc_elif_token1] = ACTIONS(3171), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3171), - [sym_interpolation_verbatim_start] = ACTIONS(3171), - [sym_interpolation_raw_start] = ACTIONS(3171), - [sym_raw_string_start] = ACTIONS(3171), - }, - [1944] = { - [sym_preproc_region] = STATE(1944), - [sym_preproc_endregion] = STATE(1944), - [sym_preproc_line] = STATE(1944), - [sym_preproc_pragma] = STATE(1944), - [sym_preproc_nullable] = STATE(1944), - [sym_preproc_error] = STATE(1944), - [sym_preproc_warning] = STATE(1944), - [sym_preproc_define] = STATE(1944), - [sym_preproc_undef] = STATE(1944), - [sym__identifier_token] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_alias] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_global] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_ref] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_delegate] = ACTIONS(3173), - [anon_sym_record] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_file] = ACTIONS(3173), - [anon_sym_fixed] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_partial] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_required] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_virtual] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_notnull] = ACTIONS(3173), - [anon_sym_unmanaged] = ACTIONS(3173), - [anon_sym_checked] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_scoped] = ACTIONS(3173), - [anon_sym_base] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [sym_predefined_type] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_unchecked] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_foreach] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_from] = ACTIONS(3173), - [anon_sym_into] = ACTIONS(3173), - [anon_sym_join] = ACTIONS(3173), - [anon_sym_on] = ACTIONS(3173), - [anon_sym_equals] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_orderby] = ACTIONS(3173), - [anon_sym_ascending] = ACTIONS(3173), - [anon_sym_descending] = ACTIONS(3173), - [anon_sym_group] = ACTIONS(3173), - [anon_sym_by] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_stackalloc] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym___makeref] = ACTIONS(3173), - [anon_sym___reftype] = ACTIONS(3173), - [anon_sym___refvalue] = ACTIONS(3173), - [sym_null_literal] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_real_literal] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_verbatim_string_literal] = ACTIONS(3175), - [aux_sym_preproc_if_token1] = ACTIONS(3175), - [aux_sym_preproc_if_token3] = ACTIONS(3175), - [aux_sym_preproc_else_token1] = ACTIONS(3175), - [aux_sym_preproc_elif_token1] = ACTIONS(3175), + [1917] = { + [sym_preproc_region] = STATE(1917), + [sym_preproc_endregion] = STATE(1917), + [sym_preproc_line] = STATE(1917), + [sym_preproc_pragma] = STATE(1917), + [sym_preproc_nullable] = STATE(1917), + [sym_preproc_error] = STATE(1917), + [sym_preproc_warning] = STATE(1917), + [sym_preproc_define] = STATE(1917), + [sym_preproc_undef] = STATE(1917), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym__identifier_token] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym_alias] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_global] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_ref] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(2985), + [anon_sym_abstract] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_file] = ACTIONS(2985), + [anon_sym_fixed] = ACTIONS(2985), + [anon_sym_internal] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_override] = ACTIONS(2985), + [anon_sym_partial] = ACTIONS(2985), + [anon_sym_private] = ACTIONS(2985), + [anon_sym_protected] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_readonly] = ACTIONS(2985), + [anon_sym_required] = ACTIONS(2985), + [anon_sym_sealed] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_where] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_notnull] = ACTIONS(2985), + [anon_sym_unmanaged] = ACTIONS(2985), + [anon_sym_checked] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_this] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(2985), + [anon_sym_base] = ACTIONS(2985), + [anon_sym_var] = ACTIONS(2985), + [sym_predefined_type] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_unchecked] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_foreach] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(2985), + [anon_sym_into] = ACTIONS(2985), + [anon_sym_join] = ACTIONS(2985), + [anon_sym_on] = ACTIONS(2985), + [anon_sym_equals] = ACTIONS(2985), + [anon_sym_let] = ACTIONS(2985), + [anon_sym_orderby] = ACTIONS(2985), + [anon_sym_ascending] = ACTIONS(2985), + [anon_sym_descending] = ACTIONS(2985), + [anon_sym_group] = ACTIONS(2985), + [anon_sym_by] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_stackalloc] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym_typeof] = ACTIONS(2985), + [anon_sym___makeref] = ACTIONS(2985), + [anon_sym___reftype] = ACTIONS(2985), + [anon_sym___refvalue] = ACTIONS(2985), + [sym_null_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2987), + [sym_integer_literal] = ACTIONS(2985), + [sym_real_literal] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_verbatim_string_literal] = ACTIONS(2987), + [aux_sym_preproc_if_token1] = ACTIONS(2987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369851,125 +366240,1401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3175), - [sym_interpolation_verbatim_start] = ACTIONS(3175), - [sym_interpolation_raw_start] = ACTIONS(3175), - [sym_raw_string_start] = ACTIONS(3175), + [sym_interpolation_regular_start] = ACTIONS(2987), + [sym_interpolation_verbatim_start] = ACTIONS(2987), + [sym_interpolation_raw_start] = ACTIONS(2987), + [sym_raw_string_start] = ACTIONS(2987), }, - [1945] = { - [sym_preproc_region] = STATE(1945), - [sym_preproc_endregion] = STATE(1945), - [sym_preproc_line] = STATE(1945), - [sym_preproc_pragma] = STATE(1945), - [sym_preproc_nullable] = STATE(1945), - [sym_preproc_error] = STATE(1945), - [sym_preproc_warning] = STATE(1945), - [sym_preproc_define] = STATE(1945), - [sym_preproc_undef] = STATE(1945), - [sym__identifier_token] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym_alias] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_global] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_ref] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_delegate] = ACTIONS(3177), - [anon_sym_record] = ACTIONS(3177), - [anon_sym_abstract] = ACTIONS(3177), - [anon_sym_async] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_file] = ACTIONS(3177), - [anon_sym_fixed] = ACTIONS(3177), - [anon_sym_internal] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3177), - [anon_sym_partial] = ACTIONS(3177), - [anon_sym_private] = ACTIONS(3177), - [anon_sym_protected] = ACTIONS(3177), - [anon_sym_public] = ACTIONS(3177), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_required] = ACTIONS(3177), - [anon_sym_sealed] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_where] = ACTIONS(3177), - [anon_sym_notnull] = ACTIONS(3177), - [anon_sym_unmanaged] = ACTIONS(3177), - [anon_sym_checked] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_this] = ACTIONS(3177), - [anon_sym_scoped] = ACTIONS(3177), - [anon_sym_base] = ACTIONS(3177), - [anon_sym_var] = ACTIONS(3177), - [sym_predefined_type] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_unchecked] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_when] = ACTIONS(3177), - [anon_sym_await] = ACTIONS(3177), - [anon_sym_foreach] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_DOT_DOT] = ACTIONS(3179), - [anon_sym_from] = ACTIONS(3177), - [anon_sym_into] = ACTIONS(3177), - [anon_sym_join] = ACTIONS(3177), - [anon_sym_on] = ACTIONS(3177), - [anon_sym_equals] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_orderby] = ACTIONS(3177), - [anon_sym_ascending] = ACTIONS(3177), - [anon_sym_descending] = ACTIONS(3177), - [anon_sym_group] = ACTIONS(3177), - [anon_sym_by] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_stackalloc] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym_typeof] = ACTIONS(3177), - [anon_sym___makeref] = ACTIONS(3177), - [anon_sym___reftype] = ACTIONS(3177), - [anon_sym___refvalue] = ACTIONS(3177), - [sym_null_literal] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3179), - [sym_integer_literal] = ACTIONS(3177), - [sym_real_literal] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_verbatim_string_literal] = ACTIONS(3179), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token3] = ACTIONS(3179), - [aux_sym_preproc_else_token1] = ACTIONS(3179), - [aux_sym_preproc_elif_token1] = ACTIONS(3179), + [1918] = { + [sym_preproc_region] = STATE(1918), + [sym_preproc_endregion] = STATE(1918), + [sym_preproc_line] = STATE(1918), + [sym_preproc_pragma] = STATE(1918), + [sym_preproc_nullable] = STATE(1918), + [sym_preproc_error] = STATE(1918), + [sym_preproc_warning] = STATE(1918), + [sym_preproc_define] = STATE(1918), + [sym_preproc_undef] = STATE(1918), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_record] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), + }, + [1919] = { + [sym_preproc_region] = STATE(1919), + [sym_preproc_endregion] = STATE(1919), + [sym_preproc_line] = STATE(1919), + [sym_preproc_pragma] = STATE(1919), + [sym_preproc_nullable] = STATE(1919), + [sym_preproc_error] = STATE(1919), + [sym_preproc_warning] = STATE(1919), + [sym_preproc_define] = STATE(1919), + [sym_preproc_undef] = STATE(1919), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_case] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), + }, + [1920] = { + [sym_preproc_region] = STATE(1920), + [sym_preproc_endregion] = STATE(1920), + [sym_preproc_line] = STATE(1920), + [sym_preproc_pragma] = STATE(1920), + [sym_preproc_nullable] = STATE(1920), + [sym_preproc_error] = STATE(1920), + [sym_preproc_warning] = STATE(1920), + [sym_preproc_define] = STATE(1920), + [sym_preproc_undef] = STATE(1920), + [sym__identifier_token] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym_alias] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_global] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_ref] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_abstract] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_file] = ACTIONS(2985), + [anon_sym_fixed] = ACTIONS(2985), + [anon_sym_internal] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_override] = ACTIONS(2985), + [anon_sym_partial] = ACTIONS(2985), + [anon_sym_private] = ACTIONS(2985), + [anon_sym_protected] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_readonly] = ACTIONS(2985), + [anon_sym_required] = ACTIONS(2985), + [anon_sym_sealed] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_where] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_notnull] = ACTIONS(2985), + [anon_sym_unmanaged] = ACTIONS(2985), + [anon_sym_checked] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_this] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(2985), + [anon_sym_base] = ACTIONS(2985), + [anon_sym_var] = ACTIONS(2985), + [sym_predefined_type] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_unchecked] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_foreach] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(2985), + [anon_sym_into] = ACTIONS(2985), + [anon_sym_join] = ACTIONS(2985), + [anon_sym_on] = ACTIONS(2985), + [anon_sym_equals] = ACTIONS(2985), + [anon_sym_let] = ACTIONS(2985), + [anon_sym_orderby] = ACTIONS(2985), + [anon_sym_ascending] = ACTIONS(2985), + [anon_sym_descending] = ACTIONS(2985), + [anon_sym_group] = ACTIONS(2985), + [anon_sym_by] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_stackalloc] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym_typeof] = ACTIONS(2985), + [anon_sym___makeref] = ACTIONS(2985), + [anon_sym___reftype] = ACTIONS(2985), + [anon_sym___refvalue] = ACTIONS(2985), + [sym_null_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2987), + [sym_integer_literal] = ACTIONS(2985), + [sym_real_literal] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_verbatim_string_literal] = ACTIONS(2987), + [aux_sym_preproc_if_token1] = ACTIONS(2987), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2987), + [sym_interpolation_verbatim_start] = ACTIONS(2987), + [sym_interpolation_raw_start] = ACTIONS(2987), + [sym_raw_string_start] = ACTIONS(2987), + }, + [1921] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(2892), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_else] = STATE(7462), + [sym_preproc_elif] = STATE(7462), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7770), + [sym_preproc_elif_in_attribute_list] = STATE(7770), + [sym_preproc_region] = STATE(1921), + [sym_preproc_endregion] = STATE(1921), + [sym_preproc_line] = STATE(1921), + [sym_preproc_pragma] = STATE(1921), + [sym_preproc_nullable] = STATE(1921), + [sym_preproc_error] = STATE(1921), + [sym_preproc_warning] = STATE(1921), + [sym_preproc_define] = STATE(1921), + [sym_preproc_undef] = STATE(1921), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1924), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3029), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3033), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1922] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(2888), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_else] = STATE(7501), + [sym_preproc_elif] = STATE(7501), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_else_in_attribute_list] = STATE(7493), + [sym_preproc_elif_in_attribute_list] = STATE(7493), + [sym_preproc_region] = STATE(1922), + [sym_preproc_endregion] = STATE(1922), + [sym_preproc_line] = STATE(1922), + [sym_preproc_pragma] = STATE(1922), + [sym_preproc_nullable] = STATE(1922), + [sym_preproc_error] = STATE(1922), + [sym_preproc_warning] = STATE(1922), + [sym_preproc_define] = STATE(1922), + [sym_preproc_undef] = STATE(1922), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1923), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3035), + [aux_sym_preproc_else_token1] = ACTIONS(3031), + [aux_sym_preproc_elif_token1] = ACTIONS(3033), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1923] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_else] = STATE(7592), + [sym_preproc_elif] = STATE(7592), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1923), + [sym_preproc_endregion] = STATE(1923), + [sym_preproc_line] = STATE(1923), + [sym_preproc_pragma] = STATE(1923), + [sym_preproc_nullable] = STATE(1923), + [sym_preproc_error] = STATE(1923), + [sym_preproc_warning] = STATE(1923), + [sym_preproc_define] = STATE(1923), + [sym_preproc_undef] = STATE(1923), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1926), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1924] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_else] = STATE(7742), + [sym_preproc_elif] = STATE(7742), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1924), + [sym_preproc_endregion] = STATE(1924), + [sym_preproc_line] = STATE(1924), + [sym_preproc_pragma] = STATE(1924), + [sym_preproc_nullable] = STATE(1924), + [sym_preproc_error] = STATE(1924), + [sym_preproc_warning] = STATE(1924), + [sym_preproc_define] = STATE(1924), + [sym_preproc_undef] = STATE(1924), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1926), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3043), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1925] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_else] = STATE(7462), + [sym_preproc_elif] = STATE(7462), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1925), + [sym_preproc_endregion] = STATE(1925), + [sym_preproc_line] = STATE(1925), + [sym_preproc_pragma] = STATE(1925), + [sym_preproc_nullable] = STATE(1925), + [sym_preproc_error] = STATE(1925), + [sym_preproc_warning] = STATE(1925), + [sym_preproc_define] = STATE(1925), + [sym_preproc_undef] = STATE(1925), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1924), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3029), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1926] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1926), + [sym_preproc_endregion] = STATE(1926), + [sym_preproc_line] = STATE(1926), + [sym_preproc_pragma] = STATE(1926), + [sym_preproc_nullable] = STATE(1926), + [sym_preproc_error] = STATE(1926), + [sym_preproc_warning] = STATE(1926), + [sym_preproc_define] = STATE(1926), + [sym_preproc_undef] = STATE(1926), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1926), + [sym__identifier_token] = ACTIONS(3045), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym_alias] = ACTIONS(3051), + [anon_sym_global] = ACTIONS(3054), + [anon_sym_using] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_event] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3072), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_ref] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_delegate] = ACTIONS(3092), + [anon_sym_record] = ACTIONS(3095), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_file] = ACTIONS(3098), + [anon_sym_fixed] = ACTIONS(3060), + [anon_sym_internal] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_partial] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_required] = ACTIONS(3060), + [anon_sym_sealed] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_where] = ACTIONS(3051), + [anon_sym_notnull] = ACTIONS(3051), + [anon_sym_unmanaged] = ACTIONS(3051), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_implicit] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_scoped] = ACTIONS(3107), + [anon_sym_var] = ACTIONS(3110), + [sym_predefined_type] = ACTIONS(3113), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_when] = ACTIONS(3051), + [anon_sym_from] = ACTIONS(3051), + [anon_sym_into] = ACTIONS(3051), + [anon_sym_join] = ACTIONS(3051), + [anon_sym_on] = ACTIONS(3051), + [anon_sym_equals] = ACTIONS(3051), + [anon_sym_let] = ACTIONS(3051), + [anon_sym_orderby] = ACTIONS(3051), + [anon_sym_ascending] = ACTIONS(3051), + [anon_sym_descending] = ACTIONS(3051), + [anon_sym_group] = ACTIONS(3051), + [anon_sym_by] = ACTIONS(3051), + [anon_sym_select] = ACTIONS(3051), + [aux_sym_preproc_if_token1] = ACTIONS(3116), + [aux_sym_preproc_if_token3] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [1927] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1927), + [sym_preproc_endregion] = STATE(1927), + [sym_preproc_line] = STATE(1927), + [sym_preproc_pragma] = STATE(1927), + [sym_preproc_nullable] = STATE(1927), + [sym_preproc_error] = STATE(1927), + [sym_preproc_warning] = STATE(1927), + [sym_preproc_define] = STATE(1927), + [sym_preproc_undef] = STATE(1927), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1933), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -369980,254 +367645,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3179), - [sym_interpolation_verbatim_start] = ACTIONS(3179), - [sym_interpolation_raw_start] = ACTIONS(3179), - [sym_raw_string_start] = ACTIONS(3179), }, - [1946] = { - [sym_preproc_region] = STATE(1946), - [sym_preproc_endregion] = STATE(1946), - [sym_preproc_line] = STATE(1946), - [sym_preproc_pragma] = STATE(1946), - [sym_preproc_nullable] = STATE(1946), - [sym_preproc_error] = STATE(1946), - [sym_preproc_warning] = STATE(1946), - [sym_preproc_define] = STATE(1946), - [sym_preproc_undef] = STATE(1946), - [sym__identifier_token] = ACTIONS(3181), - [anon_sym_extern] = ACTIONS(3181), - [anon_sym_alias] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_global] = ACTIONS(3181), - [anon_sym_using] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_static] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_namespace] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_ref] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_delegate] = ACTIONS(3181), - [anon_sym_record] = ACTIONS(3181), - [anon_sym_abstract] = ACTIONS(3181), - [anon_sym_async] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_file] = ACTIONS(3181), - [anon_sym_fixed] = ACTIONS(3181), - [anon_sym_internal] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_override] = ACTIONS(3181), - [anon_sym_partial] = ACTIONS(3181), - [anon_sym_private] = ACTIONS(3181), - [anon_sym_protected] = ACTIONS(3181), - [anon_sym_public] = ACTIONS(3181), - [anon_sym_readonly] = ACTIONS(3181), - [anon_sym_required] = ACTIONS(3181), - [anon_sym_sealed] = ACTIONS(3181), - [anon_sym_virtual] = ACTIONS(3181), - [anon_sym_volatile] = ACTIONS(3181), - [anon_sym_where] = ACTIONS(3181), - [anon_sym_notnull] = ACTIONS(3181), - [anon_sym_unmanaged] = ACTIONS(3181), - [anon_sym_checked] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_this] = ACTIONS(3181), - [anon_sym_scoped] = ACTIONS(3181), - [anon_sym_base] = ACTIONS(3181), - [anon_sym_var] = ACTIONS(3181), - [sym_predefined_type] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_unchecked] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_do] = ACTIONS(3181), - [anon_sym_while] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3181), - [anon_sym_switch] = ACTIONS(3181), - [anon_sym_default] = ACTIONS(3181), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_try] = ACTIONS(3181), - [anon_sym_when] = ACTIONS(3181), - [anon_sym_await] = ACTIONS(3181), - [anon_sym_foreach] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_DOT_DOT] = ACTIONS(3183), - [anon_sym_from] = ACTIONS(3181), - [anon_sym_into] = ACTIONS(3181), - [anon_sym_join] = ACTIONS(3181), - [anon_sym_on] = ACTIONS(3181), - [anon_sym_equals] = ACTIONS(3181), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_orderby] = ACTIONS(3181), - [anon_sym_ascending] = ACTIONS(3181), - [anon_sym_descending] = ACTIONS(3181), - [anon_sym_group] = ACTIONS(3181), - [anon_sym_by] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_stackalloc] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3181), - [anon_sym_typeof] = ACTIONS(3181), - [anon_sym___makeref] = ACTIONS(3181), - [anon_sym___reftype] = ACTIONS(3181), - [anon_sym___refvalue] = ACTIONS(3181), - [sym_null_literal] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3183), - [sym_integer_literal] = ACTIONS(3181), - [sym_real_literal] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_verbatim_string_literal] = ACTIONS(3183), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_if_token3] = ACTIONS(3183), - [aux_sym_preproc_else_token1] = ACTIONS(3183), - [aux_sym_preproc_elif_token1] = ACTIONS(3183), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3183), - [sym_interpolation_verbatim_start] = ACTIONS(3183), - [sym_interpolation_raw_start] = ACTIONS(3183), - [sym_raw_string_start] = ACTIONS(3183), + [1928] = { + [sym_catch_clause] = STATE(1941), + [sym_finally_clause] = STATE(1967), + [sym_preproc_region] = STATE(1928), + [sym_preproc_endregion] = STATE(1928), + [sym_preproc_line] = STATE(1928), + [sym_preproc_pragma] = STATE(1928), + [sym_preproc_nullable] = STATE(1928), + [sym_preproc_error] = STATE(1928), + [sym_preproc_warning] = STATE(1928), + [sym_preproc_define] = STATE(1928), + [sym_preproc_undef] = STATE(1928), + [aux_sym_try_statement_repeat1] = STATE(1932), + [sym__identifier_token] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym_alias] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_ref] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3121), + [anon_sym_delegate] = ACTIONS(3121), + [anon_sym_record] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_async] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_file] = ACTIONS(3121), + [anon_sym_fixed] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_partial] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_readonly] = ACTIONS(3121), + [anon_sym_required] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_notnull] = ACTIONS(3121), + [anon_sym_unmanaged] = ACTIONS(3121), + [anon_sym_checked] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_scoped] = ACTIONS(3121), + [anon_sym_base] = ACTIONS(3121), + [anon_sym_var] = ACTIONS(3121), + [sym_predefined_type] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_unchecked] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_catch] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_finally] = ACTIONS(3127), + [anon_sym_await] = ACTIONS(3121), + [anon_sym_foreach] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3121), + [anon_sym_into] = ACTIONS(3121), + [anon_sym_join] = ACTIONS(3121), + [anon_sym_on] = ACTIONS(3121), + [anon_sym_equals] = ACTIONS(3121), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_orderby] = ACTIONS(3121), + [anon_sym_ascending] = ACTIONS(3121), + [anon_sym_descending] = ACTIONS(3121), + [anon_sym_group] = ACTIONS(3121), + [anon_sym_by] = ACTIONS(3121), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_stackalloc] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_typeof] = ACTIONS(3121), + [anon_sym___makeref] = ACTIONS(3121), + [anon_sym___reftype] = ACTIONS(3121), + [anon_sym___refvalue] = ACTIONS(3121), + [sym_null_literal] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_real_literal] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_verbatim_string_literal] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token3] = ACTIONS(3123), + [aux_sym_preproc_else_token1] = ACTIONS(3123), + [aux_sym_preproc_elif_token1] = ACTIONS(3123), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3123), + [sym_interpolation_verbatim_start] = ACTIONS(3123), + [sym_interpolation_raw_start] = ACTIONS(3123), + [sym_raw_string_start] = ACTIONS(3123), }, - [1947] = { - [sym_preproc_region] = STATE(1947), - [sym_preproc_endregion] = STATE(1947), - [sym_preproc_line] = STATE(1947), - [sym_preproc_pragma] = STATE(1947), - [sym_preproc_nullable] = STATE(1947), - [sym_preproc_error] = STATE(1947), - [sym_preproc_warning] = STATE(1947), - [sym_preproc_define] = STATE(1947), - [sym_preproc_undef] = STATE(1947), - [ts_builtin_sym_end] = ACTIONS(3159), - [sym__identifier_token] = ACTIONS(3157), - [anon_sym_extern] = ACTIONS(3157), - [anon_sym_alias] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_global] = ACTIONS(3157), - [anon_sym_using] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_static] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_namespace] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_ref] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_delegate] = ACTIONS(3157), - [anon_sym_record] = ACTIONS(3157), - [anon_sym_abstract] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_file] = ACTIONS(3157), - [anon_sym_fixed] = ACTIONS(3157), - [anon_sym_internal] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3157), - [anon_sym_partial] = ACTIONS(3157), - [anon_sym_private] = ACTIONS(3157), - [anon_sym_protected] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_required] = ACTIONS(3157), - [anon_sym_sealed] = ACTIONS(3157), - [anon_sym_virtual] = ACTIONS(3157), - [anon_sym_volatile] = ACTIONS(3157), - [anon_sym_where] = ACTIONS(3157), - [anon_sym_notnull] = ACTIONS(3157), - [anon_sym_unmanaged] = ACTIONS(3157), - [anon_sym_checked] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_true] = ACTIONS(3157), - [anon_sym_false] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3157), - [anon_sym_scoped] = ACTIONS(3157), - [anon_sym_base] = ACTIONS(3157), - [anon_sym_var] = ACTIONS(3157), - [sym_predefined_type] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_unchecked] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_do] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_switch] = ACTIONS(3157), - [anon_sym_default] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_catch] = ACTIONS(3157), - [anon_sym_when] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3157), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_foreach] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_DOT_DOT] = ACTIONS(3159), - [anon_sym_from] = ACTIONS(3157), - [anon_sym_into] = ACTIONS(3157), - [anon_sym_join] = ACTIONS(3157), - [anon_sym_on] = ACTIONS(3157), - [anon_sym_equals] = ACTIONS(3157), - [anon_sym_let] = ACTIONS(3157), - [anon_sym_orderby] = ACTIONS(3157), - [anon_sym_ascending] = ACTIONS(3157), - [anon_sym_descending] = ACTIONS(3157), - [anon_sym_group] = ACTIONS(3157), - [anon_sym_by] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_stackalloc] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3157), - [anon_sym_typeof] = ACTIONS(3157), - [anon_sym___makeref] = ACTIONS(3157), - [anon_sym___reftype] = ACTIONS(3157), - [anon_sym___refvalue] = ACTIONS(3157), - [sym_null_literal] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3159), - [sym_integer_literal] = ACTIONS(3157), - [sym_real_literal] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(3159), - [sym_verbatim_string_literal] = ACTIONS(3159), - [aux_sym_preproc_if_token1] = ACTIONS(3159), + [1929] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1929), + [sym_preproc_endregion] = STATE(1929), + [sym_preproc_line] = STATE(1929), + [sym_preproc_pragma] = STATE(1929), + [sym_preproc_nullable] = STATE(1929), + [sym_preproc_error] = STATE(1929), + [sym_preproc_warning] = STATE(1929), + [sym_preproc_define] = STATE(1929), + [sym_preproc_undef] = STATE(1929), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1931), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370238,125 +367913,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3159), - [sym_interpolation_verbatim_start] = ACTIONS(3159), - [sym_interpolation_raw_start] = ACTIONS(3159), - [sym_raw_string_start] = ACTIONS(3159), }, - [1948] = { - [sym_preproc_region] = STATE(1948), - [sym_preproc_endregion] = STATE(1948), - [sym_preproc_line] = STATE(1948), - [sym_preproc_pragma] = STATE(1948), - [sym_preproc_nullable] = STATE(1948), - [sym_preproc_error] = STATE(1948), - [sym_preproc_warning] = STATE(1948), - [sym_preproc_define] = STATE(1948), - [sym_preproc_undef] = STATE(1948), - [sym__identifier_token] = ACTIONS(3185), - [anon_sym_extern] = ACTIONS(3185), - [anon_sym_alias] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_ref] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_delegate] = ACTIONS(3185), - [anon_sym_record] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_file] = ACTIONS(3185), - [anon_sym_fixed] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_partial] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_required] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_virtual] = ACTIONS(3185), - [anon_sym_volatile] = ACTIONS(3185), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_notnull] = ACTIONS(3185), - [anon_sym_unmanaged] = ACTIONS(3185), - [anon_sym_checked] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_scoped] = ACTIONS(3185), - [anon_sym_base] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [sym_predefined_type] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_unchecked] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_default] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_foreach] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(3187), - [anon_sym_from] = ACTIONS(3185), - [anon_sym_into] = ACTIONS(3185), - [anon_sym_join] = ACTIONS(3185), - [anon_sym_on] = ACTIONS(3185), - [anon_sym_equals] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_orderby] = ACTIONS(3185), - [anon_sym_ascending] = ACTIONS(3185), - [anon_sym_descending] = ACTIONS(3185), - [anon_sym_group] = ACTIONS(3185), - [anon_sym_by] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_stackalloc] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym___makeref] = ACTIONS(3185), - [anon_sym___reftype] = ACTIONS(3185), - [anon_sym___refvalue] = ACTIONS(3185), - [sym_null_literal] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_real_literal] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_verbatim_string_literal] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3187), - [aux_sym_preproc_if_token3] = ACTIONS(3187), - [aux_sym_preproc_else_token1] = ACTIONS(3187), - [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [1930] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(2997), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1930), + [sym_preproc_endregion] = STATE(1930), + [sym_preproc_line] = STATE(1930), + [sym_preproc_pragma] = STATE(1930), + [sym_preproc_nullable] = STATE(1930), + [sym_preproc_error] = STATE(1930), + [sym_preproc_warning] = STATE(1930), + [sym_preproc_define] = STATE(1930), + [sym_preproc_undef] = STATE(1930), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1931), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370367,125 +368047,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3187), - [sym_interpolation_verbatim_start] = ACTIONS(3187), - [sym_interpolation_raw_start] = ACTIONS(3187), - [sym_raw_string_start] = ACTIONS(3187), }, - [1949] = { - [sym_preproc_region] = STATE(1949), - [sym_preproc_endregion] = STATE(1949), - [sym_preproc_line] = STATE(1949), - [sym_preproc_pragma] = STATE(1949), - [sym_preproc_nullable] = STATE(1949), - [sym_preproc_error] = STATE(1949), - [sym_preproc_warning] = STATE(1949), - [sym_preproc_define] = STATE(1949), - [sym_preproc_undef] = STATE(1949), - [sym__identifier_token] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym_alias] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_global] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_ref] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_delegate] = ACTIONS(3189), - [anon_sym_record] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_async] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3189), - [anon_sym_fixed] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_partial] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_readonly] = ACTIONS(3189), - [anon_sym_required] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_notnull] = ACTIONS(3189), - [anon_sym_unmanaged] = ACTIONS(3189), - [anon_sym_checked] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_scoped] = ACTIONS(3189), - [anon_sym_base] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3189), - [sym_predefined_type] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_unchecked] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_default] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_await] = ACTIONS(3189), - [anon_sym_foreach] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_from] = ACTIONS(3189), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_join] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_orderby] = ACTIONS(3189), - [anon_sym_ascending] = ACTIONS(3189), - [anon_sym_descending] = ACTIONS(3189), - [anon_sym_group] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_stackalloc] = ACTIONS(3189), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym_typeof] = ACTIONS(3189), - [anon_sym___makeref] = ACTIONS(3189), - [anon_sym___reftype] = ACTIONS(3189), - [anon_sym___refvalue] = ACTIONS(3189), - [sym_null_literal] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_real_literal] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_verbatim_string_literal] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_if_token3] = ACTIONS(3191), - [aux_sym_preproc_else_token1] = ACTIONS(3191), - [aux_sym_preproc_elif_token1] = ACTIONS(3191), + [1931] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1931), + [sym_preproc_endregion] = STATE(1931), + [sym_preproc_line] = STATE(1931), + [sym_preproc_pragma] = STATE(1931), + [sym_preproc_nullable] = STATE(1931), + [sym_preproc_error] = STATE(1931), + [sym_preproc_warning] = STATE(1931), + [sym_preproc_define] = STATE(1931), + [sym_preproc_undef] = STATE(1931), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1926), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token3] = ACTIONS(3131), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370496,125 +368181,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3191), - [sym_interpolation_verbatim_start] = ACTIONS(3191), - [sym_interpolation_raw_start] = ACTIONS(3191), - [sym_raw_string_start] = ACTIONS(3191), }, - [1950] = { - [sym_preproc_region] = STATE(1950), - [sym_preproc_endregion] = STATE(1950), - [sym_preproc_line] = STATE(1950), - [sym_preproc_pragma] = STATE(1950), - [sym_preproc_nullable] = STATE(1950), - [sym_preproc_error] = STATE(1950), - [sym_preproc_warning] = STATE(1950), - [sym_preproc_define] = STATE(1950), - [sym_preproc_undef] = STATE(1950), - [sym__identifier_token] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym_alias] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_global] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_ref] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_delegate] = ACTIONS(3193), - [anon_sym_record] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_file] = ACTIONS(3193), - [anon_sym_fixed] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_partial] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_required] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_notnull] = ACTIONS(3193), - [anon_sym_unmanaged] = ACTIONS(3193), - [anon_sym_checked] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_scoped] = ACTIONS(3193), - [anon_sym_base] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [sym_predefined_type] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_unchecked] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_foreach] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_from] = ACTIONS(3193), - [anon_sym_into] = ACTIONS(3193), - [anon_sym_join] = ACTIONS(3193), - [anon_sym_on] = ACTIONS(3193), - [anon_sym_equals] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_orderby] = ACTIONS(3193), - [anon_sym_ascending] = ACTIONS(3193), - [anon_sym_descending] = ACTIONS(3193), - [anon_sym_group] = ACTIONS(3193), - [anon_sym_by] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_stackalloc] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym___makeref] = ACTIONS(3193), - [anon_sym___reftype] = ACTIONS(3193), - [anon_sym___refvalue] = ACTIONS(3193), - [sym_null_literal] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_real_literal] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_verbatim_string_literal] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_if_token3] = ACTIONS(3195), - [aux_sym_preproc_else_token1] = ACTIONS(3195), - [aux_sym_preproc_elif_token1] = ACTIONS(3195), + [1932] = { + [sym_catch_clause] = STATE(1941), + [sym_finally_clause] = STATE(1982), + [sym_preproc_region] = STATE(1932), + [sym_preproc_endregion] = STATE(1932), + [sym_preproc_line] = STATE(1932), + [sym_preproc_pragma] = STATE(1932), + [sym_preproc_nullable] = STATE(1932), + [sym_preproc_error] = STATE(1932), + [sym_preproc_warning] = STATE(1932), + [sym_preproc_define] = STATE(1932), + [sym_preproc_undef] = STATE(1932), + [aux_sym_try_statement_repeat1] = STATE(1934), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_record] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_catch] = ACTIONS(3125), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3127), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), + [aux_sym_preproc_if_token3] = ACTIONS(3135), + [aux_sym_preproc_else_token1] = ACTIONS(3135), + [aux_sym_preproc_elif_token1] = ACTIONS(3135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370625,125 +368311,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3195), - [sym_interpolation_verbatim_start] = ACTIONS(3195), - [sym_interpolation_raw_start] = ACTIONS(3195), - [sym_raw_string_start] = ACTIONS(3195), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), }, - [1951] = { - [sym_preproc_region] = STATE(1951), - [sym_preproc_endregion] = STATE(1951), - [sym_preproc_line] = STATE(1951), - [sym_preproc_pragma] = STATE(1951), - [sym_preproc_nullable] = STATE(1951), - [sym_preproc_error] = STATE(1951), - [sym_preproc_warning] = STATE(1951), - [sym_preproc_define] = STATE(1951), - [sym_preproc_undef] = STATE(1951), - [sym__identifier_token] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym_alias] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_global] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_ref] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_delegate] = ACTIONS(3197), - [anon_sym_record] = ACTIONS(3197), - [anon_sym_abstract] = ACTIONS(3197), - [anon_sym_async] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_file] = ACTIONS(3197), - [anon_sym_fixed] = ACTIONS(3197), - [anon_sym_internal] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_override] = ACTIONS(3197), - [anon_sym_partial] = ACTIONS(3197), - [anon_sym_private] = ACTIONS(3197), - [anon_sym_protected] = ACTIONS(3197), - [anon_sym_public] = ACTIONS(3197), - [anon_sym_readonly] = ACTIONS(3197), - [anon_sym_required] = ACTIONS(3197), - [anon_sym_sealed] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_where] = ACTIONS(3197), - [anon_sym_notnull] = ACTIONS(3197), - [anon_sym_unmanaged] = ACTIONS(3197), - [anon_sym_checked] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_this] = ACTIONS(3197), - [anon_sym_scoped] = ACTIONS(3197), - [anon_sym_base] = ACTIONS(3197), - [anon_sym_var] = ACTIONS(3197), - [sym_predefined_type] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_unchecked] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_when] = ACTIONS(3197), - [anon_sym_await] = ACTIONS(3197), - [anon_sym_foreach] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [anon_sym_from] = ACTIONS(3197), - [anon_sym_into] = ACTIONS(3197), - [anon_sym_join] = ACTIONS(3197), - [anon_sym_on] = ACTIONS(3197), - [anon_sym_equals] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_orderby] = ACTIONS(3197), - [anon_sym_ascending] = ACTIONS(3197), - [anon_sym_descending] = ACTIONS(3197), - [anon_sym_group] = ACTIONS(3197), - [anon_sym_by] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_stackalloc] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym_typeof] = ACTIONS(3197), - [anon_sym___makeref] = ACTIONS(3197), - [anon_sym___reftype] = ACTIONS(3197), - [anon_sym___refvalue] = ACTIONS(3197), - [sym_null_literal] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3199), - [sym_integer_literal] = ACTIONS(3197), - [sym_real_literal] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_verbatim_string_literal] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_if_token3] = ACTIONS(3199), - [aux_sym_preproc_else_token1] = ACTIONS(3199), - [aux_sym_preproc_elif_token1] = ACTIONS(3199), + [1933] = { + [sym_using_directive] = STATE(2867), + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_namespace_declaration] = STATE(2867), + [sym_class_declaration] = STATE(2867), + [sym__class_declaration_initializer] = STATE(6794), + [sym_struct_declaration] = STATE(2867), + [sym__struct_declaration_initializer] = STATE(6746), + [sym_enum_declaration] = STATE(2867), + [sym__enum_declaration_initializer] = STATE(7010), + [sym_interface_declaration] = STATE(2867), + [sym__interface_declaration_initializer] = STATE(6747), + [sym_delegate_declaration] = STATE(2867), + [sym__delegate_declaration_initializer] = STATE(6692), + [sym_record_declaration] = STATE(2867), + [sym__record_declaration_initializer] = STATE(6693), + [sym_modifier] = STATE(3166), + [sym_operator_declaration] = STATE(2867), + [sym_conversion_operator_declaration] = STATE(2867), + [sym_declaration] = STATE(2868), + [sym_field_declaration] = STATE(2867), + [sym_constructor_declaration] = STATE(2867), + [sym__constructor_declaration_initializer] = STATE(6485), + [sym_destructor_declaration] = STATE(2867), + [sym_method_declaration] = STATE(2867), + [sym_event_declaration] = STATE(2867), + [sym_event_field_declaration] = STATE(2867), + [sym_indexer_declaration] = STATE(2867), + [sym_property_declaration] = STATE(2867), + [sym_variable_declaration] = STATE(7709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5591), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5777), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if] = STATE(2867), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(1933), + [sym_preproc_endregion] = STATE(1933), + [sym_preproc_line] = STATE(1933), + [sym_preproc_pragma] = STATE(1933), + [sym_preproc_nullable] = STATE(1933), + [sym_preproc_error] = STATE(1933), + [sym_preproc_warning] = STATE(1933), + [sym_preproc_define] = STATE(1933), + [sym_preproc_undef] = STATE(1933), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2291), + [aux_sym_declaration_list_repeat1] = STATE(1926), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3007), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(3013), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_implicit] = ACTIONS(3019), + [anon_sym_explicit] = ACTIONS(3019), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370754,125 +368449,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3199), - [sym_interpolation_verbatim_start] = ACTIONS(3199), - [sym_interpolation_raw_start] = ACTIONS(3199), - [sym_raw_string_start] = ACTIONS(3199), }, - [1952] = { - [sym_preproc_region] = STATE(1952), - [sym_preproc_endregion] = STATE(1952), - [sym_preproc_line] = STATE(1952), - [sym_preproc_pragma] = STATE(1952), - [sym_preproc_nullable] = STATE(1952), - [sym_preproc_error] = STATE(1952), - [sym_preproc_warning] = STATE(1952), - [sym_preproc_define] = STATE(1952), - [sym_preproc_undef] = STATE(1952), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_record] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token3] = ACTIONS(3131), - [aux_sym_preproc_else_token1] = ACTIONS(3131), - [aux_sym_preproc_elif_token1] = ACTIONS(3131), + [1934] = { + [sym_catch_clause] = STATE(1941), + [sym_preproc_region] = STATE(1934), + [sym_preproc_endregion] = STATE(1934), + [sym_preproc_line] = STATE(1934), + [sym_preproc_pragma] = STATE(1934), + [sym_preproc_nullable] = STATE(1934), + [sym_preproc_error] = STATE(1934), + [sym_preproc_warning] = STATE(1934), + [sym_preproc_define] = STATE(1934), + [sym_preproc_undef] = STATE(1934), + [aux_sym_try_statement_repeat1] = STATE(1934), + [sym__identifier_token] = ACTIONS(3139), + [anon_sym_extern] = ACTIONS(3139), + [anon_sym_alias] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_unsafe] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_ref] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_delegate] = ACTIONS(3139), + [anon_sym_record] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_file] = ACTIONS(3139), + [anon_sym_fixed] = ACTIONS(3139), + [anon_sym_internal] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_partial] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_required] = ACTIONS(3139), + [anon_sym_sealed] = ACTIONS(3139), + [anon_sym_virtual] = ACTIONS(3139), + [anon_sym_volatile] = ACTIONS(3139), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_notnull] = ACTIONS(3139), + [anon_sym_unmanaged] = ACTIONS(3139), + [anon_sym_checked] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(3139), + [anon_sym_false] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_this] = ACTIONS(3139), + [anon_sym_scoped] = ACTIONS(3139), + [anon_sym_base] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [sym_predefined_type] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_unchecked] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_lock] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_catch] = ACTIONS(3143), + [anon_sym_when] = ACTIONS(3139), + [anon_sym_finally] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_foreach] = ACTIONS(3139), + [anon_sym_goto] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3139), + [anon_sym_into] = ACTIONS(3139), + [anon_sym_join] = ACTIONS(3139), + [anon_sym_on] = ACTIONS(3139), + [anon_sym_equals] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_orderby] = ACTIONS(3139), + [anon_sym_ascending] = ACTIONS(3139), + [anon_sym_descending] = ACTIONS(3139), + [anon_sym_group] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_select] = ACTIONS(3139), + [anon_sym_stackalloc] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym___makeref] = ACTIONS(3139), + [anon_sym___reftype] = ACTIONS(3139), + [anon_sym___refvalue] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3141), + [sym_integer_literal] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym_verbatim_string_literal] = ACTIONS(3141), + [aux_sym_preproc_if_token1] = ACTIONS(3141), + [aux_sym_preproc_if_token3] = ACTIONS(3141), + [aux_sym_preproc_else_token1] = ACTIONS(3141), + [aux_sym_preproc_elif_token1] = ACTIONS(3141), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -370883,2576 +368578,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), - }, - [1953] = { - [sym_preproc_region] = STATE(1953), - [sym_preproc_endregion] = STATE(1953), - [sym_preproc_line] = STATE(1953), - [sym_preproc_pragma] = STATE(1953), - [sym_preproc_nullable] = STATE(1953), - [sym_preproc_error] = STATE(1953), - [sym_preproc_warning] = STATE(1953), - [sym_preproc_define] = STATE(1953), - [sym_preproc_undef] = STATE(1953), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_ref] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_delegate] = ACTIONS(3201), - [anon_sym_record] = ACTIONS(3201), - [anon_sym_abstract] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_file] = ACTIONS(3201), - [anon_sym_fixed] = ACTIONS(3201), - [anon_sym_internal] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_override] = ACTIONS(3201), - [anon_sym_partial] = ACTIONS(3201), - [anon_sym_private] = ACTIONS(3201), - [anon_sym_protected] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3201), - [anon_sym_readonly] = ACTIONS(3201), - [anon_sym_required] = ACTIONS(3201), - [anon_sym_sealed] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_notnull] = ACTIONS(3201), - [anon_sym_unmanaged] = ACTIONS(3201), - [anon_sym_checked] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_this] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_base] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_unchecked] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_await] = ACTIONS(3201), - [anon_sym_foreach] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3203), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_orderby] = ACTIONS(3201), - [anon_sym_ascending] = ACTIONS(3201), - [anon_sym_descending] = ACTIONS(3201), - [anon_sym_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_stackalloc] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym_typeof] = ACTIONS(3201), - [anon_sym___makeref] = ACTIONS(3201), - [anon_sym___reftype] = ACTIONS(3201), - [anon_sym___refvalue] = ACTIONS(3201), - [sym_null_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3201), - [sym_real_literal] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_verbatim_string_literal] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token3] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3203), - [sym_interpolation_verbatim_start] = ACTIONS(3203), - [sym_interpolation_raw_start] = ACTIONS(3203), - [sym_raw_string_start] = ACTIONS(3203), - }, - [1954] = { - [sym_preproc_region] = STATE(1954), - [sym_preproc_endregion] = STATE(1954), - [sym_preproc_line] = STATE(1954), - [sym_preproc_pragma] = STATE(1954), - [sym_preproc_nullable] = STATE(1954), - [sym_preproc_error] = STATE(1954), - [sym_preproc_warning] = STATE(1954), - [sym_preproc_define] = STATE(1954), - [sym_preproc_undef] = STATE(1954), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_ref] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_delegate] = ACTIONS(3205), - [anon_sym_record] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_checked] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_this] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_base] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [sym_predefined_type] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_unchecked] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_foreach] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_stackalloc] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym___makeref] = ACTIONS(3205), - [anon_sym___reftype] = ACTIONS(3205), - [anon_sym___refvalue] = ACTIONS(3205), - [sym_null_literal] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3207), - [sym_integer_literal] = ACTIONS(3205), - [sym_real_literal] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [sym_verbatim_string_literal] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token3] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3207), - [sym_interpolation_verbatim_start] = ACTIONS(3207), - [sym_interpolation_raw_start] = ACTIONS(3207), - [sym_raw_string_start] = ACTIONS(3207), - }, - [1955] = { - [sym_preproc_region] = STATE(1955), - [sym_preproc_endregion] = STATE(1955), - [sym_preproc_line] = STATE(1955), - [sym_preproc_pragma] = STATE(1955), - [sym_preproc_nullable] = STATE(1955), - [sym_preproc_error] = STATE(1955), - [sym_preproc_warning] = STATE(1955), - [sym_preproc_define] = STATE(1955), - [sym_preproc_undef] = STATE(1955), - [sym__identifier_token] = ACTIONS(3209), - [anon_sym_extern] = ACTIONS(3209), - [anon_sym_alias] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_ref] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_delegate] = ACTIONS(3209), - [anon_sym_record] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_file] = ACTIONS(3209), - [anon_sym_fixed] = ACTIONS(3209), - [anon_sym_internal] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_partial] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_required] = ACTIONS(3209), - [anon_sym_sealed] = ACTIONS(3209), - [anon_sym_virtual] = ACTIONS(3209), - [anon_sym_volatile] = ACTIONS(3209), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_notnull] = ACTIONS(3209), - [anon_sym_unmanaged] = ACTIONS(3209), - [anon_sym_checked] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(3209), - [anon_sym_scoped] = ACTIONS(3209), - [anon_sym_base] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [sym_predefined_type] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_unchecked] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_when] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_foreach] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3209), - [anon_sym_into] = ACTIONS(3209), - [anon_sym_join] = ACTIONS(3209), - [anon_sym_on] = ACTIONS(3209), - [anon_sym_equals] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_orderby] = ACTIONS(3209), - [anon_sym_ascending] = ACTIONS(3209), - [anon_sym_descending] = ACTIONS(3209), - [anon_sym_group] = ACTIONS(3209), - [anon_sym_by] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_stackalloc] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym___makeref] = ACTIONS(3209), - [anon_sym___reftype] = ACTIONS(3209), - [anon_sym___refvalue] = ACTIONS(3209), - [sym_null_literal] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3211), - [sym_integer_literal] = ACTIONS(3209), - [sym_real_literal] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [sym_verbatim_string_literal] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token3] = ACTIONS(3211), - [aux_sym_preproc_else_token1] = ACTIONS(3211), - [aux_sym_preproc_elif_token1] = ACTIONS(3211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3211), - [sym_interpolation_verbatim_start] = ACTIONS(3211), - [sym_interpolation_raw_start] = ACTIONS(3211), - [sym_raw_string_start] = ACTIONS(3211), - }, - [1956] = { - [sym_preproc_region] = STATE(1956), - [sym_preproc_endregion] = STATE(1956), - [sym_preproc_line] = STATE(1956), - [sym_preproc_pragma] = STATE(1956), - [sym_preproc_nullable] = STATE(1956), - [sym_preproc_error] = STATE(1956), - [sym_preproc_warning] = STATE(1956), - [sym_preproc_define] = STATE(1956), - [sym_preproc_undef] = STATE(1956), - [sym__identifier_token] = ACTIONS(3213), - [anon_sym_extern] = ACTIONS(3213), - [anon_sym_alias] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_ref] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_delegate] = ACTIONS(3213), - [anon_sym_record] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_file] = ACTIONS(3213), - [anon_sym_fixed] = ACTIONS(3213), - [anon_sym_internal] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_partial] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_required] = ACTIONS(3213), - [anon_sym_sealed] = ACTIONS(3213), - [anon_sym_virtual] = ACTIONS(3213), - [anon_sym_volatile] = ACTIONS(3213), - [anon_sym_where] = ACTIONS(3213), - [anon_sym_notnull] = ACTIONS(3213), - [anon_sym_unmanaged] = ACTIONS(3213), - [anon_sym_checked] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_this] = ACTIONS(3213), - [anon_sym_scoped] = ACTIONS(3213), - [anon_sym_base] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [sym_predefined_type] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_unchecked] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_when] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_foreach] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_DOT_DOT] = ACTIONS(3215), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_into] = ACTIONS(3213), - [anon_sym_join] = ACTIONS(3213), - [anon_sym_on] = ACTIONS(3213), - [anon_sym_equals] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_orderby] = ACTIONS(3213), - [anon_sym_ascending] = ACTIONS(3213), - [anon_sym_descending] = ACTIONS(3213), - [anon_sym_group] = ACTIONS(3213), - [anon_sym_by] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_stackalloc] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym___makeref] = ACTIONS(3213), - [anon_sym___reftype] = ACTIONS(3213), - [anon_sym___refvalue] = ACTIONS(3213), - [sym_null_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3215), - [sym_integer_literal] = ACTIONS(3213), - [sym_real_literal] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(3215), - [sym_verbatim_string_literal] = ACTIONS(3215), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_if_token3] = ACTIONS(3215), - [aux_sym_preproc_else_token1] = ACTIONS(3215), - [aux_sym_preproc_elif_token1] = ACTIONS(3215), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3215), - [sym_interpolation_verbatim_start] = ACTIONS(3215), - [sym_interpolation_raw_start] = ACTIONS(3215), - [sym_raw_string_start] = ACTIONS(3215), - }, - [1957] = { - [sym_preproc_region] = STATE(1957), - [sym_preproc_endregion] = STATE(1957), - [sym_preproc_line] = STATE(1957), - [sym_preproc_pragma] = STATE(1957), - [sym_preproc_nullable] = STATE(1957), - [sym_preproc_error] = STATE(1957), - [sym_preproc_warning] = STATE(1957), - [sym_preproc_define] = STATE(1957), - [sym_preproc_undef] = STATE(1957), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_record] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token3] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), - }, - [1958] = { - [sym_preproc_region] = STATE(1958), - [sym_preproc_endregion] = STATE(1958), - [sym_preproc_line] = STATE(1958), - [sym_preproc_pragma] = STATE(1958), - [sym_preproc_nullable] = STATE(1958), - [sym_preproc_error] = STATE(1958), - [sym_preproc_warning] = STATE(1958), - [sym_preproc_define] = STATE(1958), - [sym_preproc_undef] = STATE(1958), - [sym__identifier_token] = ACTIONS(3221), - [anon_sym_extern] = ACTIONS(3221), - [anon_sym_alias] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_global] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_unsafe] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_ref] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_delegate] = ACTIONS(3221), - [anon_sym_record] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_file] = ACTIONS(3221), - [anon_sym_fixed] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_partial] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_sealed] = ACTIONS(3221), - [anon_sym_virtual] = ACTIONS(3221), - [anon_sym_volatile] = ACTIONS(3221), - [anon_sym_where] = ACTIONS(3221), - [anon_sym_notnull] = ACTIONS(3221), - [anon_sym_unmanaged] = ACTIONS(3221), - [anon_sym_checked] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_this] = ACTIONS(3221), - [anon_sym_scoped] = ACTIONS(3221), - [anon_sym_base] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [sym_predefined_type] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_unchecked] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_lock] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_when] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_foreach] = ACTIONS(3221), - [anon_sym_goto] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [anon_sym_from] = ACTIONS(3221), - [anon_sym_into] = ACTIONS(3221), - [anon_sym_join] = ACTIONS(3221), - [anon_sym_on] = ACTIONS(3221), - [anon_sym_equals] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_orderby] = ACTIONS(3221), - [anon_sym_ascending] = ACTIONS(3221), - [anon_sym_descending] = ACTIONS(3221), - [anon_sym_group] = ACTIONS(3221), - [anon_sym_by] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_stackalloc] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym___makeref] = ACTIONS(3221), - [anon_sym___reftype] = ACTIONS(3221), - [anon_sym___refvalue] = ACTIONS(3221), - [sym_null_literal] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3223), - [sym_integer_literal] = ACTIONS(3221), - [sym_real_literal] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [sym_verbatim_string_literal] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token3] = ACTIONS(3223), - [aux_sym_preproc_else_token1] = ACTIONS(3223), - [aux_sym_preproc_elif_token1] = ACTIONS(3223), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3223), - [sym_interpolation_verbatim_start] = ACTIONS(3223), - [sym_interpolation_raw_start] = ACTIONS(3223), - [sym_raw_string_start] = ACTIONS(3223), - }, - [1959] = { - [sym_preproc_region] = STATE(1959), - [sym_preproc_endregion] = STATE(1959), - [sym_preproc_line] = STATE(1959), - [sym_preproc_pragma] = STATE(1959), - [sym_preproc_nullable] = STATE(1959), - [sym_preproc_error] = STATE(1959), - [sym_preproc_warning] = STATE(1959), - [sym_preproc_define] = STATE(1959), - [sym_preproc_undef] = STATE(1959), - [sym__identifier_token] = ACTIONS(3225), - [anon_sym_extern] = ACTIONS(3225), - [anon_sym_alias] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_global] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_unsafe] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_ref] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_delegate] = ACTIONS(3225), - [anon_sym_record] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_file] = ACTIONS(3225), - [anon_sym_fixed] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_partial] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_sealed] = ACTIONS(3225), - [anon_sym_virtual] = ACTIONS(3225), - [anon_sym_volatile] = ACTIONS(3225), - [anon_sym_where] = ACTIONS(3225), - [anon_sym_notnull] = ACTIONS(3225), - [anon_sym_unmanaged] = ACTIONS(3225), - [anon_sym_checked] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_this] = ACTIONS(3225), - [anon_sym_scoped] = ACTIONS(3225), - [anon_sym_base] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [sym_predefined_type] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_unchecked] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_lock] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_when] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_foreach] = ACTIONS(3225), - [anon_sym_goto] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_from] = ACTIONS(3225), - [anon_sym_into] = ACTIONS(3225), - [anon_sym_join] = ACTIONS(3225), - [anon_sym_on] = ACTIONS(3225), - [anon_sym_equals] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_orderby] = ACTIONS(3225), - [anon_sym_ascending] = ACTIONS(3225), - [anon_sym_descending] = ACTIONS(3225), - [anon_sym_group] = ACTIONS(3225), - [anon_sym_by] = ACTIONS(3225), - [anon_sym_select] = ACTIONS(3225), - [anon_sym_stackalloc] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym___makeref] = ACTIONS(3225), - [anon_sym___reftype] = ACTIONS(3225), - [anon_sym___refvalue] = ACTIONS(3225), - [sym_null_literal] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3227), - [sym_integer_literal] = ACTIONS(3225), - [sym_real_literal] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [sym_verbatim_string_literal] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token3] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3227), - [sym_interpolation_verbatim_start] = ACTIONS(3227), - [sym_interpolation_raw_start] = ACTIONS(3227), - [sym_raw_string_start] = ACTIONS(3227), - }, - [1960] = { - [sym_preproc_region] = STATE(1960), - [sym_preproc_endregion] = STATE(1960), - [sym_preproc_line] = STATE(1960), - [sym_preproc_pragma] = STATE(1960), - [sym_preproc_nullable] = STATE(1960), - [sym_preproc_error] = STATE(1960), - [sym_preproc_warning] = STATE(1960), - [sym_preproc_define] = STATE(1960), - [sym_preproc_undef] = STATE(1960), - [sym__identifier_token] = ACTIONS(3229), - [anon_sym_extern] = ACTIONS(3229), - [anon_sym_alias] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_global] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_unsafe] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_ref] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_delegate] = ACTIONS(3229), - [anon_sym_record] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_file] = ACTIONS(3229), - [anon_sym_fixed] = ACTIONS(3229), - [anon_sym_internal] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_partial] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_required] = ACTIONS(3229), - [anon_sym_sealed] = ACTIONS(3229), - [anon_sym_virtual] = ACTIONS(3229), - [anon_sym_volatile] = ACTIONS(3229), - [anon_sym_where] = ACTIONS(3229), - [anon_sym_notnull] = ACTIONS(3229), - [anon_sym_unmanaged] = ACTIONS(3229), - [anon_sym_checked] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_true] = ACTIONS(3229), - [anon_sym_false] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_this] = ACTIONS(3229), - [anon_sym_scoped] = ACTIONS(3229), - [anon_sym_base] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [sym_predefined_type] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_unchecked] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_lock] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_when] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_foreach] = ACTIONS(3229), - [anon_sym_goto] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3231), - [anon_sym_from] = ACTIONS(3229), - [anon_sym_into] = ACTIONS(3229), - [anon_sym_join] = ACTIONS(3229), - [anon_sym_on] = ACTIONS(3229), - [anon_sym_equals] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_orderby] = ACTIONS(3229), - [anon_sym_ascending] = ACTIONS(3229), - [anon_sym_descending] = ACTIONS(3229), - [anon_sym_group] = ACTIONS(3229), - [anon_sym_by] = ACTIONS(3229), - [anon_sym_select] = ACTIONS(3229), - [anon_sym_stackalloc] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym___makeref] = ACTIONS(3229), - [anon_sym___reftype] = ACTIONS(3229), - [anon_sym___refvalue] = ACTIONS(3229), - [sym_null_literal] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3231), - [sym_integer_literal] = ACTIONS(3229), - [sym_real_literal] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym_verbatim_string_literal] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token3] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3231), - [sym_interpolation_verbatim_start] = ACTIONS(3231), - [sym_interpolation_raw_start] = ACTIONS(3231), - [sym_raw_string_start] = ACTIONS(3231), - }, - [1961] = { - [sym_preproc_region] = STATE(1961), - [sym_preproc_endregion] = STATE(1961), - [sym_preproc_line] = STATE(1961), - [sym_preproc_pragma] = STATE(1961), - [sym_preproc_nullable] = STATE(1961), - [sym_preproc_error] = STATE(1961), - [sym_preproc_warning] = STATE(1961), - [sym_preproc_define] = STATE(1961), - [sym_preproc_undef] = STATE(1961), - [sym__identifier_token] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_alias] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_global] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_unsafe] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_ref] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_delegate] = ACTIONS(3233), - [anon_sym_record] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_file] = ACTIONS(3233), - [anon_sym_fixed] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_partial] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_sealed] = ACTIONS(3233), - [anon_sym_virtual] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_where] = ACTIONS(3233), - [anon_sym_notnull] = ACTIONS(3233), - [anon_sym_unmanaged] = ACTIONS(3233), - [anon_sym_checked] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_this] = ACTIONS(3233), - [anon_sym_scoped] = ACTIONS(3233), - [anon_sym_base] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [sym_predefined_type] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_unchecked] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_lock] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_when] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_foreach] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3235), - [anon_sym_from] = ACTIONS(3233), - [anon_sym_into] = ACTIONS(3233), - [anon_sym_join] = ACTIONS(3233), - [anon_sym_on] = ACTIONS(3233), - [anon_sym_equals] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_orderby] = ACTIONS(3233), - [anon_sym_ascending] = ACTIONS(3233), - [anon_sym_descending] = ACTIONS(3233), - [anon_sym_group] = ACTIONS(3233), - [anon_sym_by] = ACTIONS(3233), - [anon_sym_select] = ACTIONS(3233), - [anon_sym_stackalloc] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym___makeref] = ACTIONS(3233), - [anon_sym___reftype] = ACTIONS(3233), - [anon_sym___refvalue] = ACTIONS(3233), - [sym_null_literal] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3235), - [sym_integer_literal] = ACTIONS(3233), - [sym_real_literal] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_verbatim_string_literal] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token3] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3235), - [sym_interpolation_verbatim_start] = ACTIONS(3235), - [sym_interpolation_raw_start] = ACTIONS(3235), - [sym_raw_string_start] = ACTIONS(3235), - }, - [1962] = { - [sym_preproc_region] = STATE(1962), - [sym_preproc_endregion] = STATE(1962), - [sym_preproc_line] = STATE(1962), - [sym_preproc_pragma] = STATE(1962), - [sym_preproc_nullable] = STATE(1962), - [sym_preproc_error] = STATE(1962), - [sym_preproc_warning] = STATE(1962), - [sym_preproc_define] = STATE(1962), - [sym_preproc_undef] = STATE(1962), - [sym__identifier_token] = ACTIONS(3237), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_alias] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_global] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_ref] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_delegate] = ACTIONS(3237), - [anon_sym_record] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_file] = ACTIONS(3237), - [anon_sym_fixed] = ACTIONS(3237), - [anon_sym_internal] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_partial] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_required] = ACTIONS(3237), - [anon_sym_sealed] = ACTIONS(3237), - [anon_sym_virtual] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [anon_sym_where] = ACTIONS(3237), - [anon_sym_notnull] = ACTIONS(3237), - [anon_sym_unmanaged] = ACTIONS(3237), - [anon_sym_checked] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_true] = ACTIONS(3237), - [anon_sym_false] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_this] = ACTIONS(3237), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_base] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [sym_predefined_type] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_unchecked] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_when] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_foreach] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_from] = ACTIONS(3237), - [anon_sym_into] = ACTIONS(3237), - [anon_sym_join] = ACTIONS(3237), - [anon_sym_on] = ACTIONS(3237), - [anon_sym_equals] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_orderby] = ACTIONS(3237), - [anon_sym_ascending] = ACTIONS(3237), - [anon_sym_descending] = ACTIONS(3237), - [anon_sym_group] = ACTIONS(3237), - [anon_sym_by] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_stackalloc] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym___makeref] = ACTIONS(3237), - [anon_sym___reftype] = ACTIONS(3237), - [anon_sym___refvalue] = ACTIONS(3237), - [sym_null_literal] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3239), - [sym_integer_literal] = ACTIONS(3237), - [sym_real_literal] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym_verbatim_string_literal] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token3] = ACTIONS(3239), - [aux_sym_preproc_else_token1] = ACTIONS(3239), - [aux_sym_preproc_elif_token1] = ACTIONS(3239), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3239), - [sym_interpolation_verbatim_start] = ACTIONS(3239), - [sym_interpolation_raw_start] = ACTIONS(3239), - [sym_raw_string_start] = ACTIONS(3239), - }, - [1963] = { - [sym_preproc_region] = STATE(1963), - [sym_preproc_endregion] = STATE(1963), - [sym_preproc_line] = STATE(1963), - [sym_preproc_pragma] = STATE(1963), - [sym_preproc_nullable] = STATE(1963), - [sym_preproc_error] = STATE(1963), - [sym_preproc_warning] = STATE(1963), - [sym_preproc_define] = STATE(1963), - [sym_preproc_undef] = STATE(1963), - [sym__identifier_token] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_alias] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_global] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_unsafe] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_ref] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_delegate] = ACTIONS(3241), - [anon_sym_record] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_file] = ACTIONS(3241), - [anon_sym_fixed] = ACTIONS(3241), - [anon_sym_internal] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_partial] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_required] = ACTIONS(3241), - [anon_sym_sealed] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_where] = ACTIONS(3241), - [anon_sym_notnull] = ACTIONS(3241), - [anon_sym_unmanaged] = ACTIONS(3241), - [anon_sym_checked] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_true] = ACTIONS(3241), - [anon_sym_false] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_this] = ACTIONS(3241), - [anon_sym_scoped] = ACTIONS(3241), - [anon_sym_base] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_unchecked] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_lock] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_when] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_foreach] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [anon_sym_from] = ACTIONS(3241), - [anon_sym_into] = ACTIONS(3241), - [anon_sym_join] = ACTIONS(3241), - [anon_sym_on] = ACTIONS(3241), - [anon_sym_equals] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_orderby] = ACTIONS(3241), - [anon_sym_ascending] = ACTIONS(3241), - [anon_sym_descending] = ACTIONS(3241), - [anon_sym_group] = ACTIONS(3241), - [anon_sym_by] = ACTIONS(3241), - [anon_sym_select] = ACTIONS(3241), - [anon_sym_stackalloc] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym___makeref] = ACTIONS(3241), - [anon_sym___reftype] = ACTIONS(3241), - [anon_sym___refvalue] = ACTIONS(3241), - [sym_null_literal] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3243), - [sym_integer_literal] = ACTIONS(3241), - [sym_real_literal] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_verbatim_string_literal] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token3] = ACTIONS(3243), - [aux_sym_preproc_else_token1] = ACTIONS(3243), - [aux_sym_preproc_elif_token1] = ACTIONS(3243), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3243), - [sym_interpolation_verbatim_start] = ACTIONS(3243), - [sym_interpolation_raw_start] = ACTIONS(3243), - [sym_raw_string_start] = ACTIONS(3243), - }, - [1964] = { - [sym_preproc_region] = STATE(1964), - [sym_preproc_endregion] = STATE(1964), - [sym_preproc_line] = STATE(1964), - [sym_preproc_pragma] = STATE(1964), - [sym_preproc_nullable] = STATE(1964), - [sym_preproc_error] = STATE(1964), - [sym_preproc_warning] = STATE(1964), - [sym_preproc_define] = STATE(1964), - [sym_preproc_undef] = STATE(1964), - [sym__identifier_token] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_alias] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_global] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_ref] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_delegate] = ACTIONS(3245), - [anon_sym_record] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_file] = ACTIONS(3245), - [anon_sym_fixed] = ACTIONS(3245), - [anon_sym_internal] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_partial] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_required] = ACTIONS(3245), - [anon_sym_sealed] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_where] = ACTIONS(3245), - [anon_sym_notnull] = ACTIONS(3245), - [anon_sym_unmanaged] = ACTIONS(3245), - [anon_sym_checked] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_this] = ACTIONS(3245), - [anon_sym_scoped] = ACTIONS(3245), - [anon_sym_base] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [sym_predefined_type] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_unchecked] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_when] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_foreach] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_from] = ACTIONS(3245), - [anon_sym_into] = ACTIONS(3245), - [anon_sym_join] = ACTIONS(3245), - [anon_sym_on] = ACTIONS(3245), - [anon_sym_equals] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_orderby] = ACTIONS(3245), - [anon_sym_ascending] = ACTIONS(3245), - [anon_sym_descending] = ACTIONS(3245), - [anon_sym_group] = ACTIONS(3245), - [anon_sym_by] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_stackalloc] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym___makeref] = ACTIONS(3245), - [anon_sym___reftype] = ACTIONS(3245), - [anon_sym___refvalue] = ACTIONS(3245), - [sym_null_literal] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3247), - [sym_integer_literal] = ACTIONS(3245), - [sym_real_literal] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_verbatim_string_literal] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token3] = ACTIONS(3247), - [aux_sym_preproc_else_token1] = ACTIONS(3247), - [aux_sym_preproc_elif_token1] = ACTIONS(3247), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3247), - [sym_interpolation_verbatim_start] = ACTIONS(3247), - [sym_interpolation_raw_start] = ACTIONS(3247), - [sym_raw_string_start] = ACTIONS(3247), - }, - [1965] = { - [sym_preproc_region] = STATE(1965), - [sym_preproc_endregion] = STATE(1965), - [sym_preproc_line] = STATE(1965), - [sym_preproc_pragma] = STATE(1965), - [sym_preproc_nullable] = STATE(1965), - [sym_preproc_error] = STATE(1965), - [sym_preproc_warning] = STATE(1965), - [sym_preproc_define] = STATE(1965), - [sym_preproc_undef] = STATE(1965), - [sym__identifier_token] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_alias] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_global] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_ref] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_delegate] = ACTIONS(3249), - [anon_sym_record] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_file] = ACTIONS(3249), - [anon_sym_fixed] = ACTIONS(3249), - [anon_sym_internal] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_partial] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_required] = ACTIONS(3249), - [anon_sym_sealed] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_where] = ACTIONS(3249), - [anon_sym_notnull] = ACTIONS(3249), - [anon_sym_unmanaged] = ACTIONS(3249), - [anon_sym_checked] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_true] = ACTIONS(3249), - [anon_sym_false] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_this] = ACTIONS(3249), - [anon_sym_scoped] = ACTIONS(3249), - [anon_sym_base] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [sym_predefined_type] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_unchecked] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_when] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_foreach] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(3251), - [anon_sym_from] = ACTIONS(3249), - [anon_sym_into] = ACTIONS(3249), - [anon_sym_join] = ACTIONS(3249), - [anon_sym_on] = ACTIONS(3249), - [anon_sym_equals] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_orderby] = ACTIONS(3249), - [anon_sym_ascending] = ACTIONS(3249), - [anon_sym_descending] = ACTIONS(3249), - [anon_sym_group] = ACTIONS(3249), - [anon_sym_by] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_stackalloc] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym___makeref] = ACTIONS(3249), - [anon_sym___reftype] = ACTIONS(3249), - [anon_sym___refvalue] = ACTIONS(3249), - [sym_null_literal] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3251), - [sym_integer_literal] = ACTIONS(3249), - [sym_real_literal] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_verbatim_string_literal] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token3] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3251), - [sym_interpolation_verbatim_start] = ACTIONS(3251), - [sym_interpolation_raw_start] = ACTIONS(3251), - [sym_raw_string_start] = ACTIONS(3251), - }, - [1966] = { - [sym_preproc_region] = STATE(1966), - [sym_preproc_endregion] = STATE(1966), - [sym_preproc_line] = STATE(1966), - [sym_preproc_pragma] = STATE(1966), - [sym_preproc_nullable] = STATE(1966), - [sym_preproc_error] = STATE(1966), - [sym_preproc_warning] = STATE(1966), - [sym_preproc_define] = STATE(1966), - [sym_preproc_undef] = STATE(1966), - [sym__identifier_token] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_global] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_ref] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_delegate] = ACTIONS(3253), - [anon_sym_record] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_file] = ACTIONS(3253), - [anon_sym_fixed] = ACTIONS(3253), - [anon_sym_internal] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_partial] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_required] = ACTIONS(3253), - [anon_sym_sealed] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_where] = ACTIONS(3253), - [anon_sym_notnull] = ACTIONS(3253), - [anon_sym_unmanaged] = ACTIONS(3253), - [anon_sym_checked] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_true] = ACTIONS(3253), - [anon_sym_false] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_this] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_base] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [sym_predefined_type] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_unchecked] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_foreach] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_from] = ACTIONS(3253), - [anon_sym_into] = ACTIONS(3253), - [anon_sym_join] = ACTIONS(3253), - [anon_sym_on] = ACTIONS(3253), - [anon_sym_equals] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_orderby] = ACTIONS(3253), - [anon_sym_ascending] = ACTIONS(3253), - [anon_sym_descending] = ACTIONS(3253), - [anon_sym_group] = ACTIONS(3253), - [anon_sym_by] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_stackalloc] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym___makeref] = ACTIONS(3253), - [anon_sym___reftype] = ACTIONS(3253), - [anon_sym___refvalue] = ACTIONS(3253), - [sym_null_literal] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3255), - [sym_integer_literal] = ACTIONS(3253), - [sym_real_literal] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_verbatim_string_literal] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token3] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3255), - [aux_sym_preproc_elif_token1] = ACTIONS(3255), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3255), - [sym_interpolation_verbatim_start] = ACTIONS(3255), - [sym_interpolation_raw_start] = ACTIONS(3255), - [sym_raw_string_start] = ACTIONS(3255), - }, - [1967] = { - [sym_preproc_region] = STATE(1967), - [sym_preproc_endregion] = STATE(1967), - [sym_preproc_line] = STATE(1967), - [sym_preproc_pragma] = STATE(1967), - [sym_preproc_nullable] = STATE(1967), - [sym_preproc_error] = STATE(1967), - [sym_preproc_warning] = STATE(1967), - [sym_preproc_define] = STATE(1967), - [sym_preproc_undef] = STATE(1967), - [sym__identifier_token] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_alias] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_global] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_ref] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_delegate] = ACTIONS(3257), - [anon_sym_record] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_file] = ACTIONS(3257), - [anon_sym_fixed] = ACTIONS(3257), - [anon_sym_internal] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_partial] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_required] = ACTIONS(3257), - [anon_sym_sealed] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_where] = ACTIONS(3257), - [anon_sym_notnull] = ACTIONS(3257), - [anon_sym_unmanaged] = ACTIONS(3257), - [anon_sym_checked] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_true] = ACTIONS(3257), - [anon_sym_false] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_this] = ACTIONS(3257), - [anon_sym_scoped] = ACTIONS(3257), - [anon_sym_base] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [sym_predefined_type] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_unchecked] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_when] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_foreach] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_DOT_DOT] = ACTIONS(3259), - [anon_sym_from] = ACTIONS(3257), - [anon_sym_into] = ACTIONS(3257), - [anon_sym_join] = ACTIONS(3257), - [anon_sym_on] = ACTIONS(3257), - [anon_sym_equals] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_orderby] = ACTIONS(3257), - [anon_sym_ascending] = ACTIONS(3257), - [anon_sym_descending] = ACTIONS(3257), - [anon_sym_group] = ACTIONS(3257), - [anon_sym_by] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_stackalloc] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym___makeref] = ACTIONS(3257), - [anon_sym___reftype] = ACTIONS(3257), - [anon_sym___refvalue] = ACTIONS(3257), - [sym_null_literal] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3259), - [sym_integer_literal] = ACTIONS(3257), - [sym_real_literal] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_verbatim_string_literal] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token3] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3259), - [sym_interpolation_verbatim_start] = ACTIONS(3259), - [sym_interpolation_raw_start] = ACTIONS(3259), - [sym_raw_string_start] = ACTIONS(3259), - }, - [1968] = { - [sym_preproc_region] = STATE(1968), - [sym_preproc_endregion] = STATE(1968), - [sym_preproc_line] = STATE(1968), - [sym_preproc_pragma] = STATE(1968), - [sym_preproc_nullable] = STATE(1968), - [sym_preproc_error] = STATE(1968), - [sym_preproc_warning] = STATE(1968), - [sym_preproc_define] = STATE(1968), - [sym_preproc_undef] = STATE(1968), - [sym__identifier_token] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_alias] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_global] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_ref] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3261), - [anon_sym_delegate] = ACTIONS(3261), - [anon_sym_record] = ACTIONS(3261), - [anon_sym_abstract] = ACTIONS(3261), - [anon_sym_async] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_file] = ACTIONS(3261), - [anon_sym_fixed] = ACTIONS(3261), - [anon_sym_internal] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_override] = ACTIONS(3261), - [anon_sym_partial] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_readonly] = ACTIONS(3261), - [anon_sym_required] = ACTIONS(3261), - [anon_sym_sealed] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_where] = ACTIONS(3261), - [anon_sym_notnull] = ACTIONS(3261), - [anon_sym_unmanaged] = ACTIONS(3261), - [anon_sym_checked] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_true] = ACTIONS(3261), - [anon_sym_false] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_this] = ACTIONS(3261), - [anon_sym_scoped] = ACTIONS(3261), - [anon_sym_base] = ACTIONS(3261), - [anon_sym_var] = ACTIONS(3261), - [sym_predefined_type] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_unchecked] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_yield] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_when] = ACTIONS(3261), - [anon_sym_await] = ACTIONS(3261), - [anon_sym_foreach] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_else] = ACTIONS(3261), - [anon_sym_DOT_DOT] = ACTIONS(3263), - [anon_sym_from] = ACTIONS(3261), - [anon_sym_into] = ACTIONS(3261), - [anon_sym_join] = ACTIONS(3261), - [anon_sym_on] = ACTIONS(3261), - [anon_sym_equals] = ACTIONS(3261), - [anon_sym_let] = ACTIONS(3261), - [anon_sym_orderby] = ACTIONS(3261), - [anon_sym_ascending] = ACTIONS(3261), - [anon_sym_descending] = ACTIONS(3261), - [anon_sym_group] = ACTIONS(3261), - [anon_sym_by] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_stackalloc] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym_typeof] = ACTIONS(3261), - [anon_sym___makeref] = ACTIONS(3261), - [anon_sym___reftype] = ACTIONS(3261), - [anon_sym___refvalue] = ACTIONS(3261), - [sym_null_literal] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3263), - [sym_integer_literal] = ACTIONS(3261), - [sym_real_literal] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_verbatim_string_literal] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_if_token3] = ACTIONS(3263), - [aux_sym_preproc_else_token1] = ACTIONS(3263), - [aux_sym_preproc_elif_token1] = ACTIONS(3263), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3263), - [sym_interpolation_verbatim_start] = ACTIONS(3263), - [sym_interpolation_raw_start] = ACTIONS(3263), - [sym_raw_string_start] = ACTIONS(3263), - }, - [1969] = { - [sym_preproc_region] = STATE(1969), - [sym_preproc_endregion] = STATE(1969), - [sym_preproc_line] = STATE(1969), - [sym_preproc_pragma] = STATE(1969), - [sym_preproc_nullable] = STATE(1969), - [sym_preproc_error] = STATE(1969), - [sym_preproc_warning] = STATE(1969), - [sym_preproc_define] = STATE(1969), - [sym_preproc_undef] = STATE(1969), - [sym__identifier_token] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym_alias] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_global] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_unsafe] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_ref] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_delegate] = ACTIONS(3265), - [anon_sym_record] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_file] = ACTIONS(3265), - [anon_sym_fixed] = ACTIONS(3265), - [anon_sym_internal] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_partial] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_required] = ACTIONS(3265), - [anon_sym_sealed] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_where] = ACTIONS(3265), - [anon_sym_notnull] = ACTIONS(3265), - [anon_sym_unmanaged] = ACTIONS(3265), - [anon_sym_checked] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_true] = ACTIONS(3265), - [anon_sym_false] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_this] = ACTIONS(3265), - [anon_sym_scoped] = ACTIONS(3265), - [anon_sym_base] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [sym_predefined_type] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_unchecked] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_lock] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_when] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_foreach] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_else] = ACTIONS(3265), - [anon_sym_DOT_DOT] = ACTIONS(3267), - [anon_sym_from] = ACTIONS(3265), - [anon_sym_into] = ACTIONS(3265), - [anon_sym_join] = ACTIONS(3265), - [anon_sym_on] = ACTIONS(3265), - [anon_sym_equals] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_orderby] = ACTIONS(3265), - [anon_sym_ascending] = ACTIONS(3265), - [anon_sym_descending] = ACTIONS(3265), - [anon_sym_group] = ACTIONS(3265), - [anon_sym_by] = ACTIONS(3265), - [anon_sym_select] = ACTIONS(3265), - [anon_sym_stackalloc] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym___makeref] = ACTIONS(3265), - [anon_sym___reftype] = ACTIONS(3265), - [anon_sym___refvalue] = ACTIONS(3265), - [sym_null_literal] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3267), - [sym_integer_literal] = ACTIONS(3265), - [sym_real_literal] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_verbatim_string_literal] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3267), - [aux_sym_preproc_if_token3] = ACTIONS(3267), - [aux_sym_preproc_else_token1] = ACTIONS(3267), - [aux_sym_preproc_elif_token1] = ACTIONS(3267), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3267), - [sym_interpolation_verbatim_start] = ACTIONS(3267), - [sym_interpolation_raw_start] = ACTIONS(3267), - [sym_raw_string_start] = ACTIONS(3267), - }, - [1970] = { - [sym_preproc_region] = STATE(1970), - [sym_preproc_endregion] = STATE(1970), - [sym_preproc_line] = STATE(1970), - [sym_preproc_pragma] = STATE(1970), - [sym_preproc_nullable] = STATE(1970), - [sym_preproc_error] = STATE(1970), - [sym_preproc_warning] = STATE(1970), - [sym_preproc_define] = STATE(1970), - [sym_preproc_undef] = STATE(1970), - [sym__identifier_token] = ACTIONS(3269), - [anon_sym_extern] = ACTIONS(3269), - [anon_sym_alias] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_global] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_ref] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_delegate] = ACTIONS(3269), - [anon_sym_record] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_file] = ACTIONS(3269), - [anon_sym_fixed] = ACTIONS(3269), - [anon_sym_internal] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_partial] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_required] = ACTIONS(3269), - [anon_sym_sealed] = ACTIONS(3269), - [anon_sym_virtual] = ACTIONS(3269), - [anon_sym_volatile] = ACTIONS(3269), - [anon_sym_where] = ACTIONS(3269), - [anon_sym_notnull] = ACTIONS(3269), - [anon_sym_unmanaged] = ACTIONS(3269), - [anon_sym_checked] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3269), - [anon_sym_false] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_this] = ACTIONS(3269), - [anon_sym_scoped] = ACTIONS(3269), - [anon_sym_base] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [sym_predefined_type] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_unchecked] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_when] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_foreach] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_DOT_DOT] = ACTIONS(3271), - [anon_sym_from] = ACTIONS(3269), - [anon_sym_into] = ACTIONS(3269), - [anon_sym_join] = ACTIONS(3269), - [anon_sym_on] = ACTIONS(3269), - [anon_sym_equals] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_orderby] = ACTIONS(3269), - [anon_sym_ascending] = ACTIONS(3269), - [anon_sym_descending] = ACTIONS(3269), - [anon_sym_group] = ACTIONS(3269), - [anon_sym_by] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_stackalloc] = ACTIONS(3269), - [anon_sym_sizeof] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym___makeref] = ACTIONS(3269), - [anon_sym___reftype] = ACTIONS(3269), - [anon_sym___refvalue] = ACTIONS(3269), - [sym_null_literal] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3271), - [sym_integer_literal] = ACTIONS(3269), - [sym_real_literal] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_verbatim_string_literal] = ACTIONS(3271), - [aux_sym_preproc_if_token1] = ACTIONS(3271), - [aux_sym_preproc_if_token3] = ACTIONS(3271), - [aux_sym_preproc_else_token1] = ACTIONS(3271), - [aux_sym_preproc_elif_token1] = ACTIONS(3271), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3271), - [sym_interpolation_verbatim_start] = ACTIONS(3271), - [sym_interpolation_raw_start] = ACTIONS(3271), - [sym_raw_string_start] = ACTIONS(3271), - }, - [1971] = { - [sym_preproc_region] = STATE(1971), - [sym_preproc_endregion] = STATE(1971), - [sym_preproc_line] = STATE(1971), - [sym_preproc_pragma] = STATE(1971), - [sym_preproc_nullable] = STATE(1971), - [sym_preproc_error] = STATE(1971), - [sym_preproc_warning] = STATE(1971), - [sym_preproc_define] = STATE(1971), - [sym_preproc_undef] = STATE(1971), - [sym__identifier_token] = ACTIONS(3273), - [anon_sym_extern] = ACTIONS(3273), - [anon_sym_alias] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_global] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_unsafe] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_ref] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_delegate] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_file] = ACTIONS(3273), - [anon_sym_fixed] = ACTIONS(3273), - [anon_sym_internal] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_partial] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_required] = ACTIONS(3273), - [anon_sym_sealed] = ACTIONS(3273), - [anon_sym_virtual] = ACTIONS(3273), - [anon_sym_volatile] = ACTIONS(3273), - [anon_sym_where] = ACTIONS(3273), - [anon_sym_notnull] = ACTIONS(3273), - [anon_sym_unmanaged] = ACTIONS(3273), - [anon_sym_checked] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3273), - [anon_sym_false] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_this] = ACTIONS(3273), - [anon_sym_scoped] = ACTIONS(3273), - [anon_sym_base] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [sym_predefined_type] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_unchecked] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_lock] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_when] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_foreach] = ACTIONS(3273), - [anon_sym_goto] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_from] = ACTIONS(3273), - [anon_sym_into] = ACTIONS(3273), - [anon_sym_join] = ACTIONS(3273), - [anon_sym_on] = ACTIONS(3273), - [anon_sym_equals] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_orderby] = ACTIONS(3273), - [anon_sym_ascending] = ACTIONS(3273), - [anon_sym_descending] = ACTIONS(3273), - [anon_sym_group] = ACTIONS(3273), - [anon_sym_by] = ACTIONS(3273), - [anon_sym_select] = ACTIONS(3273), - [anon_sym_stackalloc] = ACTIONS(3273), - [anon_sym_sizeof] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym___makeref] = ACTIONS(3273), - [anon_sym___reftype] = ACTIONS(3273), - [anon_sym___refvalue] = ACTIONS(3273), - [sym_null_literal] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3275), - [sym_integer_literal] = ACTIONS(3273), - [sym_real_literal] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [sym_verbatim_string_literal] = ACTIONS(3275), - [aux_sym_preproc_if_token1] = ACTIONS(3275), - [aux_sym_preproc_if_token3] = ACTIONS(3275), - [aux_sym_preproc_else_token1] = ACTIONS(3275), - [aux_sym_preproc_elif_token1] = ACTIONS(3275), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3275), - [sym_interpolation_verbatim_start] = ACTIONS(3275), - [sym_interpolation_raw_start] = ACTIONS(3275), - [sym_raw_string_start] = ACTIONS(3275), + [sym_interpolation_regular_start] = ACTIONS(3141), + [sym_interpolation_verbatim_start] = ACTIONS(3141), + [sym_interpolation_raw_start] = ACTIONS(3141), + [sym_raw_string_start] = ACTIONS(3141), }, - [1972] = { - [sym_preproc_region] = STATE(1972), - [sym_preproc_endregion] = STATE(1972), - [sym_preproc_line] = STATE(1972), - [sym_preproc_pragma] = STATE(1972), - [sym_preproc_nullable] = STATE(1972), - [sym_preproc_error] = STATE(1972), - [sym_preproc_warning] = STATE(1972), - [sym_preproc_define] = STATE(1972), - [sym_preproc_undef] = STATE(1972), - [sym__identifier_token] = ACTIONS(3279), - [anon_sym_extern] = ACTIONS(3279), - [anon_sym_alias] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_global] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_ref] = ACTIONS(3279), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_delegate] = ACTIONS(3279), - [anon_sym_record] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_file] = ACTIONS(3279), - [anon_sym_fixed] = ACTIONS(3279), - [anon_sym_internal] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_partial] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_required] = ACTIONS(3279), - [anon_sym_sealed] = ACTIONS(3279), - [anon_sym_virtual] = ACTIONS(3279), - [anon_sym_volatile] = ACTIONS(3279), - [anon_sym_where] = ACTIONS(3279), - [anon_sym_notnull] = ACTIONS(3279), - [anon_sym_unmanaged] = ACTIONS(3279), - [anon_sym_checked] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3279), - [anon_sym_false] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_AMP] = ACTIONS(3281), - [anon_sym_this] = ACTIONS(3279), - [anon_sym_scoped] = ACTIONS(3279), - [anon_sym_base] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [sym_predefined_type] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_unchecked] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_when] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_foreach] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_from] = ACTIONS(3279), - [anon_sym_into] = ACTIONS(3279), - [anon_sym_join] = ACTIONS(3279), - [anon_sym_on] = ACTIONS(3279), - [anon_sym_equals] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_orderby] = ACTIONS(3279), - [anon_sym_ascending] = ACTIONS(3279), - [anon_sym_descending] = ACTIONS(3279), - [anon_sym_group] = ACTIONS(3279), - [anon_sym_by] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_stackalloc] = ACTIONS(3279), - [anon_sym_sizeof] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym___makeref] = ACTIONS(3279), - [anon_sym___reftype] = ACTIONS(3279), - [anon_sym___refvalue] = ACTIONS(3279), - [sym_null_literal] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3281), - [sym_integer_literal] = ACTIONS(3279), - [sym_real_literal] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [sym_verbatim_string_literal] = ACTIONS(3281), - [aux_sym_preproc_if_token1] = ACTIONS(3281), - [aux_sym_preproc_if_token3] = ACTIONS(3281), - [aux_sym_preproc_else_token1] = ACTIONS(3281), - [aux_sym_preproc_elif_token1] = ACTIONS(3281), + [1935] = { + [sym_catch_clause] = STATE(1953), + [sym_finally_clause] = STATE(2050), + [sym_preproc_region] = STATE(1935), + [sym_preproc_endregion] = STATE(1935), + [sym_preproc_line] = STATE(1935), + [sym_preproc_pragma] = STATE(1935), + [sym_preproc_nullable] = STATE(1935), + [sym_preproc_error] = STATE(1935), + [sym_preproc_warning] = STATE(1935), + [sym_preproc_define] = STATE(1935), + [sym_preproc_undef] = STATE(1935), + [aux_sym_try_statement_repeat1] = STATE(1936), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym__identifier_token] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym_alias] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_ref] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_interface] = ACTIONS(3121), + [anon_sym_delegate] = ACTIONS(3121), + [anon_sym_record] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_async] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_file] = ACTIONS(3121), + [anon_sym_fixed] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_partial] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_readonly] = ACTIONS(3121), + [anon_sym_required] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_notnull] = ACTIONS(3121), + [anon_sym_unmanaged] = ACTIONS(3121), + [anon_sym_checked] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_scoped] = ACTIONS(3121), + [anon_sym_base] = ACTIONS(3121), + [anon_sym_var] = ACTIONS(3121), + [sym_predefined_type] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_unchecked] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_catch] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(3121), + [anon_sym_finally] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3121), + [anon_sym_foreach] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3121), + [anon_sym_into] = ACTIONS(3121), + [anon_sym_join] = ACTIONS(3121), + [anon_sym_on] = ACTIONS(3121), + [anon_sym_equals] = ACTIONS(3121), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_orderby] = ACTIONS(3121), + [anon_sym_ascending] = ACTIONS(3121), + [anon_sym_descending] = ACTIONS(3121), + [anon_sym_group] = ACTIONS(3121), + [anon_sym_by] = ACTIONS(3121), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_stackalloc] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_typeof] = ACTIONS(3121), + [anon_sym___makeref] = ACTIONS(3121), + [anon_sym___reftype] = ACTIONS(3121), + [anon_sym___refvalue] = ACTIONS(3121), + [sym_null_literal] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_real_literal] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_verbatim_string_literal] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3123), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373463,125 +368710,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3281), - [sym_interpolation_verbatim_start] = ACTIONS(3281), - [sym_interpolation_raw_start] = ACTIONS(3281), - [sym_raw_string_start] = ACTIONS(3281), + [sym_interpolation_regular_start] = ACTIONS(3123), + [sym_interpolation_verbatim_start] = ACTIONS(3123), + [sym_interpolation_raw_start] = ACTIONS(3123), + [sym_raw_string_start] = ACTIONS(3123), }, - [1973] = { - [sym_preproc_region] = STATE(1973), - [sym_preproc_endregion] = STATE(1973), - [sym_preproc_line] = STATE(1973), - [sym_preproc_pragma] = STATE(1973), - [sym_preproc_nullable] = STATE(1973), - [sym_preproc_error] = STATE(1973), - [sym_preproc_warning] = STATE(1973), - [sym_preproc_define] = STATE(1973), - [sym_preproc_undef] = STATE(1973), - [sym__identifier_token] = ACTIONS(3283), - [anon_sym_extern] = ACTIONS(3283), - [anon_sym_alias] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_global] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_ref] = ACTIONS(3283), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_delegate] = ACTIONS(3283), - [anon_sym_record] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_file] = ACTIONS(3283), - [anon_sym_fixed] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_partial] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_sealed] = ACTIONS(3283), - [anon_sym_virtual] = ACTIONS(3283), - [anon_sym_volatile] = ACTIONS(3283), - [anon_sym_where] = ACTIONS(3283), - [anon_sym_notnull] = ACTIONS(3283), - [anon_sym_unmanaged] = ACTIONS(3283), - [anon_sym_checked] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_this] = ACTIONS(3283), - [anon_sym_scoped] = ACTIONS(3283), - [anon_sym_base] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [sym_predefined_type] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_unchecked] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_when] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_foreach] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_DOT_DOT] = ACTIONS(3285), - [anon_sym_from] = ACTIONS(3283), - [anon_sym_into] = ACTIONS(3283), - [anon_sym_join] = ACTIONS(3283), - [anon_sym_on] = ACTIONS(3283), - [anon_sym_equals] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_orderby] = ACTIONS(3283), - [anon_sym_ascending] = ACTIONS(3283), - [anon_sym_descending] = ACTIONS(3283), - [anon_sym_group] = ACTIONS(3283), - [anon_sym_by] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_stackalloc] = ACTIONS(3283), - [anon_sym_sizeof] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym___makeref] = ACTIONS(3283), - [anon_sym___reftype] = ACTIONS(3283), - [anon_sym___refvalue] = ACTIONS(3283), - [sym_null_literal] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3285), - [sym_integer_literal] = ACTIONS(3283), - [sym_real_literal] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [sym_verbatim_string_literal] = ACTIONS(3285), - [aux_sym_preproc_if_token1] = ACTIONS(3285), - [aux_sym_preproc_if_token3] = ACTIONS(3285), - [aux_sym_preproc_else_token1] = ACTIONS(3285), - [aux_sym_preproc_elif_token1] = ACTIONS(3285), + [1936] = { + [sym_catch_clause] = STATE(1953), + [sym_finally_clause] = STATE(2065), + [sym_preproc_region] = STATE(1936), + [sym_preproc_endregion] = STATE(1936), + [sym_preproc_line] = STATE(1936), + [sym_preproc_pragma] = STATE(1936), + [sym_preproc_nullable] = STATE(1936), + [sym_preproc_error] = STATE(1936), + [sym_preproc_warning] = STATE(1936), + [sym_preproc_define] = STATE(1936), + [sym_preproc_undef] = STATE(1936), + [aux_sym_try_statement_repeat1] = STATE(1939), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_record] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_catch] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373592,125 +368842,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3285), - [sym_interpolation_verbatim_start] = ACTIONS(3285), - [sym_interpolation_raw_start] = ACTIONS(3285), - [sym_raw_string_start] = ACTIONS(3285), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), }, - [1974] = { - [sym_preproc_region] = STATE(1974), - [sym_preproc_endregion] = STATE(1974), - [sym_preproc_line] = STATE(1974), - [sym_preproc_pragma] = STATE(1974), - [sym_preproc_nullable] = STATE(1974), - [sym_preproc_error] = STATE(1974), - [sym_preproc_warning] = STATE(1974), - [sym_preproc_define] = STATE(1974), - [sym_preproc_undef] = STATE(1974), - [sym__identifier_token] = ACTIONS(3287), - [anon_sym_extern] = ACTIONS(3287), - [anon_sym_alias] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_global] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_ref] = ACTIONS(3287), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_delegate] = ACTIONS(3287), - [anon_sym_record] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_file] = ACTIONS(3287), - [anon_sym_fixed] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_partial] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_sealed] = ACTIONS(3287), - [anon_sym_virtual] = ACTIONS(3287), - [anon_sym_volatile] = ACTIONS(3287), - [anon_sym_where] = ACTIONS(3287), - [anon_sym_notnull] = ACTIONS(3287), - [anon_sym_unmanaged] = ACTIONS(3287), - [anon_sym_checked] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [anon_sym_true] = ACTIONS(3287), - [anon_sym_false] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_this] = ACTIONS(3287), - [anon_sym_scoped] = ACTIONS(3287), - [anon_sym_base] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [sym_predefined_type] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_unchecked] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_when] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_foreach] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_DOT_DOT] = ACTIONS(3289), - [anon_sym_from] = ACTIONS(3287), - [anon_sym_into] = ACTIONS(3287), - [anon_sym_join] = ACTIONS(3287), - [anon_sym_on] = ACTIONS(3287), - [anon_sym_equals] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_orderby] = ACTIONS(3287), - [anon_sym_ascending] = ACTIONS(3287), - [anon_sym_descending] = ACTIONS(3287), - [anon_sym_group] = ACTIONS(3287), - [anon_sym_by] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_stackalloc] = ACTIONS(3287), - [anon_sym_sizeof] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym___makeref] = ACTIONS(3287), - [anon_sym___reftype] = ACTIONS(3287), - [anon_sym___refvalue] = ACTIONS(3287), - [sym_null_literal] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3289), - [sym_integer_literal] = ACTIONS(3287), - [sym_real_literal] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [sym_verbatim_string_literal] = ACTIONS(3289), - [aux_sym_preproc_if_token1] = ACTIONS(3289), - [aux_sym_preproc_if_token3] = ACTIONS(3289), - [aux_sym_preproc_else_token1] = ACTIONS(3289), - [aux_sym_preproc_elif_token1] = ACTIONS(3289), + [1937] = { + [sym_preproc_region] = STATE(1937), + [sym_preproc_endregion] = STATE(1937), + [sym_preproc_line] = STATE(1937), + [sym_preproc_pragma] = STATE(1937), + [sym_preproc_nullable] = STATE(1937), + [sym_preproc_error] = STATE(1937), + [sym_preproc_warning] = STATE(1937), + [sym_preproc_define] = STATE(1937), + [sym_preproc_undef] = STATE(1937), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_record] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_catch] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_finally] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373721,125 +368973,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3289), - [sym_interpolation_verbatim_start] = ACTIONS(3289), - [sym_interpolation_raw_start] = ACTIONS(3289), - [sym_raw_string_start] = ACTIONS(3289), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), }, - [1975] = { - [sym_preproc_region] = STATE(1975), - [sym_preproc_endregion] = STATE(1975), - [sym_preproc_line] = STATE(1975), - [sym_preproc_pragma] = STATE(1975), - [sym_preproc_nullable] = STATE(1975), - [sym_preproc_error] = STATE(1975), - [sym_preproc_warning] = STATE(1975), - [sym_preproc_define] = STATE(1975), - [sym_preproc_undef] = STATE(1975), - [sym__identifier_token] = ACTIONS(3291), - [anon_sym_extern] = ACTIONS(3291), - [anon_sym_alias] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_global] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_ref] = ACTIONS(3291), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_delegate] = ACTIONS(3291), - [anon_sym_record] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_file] = ACTIONS(3291), - [anon_sym_fixed] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_partial] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_sealed] = ACTIONS(3291), - [anon_sym_virtual] = ACTIONS(3291), - [anon_sym_volatile] = ACTIONS(3291), - [anon_sym_where] = ACTIONS(3291), - [anon_sym_notnull] = ACTIONS(3291), - [anon_sym_unmanaged] = ACTIONS(3291), - [anon_sym_checked] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_CARET] = ACTIONS(3293), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_this] = ACTIONS(3291), - [anon_sym_scoped] = ACTIONS(3291), - [anon_sym_base] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [sym_predefined_type] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_unchecked] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_when] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_foreach] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [anon_sym_from] = ACTIONS(3291), - [anon_sym_into] = ACTIONS(3291), - [anon_sym_join] = ACTIONS(3291), - [anon_sym_on] = ACTIONS(3291), - [anon_sym_equals] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_orderby] = ACTIONS(3291), - [anon_sym_ascending] = ACTIONS(3291), - [anon_sym_descending] = ACTIONS(3291), - [anon_sym_group] = ACTIONS(3291), - [anon_sym_by] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_stackalloc] = ACTIONS(3291), - [anon_sym_sizeof] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym___makeref] = ACTIONS(3291), - [anon_sym___reftype] = ACTIONS(3291), - [anon_sym___refvalue] = ACTIONS(3291), - [sym_null_literal] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3293), - [sym_integer_literal] = ACTIONS(3291), - [sym_real_literal] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [sym_verbatim_string_literal] = ACTIONS(3293), - [aux_sym_preproc_if_token1] = ACTIONS(3293), - [aux_sym_preproc_if_token3] = ACTIONS(3293), - [aux_sym_preproc_else_token1] = ACTIONS(3293), - [aux_sym_preproc_elif_token1] = ACTIONS(3293), + [1938] = { + [sym_preproc_region] = STATE(1938), + [sym_preproc_endregion] = STATE(1938), + [sym_preproc_line] = STATE(1938), + [sym_preproc_pragma] = STATE(1938), + [sym_preproc_nullable] = STATE(1938), + [sym_preproc_error] = STATE(1938), + [sym_preproc_warning] = STATE(1938), + [sym_preproc_define] = STATE(1938), + [sym_preproc_undef] = STATE(1938), + [sym__identifier_token] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym_alias] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_global] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_ref] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_delegate] = ACTIONS(3150), + [anon_sym_record] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_file] = ACTIONS(3150), + [anon_sym_fixed] = ACTIONS(3150), + [anon_sym_internal] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_partial] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_required] = ACTIONS(3150), + [anon_sym_sealed] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_where] = ACTIONS(3150), + [anon_sym_notnull] = ACTIONS(3150), + [anon_sym_unmanaged] = ACTIONS(3150), + [anon_sym_checked] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3150), + [anon_sym_false] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3150), + [anon_sym_scoped] = ACTIONS(3150), + [anon_sym_base] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [sym_predefined_type] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_unchecked] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_catch] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(3150), + [anon_sym_finally] = ACTIONS(3150), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_foreach] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_DOT_DOT] = ACTIONS(3152), + [anon_sym_from] = ACTIONS(3150), + [anon_sym_into] = ACTIONS(3150), + [anon_sym_join] = ACTIONS(3150), + [anon_sym_on] = ACTIONS(3150), + [anon_sym_equals] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_orderby] = ACTIONS(3150), + [anon_sym_ascending] = ACTIONS(3150), + [anon_sym_descending] = ACTIONS(3150), + [anon_sym_group] = ACTIONS(3150), + [anon_sym_by] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_stackalloc] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym___makeref] = ACTIONS(3150), + [anon_sym___reftype] = ACTIONS(3150), + [anon_sym___refvalue] = ACTIONS(3150), + [sym_null_literal] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_verbatim_string_literal] = ACTIONS(3152), + [aux_sym_preproc_if_token1] = ACTIONS(3152), + [aux_sym_preproc_if_token3] = ACTIONS(3152), + [aux_sym_preproc_else_token1] = ACTIONS(3152), + [aux_sym_preproc_elif_token1] = ACTIONS(3152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373847,128 +369101,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3293), - [sym_interpolation_verbatim_start] = ACTIONS(3293), - [sym_interpolation_raw_start] = ACTIONS(3293), - [sym_raw_string_start] = ACTIONS(3293), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3152), + [sym_interpolation_verbatim_start] = ACTIONS(3152), + [sym_interpolation_raw_start] = ACTIONS(3152), + [sym_raw_string_start] = ACTIONS(3152), }, - [1976] = { - [sym_preproc_region] = STATE(1976), - [sym_preproc_endregion] = STATE(1976), - [sym_preproc_line] = STATE(1976), - [sym_preproc_pragma] = STATE(1976), - [sym_preproc_nullable] = STATE(1976), - [sym_preproc_error] = STATE(1976), - [sym_preproc_warning] = STATE(1976), - [sym_preproc_define] = STATE(1976), - [sym_preproc_undef] = STATE(1976), - [sym__identifier_token] = ACTIONS(3295), - [anon_sym_extern] = ACTIONS(3295), - [anon_sym_alias] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_global] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_ref] = ACTIONS(3295), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_delegate] = ACTIONS(3295), - [anon_sym_record] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_file] = ACTIONS(3295), - [anon_sym_fixed] = ACTIONS(3295), - [anon_sym_internal] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_partial] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_required] = ACTIONS(3295), - [anon_sym_sealed] = ACTIONS(3295), - [anon_sym_virtual] = ACTIONS(3295), - [anon_sym_volatile] = ACTIONS(3295), - [anon_sym_where] = ACTIONS(3295), - [anon_sym_notnull] = ACTIONS(3295), - [anon_sym_unmanaged] = ACTIONS(3295), - [anon_sym_checked] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3295), - [anon_sym_false] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [anon_sym_this] = ACTIONS(3295), - [anon_sym_scoped] = ACTIONS(3295), - [anon_sym_base] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [sym_predefined_type] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_unchecked] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_when] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_foreach] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_DOT_DOT] = ACTIONS(3297), - [anon_sym_from] = ACTIONS(3295), - [anon_sym_into] = ACTIONS(3295), - [anon_sym_join] = ACTIONS(3295), - [anon_sym_on] = ACTIONS(3295), - [anon_sym_equals] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_orderby] = ACTIONS(3295), - [anon_sym_ascending] = ACTIONS(3295), - [anon_sym_descending] = ACTIONS(3295), - [anon_sym_group] = ACTIONS(3295), - [anon_sym_by] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_stackalloc] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym___makeref] = ACTIONS(3295), - [anon_sym___reftype] = ACTIONS(3295), - [anon_sym___refvalue] = ACTIONS(3295), - [sym_null_literal] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3297), - [sym_integer_literal] = ACTIONS(3295), - [sym_real_literal] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_verbatim_string_literal] = ACTIONS(3297), - [aux_sym_preproc_if_token1] = ACTIONS(3297), - [aux_sym_preproc_if_token3] = ACTIONS(3297), - [aux_sym_preproc_else_token1] = ACTIONS(3297), - [aux_sym_preproc_elif_token1] = ACTIONS(3297), + [1939] = { + [sym_catch_clause] = STATE(1953), + [sym_preproc_region] = STATE(1939), + [sym_preproc_endregion] = STATE(1939), + [sym_preproc_line] = STATE(1939), + [sym_preproc_pragma] = STATE(1939), + [sym_preproc_nullable] = STATE(1939), + [sym_preproc_error] = STATE(1939), + [sym_preproc_warning] = STATE(1939), + [sym_preproc_define] = STATE(1939), + [sym_preproc_undef] = STATE(1939), + [aux_sym_try_statement_repeat1] = STATE(1939), + [ts_builtin_sym_end] = ACTIONS(3141), + [sym__identifier_token] = ACTIONS(3139), + [anon_sym_extern] = ACTIONS(3139), + [anon_sym_alias] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_unsafe] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_ref] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_delegate] = ACTIONS(3139), + [anon_sym_record] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_file] = ACTIONS(3139), + [anon_sym_fixed] = ACTIONS(3139), + [anon_sym_internal] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_partial] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_required] = ACTIONS(3139), + [anon_sym_sealed] = ACTIONS(3139), + [anon_sym_virtual] = ACTIONS(3139), + [anon_sym_volatile] = ACTIONS(3139), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_notnull] = ACTIONS(3139), + [anon_sym_unmanaged] = ACTIONS(3139), + [anon_sym_checked] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(3139), + [anon_sym_false] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_this] = ACTIONS(3139), + [anon_sym_scoped] = ACTIONS(3139), + [anon_sym_base] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [sym_predefined_type] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_unchecked] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_lock] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_catch] = ACTIONS(3154), + [anon_sym_when] = ACTIONS(3139), + [anon_sym_finally] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_foreach] = ACTIONS(3139), + [anon_sym_goto] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3139), + [anon_sym_into] = ACTIONS(3139), + [anon_sym_join] = ACTIONS(3139), + [anon_sym_on] = ACTIONS(3139), + [anon_sym_equals] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_orderby] = ACTIONS(3139), + [anon_sym_ascending] = ACTIONS(3139), + [anon_sym_descending] = ACTIONS(3139), + [anon_sym_group] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_select] = ACTIONS(3139), + [anon_sym_stackalloc] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym___makeref] = ACTIONS(3139), + [anon_sym___reftype] = ACTIONS(3139), + [anon_sym___refvalue] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3141), + [sym_integer_literal] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym_verbatim_string_literal] = ACTIONS(3141), + [aux_sym_preproc_if_token1] = ACTIONS(3141), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373979,125 +369235,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3297), - [sym_interpolation_verbatim_start] = ACTIONS(3297), - [sym_interpolation_raw_start] = ACTIONS(3297), - [sym_raw_string_start] = ACTIONS(3297), + [sym_interpolation_regular_start] = ACTIONS(3141), + [sym_interpolation_verbatim_start] = ACTIONS(3141), + [sym_interpolation_raw_start] = ACTIONS(3141), + [sym_raw_string_start] = ACTIONS(3141), }, - [1977] = { - [sym_preproc_region] = STATE(1977), - [sym_preproc_endregion] = STATE(1977), - [sym_preproc_line] = STATE(1977), - [sym_preproc_pragma] = STATE(1977), - [sym_preproc_nullable] = STATE(1977), - [sym_preproc_error] = STATE(1977), - [sym_preproc_warning] = STATE(1977), - [sym_preproc_define] = STATE(1977), - [sym_preproc_undef] = STATE(1977), - [sym__identifier_token] = ACTIONS(3299), - [anon_sym_extern] = ACTIONS(3299), - [anon_sym_alias] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_global] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_ref] = ACTIONS(3299), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_delegate] = ACTIONS(3299), - [anon_sym_record] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_file] = ACTIONS(3299), - [anon_sym_fixed] = ACTIONS(3299), - [anon_sym_internal] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_partial] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_required] = ACTIONS(3299), - [anon_sym_sealed] = ACTIONS(3299), - [anon_sym_virtual] = ACTIONS(3299), - [anon_sym_volatile] = ACTIONS(3299), - [anon_sym_where] = ACTIONS(3299), - [anon_sym_notnull] = ACTIONS(3299), - [anon_sym_unmanaged] = ACTIONS(3299), - [anon_sym_checked] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_this] = ACTIONS(3299), - [anon_sym_scoped] = ACTIONS(3299), - [anon_sym_base] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [sym_predefined_type] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_unchecked] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_when] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_foreach] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_DOT_DOT] = ACTIONS(3301), - [anon_sym_from] = ACTIONS(3299), - [anon_sym_into] = ACTIONS(3299), - [anon_sym_join] = ACTIONS(3299), - [anon_sym_on] = ACTIONS(3299), - [anon_sym_equals] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_orderby] = ACTIONS(3299), - [anon_sym_ascending] = ACTIONS(3299), - [anon_sym_descending] = ACTIONS(3299), - [anon_sym_group] = ACTIONS(3299), - [anon_sym_by] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_stackalloc] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym___makeref] = ACTIONS(3299), - [anon_sym___reftype] = ACTIONS(3299), - [anon_sym___refvalue] = ACTIONS(3299), - [sym_null_literal] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3301), - [sym_integer_literal] = ACTIONS(3299), - [sym_real_literal] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [sym_verbatim_string_literal] = ACTIONS(3301), - [aux_sym_preproc_if_token1] = ACTIONS(3301), - [aux_sym_preproc_if_token3] = ACTIONS(3301), - [aux_sym_preproc_else_token1] = ACTIONS(3301), - [aux_sym_preproc_elif_token1] = ACTIONS(3301), + [1940] = { + [sym_preproc_region] = STATE(1940), + [sym_preproc_endregion] = STATE(1940), + [sym_preproc_line] = STATE(1940), + [sym_preproc_pragma] = STATE(1940), + [sym_preproc_nullable] = STATE(1940), + [sym_preproc_error] = STATE(1940), + [sym_preproc_warning] = STATE(1940), + [sym_preproc_define] = STATE(1940), + [sym_preproc_undef] = STATE(1940), + [sym__identifier_token] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym_alias] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_ref] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_delegate] = ACTIONS(3157), + [anon_sym_record] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_file] = ACTIONS(3157), + [anon_sym_fixed] = ACTIONS(3157), + [anon_sym_internal] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_partial] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_required] = ACTIONS(3157), + [anon_sym_sealed] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_where] = ACTIONS(3157), + [anon_sym_notnull] = ACTIONS(3157), + [anon_sym_unmanaged] = ACTIONS(3157), + [anon_sym_checked] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3157), + [anon_sym_false] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_this] = ACTIONS(3157), + [anon_sym_scoped] = ACTIONS(3157), + [anon_sym_base] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [sym_predefined_type] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_unchecked] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_when] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_foreach] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_DOT_DOT] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3157), + [anon_sym_into] = ACTIONS(3157), + [anon_sym_join] = ACTIONS(3157), + [anon_sym_on] = ACTIONS(3157), + [anon_sym_equals] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_orderby] = ACTIONS(3157), + [anon_sym_ascending] = ACTIONS(3157), + [anon_sym_descending] = ACTIONS(3157), + [anon_sym_group] = ACTIONS(3157), + [anon_sym_by] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_stackalloc] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym___makeref] = ACTIONS(3157), + [anon_sym___reftype] = ACTIONS(3157), + [anon_sym___refvalue] = ACTIONS(3157), + [sym_null_literal] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3159), + [sym_integer_literal] = ACTIONS(3157), + [sym_real_literal] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [sym_verbatim_string_literal] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token3] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374108,125 +369366,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3301), - [sym_interpolation_verbatim_start] = ACTIONS(3301), - [sym_interpolation_raw_start] = ACTIONS(3301), - [sym_raw_string_start] = ACTIONS(3301), + [sym_interpolation_regular_start] = ACTIONS(3159), + [sym_interpolation_verbatim_start] = ACTIONS(3159), + [sym_interpolation_raw_start] = ACTIONS(3159), + [sym_raw_string_start] = ACTIONS(3159), }, - [1978] = { - [sym_preproc_region] = STATE(1978), - [sym_preproc_endregion] = STATE(1978), - [sym_preproc_line] = STATE(1978), - [sym_preproc_pragma] = STATE(1978), - [sym_preproc_nullable] = STATE(1978), - [sym_preproc_error] = STATE(1978), - [sym_preproc_warning] = STATE(1978), - [sym_preproc_define] = STATE(1978), - [sym_preproc_undef] = STATE(1978), - [sym__identifier_token] = ACTIONS(3303), - [anon_sym_extern] = ACTIONS(3303), - [anon_sym_alias] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_global] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_ref] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_delegate] = ACTIONS(3303), - [anon_sym_record] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_file] = ACTIONS(3303), - [anon_sym_fixed] = ACTIONS(3303), - [anon_sym_internal] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_partial] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_required] = ACTIONS(3303), - [anon_sym_sealed] = ACTIONS(3303), - [anon_sym_virtual] = ACTIONS(3303), - [anon_sym_volatile] = ACTIONS(3303), - [anon_sym_where] = ACTIONS(3303), - [anon_sym_notnull] = ACTIONS(3303), - [anon_sym_unmanaged] = ACTIONS(3303), - [anon_sym_checked] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_true] = ACTIONS(3303), - [anon_sym_false] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_this] = ACTIONS(3303), - [anon_sym_scoped] = ACTIONS(3303), - [anon_sym_base] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [sym_predefined_type] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_unchecked] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_when] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_foreach] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3305), - [anon_sym_from] = ACTIONS(3303), - [anon_sym_into] = ACTIONS(3303), - [anon_sym_join] = ACTIONS(3303), - [anon_sym_on] = ACTIONS(3303), - [anon_sym_equals] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_orderby] = ACTIONS(3303), - [anon_sym_ascending] = ACTIONS(3303), - [anon_sym_descending] = ACTIONS(3303), - [anon_sym_group] = ACTIONS(3303), - [anon_sym_by] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_stackalloc] = ACTIONS(3303), - [anon_sym_sizeof] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym___makeref] = ACTIONS(3303), - [anon_sym___reftype] = ACTIONS(3303), - [anon_sym___refvalue] = ACTIONS(3303), - [sym_null_literal] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3305), - [sym_integer_literal] = ACTIONS(3303), - [sym_real_literal] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_verbatim_string_literal] = ACTIONS(3305), - [aux_sym_preproc_if_token1] = ACTIONS(3305), - [aux_sym_preproc_if_token3] = ACTIONS(3305), - [aux_sym_preproc_else_token1] = ACTIONS(3305), - [aux_sym_preproc_elif_token1] = ACTIONS(3305), + [1941] = { + [sym_preproc_region] = STATE(1941), + [sym_preproc_endregion] = STATE(1941), + [sym_preproc_line] = STATE(1941), + [sym_preproc_pragma] = STATE(1941), + [sym_preproc_nullable] = STATE(1941), + [sym_preproc_error] = STATE(1941), + [sym_preproc_warning] = STATE(1941), + [sym_preproc_define] = STATE(1941), + [sym_preproc_undef] = STATE(1941), + [sym__identifier_token] = ACTIONS(3161), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym_alias] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_ref] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_delegate] = ACTIONS(3161), + [anon_sym_record] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_file] = ACTIONS(3161), + [anon_sym_fixed] = ACTIONS(3161), + [anon_sym_internal] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_partial] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_required] = ACTIONS(3161), + [anon_sym_sealed] = ACTIONS(3161), + [anon_sym_virtual] = ACTIONS(3161), + [anon_sym_volatile] = ACTIONS(3161), + [anon_sym_where] = ACTIONS(3161), + [anon_sym_notnull] = ACTIONS(3161), + [anon_sym_unmanaged] = ACTIONS(3161), + [anon_sym_checked] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3161), + [anon_sym_false] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_this] = ACTIONS(3161), + [anon_sym_scoped] = ACTIONS(3161), + [anon_sym_base] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [sym_predefined_type] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_unchecked] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_catch] = ACTIONS(3161), + [anon_sym_when] = ACTIONS(3161), + [anon_sym_finally] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_foreach] = ACTIONS(3161), + [anon_sym_goto] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_DOT_DOT] = ACTIONS(3163), + [anon_sym_from] = ACTIONS(3161), + [anon_sym_into] = ACTIONS(3161), + [anon_sym_join] = ACTIONS(3161), + [anon_sym_on] = ACTIONS(3161), + [anon_sym_equals] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_orderby] = ACTIONS(3161), + [anon_sym_ascending] = ACTIONS(3161), + [anon_sym_descending] = ACTIONS(3161), + [anon_sym_group] = ACTIONS(3161), + [anon_sym_by] = ACTIONS(3161), + [anon_sym_select] = ACTIONS(3161), + [anon_sym_stackalloc] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym___makeref] = ACTIONS(3161), + [anon_sym___reftype] = ACTIONS(3161), + [anon_sym___refvalue] = ACTIONS(3161), + [sym_null_literal] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3163), + [sym_integer_literal] = ACTIONS(3161), + [sym_real_literal] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [sym_verbatim_string_literal] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token3] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374237,22 +369497,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3305), - [sym_interpolation_verbatim_start] = ACTIONS(3305), - [sym_interpolation_raw_start] = ACTIONS(3305), - [sym_raw_string_start] = ACTIONS(3305), + [sym_interpolation_regular_start] = ACTIONS(3163), + [sym_interpolation_verbatim_start] = ACTIONS(3163), + [sym_interpolation_raw_start] = ACTIONS(3163), + [sym_raw_string_start] = ACTIONS(3163), }, - [1979] = { - [sym_preproc_region] = STATE(1979), - [sym_preproc_endregion] = STATE(1979), - [sym_preproc_line] = STATE(1979), - [sym_preproc_pragma] = STATE(1979), - [sym_preproc_nullable] = STATE(1979), - [sym_preproc_error] = STATE(1979), - [sym_preproc_warning] = STATE(1979), - [sym_preproc_define] = STATE(1979), - [sym_preproc_undef] = STATE(1979), - [ts_builtin_sym_end] = ACTIONS(3167), + [1942] = { + [sym_preproc_region] = STATE(1942), + [sym_preproc_endregion] = STATE(1942), + [sym_preproc_line] = STATE(1942), + [sym_preproc_pragma] = STATE(1942), + [sym_preproc_nullable] = STATE(1942), + [sym_preproc_error] = STATE(1942), + [sym_preproc_warning] = STATE(1942), + [sym_preproc_define] = STATE(1942), + [sym_preproc_undef] = STATE(1942), [sym__identifier_token] = ACTIONS(3165), [anon_sym_extern] = ACTIONS(3165), [anon_sym_alias] = ACTIONS(3165), @@ -374356,6 +369615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3167), [sym_verbatim_string_literal] = ACTIONS(3167), [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374371,249 +369633,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3167), [sym_raw_string_start] = ACTIONS(3167), }, - [1980] = { - [sym_preproc_region] = STATE(1980), - [sym_preproc_endregion] = STATE(1980), - [sym_preproc_line] = STATE(1980), - [sym_preproc_pragma] = STATE(1980), - [sym_preproc_nullable] = STATE(1980), - [sym_preproc_error] = STATE(1980), - [sym_preproc_warning] = STATE(1980), - [sym_preproc_define] = STATE(1980), - [sym_preproc_undef] = STATE(1980), - [sym__identifier_token] = ACTIONS(3307), - [anon_sym_extern] = ACTIONS(3307), - [anon_sym_alias] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_global] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_ref] = ACTIONS(3307), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_delegate] = ACTIONS(3307), - [anon_sym_record] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_file] = ACTIONS(3307), - [anon_sym_fixed] = ACTIONS(3307), - [anon_sym_internal] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_partial] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_required] = ACTIONS(3307), - [anon_sym_sealed] = ACTIONS(3307), - [anon_sym_virtual] = ACTIONS(3307), - [anon_sym_volatile] = ACTIONS(3307), - [anon_sym_where] = ACTIONS(3307), - [anon_sym_notnull] = ACTIONS(3307), - [anon_sym_unmanaged] = ACTIONS(3307), - [anon_sym_checked] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3309), - [anon_sym_CARET] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_this] = ACTIONS(3307), - [anon_sym_scoped] = ACTIONS(3307), - [anon_sym_base] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [sym_predefined_type] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_unchecked] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_when] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_foreach] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3307), - [anon_sym_into] = ACTIONS(3307), - [anon_sym_join] = ACTIONS(3307), - [anon_sym_on] = ACTIONS(3307), - [anon_sym_equals] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_orderby] = ACTIONS(3307), - [anon_sym_ascending] = ACTIONS(3307), - [anon_sym_descending] = ACTIONS(3307), - [anon_sym_group] = ACTIONS(3307), - [anon_sym_by] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_stackalloc] = ACTIONS(3307), - [anon_sym_sizeof] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym___makeref] = ACTIONS(3307), - [anon_sym___reftype] = ACTIONS(3307), - [anon_sym___refvalue] = ACTIONS(3307), - [sym_null_literal] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3309), - [sym_integer_literal] = ACTIONS(3307), - [sym_real_literal] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_verbatim_string_literal] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token3] = ACTIONS(3309), - [aux_sym_preproc_else_token1] = ACTIONS(3309), - [aux_sym_preproc_elif_token1] = ACTIONS(3309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3309), - [sym_interpolation_verbatim_start] = ACTIONS(3309), - [sym_interpolation_raw_start] = ACTIONS(3309), - [sym_raw_string_start] = ACTIONS(3309), - }, - [1981] = { - [sym_preproc_region] = STATE(1981), - [sym_preproc_endregion] = STATE(1981), - [sym_preproc_line] = STATE(1981), - [sym_preproc_pragma] = STATE(1981), - [sym_preproc_nullable] = STATE(1981), - [sym_preproc_error] = STATE(1981), - [sym_preproc_warning] = STATE(1981), - [sym_preproc_define] = STATE(1981), - [sym_preproc_undef] = STATE(1981), - [sym__identifier_token] = ACTIONS(3311), - [anon_sym_extern] = ACTIONS(3311), - [anon_sym_alias] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_global] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_ref] = ACTIONS(3311), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_delegate] = ACTIONS(3311), - [anon_sym_record] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_file] = ACTIONS(3311), - [anon_sym_fixed] = ACTIONS(3311), - [anon_sym_internal] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_partial] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_required] = ACTIONS(3311), - [anon_sym_sealed] = ACTIONS(3311), - [anon_sym_virtual] = ACTIONS(3311), - [anon_sym_volatile] = ACTIONS(3311), - [anon_sym_where] = ACTIONS(3311), - [anon_sym_notnull] = ACTIONS(3311), - [anon_sym_unmanaged] = ACTIONS(3311), - [anon_sym_checked] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3311), - [anon_sym_false] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_this] = ACTIONS(3311), - [anon_sym_scoped] = ACTIONS(3311), - [anon_sym_base] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [sym_predefined_type] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_unchecked] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_when] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_foreach] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_DOT_DOT] = ACTIONS(3313), - [anon_sym_from] = ACTIONS(3311), - [anon_sym_into] = ACTIONS(3311), - [anon_sym_join] = ACTIONS(3311), - [anon_sym_on] = ACTIONS(3311), - [anon_sym_equals] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_orderby] = ACTIONS(3311), - [anon_sym_ascending] = ACTIONS(3311), - [anon_sym_descending] = ACTIONS(3311), - [anon_sym_group] = ACTIONS(3311), - [anon_sym_by] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_stackalloc] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym___makeref] = ACTIONS(3311), - [anon_sym___reftype] = ACTIONS(3311), - [anon_sym___refvalue] = ACTIONS(3311), - [sym_null_literal] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3313), - [sym_integer_literal] = ACTIONS(3311), - [sym_real_literal] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [sym_verbatim_string_literal] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), - [aux_sym_preproc_if_token3] = ACTIONS(3313), - [aux_sym_preproc_else_token1] = ACTIONS(3313), - [aux_sym_preproc_elif_token1] = ACTIONS(3313), + [1943] = { + [sym_preproc_region] = STATE(1943), + [sym_preproc_endregion] = STATE(1943), + [sym_preproc_line] = STATE(1943), + [sym_preproc_pragma] = STATE(1943), + [sym_preproc_nullable] = STATE(1943), + [sym_preproc_error] = STATE(1943), + [sym_preproc_warning] = STATE(1943), + [sym_preproc_define] = STATE(1943), + [sym_preproc_undef] = STATE(1943), + [sym__identifier_token] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym_alias] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_ref] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_delegate] = ACTIONS(3169), + [anon_sym_record] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_file] = ACTIONS(3169), + [anon_sym_fixed] = ACTIONS(3169), + [anon_sym_internal] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_partial] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_required] = ACTIONS(3169), + [anon_sym_sealed] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_where] = ACTIONS(3169), + [anon_sym_notnull] = ACTIONS(3169), + [anon_sym_unmanaged] = ACTIONS(3169), + [anon_sym_checked] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_true] = ACTIONS(3169), + [anon_sym_false] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_this] = ACTIONS(3169), + [anon_sym_scoped] = ACTIONS(3169), + [anon_sym_base] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [sym_predefined_type] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_unchecked] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_lock] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_when] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_foreach] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_DOT_DOT] = ACTIONS(3171), + [anon_sym_from] = ACTIONS(3169), + [anon_sym_into] = ACTIONS(3169), + [anon_sym_join] = ACTIONS(3169), + [anon_sym_on] = ACTIONS(3169), + [anon_sym_equals] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_orderby] = ACTIONS(3169), + [anon_sym_ascending] = ACTIONS(3169), + [anon_sym_descending] = ACTIONS(3169), + [anon_sym_group] = ACTIONS(3169), + [anon_sym_by] = ACTIONS(3169), + [anon_sym_select] = ACTIONS(3169), + [anon_sym_stackalloc] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym___makeref] = ACTIONS(3169), + [anon_sym___reftype] = ACTIONS(3169), + [anon_sym___refvalue] = ACTIONS(3169), + [sym_null_literal] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3171), + [sym_integer_literal] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_verbatim_string_literal] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token3] = ACTIONS(3171), + [aux_sym_preproc_else_token1] = ACTIONS(3171), + [aux_sym_preproc_elif_token1] = ACTIONS(3171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374624,125 +369757,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3313), - [sym_interpolation_verbatim_start] = ACTIONS(3313), - [sym_interpolation_raw_start] = ACTIONS(3313), - [sym_raw_string_start] = ACTIONS(3313), + [sym_interpolation_regular_start] = ACTIONS(3171), + [sym_interpolation_verbatim_start] = ACTIONS(3171), + [sym_interpolation_raw_start] = ACTIONS(3171), + [sym_raw_string_start] = ACTIONS(3171), }, - [1982] = { - [sym_preproc_region] = STATE(1982), - [sym_preproc_endregion] = STATE(1982), - [sym_preproc_line] = STATE(1982), - [sym_preproc_pragma] = STATE(1982), - [sym_preproc_nullable] = STATE(1982), - [sym_preproc_error] = STATE(1982), - [sym_preproc_warning] = STATE(1982), - [sym_preproc_define] = STATE(1982), - [sym_preproc_undef] = STATE(1982), - [sym__identifier_token] = ACTIONS(3315), - [anon_sym_extern] = ACTIONS(3315), - [anon_sym_alias] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_global] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_ref] = ACTIONS(3315), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_delegate] = ACTIONS(3315), - [anon_sym_record] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_file] = ACTIONS(3315), - [anon_sym_fixed] = ACTIONS(3315), - [anon_sym_internal] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_partial] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_required] = ACTIONS(3315), - [anon_sym_sealed] = ACTIONS(3315), - [anon_sym_virtual] = ACTIONS(3315), - [anon_sym_volatile] = ACTIONS(3315), - [anon_sym_where] = ACTIONS(3315), - [anon_sym_notnull] = ACTIONS(3315), - [anon_sym_unmanaged] = ACTIONS(3315), - [anon_sym_checked] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3315), - [anon_sym_false] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_this] = ACTIONS(3315), - [anon_sym_scoped] = ACTIONS(3315), - [anon_sym_base] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [sym_predefined_type] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_unchecked] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_when] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_foreach] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_from] = ACTIONS(3315), - [anon_sym_into] = ACTIONS(3315), - [anon_sym_join] = ACTIONS(3315), - [anon_sym_on] = ACTIONS(3315), - [anon_sym_equals] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_orderby] = ACTIONS(3315), - [anon_sym_ascending] = ACTIONS(3315), - [anon_sym_descending] = ACTIONS(3315), - [anon_sym_group] = ACTIONS(3315), - [anon_sym_by] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_stackalloc] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym___makeref] = ACTIONS(3315), - [anon_sym___reftype] = ACTIONS(3315), - [anon_sym___refvalue] = ACTIONS(3315), - [sym_null_literal] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3317), - [sym_integer_literal] = ACTIONS(3315), - [sym_real_literal] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [sym_verbatim_string_literal] = ACTIONS(3317), - [aux_sym_preproc_if_token1] = ACTIONS(3317), - [aux_sym_preproc_if_token3] = ACTIONS(3317), - [aux_sym_preproc_else_token1] = ACTIONS(3317), - [aux_sym_preproc_elif_token1] = ACTIONS(3317), + [1944] = { + [sym_preproc_region] = STATE(1944), + [sym_preproc_endregion] = STATE(1944), + [sym_preproc_line] = STATE(1944), + [sym_preproc_pragma] = STATE(1944), + [sym_preproc_nullable] = STATE(1944), + [sym_preproc_error] = STATE(1944), + [sym_preproc_warning] = STATE(1944), + [sym_preproc_define] = STATE(1944), + [sym_preproc_undef] = STATE(1944), + [sym__identifier_token] = ACTIONS(3173), + [anon_sym_extern] = ACTIONS(3173), + [anon_sym_alias] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_delegate] = ACTIONS(3173), + [anon_sym_record] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_file] = ACTIONS(3173), + [anon_sym_fixed] = ACTIONS(3173), + [anon_sym_internal] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_partial] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_required] = ACTIONS(3173), + [anon_sym_sealed] = ACTIONS(3173), + [anon_sym_virtual] = ACTIONS(3173), + [anon_sym_volatile] = ACTIONS(3173), + [anon_sym_where] = ACTIONS(3173), + [anon_sym_notnull] = ACTIONS(3173), + [anon_sym_unmanaged] = ACTIONS(3173), + [anon_sym_checked] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3173), + [anon_sym_scoped] = ACTIONS(3173), + [anon_sym_base] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [sym_predefined_type] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_unchecked] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_when] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_foreach] = ACTIONS(3173), + [anon_sym_goto] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3175), + [anon_sym_from] = ACTIONS(3173), + [anon_sym_into] = ACTIONS(3173), + [anon_sym_join] = ACTIONS(3173), + [anon_sym_on] = ACTIONS(3173), + [anon_sym_equals] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_orderby] = ACTIONS(3173), + [anon_sym_ascending] = ACTIONS(3173), + [anon_sym_descending] = ACTIONS(3173), + [anon_sym_group] = ACTIONS(3173), + [anon_sym_by] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_stackalloc] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym___makeref] = ACTIONS(3173), + [anon_sym___reftype] = ACTIONS(3173), + [anon_sym___refvalue] = ACTIONS(3173), + [sym_null_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3175), + [sym_integer_literal] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [sym_verbatim_string_literal] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token3] = ACTIONS(3175), + [aux_sym_preproc_else_token1] = ACTIONS(3175), + [aux_sym_preproc_elif_token1] = ACTIONS(3175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374753,125 +369886,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3317), - [sym_interpolation_verbatim_start] = ACTIONS(3317), - [sym_interpolation_raw_start] = ACTIONS(3317), - [sym_raw_string_start] = ACTIONS(3317), + [sym_interpolation_regular_start] = ACTIONS(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [1983] = { - [sym_preproc_region] = STATE(1983), - [sym_preproc_endregion] = STATE(1983), - [sym_preproc_line] = STATE(1983), - [sym_preproc_pragma] = STATE(1983), - [sym_preproc_nullable] = STATE(1983), - [sym_preproc_error] = STATE(1983), - [sym_preproc_warning] = STATE(1983), - [sym_preproc_define] = STATE(1983), - [sym_preproc_undef] = STATE(1983), - [ts_builtin_sym_end] = ACTIONS(2987), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_record] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_this] = ACTIONS(2985), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_base] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_unchecked] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_catch] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_finally] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2985), - [anon_sym_foreach] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_stackalloc] = ACTIONS(2985), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym_typeof] = ACTIONS(2985), - [anon_sym___makeref] = ACTIONS(2985), - [anon_sym___reftype] = ACTIONS(2985), - [anon_sym___refvalue] = ACTIONS(2985), - [sym_null_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2987), - [sym_integer_literal] = ACTIONS(2985), - [sym_real_literal] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_verbatim_string_literal] = ACTIONS(2987), - [aux_sym_preproc_if_token1] = ACTIONS(2987), + [1945] = { + [sym_preproc_region] = STATE(1945), + [sym_preproc_endregion] = STATE(1945), + [sym_preproc_line] = STATE(1945), + [sym_preproc_pragma] = STATE(1945), + [sym_preproc_nullable] = STATE(1945), + [sym_preproc_error] = STATE(1945), + [sym_preproc_warning] = STATE(1945), + [sym_preproc_define] = STATE(1945), + [sym_preproc_undef] = STATE(1945), + [sym__identifier_token] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_alias] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_namespace] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_delegate] = ACTIONS(3177), + [anon_sym_record] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_file] = ACTIONS(3177), + [anon_sym_fixed] = ACTIONS(3177), + [anon_sym_internal] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_partial] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_protected] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_required] = ACTIONS(3177), + [anon_sym_sealed] = ACTIONS(3177), + [anon_sym_virtual] = ACTIONS(3177), + [anon_sym_volatile] = ACTIONS(3177), + [anon_sym_where] = ACTIONS(3177), + [anon_sym_notnull] = ACTIONS(3177), + [anon_sym_unmanaged] = ACTIONS(3177), + [anon_sym_checked] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_scoped] = ACTIONS(3177), + [anon_sym_base] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [sym_predefined_type] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_unchecked] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_default] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_when] = ACTIONS(3177), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_foreach] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_into] = ACTIONS(3177), + [anon_sym_join] = ACTIONS(3177), + [anon_sym_on] = ACTIONS(3177), + [anon_sym_equals] = ACTIONS(3177), + [anon_sym_let] = ACTIONS(3177), + [anon_sym_orderby] = ACTIONS(3177), + [anon_sym_ascending] = ACTIONS(3177), + [anon_sym_descending] = ACTIONS(3177), + [anon_sym_group] = ACTIONS(3177), + [anon_sym_by] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_stackalloc] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [anon_sym_typeof] = ACTIONS(3177), + [anon_sym___makeref] = ACTIONS(3177), + [anon_sym___reftype] = ACTIONS(3177), + [anon_sym___refvalue] = ACTIONS(3177), + [sym_null_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3179), + [sym_integer_literal] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [sym_verbatim_string_literal] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token3] = ACTIONS(3179), + [aux_sym_preproc_else_token1] = ACTIONS(3179), + [aux_sym_preproc_elif_token1] = ACTIONS(3179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374882,125 +370015,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2987), - [sym_interpolation_verbatim_start] = ACTIONS(2987), - [sym_interpolation_raw_start] = ACTIONS(2987), - [sym_raw_string_start] = ACTIONS(2987), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), }, - [1984] = { - [sym_preproc_region] = STATE(1984), - [sym_preproc_endregion] = STATE(1984), - [sym_preproc_line] = STATE(1984), - [sym_preproc_pragma] = STATE(1984), - [sym_preproc_nullable] = STATE(1984), - [sym_preproc_error] = STATE(1984), - [sym_preproc_warning] = STATE(1984), - [sym_preproc_define] = STATE(1984), - [sym_preproc_undef] = STATE(1984), - [sym__identifier_token] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym_alias] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_global] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_ref] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_delegate] = ACTIONS(3319), - [anon_sym_record] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_file] = ACTIONS(3319), - [anon_sym_fixed] = ACTIONS(3319), - [anon_sym_internal] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_partial] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_required] = ACTIONS(3319), - [anon_sym_sealed] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_where] = ACTIONS(3319), - [anon_sym_notnull] = ACTIONS(3319), - [anon_sym_unmanaged] = ACTIONS(3319), - [anon_sym_checked] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_this] = ACTIONS(3319), - [anon_sym_scoped] = ACTIONS(3319), - [anon_sym_base] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [sym_predefined_type] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_unchecked] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_when] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_foreach] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_from] = ACTIONS(3319), - [anon_sym_into] = ACTIONS(3319), - [anon_sym_join] = ACTIONS(3319), - [anon_sym_on] = ACTIONS(3319), - [anon_sym_equals] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_orderby] = ACTIONS(3319), - [anon_sym_ascending] = ACTIONS(3319), - [anon_sym_descending] = ACTIONS(3319), - [anon_sym_group] = ACTIONS(3319), - [anon_sym_by] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_stackalloc] = ACTIONS(3319), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym___makeref] = ACTIONS(3319), - [anon_sym___reftype] = ACTIONS(3319), - [anon_sym___refvalue] = ACTIONS(3319), - [sym_null_literal] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3321), - [sym_integer_literal] = ACTIONS(3319), - [sym_real_literal] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_verbatim_string_literal] = ACTIONS(3321), - [aux_sym_preproc_if_token1] = ACTIONS(3321), - [aux_sym_preproc_if_token3] = ACTIONS(3321), - [aux_sym_preproc_else_token1] = ACTIONS(3321), - [aux_sym_preproc_elif_token1] = ACTIONS(3321), + [1946] = { + [sym_preproc_region] = STATE(1946), + [sym_preproc_endregion] = STATE(1946), + [sym_preproc_line] = STATE(1946), + [sym_preproc_pragma] = STATE(1946), + [sym_preproc_nullable] = STATE(1946), + [sym_preproc_error] = STATE(1946), + [sym_preproc_warning] = STATE(1946), + [sym_preproc_define] = STATE(1946), + [sym_preproc_undef] = STATE(1946), + [sym__identifier_token] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_alias] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_ref] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_delegate] = ACTIONS(3181), + [anon_sym_record] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_async] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_file] = ACTIONS(3181), + [anon_sym_fixed] = ACTIONS(3181), + [anon_sym_internal] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_override] = ACTIONS(3181), + [anon_sym_partial] = ACTIONS(3181), + [anon_sym_private] = ACTIONS(3181), + [anon_sym_protected] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_required] = ACTIONS(3181), + [anon_sym_sealed] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_where] = ACTIONS(3181), + [anon_sym_notnull] = ACTIONS(3181), + [anon_sym_unmanaged] = ACTIONS(3181), + [anon_sym_checked] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_this] = ACTIONS(3181), + [anon_sym_scoped] = ACTIONS(3181), + [anon_sym_base] = ACTIONS(3181), + [anon_sym_var] = ACTIONS(3181), + [sym_predefined_type] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_unchecked] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_when] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3181), + [anon_sym_foreach] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_DOT_DOT] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3181), + [anon_sym_into] = ACTIONS(3181), + [anon_sym_join] = ACTIONS(3181), + [anon_sym_on] = ACTIONS(3181), + [anon_sym_equals] = ACTIONS(3181), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_orderby] = ACTIONS(3181), + [anon_sym_ascending] = ACTIONS(3181), + [anon_sym_descending] = ACTIONS(3181), + [anon_sym_group] = ACTIONS(3181), + [anon_sym_by] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_stackalloc] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym_typeof] = ACTIONS(3181), + [anon_sym___makeref] = ACTIONS(3181), + [anon_sym___reftype] = ACTIONS(3181), + [anon_sym___refvalue] = ACTIONS(3181), + [sym_null_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3183), + [sym_integer_literal] = ACTIONS(3181), + [sym_real_literal] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_verbatim_string_literal] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token3] = ACTIONS(3183), + [aux_sym_preproc_else_token1] = ACTIONS(3183), + [aux_sym_preproc_elif_token1] = ACTIONS(3183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375011,125 +370144,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3321), - [sym_interpolation_verbatim_start] = ACTIONS(3321), - [sym_interpolation_raw_start] = ACTIONS(3321), - [sym_raw_string_start] = ACTIONS(3321), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, - [1985] = { - [sym_preproc_region] = STATE(1985), - [sym_preproc_endregion] = STATE(1985), - [sym_preproc_line] = STATE(1985), - [sym_preproc_pragma] = STATE(1985), - [sym_preproc_nullable] = STATE(1985), - [sym_preproc_error] = STATE(1985), - [sym_preproc_warning] = STATE(1985), - [sym_preproc_define] = STATE(1985), - [sym_preproc_undef] = STATE(1985), - [sym__identifier_token] = ACTIONS(3323), - [anon_sym_extern] = ACTIONS(3323), - [anon_sym_alias] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_global] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_ref] = ACTIONS(3323), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_delegate] = ACTIONS(3323), - [anon_sym_record] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_file] = ACTIONS(3323), - [anon_sym_fixed] = ACTIONS(3323), - [anon_sym_internal] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_partial] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_required] = ACTIONS(3323), - [anon_sym_sealed] = ACTIONS(3323), - [anon_sym_virtual] = ACTIONS(3323), - [anon_sym_volatile] = ACTIONS(3323), - [anon_sym_where] = ACTIONS(3323), - [anon_sym_notnull] = ACTIONS(3323), - [anon_sym_unmanaged] = ACTIONS(3323), - [anon_sym_checked] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_this] = ACTIONS(3323), - [anon_sym_scoped] = ACTIONS(3323), - [anon_sym_base] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [sym_predefined_type] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_unchecked] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_when] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_foreach] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_from] = ACTIONS(3323), - [anon_sym_into] = ACTIONS(3323), - [anon_sym_join] = ACTIONS(3323), - [anon_sym_on] = ACTIONS(3323), - [anon_sym_equals] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_orderby] = ACTIONS(3323), - [anon_sym_ascending] = ACTIONS(3323), - [anon_sym_descending] = ACTIONS(3323), - [anon_sym_group] = ACTIONS(3323), - [anon_sym_by] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_stackalloc] = ACTIONS(3323), - [anon_sym_sizeof] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym___makeref] = ACTIONS(3323), - [anon_sym___reftype] = ACTIONS(3323), - [anon_sym___refvalue] = ACTIONS(3323), - [sym_null_literal] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3325), - [sym_integer_literal] = ACTIONS(3323), - [sym_real_literal] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [sym_verbatim_string_literal] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token3] = ACTIONS(3325), - [aux_sym_preproc_else_token1] = ACTIONS(3325), - [aux_sym_preproc_elif_token1] = ACTIONS(3325), + [1947] = { + [sym_preproc_region] = STATE(1947), + [sym_preproc_endregion] = STATE(1947), + [sym_preproc_line] = STATE(1947), + [sym_preproc_pragma] = STATE(1947), + [sym_preproc_nullable] = STATE(1947), + [sym_preproc_error] = STATE(1947), + [sym_preproc_warning] = STATE(1947), + [sym_preproc_define] = STATE(1947), + [sym_preproc_undef] = STATE(1947), + [sym__identifier_token] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_alias] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_ref] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_delegate] = ACTIONS(3185), + [anon_sym_record] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_file] = ACTIONS(3185), + [anon_sym_fixed] = ACTIONS(3185), + [anon_sym_internal] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_partial] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_required] = ACTIONS(3185), + [anon_sym_sealed] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_where] = ACTIONS(3185), + [anon_sym_notnull] = ACTIONS(3185), + [anon_sym_unmanaged] = ACTIONS(3185), + [anon_sym_checked] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_scoped] = ACTIONS(3185), + [anon_sym_base] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [sym_predefined_type] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_unchecked] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_when] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_foreach] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_DOT_DOT] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3185), + [anon_sym_into] = ACTIONS(3185), + [anon_sym_join] = ACTIONS(3185), + [anon_sym_on] = ACTIONS(3185), + [anon_sym_equals] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_orderby] = ACTIONS(3185), + [anon_sym_ascending] = ACTIONS(3185), + [anon_sym_descending] = ACTIONS(3185), + [anon_sym_group] = ACTIONS(3185), + [anon_sym_by] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_stackalloc] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym___makeref] = ACTIONS(3185), + [anon_sym___reftype] = ACTIONS(3185), + [anon_sym___refvalue] = ACTIONS(3185), + [sym_null_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3187), + [sym_integer_literal] = ACTIONS(3185), + [sym_real_literal] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_verbatim_string_literal] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token3] = ACTIONS(3187), + [aux_sym_preproc_else_token1] = ACTIONS(3187), + [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), + }, + [1948] = { + [sym_preproc_region] = STATE(1948), + [sym_preproc_endregion] = STATE(1948), + [sym_preproc_line] = STATE(1948), + [sym_preproc_pragma] = STATE(1948), + [sym_preproc_nullable] = STATE(1948), + [sym_preproc_error] = STATE(1948), + [sym_preproc_warning] = STATE(1948), + [sym_preproc_define] = STATE(1948), + [sym_preproc_undef] = STATE(1948), + [sym__identifier_token] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym_alias] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_ref] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_delegate] = ACTIONS(3189), + [anon_sym_record] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3189), + [anon_sym_fixed] = ACTIONS(3189), + [anon_sym_internal] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_partial] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_required] = ACTIONS(3189), + [anon_sym_sealed] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_notnull] = ACTIONS(3189), + [anon_sym_unmanaged] = ACTIONS(3189), + [anon_sym_checked] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_true] = ACTIONS(3189), + [anon_sym_false] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_this] = ACTIONS(3189), + [anon_sym_scoped] = ACTIONS(3189), + [anon_sym_base] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [sym_predefined_type] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_unchecked] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_foreach] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3191), + [anon_sym_from] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_join] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_orderby] = ACTIONS(3189), + [anon_sym_ascending] = ACTIONS(3189), + [anon_sym_descending] = ACTIONS(3189), + [anon_sym_group] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_stackalloc] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym___makeref] = ACTIONS(3189), + [anon_sym___reftype] = ACTIONS(3189), + [anon_sym___refvalue] = ACTIONS(3189), + [sym_null_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3191), + [sym_integer_literal] = ACTIONS(3189), + [sym_real_literal] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_verbatim_string_literal] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token3] = ACTIONS(3191), + [aux_sym_preproc_else_token1] = ACTIONS(3191), + [aux_sym_preproc_elif_token1] = ACTIONS(3191), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375140,125 +370402,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3325), - [sym_interpolation_verbatim_start] = ACTIONS(3325), - [sym_interpolation_raw_start] = ACTIONS(3325), - [sym_raw_string_start] = ACTIONS(3325), + [sym_interpolation_regular_start] = ACTIONS(3191), + [sym_interpolation_verbatim_start] = ACTIONS(3191), + [sym_interpolation_raw_start] = ACTIONS(3191), + [sym_raw_string_start] = ACTIONS(3191), }, - [1986] = { - [sym_preproc_region] = STATE(1986), - [sym_preproc_endregion] = STATE(1986), - [sym_preproc_line] = STATE(1986), - [sym_preproc_pragma] = STATE(1986), - [sym_preproc_nullable] = STATE(1986), - [sym_preproc_error] = STATE(1986), - [sym_preproc_warning] = STATE(1986), - [sym_preproc_define] = STATE(1986), - [sym_preproc_undef] = STATE(1986), - [sym__identifier_token] = ACTIONS(3327), - [anon_sym_extern] = ACTIONS(3327), - [anon_sym_alias] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_global] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_ref] = ACTIONS(3327), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_delegate] = ACTIONS(3327), - [anon_sym_record] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_file] = ACTIONS(3327), - [anon_sym_fixed] = ACTIONS(3327), - [anon_sym_internal] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_partial] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_required] = ACTIONS(3327), - [anon_sym_sealed] = ACTIONS(3327), - [anon_sym_virtual] = ACTIONS(3327), - [anon_sym_volatile] = ACTIONS(3327), - [anon_sym_where] = ACTIONS(3327), - [anon_sym_notnull] = ACTIONS(3327), - [anon_sym_unmanaged] = ACTIONS(3327), - [anon_sym_checked] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_this] = ACTIONS(3327), - [anon_sym_scoped] = ACTIONS(3327), - [anon_sym_base] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [sym_predefined_type] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_unchecked] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_when] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_foreach] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_from] = ACTIONS(3327), - [anon_sym_into] = ACTIONS(3327), - [anon_sym_join] = ACTIONS(3327), - [anon_sym_on] = ACTIONS(3327), - [anon_sym_equals] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_orderby] = ACTIONS(3327), - [anon_sym_ascending] = ACTIONS(3327), - [anon_sym_descending] = ACTIONS(3327), - [anon_sym_group] = ACTIONS(3327), - [anon_sym_by] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_stackalloc] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym___makeref] = ACTIONS(3327), - [anon_sym___reftype] = ACTIONS(3327), - [anon_sym___refvalue] = ACTIONS(3327), - [sym_null_literal] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3329), - [sym_integer_literal] = ACTIONS(3327), - [sym_real_literal] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym_verbatim_string_literal] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token3] = ACTIONS(3329), - [aux_sym_preproc_else_token1] = ACTIONS(3329), - [aux_sym_preproc_elif_token1] = ACTIONS(3329), + [1949] = { + [sym_preproc_region] = STATE(1949), + [sym_preproc_endregion] = STATE(1949), + [sym_preproc_line] = STATE(1949), + [sym_preproc_pragma] = STATE(1949), + [sym_preproc_nullable] = STATE(1949), + [sym_preproc_error] = STATE(1949), + [sym_preproc_warning] = STATE(1949), + [sym_preproc_define] = STATE(1949), + [sym_preproc_undef] = STATE(1949), + [sym__identifier_token] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym_alias] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_ref] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_delegate] = ACTIONS(3193), + [anon_sym_record] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_file] = ACTIONS(3193), + [anon_sym_fixed] = ACTIONS(3193), + [anon_sym_internal] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_partial] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_required] = ACTIONS(3193), + [anon_sym_sealed] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_notnull] = ACTIONS(3193), + [anon_sym_unmanaged] = ACTIONS(3193), + [anon_sym_checked] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_true] = ACTIONS(3193), + [anon_sym_false] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_this] = ACTIONS(3193), + [anon_sym_scoped] = ACTIONS(3193), + [anon_sym_base] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [sym_predefined_type] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_unchecked] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_when] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_foreach] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_into] = ACTIONS(3193), + [anon_sym_join] = ACTIONS(3193), + [anon_sym_on] = ACTIONS(3193), + [anon_sym_equals] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_orderby] = ACTIONS(3193), + [anon_sym_ascending] = ACTIONS(3193), + [anon_sym_descending] = ACTIONS(3193), + [anon_sym_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_stackalloc] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym___makeref] = ACTIONS(3193), + [anon_sym___reftype] = ACTIONS(3193), + [anon_sym___refvalue] = ACTIONS(3193), + [sym_null_literal] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_real_literal] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_verbatim_string_literal] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token3] = ACTIONS(3195), + [aux_sym_preproc_else_token1] = ACTIONS(3195), + [aux_sym_preproc_elif_token1] = ACTIONS(3195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375269,125 +370531,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3329), - [sym_interpolation_verbatim_start] = ACTIONS(3329), - [sym_interpolation_raw_start] = ACTIONS(3329), - [sym_raw_string_start] = ACTIONS(3329), + [sym_interpolation_regular_start] = ACTIONS(3195), + [sym_interpolation_verbatim_start] = ACTIONS(3195), + [sym_interpolation_raw_start] = ACTIONS(3195), + [sym_raw_string_start] = ACTIONS(3195), }, - [1987] = { - [sym_preproc_region] = STATE(1987), - [sym_preproc_endregion] = STATE(1987), - [sym_preproc_line] = STATE(1987), - [sym_preproc_pragma] = STATE(1987), - [sym_preproc_nullable] = STATE(1987), - [sym_preproc_error] = STATE(1987), - [sym_preproc_warning] = STATE(1987), - [sym_preproc_define] = STATE(1987), - [sym_preproc_undef] = STATE(1987), - [sym__identifier_token] = ACTIONS(3331), - [anon_sym_extern] = ACTIONS(3331), - [anon_sym_alias] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_global] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_ref] = ACTIONS(3331), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_delegate] = ACTIONS(3331), - [anon_sym_record] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_file] = ACTIONS(3331), - [anon_sym_fixed] = ACTIONS(3331), - [anon_sym_internal] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_partial] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_required] = ACTIONS(3331), - [anon_sym_sealed] = ACTIONS(3331), - [anon_sym_virtual] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_where] = ACTIONS(3331), - [anon_sym_notnull] = ACTIONS(3331), - [anon_sym_unmanaged] = ACTIONS(3331), - [anon_sym_checked] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_this] = ACTIONS(3331), - [anon_sym_scoped] = ACTIONS(3331), - [anon_sym_base] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [sym_predefined_type] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_unchecked] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_when] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_foreach] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_from] = ACTIONS(3331), - [anon_sym_into] = ACTIONS(3331), - [anon_sym_join] = ACTIONS(3331), - [anon_sym_on] = ACTIONS(3331), - [anon_sym_equals] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_orderby] = ACTIONS(3331), - [anon_sym_ascending] = ACTIONS(3331), - [anon_sym_descending] = ACTIONS(3331), - [anon_sym_group] = ACTIONS(3331), - [anon_sym_by] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_stackalloc] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym___makeref] = ACTIONS(3331), - [anon_sym___reftype] = ACTIONS(3331), - [anon_sym___refvalue] = ACTIONS(3331), - [sym_null_literal] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), - [sym_integer_literal] = ACTIONS(3331), - [sym_real_literal] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [sym_verbatim_string_literal] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token3] = ACTIONS(3333), - [aux_sym_preproc_else_token1] = ACTIONS(3333), - [aux_sym_preproc_elif_token1] = ACTIONS(3333), + [1950] = { + [sym_preproc_region] = STATE(1950), + [sym_preproc_endregion] = STATE(1950), + [sym_preproc_line] = STATE(1950), + [sym_preproc_pragma] = STATE(1950), + [sym_preproc_nullable] = STATE(1950), + [sym_preproc_error] = STATE(1950), + [sym_preproc_warning] = STATE(1950), + [sym_preproc_define] = STATE(1950), + [sym_preproc_undef] = STATE(1950), + [sym__identifier_token] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_alias] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_ref] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_delegate] = ACTIONS(3199), + [anon_sym_record] = ACTIONS(3199), + [anon_sym_abstract] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_file] = ACTIONS(3199), + [anon_sym_fixed] = ACTIONS(3199), + [anon_sym_internal] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_override] = ACTIONS(3199), + [anon_sym_partial] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_protected] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_readonly] = ACTIONS(3199), + [anon_sym_required] = ACTIONS(3199), + [anon_sym_sealed] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_where] = ACTIONS(3199), + [anon_sym_notnull] = ACTIONS(3199), + [anon_sym_unmanaged] = ACTIONS(3199), + [anon_sym_checked] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_this] = ACTIONS(3199), + [anon_sym_scoped] = ACTIONS(3199), + [anon_sym_base] = ACTIONS(3199), + [anon_sym_var] = ACTIONS(3199), + [sym_predefined_type] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_unchecked] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_when] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_foreach] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_into] = ACTIONS(3199), + [anon_sym_join] = ACTIONS(3199), + [anon_sym_on] = ACTIONS(3199), + [anon_sym_equals] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3199), + [anon_sym_orderby] = ACTIONS(3199), + [anon_sym_ascending] = ACTIONS(3199), + [anon_sym_descending] = ACTIONS(3199), + [anon_sym_group] = ACTIONS(3199), + [anon_sym_by] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_stackalloc] = ACTIONS(3199), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym_typeof] = ACTIONS(3199), + [anon_sym___makeref] = ACTIONS(3199), + [anon_sym___reftype] = ACTIONS(3199), + [anon_sym___refvalue] = ACTIONS(3199), + [sym_null_literal] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(3201), + [sym_integer_literal] = ACTIONS(3199), + [sym_real_literal] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_verbatim_string_literal] = ACTIONS(3201), + [aux_sym_preproc_if_token1] = ACTIONS(3201), + [aux_sym_preproc_if_token3] = ACTIONS(3201), + [aux_sym_preproc_else_token1] = ACTIONS(3201), + [aux_sym_preproc_elif_token1] = ACTIONS(3201), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3201), + [sym_interpolation_verbatim_start] = ACTIONS(3201), + [sym_interpolation_raw_start] = ACTIONS(3201), + [sym_raw_string_start] = ACTIONS(3201), + }, + [1951] = { + [sym_preproc_region] = STATE(1951), + [sym_preproc_endregion] = STATE(1951), + [sym_preproc_line] = STATE(1951), + [sym_preproc_pragma] = STATE(1951), + [sym_preproc_nullable] = STATE(1951), + [sym_preproc_error] = STATE(1951), + [sym_preproc_warning] = STATE(1951), + [sym_preproc_define] = STATE(1951), + [sym_preproc_undef] = STATE(1951), + [sym__identifier_token] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_alias] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_global] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_namespace] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_ref] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_delegate] = ACTIONS(3203), + [anon_sym_record] = ACTIONS(3203), + [anon_sym_abstract] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_file] = ACTIONS(3203), + [anon_sym_fixed] = ACTIONS(3203), + [anon_sym_internal] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_override] = ACTIONS(3203), + [anon_sym_partial] = ACTIONS(3203), + [anon_sym_private] = ACTIONS(3203), + [anon_sym_protected] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_readonly] = ACTIONS(3203), + [anon_sym_required] = ACTIONS(3203), + [anon_sym_sealed] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(3203), + [anon_sym_unmanaged] = ACTIONS(3203), + [anon_sym_checked] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_this] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(3203), + [anon_sym_base] = ACTIONS(3203), + [anon_sym_var] = ACTIONS(3203), + [sym_predefined_type] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_unchecked] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(3203), + [anon_sym_await] = ACTIONS(3203), + [anon_sym_foreach] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_into] = ACTIONS(3203), + [anon_sym_join] = ACTIONS(3203), + [anon_sym_on] = ACTIONS(3203), + [anon_sym_equals] = ACTIONS(3203), + [anon_sym_let] = ACTIONS(3203), + [anon_sym_orderby] = ACTIONS(3203), + [anon_sym_ascending] = ACTIONS(3203), + [anon_sym_descending] = ACTIONS(3203), + [anon_sym_group] = ACTIONS(3203), + [anon_sym_by] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_stackalloc] = ACTIONS(3203), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym_typeof] = ACTIONS(3203), + [anon_sym___makeref] = ACTIONS(3203), + [anon_sym___reftype] = ACTIONS(3203), + [anon_sym___refvalue] = ACTIONS(3203), + [sym_null_literal] = ACTIONS(3203), + [anon_sym_SQUOTE] = ACTIONS(3205), + [sym_integer_literal] = ACTIONS(3203), + [sym_real_literal] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_verbatim_string_literal] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token3] = ACTIONS(3205), + [aux_sym_preproc_else_token1] = ACTIONS(3205), + [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3205), + [sym_interpolation_verbatim_start] = ACTIONS(3205), + [sym_interpolation_raw_start] = ACTIONS(3205), + [sym_raw_string_start] = ACTIONS(3205), + }, + [1952] = { + [sym_preproc_region] = STATE(1952), + [sym_preproc_endregion] = STATE(1952), + [sym_preproc_line] = STATE(1952), + [sym_preproc_pragma] = STATE(1952), + [sym_preproc_nullable] = STATE(1952), + [sym_preproc_error] = STATE(1952), + [sym_preproc_warning] = STATE(1952), + [sym_preproc_define] = STATE(1952), + [sym_preproc_undef] = STATE(1952), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_global] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_unsafe] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_ref] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_delegate] = ACTIONS(3207), + [anon_sym_record] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_file] = ACTIONS(3207), + [anon_sym_fixed] = ACTIONS(3207), + [anon_sym_internal] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_partial] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_required] = ACTIONS(3207), + [anon_sym_sealed] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_where] = ACTIONS(3207), + [anon_sym_notnull] = ACTIONS(3207), + [anon_sym_unmanaged] = ACTIONS(3207), + [anon_sym_checked] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_this] = ACTIONS(3207), + [anon_sym_scoped] = ACTIONS(3207), + [anon_sym_base] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [sym_predefined_type] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_unchecked] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_lock] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_when] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_foreach] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_DOT_DOT] = ACTIONS(3209), + [anon_sym_from] = ACTIONS(3207), + [anon_sym_into] = ACTIONS(3207), + [anon_sym_join] = ACTIONS(3207), + [anon_sym_on] = ACTIONS(3207), + [anon_sym_equals] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_orderby] = ACTIONS(3207), + [anon_sym_ascending] = ACTIONS(3207), + [anon_sym_descending] = ACTIONS(3207), + [anon_sym_group] = ACTIONS(3207), + [anon_sym_by] = ACTIONS(3207), + [anon_sym_select] = ACTIONS(3207), + [anon_sym_stackalloc] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym___makeref] = ACTIONS(3207), + [anon_sym___reftype] = ACTIONS(3207), + [anon_sym___refvalue] = ACTIONS(3207), + [sym_null_literal] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3209), + [sym_integer_literal] = ACTIONS(3207), + [sym_real_literal] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_verbatim_string_literal] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [aux_sym_preproc_if_token3] = ACTIONS(3209), + [aux_sym_preproc_else_token1] = ACTIONS(3209), + [aux_sym_preproc_elif_token1] = ACTIONS(3209), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3209), + [sym_interpolation_verbatim_start] = ACTIONS(3209), + [sym_interpolation_raw_start] = ACTIONS(3209), + [sym_raw_string_start] = ACTIONS(3209), + }, + [1953] = { + [sym_preproc_region] = STATE(1953), + [sym_preproc_endregion] = STATE(1953), + [sym_preproc_line] = STATE(1953), + [sym_preproc_pragma] = STATE(1953), + [sym_preproc_nullable] = STATE(1953), + [sym_preproc_error] = STATE(1953), + [sym_preproc_warning] = STATE(1953), + [sym_preproc_define] = STATE(1953), + [sym_preproc_undef] = STATE(1953), + [ts_builtin_sym_end] = ACTIONS(3163), + [sym__identifier_token] = ACTIONS(3161), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym_alias] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_namespace] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_ref] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_delegate] = ACTIONS(3161), + [anon_sym_record] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_file] = ACTIONS(3161), + [anon_sym_fixed] = ACTIONS(3161), + [anon_sym_internal] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_partial] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_protected] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_required] = ACTIONS(3161), + [anon_sym_sealed] = ACTIONS(3161), + [anon_sym_virtual] = ACTIONS(3161), + [anon_sym_volatile] = ACTIONS(3161), + [anon_sym_where] = ACTIONS(3161), + [anon_sym_notnull] = ACTIONS(3161), + [anon_sym_unmanaged] = ACTIONS(3161), + [anon_sym_checked] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3161), + [anon_sym_false] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_this] = ACTIONS(3161), + [anon_sym_scoped] = ACTIONS(3161), + [anon_sym_base] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [sym_predefined_type] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_unchecked] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_catch] = ACTIONS(3161), + [anon_sym_when] = ACTIONS(3161), + [anon_sym_finally] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_foreach] = ACTIONS(3161), + [anon_sym_goto] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_DOT_DOT] = ACTIONS(3163), + [anon_sym_from] = ACTIONS(3161), + [anon_sym_into] = ACTIONS(3161), + [anon_sym_join] = ACTIONS(3161), + [anon_sym_on] = ACTIONS(3161), + [anon_sym_equals] = ACTIONS(3161), + [anon_sym_let] = ACTIONS(3161), + [anon_sym_orderby] = ACTIONS(3161), + [anon_sym_ascending] = ACTIONS(3161), + [anon_sym_descending] = ACTIONS(3161), + [anon_sym_group] = ACTIONS(3161), + [anon_sym_by] = ACTIONS(3161), + [anon_sym_select] = ACTIONS(3161), + [anon_sym_stackalloc] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3161), + [anon_sym_typeof] = ACTIONS(3161), + [anon_sym___makeref] = ACTIONS(3161), + [anon_sym___reftype] = ACTIONS(3161), + [anon_sym___refvalue] = ACTIONS(3161), + [sym_null_literal] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3163), + [sym_integer_literal] = ACTIONS(3161), + [sym_real_literal] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [sym_verbatim_string_literal] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375398,21 +371047,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3333), - [sym_interpolation_verbatim_start] = ACTIONS(3333), - [sym_interpolation_raw_start] = ACTIONS(3333), - [sym_raw_string_start] = ACTIONS(3333), + [sym_interpolation_regular_start] = ACTIONS(3163), + [sym_interpolation_verbatim_start] = ACTIONS(3163), + [sym_interpolation_raw_start] = ACTIONS(3163), + [sym_raw_string_start] = ACTIONS(3163), }, - [1988] = { - [sym_preproc_region] = STATE(1988), - [sym_preproc_endregion] = STATE(1988), - [sym_preproc_line] = STATE(1988), - [sym_preproc_pragma] = STATE(1988), - [sym_preproc_nullable] = STATE(1988), - [sym_preproc_error] = STATE(1988), - [sym_preproc_warning] = STATE(1988), - [sym_preproc_define] = STATE(1988), - [sym_preproc_undef] = STATE(1988), + [1954] = { + [sym_preproc_region] = STATE(1954), + [sym_preproc_endregion] = STATE(1954), + [sym_preproc_line] = STATE(1954), + [sym_preproc_pragma] = STATE(1954), + [sym_preproc_nullable] = STATE(1954), + [sym_preproc_error] = STATE(1954), + [sym_preproc_warning] = STATE(1954), + [sym_preproc_define] = STATE(1954), + [sym_preproc_undef] = STATE(1954), + [sym__identifier_token] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_ref] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_delegate] = ACTIONS(3211), + [anon_sym_record] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_fixed] = ACTIONS(3211), + [anon_sym_internal] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_partial] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_required] = ACTIONS(3211), + [anon_sym_sealed] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_checked] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_this] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3211), + [anon_sym_base] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [sym_predefined_type] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_unchecked] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_lock] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_foreach] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_DOT_DOT] = ACTIONS(3213), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [anon_sym_stackalloc] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym___makeref] = ACTIONS(3211), + [anon_sym___reftype] = ACTIONS(3211), + [anon_sym___refvalue] = ACTIONS(3211), + [sym_null_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3213), + [sym_integer_literal] = ACTIONS(3211), + [sym_real_literal] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_verbatim_string_literal] = ACTIONS(3213), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_if_token3] = ACTIONS(3213), + [aux_sym_preproc_else_token1] = ACTIONS(3213), + [aux_sym_preproc_elif_token1] = ACTIONS(3213), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3213), + [sym_interpolation_verbatim_start] = ACTIONS(3213), + [sym_interpolation_raw_start] = ACTIONS(3213), + [sym_raw_string_start] = ACTIONS(3213), + }, + [1955] = { + [sym_preproc_region] = STATE(1955), + [sym_preproc_endregion] = STATE(1955), + [sym_preproc_line] = STATE(1955), + [sym_preproc_pragma] = STATE(1955), + [sym_preproc_nullable] = STATE(1955), + [sym_preproc_error] = STATE(1955), + [sym_preproc_warning] = STATE(1955), + [sym_preproc_define] = STATE(1955), + [sym_preproc_undef] = STATE(1955), + [sym__identifier_token] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_alias] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_unsafe] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_ref] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_delegate] = ACTIONS(3215), + [anon_sym_record] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_file] = ACTIONS(3215), + [anon_sym_fixed] = ACTIONS(3215), + [anon_sym_internal] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_partial] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_required] = ACTIONS(3215), + [anon_sym_sealed] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_where] = ACTIONS(3215), + [anon_sym_notnull] = ACTIONS(3215), + [anon_sym_unmanaged] = ACTIONS(3215), + [anon_sym_checked] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_this] = ACTIONS(3215), + [anon_sym_scoped] = ACTIONS(3215), + [anon_sym_base] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [sym_predefined_type] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_unchecked] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_lock] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_when] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_foreach] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_from] = ACTIONS(3215), + [anon_sym_into] = ACTIONS(3215), + [anon_sym_join] = ACTIONS(3215), + [anon_sym_on] = ACTIONS(3215), + [anon_sym_equals] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_orderby] = ACTIONS(3215), + [anon_sym_ascending] = ACTIONS(3215), + [anon_sym_descending] = ACTIONS(3215), + [anon_sym_group] = ACTIONS(3215), + [anon_sym_by] = ACTIONS(3215), + [anon_sym_select] = ACTIONS(3215), + [anon_sym_stackalloc] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym___makeref] = ACTIONS(3215), + [anon_sym___reftype] = ACTIONS(3215), + [anon_sym___refvalue] = ACTIONS(3215), + [sym_null_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3217), + [sym_integer_literal] = ACTIONS(3215), + [sym_real_literal] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_verbatim_string_literal] = ACTIONS(3217), + [aux_sym_preproc_if_token1] = ACTIONS(3217), + [aux_sym_preproc_if_token3] = ACTIONS(3217), + [aux_sym_preproc_else_token1] = ACTIONS(3217), + [aux_sym_preproc_elif_token1] = ACTIONS(3217), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3217), + [sym_interpolation_verbatim_start] = ACTIONS(3217), + [sym_interpolation_raw_start] = ACTIONS(3217), + [sym_raw_string_start] = ACTIONS(3217), + }, + [1956] = { + [sym_preproc_region] = STATE(1956), + [sym_preproc_endregion] = STATE(1956), + [sym_preproc_line] = STATE(1956), + [sym_preproc_pragma] = STATE(1956), + [sym_preproc_nullable] = STATE(1956), + [sym_preproc_error] = STATE(1956), + [sym_preproc_warning] = STATE(1956), + [sym_preproc_define] = STATE(1956), + [sym_preproc_undef] = STATE(1956), [ts_builtin_sym_end] = ACTIONS(3152), [sym__identifier_token] = ACTIONS(3150), [anon_sym_extern] = ACTIONS(3150), @@ -375532,120 +371439,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3152), [sym_raw_string_start] = ACTIONS(3152), }, - [1989] = { - [sym_preproc_region] = STATE(1989), - [sym_preproc_endregion] = STATE(1989), - [sym_preproc_line] = STATE(1989), - [sym_preproc_pragma] = STATE(1989), - [sym_preproc_nullable] = STATE(1989), - [sym_preproc_error] = STATE(1989), - [sym_preproc_warning] = STATE(1989), - [sym_preproc_define] = STATE(1989), - [sym_preproc_undef] = STATE(1989), - [sym__identifier_token] = ACTIONS(3335), - [anon_sym_extern] = ACTIONS(3335), - [anon_sym_alias] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_global] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_ref] = ACTIONS(3335), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_delegate] = ACTIONS(3335), - [anon_sym_record] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_file] = ACTIONS(3335), - [anon_sym_fixed] = ACTIONS(3335), - [anon_sym_internal] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_partial] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_required] = ACTIONS(3335), - [anon_sym_sealed] = ACTIONS(3335), - [anon_sym_virtual] = ACTIONS(3335), - [anon_sym_volatile] = ACTIONS(3335), - [anon_sym_where] = ACTIONS(3335), - [anon_sym_notnull] = ACTIONS(3335), - [anon_sym_unmanaged] = ACTIONS(3335), - [anon_sym_checked] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_this] = ACTIONS(3335), - [anon_sym_scoped] = ACTIONS(3335), - [anon_sym_base] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [sym_predefined_type] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_unchecked] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_default] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_when] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_foreach] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_from] = ACTIONS(3335), - [anon_sym_into] = ACTIONS(3335), - [anon_sym_join] = ACTIONS(3335), - [anon_sym_on] = ACTIONS(3335), - [anon_sym_equals] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_orderby] = ACTIONS(3335), - [anon_sym_ascending] = ACTIONS(3335), - [anon_sym_descending] = ACTIONS(3335), - [anon_sym_group] = ACTIONS(3335), - [anon_sym_by] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_stackalloc] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym___makeref] = ACTIONS(3335), - [anon_sym___reftype] = ACTIONS(3335), - [anon_sym___refvalue] = ACTIONS(3335), - [sym_null_literal] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3337), - [sym_integer_literal] = ACTIONS(3335), - [sym_real_literal] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [sym_verbatim_string_literal] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token3] = ACTIONS(3337), - [aux_sym_preproc_else_token1] = ACTIONS(3337), - [aux_sym_preproc_elif_token1] = ACTIONS(3337), + [1957] = { + [sym_preproc_region] = STATE(1957), + [sym_preproc_endregion] = STATE(1957), + [sym_preproc_line] = STATE(1957), + [sym_preproc_pragma] = STATE(1957), + [sym_preproc_nullable] = STATE(1957), + [sym_preproc_error] = STATE(1957), + [sym_preproc_warning] = STATE(1957), + [sym_preproc_define] = STATE(1957), + [sym_preproc_undef] = STATE(1957), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_record] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_catch] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_finally] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375656,125 +371563,1286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3337), - [sym_interpolation_verbatim_start] = ACTIONS(3337), - [sym_interpolation_raw_start] = ACTIONS(3337), - [sym_raw_string_start] = ACTIONS(3337), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), }, - [1990] = { - [sym_preproc_region] = STATE(1990), - [sym_preproc_endregion] = STATE(1990), - [sym_preproc_line] = STATE(1990), - [sym_preproc_pragma] = STATE(1990), - [sym_preproc_nullable] = STATE(1990), - [sym_preproc_error] = STATE(1990), - [sym_preproc_warning] = STATE(1990), - [sym_preproc_define] = STATE(1990), - [sym_preproc_undef] = STATE(1990), - [sym__identifier_token] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_alias] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_ref] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_delegate] = ACTIONS(3339), - [anon_sym_record] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_file] = ACTIONS(3339), - [anon_sym_fixed] = ACTIONS(3339), - [anon_sym_internal] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_partial] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_required] = ACTIONS(3339), - [anon_sym_sealed] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_where] = ACTIONS(3339), - [anon_sym_notnull] = ACTIONS(3339), - [anon_sym_unmanaged] = ACTIONS(3339), - [anon_sym_checked] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_this] = ACTIONS(3339), - [anon_sym_scoped] = ACTIONS(3339), - [anon_sym_base] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [sym_predefined_type] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_unchecked] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_when] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_foreach] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_from] = ACTIONS(3339), - [anon_sym_into] = ACTIONS(3339), - [anon_sym_join] = ACTIONS(3339), - [anon_sym_on] = ACTIONS(3339), - [anon_sym_equals] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_orderby] = ACTIONS(3339), - [anon_sym_ascending] = ACTIONS(3339), - [anon_sym_descending] = ACTIONS(3339), - [anon_sym_group] = ACTIONS(3339), - [anon_sym_by] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_stackalloc] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym___makeref] = ACTIONS(3339), - [anon_sym___reftype] = ACTIONS(3339), - [anon_sym___refvalue] = ACTIONS(3339), - [sym_null_literal] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3341), - [sym_integer_literal] = ACTIONS(3339), - [sym_real_literal] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_verbatim_string_literal] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3341), - [aux_sym_preproc_if_token3] = ACTIONS(3341), - [aux_sym_preproc_else_token1] = ACTIONS(3341), - [aux_sym_preproc_elif_token1] = ACTIONS(3341), + [1958] = { + [sym_preproc_region] = STATE(1958), + [sym_preproc_endregion] = STATE(1958), + [sym_preproc_line] = STATE(1958), + [sym_preproc_pragma] = STATE(1958), + [sym_preproc_nullable] = STATE(1958), + [sym_preproc_error] = STATE(1958), + [sym_preproc_warning] = STATE(1958), + [sym_preproc_define] = STATE(1958), + [sym_preproc_undef] = STATE(1958), + [sym__identifier_token] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_alias] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_delegate] = ACTIONS(3219), + [anon_sym_record] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_file] = ACTIONS(3219), + [anon_sym_fixed] = ACTIONS(3219), + [anon_sym_internal] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_partial] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_required] = ACTIONS(3219), + [anon_sym_sealed] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_where] = ACTIONS(3219), + [anon_sym_notnull] = ACTIONS(3219), + [anon_sym_unmanaged] = ACTIONS(3219), + [anon_sym_checked] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_this] = ACTIONS(3219), + [anon_sym_scoped] = ACTIONS(3219), + [anon_sym_base] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [sym_predefined_type] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_unchecked] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_when] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_foreach] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_from] = ACTIONS(3219), + [anon_sym_into] = ACTIONS(3219), + [anon_sym_join] = ACTIONS(3219), + [anon_sym_on] = ACTIONS(3219), + [anon_sym_equals] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_orderby] = ACTIONS(3219), + [anon_sym_ascending] = ACTIONS(3219), + [anon_sym_descending] = ACTIONS(3219), + [anon_sym_group] = ACTIONS(3219), + [anon_sym_by] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_stackalloc] = ACTIONS(3219), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym___makeref] = ACTIONS(3219), + [anon_sym___reftype] = ACTIONS(3219), + [anon_sym___refvalue] = ACTIONS(3219), + [sym_null_literal] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3221), + [sym_integer_literal] = ACTIONS(3219), + [sym_real_literal] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_verbatim_string_literal] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3221), + [aux_sym_preproc_if_token3] = ACTIONS(3221), + [aux_sym_preproc_else_token1] = ACTIONS(3221), + [aux_sym_preproc_elif_token1] = ACTIONS(3221), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3221), + [sym_interpolation_verbatim_start] = ACTIONS(3221), + [sym_interpolation_raw_start] = ACTIONS(3221), + [sym_raw_string_start] = ACTIONS(3221), + }, + [1959] = { + [sym_preproc_region] = STATE(1959), + [sym_preproc_endregion] = STATE(1959), + [sym_preproc_line] = STATE(1959), + [sym_preproc_pragma] = STATE(1959), + [sym_preproc_nullable] = STATE(1959), + [sym_preproc_error] = STATE(1959), + [sym_preproc_warning] = STATE(1959), + [sym_preproc_define] = STATE(1959), + [sym_preproc_undef] = STATE(1959), + [sym__identifier_token] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym_alias] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_unsafe] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_ref] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_delegate] = ACTIONS(3223), + [anon_sym_record] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_file] = ACTIONS(3223), + [anon_sym_fixed] = ACTIONS(3223), + [anon_sym_internal] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_partial] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_required] = ACTIONS(3223), + [anon_sym_sealed] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_where] = ACTIONS(3223), + [anon_sym_notnull] = ACTIONS(3223), + [anon_sym_unmanaged] = ACTIONS(3223), + [anon_sym_checked] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3223), + [anon_sym_false] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_this] = ACTIONS(3223), + [anon_sym_scoped] = ACTIONS(3223), + [anon_sym_base] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [sym_predefined_type] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_unchecked] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_lock] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_when] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_foreach] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_DOT_DOT] = ACTIONS(3225), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_into] = ACTIONS(3223), + [anon_sym_join] = ACTIONS(3223), + [anon_sym_on] = ACTIONS(3223), + [anon_sym_equals] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_orderby] = ACTIONS(3223), + [anon_sym_ascending] = ACTIONS(3223), + [anon_sym_descending] = ACTIONS(3223), + [anon_sym_group] = ACTIONS(3223), + [anon_sym_by] = ACTIONS(3223), + [anon_sym_select] = ACTIONS(3223), + [anon_sym_stackalloc] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym___makeref] = ACTIONS(3223), + [anon_sym___reftype] = ACTIONS(3223), + [anon_sym___refvalue] = ACTIONS(3223), + [sym_null_literal] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3225), + [sym_integer_literal] = ACTIONS(3223), + [sym_real_literal] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_verbatim_string_literal] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3225), + [aux_sym_preproc_if_token3] = ACTIONS(3225), + [aux_sym_preproc_else_token1] = ACTIONS(3225), + [aux_sym_preproc_elif_token1] = ACTIONS(3225), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3225), + [sym_interpolation_verbatim_start] = ACTIONS(3225), + [sym_interpolation_raw_start] = ACTIONS(3225), + [sym_raw_string_start] = ACTIONS(3225), + }, + [1960] = { + [sym_preproc_region] = STATE(1960), + [sym_preproc_endregion] = STATE(1960), + [sym_preproc_line] = STATE(1960), + [sym_preproc_pragma] = STATE(1960), + [sym_preproc_nullable] = STATE(1960), + [sym_preproc_error] = STATE(1960), + [sym_preproc_warning] = STATE(1960), + [sym_preproc_define] = STATE(1960), + [sym_preproc_undef] = STATE(1960), + [sym__identifier_token] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_alias] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_ref] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_delegate] = ACTIONS(3227), + [anon_sym_record] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_file] = ACTIONS(3227), + [anon_sym_fixed] = ACTIONS(3227), + [anon_sym_internal] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_partial] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_required] = ACTIONS(3227), + [anon_sym_sealed] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_where] = ACTIONS(3227), + [anon_sym_notnull] = ACTIONS(3227), + [anon_sym_unmanaged] = ACTIONS(3227), + [anon_sym_checked] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_this] = ACTIONS(3227), + [anon_sym_scoped] = ACTIONS(3227), + [anon_sym_base] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [sym_predefined_type] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_unchecked] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_when] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_foreach] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_into] = ACTIONS(3227), + [anon_sym_join] = ACTIONS(3227), + [anon_sym_on] = ACTIONS(3227), + [anon_sym_equals] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_orderby] = ACTIONS(3227), + [anon_sym_ascending] = ACTIONS(3227), + [anon_sym_descending] = ACTIONS(3227), + [anon_sym_group] = ACTIONS(3227), + [anon_sym_by] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_stackalloc] = ACTIONS(3227), + [anon_sym_sizeof] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym___makeref] = ACTIONS(3227), + [anon_sym___reftype] = ACTIONS(3227), + [anon_sym___refvalue] = ACTIONS(3227), + [sym_null_literal] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3229), + [sym_integer_literal] = ACTIONS(3227), + [sym_real_literal] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym_verbatim_string_literal] = ACTIONS(3229), + [aux_sym_preproc_if_token1] = ACTIONS(3229), + [aux_sym_preproc_if_token3] = ACTIONS(3229), + [aux_sym_preproc_else_token1] = ACTIONS(3229), + [aux_sym_preproc_elif_token1] = ACTIONS(3229), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3229), + [sym_interpolation_verbatim_start] = ACTIONS(3229), + [sym_interpolation_raw_start] = ACTIONS(3229), + [sym_raw_string_start] = ACTIONS(3229), + }, + [1961] = { + [sym_preproc_region] = STATE(1961), + [sym_preproc_endregion] = STATE(1961), + [sym_preproc_line] = STATE(1961), + [sym_preproc_pragma] = STATE(1961), + [sym_preproc_nullable] = STATE(1961), + [sym_preproc_error] = STATE(1961), + [sym_preproc_warning] = STATE(1961), + [sym_preproc_define] = STATE(1961), + [sym_preproc_undef] = STATE(1961), + [sym__identifier_token] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_alias] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_unsafe] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_ref] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_delegate] = ACTIONS(3231), + [anon_sym_record] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_file] = ACTIONS(3231), + [anon_sym_fixed] = ACTIONS(3231), + [anon_sym_internal] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_partial] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_required] = ACTIONS(3231), + [anon_sym_sealed] = ACTIONS(3231), + [anon_sym_virtual] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_where] = ACTIONS(3231), + [anon_sym_notnull] = ACTIONS(3231), + [anon_sym_unmanaged] = ACTIONS(3231), + [anon_sym_checked] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_this] = ACTIONS(3231), + [anon_sym_scoped] = ACTIONS(3231), + [anon_sym_base] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [sym_predefined_type] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_unchecked] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_lock] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_when] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_foreach] = ACTIONS(3231), + [anon_sym_goto] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_into] = ACTIONS(3231), + [anon_sym_join] = ACTIONS(3231), + [anon_sym_on] = ACTIONS(3231), + [anon_sym_equals] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_orderby] = ACTIONS(3231), + [anon_sym_ascending] = ACTIONS(3231), + [anon_sym_descending] = ACTIONS(3231), + [anon_sym_group] = ACTIONS(3231), + [anon_sym_by] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_stackalloc] = ACTIONS(3231), + [anon_sym_sizeof] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym___makeref] = ACTIONS(3231), + [anon_sym___reftype] = ACTIONS(3231), + [anon_sym___refvalue] = ACTIONS(3231), + [sym_null_literal] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3233), + [sym_integer_literal] = ACTIONS(3231), + [sym_real_literal] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [sym_verbatim_string_literal] = ACTIONS(3233), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token3] = ACTIONS(3233), + [aux_sym_preproc_else_token1] = ACTIONS(3233), + [aux_sym_preproc_elif_token1] = ACTIONS(3233), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3233), + [sym_interpolation_verbatim_start] = ACTIONS(3233), + [sym_interpolation_raw_start] = ACTIONS(3233), + [sym_raw_string_start] = ACTIONS(3233), + }, + [1962] = { + [sym_preproc_region] = STATE(1962), + [sym_preproc_endregion] = STATE(1962), + [sym_preproc_line] = STATE(1962), + [sym_preproc_pragma] = STATE(1962), + [sym_preproc_nullable] = STATE(1962), + [sym_preproc_error] = STATE(1962), + [sym_preproc_warning] = STATE(1962), + [sym_preproc_define] = STATE(1962), + [sym_preproc_undef] = STATE(1962), + [sym__identifier_token] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_alias] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_unsafe] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_ref] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_delegate] = ACTIONS(3235), + [anon_sym_record] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_file] = ACTIONS(3235), + [anon_sym_fixed] = ACTIONS(3235), + [anon_sym_internal] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_partial] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_required] = ACTIONS(3235), + [anon_sym_sealed] = ACTIONS(3235), + [anon_sym_virtual] = ACTIONS(3235), + [anon_sym_volatile] = ACTIONS(3235), + [anon_sym_where] = ACTIONS(3235), + [anon_sym_notnull] = ACTIONS(3235), + [anon_sym_unmanaged] = ACTIONS(3235), + [anon_sym_checked] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_this] = ACTIONS(3235), + [anon_sym_scoped] = ACTIONS(3235), + [anon_sym_base] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [sym_predefined_type] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_unchecked] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_lock] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_when] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_foreach] = ACTIONS(3235), + [anon_sym_goto] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_DOT_DOT] = ACTIONS(3237), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_into] = ACTIONS(3235), + [anon_sym_join] = ACTIONS(3235), + [anon_sym_on] = ACTIONS(3235), + [anon_sym_equals] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_orderby] = ACTIONS(3235), + [anon_sym_ascending] = ACTIONS(3235), + [anon_sym_descending] = ACTIONS(3235), + [anon_sym_group] = ACTIONS(3235), + [anon_sym_by] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_stackalloc] = ACTIONS(3235), + [anon_sym_sizeof] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym___makeref] = ACTIONS(3235), + [anon_sym___reftype] = ACTIONS(3235), + [anon_sym___refvalue] = ACTIONS(3235), + [sym_null_literal] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3237), + [sym_integer_literal] = ACTIONS(3235), + [sym_real_literal] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [sym_verbatim_string_literal] = ACTIONS(3237), + [aux_sym_preproc_if_token1] = ACTIONS(3237), + [aux_sym_preproc_if_token3] = ACTIONS(3237), + [aux_sym_preproc_else_token1] = ACTIONS(3237), + [aux_sym_preproc_elif_token1] = ACTIONS(3237), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3237), + [sym_interpolation_verbatim_start] = ACTIONS(3237), + [sym_interpolation_raw_start] = ACTIONS(3237), + [sym_raw_string_start] = ACTIONS(3237), + }, + [1963] = { + [sym_preproc_region] = STATE(1963), + [sym_preproc_endregion] = STATE(1963), + [sym_preproc_line] = STATE(1963), + [sym_preproc_pragma] = STATE(1963), + [sym_preproc_nullable] = STATE(1963), + [sym_preproc_error] = STATE(1963), + [sym_preproc_warning] = STATE(1963), + [sym_preproc_define] = STATE(1963), + [sym_preproc_undef] = STATE(1963), + [sym__identifier_token] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_alias] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_ref] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_delegate] = ACTIONS(3239), + [anon_sym_record] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_file] = ACTIONS(3239), + [anon_sym_fixed] = ACTIONS(3239), + [anon_sym_internal] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_partial] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_required] = ACTIONS(3239), + [anon_sym_sealed] = ACTIONS(3239), + [anon_sym_virtual] = ACTIONS(3239), + [anon_sym_volatile] = ACTIONS(3239), + [anon_sym_where] = ACTIONS(3239), + [anon_sym_notnull] = ACTIONS(3239), + [anon_sym_unmanaged] = ACTIONS(3239), + [anon_sym_checked] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_this] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(3239), + [anon_sym_base] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_unchecked] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_lock] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_when] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_foreach] = ACTIONS(3239), + [anon_sym_goto] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_from] = ACTIONS(3239), + [anon_sym_into] = ACTIONS(3239), + [anon_sym_join] = ACTIONS(3239), + [anon_sym_on] = ACTIONS(3239), + [anon_sym_equals] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_orderby] = ACTIONS(3239), + [anon_sym_ascending] = ACTIONS(3239), + [anon_sym_descending] = ACTIONS(3239), + [anon_sym_group] = ACTIONS(3239), + [anon_sym_by] = ACTIONS(3239), + [anon_sym_select] = ACTIONS(3239), + [anon_sym_stackalloc] = ACTIONS(3239), + [anon_sym_sizeof] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym___makeref] = ACTIONS(3239), + [anon_sym___reftype] = ACTIONS(3239), + [anon_sym___refvalue] = ACTIONS(3239), + [sym_null_literal] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3241), + [sym_integer_literal] = ACTIONS(3239), + [sym_real_literal] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [sym_verbatim_string_literal] = ACTIONS(3241), + [aux_sym_preproc_if_token1] = ACTIONS(3241), + [aux_sym_preproc_if_token3] = ACTIONS(3241), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3241), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3241), + [sym_interpolation_verbatim_start] = ACTIONS(3241), + [sym_interpolation_raw_start] = ACTIONS(3241), + [sym_raw_string_start] = ACTIONS(3241), + }, + [1964] = { + [sym_preproc_region] = STATE(1964), + [sym_preproc_endregion] = STATE(1964), + [sym_preproc_line] = STATE(1964), + [sym_preproc_pragma] = STATE(1964), + [sym_preproc_nullable] = STATE(1964), + [sym_preproc_error] = STATE(1964), + [sym_preproc_warning] = STATE(1964), + [sym_preproc_define] = STATE(1964), + [sym_preproc_undef] = STATE(1964), + [sym__identifier_token] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_alias] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_unsafe] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_ref] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_delegate] = ACTIONS(3243), + [anon_sym_record] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_file] = ACTIONS(3243), + [anon_sym_fixed] = ACTIONS(3243), + [anon_sym_internal] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_partial] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_required] = ACTIONS(3243), + [anon_sym_sealed] = ACTIONS(3243), + [anon_sym_virtual] = ACTIONS(3243), + [anon_sym_volatile] = ACTIONS(3243), + [anon_sym_where] = ACTIONS(3243), + [anon_sym_notnull] = ACTIONS(3243), + [anon_sym_unmanaged] = ACTIONS(3243), + [anon_sym_checked] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3243), + [anon_sym_scoped] = ACTIONS(3243), + [anon_sym_base] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [sym_predefined_type] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_unchecked] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_lock] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_when] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_foreach] = ACTIONS(3243), + [anon_sym_goto] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3245), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_into] = ACTIONS(3243), + [anon_sym_join] = ACTIONS(3243), + [anon_sym_on] = ACTIONS(3243), + [anon_sym_equals] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_orderby] = ACTIONS(3243), + [anon_sym_ascending] = ACTIONS(3243), + [anon_sym_descending] = ACTIONS(3243), + [anon_sym_group] = ACTIONS(3243), + [anon_sym_by] = ACTIONS(3243), + [anon_sym_select] = ACTIONS(3243), + [anon_sym_stackalloc] = ACTIONS(3243), + [anon_sym_sizeof] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym___makeref] = ACTIONS(3243), + [anon_sym___reftype] = ACTIONS(3243), + [anon_sym___refvalue] = ACTIONS(3243), + [sym_null_literal] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3245), + [sym_integer_literal] = ACTIONS(3243), + [sym_real_literal] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [sym_verbatim_string_literal] = ACTIONS(3245), + [aux_sym_preproc_if_token1] = ACTIONS(3245), + [aux_sym_preproc_if_token3] = ACTIONS(3245), + [aux_sym_preproc_else_token1] = ACTIONS(3245), + [aux_sym_preproc_elif_token1] = ACTIONS(3245), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3245), + [sym_interpolation_verbatim_start] = ACTIONS(3245), + [sym_interpolation_raw_start] = ACTIONS(3245), + [sym_raw_string_start] = ACTIONS(3245), + }, + [1965] = { + [sym_preproc_region] = STATE(1965), + [sym_preproc_endregion] = STATE(1965), + [sym_preproc_line] = STATE(1965), + [sym_preproc_pragma] = STATE(1965), + [sym_preproc_nullable] = STATE(1965), + [sym_preproc_error] = STATE(1965), + [sym_preproc_warning] = STATE(1965), + [sym_preproc_define] = STATE(1965), + [sym_preproc_undef] = STATE(1965), + [sym__identifier_token] = ACTIONS(3247), + [anon_sym_extern] = ACTIONS(3247), + [anon_sym_alias] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_unsafe] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_ref] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_delegate] = ACTIONS(3247), + [anon_sym_record] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_file] = ACTIONS(3247), + [anon_sym_fixed] = ACTIONS(3247), + [anon_sym_internal] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_partial] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_required] = ACTIONS(3247), + [anon_sym_sealed] = ACTIONS(3247), + [anon_sym_virtual] = ACTIONS(3247), + [anon_sym_volatile] = ACTIONS(3247), + [anon_sym_where] = ACTIONS(3247), + [anon_sym_notnull] = ACTIONS(3247), + [anon_sym_unmanaged] = ACTIONS(3247), + [anon_sym_checked] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_this] = ACTIONS(3247), + [anon_sym_scoped] = ACTIONS(3247), + [anon_sym_base] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [sym_predefined_type] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_unchecked] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_lock] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_when] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_foreach] = ACTIONS(3247), + [anon_sym_goto] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(3249), + [anon_sym_from] = ACTIONS(3247), + [anon_sym_into] = ACTIONS(3247), + [anon_sym_join] = ACTIONS(3247), + [anon_sym_on] = ACTIONS(3247), + [anon_sym_equals] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_orderby] = ACTIONS(3247), + [anon_sym_ascending] = ACTIONS(3247), + [anon_sym_descending] = ACTIONS(3247), + [anon_sym_group] = ACTIONS(3247), + [anon_sym_by] = ACTIONS(3247), + [anon_sym_select] = ACTIONS(3247), + [anon_sym_stackalloc] = ACTIONS(3247), + [anon_sym_sizeof] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym___makeref] = ACTIONS(3247), + [anon_sym___reftype] = ACTIONS(3247), + [anon_sym___refvalue] = ACTIONS(3247), + [sym_null_literal] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3249), + [sym_integer_literal] = ACTIONS(3247), + [sym_real_literal] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [sym_verbatim_string_literal] = ACTIONS(3249), + [aux_sym_preproc_if_token1] = ACTIONS(3249), + [aux_sym_preproc_if_token3] = ACTIONS(3249), + [aux_sym_preproc_else_token1] = ACTIONS(3249), + [aux_sym_preproc_elif_token1] = ACTIONS(3249), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3249), + [sym_interpolation_verbatim_start] = ACTIONS(3249), + [sym_interpolation_raw_start] = ACTIONS(3249), + [sym_raw_string_start] = ACTIONS(3249), + }, + [1966] = { + [sym_preproc_region] = STATE(1966), + [sym_preproc_endregion] = STATE(1966), + [sym_preproc_line] = STATE(1966), + [sym_preproc_pragma] = STATE(1966), + [sym_preproc_nullable] = STATE(1966), + [sym_preproc_error] = STATE(1966), + [sym_preproc_warning] = STATE(1966), + [sym_preproc_define] = STATE(1966), + [sym_preproc_undef] = STATE(1966), + [sym__identifier_token] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_alias] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_ref] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_delegate] = ACTIONS(3251), + [anon_sym_record] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_file] = ACTIONS(3251), + [anon_sym_fixed] = ACTIONS(3251), + [anon_sym_internal] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_partial] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_required] = ACTIONS(3251), + [anon_sym_sealed] = ACTIONS(3251), + [anon_sym_virtual] = ACTIONS(3251), + [anon_sym_volatile] = ACTIONS(3251), + [anon_sym_where] = ACTIONS(3251), + [anon_sym_notnull] = ACTIONS(3251), + [anon_sym_unmanaged] = ACTIONS(3251), + [anon_sym_checked] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_this] = ACTIONS(3251), + [anon_sym_scoped] = ACTIONS(3251), + [anon_sym_base] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [sym_predefined_type] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_unchecked] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_lock] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_when] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_foreach] = ACTIONS(3251), + [anon_sym_goto] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_DOT_DOT] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_into] = ACTIONS(3251), + [anon_sym_join] = ACTIONS(3251), + [anon_sym_on] = ACTIONS(3251), + [anon_sym_equals] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_orderby] = ACTIONS(3251), + [anon_sym_ascending] = ACTIONS(3251), + [anon_sym_descending] = ACTIONS(3251), + [anon_sym_group] = ACTIONS(3251), + [anon_sym_by] = ACTIONS(3251), + [anon_sym_select] = ACTIONS(3251), + [anon_sym_stackalloc] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym___makeref] = ACTIONS(3251), + [anon_sym___reftype] = ACTIONS(3251), + [anon_sym___refvalue] = ACTIONS(3251), + [sym_null_literal] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3253), + [sym_integer_literal] = ACTIONS(3251), + [sym_real_literal] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [sym_verbatim_string_literal] = ACTIONS(3253), + [aux_sym_preproc_if_token1] = ACTIONS(3253), + [aux_sym_preproc_if_token3] = ACTIONS(3253), + [aux_sym_preproc_else_token1] = ACTIONS(3253), + [aux_sym_preproc_elif_token1] = ACTIONS(3253), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3253), + [sym_interpolation_verbatim_start] = ACTIONS(3253), + [sym_interpolation_raw_start] = ACTIONS(3253), + [sym_raw_string_start] = ACTIONS(3253), + }, + [1967] = { + [sym_preproc_region] = STATE(1967), + [sym_preproc_endregion] = STATE(1967), + [sym_preproc_line] = STATE(1967), + [sym_preproc_pragma] = STATE(1967), + [sym_preproc_nullable] = STATE(1967), + [sym_preproc_error] = STATE(1967), + [sym_preproc_warning] = STATE(1967), + [sym_preproc_define] = STATE(1967), + [sym_preproc_undef] = STATE(1967), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_record] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), + [aux_sym_preproc_if_token3] = ACTIONS(3135), + [aux_sym_preproc_else_token1] = ACTIONS(3135), + [aux_sym_preproc_elif_token1] = ACTIONS(3135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375785,125 +372853,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3341), - [sym_interpolation_verbatim_start] = ACTIONS(3341), - [sym_interpolation_raw_start] = ACTIONS(3341), - [sym_raw_string_start] = ACTIONS(3341), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), }, - [1991] = { - [sym_preproc_region] = STATE(1991), - [sym_preproc_endregion] = STATE(1991), - [sym_preproc_line] = STATE(1991), - [sym_preproc_pragma] = STATE(1991), - [sym_preproc_nullable] = STATE(1991), - [sym_preproc_error] = STATE(1991), - [sym_preproc_warning] = STATE(1991), - [sym_preproc_define] = STATE(1991), - [sym_preproc_undef] = STATE(1991), - [sym__identifier_token] = ACTIONS(3343), - [anon_sym_extern] = ACTIONS(3343), - [anon_sym_alias] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_global] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_ref] = ACTIONS(3343), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_delegate] = ACTIONS(3343), - [anon_sym_record] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_file] = ACTIONS(3343), - [anon_sym_fixed] = ACTIONS(3343), - [anon_sym_internal] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_partial] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_sealed] = ACTIONS(3343), - [anon_sym_virtual] = ACTIONS(3343), - [anon_sym_volatile] = ACTIONS(3343), - [anon_sym_where] = ACTIONS(3343), - [anon_sym_notnull] = ACTIONS(3343), - [anon_sym_unmanaged] = ACTIONS(3343), - [anon_sym_checked] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_this] = ACTIONS(3343), - [anon_sym_scoped] = ACTIONS(3343), - [anon_sym_base] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [sym_predefined_type] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_unchecked] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_when] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_foreach] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_into] = ACTIONS(3343), - [anon_sym_join] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_equals] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_orderby] = ACTIONS(3343), - [anon_sym_ascending] = ACTIONS(3343), - [anon_sym_descending] = ACTIONS(3343), - [anon_sym_group] = ACTIONS(3343), - [anon_sym_by] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_stackalloc] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym___makeref] = ACTIONS(3343), - [anon_sym___reftype] = ACTIONS(3343), - [anon_sym___refvalue] = ACTIONS(3343), - [sym_null_literal] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3345), - [sym_integer_literal] = ACTIONS(3343), - [sym_real_literal] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [sym_verbatim_string_literal] = ACTIONS(3345), - [aux_sym_preproc_if_token1] = ACTIONS(3345), - [aux_sym_preproc_if_token3] = ACTIONS(3345), - [aux_sym_preproc_else_token1] = ACTIONS(3345), - [aux_sym_preproc_elif_token1] = ACTIONS(3345), + [1968] = { + [sym_preproc_region] = STATE(1968), + [sym_preproc_endregion] = STATE(1968), + [sym_preproc_line] = STATE(1968), + [sym_preproc_pragma] = STATE(1968), + [sym_preproc_nullable] = STATE(1968), + [sym_preproc_error] = STATE(1968), + [sym_preproc_warning] = STATE(1968), + [sym_preproc_define] = STATE(1968), + [sym_preproc_undef] = STATE(1968), + [sym__identifier_token] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_alias] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_ref] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_delegate] = ACTIONS(3255), + [anon_sym_record] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_file] = ACTIONS(3255), + [anon_sym_fixed] = ACTIONS(3255), + [anon_sym_internal] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_partial] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_required] = ACTIONS(3255), + [anon_sym_sealed] = ACTIONS(3255), + [anon_sym_virtual] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_where] = ACTIONS(3255), + [anon_sym_notnull] = ACTIONS(3255), + [anon_sym_unmanaged] = ACTIONS(3255), + [anon_sym_checked] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_this] = ACTIONS(3255), + [anon_sym_scoped] = ACTIONS(3255), + [anon_sym_base] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [sym_predefined_type] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_unchecked] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_lock] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_when] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_foreach] = ACTIONS(3255), + [anon_sym_goto] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_into] = ACTIONS(3255), + [anon_sym_join] = ACTIONS(3255), + [anon_sym_on] = ACTIONS(3255), + [anon_sym_equals] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_orderby] = ACTIONS(3255), + [anon_sym_ascending] = ACTIONS(3255), + [anon_sym_descending] = ACTIONS(3255), + [anon_sym_group] = ACTIONS(3255), + [anon_sym_by] = ACTIONS(3255), + [anon_sym_select] = ACTIONS(3255), + [anon_sym_stackalloc] = ACTIONS(3255), + [anon_sym_sizeof] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym___makeref] = ACTIONS(3255), + [anon_sym___reftype] = ACTIONS(3255), + [anon_sym___refvalue] = ACTIONS(3255), + [sym_null_literal] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3257), + [sym_integer_literal] = ACTIONS(3255), + [sym_real_literal] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [sym_verbatim_string_literal] = ACTIONS(3257), + [aux_sym_preproc_if_token1] = ACTIONS(3257), + [aux_sym_preproc_if_token3] = ACTIONS(3257), + [aux_sym_preproc_else_token1] = ACTIONS(3257), + [aux_sym_preproc_elif_token1] = ACTIONS(3257), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3257), + [sym_interpolation_verbatim_start] = ACTIONS(3257), + [sym_interpolation_raw_start] = ACTIONS(3257), + [sym_raw_string_start] = ACTIONS(3257), + }, + [1969] = { + [sym_preproc_region] = STATE(1969), + [sym_preproc_endregion] = STATE(1969), + [sym_preproc_line] = STATE(1969), + [sym_preproc_pragma] = STATE(1969), + [sym_preproc_nullable] = STATE(1969), + [sym_preproc_error] = STATE(1969), + [sym_preproc_warning] = STATE(1969), + [sym_preproc_define] = STATE(1969), + [sym_preproc_undef] = STATE(1969), + [sym__identifier_token] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_alias] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_ref] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_delegate] = ACTIONS(3259), + [anon_sym_record] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_file] = ACTIONS(3259), + [anon_sym_fixed] = ACTIONS(3259), + [anon_sym_internal] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_partial] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_sealed] = ACTIONS(3259), + [anon_sym_virtual] = ACTIONS(3259), + [anon_sym_volatile] = ACTIONS(3259), + [anon_sym_where] = ACTIONS(3259), + [anon_sym_notnull] = ACTIONS(3259), + [anon_sym_unmanaged] = ACTIONS(3259), + [anon_sym_checked] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_this] = ACTIONS(3259), + [anon_sym_scoped] = ACTIONS(3259), + [anon_sym_base] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [sym_predefined_type] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_unchecked] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_lock] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_when] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_foreach] = ACTIONS(3259), + [anon_sym_goto] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_into] = ACTIONS(3259), + [anon_sym_join] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_equals] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_orderby] = ACTIONS(3259), + [anon_sym_ascending] = ACTIONS(3259), + [anon_sym_descending] = ACTIONS(3259), + [anon_sym_group] = ACTIONS(3259), + [anon_sym_by] = ACTIONS(3259), + [anon_sym_select] = ACTIONS(3259), + [anon_sym_stackalloc] = ACTIONS(3259), + [anon_sym_sizeof] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym___makeref] = ACTIONS(3259), + [anon_sym___reftype] = ACTIONS(3259), + [anon_sym___refvalue] = ACTIONS(3259), + [sym_null_literal] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3261), + [sym_integer_literal] = ACTIONS(3259), + [sym_real_literal] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [sym_verbatim_string_literal] = ACTIONS(3261), + [aux_sym_preproc_if_token1] = ACTIONS(3261), + [aux_sym_preproc_if_token3] = ACTIONS(3261), + [aux_sym_preproc_else_token1] = ACTIONS(3261), + [aux_sym_preproc_elif_token1] = ACTIONS(3261), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3261), + [sym_interpolation_verbatim_start] = ACTIONS(3261), + [sym_interpolation_raw_start] = ACTIONS(3261), + [sym_raw_string_start] = ACTIONS(3261), + }, + [1970] = { + [sym_preproc_region] = STATE(1970), + [sym_preproc_endregion] = STATE(1970), + [sym_preproc_line] = STATE(1970), + [sym_preproc_pragma] = STATE(1970), + [sym_preproc_nullable] = STATE(1970), + [sym_preproc_error] = STATE(1970), + [sym_preproc_warning] = STATE(1970), + [sym_preproc_define] = STATE(1970), + [sym_preproc_undef] = STATE(1970), + [sym__identifier_token] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_alias] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_ref] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_delegate] = ACTIONS(3263), + [anon_sym_record] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_file] = ACTIONS(3263), + [anon_sym_fixed] = ACTIONS(3263), + [anon_sym_internal] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_partial] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_sealed] = ACTIONS(3263), + [anon_sym_virtual] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_where] = ACTIONS(3263), + [anon_sym_notnull] = ACTIONS(3263), + [anon_sym_unmanaged] = ACTIONS(3263), + [anon_sym_checked] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_this] = ACTIONS(3263), + [anon_sym_scoped] = ACTIONS(3263), + [anon_sym_base] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [sym_predefined_type] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_unchecked] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_lock] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_when] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_foreach] = ACTIONS(3263), + [anon_sym_goto] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_into] = ACTIONS(3263), + [anon_sym_join] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_equals] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_orderby] = ACTIONS(3263), + [anon_sym_ascending] = ACTIONS(3263), + [anon_sym_descending] = ACTIONS(3263), + [anon_sym_group] = ACTIONS(3263), + [anon_sym_by] = ACTIONS(3263), + [anon_sym_select] = ACTIONS(3263), + [anon_sym_stackalloc] = ACTIONS(3263), + [anon_sym_sizeof] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym___makeref] = ACTIONS(3263), + [anon_sym___reftype] = ACTIONS(3263), + [anon_sym___refvalue] = ACTIONS(3263), + [sym_null_literal] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3265), + [sym_integer_literal] = ACTIONS(3263), + [sym_real_literal] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [sym_verbatim_string_literal] = ACTIONS(3265), + [aux_sym_preproc_if_token1] = ACTIONS(3265), + [aux_sym_preproc_if_token3] = ACTIONS(3265), + [aux_sym_preproc_else_token1] = ACTIONS(3265), + [aux_sym_preproc_elif_token1] = ACTIONS(3265), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3265), + [sym_interpolation_verbatim_start] = ACTIONS(3265), + [sym_interpolation_raw_start] = ACTIONS(3265), + [sym_raw_string_start] = ACTIONS(3265), + }, + [1971] = { + [sym_preproc_region] = STATE(1971), + [sym_preproc_endregion] = STATE(1971), + [sym_preproc_line] = STATE(1971), + [sym_preproc_pragma] = STATE(1971), + [sym_preproc_nullable] = STATE(1971), + [sym_preproc_error] = STATE(1971), + [sym_preproc_warning] = STATE(1971), + [sym_preproc_define] = STATE(1971), + [sym_preproc_undef] = STATE(1971), + [sym__identifier_token] = ACTIONS(3267), + [anon_sym_extern] = ACTIONS(3267), + [anon_sym_alias] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_unsafe] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_ref] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_delegate] = ACTIONS(3267), + [anon_sym_record] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_file] = ACTIONS(3267), + [anon_sym_fixed] = ACTIONS(3267), + [anon_sym_internal] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_partial] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_required] = ACTIONS(3267), + [anon_sym_sealed] = ACTIONS(3267), + [anon_sym_virtual] = ACTIONS(3267), + [anon_sym_volatile] = ACTIONS(3267), + [anon_sym_where] = ACTIONS(3267), + [anon_sym_notnull] = ACTIONS(3267), + [anon_sym_unmanaged] = ACTIONS(3267), + [anon_sym_checked] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_this] = ACTIONS(3267), + [anon_sym_scoped] = ACTIONS(3267), + [anon_sym_base] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [sym_predefined_type] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_unchecked] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_lock] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_when] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_foreach] = ACTIONS(3267), + [anon_sym_goto] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_from] = ACTIONS(3267), + [anon_sym_into] = ACTIONS(3267), + [anon_sym_join] = ACTIONS(3267), + [anon_sym_on] = ACTIONS(3267), + [anon_sym_equals] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_orderby] = ACTIONS(3267), + [anon_sym_ascending] = ACTIONS(3267), + [anon_sym_descending] = ACTIONS(3267), + [anon_sym_group] = ACTIONS(3267), + [anon_sym_by] = ACTIONS(3267), + [anon_sym_select] = ACTIONS(3267), + [anon_sym_stackalloc] = ACTIONS(3267), + [anon_sym_sizeof] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym___makeref] = ACTIONS(3267), + [anon_sym___reftype] = ACTIONS(3267), + [anon_sym___refvalue] = ACTIONS(3267), + [sym_null_literal] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3269), + [sym_integer_literal] = ACTIONS(3267), + [sym_real_literal] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [sym_verbatim_string_literal] = ACTIONS(3269), + [aux_sym_preproc_if_token1] = ACTIONS(3269), + [aux_sym_preproc_if_token3] = ACTIONS(3269), + [aux_sym_preproc_else_token1] = ACTIONS(3269), + [aux_sym_preproc_elif_token1] = ACTIONS(3269), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3269), + [sym_interpolation_verbatim_start] = ACTIONS(3269), + [sym_interpolation_raw_start] = ACTIONS(3269), + [sym_raw_string_start] = ACTIONS(3269), + }, + [1972] = { + [sym_preproc_region] = STATE(1972), + [sym_preproc_endregion] = STATE(1972), + [sym_preproc_line] = STATE(1972), + [sym_preproc_pragma] = STATE(1972), + [sym_preproc_nullable] = STATE(1972), + [sym_preproc_error] = STATE(1972), + [sym_preproc_warning] = STATE(1972), + [sym_preproc_define] = STATE(1972), + [sym_preproc_undef] = STATE(1972), + [sym__identifier_token] = ACTIONS(3271), + [anon_sym_extern] = ACTIONS(3271), + [anon_sym_alias] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_unsafe] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_ref] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_delegate] = ACTIONS(3271), + [anon_sym_record] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_file] = ACTIONS(3271), + [anon_sym_fixed] = ACTIONS(3271), + [anon_sym_internal] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_partial] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_required] = ACTIONS(3271), + [anon_sym_sealed] = ACTIONS(3271), + [anon_sym_virtual] = ACTIONS(3271), + [anon_sym_volatile] = ACTIONS(3271), + [anon_sym_where] = ACTIONS(3271), + [anon_sym_notnull] = ACTIONS(3271), + [anon_sym_unmanaged] = ACTIONS(3271), + [anon_sym_checked] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_this] = ACTIONS(3271), + [anon_sym_scoped] = ACTIONS(3271), + [anon_sym_base] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [sym_predefined_type] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_unchecked] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_lock] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_when] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_foreach] = ACTIONS(3271), + [anon_sym_goto] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_into] = ACTIONS(3271), + [anon_sym_join] = ACTIONS(3271), + [anon_sym_on] = ACTIONS(3271), + [anon_sym_equals] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_orderby] = ACTIONS(3271), + [anon_sym_ascending] = ACTIONS(3271), + [anon_sym_descending] = ACTIONS(3271), + [anon_sym_group] = ACTIONS(3271), + [anon_sym_by] = ACTIONS(3271), + [anon_sym_select] = ACTIONS(3271), + [anon_sym_stackalloc] = ACTIONS(3271), + [anon_sym_sizeof] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym___makeref] = ACTIONS(3271), + [anon_sym___reftype] = ACTIONS(3271), + [anon_sym___refvalue] = ACTIONS(3271), + [sym_null_literal] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3273), + [sym_integer_literal] = ACTIONS(3271), + [sym_real_literal] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [sym_verbatim_string_literal] = ACTIONS(3273), + [aux_sym_preproc_if_token1] = ACTIONS(3273), + [aux_sym_preproc_if_token3] = ACTIONS(3273), + [aux_sym_preproc_else_token1] = ACTIONS(3273), + [aux_sym_preproc_elif_token1] = ACTIONS(3273), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3273), + [sym_interpolation_verbatim_start] = ACTIONS(3273), + [sym_interpolation_raw_start] = ACTIONS(3273), + [sym_raw_string_start] = ACTIONS(3273), + }, + [1973] = { + [sym_preproc_region] = STATE(1973), + [sym_preproc_endregion] = STATE(1973), + [sym_preproc_line] = STATE(1973), + [sym_preproc_pragma] = STATE(1973), + [sym_preproc_nullable] = STATE(1973), + [sym_preproc_error] = STATE(1973), + [sym_preproc_warning] = STATE(1973), + [sym_preproc_define] = STATE(1973), + [sym_preproc_undef] = STATE(1973), + [sym__identifier_token] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_alias] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_ref] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_delegate] = ACTIONS(3275), + [anon_sym_record] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_file] = ACTIONS(3275), + [anon_sym_fixed] = ACTIONS(3275), + [anon_sym_internal] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_partial] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_required] = ACTIONS(3275), + [anon_sym_sealed] = ACTIONS(3275), + [anon_sym_virtual] = ACTIONS(3275), + [anon_sym_volatile] = ACTIONS(3275), + [anon_sym_where] = ACTIONS(3275), + [anon_sym_notnull] = ACTIONS(3275), + [anon_sym_unmanaged] = ACTIONS(3275), + [anon_sym_checked] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_this] = ACTIONS(3275), + [anon_sym_scoped] = ACTIONS(3275), + [anon_sym_base] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [sym_predefined_type] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_unchecked] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_when] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_foreach] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_into] = ACTIONS(3275), + [anon_sym_join] = ACTIONS(3275), + [anon_sym_on] = ACTIONS(3275), + [anon_sym_equals] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_orderby] = ACTIONS(3275), + [anon_sym_ascending] = ACTIONS(3275), + [anon_sym_descending] = ACTIONS(3275), + [anon_sym_group] = ACTIONS(3275), + [anon_sym_by] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_stackalloc] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym___makeref] = ACTIONS(3275), + [anon_sym___reftype] = ACTIONS(3275), + [anon_sym___refvalue] = ACTIONS(3275), + [sym_null_literal] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3277), + [sym_integer_literal] = ACTIONS(3275), + [sym_real_literal] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [sym_verbatim_string_literal] = ACTIONS(3277), + [aux_sym_preproc_if_token1] = ACTIONS(3277), + [aux_sym_preproc_if_token3] = ACTIONS(3277), + [aux_sym_preproc_else_token1] = ACTIONS(3277), + [aux_sym_preproc_elif_token1] = ACTIONS(3277), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3277), + [sym_interpolation_verbatim_start] = ACTIONS(3277), + [sym_interpolation_raw_start] = ACTIONS(3277), + [sym_raw_string_start] = ACTIONS(3277), + }, + [1974] = { + [sym_preproc_region] = STATE(1974), + [sym_preproc_endregion] = STATE(1974), + [sym_preproc_line] = STATE(1974), + [sym_preproc_pragma] = STATE(1974), + [sym_preproc_nullable] = STATE(1974), + [sym_preproc_error] = STATE(1974), + [sym_preproc_warning] = STATE(1974), + [sym_preproc_define] = STATE(1974), + [sym_preproc_undef] = STATE(1974), + [sym__identifier_token] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_alias] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_ref] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_delegate] = ACTIONS(3279), + [anon_sym_record] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_file] = ACTIONS(3279), + [anon_sym_fixed] = ACTIONS(3279), + [anon_sym_internal] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_partial] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_required] = ACTIONS(3279), + [anon_sym_sealed] = ACTIONS(3279), + [anon_sym_virtual] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_where] = ACTIONS(3279), + [anon_sym_notnull] = ACTIONS(3279), + [anon_sym_unmanaged] = ACTIONS(3279), + [anon_sym_checked] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_this] = ACTIONS(3279), + [anon_sym_scoped] = ACTIONS(3279), + [anon_sym_base] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [sym_predefined_type] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_unchecked] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_when] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_foreach] = ACTIONS(3279), + [anon_sym_goto] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_into] = ACTIONS(3279), + [anon_sym_join] = ACTIONS(3279), + [anon_sym_on] = ACTIONS(3279), + [anon_sym_equals] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_orderby] = ACTIONS(3279), + [anon_sym_ascending] = ACTIONS(3279), + [anon_sym_descending] = ACTIONS(3279), + [anon_sym_group] = ACTIONS(3279), + [anon_sym_by] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_stackalloc] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym___makeref] = ACTIONS(3279), + [anon_sym___reftype] = ACTIONS(3279), + [anon_sym___refvalue] = ACTIONS(3279), + [sym_null_literal] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3281), + [sym_integer_literal] = ACTIONS(3279), + [sym_real_literal] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [sym_verbatim_string_literal] = ACTIONS(3281), + [aux_sym_preproc_if_token1] = ACTIONS(3281), + [aux_sym_preproc_if_token3] = ACTIONS(3281), + [aux_sym_preproc_else_token1] = ACTIONS(3281), + [aux_sym_preproc_elif_token1] = ACTIONS(3281), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375914,125 +373756,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3345), - [sym_interpolation_verbatim_start] = ACTIONS(3345), - [sym_interpolation_raw_start] = ACTIONS(3345), - [sym_raw_string_start] = ACTIONS(3345), + [sym_interpolation_regular_start] = ACTIONS(3281), + [sym_interpolation_verbatim_start] = ACTIONS(3281), + [sym_interpolation_raw_start] = ACTIONS(3281), + [sym_raw_string_start] = ACTIONS(3281), }, - [1992] = { - [sym_preproc_region] = STATE(1992), - [sym_preproc_endregion] = STATE(1992), - [sym_preproc_line] = STATE(1992), - [sym_preproc_pragma] = STATE(1992), - [sym_preproc_nullable] = STATE(1992), - [sym_preproc_error] = STATE(1992), - [sym_preproc_warning] = STATE(1992), - [sym_preproc_define] = STATE(1992), - [sym_preproc_undef] = STATE(1992), - [ts_builtin_sym_end] = ACTIONS(3163), - [sym__identifier_token] = ACTIONS(3161), - [anon_sym_extern] = ACTIONS(3161), - [anon_sym_alias] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_global] = ACTIONS(3161), - [anon_sym_using] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_static] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_namespace] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_ref] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_delegate] = ACTIONS(3161), - [anon_sym_record] = ACTIONS(3161), - [anon_sym_abstract] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_file] = ACTIONS(3161), - [anon_sym_fixed] = ACTIONS(3161), - [anon_sym_internal] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3161), - [anon_sym_partial] = ACTIONS(3161), - [anon_sym_private] = ACTIONS(3161), - [anon_sym_protected] = ACTIONS(3161), - [anon_sym_public] = ACTIONS(3161), - [anon_sym_readonly] = ACTIONS(3161), - [anon_sym_required] = ACTIONS(3161), - [anon_sym_sealed] = ACTIONS(3161), - [anon_sym_virtual] = ACTIONS(3161), - [anon_sym_volatile] = ACTIONS(3161), - [anon_sym_where] = ACTIONS(3161), - [anon_sym_notnull] = ACTIONS(3161), - [anon_sym_unmanaged] = ACTIONS(3161), - [anon_sym_checked] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_this] = ACTIONS(3161), - [anon_sym_scoped] = ACTIONS(3161), - [anon_sym_base] = ACTIONS(3161), - [anon_sym_var] = ACTIONS(3161), - [sym_predefined_type] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_unchecked] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_switch] = ACTIONS(3161), - [anon_sym_default] = ACTIONS(3161), - [anon_sym_throw] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_catch] = ACTIONS(3161), - [anon_sym_when] = ACTIONS(3161), - [anon_sym_finally] = ACTIONS(3161), - [anon_sym_await] = ACTIONS(3161), - [anon_sym_foreach] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_DOT_DOT] = ACTIONS(3163), - [anon_sym_from] = ACTIONS(3161), - [anon_sym_into] = ACTIONS(3161), - [anon_sym_join] = ACTIONS(3161), - [anon_sym_on] = ACTIONS(3161), - [anon_sym_equals] = ACTIONS(3161), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_orderby] = ACTIONS(3161), - [anon_sym_ascending] = ACTIONS(3161), - [anon_sym_descending] = ACTIONS(3161), - [anon_sym_group] = ACTIONS(3161), - [anon_sym_by] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_stackalloc] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3161), - [anon_sym_typeof] = ACTIONS(3161), - [anon_sym___makeref] = ACTIONS(3161), - [anon_sym___reftype] = ACTIONS(3161), - [anon_sym___refvalue] = ACTIONS(3161), - [sym_null_literal] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3163), - [sym_integer_literal] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_verbatim_string_literal] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), + [1975] = { + [sym_preproc_region] = STATE(1975), + [sym_preproc_endregion] = STATE(1975), + [sym_preproc_line] = STATE(1975), + [sym_preproc_pragma] = STATE(1975), + [sym_preproc_nullable] = STATE(1975), + [sym_preproc_error] = STATE(1975), + [sym_preproc_warning] = STATE(1975), + [sym_preproc_define] = STATE(1975), + [sym_preproc_undef] = STATE(1975), + [ts_builtin_sym_end] = ACTIONS(3167), + [sym__identifier_token] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_unsafe] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_ref] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_delegate] = ACTIONS(3165), + [anon_sym_record] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_file] = ACTIONS(3165), + [anon_sym_fixed] = ACTIONS(3165), + [anon_sym_internal] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_partial] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_required] = ACTIONS(3165), + [anon_sym_sealed] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_notnull] = ACTIONS(3165), + [anon_sym_unmanaged] = ACTIONS(3165), + [anon_sym_checked] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3165), + [anon_sym_scoped] = ACTIONS(3165), + [anon_sym_base] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [sym_predefined_type] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_unchecked] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_lock] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3165), + [anon_sym_when] = ACTIONS(3165), + [anon_sym_finally] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3165), + [anon_sym_foreach] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3165), + [anon_sym_into] = ACTIONS(3165), + [anon_sym_join] = ACTIONS(3165), + [anon_sym_on] = ACTIONS(3165), + [anon_sym_equals] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_orderby] = ACTIONS(3165), + [anon_sym_ascending] = ACTIONS(3165), + [anon_sym_descending] = ACTIONS(3165), + [anon_sym_group] = ACTIONS(3165), + [anon_sym_by] = ACTIONS(3165), + [anon_sym_select] = ACTIONS(3165), + [anon_sym_stackalloc] = ACTIONS(3165), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym_typeof] = ACTIONS(3165), + [anon_sym___makeref] = ACTIONS(3165), + [anon_sym___reftype] = ACTIONS(3165), + [anon_sym___refvalue] = ACTIONS(3165), + [sym_null_literal] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3167), + [sym_integer_literal] = ACTIONS(3165), + [sym_real_literal] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_verbatim_string_literal] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376043,125 +373885,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3163), - [sym_interpolation_verbatim_start] = ACTIONS(3163), - [sym_interpolation_raw_start] = ACTIONS(3163), - [sym_raw_string_start] = ACTIONS(3163), + [sym_interpolation_regular_start] = ACTIONS(3167), + [sym_interpolation_verbatim_start] = ACTIONS(3167), + [sym_interpolation_raw_start] = ACTIONS(3167), + [sym_raw_string_start] = ACTIONS(3167), }, - [1993] = { - [sym_preproc_region] = STATE(1993), - [sym_preproc_endregion] = STATE(1993), - [sym_preproc_line] = STATE(1993), - [sym_preproc_pragma] = STATE(1993), - [sym_preproc_nullable] = STATE(1993), - [sym_preproc_error] = STATE(1993), - [sym_preproc_warning] = STATE(1993), - [sym_preproc_define] = STATE(1993), - [sym_preproc_undef] = STATE(1993), - [sym__identifier_token] = ACTIONS(3347), - [anon_sym_extern] = ACTIONS(3347), - [anon_sym_alias] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_global] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_ref] = ACTIONS(3347), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_delegate] = ACTIONS(3347), - [anon_sym_record] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_file] = ACTIONS(3347), - [anon_sym_fixed] = ACTIONS(3347), - [anon_sym_internal] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_partial] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_required] = ACTIONS(3347), - [anon_sym_sealed] = ACTIONS(3347), - [anon_sym_virtual] = ACTIONS(3347), - [anon_sym_volatile] = ACTIONS(3347), - [anon_sym_where] = ACTIONS(3347), - [anon_sym_notnull] = ACTIONS(3347), - [anon_sym_unmanaged] = ACTIONS(3347), - [anon_sym_checked] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_this] = ACTIONS(3347), - [anon_sym_scoped] = ACTIONS(3347), - [anon_sym_base] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [sym_predefined_type] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_unchecked] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_when] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_foreach] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_DOT_DOT] = ACTIONS(3349), - [anon_sym_from] = ACTIONS(3347), - [anon_sym_into] = ACTIONS(3347), - [anon_sym_join] = ACTIONS(3347), - [anon_sym_on] = ACTIONS(3347), - [anon_sym_equals] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_orderby] = ACTIONS(3347), - [anon_sym_ascending] = ACTIONS(3347), - [anon_sym_descending] = ACTIONS(3347), - [anon_sym_group] = ACTIONS(3347), - [anon_sym_by] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_stackalloc] = ACTIONS(3347), - [anon_sym_sizeof] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym___makeref] = ACTIONS(3347), - [anon_sym___reftype] = ACTIONS(3347), - [anon_sym___refvalue] = ACTIONS(3347), - [sym_null_literal] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3349), - [sym_integer_literal] = ACTIONS(3347), - [sym_real_literal] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [sym_verbatim_string_literal] = ACTIONS(3349), - [aux_sym_preproc_if_token1] = ACTIONS(3349), - [aux_sym_preproc_if_token3] = ACTIONS(3349), - [aux_sym_preproc_else_token1] = ACTIONS(3349), - [aux_sym_preproc_elif_token1] = ACTIONS(3349), + [1976] = { + [sym_preproc_region] = STATE(1976), + [sym_preproc_endregion] = STATE(1976), + [sym_preproc_line] = STATE(1976), + [sym_preproc_pragma] = STATE(1976), + [sym_preproc_nullable] = STATE(1976), + [sym_preproc_error] = STATE(1976), + [sym_preproc_warning] = STATE(1976), + [sym_preproc_define] = STATE(1976), + [sym_preproc_undef] = STATE(1976), + [sym__identifier_token] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_alias] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_ref] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_delegate] = ACTIONS(3283), + [anon_sym_record] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_file] = ACTIONS(3283), + [anon_sym_fixed] = ACTIONS(3283), + [anon_sym_internal] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_partial] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_required] = ACTIONS(3283), + [anon_sym_sealed] = ACTIONS(3283), + [anon_sym_virtual] = ACTIONS(3283), + [anon_sym_volatile] = ACTIONS(3283), + [anon_sym_where] = ACTIONS(3283), + [anon_sym_notnull] = ACTIONS(3283), + [anon_sym_unmanaged] = ACTIONS(3283), + [anon_sym_checked] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_this] = ACTIONS(3283), + [anon_sym_scoped] = ACTIONS(3283), + [anon_sym_base] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [sym_predefined_type] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_unchecked] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_when] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_foreach] = ACTIONS(3283), + [anon_sym_goto] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3285), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_into] = ACTIONS(3283), + [anon_sym_join] = ACTIONS(3283), + [anon_sym_on] = ACTIONS(3283), + [anon_sym_equals] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_orderby] = ACTIONS(3283), + [anon_sym_ascending] = ACTIONS(3283), + [anon_sym_descending] = ACTIONS(3283), + [anon_sym_group] = ACTIONS(3283), + [anon_sym_by] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_stackalloc] = ACTIONS(3283), + [anon_sym_sizeof] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym___makeref] = ACTIONS(3283), + [anon_sym___reftype] = ACTIONS(3283), + [anon_sym___refvalue] = ACTIONS(3283), + [sym_null_literal] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3285), + [sym_integer_literal] = ACTIONS(3283), + [sym_real_literal] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [sym_verbatim_string_literal] = ACTIONS(3285), + [aux_sym_preproc_if_token1] = ACTIONS(3285), + [aux_sym_preproc_if_token3] = ACTIONS(3285), + [aux_sym_preproc_else_token1] = ACTIONS(3285), + [aux_sym_preproc_elif_token1] = ACTIONS(3285), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376172,124 +374014,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3349), - [sym_interpolation_verbatim_start] = ACTIONS(3349), - [sym_interpolation_raw_start] = ACTIONS(3349), - [sym_raw_string_start] = ACTIONS(3349), + [sym_interpolation_regular_start] = ACTIONS(3285), + [sym_interpolation_verbatim_start] = ACTIONS(3285), + [sym_interpolation_raw_start] = ACTIONS(3285), + [sym_raw_string_start] = ACTIONS(3285), }, - [1994] = { - [sym_preproc_region] = STATE(1994), - [sym_preproc_endregion] = STATE(1994), - [sym_preproc_line] = STATE(1994), - [sym_preproc_pragma] = STATE(1994), - [sym_preproc_nullable] = STATE(1994), - [sym_preproc_error] = STATE(1994), - [sym_preproc_warning] = STATE(1994), - [sym_preproc_define] = STATE(1994), - [sym_preproc_undef] = STATE(1994), - [sym__identifier_token] = ACTIONS(3351), - [anon_sym_extern] = ACTIONS(3351), - [anon_sym_alias] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_global] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_ref] = ACTIONS(3351), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_delegate] = ACTIONS(3351), - [anon_sym_record] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_file] = ACTIONS(3351), - [anon_sym_fixed] = ACTIONS(3351), - [anon_sym_internal] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_partial] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_required] = ACTIONS(3351), - [anon_sym_sealed] = ACTIONS(3351), - [anon_sym_virtual] = ACTIONS(3351), - [anon_sym_volatile] = ACTIONS(3351), - [anon_sym_where] = ACTIONS(3351), - [anon_sym_notnull] = ACTIONS(3351), - [anon_sym_unmanaged] = ACTIONS(3351), - [anon_sym_checked] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_this] = ACTIONS(3351), - [anon_sym_scoped] = ACTIONS(3351), - [anon_sym_base] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [sym_predefined_type] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_unchecked] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_when] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_foreach] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3353), - [anon_sym_from] = ACTIONS(3351), - [anon_sym_into] = ACTIONS(3351), - [anon_sym_join] = ACTIONS(3351), - [anon_sym_on] = ACTIONS(3351), - [anon_sym_equals] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_orderby] = ACTIONS(3351), - [anon_sym_ascending] = ACTIONS(3351), - [anon_sym_descending] = ACTIONS(3351), - [anon_sym_group] = ACTIONS(3351), - [anon_sym_by] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_stackalloc] = ACTIONS(3351), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym___makeref] = ACTIONS(3351), - [anon_sym___reftype] = ACTIONS(3351), - [anon_sym___refvalue] = ACTIONS(3351), - [sym_null_literal] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3353), - [sym_integer_literal] = ACTIONS(3351), - [sym_real_literal] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [sym_verbatim_string_literal] = ACTIONS(3353), - [aux_sym_preproc_if_token1] = ACTIONS(3353), - [aux_sym_preproc_if_token3] = ACTIONS(3353), - [aux_sym_preproc_else_token1] = ACTIONS(3353), - [aux_sym_preproc_elif_token1] = ACTIONS(3353), + [1977] = { + [sym_preproc_region] = STATE(1977), + [sym_preproc_endregion] = STATE(1977), + [sym_preproc_line] = STATE(1977), + [sym_preproc_pragma] = STATE(1977), + [sym_preproc_nullable] = STATE(1977), + [sym_preproc_error] = STATE(1977), + [sym_preproc_warning] = STATE(1977), + [sym_preproc_define] = STATE(1977), + [sym_preproc_undef] = STATE(1977), + [sym__identifier_token] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_alias] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_ref] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_delegate] = ACTIONS(3287), + [anon_sym_record] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_file] = ACTIONS(3287), + [anon_sym_fixed] = ACTIONS(3287), + [anon_sym_internal] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_partial] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_required] = ACTIONS(3287), + [anon_sym_sealed] = ACTIONS(3287), + [anon_sym_virtual] = ACTIONS(3287), + [anon_sym_volatile] = ACTIONS(3287), + [anon_sym_where] = ACTIONS(3287), + [anon_sym_notnull] = ACTIONS(3287), + [anon_sym_unmanaged] = ACTIONS(3287), + [anon_sym_checked] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_this] = ACTIONS(3287), + [anon_sym_scoped] = ACTIONS(3287), + [anon_sym_base] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [sym_predefined_type] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_unchecked] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_lock] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_when] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_foreach] = ACTIONS(3287), + [anon_sym_goto] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3289), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_into] = ACTIONS(3287), + [anon_sym_join] = ACTIONS(3287), + [anon_sym_on] = ACTIONS(3287), + [anon_sym_equals] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_orderby] = ACTIONS(3287), + [anon_sym_ascending] = ACTIONS(3287), + [anon_sym_descending] = ACTIONS(3287), + [anon_sym_group] = ACTIONS(3287), + [anon_sym_by] = ACTIONS(3287), + [anon_sym_select] = ACTIONS(3287), + [anon_sym_stackalloc] = ACTIONS(3287), + [anon_sym_sizeof] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym___makeref] = ACTIONS(3287), + [anon_sym___reftype] = ACTIONS(3287), + [anon_sym___refvalue] = ACTIONS(3287), + [sym_null_literal] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3289), + [sym_integer_literal] = ACTIONS(3287), + [sym_real_literal] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [sym_verbatim_string_literal] = ACTIONS(3289), + [aux_sym_preproc_if_token1] = ACTIONS(3289), + [aux_sym_preproc_if_token3] = ACTIONS(3289), + [aux_sym_preproc_else_token1] = ACTIONS(3289), + [aux_sym_preproc_elif_token1] = ACTIONS(3289), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376300,124 +374143,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3353), - [sym_interpolation_verbatim_start] = ACTIONS(3353), - [sym_interpolation_raw_start] = ACTIONS(3353), - [sym_raw_string_start] = ACTIONS(3353), + [sym_interpolation_regular_start] = ACTIONS(3289), + [sym_interpolation_verbatim_start] = ACTIONS(3289), + [sym_interpolation_raw_start] = ACTIONS(3289), + [sym_raw_string_start] = ACTIONS(3289), }, - [1995] = { - [sym_preproc_region] = STATE(1995), - [sym_preproc_endregion] = STATE(1995), - [sym_preproc_line] = STATE(1995), - [sym_preproc_pragma] = STATE(1995), - [sym_preproc_nullable] = STATE(1995), - [sym_preproc_error] = STATE(1995), - [sym_preproc_warning] = STATE(1995), - [sym_preproc_define] = STATE(1995), - [sym_preproc_undef] = STATE(1995), - [sym__identifier_token] = ACTIONS(3355), - [anon_sym_extern] = ACTIONS(3355), - [anon_sym_alias] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_global] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_ref] = ACTIONS(3355), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_delegate] = ACTIONS(3355), - [anon_sym_record] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_file] = ACTIONS(3355), - [anon_sym_fixed] = ACTIONS(3355), - [anon_sym_internal] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_partial] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_required] = ACTIONS(3355), - [anon_sym_sealed] = ACTIONS(3355), - [anon_sym_virtual] = ACTIONS(3355), - [anon_sym_volatile] = ACTIONS(3355), - [anon_sym_where] = ACTIONS(3355), - [anon_sym_notnull] = ACTIONS(3355), - [anon_sym_unmanaged] = ACTIONS(3355), - [anon_sym_checked] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_true] = ACTIONS(3355), - [anon_sym_false] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_this] = ACTIONS(3355), - [anon_sym_scoped] = ACTIONS(3355), - [anon_sym_base] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [sym_predefined_type] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_unchecked] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_when] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_foreach] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3357), - [anon_sym_from] = ACTIONS(3355), - [anon_sym_into] = ACTIONS(3355), - [anon_sym_join] = ACTIONS(3355), - [anon_sym_on] = ACTIONS(3355), - [anon_sym_equals] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_orderby] = ACTIONS(3355), - [anon_sym_ascending] = ACTIONS(3355), - [anon_sym_descending] = ACTIONS(3355), - [anon_sym_group] = ACTIONS(3355), - [anon_sym_by] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_stackalloc] = ACTIONS(3355), - [anon_sym_sizeof] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym___makeref] = ACTIONS(3355), - [anon_sym___reftype] = ACTIONS(3355), - [anon_sym___refvalue] = ACTIONS(3355), - [sym_null_literal] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3357), - [sym_integer_literal] = ACTIONS(3355), - [sym_real_literal] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [sym_verbatim_string_literal] = ACTIONS(3357), - [aux_sym_preproc_if_token1] = ACTIONS(3357), - [aux_sym_preproc_if_token3] = ACTIONS(3357), - [aux_sym_preproc_else_token1] = ACTIONS(3357), - [aux_sym_preproc_elif_token1] = ACTIONS(3357), + [1978] = { + [sym_preproc_region] = STATE(1978), + [sym_preproc_endregion] = STATE(1978), + [sym_preproc_line] = STATE(1978), + [sym_preproc_pragma] = STATE(1978), + [sym_preproc_nullable] = STATE(1978), + [sym_preproc_error] = STATE(1978), + [sym_preproc_warning] = STATE(1978), + [sym_preproc_define] = STATE(1978), + [sym_preproc_undef] = STATE(1978), + [sym__identifier_token] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_alias] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_ref] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_delegate] = ACTIONS(3291), + [anon_sym_record] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_file] = ACTIONS(3291), + [anon_sym_fixed] = ACTIONS(3291), + [anon_sym_internal] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_partial] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_required] = ACTIONS(3291), + [anon_sym_sealed] = ACTIONS(3291), + [anon_sym_virtual] = ACTIONS(3291), + [anon_sym_volatile] = ACTIONS(3291), + [anon_sym_where] = ACTIONS(3291), + [anon_sym_notnull] = ACTIONS(3291), + [anon_sym_unmanaged] = ACTIONS(3291), + [anon_sym_checked] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_this] = ACTIONS(3291), + [anon_sym_scoped] = ACTIONS(3291), + [anon_sym_base] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [sym_predefined_type] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_unchecked] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_when] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_foreach] = ACTIONS(3291), + [anon_sym_goto] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_into] = ACTIONS(3291), + [anon_sym_join] = ACTIONS(3291), + [anon_sym_on] = ACTIONS(3291), + [anon_sym_equals] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_orderby] = ACTIONS(3291), + [anon_sym_ascending] = ACTIONS(3291), + [anon_sym_descending] = ACTIONS(3291), + [anon_sym_group] = ACTIONS(3291), + [anon_sym_by] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_stackalloc] = ACTIONS(3291), + [anon_sym_sizeof] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym___makeref] = ACTIONS(3291), + [anon_sym___reftype] = ACTIONS(3291), + [anon_sym___refvalue] = ACTIONS(3291), + [sym_null_literal] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3293), + [sym_integer_literal] = ACTIONS(3291), + [sym_real_literal] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [sym_verbatim_string_literal] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3293), + [aux_sym_preproc_if_token3] = ACTIONS(3293), + [aux_sym_preproc_else_token1] = ACTIONS(3293), + [aux_sym_preproc_elif_token1] = ACTIONS(3293), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376428,124 +374272,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3357), - [sym_interpolation_verbatim_start] = ACTIONS(3357), - [sym_interpolation_raw_start] = ACTIONS(3357), - [sym_raw_string_start] = ACTIONS(3357), + [sym_interpolation_regular_start] = ACTIONS(3293), + [sym_interpolation_verbatim_start] = ACTIONS(3293), + [sym_interpolation_raw_start] = ACTIONS(3293), + [sym_raw_string_start] = ACTIONS(3293), }, - [1996] = { - [sym_preproc_region] = STATE(1996), - [sym_preproc_endregion] = STATE(1996), - [sym_preproc_line] = STATE(1996), - [sym_preproc_pragma] = STATE(1996), - [sym_preproc_nullable] = STATE(1996), - [sym_preproc_error] = STATE(1996), - [sym_preproc_warning] = STATE(1996), - [sym_preproc_define] = STATE(1996), - [sym_preproc_undef] = STATE(1996), - [sym__identifier_token] = ACTIONS(3359), - [anon_sym_extern] = ACTIONS(3359), - [anon_sym_alias] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_global] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_ref] = ACTIONS(3359), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_delegate] = ACTIONS(3359), - [anon_sym_record] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_file] = ACTIONS(3359), - [anon_sym_fixed] = ACTIONS(3359), - [anon_sym_internal] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_partial] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_required] = ACTIONS(3359), - [anon_sym_sealed] = ACTIONS(3359), - [anon_sym_virtual] = ACTIONS(3359), - [anon_sym_volatile] = ACTIONS(3359), - [anon_sym_where] = ACTIONS(3359), - [anon_sym_notnull] = ACTIONS(3359), - [anon_sym_unmanaged] = ACTIONS(3359), - [anon_sym_checked] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_this] = ACTIONS(3359), - [anon_sym_scoped] = ACTIONS(3359), - [anon_sym_base] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [sym_predefined_type] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_unchecked] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_when] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_foreach] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3361), - [anon_sym_from] = ACTIONS(3359), - [anon_sym_into] = ACTIONS(3359), - [anon_sym_join] = ACTIONS(3359), - [anon_sym_on] = ACTIONS(3359), - [anon_sym_equals] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_orderby] = ACTIONS(3359), - [anon_sym_ascending] = ACTIONS(3359), - [anon_sym_descending] = ACTIONS(3359), - [anon_sym_group] = ACTIONS(3359), - [anon_sym_by] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_stackalloc] = ACTIONS(3359), - [anon_sym_sizeof] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym___makeref] = ACTIONS(3359), - [anon_sym___reftype] = ACTIONS(3359), - [anon_sym___refvalue] = ACTIONS(3359), - [sym_null_literal] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3361), - [sym_integer_literal] = ACTIONS(3359), - [sym_real_literal] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [sym_verbatim_string_literal] = ACTIONS(3361), - [aux_sym_preproc_if_token1] = ACTIONS(3361), - [aux_sym_preproc_if_token3] = ACTIONS(3361), - [aux_sym_preproc_else_token1] = ACTIONS(3361), - [aux_sym_preproc_elif_token1] = ACTIONS(3361), + [1979] = { + [sym_preproc_region] = STATE(1979), + [sym_preproc_endregion] = STATE(1979), + [sym_preproc_line] = STATE(1979), + [sym_preproc_pragma] = STATE(1979), + [sym_preproc_nullable] = STATE(1979), + [sym_preproc_error] = STATE(1979), + [sym_preproc_warning] = STATE(1979), + [sym_preproc_define] = STATE(1979), + [sym_preproc_undef] = STATE(1979), + [sym__identifier_token] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_alias] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_ref] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_delegate] = ACTIONS(3295), + [anon_sym_record] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_file] = ACTIONS(3295), + [anon_sym_fixed] = ACTIONS(3295), + [anon_sym_internal] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_partial] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_required] = ACTIONS(3295), + [anon_sym_sealed] = ACTIONS(3295), + [anon_sym_virtual] = ACTIONS(3295), + [anon_sym_volatile] = ACTIONS(3295), + [anon_sym_where] = ACTIONS(3295), + [anon_sym_notnull] = ACTIONS(3295), + [anon_sym_unmanaged] = ACTIONS(3295), + [anon_sym_checked] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_this] = ACTIONS(3295), + [anon_sym_scoped] = ACTIONS(3295), + [anon_sym_base] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [sym_predefined_type] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_unchecked] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_when] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_foreach] = ACTIONS(3295), + [anon_sym_goto] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_into] = ACTIONS(3295), + [anon_sym_join] = ACTIONS(3295), + [anon_sym_on] = ACTIONS(3295), + [anon_sym_equals] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_orderby] = ACTIONS(3295), + [anon_sym_ascending] = ACTIONS(3295), + [anon_sym_descending] = ACTIONS(3295), + [anon_sym_group] = ACTIONS(3295), + [anon_sym_by] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_stackalloc] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym___makeref] = ACTIONS(3295), + [anon_sym___reftype] = ACTIONS(3295), + [anon_sym___refvalue] = ACTIONS(3295), + [sym_null_literal] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3297), + [sym_integer_literal] = ACTIONS(3295), + [sym_real_literal] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [sym_verbatim_string_literal] = ACTIONS(3297), + [aux_sym_preproc_if_token1] = ACTIONS(3297), + [aux_sym_preproc_if_token3] = ACTIONS(3297), + [aux_sym_preproc_else_token1] = ACTIONS(3297), + [aux_sym_preproc_elif_token1] = ACTIONS(3297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376556,124 +374401,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3361), - [sym_interpolation_verbatim_start] = ACTIONS(3361), - [sym_interpolation_raw_start] = ACTIONS(3361), - [sym_raw_string_start] = ACTIONS(3361), + [sym_interpolation_regular_start] = ACTIONS(3297), + [sym_interpolation_verbatim_start] = ACTIONS(3297), + [sym_interpolation_raw_start] = ACTIONS(3297), + [sym_raw_string_start] = ACTIONS(3297), }, - [1997] = { - [sym_preproc_region] = STATE(1997), - [sym_preproc_endregion] = STATE(1997), - [sym_preproc_line] = STATE(1997), - [sym_preproc_pragma] = STATE(1997), - [sym_preproc_nullable] = STATE(1997), - [sym_preproc_error] = STATE(1997), - [sym_preproc_warning] = STATE(1997), - [sym_preproc_define] = STATE(1997), - [sym_preproc_undef] = STATE(1997), - [sym__identifier_token] = ACTIONS(3363), - [anon_sym_extern] = ACTIONS(3363), - [anon_sym_alias] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_global] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_ref] = ACTIONS(3363), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_delegate] = ACTIONS(3363), - [anon_sym_record] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_file] = ACTIONS(3363), - [anon_sym_fixed] = ACTIONS(3363), - [anon_sym_internal] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_partial] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_required] = ACTIONS(3363), - [anon_sym_sealed] = ACTIONS(3363), - [anon_sym_virtual] = ACTIONS(3363), - [anon_sym_volatile] = ACTIONS(3363), - [anon_sym_where] = ACTIONS(3363), - [anon_sym_notnull] = ACTIONS(3363), - [anon_sym_unmanaged] = ACTIONS(3363), - [anon_sym_checked] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_this] = ACTIONS(3363), - [anon_sym_scoped] = ACTIONS(3363), - [anon_sym_base] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [sym_predefined_type] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_unchecked] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_when] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_foreach] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3365), - [anon_sym_from] = ACTIONS(3363), - [anon_sym_into] = ACTIONS(3363), - [anon_sym_join] = ACTIONS(3363), - [anon_sym_on] = ACTIONS(3363), - [anon_sym_equals] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_orderby] = ACTIONS(3363), - [anon_sym_ascending] = ACTIONS(3363), - [anon_sym_descending] = ACTIONS(3363), - [anon_sym_group] = ACTIONS(3363), - [anon_sym_by] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_stackalloc] = ACTIONS(3363), - [anon_sym_sizeof] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym___makeref] = ACTIONS(3363), - [anon_sym___reftype] = ACTIONS(3363), - [anon_sym___refvalue] = ACTIONS(3363), - [sym_null_literal] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3365), - [sym_integer_literal] = ACTIONS(3363), - [sym_real_literal] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [sym_verbatim_string_literal] = ACTIONS(3365), - [aux_sym_preproc_if_token1] = ACTIONS(3365), - [aux_sym_preproc_if_token3] = ACTIONS(3365), - [aux_sym_preproc_else_token1] = ACTIONS(3365), - [aux_sym_preproc_elif_token1] = ACTIONS(3365), + [1980] = { + [sym_preproc_region] = STATE(1980), + [sym_preproc_endregion] = STATE(1980), + [sym_preproc_line] = STATE(1980), + [sym_preproc_pragma] = STATE(1980), + [sym_preproc_nullable] = STATE(1980), + [sym_preproc_error] = STATE(1980), + [sym_preproc_warning] = STATE(1980), + [sym_preproc_define] = STATE(1980), + [sym_preproc_undef] = STATE(1980), + [sym__identifier_token] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_alias] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_ref] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_delegate] = ACTIONS(3299), + [anon_sym_record] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_file] = ACTIONS(3299), + [anon_sym_fixed] = ACTIONS(3299), + [anon_sym_internal] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_partial] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_required] = ACTIONS(3299), + [anon_sym_sealed] = ACTIONS(3299), + [anon_sym_virtual] = ACTIONS(3299), + [anon_sym_volatile] = ACTIONS(3299), + [anon_sym_where] = ACTIONS(3299), + [anon_sym_notnull] = ACTIONS(3299), + [anon_sym_unmanaged] = ACTIONS(3299), + [anon_sym_checked] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_this] = ACTIONS(3299), + [anon_sym_scoped] = ACTIONS(3299), + [anon_sym_base] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [sym_predefined_type] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_unchecked] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_when] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_foreach] = ACTIONS(3299), + [anon_sym_goto] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_DOT_DOT] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_into] = ACTIONS(3299), + [anon_sym_join] = ACTIONS(3299), + [anon_sym_on] = ACTIONS(3299), + [anon_sym_equals] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_orderby] = ACTIONS(3299), + [anon_sym_ascending] = ACTIONS(3299), + [anon_sym_descending] = ACTIONS(3299), + [anon_sym_group] = ACTIONS(3299), + [anon_sym_by] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_stackalloc] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym___makeref] = ACTIONS(3299), + [anon_sym___reftype] = ACTIONS(3299), + [anon_sym___refvalue] = ACTIONS(3299), + [sym_null_literal] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3301), + [sym_integer_literal] = ACTIONS(3299), + [sym_real_literal] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [sym_verbatim_string_literal] = ACTIONS(3301), + [aux_sym_preproc_if_token1] = ACTIONS(3301), + [aux_sym_preproc_if_token3] = ACTIONS(3301), + [aux_sym_preproc_else_token1] = ACTIONS(3301), + [aux_sym_preproc_elif_token1] = ACTIONS(3301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376684,124 +374530,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3365), - [sym_interpolation_verbatim_start] = ACTIONS(3365), - [sym_interpolation_raw_start] = ACTIONS(3365), - [sym_raw_string_start] = ACTIONS(3365), + [sym_interpolation_regular_start] = ACTIONS(3301), + [sym_interpolation_verbatim_start] = ACTIONS(3301), + [sym_interpolation_raw_start] = ACTIONS(3301), + [sym_raw_string_start] = ACTIONS(3301), }, - [1998] = { - [sym_preproc_region] = STATE(1998), - [sym_preproc_endregion] = STATE(1998), - [sym_preproc_line] = STATE(1998), - [sym_preproc_pragma] = STATE(1998), - [sym_preproc_nullable] = STATE(1998), - [sym_preproc_error] = STATE(1998), - [sym_preproc_warning] = STATE(1998), - [sym_preproc_define] = STATE(1998), - [sym_preproc_undef] = STATE(1998), - [sym__identifier_token] = ACTIONS(3367), - [anon_sym_extern] = ACTIONS(3367), - [anon_sym_alias] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_global] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_ref] = ACTIONS(3367), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_delegate] = ACTIONS(3367), - [anon_sym_record] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_file] = ACTIONS(3367), - [anon_sym_fixed] = ACTIONS(3367), - [anon_sym_internal] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_partial] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_required] = ACTIONS(3367), - [anon_sym_sealed] = ACTIONS(3367), - [anon_sym_virtual] = ACTIONS(3367), - [anon_sym_volatile] = ACTIONS(3367), - [anon_sym_where] = ACTIONS(3367), - [anon_sym_notnull] = ACTIONS(3367), - [anon_sym_unmanaged] = ACTIONS(3367), - [anon_sym_checked] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3367), - [anon_sym_false] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3367), - [anon_sym_scoped] = ACTIONS(3367), - [anon_sym_base] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [sym_predefined_type] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_unchecked] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_when] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_foreach] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [anon_sym_from] = ACTIONS(3367), - [anon_sym_into] = ACTIONS(3367), - [anon_sym_join] = ACTIONS(3367), - [anon_sym_on] = ACTIONS(3367), - [anon_sym_equals] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_orderby] = ACTIONS(3367), - [anon_sym_ascending] = ACTIONS(3367), - [anon_sym_descending] = ACTIONS(3367), - [anon_sym_group] = ACTIONS(3367), - [anon_sym_by] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_stackalloc] = ACTIONS(3367), - [anon_sym_sizeof] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym___makeref] = ACTIONS(3367), - [anon_sym___reftype] = ACTIONS(3367), - [anon_sym___refvalue] = ACTIONS(3367), - [sym_null_literal] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3369), - [sym_integer_literal] = ACTIONS(3367), - [sym_real_literal] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [sym_verbatim_string_literal] = ACTIONS(3369), - [aux_sym_preproc_if_token1] = ACTIONS(3369), - [aux_sym_preproc_if_token3] = ACTIONS(3369), - [aux_sym_preproc_else_token1] = ACTIONS(3369), - [aux_sym_preproc_elif_token1] = ACTIONS(3369), + [1981] = { + [sym_preproc_region] = STATE(1981), + [sym_preproc_endregion] = STATE(1981), + [sym_preproc_line] = STATE(1981), + [sym_preproc_pragma] = STATE(1981), + [sym_preproc_nullable] = STATE(1981), + [sym_preproc_error] = STATE(1981), + [sym_preproc_warning] = STATE(1981), + [sym_preproc_define] = STATE(1981), + [sym_preproc_undef] = STATE(1981), + [sym__identifier_token] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(3303), + [anon_sym_alias] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_unsafe] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_ref] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_delegate] = ACTIONS(3303), + [anon_sym_record] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_file] = ACTIONS(3303), + [anon_sym_fixed] = ACTIONS(3303), + [anon_sym_internal] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_partial] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_required] = ACTIONS(3303), + [anon_sym_sealed] = ACTIONS(3303), + [anon_sym_virtual] = ACTIONS(3303), + [anon_sym_volatile] = ACTIONS(3303), + [anon_sym_where] = ACTIONS(3303), + [anon_sym_notnull] = ACTIONS(3303), + [anon_sym_unmanaged] = ACTIONS(3303), + [anon_sym_checked] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_this] = ACTIONS(3303), + [anon_sym_scoped] = ACTIONS(3303), + [anon_sym_base] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [sym_predefined_type] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_unchecked] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_lock] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_when] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_foreach] = ACTIONS(3303), + [anon_sym_goto] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3305), + [anon_sym_from] = ACTIONS(3303), + [anon_sym_into] = ACTIONS(3303), + [anon_sym_join] = ACTIONS(3303), + [anon_sym_on] = ACTIONS(3303), + [anon_sym_equals] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_orderby] = ACTIONS(3303), + [anon_sym_ascending] = ACTIONS(3303), + [anon_sym_descending] = ACTIONS(3303), + [anon_sym_group] = ACTIONS(3303), + [anon_sym_by] = ACTIONS(3303), + [anon_sym_select] = ACTIONS(3303), + [anon_sym_stackalloc] = ACTIONS(3303), + [anon_sym_sizeof] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym___makeref] = ACTIONS(3303), + [anon_sym___reftype] = ACTIONS(3303), + [anon_sym___refvalue] = ACTIONS(3303), + [sym_null_literal] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3305), + [sym_integer_literal] = ACTIONS(3303), + [sym_real_literal] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_verbatim_string_literal] = ACTIONS(3305), + [aux_sym_preproc_if_token1] = ACTIONS(3305), + [aux_sym_preproc_if_token3] = ACTIONS(3305), + [aux_sym_preproc_else_token1] = ACTIONS(3305), + [aux_sym_preproc_elif_token1] = ACTIONS(3305), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376812,124 +374659,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3369), - [sym_interpolation_verbatim_start] = ACTIONS(3369), - [sym_interpolation_raw_start] = ACTIONS(3369), - [sym_raw_string_start] = ACTIONS(3369), + [sym_interpolation_regular_start] = ACTIONS(3305), + [sym_interpolation_verbatim_start] = ACTIONS(3305), + [sym_interpolation_raw_start] = ACTIONS(3305), + [sym_raw_string_start] = ACTIONS(3305), }, - [1999] = { - [sym_preproc_region] = STATE(1999), - [sym_preproc_endregion] = STATE(1999), - [sym_preproc_line] = STATE(1999), - [sym_preproc_pragma] = STATE(1999), - [sym_preproc_nullable] = STATE(1999), - [sym_preproc_error] = STATE(1999), - [sym_preproc_warning] = STATE(1999), - [sym_preproc_define] = STATE(1999), - [sym_preproc_undef] = STATE(1999), - [sym__identifier_token] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_alias] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_global] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_ref] = ACTIONS(3371), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_delegate] = ACTIONS(3371), - [anon_sym_record] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_file] = ACTIONS(3371), - [anon_sym_fixed] = ACTIONS(3371), - [anon_sym_internal] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_partial] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_required] = ACTIONS(3371), - [anon_sym_sealed] = ACTIONS(3371), - [anon_sym_virtual] = ACTIONS(3371), - [anon_sym_volatile] = ACTIONS(3371), - [anon_sym_where] = ACTIONS(3371), - [anon_sym_notnull] = ACTIONS(3371), - [anon_sym_unmanaged] = ACTIONS(3371), - [anon_sym_checked] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_scoped] = ACTIONS(3371), - [anon_sym_base] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [sym_predefined_type] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_unchecked] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_when] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_foreach] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_from] = ACTIONS(3371), - [anon_sym_into] = ACTIONS(3371), - [anon_sym_join] = ACTIONS(3371), - [anon_sym_on] = ACTIONS(3371), - [anon_sym_equals] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_orderby] = ACTIONS(3371), - [anon_sym_ascending] = ACTIONS(3371), - [anon_sym_descending] = ACTIONS(3371), - [anon_sym_group] = ACTIONS(3371), - [anon_sym_by] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_stackalloc] = ACTIONS(3371), - [anon_sym_sizeof] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym___makeref] = ACTIONS(3371), - [anon_sym___reftype] = ACTIONS(3371), - [anon_sym___refvalue] = ACTIONS(3371), - [sym_null_literal] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3373), - [sym_integer_literal] = ACTIONS(3371), - [sym_real_literal] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [sym_verbatim_string_literal] = ACTIONS(3373), - [aux_sym_preproc_if_token1] = ACTIONS(3373), - [aux_sym_preproc_if_token3] = ACTIONS(3373), - [aux_sym_preproc_else_token1] = ACTIONS(3373), - [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [1982] = { + [sym_preproc_region] = STATE(1982), + [sym_preproc_endregion] = STATE(1982), + [sym_preproc_line] = STATE(1982), + [sym_preproc_pragma] = STATE(1982), + [sym_preproc_nullable] = STATE(1982), + [sym_preproc_error] = STATE(1982), + [sym_preproc_warning] = STATE(1982), + [sym_preproc_define] = STATE(1982), + [sym_preproc_undef] = STATE(1982), + [sym__identifier_token] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_alias] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_ref] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_delegate] = ACTIONS(3307), + [anon_sym_record] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_file] = ACTIONS(3307), + [anon_sym_fixed] = ACTIONS(3307), + [anon_sym_internal] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_partial] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_required] = ACTIONS(3307), + [anon_sym_sealed] = ACTIONS(3307), + [anon_sym_virtual] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym_where] = ACTIONS(3307), + [anon_sym_notnull] = ACTIONS(3307), + [anon_sym_unmanaged] = ACTIONS(3307), + [anon_sym_checked] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_this] = ACTIONS(3307), + [anon_sym_scoped] = ACTIONS(3307), + [anon_sym_base] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [sym_predefined_type] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_unchecked] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_when] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_foreach] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3307), + [anon_sym_into] = ACTIONS(3307), + [anon_sym_join] = ACTIONS(3307), + [anon_sym_on] = ACTIONS(3307), + [anon_sym_equals] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_orderby] = ACTIONS(3307), + [anon_sym_ascending] = ACTIONS(3307), + [anon_sym_descending] = ACTIONS(3307), + [anon_sym_group] = ACTIONS(3307), + [anon_sym_by] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_stackalloc] = ACTIONS(3307), + [anon_sym_sizeof] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym___makeref] = ACTIONS(3307), + [anon_sym___reftype] = ACTIONS(3307), + [anon_sym___refvalue] = ACTIONS(3307), + [sym_null_literal] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3309), + [sym_integer_literal] = ACTIONS(3307), + [sym_real_literal] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_verbatim_string_literal] = ACTIONS(3309), + [aux_sym_preproc_if_token1] = ACTIONS(3309), + [aux_sym_preproc_if_token3] = ACTIONS(3309), + [aux_sym_preproc_else_token1] = ACTIONS(3309), + [aux_sym_preproc_elif_token1] = ACTIONS(3309), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -376940,124 +374788,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3373), - [sym_interpolation_verbatim_start] = ACTIONS(3373), - [sym_interpolation_raw_start] = ACTIONS(3373), - [sym_raw_string_start] = ACTIONS(3373), + [sym_interpolation_regular_start] = ACTIONS(3309), + [sym_interpolation_verbatim_start] = ACTIONS(3309), + [sym_interpolation_raw_start] = ACTIONS(3309), + [sym_raw_string_start] = ACTIONS(3309), }, - [2000] = { - [sym_preproc_region] = STATE(2000), - [sym_preproc_endregion] = STATE(2000), - [sym_preproc_line] = STATE(2000), - [sym_preproc_pragma] = STATE(2000), - [sym_preproc_nullable] = STATE(2000), - [sym_preproc_error] = STATE(2000), - [sym_preproc_warning] = STATE(2000), - [sym_preproc_define] = STATE(2000), - [sym_preproc_undef] = STATE(2000), - [sym__identifier_token] = ACTIONS(3375), - [anon_sym_extern] = ACTIONS(3375), - [anon_sym_alias] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_ref] = ACTIONS(3375), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_delegate] = ACTIONS(3375), - [anon_sym_record] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_file] = ACTIONS(3375), - [anon_sym_fixed] = ACTIONS(3375), - [anon_sym_internal] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_partial] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_required] = ACTIONS(3375), - [anon_sym_sealed] = ACTIONS(3375), - [anon_sym_virtual] = ACTIONS(3375), - [anon_sym_volatile] = ACTIONS(3375), - [anon_sym_where] = ACTIONS(3375), - [anon_sym_notnull] = ACTIONS(3375), - [anon_sym_unmanaged] = ACTIONS(3375), - [anon_sym_checked] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_this] = ACTIONS(3375), - [anon_sym_scoped] = ACTIONS(3375), - [anon_sym_base] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [sym_predefined_type] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_unchecked] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_foreach] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3375), - [anon_sym_into] = ACTIONS(3375), - [anon_sym_join] = ACTIONS(3375), - [anon_sym_on] = ACTIONS(3375), - [anon_sym_equals] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_orderby] = ACTIONS(3375), - [anon_sym_ascending] = ACTIONS(3375), - [anon_sym_descending] = ACTIONS(3375), - [anon_sym_group] = ACTIONS(3375), - [anon_sym_by] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_stackalloc] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym___makeref] = ACTIONS(3375), - [anon_sym___reftype] = ACTIONS(3375), - [anon_sym___refvalue] = ACTIONS(3375), - [sym_null_literal] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3377), - [sym_integer_literal] = ACTIONS(3375), - [sym_real_literal] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_verbatim_string_literal] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), - [aux_sym_preproc_if_token3] = ACTIONS(3377), - [aux_sym_preproc_else_token1] = ACTIONS(3377), - [aux_sym_preproc_elif_token1] = ACTIONS(3377), + [1983] = { + [sym_preproc_region] = STATE(1983), + [sym_preproc_endregion] = STATE(1983), + [sym_preproc_line] = STATE(1983), + [sym_preproc_pragma] = STATE(1983), + [sym_preproc_nullable] = STATE(1983), + [sym_preproc_error] = STATE(1983), + [sym_preproc_warning] = STATE(1983), + [sym_preproc_define] = STATE(1983), + [sym_preproc_undef] = STATE(1983), + [sym__identifier_token] = ACTIONS(3311), + [anon_sym_extern] = ACTIONS(3311), + [anon_sym_alias] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_ref] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_delegate] = ACTIONS(3311), + [anon_sym_record] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_file] = ACTIONS(3311), + [anon_sym_fixed] = ACTIONS(3311), + [anon_sym_internal] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_partial] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_required] = ACTIONS(3311), + [anon_sym_sealed] = ACTIONS(3311), + [anon_sym_virtual] = ACTIONS(3311), + [anon_sym_volatile] = ACTIONS(3311), + [anon_sym_where] = ACTIONS(3311), + [anon_sym_notnull] = ACTIONS(3311), + [anon_sym_unmanaged] = ACTIONS(3311), + [anon_sym_checked] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_this] = ACTIONS(3311), + [anon_sym_scoped] = ACTIONS(3311), + [anon_sym_base] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [sym_predefined_type] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_unchecked] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_when] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_foreach] = ACTIONS(3311), + [anon_sym_goto] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3313), + [anon_sym_from] = ACTIONS(3311), + [anon_sym_into] = ACTIONS(3311), + [anon_sym_join] = ACTIONS(3311), + [anon_sym_on] = ACTIONS(3311), + [anon_sym_equals] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_orderby] = ACTIONS(3311), + [anon_sym_ascending] = ACTIONS(3311), + [anon_sym_descending] = ACTIONS(3311), + [anon_sym_group] = ACTIONS(3311), + [anon_sym_by] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_stackalloc] = ACTIONS(3311), + [anon_sym_sizeof] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym___makeref] = ACTIONS(3311), + [anon_sym___reftype] = ACTIONS(3311), + [anon_sym___refvalue] = ACTIONS(3311), + [sym_null_literal] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3313), + [sym_integer_literal] = ACTIONS(3311), + [sym_real_literal] = ACTIONS(3313), + [anon_sym_DQUOTE] = ACTIONS(3313), + [sym_verbatim_string_literal] = ACTIONS(3313), + [aux_sym_preproc_if_token1] = ACTIONS(3313), + [aux_sym_preproc_if_token3] = ACTIONS(3313), + [aux_sym_preproc_else_token1] = ACTIONS(3313), + [aux_sym_preproc_elif_token1] = ACTIONS(3313), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377068,124 +374917,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), + [sym_interpolation_regular_start] = ACTIONS(3313), + [sym_interpolation_verbatim_start] = ACTIONS(3313), + [sym_interpolation_raw_start] = ACTIONS(3313), + [sym_raw_string_start] = ACTIONS(3313), }, - [2001] = { - [sym_preproc_region] = STATE(2001), - [sym_preproc_endregion] = STATE(2001), - [sym_preproc_line] = STATE(2001), - [sym_preproc_pragma] = STATE(2001), - [sym_preproc_nullable] = STATE(2001), - [sym_preproc_error] = STATE(2001), - [sym_preproc_warning] = STATE(2001), - [sym_preproc_define] = STATE(2001), - [sym_preproc_undef] = STATE(2001), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_checked] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_this] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_base] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_unchecked] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_foreach] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_stackalloc] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym___makeref] = ACTIONS(3379), - [anon_sym___reftype] = ACTIONS(3379), - [anon_sym___refvalue] = ACTIONS(3379), - [sym_null_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(3379), - [sym_real_literal] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_verbatim_string_literal] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [1984] = { + [sym_preproc_region] = STATE(1984), + [sym_preproc_endregion] = STATE(1984), + [sym_preproc_line] = STATE(1984), + [sym_preproc_pragma] = STATE(1984), + [sym_preproc_nullable] = STATE(1984), + [sym_preproc_error] = STATE(1984), + [sym_preproc_warning] = STATE(1984), + [sym_preproc_define] = STATE(1984), + [sym_preproc_undef] = STATE(1984), + [ts_builtin_sym_end] = ACTIONS(3159), + [sym__identifier_token] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym_alias] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_ref] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_delegate] = ACTIONS(3157), + [anon_sym_record] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_async] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_file] = ACTIONS(3157), + [anon_sym_fixed] = ACTIONS(3157), + [anon_sym_internal] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_partial] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_readonly] = ACTIONS(3157), + [anon_sym_required] = ACTIONS(3157), + [anon_sym_sealed] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_where] = ACTIONS(3157), + [anon_sym_notnull] = ACTIONS(3157), + [anon_sym_unmanaged] = ACTIONS(3157), + [anon_sym_checked] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3157), + [anon_sym_false] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_this] = ACTIONS(3157), + [anon_sym_scoped] = ACTIONS(3157), + [anon_sym_base] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [sym_predefined_type] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_unchecked] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_when] = ACTIONS(3157), + [anon_sym_finally] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3157), + [anon_sym_foreach] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_DOT_DOT] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3157), + [anon_sym_into] = ACTIONS(3157), + [anon_sym_join] = ACTIONS(3157), + [anon_sym_on] = ACTIONS(3157), + [anon_sym_equals] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3157), + [anon_sym_orderby] = ACTIONS(3157), + [anon_sym_ascending] = ACTIONS(3157), + [anon_sym_descending] = ACTIONS(3157), + [anon_sym_group] = ACTIONS(3157), + [anon_sym_by] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_stackalloc] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym_typeof] = ACTIONS(3157), + [anon_sym___makeref] = ACTIONS(3157), + [anon_sym___reftype] = ACTIONS(3157), + [anon_sym___refvalue] = ACTIONS(3157), + [sym_null_literal] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3159), + [sym_integer_literal] = ACTIONS(3157), + [sym_real_literal] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [sym_verbatim_string_literal] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377196,124 +375046,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), + [sym_interpolation_regular_start] = ACTIONS(3159), + [sym_interpolation_verbatim_start] = ACTIONS(3159), + [sym_interpolation_raw_start] = ACTIONS(3159), + [sym_raw_string_start] = ACTIONS(3159), }, - [2002] = { - [sym_preproc_region] = STATE(2002), - [sym_preproc_endregion] = STATE(2002), - [sym_preproc_line] = STATE(2002), - [sym_preproc_pragma] = STATE(2002), - [sym_preproc_nullable] = STATE(2002), - [sym_preproc_error] = STATE(2002), - [sym_preproc_warning] = STATE(2002), - [sym_preproc_define] = STATE(2002), - [sym_preproc_undef] = STATE(2002), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_record] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_checked] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_this] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_base] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_unchecked] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_foreach] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_stackalloc] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym___makeref] = ACTIONS(3383), - [anon_sym___reftype] = ACTIONS(3383), - [anon_sym___refvalue] = ACTIONS(3383), - [sym_null_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3385), - [sym_integer_literal] = ACTIONS(3383), - [sym_real_literal] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_verbatim_string_literal] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_if_token3] = ACTIONS(3385), - [aux_sym_preproc_else_token1] = ACTIONS(3385), - [aux_sym_preproc_elif_token1] = ACTIONS(3385), + [1985] = { + [sym_preproc_region] = STATE(1985), + [sym_preproc_endregion] = STATE(1985), + [sym_preproc_line] = STATE(1985), + [sym_preproc_pragma] = STATE(1985), + [sym_preproc_nullable] = STATE(1985), + [sym_preproc_error] = STATE(1985), + [sym_preproc_warning] = STATE(1985), + [sym_preproc_define] = STATE(1985), + [sym_preproc_undef] = STATE(1985), + [sym__identifier_token] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_alias] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_unsafe] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_ref] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_delegate] = ACTIONS(3315), + [anon_sym_record] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_file] = ACTIONS(3315), + [anon_sym_fixed] = ACTIONS(3315), + [anon_sym_internal] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_partial] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_required] = ACTIONS(3315), + [anon_sym_sealed] = ACTIONS(3315), + [anon_sym_virtual] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym_where] = ACTIONS(3315), + [anon_sym_notnull] = ACTIONS(3315), + [anon_sym_unmanaged] = ACTIONS(3315), + [anon_sym_checked] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_this] = ACTIONS(3315), + [anon_sym_scoped] = ACTIONS(3315), + [anon_sym_base] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [sym_predefined_type] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_unchecked] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_lock] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_when] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_foreach] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_into] = ACTIONS(3315), + [anon_sym_join] = ACTIONS(3315), + [anon_sym_on] = ACTIONS(3315), + [anon_sym_equals] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_orderby] = ACTIONS(3315), + [anon_sym_ascending] = ACTIONS(3315), + [anon_sym_descending] = ACTIONS(3315), + [anon_sym_group] = ACTIONS(3315), + [anon_sym_by] = ACTIONS(3315), + [anon_sym_select] = ACTIONS(3315), + [anon_sym_stackalloc] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym___makeref] = ACTIONS(3315), + [anon_sym___reftype] = ACTIONS(3315), + [anon_sym___refvalue] = ACTIONS(3315), + [sym_null_literal] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3317), + [sym_integer_literal] = ACTIONS(3315), + [sym_real_literal] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_verbatim_string_literal] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token3] = ACTIONS(3317), + [aux_sym_preproc_else_token1] = ACTIONS(3317), + [aux_sym_preproc_elif_token1] = ACTIONS(3317), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3317), + [sym_interpolation_verbatim_start] = ACTIONS(3317), + [sym_interpolation_raw_start] = ACTIONS(3317), + [sym_raw_string_start] = ACTIONS(3317), + }, + [1986] = { + [sym_preproc_region] = STATE(1986), + [sym_preproc_endregion] = STATE(1986), + [sym_preproc_line] = STATE(1986), + [sym_preproc_pragma] = STATE(1986), + [sym_preproc_nullable] = STATE(1986), + [sym_preproc_error] = STATE(1986), + [sym_preproc_warning] = STATE(1986), + [sym_preproc_define] = STATE(1986), + [sym_preproc_undef] = STATE(1986), + [sym__identifier_token] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3319), + [anon_sym_alias] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_unsafe] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_ref] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_delegate] = ACTIONS(3319), + [anon_sym_record] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_file] = ACTIONS(3319), + [anon_sym_fixed] = ACTIONS(3319), + [anon_sym_internal] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_partial] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_required] = ACTIONS(3319), + [anon_sym_sealed] = ACTIONS(3319), + [anon_sym_virtual] = ACTIONS(3319), + [anon_sym_volatile] = ACTIONS(3319), + [anon_sym_where] = ACTIONS(3319), + [anon_sym_notnull] = ACTIONS(3319), + [anon_sym_unmanaged] = ACTIONS(3319), + [anon_sym_checked] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_this] = ACTIONS(3319), + [anon_sym_scoped] = ACTIONS(3319), + [anon_sym_base] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [sym_predefined_type] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_unchecked] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_lock] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_when] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_foreach] = ACTIONS(3319), + [anon_sym_goto] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_into] = ACTIONS(3319), + [anon_sym_join] = ACTIONS(3319), + [anon_sym_on] = ACTIONS(3319), + [anon_sym_equals] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_orderby] = ACTIONS(3319), + [anon_sym_ascending] = ACTIONS(3319), + [anon_sym_descending] = ACTIONS(3319), + [anon_sym_group] = ACTIONS(3319), + [anon_sym_by] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_stackalloc] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym___makeref] = ACTIONS(3319), + [anon_sym___reftype] = ACTIONS(3319), + [anon_sym___refvalue] = ACTIONS(3319), + [sym_null_literal] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3321), + [sym_integer_literal] = ACTIONS(3319), + [sym_real_literal] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [sym_verbatim_string_literal] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token3] = ACTIONS(3321), + [aux_sym_preproc_else_token1] = ACTIONS(3321), + [aux_sym_preproc_elif_token1] = ACTIONS(3321), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377324,124 +375304,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), + [sym_interpolation_regular_start] = ACTIONS(3321), + [sym_interpolation_verbatim_start] = ACTIONS(3321), + [sym_interpolation_raw_start] = ACTIONS(3321), + [sym_raw_string_start] = ACTIONS(3321), }, - [2003] = { - [sym_preproc_region] = STATE(2003), - [sym_preproc_endregion] = STATE(2003), - [sym_preproc_line] = STATE(2003), - [sym_preproc_pragma] = STATE(2003), - [sym_preproc_nullable] = STATE(2003), - [sym_preproc_error] = STATE(2003), - [sym_preproc_warning] = STATE(2003), - [sym_preproc_define] = STATE(2003), - [sym_preproc_undef] = STATE(2003), - [sym__identifier_token] = ACTIONS(3387), - [anon_sym_extern] = ACTIONS(3387), - [anon_sym_alias] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_global] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_ref] = ACTIONS(3387), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_delegate] = ACTIONS(3387), - [anon_sym_record] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_file] = ACTIONS(3387), - [anon_sym_fixed] = ACTIONS(3387), - [anon_sym_internal] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_partial] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_required] = ACTIONS(3387), - [anon_sym_sealed] = ACTIONS(3387), - [anon_sym_virtual] = ACTIONS(3387), - [anon_sym_volatile] = ACTIONS(3387), - [anon_sym_where] = ACTIONS(3387), - [anon_sym_notnull] = ACTIONS(3387), - [anon_sym_unmanaged] = ACTIONS(3387), - [anon_sym_checked] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_this] = ACTIONS(3387), - [anon_sym_scoped] = ACTIONS(3387), - [anon_sym_base] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [sym_predefined_type] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_unchecked] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_when] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_foreach] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_from] = ACTIONS(3387), - [anon_sym_into] = ACTIONS(3387), - [anon_sym_join] = ACTIONS(3387), - [anon_sym_on] = ACTIONS(3387), - [anon_sym_equals] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_orderby] = ACTIONS(3387), - [anon_sym_ascending] = ACTIONS(3387), - [anon_sym_descending] = ACTIONS(3387), - [anon_sym_group] = ACTIONS(3387), - [anon_sym_by] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_stackalloc] = ACTIONS(3387), - [anon_sym_sizeof] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym___makeref] = ACTIONS(3387), - [anon_sym___reftype] = ACTIONS(3387), - [anon_sym___refvalue] = ACTIONS(3387), - [sym_null_literal] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3389), - [sym_integer_literal] = ACTIONS(3387), - [sym_real_literal] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_verbatim_string_literal] = ACTIONS(3389), - [aux_sym_preproc_if_token1] = ACTIONS(3389), - [aux_sym_preproc_if_token3] = ACTIONS(3389), - [aux_sym_preproc_else_token1] = ACTIONS(3389), - [aux_sym_preproc_elif_token1] = ACTIONS(3389), + [1987] = { + [sym_preproc_region] = STATE(1987), + [sym_preproc_endregion] = STATE(1987), + [sym_preproc_line] = STATE(1987), + [sym_preproc_pragma] = STATE(1987), + [sym_preproc_nullable] = STATE(1987), + [sym_preproc_error] = STATE(1987), + [sym_preproc_warning] = STATE(1987), + [sym_preproc_define] = STATE(1987), + [sym_preproc_undef] = STATE(1987), + [sym__identifier_token] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_alias] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_unsafe] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_ref] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_delegate] = ACTIONS(3323), + [anon_sym_record] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_file] = ACTIONS(3323), + [anon_sym_fixed] = ACTIONS(3323), + [anon_sym_internal] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_partial] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_required] = ACTIONS(3323), + [anon_sym_sealed] = ACTIONS(3323), + [anon_sym_virtual] = ACTIONS(3323), + [anon_sym_volatile] = ACTIONS(3323), + [anon_sym_where] = ACTIONS(3323), + [anon_sym_notnull] = ACTIONS(3323), + [anon_sym_unmanaged] = ACTIONS(3323), + [anon_sym_checked] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_scoped] = ACTIONS(3323), + [anon_sym_base] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [sym_predefined_type] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_unchecked] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_lock] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_when] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_foreach] = ACTIONS(3323), + [anon_sym_goto] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_into] = ACTIONS(3323), + [anon_sym_join] = ACTIONS(3323), + [anon_sym_on] = ACTIONS(3323), + [anon_sym_equals] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_orderby] = ACTIONS(3323), + [anon_sym_ascending] = ACTIONS(3323), + [anon_sym_descending] = ACTIONS(3323), + [anon_sym_group] = ACTIONS(3323), + [anon_sym_by] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_stackalloc] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym___makeref] = ACTIONS(3323), + [anon_sym___reftype] = ACTIONS(3323), + [anon_sym___refvalue] = ACTIONS(3323), + [sym_null_literal] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3325), + [sym_integer_literal] = ACTIONS(3323), + [sym_real_literal] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [sym_verbatim_string_literal] = ACTIONS(3325), + [aux_sym_preproc_if_token1] = ACTIONS(3325), + [aux_sym_preproc_if_token3] = ACTIONS(3325), + [aux_sym_preproc_else_token1] = ACTIONS(3325), + [aux_sym_preproc_elif_token1] = ACTIONS(3325), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377452,124 +375433,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3389), - [sym_interpolation_verbatim_start] = ACTIONS(3389), - [sym_interpolation_raw_start] = ACTIONS(3389), - [sym_raw_string_start] = ACTIONS(3389), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, - [2004] = { - [sym_preproc_region] = STATE(2004), - [sym_preproc_endregion] = STATE(2004), - [sym_preproc_line] = STATE(2004), - [sym_preproc_pragma] = STATE(2004), - [sym_preproc_nullable] = STATE(2004), - [sym_preproc_error] = STATE(2004), - [sym_preproc_warning] = STATE(2004), - [sym_preproc_define] = STATE(2004), - [sym_preproc_undef] = STATE(2004), - [sym__identifier_token] = ACTIONS(3169), - [anon_sym_extern] = ACTIONS(3169), - [anon_sym_alias] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_global] = ACTIONS(3169), - [anon_sym_using] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_static] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_namespace] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_ref] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_delegate] = ACTIONS(3169), - [anon_sym_record] = ACTIONS(3169), - [anon_sym_abstract] = ACTIONS(3169), - [anon_sym_async] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_file] = ACTIONS(3169), - [anon_sym_fixed] = ACTIONS(3169), - [anon_sym_internal] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3169), - [anon_sym_partial] = ACTIONS(3169), - [anon_sym_private] = ACTIONS(3169), - [anon_sym_protected] = ACTIONS(3169), - [anon_sym_public] = ACTIONS(3169), - [anon_sym_readonly] = ACTIONS(3169), - [anon_sym_required] = ACTIONS(3169), - [anon_sym_sealed] = ACTIONS(3169), - [anon_sym_virtual] = ACTIONS(3169), - [anon_sym_volatile] = ACTIONS(3169), - [anon_sym_where] = ACTIONS(3169), - [anon_sym_notnull] = ACTIONS(3169), - [anon_sym_unmanaged] = ACTIONS(3169), - [anon_sym_checked] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_this] = ACTIONS(3169), - [anon_sym_scoped] = ACTIONS(3169), - [anon_sym_base] = ACTIONS(3169), - [anon_sym_var] = ACTIONS(3169), - [sym_predefined_type] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_unchecked] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_do] = ACTIONS(3169), - [anon_sym_while] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3169), - [anon_sym_switch] = ACTIONS(3169), - [anon_sym_default] = ACTIONS(3169), - [anon_sym_throw] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3169), - [anon_sym_when] = ACTIONS(3169), - [anon_sym_await] = ACTIONS(3169), - [anon_sym_foreach] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3171), - [anon_sym_from] = ACTIONS(3169), - [anon_sym_into] = ACTIONS(3169), - [anon_sym_join] = ACTIONS(3169), - [anon_sym_on] = ACTIONS(3169), - [anon_sym_equals] = ACTIONS(3169), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_orderby] = ACTIONS(3169), - [anon_sym_ascending] = ACTIONS(3169), - [anon_sym_descending] = ACTIONS(3169), - [anon_sym_group] = ACTIONS(3169), - [anon_sym_by] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_stackalloc] = ACTIONS(3169), - [anon_sym_sizeof] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(3169), - [anon_sym___makeref] = ACTIONS(3169), - [anon_sym___reftype] = ACTIONS(3169), - [anon_sym___refvalue] = ACTIONS(3169), - [sym_null_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3171), - [sym_integer_literal] = ACTIONS(3169), - [sym_real_literal] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_verbatim_string_literal] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token3] = ACTIONS(3171), - [aux_sym_preproc_else_token1] = ACTIONS(3171), - [aux_sym_preproc_elif_token1] = ACTIONS(3171), + [1988] = { + [sym_preproc_region] = STATE(1988), + [sym_preproc_endregion] = STATE(1988), + [sym_preproc_line] = STATE(1988), + [sym_preproc_pragma] = STATE(1988), + [sym_preproc_nullable] = STATE(1988), + [sym_preproc_error] = STATE(1988), + [sym_preproc_warning] = STATE(1988), + [sym_preproc_define] = STATE(1988), + [sym_preproc_undef] = STATE(1988), + [sym__identifier_token] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_alias] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_unsafe] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_ref] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_delegate] = ACTIONS(3327), + [anon_sym_record] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_file] = ACTIONS(3327), + [anon_sym_fixed] = ACTIONS(3327), + [anon_sym_internal] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_partial] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_required] = ACTIONS(3327), + [anon_sym_sealed] = ACTIONS(3327), + [anon_sym_virtual] = ACTIONS(3327), + [anon_sym_volatile] = ACTIONS(3327), + [anon_sym_where] = ACTIONS(3327), + [anon_sym_notnull] = ACTIONS(3327), + [anon_sym_unmanaged] = ACTIONS(3327), + [anon_sym_checked] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_this] = ACTIONS(3327), + [anon_sym_scoped] = ACTIONS(3327), + [anon_sym_base] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [sym_predefined_type] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_unchecked] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_lock] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_when] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_foreach] = ACTIONS(3327), + [anon_sym_goto] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_into] = ACTIONS(3327), + [anon_sym_join] = ACTIONS(3327), + [anon_sym_on] = ACTIONS(3327), + [anon_sym_equals] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_orderby] = ACTIONS(3327), + [anon_sym_ascending] = ACTIONS(3327), + [anon_sym_descending] = ACTIONS(3327), + [anon_sym_group] = ACTIONS(3327), + [anon_sym_by] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_stackalloc] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym___makeref] = ACTIONS(3327), + [anon_sym___reftype] = ACTIONS(3327), + [anon_sym___refvalue] = ACTIONS(3327), + [sym_null_literal] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3329), + [sym_integer_literal] = ACTIONS(3327), + [sym_real_literal] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_verbatim_string_literal] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token3] = ACTIONS(3329), + [aux_sym_preproc_else_token1] = ACTIONS(3329), + [aux_sym_preproc_elif_token1] = ACTIONS(3329), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377580,124 +375562,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3171), - [sym_interpolation_verbatim_start] = ACTIONS(3171), - [sym_interpolation_raw_start] = ACTIONS(3171), - [sym_raw_string_start] = ACTIONS(3171), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), }, - [2005] = { - [sym_preproc_region] = STATE(2005), - [sym_preproc_endregion] = STATE(2005), - [sym_preproc_line] = STATE(2005), - [sym_preproc_pragma] = STATE(2005), - [sym_preproc_nullable] = STATE(2005), - [sym_preproc_error] = STATE(2005), - [sym_preproc_warning] = STATE(2005), - [sym_preproc_define] = STATE(2005), - [sym_preproc_undef] = STATE(2005), - [sym__identifier_token] = ACTIONS(3391), - [anon_sym_extern] = ACTIONS(3391), - [anon_sym_alias] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_ref] = ACTIONS(3391), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_delegate] = ACTIONS(3391), - [anon_sym_record] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_file] = ACTIONS(3391), - [anon_sym_fixed] = ACTIONS(3391), - [anon_sym_internal] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_partial] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_required] = ACTIONS(3391), - [anon_sym_sealed] = ACTIONS(3391), - [anon_sym_virtual] = ACTIONS(3391), - [anon_sym_volatile] = ACTIONS(3391), - [anon_sym_where] = ACTIONS(3391), - [anon_sym_notnull] = ACTIONS(3391), - [anon_sym_unmanaged] = ACTIONS(3391), - [anon_sym_checked] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(3391), - [anon_sym_scoped] = ACTIONS(3391), - [anon_sym_base] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [sym_predefined_type] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_unchecked] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_when] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_foreach] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3391), - [anon_sym_into] = ACTIONS(3391), - [anon_sym_join] = ACTIONS(3391), - [anon_sym_on] = ACTIONS(3391), - [anon_sym_equals] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_orderby] = ACTIONS(3391), - [anon_sym_ascending] = ACTIONS(3391), - [anon_sym_descending] = ACTIONS(3391), - [anon_sym_group] = ACTIONS(3391), - [anon_sym_by] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_stackalloc] = ACTIONS(3391), - [anon_sym_sizeof] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym___makeref] = ACTIONS(3391), - [anon_sym___reftype] = ACTIONS(3391), - [anon_sym___refvalue] = ACTIONS(3391), - [sym_null_literal] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3393), - [sym_integer_literal] = ACTIONS(3391), - [sym_real_literal] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [sym_verbatim_string_literal] = ACTIONS(3393), - [aux_sym_preproc_if_token1] = ACTIONS(3393), - [aux_sym_preproc_if_token3] = ACTIONS(3393), - [aux_sym_preproc_else_token1] = ACTIONS(3393), - [aux_sym_preproc_elif_token1] = ACTIONS(3393), + [1989] = { + [sym_preproc_region] = STATE(1989), + [sym_preproc_endregion] = STATE(1989), + [sym_preproc_line] = STATE(1989), + [sym_preproc_pragma] = STATE(1989), + [sym_preproc_nullable] = STATE(1989), + [sym_preproc_error] = STATE(1989), + [sym_preproc_warning] = STATE(1989), + [sym_preproc_define] = STATE(1989), + [sym_preproc_undef] = STATE(1989), + [sym__identifier_token] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_alias] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_unsafe] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_ref] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_delegate] = ACTIONS(3331), + [anon_sym_record] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_file] = ACTIONS(3331), + [anon_sym_fixed] = ACTIONS(3331), + [anon_sym_internal] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_partial] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_required] = ACTIONS(3331), + [anon_sym_sealed] = ACTIONS(3331), + [anon_sym_virtual] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym_where] = ACTIONS(3331), + [anon_sym_notnull] = ACTIONS(3331), + [anon_sym_unmanaged] = ACTIONS(3331), + [anon_sym_checked] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_this] = ACTIONS(3331), + [anon_sym_scoped] = ACTIONS(3331), + [anon_sym_base] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [sym_predefined_type] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_unchecked] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_lock] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_foreach] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_into] = ACTIONS(3331), + [anon_sym_join] = ACTIONS(3331), + [anon_sym_on] = ACTIONS(3331), + [anon_sym_equals] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_orderby] = ACTIONS(3331), + [anon_sym_ascending] = ACTIONS(3331), + [anon_sym_descending] = ACTIONS(3331), + [anon_sym_group] = ACTIONS(3331), + [anon_sym_by] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_stackalloc] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym___makeref] = ACTIONS(3331), + [anon_sym___reftype] = ACTIONS(3331), + [anon_sym___refvalue] = ACTIONS(3331), + [sym_null_literal] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), + [sym_integer_literal] = ACTIONS(3331), + [sym_real_literal] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [sym_verbatim_string_literal] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token3] = ACTIONS(3333), + [aux_sym_preproc_else_token1] = ACTIONS(3333), + [aux_sym_preproc_elif_token1] = ACTIONS(3333), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377708,124 +375691,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3393), - [sym_interpolation_verbatim_start] = ACTIONS(3393), - [sym_interpolation_raw_start] = ACTIONS(3393), - [sym_raw_string_start] = ACTIONS(3393), + [sym_interpolation_regular_start] = ACTIONS(3333), + [sym_interpolation_verbatim_start] = ACTIONS(3333), + [sym_interpolation_raw_start] = ACTIONS(3333), + [sym_raw_string_start] = ACTIONS(3333), }, - [2006] = { - [sym_preproc_region] = STATE(2006), - [sym_preproc_endregion] = STATE(2006), - [sym_preproc_line] = STATE(2006), - [sym_preproc_pragma] = STATE(2006), - [sym_preproc_nullable] = STATE(2006), - [sym_preproc_error] = STATE(2006), - [sym_preproc_warning] = STATE(2006), - [sym_preproc_define] = STATE(2006), - [sym_preproc_undef] = STATE(2006), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_extern] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_ref] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_delegate] = ACTIONS(3395), - [anon_sym_record] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_fixed] = ACTIONS(3395), - [anon_sym_internal] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_partial] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_required] = ACTIONS(3395), - [anon_sym_sealed] = ACTIONS(3395), - [anon_sym_virtual] = ACTIONS(3395), - [anon_sym_volatile] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_checked] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_base] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [sym_predefined_type] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_unchecked] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_foreach] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3397), - [anon_sym_from] = ACTIONS(3395), - [anon_sym_into] = ACTIONS(3395), - [anon_sym_join] = ACTIONS(3395), - [anon_sym_on] = ACTIONS(3395), - [anon_sym_equals] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_orderby] = ACTIONS(3395), - [anon_sym_ascending] = ACTIONS(3395), - [anon_sym_descending] = ACTIONS(3395), - [anon_sym_group] = ACTIONS(3395), - [anon_sym_by] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_stackalloc] = ACTIONS(3395), - [anon_sym_sizeof] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym___makeref] = ACTIONS(3395), - [anon_sym___reftype] = ACTIONS(3395), - [anon_sym___refvalue] = ACTIONS(3395), - [sym_null_literal] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3397), - [sym_integer_literal] = ACTIONS(3395), - [sym_real_literal] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym_verbatim_string_literal] = ACTIONS(3397), - [aux_sym_preproc_if_token1] = ACTIONS(3397), - [aux_sym_preproc_if_token3] = ACTIONS(3397), - [aux_sym_preproc_else_token1] = ACTIONS(3397), - [aux_sym_preproc_elif_token1] = ACTIONS(3397), + [1990] = { + [sym_preproc_region] = STATE(1990), + [sym_preproc_endregion] = STATE(1990), + [sym_preproc_line] = STATE(1990), + [sym_preproc_pragma] = STATE(1990), + [sym_preproc_nullable] = STATE(1990), + [sym_preproc_error] = STATE(1990), + [sym_preproc_warning] = STATE(1990), + [sym_preproc_define] = STATE(1990), + [sym_preproc_undef] = STATE(1990), + [sym__identifier_token] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_alias] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_unsafe] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_ref] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_delegate] = ACTIONS(3335), + [anon_sym_record] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_file] = ACTIONS(3335), + [anon_sym_fixed] = ACTIONS(3335), + [anon_sym_internal] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_partial] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_required] = ACTIONS(3335), + [anon_sym_sealed] = ACTIONS(3335), + [anon_sym_virtual] = ACTIONS(3335), + [anon_sym_volatile] = ACTIONS(3335), + [anon_sym_where] = ACTIONS(3335), + [anon_sym_notnull] = ACTIONS(3335), + [anon_sym_unmanaged] = ACTIONS(3335), + [anon_sym_checked] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_this] = ACTIONS(3335), + [anon_sym_scoped] = ACTIONS(3335), + [anon_sym_base] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [sym_predefined_type] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_unchecked] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_lock] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_when] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_foreach] = ACTIONS(3335), + [anon_sym_goto] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_into] = ACTIONS(3335), + [anon_sym_join] = ACTIONS(3335), + [anon_sym_on] = ACTIONS(3335), + [anon_sym_equals] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_orderby] = ACTIONS(3335), + [anon_sym_ascending] = ACTIONS(3335), + [anon_sym_descending] = ACTIONS(3335), + [anon_sym_group] = ACTIONS(3335), + [anon_sym_by] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_stackalloc] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym___makeref] = ACTIONS(3335), + [anon_sym___reftype] = ACTIONS(3335), + [anon_sym___refvalue] = ACTIONS(3335), + [sym_null_literal] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3337), + [sym_integer_literal] = ACTIONS(3335), + [sym_real_literal] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [sym_verbatim_string_literal] = ACTIONS(3337), + [aux_sym_preproc_if_token1] = ACTIONS(3337), + [aux_sym_preproc_if_token3] = ACTIONS(3337), + [aux_sym_preproc_else_token1] = ACTIONS(3337), + [aux_sym_preproc_elif_token1] = ACTIONS(3337), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3337), + [sym_interpolation_verbatim_start] = ACTIONS(3337), + [sym_interpolation_raw_start] = ACTIONS(3337), + [sym_raw_string_start] = ACTIONS(3337), + }, + [1991] = { + [sym_preproc_region] = STATE(1991), + [sym_preproc_endregion] = STATE(1991), + [sym_preproc_line] = STATE(1991), + [sym_preproc_pragma] = STATE(1991), + [sym_preproc_nullable] = STATE(1991), + [sym_preproc_error] = STATE(1991), + [sym_preproc_warning] = STATE(1991), + [sym_preproc_define] = STATE(1991), + [sym_preproc_undef] = STATE(1991), + [sym__identifier_token] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_alias] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_unsafe] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_ref] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_delegate] = ACTIONS(3339), + [anon_sym_record] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_file] = ACTIONS(3339), + [anon_sym_fixed] = ACTIONS(3339), + [anon_sym_internal] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_partial] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_sealed] = ACTIONS(3339), + [anon_sym_virtual] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_where] = ACTIONS(3339), + [anon_sym_notnull] = ACTIONS(3339), + [anon_sym_unmanaged] = ACTIONS(3339), + [anon_sym_checked] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_this] = ACTIONS(3339), + [anon_sym_scoped] = ACTIONS(3339), + [anon_sym_base] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [sym_predefined_type] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_unchecked] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_lock] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_when] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_foreach] = ACTIONS(3339), + [anon_sym_goto] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_into] = ACTIONS(3339), + [anon_sym_join] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_equals] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_orderby] = ACTIONS(3339), + [anon_sym_ascending] = ACTIONS(3339), + [anon_sym_descending] = ACTIONS(3339), + [anon_sym_group] = ACTIONS(3339), + [anon_sym_by] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_stackalloc] = ACTIONS(3339), + [anon_sym_sizeof] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym___makeref] = ACTIONS(3339), + [anon_sym___reftype] = ACTIONS(3339), + [anon_sym___refvalue] = ACTIONS(3339), + [sym_null_literal] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3341), + [sym_integer_literal] = ACTIONS(3339), + [sym_real_literal] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [sym_verbatim_string_literal] = ACTIONS(3341), + [aux_sym_preproc_if_token1] = ACTIONS(3341), + [aux_sym_preproc_if_token3] = ACTIONS(3341), + [aux_sym_preproc_else_token1] = ACTIONS(3341), + [aux_sym_preproc_elif_token1] = ACTIONS(3341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377836,124 +375949,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3397), - [sym_interpolation_verbatim_start] = ACTIONS(3397), - [sym_interpolation_raw_start] = ACTIONS(3397), - [sym_raw_string_start] = ACTIONS(3397), + [sym_interpolation_regular_start] = ACTIONS(3341), + [sym_interpolation_verbatim_start] = ACTIONS(3341), + [sym_interpolation_raw_start] = ACTIONS(3341), + [sym_raw_string_start] = ACTIONS(3341), }, - [2007] = { - [sym_preproc_region] = STATE(2007), - [sym_preproc_endregion] = STATE(2007), - [sym_preproc_line] = STATE(2007), - [sym_preproc_pragma] = STATE(2007), - [sym_preproc_nullable] = STATE(2007), - [sym_preproc_error] = STATE(2007), - [sym_preproc_warning] = STATE(2007), - [sym_preproc_define] = STATE(2007), - [sym_preproc_undef] = STATE(2007), - [sym__identifier_token] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [anon_sym_alias] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_global] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_ref] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_delegate] = ACTIONS(3399), - [anon_sym_record] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_file] = ACTIONS(3399), - [anon_sym_fixed] = ACTIONS(3399), - [anon_sym_internal] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_partial] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_required] = ACTIONS(3399), - [anon_sym_sealed] = ACTIONS(3399), - [anon_sym_virtual] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_where] = ACTIONS(3399), - [anon_sym_notnull] = ACTIONS(3399), - [anon_sym_unmanaged] = ACTIONS(3399), - [anon_sym_checked] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_this] = ACTIONS(3399), - [anon_sym_scoped] = ACTIONS(3399), - [anon_sym_base] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [sym_predefined_type] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_unchecked] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_when] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_foreach] = ACTIONS(3399), - [anon_sym_goto] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_from] = ACTIONS(3399), - [anon_sym_into] = ACTIONS(3399), - [anon_sym_join] = ACTIONS(3399), - [anon_sym_on] = ACTIONS(3399), - [anon_sym_equals] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_orderby] = ACTIONS(3399), - [anon_sym_ascending] = ACTIONS(3399), - [anon_sym_descending] = ACTIONS(3399), - [anon_sym_group] = ACTIONS(3399), - [anon_sym_by] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_stackalloc] = ACTIONS(3399), - [anon_sym_sizeof] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym___makeref] = ACTIONS(3399), - [anon_sym___reftype] = ACTIONS(3399), - [anon_sym___refvalue] = ACTIONS(3399), - [sym_null_literal] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3401), - [sym_integer_literal] = ACTIONS(3399), - [sym_real_literal] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [sym_verbatim_string_literal] = ACTIONS(3401), - [aux_sym_preproc_if_token1] = ACTIONS(3401), - [aux_sym_preproc_if_token3] = ACTIONS(3401), - [aux_sym_preproc_else_token1] = ACTIONS(3401), - [aux_sym_preproc_elif_token1] = ACTIONS(3401), + [1992] = { + [sym_preproc_region] = STATE(1992), + [sym_preproc_endregion] = STATE(1992), + [sym_preproc_line] = STATE(1992), + [sym_preproc_pragma] = STATE(1992), + [sym_preproc_nullable] = STATE(1992), + [sym_preproc_error] = STATE(1992), + [sym_preproc_warning] = STATE(1992), + [sym_preproc_define] = STATE(1992), + [sym_preproc_undef] = STATE(1992), + [sym__identifier_token] = ACTIONS(3343), + [anon_sym_extern] = ACTIONS(3343), + [anon_sym_alias] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_ref] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_delegate] = ACTIONS(3343), + [anon_sym_record] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_file] = ACTIONS(3343), + [anon_sym_fixed] = ACTIONS(3343), + [anon_sym_internal] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_partial] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_required] = ACTIONS(3343), + [anon_sym_sealed] = ACTIONS(3343), + [anon_sym_virtual] = ACTIONS(3343), + [anon_sym_volatile] = ACTIONS(3343), + [anon_sym_where] = ACTIONS(3343), + [anon_sym_notnull] = ACTIONS(3343), + [anon_sym_unmanaged] = ACTIONS(3343), + [anon_sym_checked] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_this] = ACTIONS(3343), + [anon_sym_scoped] = ACTIONS(3343), + [anon_sym_base] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [sym_predefined_type] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_unchecked] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_lock] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_when] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_foreach] = ACTIONS(3343), + [anon_sym_goto] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_into] = ACTIONS(3343), + [anon_sym_join] = ACTIONS(3343), + [anon_sym_on] = ACTIONS(3343), + [anon_sym_equals] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_orderby] = ACTIONS(3343), + [anon_sym_ascending] = ACTIONS(3343), + [anon_sym_descending] = ACTIONS(3343), + [anon_sym_group] = ACTIONS(3343), + [anon_sym_by] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_stackalloc] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym___makeref] = ACTIONS(3343), + [anon_sym___reftype] = ACTIONS(3343), + [anon_sym___refvalue] = ACTIONS(3343), + [sym_null_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3345), + [sym_integer_literal] = ACTIONS(3343), + [sym_real_literal] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_verbatim_string_literal] = ACTIONS(3345), + [aux_sym_preproc_if_token1] = ACTIONS(3345), + [aux_sym_preproc_if_token3] = ACTIONS(3345), + [aux_sym_preproc_else_token1] = ACTIONS(3345), + [aux_sym_preproc_elif_token1] = ACTIONS(3345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377964,124 +376078,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3401), - [sym_interpolation_verbatim_start] = ACTIONS(3401), - [sym_interpolation_raw_start] = ACTIONS(3401), - [sym_raw_string_start] = ACTIONS(3401), + [sym_interpolation_regular_start] = ACTIONS(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, - [2008] = { - [sym_preproc_region] = STATE(2008), - [sym_preproc_endregion] = STATE(2008), - [sym_preproc_line] = STATE(2008), - [sym_preproc_pragma] = STATE(2008), - [sym_preproc_nullable] = STATE(2008), - [sym_preproc_error] = STATE(2008), - [sym_preproc_warning] = STATE(2008), - [sym_preproc_define] = STATE(2008), - [sym_preproc_undef] = STATE(2008), - [sym__identifier_token] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3403), - [anon_sym_alias] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_global] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_ref] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_delegate] = ACTIONS(3403), - [anon_sym_record] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_file] = ACTIONS(3403), - [anon_sym_fixed] = ACTIONS(3403), - [anon_sym_internal] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_partial] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_required] = ACTIONS(3403), - [anon_sym_sealed] = ACTIONS(3403), - [anon_sym_virtual] = ACTIONS(3403), - [anon_sym_volatile] = ACTIONS(3403), - [anon_sym_where] = ACTIONS(3403), - [anon_sym_notnull] = ACTIONS(3403), - [anon_sym_unmanaged] = ACTIONS(3403), - [anon_sym_checked] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_this] = ACTIONS(3403), - [anon_sym_scoped] = ACTIONS(3403), - [anon_sym_base] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [sym_predefined_type] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_unchecked] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_when] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_foreach] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_from] = ACTIONS(3403), - [anon_sym_into] = ACTIONS(3403), - [anon_sym_join] = ACTIONS(3403), - [anon_sym_on] = ACTIONS(3403), - [anon_sym_equals] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_orderby] = ACTIONS(3403), - [anon_sym_ascending] = ACTIONS(3403), - [anon_sym_descending] = ACTIONS(3403), - [anon_sym_group] = ACTIONS(3403), - [anon_sym_by] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_stackalloc] = ACTIONS(3403), - [anon_sym_sizeof] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym___makeref] = ACTIONS(3403), - [anon_sym___reftype] = ACTIONS(3403), - [anon_sym___refvalue] = ACTIONS(3403), - [sym_null_literal] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3405), - [sym_integer_literal] = ACTIONS(3403), - [sym_real_literal] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [sym_verbatim_string_literal] = ACTIONS(3405), - [aux_sym_preproc_if_token1] = ACTIONS(3405), - [aux_sym_preproc_if_token3] = ACTIONS(3405), - [aux_sym_preproc_else_token1] = ACTIONS(3405), - [aux_sym_preproc_elif_token1] = ACTIONS(3405), + [1993] = { + [sym_preproc_region] = STATE(1993), + [sym_preproc_endregion] = STATE(1993), + [sym_preproc_line] = STATE(1993), + [sym_preproc_pragma] = STATE(1993), + [sym_preproc_nullable] = STATE(1993), + [sym_preproc_error] = STATE(1993), + [sym_preproc_warning] = STATE(1993), + [sym_preproc_define] = STATE(1993), + [sym_preproc_undef] = STATE(1993), + [sym__identifier_token] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_alias] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_ref] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_delegate] = ACTIONS(3347), + [anon_sym_record] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_file] = ACTIONS(3347), + [anon_sym_fixed] = ACTIONS(3347), + [anon_sym_internal] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_partial] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_required] = ACTIONS(3347), + [anon_sym_sealed] = ACTIONS(3347), + [anon_sym_virtual] = ACTIONS(3347), + [anon_sym_volatile] = ACTIONS(3347), + [anon_sym_where] = ACTIONS(3347), + [anon_sym_notnull] = ACTIONS(3347), + [anon_sym_unmanaged] = ACTIONS(3347), + [anon_sym_checked] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_this] = ACTIONS(3347), + [anon_sym_scoped] = ACTIONS(3347), + [anon_sym_base] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [sym_predefined_type] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_unchecked] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_lock] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_when] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_foreach] = ACTIONS(3347), + [anon_sym_goto] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3347), + [anon_sym_into] = ACTIONS(3347), + [anon_sym_join] = ACTIONS(3347), + [anon_sym_on] = ACTIONS(3347), + [anon_sym_equals] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_orderby] = ACTIONS(3347), + [anon_sym_ascending] = ACTIONS(3347), + [anon_sym_descending] = ACTIONS(3347), + [anon_sym_group] = ACTIONS(3347), + [anon_sym_by] = ACTIONS(3347), + [anon_sym_select] = ACTIONS(3347), + [anon_sym_stackalloc] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym___makeref] = ACTIONS(3347), + [anon_sym___reftype] = ACTIONS(3347), + [anon_sym___refvalue] = ACTIONS(3347), + [sym_null_literal] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3349), + [sym_integer_literal] = ACTIONS(3347), + [sym_real_literal] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_verbatim_string_literal] = ACTIONS(3349), + [aux_sym_preproc_if_token1] = ACTIONS(3349), + [aux_sym_preproc_if_token3] = ACTIONS(3349), + [aux_sym_preproc_else_token1] = ACTIONS(3349), + [aux_sym_preproc_elif_token1] = ACTIONS(3349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378092,124 +376207,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3405), - [sym_interpolation_verbatim_start] = ACTIONS(3405), - [sym_interpolation_raw_start] = ACTIONS(3405), - [sym_raw_string_start] = ACTIONS(3405), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, - [2009] = { - [sym_preproc_region] = STATE(2009), - [sym_preproc_endregion] = STATE(2009), - [sym_preproc_line] = STATE(2009), - [sym_preproc_pragma] = STATE(2009), - [sym_preproc_nullable] = STATE(2009), - [sym_preproc_error] = STATE(2009), - [sym_preproc_warning] = STATE(2009), - [sym_preproc_define] = STATE(2009), - [sym_preproc_undef] = STATE(2009), - [sym__identifier_token] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3407), - [anon_sym_alias] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_global] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_ref] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_delegate] = ACTIONS(3407), - [anon_sym_record] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_file] = ACTIONS(3407), - [anon_sym_fixed] = ACTIONS(3407), - [anon_sym_internal] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_partial] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_required] = ACTIONS(3407), - [anon_sym_sealed] = ACTIONS(3407), - [anon_sym_virtual] = ACTIONS(3407), - [anon_sym_volatile] = ACTIONS(3407), - [anon_sym_where] = ACTIONS(3407), - [anon_sym_notnull] = ACTIONS(3407), - [anon_sym_unmanaged] = ACTIONS(3407), - [anon_sym_checked] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_this] = ACTIONS(3407), - [anon_sym_scoped] = ACTIONS(3407), - [anon_sym_base] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [sym_predefined_type] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_unchecked] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_when] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_foreach] = ACTIONS(3407), - [anon_sym_goto] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_from] = ACTIONS(3407), - [anon_sym_into] = ACTIONS(3407), - [anon_sym_join] = ACTIONS(3407), - [anon_sym_on] = ACTIONS(3407), - [anon_sym_equals] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_orderby] = ACTIONS(3407), - [anon_sym_ascending] = ACTIONS(3407), - [anon_sym_descending] = ACTIONS(3407), - [anon_sym_group] = ACTIONS(3407), - [anon_sym_by] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_stackalloc] = ACTIONS(3407), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym___makeref] = ACTIONS(3407), - [anon_sym___reftype] = ACTIONS(3407), - [anon_sym___refvalue] = ACTIONS(3407), - [sym_null_literal] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3409), - [sym_integer_literal] = ACTIONS(3407), - [sym_real_literal] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [sym_verbatim_string_literal] = ACTIONS(3409), - [aux_sym_preproc_if_token1] = ACTIONS(3409), - [aux_sym_preproc_if_token3] = ACTIONS(3409), - [aux_sym_preproc_else_token1] = ACTIONS(3409), - [aux_sym_preproc_elif_token1] = ACTIONS(3409), + [1994] = { + [sym_preproc_region] = STATE(1994), + [sym_preproc_endregion] = STATE(1994), + [sym_preproc_line] = STATE(1994), + [sym_preproc_pragma] = STATE(1994), + [sym_preproc_nullable] = STATE(1994), + [sym_preproc_error] = STATE(1994), + [sym_preproc_warning] = STATE(1994), + [sym_preproc_define] = STATE(1994), + [sym_preproc_undef] = STATE(1994), + [sym__identifier_token] = ACTIONS(3351), + [anon_sym_extern] = ACTIONS(3351), + [anon_sym_alias] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_global] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_unsafe] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_ref] = ACTIONS(3351), + [anon_sym_struct] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_delegate] = ACTIONS(3351), + [anon_sym_record] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_file] = ACTIONS(3351), + [anon_sym_fixed] = ACTIONS(3351), + [anon_sym_internal] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_partial] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_required] = ACTIONS(3351), + [anon_sym_sealed] = ACTIONS(3351), + [anon_sym_virtual] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_where] = ACTIONS(3351), + [anon_sym_notnull] = ACTIONS(3351), + [anon_sym_unmanaged] = ACTIONS(3351), + [anon_sym_checked] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_CARET] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_this] = ACTIONS(3351), + [anon_sym_scoped] = ACTIONS(3351), + [anon_sym_base] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [sym_predefined_type] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_unchecked] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_lock] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_when] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_foreach] = ACTIONS(3351), + [anon_sym_goto] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3353), + [anon_sym_from] = ACTIONS(3351), + [anon_sym_into] = ACTIONS(3351), + [anon_sym_join] = ACTIONS(3351), + [anon_sym_on] = ACTIONS(3351), + [anon_sym_equals] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_orderby] = ACTIONS(3351), + [anon_sym_ascending] = ACTIONS(3351), + [anon_sym_descending] = ACTIONS(3351), + [anon_sym_group] = ACTIONS(3351), + [anon_sym_by] = ACTIONS(3351), + [anon_sym_select] = ACTIONS(3351), + [anon_sym_stackalloc] = ACTIONS(3351), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym___makeref] = ACTIONS(3351), + [anon_sym___reftype] = ACTIONS(3351), + [anon_sym___refvalue] = ACTIONS(3351), + [sym_null_literal] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3353), + [sym_integer_literal] = ACTIONS(3351), + [sym_real_literal] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_verbatim_string_literal] = ACTIONS(3353), + [aux_sym_preproc_if_token1] = ACTIONS(3353), + [aux_sym_preproc_if_token3] = ACTIONS(3353), + [aux_sym_preproc_else_token1] = ACTIONS(3353), + [aux_sym_preproc_elif_token1] = ACTIONS(3353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378220,124 +376335,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3409), - [sym_interpolation_verbatim_start] = ACTIONS(3409), - [sym_interpolation_raw_start] = ACTIONS(3409), - [sym_raw_string_start] = ACTIONS(3409), + [sym_interpolation_regular_start] = ACTIONS(3353), + [sym_interpolation_verbatim_start] = ACTIONS(3353), + [sym_interpolation_raw_start] = ACTIONS(3353), + [sym_raw_string_start] = ACTIONS(3353), }, - [2010] = { - [sym_preproc_region] = STATE(2010), - [sym_preproc_endregion] = STATE(2010), - [sym_preproc_line] = STATE(2010), - [sym_preproc_pragma] = STATE(2010), - [sym_preproc_nullable] = STATE(2010), - [sym_preproc_error] = STATE(2010), - [sym_preproc_warning] = STATE(2010), - [sym_preproc_define] = STATE(2010), - [sym_preproc_undef] = STATE(2010), - [sym__identifier_token] = ACTIONS(3411), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym_alias] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_global] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_ref] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_delegate] = ACTIONS(3411), - [anon_sym_record] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_file] = ACTIONS(3411), - [anon_sym_fixed] = ACTIONS(3411), - [anon_sym_internal] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_partial] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_required] = ACTIONS(3411), - [anon_sym_sealed] = ACTIONS(3411), - [anon_sym_virtual] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [anon_sym_where] = ACTIONS(3411), - [anon_sym_notnull] = ACTIONS(3411), - [anon_sym_unmanaged] = ACTIONS(3411), - [anon_sym_checked] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_this] = ACTIONS(3411), - [anon_sym_scoped] = ACTIONS(3411), - [anon_sym_base] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [sym_predefined_type] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_unchecked] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_when] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_foreach] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [anon_sym_from] = ACTIONS(3411), - [anon_sym_into] = ACTIONS(3411), - [anon_sym_join] = ACTIONS(3411), - [anon_sym_on] = ACTIONS(3411), - [anon_sym_equals] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_orderby] = ACTIONS(3411), - [anon_sym_ascending] = ACTIONS(3411), - [anon_sym_descending] = ACTIONS(3411), - [anon_sym_group] = ACTIONS(3411), - [anon_sym_by] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_stackalloc] = ACTIONS(3411), - [anon_sym_sizeof] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym___makeref] = ACTIONS(3411), - [anon_sym___reftype] = ACTIONS(3411), - [anon_sym___refvalue] = ACTIONS(3411), - [sym_null_literal] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3413), - [sym_integer_literal] = ACTIONS(3411), - [sym_real_literal] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym_verbatim_string_literal] = ACTIONS(3413), - [aux_sym_preproc_if_token1] = ACTIONS(3413), - [aux_sym_preproc_if_token3] = ACTIONS(3413), - [aux_sym_preproc_else_token1] = ACTIONS(3413), - [aux_sym_preproc_elif_token1] = ACTIONS(3413), + [1995] = { + [sym_preproc_region] = STATE(1995), + [sym_preproc_endregion] = STATE(1995), + [sym_preproc_line] = STATE(1995), + [sym_preproc_pragma] = STATE(1995), + [sym_preproc_nullable] = STATE(1995), + [sym_preproc_error] = STATE(1995), + [sym_preproc_warning] = STATE(1995), + [sym_preproc_define] = STATE(1995), + [sym_preproc_undef] = STATE(1995), + [sym__identifier_token] = ACTIONS(3355), + [anon_sym_extern] = ACTIONS(3355), + [anon_sym_alias] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_unsafe] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_ref] = ACTIONS(3355), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_delegate] = ACTIONS(3355), + [anon_sym_record] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_file] = ACTIONS(3355), + [anon_sym_fixed] = ACTIONS(3355), + [anon_sym_internal] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_partial] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_required] = ACTIONS(3355), + [anon_sym_sealed] = ACTIONS(3355), + [anon_sym_virtual] = ACTIONS(3355), + [anon_sym_volatile] = ACTIONS(3355), + [anon_sym_where] = ACTIONS(3355), + [anon_sym_notnull] = ACTIONS(3355), + [anon_sym_unmanaged] = ACTIONS(3355), + [anon_sym_checked] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3355), + [anon_sym_false] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3355), + [anon_sym_scoped] = ACTIONS(3355), + [anon_sym_base] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [sym_predefined_type] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_unchecked] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_lock] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_when] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_foreach] = ACTIONS(3355), + [anon_sym_goto] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3357), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_into] = ACTIONS(3355), + [anon_sym_join] = ACTIONS(3355), + [anon_sym_on] = ACTIONS(3355), + [anon_sym_equals] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_orderby] = ACTIONS(3355), + [anon_sym_ascending] = ACTIONS(3355), + [anon_sym_descending] = ACTIONS(3355), + [anon_sym_group] = ACTIONS(3355), + [anon_sym_by] = ACTIONS(3355), + [anon_sym_select] = ACTIONS(3355), + [anon_sym_stackalloc] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym___makeref] = ACTIONS(3355), + [anon_sym___reftype] = ACTIONS(3355), + [anon_sym___refvalue] = ACTIONS(3355), + [sym_null_literal] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3357), + [sym_integer_literal] = ACTIONS(3355), + [sym_real_literal] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [sym_verbatim_string_literal] = ACTIONS(3357), + [aux_sym_preproc_if_token1] = ACTIONS(3357), + [aux_sym_preproc_if_token3] = ACTIONS(3357), + [aux_sym_preproc_else_token1] = ACTIONS(3357), + [aux_sym_preproc_elif_token1] = ACTIONS(3357), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378348,124 +376463,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3413), - [sym_interpolation_verbatim_start] = ACTIONS(3413), - [sym_interpolation_raw_start] = ACTIONS(3413), - [sym_raw_string_start] = ACTIONS(3413), + [sym_interpolation_regular_start] = ACTIONS(3357), + [sym_interpolation_verbatim_start] = ACTIONS(3357), + [sym_interpolation_raw_start] = ACTIONS(3357), + [sym_raw_string_start] = ACTIONS(3357), }, - [2011] = { - [sym_preproc_region] = STATE(2011), - [sym_preproc_endregion] = STATE(2011), - [sym_preproc_line] = STATE(2011), - [sym_preproc_pragma] = STATE(2011), - [sym_preproc_nullable] = STATE(2011), - [sym_preproc_error] = STATE(2011), - [sym_preproc_warning] = STATE(2011), - [sym_preproc_define] = STATE(2011), - [sym_preproc_undef] = STATE(2011), - [sym__identifier_token] = ACTIONS(3415), - [anon_sym_extern] = ACTIONS(3415), - [anon_sym_alias] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_global] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_ref] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_delegate] = ACTIONS(3415), - [anon_sym_record] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_file] = ACTIONS(3415), - [anon_sym_fixed] = ACTIONS(3415), - [anon_sym_internal] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_partial] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_required] = ACTIONS(3415), - [anon_sym_sealed] = ACTIONS(3415), - [anon_sym_virtual] = ACTIONS(3415), - [anon_sym_volatile] = ACTIONS(3415), - [anon_sym_where] = ACTIONS(3415), - [anon_sym_notnull] = ACTIONS(3415), - [anon_sym_unmanaged] = ACTIONS(3415), - [anon_sym_checked] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_this] = ACTIONS(3415), - [anon_sym_scoped] = ACTIONS(3415), - [anon_sym_base] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [sym_predefined_type] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_unchecked] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_when] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_foreach] = ACTIONS(3415), - [anon_sym_goto] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3417), - [anon_sym_from] = ACTIONS(3415), - [anon_sym_into] = ACTIONS(3415), - [anon_sym_join] = ACTIONS(3415), - [anon_sym_on] = ACTIONS(3415), - [anon_sym_equals] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_orderby] = ACTIONS(3415), - [anon_sym_ascending] = ACTIONS(3415), - [anon_sym_descending] = ACTIONS(3415), - [anon_sym_group] = ACTIONS(3415), - [anon_sym_by] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_stackalloc] = ACTIONS(3415), - [anon_sym_sizeof] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym___makeref] = ACTIONS(3415), - [anon_sym___reftype] = ACTIONS(3415), - [anon_sym___refvalue] = ACTIONS(3415), - [sym_null_literal] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3417), - [sym_integer_literal] = ACTIONS(3415), - [sym_real_literal] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [sym_verbatim_string_literal] = ACTIONS(3417), - [aux_sym_preproc_if_token1] = ACTIONS(3417), - [aux_sym_preproc_if_token3] = ACTIONS(3417), - [aux_sym_preproc_else_token1] = ACTIONS(3417), - [aux_sym_preproc_elif_token1] = ACTIONS(3417), + [1996] = { + [sym_preproc_region] = STATE(1996), + [sym_preproc_endregion] = STATE(1996), + [sym_preproc_line] = STATE(1996), + [sym_preproc_pragma] = STATE(1996), + [sym_preproc_nullable] = STATE(1996), + [sym_preproc_error] = STATE(1996), + [sym_preproc_warning] = STATE(1996), + [sym_preproc_define] = STATE(1996), + [sym_preproc_undef] = STATE(1996), + [sym__identifier_token] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_alias] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_unsafe] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_ref] = ACTIONS(3359), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_delegate] = ACTIONS(3359), + [anon_sym_record] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_file] = ACTIONS(3359), + [anon_sym_fixed] = ACTIONS(3359), + [anon_sym_internal] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_partial] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_required] = ACTIONS(3359), + [anon_sym_sealed] = ACTIONS(3359), + [anon_sym_virtual] = ACTIONS(3359), + [anon_sym_volatile] = ACTIONS(3359), + [anon_sym_where] = ACTIONS(3359), + [anon_sym_notnull] = ACTIONS(3359), + [anon_sym_unmanaged] = ACTIONS(3359), + [anon_sym_checked] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_scoped] = ACTIONS(3359), + [anon_sym_base] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [sym_predefined_type] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_unchecked] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_lock] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_when] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_foreach] = ACTIONS(3359), + [anon_sym_goto] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_into] = ACTIONS(3359), + [anon_sym_join] = ACTIONS(3359), + [anon_sym_on] = ACTIONS(3359), + [anon_sym_equals] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_orderby] = ACTIONS(3359), + [anon_sym_ascending] = ACTIONS(3359), + [anon_sym_descending] = ACTIONS(3359), + [anon_sym_group] = ACTIONS(3359), + [anon_sym_by] = ACTIONS(3359), + [anon_sym_select] = ACTIONS(3359), + [anon_sym_stackalloc] = ACTIONS(3359), + [anon_sym_sizeof] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym___makeref] = ACTIONS(3359), + [anon_sym___reftype] = ACTIONS(3359), + [anon_sym___refvalue] = ACTIONS(3359), + [sym_null_literal] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3361), + [sym_integer_literal] = ACTIONS(3359), + [sym_real_literal] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_verbatim_string_literal] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token3] = ACTIONS(3361), + [aux_sym_preproc_else_token1] = ACTIONS(3361), + [aux_sym_preproc_elif_token1] = ACTIONS(3361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378476,124 +376591,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3417), - [sym_interpolation_verbatim_start] = ACTIONS(3417), - [sym_interpolation_raw_start] = ACTIONS(3417), - [sym_raw_string_start] = ACTIONS(3417), + [sym_interpolation_regular_start] = ACTIONS(3361), + [sym_interpolation_verbatim_start] = ACTIONS(3361), + [sym_interpolation_raw_start] = ACTIONS(3361), + [sym_raw_string_start] = ACTIONS(3361), }, - [2012] = { - [sym_preproc_region] = STATE(2012), - [sym_preproc_endregion] = STATE(2012), - [sym_preproc_line] = STATE(2012), - [sym_preproc_pragma] = STATE(2012), - [sym_preproc_nullable] = STATE(2012), - [sym_preproc_error] = STATE(2012), - [sym_preproc_warning] = STATE(2012), - [sym_preproc_define] = STATE(2012), - [sym_preproc_undef] = STATE(2012), - [sym__identifier_token] = ACTIONS(3419), - [anon_sym_extern] = ACTIONS(3419), - [anon_sym_alias] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_global] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_ref] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_delegate] = ACTIONS(3419), - [anon_sym_record] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_file] = ACTIONS(3419), - [anon_sym_fixed] = ACTIONS(3419), - [anon_sym_internal] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_partial] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_required] = ACTIONS(3419), - [anon_sym_sealed] = ACTIONS(3419), - [anon_sym_virtual] = ACTIONS(3419), - [anon_sym_volatile] = ACTIONS(3419), - [anon_sym_where] = ACTIONS(3419), - [anon_sym_notnull] = ACTIONS(3419), - [anon_sym_unmanaged] = ACTIONS(3419), - [anon_sym_checked] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_true] = ACTIONS(3419), - [anon_sym_false] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_this] = ACTIONS(3419), - [anon_sym_scoped] = ACTIONS(3419), - [anon_sym_base] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [sym_predefined_type] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_unchecked] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_when] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_foreach] = ACTIONS(3419), - [anon_sym_goto] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3421), - [anon_sym_from] = ACTIONS(3419), - [anon_sym_into] = ACTIONS(3419), - [anon_sym_join] = ACTIONS(3419), - [anon_sym_on] = ACTIONS(3419), - [anon_sym_equals] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_orderby] = ACTIONS(3419), - [anon_sym_ascending] = ACTIONS(3419), - [anon_sym_descending] = ACTIONS(3419), - [anon_sym_group] = ACTIONS(3419), - [anon_sym_by] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_stackalloc] = ACTIONS(3419), - [anon_sym_sizeof] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym___makeref] = ACTIONS(3419), - [anon_sym___reftype] = ACTIONS(3419), - [anon_sym___refvalue] = ACTIONS(3419), - [sym_null_literal] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3421), - [sym_integer_literal] = ACTIONS(3419), - [sym_real_literal] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_verbatim_string_literal] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [aux_sym_preproc_if_token3] = ACTIONS(3421), - [aux_sym_preproc_else_token1] = ACTIONS(3421), - [aux_sym_preproc_elif_token1] = ACTIONS(3421), + [1997] = { + [sym_preproc_region] = STATE(1997), + [sym_preproc_endregion] = STATE(1997), + [sym_preproc_line] = STATE(1997), + [sym_preproc_pragma] = STATE(1997), + [sym_preproc_nullable] = STATE(1997), + [sym_preproc_error] = STATE(1997), + [sym_preproc_warning] = STATE(1997), + [sym_preproc_define] = STATE(1997), + [sym_preproc_undef] = STATE(1997), + [sym__identifier_token] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_alias] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_unsafe] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_ref] = ACTIONS(3363), + [anon_sym_struct] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_delegate] = ACTIONS(3363), + [anon_sym_record] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_file] = ACTIONS(3363), + [anon_sym_fixed] = ACTIONS(3363), + [anon_sym_internal] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_partial] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_required] = ACTIONS(3363), + [anon_sym_sealed] = ACTIONS(3363), + [anon_sym_virtual] = ACTIONS(3363), + [anon_sym_volatile] = ACTIONS(3363), + [anon_sym_where] = ACTIONS(3363), + [anon_sym_notnull] = ACTIONS(3363), + [anon_sym_unmanaged] = ACTIONS(3363), + [anon_sym_checked] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_CARET] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_scoped] = ACTIONS(3363), + [anon_sym_base] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [sym_predefined_type] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_unchecked] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_lock] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_when] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_foreach] = ACTIONS(3363), + [anon_sym_goto] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3365), + [anon_sym_from] = ACTIONS(3363), + [anon_sym_into] = ACTIONS(3363), + [anon_sym_join] = ACTIONS(3363), + [anon_sym_on] = ACTIONS(3363), + [anon_sym_equals] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_orderby] = ACTIONS(3363), + [anon_sym_ascending] = ACTIONS(3363), + [anon_sym_descending] = ACTIONS(3363), + [anon_sym_group] = ACTIONS(3363), + [anon_sym_by] = ACTIONS(3363), + [anon_sym_select] = ACTIONS(3363), + [anon_sym_stackalloc] = ACTIONS(3363), + [anon_sym_sizeof] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym___makeref] = ACTIONS(3363), + [anon_sym___reftype] = ACTIONS(3363), + [anon_sym___refvalue] = ACTIONS(3363), + [sym_null_literal] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3365), + [sym_integer_literal] = ACTIONS(3363), + [sym_real_literal] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [sym_verbatim_string_literal] = ACTIONS(3365), + [aux_sym_preproc_if_token1] = ACTIONS(3365), + [aux_sym_preproc_if_token3] = ACTIONS(3365), + [aux_sym_preproc_else_token1] = ACTIONS(3365), + [aux_sym_preproc_elif_token1] = ACTIONS(3365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378604,124 +376719,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3421), - [sym_interpolation_verbatim_start] = ACTIONS(3421), - [sym_interpolation_raw_start] = ACTIONS(3421), - [sym_raw_string_start] = ACTIONS(3421), + [sym_interpolation_regular_start] = ACTIONS(3365), + [sym_interpolation_verbatim_start] = ACTIONS(3365), + [sym_interpolation_raw_start] = ACTIONS(3365), + [sym_raw_string_start] = ACTIONS(3365), }, - [2013] = { - [sym_preproc_region] = STATE(2013), - [sym_preproc_endregion] = STATE(2013), - [sym_preproc_line] = STATE(2013), - [sym_preproc_pragma] = STATE(2013), - [sym_preproc_nullable] = STATE(2013), - [sym_preproc_error] = STATE(2013), - [sym_preproc_warning] = STATE(2013), - [sym_preproc_define] = STATE(2013), - [sym_preproc_undef] = STATE(2013), - [sym__identifier_token] = ACTIONS(3423), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym_alias] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_global] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_ref] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_delegate] = ACTIONS(3423), - [anon_sym_record] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_file] = ACTIONS(3423), - [anon_sym_fixed] = ACTIONS(3423), - [anon_sym_internal] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_partial] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_required] = ACTIONS(3423), - [anon_sym_sealed] = ACTIONS(3423), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_where] = ACTIONS(3423), - [anon_sym_notnull] = ACTIONS(3423), - [anon_sym_unmanaged] = ACTIONS(3423), - [anon_sym_checked] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_true] = ACTIONS(3423), - [anon_sym_false] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_this] = ACTIONS(3423), - [anon_sym_scoped] = ACTIONS(3423), - [anon_sym_base] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [sym_predefined_type] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_unchecked] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_lock] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_when] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_foreach] = ACTIONS(3423), - [anon_sym_goto] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3425), - [anon_sym_from] = ACTIONS(3423), - [anon_sym_into] = ACTIONS(3423), - [anon_sym_join] = ACTIONS(3423), - [anon_sym_on] = ACTIONS(3423), - [anon_sym_equals] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_orderby] = ACTIONS(3423), - [anon_sym_ascending] = ACTIONS(3423), - [anon_sym_descending] = ACTIONS(3423), - [anon_sym_group] = ACTIONS(3423), - [anon_sym_by] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [anon_sym_stackalloc] = ACTIONS(3423), - [anon_sym_sizeof] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym___makeref] = ACTIONS(3423), - [anon_sym___reftype] = ACTIONS(3423), - [anon_sym___refvalue] = ACTIONS(3423), - [sym_null_literal] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3425), - [sym_integer_literal] = ACTIONS(3423), - [sym_real_literal] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [sym_verbatim_string_literal] = ACTIONS(3425), - [aux_sym_preproc_if_token1] = ACTIONS(3425), - [aux_sym_preproc_if_token3] = ACTIONS(3425), - [aux_sym_preproc_else_token1] = ACTIONS(3425), - [aux_sym_preproc_elif_token1] = ACTIONS(3425), + [1998] = { + [sym_preproc_region] = STATE(1998), + [sym_preproc_endregion] = STATE(1998), + [sym_preproc_line] = STATE(1998), + [sym_preproc_pragma] = STATE(1998), + [sym_preproc_nullable] = STATE(1998), + [sym_preproc_error] = STATE(1998), + [sym_preproc_warning] = STATE(1998), + [sym_preproc_define] = STATE(1998), + [sym_preproc_undef] = STATE(1998), + [sym__identifier_token] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_alias] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_ref] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_delegate] = ACTIONS(3367), + [anon_sym_record] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_file] = ACTIONS(3367), + [anon_sym_fixed] = ACTIONS(3367), + [anon_sym_internal] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_partial] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_required] = ACTIONS(3367), + [anon_sym_sealed] = ACTIONS(3367), + [anon_sym_virtual] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [anon_sym_where] = ACTIONS(3367), + [anon_sym_notnull] = ACTIONS(3367), + [anon_sym_unmanaged] = ACTIONS(3367), + [anon_sym_checked] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3367), + [anon_sym_false] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3367), + [anon_sym_scoped] = ACTIONS(3367), + [anon_sym_base] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [sym_predefined_type] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_unchecked] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_lock] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_foreach] = ACTIONS(3367), + [anon_sym_goto] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3369), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_into] = ACTIONS(3367), + [anon_sym_join] = ACTIONS(3367), + [anon_sym_on] = ACTIONS(3367), + [anon_sym_equals] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_orderby] = ACTIONS(3367), + [anon_sym_ascending] = ACTIONS(3367), + [anon_sym_descending] = ACTIONS(3367), + [anon_sym_group] = ACTIONS(3367), + [anon_sym_by] = ACTIONS(3367), + [anon_sym_select] = ACTIONS(3367), + [anon_sym_stackalloc] = ACTIONS(3367), + [anon_sym_sizeof] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym___makeref] = ACTIONS(3367), + [anon_sym___reftype] = ACTIONS(3367), + [anon_sym___refvalue] = ACTIONS(3367), + [sym_null_literal] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3369), + [sym_integer_literal] = ACTIONS(3367), + [sym_real_literal] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [sym_verbatim_string_literal] = ACTIONS(3369), + [aux_sym_preproc_if_token1] = ACTIONS(3369), + [aux_sym_preproc_if_token3] = ACTIONS(3369), + [aux_sym_preproc_else_token1] = ACTIONS(3369), + [aux_sym_preproc_elif_token1] = ACTIONS(3369), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378732,124 +376847,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3425), - [sym_interpolation_verbatim_start] = ACTIONS(3425), - [sym_interpolation_raw_start] = ACTIONS(3425), - [sym_raw_string_start] = ACTIONS(3425), + [sym_interpolation_regular_start] = ACTIONS(3369), + [sym_interpolation_verbatim_start] = ACTIONS(3369), + [sym_interpolation_raw_start] = ACTIONS(3369), + [sym_raw_string_start] = ACTIONS(3369), }, - [2014] = { - [sym_preproc_region] = STATE(2014), - [sym_preproc_endregion] = STATE(2014), - [sym_preproc_line] = STATE(2014), - [sym_preproc_pragma] = STATE(2014), - [sym_preproc_nullable] = STATE(2014), - [sym_preproc_error] = STATE(2014), - [sym_preproc_warning] = STATE(2014), - [sym_preproc_define] = STATE(2014), - [sym_preproc_undef] = STATE(2014), - [sym__identifier_token] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym_alias] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_global] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_ref] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_delegate] = ACTIONS(3427), - [anon_sym_record] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_file] = ACTIONS(3427), - [anon_sym_fixed] = ACTIONS(3427), - [anon_sym_internal] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_partial] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_required] = ACTIONS(3427), - [anon_sym_sealed] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_where] = ACTIONS(3427), - [anon_sym_notnull] = ACTIONS(3427), - [anon_sym_unmanaged] = ACTIONS(3427), - [anon_sym_checked] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_true] = ACTIONS(3427), - [anon_sym_false] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_this] = ACTIONS(3427), - [anon_sym_scoped] = ACTIONS(3427), - [anon_sym_base] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [sym_predefined_type] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_unchecked] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_when] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_foreach] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOT_DOT] = ACTIONS(3429), - [anon_sym_from] = ACTIONS(3427), - [anon_sym_into] = ACTIONS(3427), - [anon_sym_join] = ACTIONS(3427), - [anon_sym_on] = ACTIONS(3427), - [anon_sym_equals] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_orderby] = ACTIONS(3427), - [anon_sym_ascending] = ACTIONS(3427), - [anon_sym_descending] = ACTIONS(3427), - [anon_sym_group] = ACTIONS(3427), - [anon_sym_by] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_stackalloc] = ACTIONS(3427), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym___makeref] = ACTIONS(3427), - [anon_sym___reftype] = ACTIONS(3427), - [anon_sym___refvalue] = ACTIONS(3427), - [sym_null_literal] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3429), - [sym_integer_literal] = ACTIONS(3427), - [sym_real_literal] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_verbatim_string_literal] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3429), - [aux_sym_preproc_if_token3] = ACTIONS(3429), - [aux_sym_preproc_else_token1] = ACTIONS(3429), - [aux_sym_preproc_elif_token1] = ACTIONS(3429), + [1999] = { + [sym_preproc_region] = STATE(1999), + [sym_preproc_endregion] = STATE(1999), + [sym_preproc_line] = STATE(1999), + [sym_preproc_pragma] = STATE(1999), + [sym_preproc_nullable] = STATE(1999), + [sym_preproc_error] = STATE(1999), + [sym_preproc_warning] = STATE(1999), + [sym_preproc_define] = STATE(1999), + [sym_preproc_undef] = STATE(1999), + [sym__identifier_token] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_alias] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_unsafe] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_ref] = ACTIONS(3371), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_delegate] = ACTIONS(3371), + [anon_sym_record] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_file] = ACTIONS(3371), + [anon_sym_fixed] = ACTIONS(3371), + [anon_sym_internal] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_partial] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_required] = ACTIONS(3371), + [anon_sym_sealed] = ACTIONS(3371), + [anon_sym_virtual] = ACTIONS(3371), + [anon_sym_volatile] = ACTIONS(3371), + [anon_sym_where] = ACTIONS(3371), + [anon_sym_notnull] = ACTIONS(3371), + [anon_sym_unmanaged] = ACTIONS(3371), + [anon_sym_checked] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_CARET] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_scoped] = ACTIONS(3371), + [anon_sym_base] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [sym_predefined_type] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_unchecked] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_lock] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_when] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_foreach] = ACTIONS(3371), + [anon_sym_goto] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3373), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_into] = ACTIONS(3371), + [anon_sym_join] = ACTIONS(3371), + [anon_sym_on] = ACTIONS(3371), + [anon_sym_equals] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_orderby] = ACTIONS(3371), + [anon_sym_ascending] = ACTIONS(3371), + [anon_sym_descending] = ACTIONS(3371), + [anon_sym_group] = ACTIONS(3371), + [anon_sym_by] = ACTIONS(3371), + [anon_sym_select] = ACTIONS(3371), + [anon_sym_stackalloc] = ACTIONS(3371), + [anon_sym_sizeof] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym___makeref] = ACTIONS(3371), + [anon_sym___reftype] = ACTIONS(3371), + [anon_sym___refvalue] = ACTIONS(3371), + [sym_null_literal] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3373), + [sym_integer_literal] = ACTIONS(3371), + [sym_real_literal] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [sym_verbatim_string_literal] = ACTIONS(3373), + [aux_sym_preproc_if_token1] = ACTIONS(3373), + [aux_sym_preproc_if_token3] = ACTIONS(3373), + [aux_sym_preproc_else_token1] = ACTIONS(3373), + [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), + }, + [2000] = { + [sym_preproc_region] = STATE(2000), + [sym_preproc_endregion] = STATE(2000), + [sym_preproc_line] = STATE(2000), + [sym_preproc_pragma] = STATE(2000), + [sym_preproc_nullable] = STATE(2000), + [sym_preproc_error] = STATE(2000), + [sym_preproc_warning] = STATE(2000), + [sym_preproc_define] = STATE(2000), + [sym_preproc_undef] = STATE(2000), + [sym__identifier_token] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(3375), + [anon_sym_alias] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_ref] = ACTIONS(3375), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_delegate] = ACTIONS(3375), + [anon_sym_record] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_file] = ACTIONS(3375), + [anon_sym_fixed] = ACTIONS(3375), + [anon_sym_internal] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_partial] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_required] = ACTIONS(3375), + [anon_sym_sealed] = ACTIONS(3375), + [anon_sym_virtual] = ACTIONS(3375), + [anon_sym_volatile] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_notnull] = ACTIONS(3375), + [anon_sym_unmanaged] = ACTIONS(3375), + [anon_sym_checked] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_this] = ACTIONS(3375), + [anon_sym_scoped] = ACTIONS(3375), + [anon_sym_base] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [sym_predefined_type] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_unchecked] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_lock] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_when] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_foreach] = ACTIONS(3375), + [anon_sym_goto] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_into] = ACTIONS(3375), + [anon_sym_join] = ACTIONS(3375), + [anon_sym_on] = ACTIONS(3375), + [anon_sym_equals] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_orderby] = ACTIONS(3375), + [anon_sym_ascending] = ACTIONS(3375), + [anon_sym_descending] = ACTIONS(3375), + [anon_sym_group] = ACTIONS(3375), + [anon_sym_by] = ACTIONS(3375), + [anon_sym_select] = ACTIONS(3375), + [anon_sym_stackalloc] = ACTIONS(3375), + [anon_sym_sizeof] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym___makeref] = ACTIONS(3375), + [anon_sym___reftype] = ACTIONS(3375), + [anon_sym___refvalue] = ACTIONS(3375), + [sym_null_literal] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3377), + [sym_integer_literal] = ACTIONS(3375), + [sym_real_literal] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [sym_verbatim_string_literal] = ACTIONS(3377), + [aux_sym_preproc_if_token1] = ACTIONS(3377), + [aux_sym_preproc_if_token3] = ACTIONS(3377), + [aux_sym_preproc_else_token1] = ACTIONS(3377), + [aux_sym_preproc_elif_token1] = ACTIONS(3377), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378860,124 +377103,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3429), - [sym_interpolation_verbatim_start] = ACTIONS(3429), - [sym_interpolation_raw_start] = ACTIONS(3429), - [sym_raw_string_start] = ACTIONS(3429), + [sym_interpolation_regular_start] = ACTIONS(3377), + [sym_interpolation_verbatim_start] = ACTIONS(3377), + [sym_interpolation_raw_start] = ACTIONS(3377), + [sym_raw_string_start] = ACTIONS(3377), }, - [2015] = { - [sym_preproc_region] = STATE(2015), - [sym_preproc_endregion] = STATE(2015), - [sym_preproc_line] = STATE(2015), - [sym_preproc_pragma] = STATE(2015), - [sym_preproc_nullable] = STATE(2015), - [sym_preproc_error] = STATE(2015), - [sym_preproc_warning] = STATE(2015), - [sym_preproc_define] = STATE(2015), - [sym_preproc_undef] = STATE(2015), - [sym__identifier_token] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3431), - [anon_sym_alias] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_global] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_ref] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_delegate] = ACTIONS(3431), - [anon_sym_record] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_file] = ACTIONS(3431), - [anon_sym_fixed] = ACTIONS(3431), - [anon_sym_internal] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_partial] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_required] = ACTIONS(3431), - [anon_sym_sealed] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3431), - [anon_sym_volatile] = ACTIONS(3431), - [anon_sym_where] = ACTIONS(3431), - [anon_sym_notnull] = ACTIONS(3431), - [anon_sym_unmanaged] = ACTIONS(3431), - [anon_sym_checked] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_true] = ACTIONS(3431), - [anon_sym_false] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_this] = ACTIONS(3431), - [anon_sym_scoped] = ACTIONS(3431), - [anon_sym_base] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [sym_predefined_type] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_unchecked] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_when] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_foreach] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOT_DOT] = ACTIONS(3433), - [anon_sym_from] = ACTIONS(3431), - [anon_sym_into] = ACTIONS(3431), - [anon_sym_join] = ACTIONS(3431), - [anon_sym_on] = ACTIONS(3431), - [anon_sym_equals] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_orderby] = ACTIONS(3431), - [anon_sym_ascending] = ACTIONS(3431), - [anon_sym_descending] = ACTIONS(3431), - [anon_sym_group] = ACTIONS(3431), - [anon_sym_by] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_stackalloc] = ACTIONS(3431), - [anon_sym_sizeof] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym___makeref] = ACTIONS(3431), - [anon_sym___reftype] = ACTIONS(3431), - [anon_sym___refvalue] = ACTIONS(3431), - [sym_null_literal] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3433), - [sym_integer_literal] = ACTIONS(3431), - [sym_real_literal] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [sym_verbatim_string_literal] = ACTIONS(3433), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token3] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), + [2001] = { + [sym_preproc_region] = STATE(2001), + [sym_preproc_endregion] = STATE(2001), + [sym_preproc_line] = STATE(2001), + [sym_preproc_pragma] = STATE(2001), + [sym_preproc_nullable] = STATE(2001), + [sym_preproc_error] = STATE(2001), + [sym_preproc_warning] = STATE(2001), + [sym_preproc_define] = STATE(2001), + [sym_preproc_undef] = STATE(2001), + [sym__identifier_token] = ACTIONS(3379), + [anon_sym_extern] = ACTIONS(3379), + [anon_sym_alias] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_global] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_unsafe] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_ref] = ACTIONS(3379), + [anon_sym_struct] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_delegate] = ACTIONS(3379), + [anon_sym_record] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_file] = ACTIONS(3379), + [anon_sym_fixed] = ACTIONS(3379), + [anon_sym_internal] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_partial] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_required] = ACTIONS(3379), + [anon_sym_sealed] = ACTIONS(3379), + [anon_sym_virtual] = ACTIONS(3379), + [anon_sym_volatile] = ACTIONS(3379), + [anon_sym_where] = ACTIONS(3379), + [anon_sym_notnull] = ACTIONS(3379), + [anon_sym_unmanaged] = ACTIONS(3379), + [anon_sym_checked] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_this] = ACTIONS(3379), + [anon_sym_scoped] = ACTIONS(3379), + [anon_sym_base] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [sym_predefined_type] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_unchecked] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_lock] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_when] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_foreach] = ACTIONS(3379), + [anon_sym_goto] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_into] = ACTIONS(3379), + [anon_sym_join] = ACTIONS(3379), + [anon_sym_on] = ACTIONS(3379), + [anon_sym_equals] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_orderby] = ACTIONS(3379), + [anon_sym_ascending] = ACTIONS(3379), + [anon_sym_descending] = ACTIONS(3379), + [anon_sym_group] = ACTIONS(3379), + [anon_sym_by] = ACTIONS(3379), + [anon_sym_select] = ACTIONS(3379), + [anon_sym_stackalloc] = ACTIONS(3379), + [anon_sym_sizeof] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym___makeref] = ACTIONS(3379), + [anon_sym___reftype] = ACTIONS(3379), + [anon_sym___refvalue] = ACTIONS(3379), + [sym_null_literal] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3381), + [sym_integer_literal] = ACTIONS(3379), + [sym_real_literal] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [sym_verbatim_string_literal] = ACTIONS(3381), + [aux_sym_preproc_if_token1] = ACTIONS(3381), + [aux_sym_preproc_if_token3] = ACTIONS(3381), + [aux_sym_preproc_else_token1] = ACTIONS(3381), + [aux_sym_preproc_elif_token1] = ACTIONS(3381), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -378988,124 +377231,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3433), - [sym_interpolation_verbatim_start] = ACTIONS(3433), - [sym_interpolation_raw_start] = ACTIONS(3433), - [sym_raw_string_start] = ACTIONS(3433), + [sym_interpolation_regular_start] = ACTIONS(3381), + [sym_interpolation_verbatim_start] = ACTIONS(3381), + [sym_interpolation_raw_start] = ACTIONS(3381), + [sym_raw_string_start] = ACTIONS(3381), }, - [2016] = { - [sym_preproc_region] = STATE(2016), - [sym_preproc_endregion] = STATE(2016), - [sym_preproc_line] = STATE(2016), - [sym_preproc_pragma] = STATE(2016), - [sym_preproc_nullable] = STATE(2016), - [sym_preproc_error] = STATE(2016), - [sym_preproc_warning] = STATE(2016), - [sym_preproc_define] = STATE(2016), - [sym_preproc_undef] = STATE(2016), - [sym__identifier_token] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym_alias] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_global] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_ref] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_delegate] = ACTIONS(3435), - [anon_sym_record] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_file] = ACTIONS(3435), - [anon_sym_fixed] = ACTIONS(3435), - [anon_sym_internal] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_partial] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_required] = ACTIONS(3435), - [anon_sym_sealed] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_where] = ACTIONS(3435), - [anon_sym_notnull] = ACTIONS(3435), - [anon_sym_unmanaged] = ACTIONS(3435), - [anon_sym_checked] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3435), - [anon_sym_false] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_this] = ACTIONS(3435), - [anon_sym_scoped] = ACTIONS(3435), - [anon_sym_base] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [sym_predefined_type] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_unchecked] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_foreach] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [anon_sym_from] = ACTIONS(3435), - [anon_sym_into] = ACTIONS(3435), - [anon_sym_join] = ACTIONS(3435), - [anon_sym_on] = ACTIONS(3435), - [anon_sym_equals] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_orderby] = ACTIONS(3435), - [anon_sym_ascending] = ACTIONS(3435), - [anon_sym_descending] = ACTIONS(3435), - [anon_sym_group] = ACTIONS(3435), - [anon_sym_by] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_stackalloc] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym___makeref] = ACTIONS(3435), - [anon_sym___reftype] = ACTIONS(3435), - [anon_sym___refvalue] = ACTIONS(3435), - [sym_null_literal] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3437), - [sym_integer_literal] = ACTIONS(3435), - [sym_real_literal] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_verbatim_string_literal] = ACTIONS(3437), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_if_token3] = ACTIONS(3437), - [aux_sym_preproc_else_token1] = ACTIONS(3437), - [aux_sym_preproc_elif_token1] = ACTIONS(3437), + [2002] = { + [sym_preproc_region] = STATE(2002), + [sym_preproc_endregion] = STATE(2002), + [sym_preproc_line] = STATE(2002), + [sym_preproc_pragma] = STATE(2002), + [sym_preproc_nullable] = STATE(2002), + [sym_preproc_error] = STATE(2002), + [sym_preproc_warning] = STATE(2002), + [sym_preproc_define] = STATE(2002), + [sym_preproc_undef] = STATE(2002), + [sym__identifier_token] = ACTIONS(3383), + [anon_sym_extern] = ACTIONS(3383), + [anon_sym_alias] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_global] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_unsafe] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_ref] = ACTIONS(3383), + [anon_sym_struct] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_delegate] = ACTIONS(3383), + [anon_sym_record] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_file] = ACTIONS(3383), + [anon_sym_fixed] = ACTIONS(3383), + [anon_sym_internal] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_partial] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_required] = ACTIONS(3383), + [anon_sym_sealed] = ACTIONS(3383), + [anon_sym_virtual] = ACTIONS(3383), + [anon_sym_volatile] = ACTIONS(3383), + [anon_sym_where] = ACTIONS(3383), + [anon_sym_notnull] = ACTIONS(3383), + [anon_sym_unmanaged] = ACTIONS(3383), + [anon_sym_checked] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_CARET] = ACTIONS(3385), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_this] = ACTIONS(3383), + [anon_sym_scoped] = ACTIONS(3383), + [anon_sym_base] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [sym_predefined_type] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_unchecked] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_lock] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_default] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_when] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_foreach] = ACTIONS(3383), + [anon_sym_goto] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3385), + [anon_sym_from] = ACTIONS(3383), + [anon_sym_into] = ACTIONS(3383), + [anon_sym_join] = ACTIONS(3383), + [anon_sym_on] = ACTIONS(3383), + [anon_sym_equals] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_orderby] = ACTIONS(3383), + [anon_sym_ascending] = ACTIONS(3383), + [anon_sym_descending] = ACTIONS(3383), + [anon_sym_group] = ACTIONS(3383), + [anon_sym_by] = ACTIONS(3383), + [anon_sym_select] = ACTIONS(3383), + [anon_sym_stackalloc] = ACTIONS(3383), + [anon_sym_sizeof] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym___makeref] = ACTIONS(3383), + [anon_sym___reftype] = ACTIONS(3383), + [anon_sym___refvalue] = ACTIONS(3383), + [sym_null_literal] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3385), + [sym_integer_literal] = ACTIONS(3383), + [sym_real_literal] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [sym_verbatim_string_literal] = ACTIONS(3385), + [aux_sym_preproc_if_token1] = ACTIONS(3385), + [aux_sym_preproc_if_token3] = ACTIONS(3385), + [aux_sym_preproc_else_token1] = ACTIONS(3385), + [aux_sym_preproc_elif_token1] = ACTIONS(3385), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -379116,124 +377359,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3437), - [sym_interpolation_verbatim_start] = ACTIONS(3437), - [sym_interpolation_raw_start] = ACTIONS(3437), - [sym_raw_string_start] = ACTIONS(3437), + [sym_interpolation_regular_start] = ACTIONS(3385), + [sym_interpolation_verbatim_start] = ACTIONS(3385), + [sym_interpolation_raw_start] = ACTIONS(3385), + [sym_raw_string_start] = ACTIONS(3385), }, - [2017] = { - [sym_preproc_region] = STATE(2017), - [sym_preproc_endregion] = STATE(2017), - [sym_preproc_line] = STATE(2017), - [sym_preproc_pragma] = STATE(2017), - [sym_preproc_nullable] = STATE(2017), - [sym_preproc_error] = STATE(2017), - [sym_preproc_warning] = STATE(2017), - [sym_preproc_define] = STATE(2017), - [sym_preproc_undef] = STATE(2017), - [sym__identifier_token] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3439), - [anon_sym_alias] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_global] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_unsafe] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_ref] = ACTIONS(3439), - [anon_sym_struct] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_delegate] = ACTIONS(3439), - [anon_sym_record] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_file] = ACTIONS(3439), - [anon_sym_fixed] = ACTIONS(3439), - [anon_sym_internal] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_partial] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_required] = ACTIONS(3439), - [anon_sym_sealed] = ACTIONS(3439), - [anon_sym_virtual] = ACTIONS(3439), - [anon_sym_volatile] = ACTIONS(3439), - [anon_sym_where] = ACTIONS(3439), - [anon_sym_notnull] = ACTIONS(3439), - [anon_sym_unmanaged] = ACTIONS(3439), - [anon_sym_checked] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_this] = ACTIONS(3439), - [anon_sym_scoped] = ACTIONS(3439), - [anon_sym_base] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [sym_predefined_type] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_unchecked] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_lock] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_when] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_foreach] = ACTIONS(3439), - [anon_sym_goto] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_DOT_DOT] = ACTIONS(3441), - [anon_sym_from] = ACTIONS(3439), - [anon_sym_into] = ACTIONS(3439), - [anon_sym_join] = ACTIONS(3439), - [anon_sym_on] = ACTIONS(3439), - [anon_sym_equals] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_orderby] = ACTIONS(3439), - [anon_sym_ascending] = ACTIONS(3439), - [anon_sym_descending] = ACTIONS(3439), - [anon_sym_group] = ACTIONS(3439), - [anon_sym_by] = ACTIONS(3439), - [anon_sym_select] = ACTIONS(3439), - [anon_sym_stackalloc] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym___makeref] = ACTIONS(3439), - [anon_sym___reftype] = ACTIONS(3439), - [anon_sym___refvalue] = ACTIONS(3439), - [sym_null_literal] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3441), - [sym_integer_literal] = ACTIONS(3439), - [sym_real_literal] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym_verbatim_string_literal] = ACTIONS(3441), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token3] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), + [2003] = { + [sym_preproc_region] = STATE(2003), + [sym_preproc_endregion] = STATE(2003), + [sym_preproc_line] = STATE(2003), + [sym_preproc_pragma] = STATE(2003), + [sym_preproc_nullable] = STATE(2003), + [sym_preproc_error] = STATE(2003), + [sym_preproc_warning] = STATE(2003), + [sym_preproc_define] = STATE(2003), + [sym_preproc_undef] = STATE(2003), + [sym__identifier_token] = ACTIONS(3387), + [anon_sym_extern] = ACTIONS(3387), + [anon_sym_alias] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_unsafe] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_ref] = ACTIONS(3387), + [anon_sym_struct] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_delegate] = ACTIONS(3387), + [anon_sym_record] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_file] = ACTIONS(3387), + [anon_sym_fixed] = ACTIONS(3387), + [anon_sym_internal] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_partial] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_required] = ACTIONS(3387), + [anon_sym_sealed] = ACTIONS(3387), + [anon_sym_virtual] = ACTIONS(3387), + [anon_sym_volatile] = ACTIONS(3387), + [anon_sym_where] = ACTIONS(3387), + [anon_sym_notnull] = ACTIONS(3387), + [anon_sym_unmanaged] = ACTIONS(3387), + [anon_sym_checked] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3387), + [anon_sym_false] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_this] = ACTIONS(3387), + [anon_sym_scoped] = ACTIONS(3387), + [anon_sym_base] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [sym_predefined_type] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_unchecked] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_lock] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_when] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_foreach] = ACTIONS(3387), + [anon_sym_goto] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_from] = ACTIONS(3387), + [anon_sym_into] = ACTIONS(3387), + [anon_sym_join] = ACTIONS(3387), + [anon_sym_on] = ACTIONS(3387), + [anon_sym_equals] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_orderby] = ACTIONS(3387), + [anon_sym_ascending] = ACTIONS(3387), + [anon_sym_descending] = ACTIONS(3387), + [anon_sym_group] = ACTIONS(3387), + [anon_sym_by] = ACTIONS(3387), + [anon_sym_select] = ACTIONS(3387), + [anon_sym_stackalloc] = ACTIONS(3387), + [anon_sym_sizeof] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym___makeref] = ACTIONS(3387), + [anon_sym___reftype] = ACTIONS(3387), + [anon_sym___refvalue] = ACTIONS(3387), + [sym_null_literal] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3389), + [sym_integer_literal] = ACTIONS(3387), + [sym_real_literal] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [sym_verbatim_string_literal] = ACTIONS(3389), + [aux_sym_preproc_if_token1] = ACTIONS(3389), + [aux_sym_preproc_if_token3] = ACTIONS(3389), + [aux_sym_preproc_else_token1] = ACTIONS(3389), + [aux_sym_preproc_elif_token1] = ACTIONS(3389), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -379244,124 +377487,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3441), - [sym_interpolation_verbatim_start] = ACTIONS(3441), - [sym_interpolation_raw_start] = ACTIONS(3441), - [sym_raw_string_start] = ACTIONS(3441), + [sym_interpolation_regular_start] = ACTIONS(3389), + [sym_interpolation_verbatim_start] = ACTIONS(3389), + [sym_interpolation_raw_start] = ACTIONS(3389), + [sym_raw_string_start] = ACTIONS(3389), }, - [2018] = { - [sym_preproc_region] = STATE(2018), - [sym_preproc_endregion] = STATE(2018), - [sym_preproc_line] = STATE(2018), - [sym_preproc_pragma] = STATE(2018), - [sym_preproc_nullable] = STATE(2018), - [sym_preproc_error] = STATE(2018), - [sym_preproc_warning] = STATE(2018), - [sym_preproc_define] = STATE(2018), - [sym_preproc_undef] = STATE(2018), - [sym__identifier_token] = ACTIONS(3443), - [anon_sym_extern] = ACTIONS(3443), - [anon_sym_alias] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_unsafe] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_ref] = ACTIONS(3443), - [anon_sym_struct] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_delegate] = ACTIONS(3443), - [anon_sym_record] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_file] = ACTIONS(3443), - [anon_sym_fixed] = ACTIONS(3443), - [anon_sym_internal] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_partial] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_required] = ACTIONS(3443), - [anon_sym_sealed] = ACTIONS(3443), - [anon_sym_virtual] = ACTIONS(3443), - [anon_sym_volatile] = ACTIONS(3443), - [anon_sym_where] = ACTIONS(3443), - [anon_sym_notnull] = ACTIONS(3443), - [anon_sym_unmanaged] = ACTIONS(3443), - [anon_sym_checked] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3443), - [anon_sym_scoped] = ACTIONS(3443), - [anon_sym_base] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [sym_predefined_type] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_unchecked] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_lock] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_when] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_foreach] = ACTIONS(3443), - [anon_sym_goto] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3443), - [anon_sym_into] = ACTIONS(3443), - [anon_sym_join] = ACTIONS(3443), - [anon_sym_on] = ACTIONS(3443), - [anon_sym_equals] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_orderby] = ACTIONS(3443), - [anon_sym_ascending] = ACTIONS(3443), - [anon_sym_descending] = ACTIONS(3443), - [anon_sym_group] = ACTIONS(3443), - [anon_sym_by] = ACTIONS(3443), - [anon_sym_select] = ACTIONS(3443), - [anon_sym_stackalloc] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym___makeref] = ACTIONS(3443), - [anon_sym___reftype] = ACTIONS(3443), - [anon_sym___refvalue] = ACTIONS(3443), - [sym_null_literal] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3445), - [sym_integer_literal] = ACTIONS(3443), - [sym_real_literal] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym_verbatim_string_literal] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [2004] = { + [sym_preproc_region] = STATE(2004), + [sym_preproc_endregion] = STATE(2004), + [sym_preproc_line] = STATE(2004), + [sym_preproc_pragma] = STATE(2004), + [sym_preproc_nullable] = STATE(2004), + [sym_preproc_error] = STATE(2004), + [sym_preproc_warning] = STATE(2004), + [sym_preproc_define] = STATE(2004), + [sym_preproc_undef] = STATE(2004), + [sym__identifier_token] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym_alias] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_unsafe] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_ref] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_delegate] = ACTIONS(3391), + [anon_sym_record] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_file] = ACTIONS(3391), + [anon_sym_fixed] = ACTIONS(3391), + [anon_sym_internal] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_partial] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_required] = ACTIONS(3391), + [anon_sym_sealed] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_where] = ACTIONS(3391), + [anon_sym_notnull] = ACTIONS(3391), + [anon_sym_unmanaged] = ACTIONS(3391), + [anon_sym_checked] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_CARET] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_this] = ACTIONS(3391), + [anon_sym_scoped] = ACTIONS(3391), + [anon_sym_base] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [sym_predefined_type] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_unchecked] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_lock] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_when] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_foreach] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_into] = ACTIONS(3391), + [anon_sym_join] = ACTIONS(3391), + [anon_sym_on] = ACTIONS(3391), + [anon_sym_equals] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_orderby] = ACTIONS(3391), + [anon_sym_ascending] = ACTIONS(3391), + [anon_sym_descending] = ACTIONS(3391), + [anon_sym_group] = ACTIONS(3391), + [anon_sym_by] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_stackalloc] = ACTIONS(3391), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym___makeref] = ACTIONS(3391), + [anon_sym___reftype] = ACTIONS(3391), + [anon_sym___refvalue] = ACTIONS(3391), + [sym_null_literal] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3393), + [sym_integer_literal] = ACTIONS(3391), + [sym_real_literal] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_verbatim_string_literal] = ACTIONS(3393), + [aux_sym_preproc_if_token1] = ACTIONS(3393), + [aux_sym_preproc_if_token3] = ACTIONS(3393), + [aux_sym_preproc_else_token1] = ACTIONS(3393), + [aux_sym_preproc_elif_token1] = ACTIONS(3393), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3393), + [sym_interpolation_verbatim_start] = ACTIONS(3393), + [sym_interpolation_raw_start] = ACTIONS(3393), + [sym_raw_string_start] = ACTIONS(3393), + }, + [2005] = { + [sym_preproc_region] = STATE(2005), + [sym_preproc_endregion] = STATE(2005), + [sym_preproc_line] = STATE(2005), + [sym_preproc_pragma] = STATE(2005), + [sym_preproc_nullable] = STATE(2005), + [sym_preproc_error] = STATE(2005), + [sym_preproc_warning] = STATE(2005), + [sym_preproc_define] = STATE(2005), + [sym_preproc_undef] = STATE(2005), + [sym__identifier_token] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_unsafe] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_ref] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_delegate] = ACTIONS(3395), + [anon_sym_record] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_file] = ACTIONS(3395), + [anon_sym_fixed] = ACTIONS(3395), + [anon_sym_internal] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_partial] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_required] = ACTIONS(3395), + [anon_sym_sealed] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_notnull] = ACTIONS(3395), + [anon_sym_unmanaged] = ACTIONS(3395), + [anon_sym_checked] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_CARET] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_this] = ACTIONS(3395), + [anon_sym_scoped] = ACTIONS(3395), + [anon_sym_base] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [sym_predefined_type] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_unchecked] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_lock] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_when] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_foreach] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_into] = ACTIONS(3395), + [anon_sym_join] = ACTIONS(3395), + [anon_sym_on] = ACTIONS(3395), + [anon_sym_equals] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_orderby] = ACTIONS(3395), + [anon_sym_ascending] = ACTIONS(3395), + [anon_sym_descending] = ACTIONS(3395), + [anon_sym_group] = ACTIONS(3395), + [anon_sym_by] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_stackalloc] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym___makeref] = ACTIONS(3395), + [anon_sym___reftype] = ACTIONS(3395), + [anon_sym___refvalue] = ACTIONS(3395), + [sym_null_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3397), + [sym_integer_literal] = ACTIONS(3395), + [sym_real_literal] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_verbatim_string_literal] = ACTIONS(3397), + [aux_sym_preproc_if_token1] = ACTIONS(3397), + [aux_sym_preproc_if_token3] = ACTIONS(3397), + [aux_sym_preproc_else_token1] = ACTIONS(3397), + [aux_sym_preproc_elif_token1] = ACTIONS(3397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -379372,250 +377743,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3445), - [sym_interpolation_verbatim_start] = ACTIONS(3445), - [sym_interpolation_raw_start] = ACTIONS(3445), - [sym_raw_string_start] = ACTIONS(3445), - }, - [2019] = { - [sym_preproc_region] = STATE(2019), - [sym_preproc_endregion] = STATE(2019), - [sym_preproc_line] = STATE(2019), - [sym_preproc_pragma] = STATE(2019), - [sym_preproc_nullable] = STATE(2019), - [sym_preproc_error] = STATE(2019), - [sym_preproc_warning] = STATE(2019), - [sym_preproc_define] = STATE(2019), - [sym_preproc_undef] = STATE(2019), - [ts_builtin_sym_end] = ACTIONS(3259), - [sym__identifier_token] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_alias] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_global] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_ref] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_delegate] = ACTIONS(3257), - [anon_sym_record] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_file] = ACTIONS(3257), - [anon_sym_fixed] = ACTIONS(3257), - [anon_sym_internal] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_partial] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_required] = ACTIONS(3257), - [anon_sym_sealed] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_where] = ACTIONS(3257), - [anon_sym_notnull] = ACTIONS(3257), - [anon_sym_unmanaged] = ACTIONS(3257), - [anon_sym_checked] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_true] = ACTIONS(3257), - [anon_sym_false] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_this] = ACTIONS(3257), - [anon_sym_scoped] = ACTIONS(3257), - [anon_sym_base] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [sym_predefined_type] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_unchecked] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_when] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_foreach] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_DOT_DOT] = ACTIONS(3259), - [anon_sym_from] = ACTIONS(3257), - [anon_sym_into] = ACTIONS(3257), - [anon_sym_join] = ACTIONS(3257), - [anon_sym_on] = ACTIONS(3257), - [anon_sym_equals] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_orderby] = ACTIONS(3257), - [anon_sym_ascending] = ACTIONS(3257), - [anon_sym_descending] = ACTIONS(3257), - [anon_sym_group] = ACTIONS(3257), - [anon_sym_by] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_stackalloc] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym___makeref] = ACTIONS(3257), - [anon_sym___reftype] = ACTIONS(3257), - [anon_sym___refvalue] = ACTIONS(3257), - [sym_null_literal] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3259), - [sym_integer_literal] = ACTIONS(3257), - [sym_real_literal] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_verbatim_string_literal] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3259), - [sym_interpolation_verbatim_start] = ACTIONS(3259), - [sym_interpolation_raw_start] = ACTIONS(3259), - [sym_raw_string_start] = ACTIONS(3259), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), }, - [2020] = { - [sym_preproc_region] = STATE(2020), - [sym_preproc_endregion] = STATE(2020), - [sym_preproc_line] = STATE(2020), - [sym_preproc_pragma] = STATE(2020), - [sym_preproc_nullable] = STATE(2020), - [sym_preproc_error] = STATE(2020), - [sym_preproc_warning] = STATE(2020), - [sym_preproc_define] = STATE(2020), - [sym_preproc_undef] = STATE(2020), - [ts_builtin_sym_end] = ACTIONS(3293), - [sym__identifier_token] = ACTIONS(3291), - [anon_sym_extern] = ACTIONS(3291), - [anon_sym_alias] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_global] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_ref] = ACTIONS(3291), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_delegate] = ACTIONS(3291), - [anon_sym_record] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_file] = ACTIONS(3291), - [anon_sym_fixed] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_partial] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_sealed] = ACTIONS(3291), - [anon_sym_virtual] = ACTIONS(3291), - [anon_sym_volatile] = ACTIONS(3291), - [anon_sym_where] = ACTIONS(3291), - [anon_sym_notnull] = ACTIONS(3291), - [anon_sym_unmanaged] = ACTIONS(3291), - [anon_sym_checked] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_CARET] = ACTIONS(3293), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_this] = ACTIONS(3291), - [anon_sym_scoped] = ACTIONS(3291), - [anon_sym_base] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [sym_predefined_type] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_unchecked] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_when] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_foreach] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [anon_sym_from] = ACTIONS(3291), - [anon_sym_into] = ACTIONS(3291), - [anon_sym_join] = ACTIONS(3291), - [anon_sym_on] = ACTIONS(3291), - [anon_sym_equals] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_orderby] = ACTIONS(3291), - [anon_sym_ascending] = ACTIONS(3291), - [anon_sym_descending] = ACTIONS(3291), - [anon_sym_group] = ACTIONS(3291), - [anon_sym_by] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_stackalloc] = ACTIONS(3291), - [anon_sym_sizeof] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym___makeref] = ACTIONS(3291), - [anon_sym___reftype] = ACTIONS(3291), - [anon_sym___refvalue] = ACTIONS(3291), - [sym_null_literal] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3293), - [sym_integer_literal] = ACTIONS(3291), - [sym_real_literal] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [sym_verbatim_string_literal] = ACTIONS(3293), - [aux_sym_preproc_if_token1] = ACTIONS(3293), + [2006] = { + [sym_preproc_region] = STATE(2006), + [sym_preproc_endregion] = STATE(2006), + [sym_preproc_line] = STATE(2006), + [sym_preproc_pragma] = STATE(2006), + [sym_preproc_nullable] = STATE(2006), + [sym_preproc_error] = STATE(2006), + [sym_preproc_warning] = STATE(2006), + [sym_preproc_define] = STATE(2006), + [sym_preproc_undef] = STATE(2006), + [sym__identifier_token] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym_alias] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_global] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_unsafe] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_ref] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_delegate] = ACTIONS(3399), + [anon_sym_record] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_file] = ACTIONS(3399), + [anon_sym_fixed] = ACTIONS(3399), + [anon_sym_internal] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_partial] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_required] = ACTIONS(3399), + [anon_sym_sealed] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_where] = ACTIONS(3399), + [anon_sym_notnull] = ACTIONS(3399), + [anon_sym_unmanaged] = ACTIONS(3399), + [anon_sym_checked] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_CARET] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_this] = ACTIONS(3399), + [anon_sym_scoped] = ACTIONS(3399), + [anon_sym_base] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [sym_predefined_type] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_unchecked] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_lock] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_when] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_foreach] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3399), + [anon_sym_into] = ACTIONS(3399), + [anon_sym_join] = ACTIONS(3399), + [anon_sym_on] = ACTIONS(3399), + [anon_sym_equals] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_orderby] = ACTIONS(3399), + [anon_sym_ascending] = ACTIONS(3399), + [anon_sym_descending] = ACTIONS(3399), + [anon_sym_group] = ACTIONS(3399), + [anon_sym_by] = ACTIONS(3399), + [anon_sym_select] = ACTIONS(3399), + [anon_sym_stackalloc] = ACTIONS(3399), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym___makeref] = ACTIONS(3399), + [anon_sym___reftype] = ACTIONS(3399), + [anon_sym___refvalue] = ACTIONS(3399), + [sym_null_literal] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3401), + [sym_integer_literal] = ACTIONS(3399), + [sym_real_literal] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_verbatim_string_literal] = ACTIONS(3401), + [aux_sym_preproc_if_token1] = ACTIONS(3401), + [aux_sym_preproc_if_token3] = ACTIONS(3401), + [aux_sym_preproc_else_token1] = ACTIONS(3401), + [aux_sym_preproc_elif_token1] = ACTIONS(3401), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -379626,377 +377871,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3293), - [sym_interpolation_verbatim_start] = ACTIONS(3293), - [sym_interpolation_raw_start] = ACTIONS(3293), - [sym_raw_string_start] = ACTIONS(3293), - }, - [2021] = { - [sym_preproc_region] = STATE(2021), - [sym_preproc_endregion] = STATE(2021), - [sym_preproc_line] = STATE(2021), - [sym_preproc_pragma] = STATE(2021), - [sym_preproc_nullable] = STATE(2021), - [sym_preproc_error] = STATE(2021), - [sym_preproc_warning] = STATE(2021), - [sym_preproc_define] = STATE(2021), - [sym_preproc_undef] = STATE(2021), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_record] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), - }, - [2022] = { - [sym_preproc_region] = STATE(2022), - [sym_preproc_endregion] = STATE(2022), - [sym_preproc_line] = STATE(2022), - [sym_preproc_pragma] = STATE(2022), - [sym_preproc_nullable] = STATE(2022), - [sym_preproc_error] = STATE(2022), - [sym_preproc_warning] = STATE(2022), - [sym_preproc_define] = STATE(2022), - [sym_preproc_undef] = STATE(2022), - [ts_builtin_sym_end] = ACTIONS(3207), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_ref] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_delegate] = ACTIONS(3205), - [anon_sym_record] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_checked] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_this] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_base] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [sym_predefined_type] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_unchecked] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_foreach] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_stackalloc] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym___makeref] = ACTIONS(3205), - [anon_sym___reftype] = ACTIONS(3205), - [anon_sym___refvalue] = ACTIONS(3205), - [sym_null_literal] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3207), - [sym_integer_literal] = ACTIONS(3205), - [sym_real_literal] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [sym_verbatim_string_literal] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3207), - [sym_interpolation_verbatim_start] = ACTIONS(3207), - [sym_interpolation_raw_start] = ACTIONS(3207), - [sym_raw_string_start] = ACTIONS(3207), + [sym_interpolation_regular_start] = ACTIONS(3401), + [sym_interpolation_verbatim_start] = ACTIONS(3401), + [sym_interpolation_raw_start] = ACTIONS(3401), + [sym_raw_string_start] = ACTIONS(3401), }, - [2023] = { - [sym_preproc_region] = STATE(2023), - [sym_preproc_endregion] = STATE(2023), - [sym_preproc_line] = STATE(2023), - [sym_preproc_pragma] = STATE(2023), - [sym_preproc_nullable] = STATE(2023), - [sym_preproc_error] = STATE(2023), - [sym_preproc_warning] = STATE(2023), - [sym_preproc_define] = STATE(2023), - [sym_preproc_undef] = STATE(2023), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym__identifier_token] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym_alias] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_global] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_ref] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_delegate] = ACTIONS(3177), - [anon_sym_record] = ACTIONS(3177), - [anon_sym_abstract] = ACTIONS(3177), - [anon_sym_async] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_file] = ACTIONS(3177), - [anon_sym_fixed] = ACTIONS(3177), - [anon_sym_internal] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3177), - [anon_sym_partial] = ACTIONS(3177), - [anon_sym_private] = ACTIONS(3177), - [anon_sym_protected] = ACTIONS(3177), - [anon_sym_public] = ACTIONS(3177), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_required] = ACTIONS(3177), - [anon_sym_sealed] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_where] = ACTIONS(3177), - [anon_sym_notnull] = ACTIONS(3177), - [anon_sym_unmanaged] = ACTIONS(3177), - [anon_sym_checked] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_this] = ACTIONS(3177), - [anon_sym_scoped] = ACTIONS(3177), - [anon_sym_base] = ACTIONS(3177), - [anon_sym_var] = ACTIONS(3177), - [sym_predefined_type] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_unchecked] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_when] = ACTIONS(3177), - [anon_sym_await] = ACTIONS(3177), - [anon_sym_foreach] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_DOT_DOT] = ACTIONS(3179), - [anon_sym_from] = ACTIONS(3177), - [anon_sym_into] = ACTIONS(3177), - [anon_sym_join] = ACTIONS(3177), - [anon_sym_on] = ACTIONS(3177), - [anon_sym_equals] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_orderby] = ACTIONS(3177), - [anon_sym_ascending] = ACTIONS(3177), - [anon_sym_descending] = ACTIONS(3177), - [anon_sym_group] = ACTIONS(3177), - [anon_sym_by] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_stackalloc] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym_typeof] = ACTIONS(3177), - [anon_sym___makeref] = ACTIONS(3177), - [anon_sym___reftype] = ACTIONS(3177), - [anon_sym___refvalue] = ACTIONS(3177), - [sym_null_literal] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3179), - [sym_integer_literal] = ACTIONS(3177), - [sym_real_literal] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_verbatim_string_literal] = ACTIONS(3179), - [aux_sym_preproc_if_token1] = ACTIONS(3179), + [2007] = { + [sym_preproc_region] = STATE(2007), + [sym_preproc_endregion] = STATE(2007), + [sym_preproc_line] = STATE(2007), + [sym_preproc_pragma] = STATE(2007), + [sym_preproc_nullable] = STATE(2007), + [sym_preproc_error] = STATE(2007), + [sym_preproc_warning] = STATE(2007), + [sym_preproc_define] = STATE(2007), + [sym_preproc_undef] = STATE(2007), + [sym__identifier_token] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym_alias] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_unsafe] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_ref] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_delegate] = ACTIONS(3403), + [anon_sym_record] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_file] = ACTIONS(3403), + [anon_sym_fixed] = ACTIONS(3403), + [anon_sym_internal] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_partial] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_required] = ACTIONS(3403), + [anon_sym_sealed] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_where] = ACTIONS(3403), + [anon_sym_notnull] = ACTIONS(3403), + [anon_sym_unmanaged] = ACTIONS(3403), + [anon_sym_checked] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_this] = ACTIONS(3403), + [anon_sym_scoped] = ACTIONS(3403), + [anon_sym_base] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [sym_predefined_type] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_unchecked] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_lock] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_when] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_foreach] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_into] = ACTIONS(3403), + [anon_sym_join] = ACTIONS(3403), + [anon_sym_on] = ACTIONS(3403), + [anon_sym_equals] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_orderby] = ACTIONS(3403), + [anon_sym_ascending] = ACTIONS(3403), + [anon_sym_descending] = ACTIONS(3403), + [anon_sym_group] = ACTIONS(3403), + [anon_sym_by] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_stackalloc] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym___makeref] = ACTIONS(3403), + [anon_sym___reftype] = ACTIONS(3403), + [anon_sym___refvalue] = ACTIONS(3403), + [sym_null_literal] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3405), + [sym_integer_literal] = ACTIONS(3403), + [sym_real_literal] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_verbatim_string_literal] = ACTIONS(3405), + [aux_sym_preproc_if_token1] = ACTIONS(3405), + [aux_sym_preproc_if_token3] = ACTIONS(3405), + [aux_sym_preproc_else_token1] = ACTIONS(3405), + [aux_sym_preproc_elif_token1] = ACTIONS(3405), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380007,123 +377999,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3179), - [sym_interpolation_verbatim_start] = ACTIONS(3179), - [sym_interpolation_raw_start] = ACTIONS(3179), - [sym_raw_string_start] = ACTIONS(3179), + [sym_interpolation_regular_start] = ACTIONS(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, - [2024] = { - [sym_preproc_region] = STATE(2024), - [sym_preproc_endregion] = STATE(2024), - [sym_preproc_line] = STATE(2024), - [sym_preproc_pragma] = STATE(2024), - [sym_preproc_nullable] = STATE(2024), - [sym_preproc_error] = STATE(2024), - [sym_preproc_warning] = STATE(2024), - [sym_preproc_define] = STATE(2024), - [sym_preproc_undef] = STATE(2024), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym__identifier_token] = ACTIONS(3311), - [anon_sym_extern] = ACTIONS(3311), - [anon_sym_alias] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_global] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_ref] = ACTIONS(3311), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_delegate] = ACTIONS(3311), - [anon_sym_record] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_file] = ACTIONS(3311), - [anon_sym_fixed] = ACTIONS(3311), - [anon_sym_internal] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_partial] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_required] = ACTIONS(3311), - [anon_sym_sealed] = ACTIONS(3311), - [anon_sym_virtual] = ACTIONS(3311), - [anon_sym_volatile] = ACTIONS(3311), - [anon_sym_where] = ACTIONS(3311), - [anon_sym_notnull] = ACTIONS(3311), - [anon_sym_unmanaged] = ACTIONS(3311), - [anon_sym_checked] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3311), - [anon_sym_false] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_this] = ACTIONS(3311), - [anon_sym_scoped] = ACTIONS(3311), - [anon_sym_base] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [sym_predefined_type] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_unchecked] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_when] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_foreach] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_DOT_DOT] = ACTIONS(3313), - [anon_sym_from] = ACTIONS(3311), - [anon_sym_into] = ACTIONS(3311), - [anon_sym_join] = ACTIONS(3311), - [anon_sym_on] = ACTIONS(3311), - [anon_sym_equals] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_orderby] = ACTIONS(3311), - [anon_sym_ascending] = ACTIONS(3311), - [anon_sym_descending] = ACTIONS(3311), - [anon_sym_group] = ACTIONS(3311), - [anon_sym_by] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_stackalloc] = ACTIONS(3311), - [anon_sym_sizeof] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym___makeref] = ACTIONS(3311), - [anon_sym___reftype] = ACTIONS(3311), - [anon_sym___refvalue] = ACTIONS(3311), - [sym_null_literal] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3313), - [sym_integer_literal] = ACTIONS(3311), - [sym_real_literal] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [sym_verbatim_string_literal] = ACTIONS(3313), - [aux_sym_preproc_if_token1] = ACTIONS(3313), + [2008] = { + [sym_preproc_region] = STATE(2008), + [sym_preproc_endregion] = STATE(2008), + [sym_preproc_line] = STATE(2008), + [sym_preproc_pragma] = STATE(2008), + [sym_preproc_nullable] = STATE(2008), + [sym_preproc_error] = STATE(2008), + [sym_preproc_warning] = STATE(2008), + [sym_preproc_define] = STATE(2008), + [sym_preproc_undef] = STATE(2008), + [sym__identifier_token] = ACTIONS(3407), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym_alias] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_global] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_unsafe] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_ref] = ACTIONS(3407), + [anon_sym_struct] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_delegate] = ACTIONS(3407), + [anon_sym_record] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_file] = ACTIONS(3407), + [anon_sym_fixed] = ACTIONS(3407), + [anon_sym_internal] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_partial] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_required] = ACTIONS(3407), + [anon_sym_sealed] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_where] = ACTIONS(3407), + [anon_sym_notnull] = ACTIONS(3407), + [anon_sym_unmanaged] = ACTIONS(3407), + [anon_sym_checked] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_CARET] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_this] = ACTIONS(3407), + [anon_sym_scoped] = ACTIONS(3407), + [anon_sym_base] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [sym_predefined_type] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_unchecked] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_lock] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_default] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_when] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_foreach] = ACTIONS(3407), + [anon_sym_goto] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_from] = ACTIONS(3407), + [anon_sym_into] = ACTIONS(3407), + [anon_sym_join] = ACTIONS(3407), + [anon_sym_on] = ACTIONS(3407), + [anon_sym_equals] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_orderby] = ACTIONS(3407), + [anon_sym_ascending] = ACTIONS(3407), + [anon_sym_descending] = ACTIONS(3407), + [anon_sym_group] = ACTIONS(3407), + [anon_sym_by] = ACTIONS(3407), + [anon_sym_select] = ACTIONS(3407), + [anon_sym_stackalloc] = ACTIONS(3407), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym___makeref] = ACTIONS(3407), + [anon_sym___reftype] = ACTIONS(3407), + [anon_sym___refvalue] = ACTIONS(3407), + [sym_null_literal] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3409), + [sym_integer_literal] = ACTIONS(3407), + [sym_real_literal] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [sym_verbatim_string_literal] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token3] = ACTIONS(3409), + [aux_sym_preproc_else_token1] = ACTIONS(3409), + [aux_sym_preproc_elif_token1] = ACTIONS(3409), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380134,250 +378127,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3313), - [sym_interpolation_verbatim_start] = ACTIONS(3313), - [sym_interpolation_raw_start] = ACTIONS(3313), - [sym_raw_string_start] = ACTIONS(3313), - }, - [2025] = { - [sym_preproc_region] = STATE(2025), - [sym_preproc_endregion] = STATE(2025), - [sym_preproc_line] = STATE(2025), - [sym_preproc_pragma] = STATE(2025), - [sym_preproc_nullable] = STATE(2025), - [sym_preproc_error] = STATE(2025), - [sym_preproc_warning] = STATE(2025), - [sym_preproc_define] = STATE(2025), - [sym_preproc_undef] = STATE(2025), - [ts_builtin_sym_end] = ACTIONS(3239), - [sym__identifier_token] = ACTIONS(3237), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_alias] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_global] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_ref] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_delegate] = ACTIONS(3237), - [anon_sym_record] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_file] = ACTIONS(3237), - [anon_sym_fixed] = ACTIONS(3237), - [anon_sym_internal] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_partial] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_required] = ACTIONS(3237), - [anon_sym_sealed] = ACTIONS(3237), - [anon_sym_virtual] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [anon_sym_where] = ACTIONS(3237), - [anon_sym_notnull] = ACTIONS(3237), - [anon_sym_unmanaged] = ACTIONS(3237), - [anon_sym_checked] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_true] = ACTIONS(3237), - [anon_sym_false] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_this] = ACTIONS(3237), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_base] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [sym_predefined_type] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_unchecked] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_when] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_foreach] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_from] = ACTIONS(3237), - [anon_sym_into] = ACTIONS(3237), - [anon_sym_join] = ACTIONS(3237), - [anon_sym_on] = ACTIONS(3237), - [anon_sym_equals] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_orderby] = ACTIONS(3237), - [anon_sym_ascending] = ACTIONS(3237), - [anon_sym_descending] = ACTIONS(3237), - [anon_sym_group] = ACTIONS(3237), - [anon_sym_by] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_stackalloc] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym___makeref] = ACTIONS(3237), - [anon_sym___reftype] = ACTIONS(3237), - [anon_sym___refvalue] = ACTIONS(3237), - [sym_null_literal] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3239), - [sym_integer_literal] = ACTIONS(3237), - [sym_real_literal] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym_verbatim_string_literal] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3239), - [sym_interpolation_verbatim_start] = ACTIONS(3239), - [sym_interpolation_raw_start] = ACTIONS(3239), - [sym_raw_string_start] = ACTIONS(3239), + [sym_interpolation_regular_start] = ACTIONS(3409), + [sym_interpolation_verbatim_start] = ACTIONS(3409), + [sym_interpolation_raw_start] = ACTIONS(3409), + [sym_raw_string_start] = ACTIONS(3409), }, - [2026] = { - [sym_preproc_region] = STATE(2026), - [sym_preproc_endregion] = STATE(2026), - [sym_preproc_line] = STATE(2026), - [sym_preproc_pragma] = STATE(2026), - [sym_preproc_nullable] = STATE(2026), - [sym_preproc_error] = STATE(2026), - [sym_preproc_warning] = STATE(2026), - [sym_preproc_define] = STATE(2026), - [sym_preproc_undef] = STATE(2026), - [ts_builtin_sym_end] = ACTIONS(3297), - [sym__identifier_token] = ACTIONS(3295), - [anon_sym_extern] = ACTIONS(3295), - [anon_sym_alias] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_global] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_ref] = ACTIONS(3295), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_delegate] = ACTIONS(3295), - [anon_sym_record] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_file] = ACTIONS(3295), - [anon_sym_fixed] = ACTIONS(3295), - [anon_sym_internal] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_partial] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_required] = ACTIONS(3295), - [anon_sym_sealed] = ACTIONS(3295), - [anon_sym_virtual] = ACTIONS(3295), - [anon_sym_volatile] = ACTIONS(3295), - [anon_sym_where] = ACTIONS(3295), - [anon_sym_notnull] = ACTIONS(3295), - [anon_sym_unmanaged] = ACTIONS(3295), - [anon_sym_checked] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3295), - [anon_sym_false] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [anon_sym_this] = ACTIONS(3295), - [anon_sym_scoped] = ACTIONS(3295), - [anon_sym_base] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [sym_predefined_type] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_unchecked] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_when] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_foreach] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_DOT_DOT] = ACTIONS(3297), - [anon_sym_from] = ACTIONS(3295), - [anon_sym_into] = ACTIONS(3295), - [anon_sym_join] = ACTIONS(3295), - [anon_sym_on] = ACTIONS(3295), - [anon_sym_equals] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_orderby] = ACTIONS(3295), - [anon_sym_ascending] = ACTIONS(3295), - [anon_sym_descending] = ACTIONS(3295), - [anon_sym_group] = ACTIONS(3295), - [anon_sym_by] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_stackalloc] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym___makeref] = ACTIONS(3295), - [anon_sym___reftype] = ACTIONS(3295), - [anon_sym___refvalue] = ACTIONS(3295), - [sym_null_literal] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3297), - [sym_integer_literal] = ACTIONS(3295), - [sym_real_literal] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_verbatim_string_literal] = ACTIONS(3297), - [aux_sym_preproc_if_token1] = ACTIONS(3297), + [2009] = { + [sym_preproc_region] = STATE(2009), + [sym_preproc_endregion] = STATE(2009), + [sym_preproc_line] = STATE(2009), + [sym_preproc_pragma] = STATE(2009), + [sym_preproc_nullable] = STATE(2009), + [sym_preproc_error] = STATE(2009), + [sym_preproc_warning] = STATE(2009), + [sym_preproc_define] = STATE(2009), + [sym_preproc_undef] = STATE(2009), + [sym__identifier_token] = ACTIONS(3411), + [anon_sym_extern] = ACTIONS(3411), + [anon_sym_alias] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_global] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_unsafe] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_ref] = ACTIONS(3411), + [anon_sym_struct] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_delegate] = ACTIONS(3411), + [anon_sym_record] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_file] = ACTIONS(3411), + [anon_sym_fixed] = ACTIONS(3411), + [anon_sym_internal] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_partial] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_required] = ACTIONS(3411), + [anon_sym_sealed] = ACTIONS(3411), + [anon_sym_virtual] = ACTIONS(3411), + [anon_sym_volatile] = ACTIONS(3411), + [anon_sym_where] = ACTIONS(3411), + [anon_sym_notnull] = ACTIONS(3411), + [anon_sym_unmanaged] = ACTIONS(3411), + [anon_sym_checked] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3413), + [anon_sym_CARET] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_this] = ACTIONS(3411), + [anon_sym_scoped] = ACTIONS(3411), + [anon_sym_base] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [sym_predefined_type] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_unchecked] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_lock] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_default] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_when] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_foreach] = ACTIONS(3411), + [anon_sym_goto] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_DOT_DOT] = ACTIONS(3413), + [anon_sym_from] = ACTIONS(3411), + [anon_sym_into] = ACTIONS(3411), + [anon_sym_join] = ACTIONS(3411), + [anon_sym_on] = ACTIONS(3411), + [anon_sym_equals] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_orderby] = ACTIONS(3411), + [anon_sym_ascending] = ACTIONS(3411), + [anon_sym_descending] = ACTIONS(3411), + [anon_sym_group] = ACTIONS(3411), + [anon_sym_by] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_stackalloc] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym___makeref] = ACTIONS(3411), + [anon_sym___reftype] = ACTIONS(3411), + [anon_sym___refvalue] = ACTIONS(3411), + [sym_null_literal] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3413), + [sym_integer_literal] = ACTIONS(3411), + [sym_real_literal] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_verbatim_string_literal] = ACTIONS(3413), + [aux_sym_preproc_if_token1] = ACTIONS(3413), + [aux_sym_preproc_if_token3] = ACTIONS(3413), + [aux_sym_preproc_else_token1] = ACTIONS(3413), + [aux_sym_preproc_elif_token1] = ACTIONS(3413), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380388,123 +378255,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3297), - [sym_interpolation_verbatim_start] = ACTIONS(3297), - [sym_interpolation_raw_start] = ACTIONS(3297), - [sym_raw_string_start] = ACTIONS(3297), + [sym_interpolation_regular_start] = ACTIONS(3413), + [sym_interpolation_verbatim_start] = ACTIONS(3413), + [sym_interpolation_raw_start] = ACTIONS(3413), + [sym_raw_string_start] = ACTIONS(3413), }, - [2027] = { - [sym_preproc_region] = STATE(2027), - [sym_preproc_endregion] = STATE(2027), - [sym_preproc_line] = STATE(2027), - [sym_preproc_pragma] = STATE(2027), - [sym_preproc_nullable] = STATE(2027), - [sym_preproc_error] = STATE(2027), - [sym_preproc_warning] = STATE(2027), - [sym_preproc_define] = STATE(2027), - [sym_preproc_undef] = STATE(2027), - [ts_builtin_sym_end] = ACTIONS(3171), - [sym__identifier_token] = ACTIONS(3169), - [anon_sym_extern] = ACTIONS(3169), - [anon_sym_alias] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_global] = ACTIONS(3169), - [anon_sym_using] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_static] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_namespace] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_ref] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_delegate] = ACTIONS(3169), - [anon_sym_record] = ACTIONS(3169), - [anon_sym_abstract] = ACTIONS(3169), - [anon_sym_async] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_file] = ACTIONS(3169), - [anon_sym_fixed] = ACTIONS(3169), - [anon_sym_internal] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3169), - [anon_sym_partial] = ACTIONS(3169), - [anon_sym_private] = ACTIONS(3169), - [anon_sym_protected] = ACTIONS(3169), - [anon_sym_public] = ACTIONS(3169), - [anon_sym_readonly] = ACTIONS(3169), - [anon_sym_required] = ACTIONS(3169), - [anon_sym_sealed] = ACTIONS(3169), - [anon_sym_virtual] = ACTIONS(3169), - [anon_sym_volatile] = ACTIONS(3169), - [anon_sym_where] = ACTIONS(3169), - [anon_sym_notnull] = ACTIONS(3169), - [anon_sym_unmanaged] = ACTIONS(3169), - [anon_sym_checked] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_this] = ACTIONS(3169), - [anon_sym_scoped] = ACTIONS(3169), - [anon_sym_base] = ACTIONS(3169), - [anon_sym_var] = ACTIONS(3169), - [sym_predefined_type] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_unchecked] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_do] = ACTIONS(3169), - [anon_sym_while] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3169), - [anon_sym_switch] = ACTIONS(3169), - [anon_sym_default] = ACTIONS(3169), - [anon_sym_throw] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3169), - [anon_sym_when] = ACTIONS(3169), - [anon_sym_await] = ACTIONS(3169), - [anon_sym_foreach] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3171), - [anon_sym_from] = ACTIONS(3169), - [anon_sym_into] = ACTIONS(3169), - [anon_sym_join] = ACTIONS(3169), - [anon_sym_on] = ACTIONS(3169), - [anon_sym_equals] = ACTIONS(3169), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_orderby] = ACTIONS(3169), - [anon_sym_ascending] = ACTIONS(3169), - [anon_sym_descending] = ACTIONS(3169), - [anon_sym_group] = ACTIONS(3169), - [anon_sym_by] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_stackalloc] = ACTIONS(3169), - [anon_sym_sizeof] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(3169), - [anon_sym___makeref] = ACTIONS(3169), - [anon_sym___reftype] = ACTIONS(3169), - [anon_sym___refvalue] = ACTIONS(3169), - [sym_null_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3171), - [sym_integer_literal] = ACTIONS(3169), - [sym_real_literal] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_verbatim_string_literal] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), + [2010] = { + [sym_preproc_region] = STATE(2010), + [sym_preproc_endregion] = STATE(2010), + [sym_preproc_line] = STATE(2010), + [sym_preproc_pragma] = STATE(2010), + [sym_preproc_nullable] = STATE(2010), + [sym_preproc_error] = STATE(2010), + [sym_preproc_warning] = STATE(2010), + [sym_preproc_define] = STATE(2010), + [sym_preproc_undef] = STATE(2010), + [sym__identifier_token] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym_alias] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_unsafe] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_ref] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_delegate] = ACTIONS(3415), + [anon_sym_record] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_file] = ACTIONS(3415), + [anon_sym_fixed] = ACTIONS(3415), + [anon_sym_internal] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_partial] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_required] = ACTIONS(3415), + [anon_sym_sealed] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_where] = ACTIONS(3415), + [anon_sym_notnull] = ACTIONS(3415), + [anon_sym_unmanaged] = ACTIONS(3415), + [anon_sym_checked] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_CARET] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_this] = ACTIONS(3415), + [anon_sym_scoped] = ACTIONS(3415), + [anon_sym_base] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [sym_predefined_type] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_unchecked] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_lock] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_foreach] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3417), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_into] = ACTIONS(3415), + [anon_sym_join] = ACTIONS(3415), + [anon_sym_on] = ACTIONS(3415), + [anon_sym_equals] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_orderby] = ACTIONS(3415), + [anon_sym_ascending] = ACTIONS(3415), + [anon_sym_descending] = ACTIONS(3415), + [anon_sym_group] = ACTIONS(3415), + [anon_sym_by] = ACTIONS(3415), + [anon_sym_select] = ACTIONS(3415), + [anon_sym_stackalloc] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym___makeref] = ACTIONS(3415), + [anon_sym___reftype] = ACTIONS(3415), + [anon_sym___refvalue] = ACTIONS(3415), + [sym_null_literal] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3417), + [sym_integer_literal] = ACTIONS(3415), + [sym_real_literal] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_verbatim_string_literal] = ACTIONS(3417), + [aux_sym_preproc_if_token1] = ACTIONS(3417), + [aux_sym_preproc_if_token3] = ACTIONS(3417), + [aux_sym_preproc_else_token1] = ACTIONS(3417), + [aux_sym_preproc_elif_token1] = ACTIONS(3417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380515,22 +378383,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3171), - [sym_interpolation_verbatim_start] = ACTIONS(3171), - [sym_interpolation_raw_start] = ACTIONS(3171), - [sym_raw_string_start] = ACTIONS(3171), + [sym_interpolation_regular_start] = ACTIONS(3417), + [sym_interpolation_verbatim_start] = ACTIONS(3417), + [sym_interpolation_raw_start] = ACTIONS(3417), + [sym_raw_string_start] = ACTIONS(3417), }, - [2028] = { - [sym_preproc_region] = STATE(2028), - [sym_preproc_endregion] = STATE(2028), - [sym_preproc_line] = STATE(2028), - [sym_preproc_pragma] = STATE(2028), - [sym_preproc_nullable] = STATE(2028), - [sym_preproc_error] = STATE(2028), - [sym_preproc_warning] = STATE(2028), - [sym_preproc_define] = STATE(2028), - [sym_preproc_undef] = STATE(2028), - [ts_builtin_sym_end] = ACTIONS(3317), + [2011] = { + [sym_preproc_region] = STATE(2011), + [sym_preproc_endregion] = STATE(2011), + [sym_preproc_line] = STATE(2011), + [sym_preproc_pragma] = STATE(2011), + [sym_preproc_nullable] = STATE(2011), + [sym_preproc_error] = STATE(2011), + [sym_preproc_warning] = STATE(2011), + [sym_preproc_define] = STATE(2011), + [sym_preproc_undef] = STATE(2011), [sym__identifier_token] = ACTIONS(3315), [anon_sym_extern] = ACTIONS(3315), [anon_sym_alias] = ACTIONS(3315), @@ -380605,7 +378472,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3315), [anon_sym_goto] = ACTIONS(3315), [anon_sym_if] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), [anon_sym_DOT_DOT] = ACTIONS(3317), [anon_sym_from] = ACTIONS(3315), [anon_sym_into] = ACTIONS(3315), @@ -380632,6 +378498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3317), [sym_verbatim_string_literal] = ACTIONS(3317), [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_if_token3] = ACTIONS(3317), + [aux_sym_preproc_else_token1] = ACTIONS(3317), + [aux_sym_preproc_elif_token1] = ACTIONS(3317), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380647,245 +378516,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3317), [sym_raw_string_start] = ACTIONS(3317), }, - [2029] = { - [sym_preproc_region] = STATE(2029), - [sym_preproc_endregion] = STATE(2029), - [sym_preproc_line] = STATE(2029), - [sym_preproc_pragma] = STATE(2029), - [sym_preproc_nullable] = STATE(2029), - [sym_preproc_error] = STATE(2029), - [sym_preproc_warning] = STATE(2029), - [sym_preproc_define] = STATE(2029), - [sym_preproc_undef] = STATE(2029), - [ts_builtin_sym_end] = ACTIONS(3301), - [sym__identifier_token] = ACTIONS(3299), - [anon_sym_extern] = ACTIONS(3299), - [anon_sym_alias] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_global] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_class] = ACTIONS(3299), - [anon_sym_ref] = ACTIONS(3299), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_delegate] = ACTIONS(3299), - [anon_sym_record] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_file] = ACTIONS(3299), - [anon_sym_fixed] = ACTIONS(3299), - [anon_sym_internal] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_partial] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_required] = ACTIONS(3299), - [anon_sym_sealed] = ACTIONS(3299), - [anon_sym_virtual] = ACTIONS(3299), - [anon_sym_volatile] = ACTIONS(3299), - [anon_sym_where] = ACTIONS(3299), - [anon_sym_notnull] = ACTIONS(3299), - [anon_sym_unmanaged] = ACTIONS(3299), - [anon_sym_checked] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_this] = ACTIONS(3299), - [anon_sym_scoped] = ACTIONS(3299), - [anon_sym_base] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [sym_predefined_type] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_unchecked] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_when] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_foreach] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_DOT_DOT] = ACTIONS(3301), - [anon_sym_from] = ACTIONS(3299), - [anon_sym_into] = ACTIONS(3299), - [anon_sym_join] = ACTIONS(3299), - [anon_sym_on] = ACTIONS(3299), - [anon_sym_equals] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_orderby] = ACTIONS(3299), - [anon_sym_ascending] = ACTIONS(3299), - [anon_sym_descending] = ACTIONS(3299), - [anon_sym_group] = ACTIONS(3299), - [anon_sym_by] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_stackalloc] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym___makeref] = ACTIONS(3299), - [anon_sym___reftype] = ACTIONS(3299), - [anon_sym___refvalue] = ACTIONS(3299), - [sym_null_literal] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3301), - [sym_integer_literal] = ACTIONS(3299), - [sym_real_literal] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [sym_verbatim_string_literal] = ACTIONS(3301), - [aux_sym_preproc_if_token1] = ACTIONS(3301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3301), - [sym_interpolation_verbatim_start] = ACTIONS(3301), - [sym_interpolation_raw_start] = ACTIONS(3301), - [sym_raw_string_start] = ACTIONS(3301), - }, - [2030] = { - [sym_preproc_region] = STATE(2030), - [sym_preproc_endregion] = STATE(2030), - [sym_preproc_line] = STATE(2030), - [sym_preproc_pragma] = STATE(2030), - [sym_preproc_nullable] = STATE(2030), - [sym_preproc_error] = STATE(2030), - [sym_preproc_warning] = STATE(2030), - [sym_preproc_define] = STATE(2030), - [sym_preproc_undef] = STATE(2030), - [ts_builtin_sym_end] = ACTIONS(3321), - [sym__identifier_token] = ACTIONS(3319), - [anon_sym_extern] = ACTIONS(3319), - [anon_sym_alias] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_global] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_ref] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_delegate] = ACTIONS(3319), - [anon_sym_record] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_file] = ACTIONS(3319), - [anon_sym_fixed] = ACTIONS(3319), - [anon_sym_internal] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_partial] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_required] = ACTIONS(3319), - [anon_sym_sealed] = ACTIONS(3319), - [anon_sym_virtual] = ACTIONS(3319), - [anon_sym_volatile] = ACTIONS(3319), - [anon_sym_where] = ACTIONS(3319), - [anon_sym_notnull] = ACTIONS(3319), - [anon_sym_unmanaged] = ACTIONS(3319), - [anon_sym_checked] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_this] = ACTIONS(3319), - [anon_sym_scoped] = ACTIONS(3319), - [anon_sym_base] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [sym_predefined_type] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_unchecked] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_when] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_foreach] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_from] = ACTIONS(3319), - [anon_sym_into] = ACTIONS(3319), - [anon_sym_join] = ACTIONS(3319), - [anon_sym_on] = ACTIONS(3319), - [anon_sym_equals] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_orderby] = ACTIONS(3319), - [anon_sym_ascending] = ACTIONS(3319), - [anon_sym_descending] = ACTIONS(3319), - [anon_sym_group] = ACTIONS(3319), - [anon_sym_by] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_stackalloc] = ACTIONS(3319), - [anon_sym_sizeof] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym___makeref] = ACTIONS(3319), - [anon_sym___reftype] = ACTIONS(3319), - [anon_sym___refvalue] = ACTIONS(3319), - [sym_null_literal] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3321), - [sym_integer_literal] = ACTIONS(3319), - [sym_real_literal] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(3321), - [sym_verbatim_string_literal] = ACTIONS(3321), - [aux_sym_preproc_if_token1] = ACTIONS(3321), + [2012] = { + [sym_preproc_region] = STATE(2012), + [sym_preproc_endregion] = STATE(2012), + [sym_preproc_line] = STATE(2012), + [sym_preproc_pragma] = STATE(2012), + [sym_preproc_nullable] = STATE(2012), + [sym_preproc_error] = STATE(2012), + [sym_preproc_warning] = STATE(2012), + [sym_preproc_define] = STATE(2012), + [sym_preproc_undef] = STATE(2012), + [sym__identifier_token] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym_alias] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_global] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_unsafe] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_ref] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_delegate] = ACTIONS(3419), + [anon_sym_record] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_file] = ACTIONS(3419), + [anon_sym_fixed] = ACTIONS(3419), + [anon_sym_internal] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_partial] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_required] = ACTIONS(3419), + [anon_sym_sealed] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_where] = ACTIONS(3419), + [anon_sym_notnull] = ACTIONS(3419), + [anon_sym_unmanaged] = ACTIONS(3419), + [anon_sym_checked] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(3419), + [anon_sym_false] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_CARET] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_this] = ACTIONS(3419), + [anon_sym_scoped] = ACTIONS(3419), + [anon_sym_base] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [sym_predefined_type] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_unchecked] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_lock] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_when] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_foreach] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3421), + [anon_sym_from] = ACTIONS(3419), + [anon_sym_into] = ACTIONS(3419), + [anon_sym_join] = ACTIONS(3419), + [anon_sym_on] = ACTIONS(3419), + [anon_sym_equals] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_orderby] = ACTIONS(3419), + [anon_sym_ascending] = ACTIONS(3419), + [anon_sym_descending] = ACTIONS(3419), + [anon_sym_group] = ACTIONS(3419), + [anon_sym_by] = ACTIONS(3419), + [anon_sym_select] = ACTIONS(3419), + [anon_sym_stackalloc] = ACTIONS(3419), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym___makeref] = ACTIONS(3419), + [anon_sym___reftype] = ACTIONS(3419), + [anon_sym___refvalue] = ACTIONS(3419), + [sym_null_literal] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3421), + [sym_integer_literal] = ACTIONS(3419), + [sym_real_literal] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_verbatim_string_literal] = ACTIONS(3421), + [aux_sym_preproc_if_token1] = ACTIONS(3421), + [aux_sym_preproc_if_token3] = ACTIONS(3421), + [aux_sym_preproc_else_token1] = ACTIONS(3421), + [aux_sym_preproc_elif_token1] = ACTIONS(3421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -380896,377 +378639,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3321), - [sym_interpolation_verbatim_start] = ACTIONS(3321), - [sym_interpolation_raw_start] = ACTIONS(3321), - [sym_raw_string_start] = ACTIONS(3321), + [sym_interpolation_regular_start] = ACTIONS(3421), + [sym_interpolation_verbatim_start] = ACTIONS(3421), + [sym_interpolation_raw_start] = ACTIONS(3421), + [sym_raw_string_start] = ACTIONS(3421), }, - [2031] = { - [sym_preproc_region] = STATE(2031), - [sym_preproc_endregion] = STATE(2031), - [sym_preproc_line] = STATE(2031), - [sym_preproc_pragma] = STATE(2031), - [sym_preproc_nullable] = STATE(2031), - [sym_preproc_error] = STATE(2031), - [sym_preproc_warning] = STATE(2031), - [sym_preproc_define] = STATE(2031), - [sym_preproc_undef] = STATE(2031), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym__identifier_token] = ACTIONS(3347), - [anon_sym_extern] = ACTIONS(3347), - [anon_sym_alias] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_global] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_ref] = ACTIONS(3347), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_delegate] = ACTIONS(3347), - [anon_sym_record] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_file] = ACTIONS(3347), - [anon_sym_fixed] = ACTIONS(3347), - [anon_sym_internal] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_partial] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_required] = ACTIONS(3347), - [anon_sym_sealed] = ACTIONS(3347), - [anon_sym_virtual] = ACTIONS(3347), - [anon_sym_volatile] = ACTIONS(3347), - [anon_sym_where] = ACTIONS(3347), - [anon_sym_notnull] = ACTIONS(3347), - [anon_sym_unmanaged] = ACTIONS(3347), - [anon_sym_checked] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_this] = ACTIONS(3347), - [anon_sym_scoped] = ACTIONS(3347), - [anon_sym_base] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [sym_predefined_type] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_unchecked] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_when] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_foreach] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_DOT_DOT] = ACTIONS(3349), - [anon_sym_from] = ACTIONS(3347), - [anon_sym_into] = ACTIONS(3347), - [anon_sym_join] = ACTIONS(3347), - [anon_sym_on] = ACTIONS(3347), - [anon_sym_equals] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_orderby] = ACTIONS(3347), - [anon_sym_ascending] = ACTIONS(3347), - [anon_sym_descending] = ACTIONS(3347), - [anon_sym_group] = ACTIONS(3347), - [anon_sym_by] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_stackalloc] = ACTIONS(3347), - [anon_sym_sizeof] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym___makeref] = ACTIONS(3347), - [anon_sym___reftype] = ACTIONS(3347), - [anon_sym___refvalue] = ACTIONS(3347), - [sym_null_literal] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3349), - [sym_integer_literal] = ACTIONS(3347), - [sym_real_literal] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [sym_verbatim_string_literal] = ACTIONS(3349), - [aux_sym_preproc_if_token1] = ACTIONS(3349), + [2013] = { + [sym_preproc_region] = STATE(2013), + [sym_preproc_endregion] = STATE(2013), + [sym_preproc_line] = STATE(2013), + [sym_preproc_pragma] = STATE(2013), + [sym_preproc_nullable] = STATE(2013), + [sym_preproc_error] = STATE(2013), + [sym_preproc_warning] = STATE(2013), + [sym_preproc_define] = STATE(2013), + [sym_preproc_undef] = STATE(2013), + [sym__identifier_token] = ACTIONS(3423), + [anon_sym_extern] = ACTIONS(3423), + [anon_sym_alias] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_global] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_unsafe] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_ref] = ACTIONS(3423), + [anon_sym_struct] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_delegate] = ACTIONS(3423), + [anon_sym_record] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_file] = ACTIONS(3423), + [anon_sym_fixed] = ACTIONS(3423), + [anon_sym_internal] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_partial] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_required] = ACTIONS(3423), + [anon_sym_sealed] = ACTIONS(3423), + [anon_sym_virtual] = ACTIONS(3423), + [anon_sym_volatile] = ACTIONS(3423), + [anon_sym_where] = ACTIONS(3423), + [anon_sym_notnull] = ACTIONS(3423), + [anon_sym_unmanaged] = ACTIONS(3423), + [anon_sym_checked] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [anon_sym_true] = ACTIONS(3423), + [anon_sym_false] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_CARET] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_this] = ACTIONS(3423), + [anon_sym_scoped] = ACTIONS(3423), + [anon_sym_base] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [sym_predefined_type] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_unchecked] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_lock] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_default] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_when] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_foreach] = ACTIONS(3423), + [anon_sym_goto] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3425), + [anon_sym_from] = ACTIONS(3423), + [anon_sym_into] = ACTIONS(3423), + [anon_sym_join] = ACTIONS(3423), + [anon_sym_on] = ACTIONS(3423), + [anon_sym_equals] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_orderby] = ACTIONS(3423), + [anon_sym_ascending] = ACTIONS(3423), + [anon_sym_descending] = ACTIONS(3423), + [anon_sym_group] = ACTIONS(3423), + [anon_sym_by] = ACTIONS(3423), + [anon_sym_select] = ACTIONS(3423), + [anon_sym_stackalloc] = ACTIONS(3423), + [anon_sym_sizeof] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym___makeref] = ACTIONS(3423), + [anon_sym___reftype] = ACTIONS(3423), + [anon_sym___refvalue] = ACTIONS(3423), + [sym_null_literal] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3425), + [sym_integer_literal] = ACTIONS(3423), + [sym_real_literal] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [sym_verbatim_string_literal] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token3] = ACTIONS(3425), + [aux_sym_preproc_else_token1] = ACTIONS(3425), + [aux_sym_preproc_elif_token1] = ACTIONS(3425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3349), - [sym_interpolation_verbatim_start] = ACTIONS(3349), - [sym_interpolation_raw_start] = ACTIONS(3349), - [sym_raw_string_start] = ACTIONS(3349), - }, - [2032] = { - [sym_preproc_region] = STATE(2032), - [sym_preproc_endregion] = STATE(2032), - [sym_preproc_line] = STATE(2032), - [sym_preproc_pragma] = STATE(2032), - [sym_preproc_nullable] = STATE(2032), - [sym_preproc_error] = STATE(2032), - [sym_preproc_warning] = STATE(2032), - [sym_preproc_define] = STATE(2032), - [sym_preproc_undef] = STATE(2032), - [ts_builtin_sym_end] = ACTIONS(3251), - [sym__identifier_token] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_alias] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_global] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_ref] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_delegate] = ACTIONS(3249), - [anon_sym_record] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_file] = ACTIONS(3249), - [anon_sym_fixed] = ACTIONS(3249), - [anon_sym_internal] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_partial] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_required] = ACTIONS(3249), - [anon_sym_sealed] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_where] = ACTIONS(3249), - [anon_sym_notnull] = ACTIONS(3249), - [anon_sym_unmanaged] = ACTIONS(3249), - [anon_sym_checked] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_true] = ACTIONS(3249), - [anon_sym_false] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_this] = ACTIONS(3249), - [anon_sym_scoped] = ACTIONS(3249), - [anon_sym_base] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [sym_predefined_type] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_unchecked] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_when] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_foreach] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(3251), - [anon_sym_from] = ACTIONS(3249), - [anon_sym_into] = ACTIONS(3249), - [anon_sym_join] = ACTIONS(3249), - [anon_sym_on] = ACTIONS(3249), - [anon_sym_equals] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_orderby] = ACTIONS(3249), - [anon_sym_ascending] = ACTIONS(3249), - [anon_sym_descending] = ACTIONS(3249), - [anon_sym_group] = ACTIONS(3249), - [anon_sym_by] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_stackalloc] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym___makeref] = ACTIONS(3249), - [anon_sym___reftype] = ACTIONS(3249), - [anon_sym___refvalue] = ACTIONS(3249), - [sym_null_literal] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3251), - [sym_integer_literal] = ACTIONS(3249), - [sym_real_literal] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_verbatim_string_literal] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3251), - [sym_interpolation_verbatim_start] = ACTIONS(3251), - [sym_interpolation_raw_start] = ACTIONS(3251), - [sym_raw_string_start] = ACTIONS(3251), - }, - [2033] = { - [sym_preproc_region] = STATE(2033), - [sym_preproc_endregion] = STATE(2033), - [sym_preproc_line] = STATE(2033), - [sym_preproc_pragma] = STATE(2033), - [sym_preproc_nullable] = STATE(2033), - [sym_preproc_error] = STATE(2033), - [sym_preproc_warning] = STATE(2033), - [sym_preproc_define] = STATE(2033), - [sym_preproc_undef] = STATE(2033), - [ts_builtin_sym_end] = ACTIONS(3337), - [sym__identifier_token] = ACTIONS(3335), - [anon_sym_extern] = ACTIONS(3335), - [anon_sym_alias] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_global] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_namespace] = ACTIONS(3335), - [anon_sym_class] = ACTIONS(3335), - [anon_sym_ref] = ACTIONS(3335), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_delegate] = ACTIONS(3335), - [anon_sym_record] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_file] = ACTIONS(3335), - [anon_sym_fixed] = ACTIONS(3335), - [anon_sym_internal] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_partial] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_required] = ACTIONS(3335), - [anon_sym_sealed] = ACTIONS(3335), - [anon_sym_virtual] = ACTIONS(3335), - [anon_sym_volatile] = ACTIONS(3335), - [anon_sym_where] = ACTIONS(3335), - [anon_sym_notnull] = ACTIONS(3335), - [anon_sym_unmanaged] = ACTIONS(3335), - [anon_sym_checked] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_this] = ACTIONS(3335), - [anon_sym_scoped] = ACTIONS(3335), - [anon_sym_base] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [sym_predefined_type] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_unchecked] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_default] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_when] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_foreach] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_from] = ACTIONS(3335), - [anon_sym_into] = ACTIONS(3335), - [anon_sym_join] = ACTIONS(3335), - [anon_sym_on] = ACTIONS(3335), - [anon_sym_equals] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_orderby] = ACTIONS(3335), - [anon_sym_ascending] = ACTIONS(3335), - [anon_sym_descending] = ACTIONS(3335), - [anon_sym_group] = ACTIONS(3335), - [anon_sym_by] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_stackalloc] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym___makeref] = ACTIONS(3335), - [anon_sym___reftype] = ACTIONS(3335), - [anon_sym___refvalue] = ACTIONS(3335), - [sym_null_literal] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3337), - [sym_integer_literal] = ACTIONS(3335), - [sym_real_literal] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [sym_verbatim_string_literal] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3425), + [sym_interpolation_verbatim_start] = ACTIONS(3425), + [sym_interpolation_raw_start] = ACTIONS(3425), + [sym_raw_string_start] = ACTIONS(3425), + }, + [2014] = { + [sym_preproc_region] = STATE(2014), + [sym_preproc_endregion] = STATE(2014), + [sym_preproc_line] = STATE(2014), + [sym_preproc_pragma] = STATE(2014), + [sym_preproc_nullable] = STATE(2014), + [sym_preproc_error] = STATE(2014), + [sym_preproc_warning] = STATE(2014), + [sym_preproc_define] = STATE(2014), + [sym_preproc_undef] = STATE(2014), + [sym__identifier_token] = ACTIONS(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_unsafe] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_ref] = ACTIONS(3427), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_delegate] = ACTIONS(3427), + [anon_sym_record] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_file] = ACTIONS(3427), + [anon_sym_fixed] = ACTIONS(3427), + [anon_sym_internal] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_partial] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_required] = ACTIONS(3427), + [anon_sym_sealed] = ACTIONS(3427), + [anon_sym_virtual] = ACTIONS(3427), + [anon_sym_volatile] = ACTIONS(3427), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_notnull] = ACTIONS(3427), + [anon_sym_unmanaged] = ACTIONS(3427), + [anon_sym_checked] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_true] = ACTIONS(3427), + [anon_sym_false] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(3427), + [anon_sym_scoped] = ACTIONS(3427), + [anon_sym_base] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [sym_predefined_type] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_unchecked] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_lock] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_foreach] = ACTIONS(3427), + [anon_sym_goto] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_into] = ACTIONS(3427), + [anon_sym_join] = ACTIONS(3427), + [anon_sym_on] = ACTIONS(3427), + [anon_sym_equals] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_orderby] = ACTIONS(3427), + [anon_sym_ascending] = ACTIONS(3427), + [anon_sym_descending] = ACTIONS(3427), + [anon_sym_group] = ACTIONS(3427), + [anon_sym_by] = ACTIONS(3427), + [anon_sym_select] = ACTIONS(3427), + [anon_sym_stackalloc] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym___makeref] = ACTIONS(3427), + [anon_sym___reftype] = ACTIONS(3427), + [anon_sym___refvalue] = ACTIONS(3427), + [sym_null_literal] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), + [sym_integer_literal] = ACTIONS(3427), + [sym_real_literal] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_verbatim_string_literal] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token3] = ACTIONS(3429), + [aux_sym_preproc_else_token1] = ACTIONS(3429), + [aux_sym_preproc_elif_token1] = ACTIONS(3429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -381277,123 +378895,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3337), - [sym_interpolation_verbatim_start] = ACTIONS(3337), - [sym_interpolation_raw_start] = ACTIONS(3337), - [sym_raw_string_start] = ACTIONS(3337), + [sym_interpolation_regular_start] = ACTIONS(3429), + [sym_interpolation_verbatim_start] = ACTIONS(3429), + [sym_interpolation_raw_start] = ACTIONS(3429), + [sym_raw_string_start] = ACTIONS(3429), }, - [2034] = { - [sym_preproc_region] = STATE(2034), - [sym_preproc_endregion] = STATE(2034), - [sym_preproc_line] = STATE(2034), - [sym_preproc_pragma] = STATE(2034), - [sym_preproc_nullable] = STATE(2034), - [sym_preproc_error] = STATE(2034), - [sym_preproc_warning] = STATE(2034), - [sym_preproc_define] = STATE(2034), - [sym_preproc_undef] = STATE(2034), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym__identifier_token] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_alias] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_global] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_ref] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_delegate] = ACTIONS(3173), - [anon_sym_record] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_file] = ACTIONS(3173), - [anon_sym_fixed] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_partial] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_required] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_virtual] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_notnull] = ACTIONS(3173), - [anon_sym_unmanaged] = ACTIONS(3173), - [anon_sym_checked] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_scoped] = ACTIONS(3173), - [anon_sym_base] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [sym_predefined_type] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_unchecked] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_foreach] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_from] = ACTIONS(3173), - [anon_sym_into] = ACTIONS(3173), - [anon_sym_join] = ACTIONS(3173), - [anon_sym_on] = ACTIONS(3173), - [anon_sym_equals] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_orderby] = ACTIONS(3173), - [anon_sym_ascending] = ACTIONS(3173), - [anon_sym_descending] = ACTIONS(3173), - [anon_sym_group] = ACTIONS(3173), - [anon_sym_by] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_stackalloc] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym___makeref] = ACTIONS(3173), - [anon_sym___reftype] = ACTIONS(3173), - [anon_sym___refvalue] = ACTIONS(3173), - [sym_null_literal] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_real_literal] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_verbatim_string_literal] = ACTIONS(3175), - [aux_sym_preproc_if_token1] = ACTIONS(3175), + [2015] = { + [sym_preproc_region] = STATE(2015), + [sym_preproc_endregion] = STATE(2015), + [sym_preproc_line] = STATE(2015), + [sym_preproc_pragma] = STATE(2015), + [sym_preproc_nullable] = STATE(2015), + [sym_preproc_error] = STATE(2015), + [sym_preproc_warning] = STATE(2015), + [sym_preproc_define] = STATE(2015), + [sym_preproc_undef] = STATE(2015), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_extern] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_unsafe] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_ref] = ACTIONS(3431), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_delegate] = ACTIONS(3431), + [anon_sym_record] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_fixed] = ACTIONS(3431), + [anon_sym_internal] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_partial] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_required] = ACTIONS(3431), + [anon_sym_sealed] = ACTIONS(3431), + [anon_sym_virtual] = ACTIONS(3431), + [anon_sym_volatile] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_checked] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), + [anon_sym_true] = ACTIONS(3431), + [anon_sym_false] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_base] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [sym_predefined_type] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_unchecked] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_lock] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_foreach] = ACTIONS(3431), + [anon_sym_goto] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3433), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3431), + [anon_sym_join] = ACTIONS(3431), + [anon_sym_on] = ACTIONS(3431), + [anon_sym_equals] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_orderby] = ACTIONS(3431), + [anon_sym_ascending] = ACTIONS(3431), + [anon_sym_descending] = ACTIONS(3431), + [anon_sym_group] = ACTIONS(3431), + [anon_sym_by] = ACTIONS(3431), + [anon_sym_select] = ACTIONS(3431), + [anon_sym_stackalloc] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym___makeref] = ACTIONS(3431), + [anon_sym___reftype] = ACTIONS(3431), + [anon_sym___refvalue] = ACTIONS(3431), + [sym_null_literal] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [sym_integer_literal] = ACTIONS(3431), + [sym_real_literal] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_verbatim_string_literal] = ACTIONS(3433), + [aux_sym_preproc_if_token1] = ACTIONS(3433), + [aux_sym_preproc_if_token3] = ACTIONS(3433), + [aux_sym_preproc_else_token1] = ACTIONS(3433), + [aux_sym_preproc_elif_token1] = ACTIONS(3433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -381404,123 +379023,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3175), - [sym_interpolation_verbatim_start] = ACTIONS(3175), - [sym_interpolation_raw_start] = ACTIONS(3175), - [sym_raw_string_start] = ACTIONS(3175), + [sym_interpolation_regular_start] = ACTIONS(3433), + [sym_interpolation_verbatim_start] = ACTIONS(3433), + [sym_interpolation_raw_start] = ACTIONS(3433), + [sym_raw_string_start] = ACTIONS(3433), }, - [2035] = { - [sym_preproc_region] = STATE(2035), - [sym_preproc_endregion] = STATE(2035), - [sym_preproc_line] = STATE(2035), - [sym_preproc_pragma] = STATE(2035), - [sym_preproc_nullable] = STATE(2035), - [sym_preproc_error] = STATE(2035), - [sym_preproc_warning] = STATE(2035), - [sym_preproc_define] = STATE(2035), - [sym_preproc_undef] = STATE(2035), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym__identifier_token] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_alias] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_ref] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_delegate] = ACTIONS(3339), - [anon_sym_record] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_file] = ACTIONS(3339), - [anon_sym_fixed] = ACTIONS(3339), - [anon_sym_internal] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_partial] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_required] = ACTIONS(3339), - [anon_sym_sealed] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_where] = ACTIONS(3339), - [anon_sym_notnull] = ACTIONS(3339), - [anon_sym_unmanaged] = ACTIONS(3339), - [anon_sym_checked] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_this] = ACTIONS(3339), - [anon_sym_scoped] = ACTIONS(3339), - [anon_sym_base] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [sym_predefined_type] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_unchecked] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_when] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_foreach] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_from] = ACTIONS(3339), - [anon_sym_into] = ACTIONS(3339), - [anon_sym_join] = ACTIONS(3339), - [anon_sym_on] = ACTIONS(3339), - [anon_sym_equals] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_orderby] = ACTIONS(3339), - [anon_sym_ascending] = ACTIONS(3339), - [anon_sym_descending] = ACTIONS(3339), - [anon_sym_group] = ACTIONS(3339), - [anon_sym_by] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_stackalloc] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym___makeref] = ACTIONS(3339), - [anon_sym___reftype] = ACTIONS(3339), - [anon_sym___refvalue] = ACTIONS(3339), - [sym_null_literal] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3341), - [sym_integer_literal] = ACTIONS(3339), - [sym_real_literal] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_verbatim_string_literal] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3341), + [2016] = { + [sym_preproc_region] = STATE(2016), + [sym_preproc_endregion] = STATE(2016), + [sym_preproc_line] = STATE(2016), + [sym_preproc_pragma] = STATE(2016), + [sym_preproc_nullable] = STATE(2016), + [sym_preproc_error] = STATE(2016), + [sym_preproc_warning] = STATE(2016), + [sym_preproc_define] = STATE(2016), + [sym_preproc_undef] = STATE(2016), + [sym__identifier_token] = ACTIONS(3435), + [anon_sym_extern] = ACTIONS(3435), + [anon_sym_alias] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_global] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_unsafe] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_ref] = ACTIONS(3435), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_delegate] = ACTIONS(3435), + [anon_sym_record] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_file] = ACTIONS(3435), + [anon_sym_fixed] = ACTIONS(3435), + [anon_sym_internal] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_partial] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_required] = ACTIONS(3435), + [anon_sym_sealed] = ACTIONS(3435), + [anon_sym_virtual] = ACTIONS(3435), + [anon_sym_volatile] = ACTIONS(3435), + [anon_sym_where] = ACTIONS(3435), + [anon_sym_notnull] = ACTIONS(3435), + [anon_sym_unmanaged] = ACTIONS(3435), + [anon_sym_checked] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [anon_sym_true] = ACTIONS(3435), + [anon_sym_false] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_this] = ACTIONS(3435), + [anon_sym_scoped] = ACTIONS(3435), + [anon_sym_base] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [sym_predefined_type] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_unchecked] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_lock] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_default] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_foreach] = ACTIONS(3435), + [anon_sym_goto] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3435), + [anon_sym_into] = ACTIONS(3435), + [anon_sym_join] = ACTIONS(3435), + [anon_sym_on] = ACTIONS(3435), + [anon_sym_equals] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_orderby] = ACTIONS(3435), + [anon_sym_ascending] = ACTIONS(3435), + [anon_sym_descending] = ACTIONS(3435), + [anon_sym_group] = ACTIONS(3435), + [anon_sym_by] = ACTIONS(3435), + [anon_sym_select] = ACTIONS(3435), + [anon_sym_stackalloc] = ACTIONS(3435), + [anon_sym_sizeof] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym___makeref] = ACTIONS(3435), + [anon_sym___reftype] = ACTIONS(3435), + [anon_sym___refvalue] = ACTIONS(3435), + [sym_null_literal] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3437), + [sym_integer_literal] = ACTIONS(3435), + [sym_real_literal] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [sym_verbatim_string_literal] = ACTIONS(3437), + [aux_sym_preproc_if_token1] = ACTIONS(3437), + [aux_sym_preproc_if_token3] = ACTIONS(3437), + [aux_sym_preproc_else_token1] = ACTIONS(3437), + [aux_sym_preproc_elif_token1] = ACTIONS(3437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -381531,123 +379151,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3341), - [sym_interpolation_verbatim_start] = ACTIONS(3341), - [sym_interpolation_raw_start] = ACTIONS(3341), - [sym_raw_string_start] = ACTIONS(3341), + [sym_interpolation_regular_start] = ACTIONS(3437), + [sym_interpolation_verbatim_start] = ACTIONS(3437), + [sym_interpolation_raw_start] = ACTIONS(3437), + [sym_raw_string_start] = ACTIONS(3437), }, - [2036] = { - [sym_preproc_region] = STATE(2036), - [sym_preproc_endregion] = STATE(2036), - [sym_preproc_line] = STATE(2036), - [sym_preproc_pragma] = STATE(2036), - [sym_preproc_nullable] = STATE(2036), - [sym_preproc_error] = STATE(2036), - [sym_preproc_warning] = STATE(2036), - [sym_preproc_define] = STATE(2036), - [sym_preproc_undef] = STATE(2036), - [ts_builtin_sym_end] = ACTIONS(3183), - [sym__identifier_token] = ACTIONS(3181), - [anon_sym_extern] = ACTIONS(3181), - [anon_sym_alias] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_global] = ACTIONS(3181), - [anon_sym_using] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_static] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_namespace] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_ref] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_delegate] = ACTIONS(3181), - [anon_sym_record] = ACTIONS(3181), - [anon_sym_abstract] = ACTIONS(3181), - [anon_sym_async] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_file] = ACTIONS(3181), - [anon_sym_fixed] = ACTIONS(3181), - [anon_sym_internal] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_override] = ACTIONS(3181), - [anon_sym_partial] = ACTIONS(3181), - [anon_sym_private] = ACTIONS(3181), - [anon_sym_protected] = ACTIONS(3181), - [anon_sym_public] = ACTIONS(3181), - [anon_sym_readonly] = ACTIONS(3181), - [anon_sym_required] = ACTIONS(3181), - [anon_sym_sealed] = ACTIONS(3181), - [anon_sym_virtual] = ACTIONS(3181), - [anon_sym_volatile] = ACTIONS(3181), - [anon_sym_where] = ACTIONS(3181), - [anon_sym_notnull] = ACTIONS(3181), - [anon_sym_unmanaged] = ACTIONS(3181), - [anon_sym_checked] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_this] = ACTIONS(3181), - [anon_sym_scoped] = ACTIONS(3181), - [anon_sym_base] = ACTIONS(3181), - [anon_sym_var] = ACTIONS(3181), - [sym_predefined_type] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_unchecked] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_do] = ACTIONS(3181), - [anon_sym_while] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3181), - [anon_sym_switch] = ACTIONS(3181), - [anon_sym_default] = ACTIONS(3181), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_try] = ACTIONS(3181), - [anon_sym_when] = ACTIONS(3181), - [anon_sym_await] = ACTIONS(3181), - [anon_sym_foreach] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_DOT_DOT] = ACTIONS(3183), - [anon_sym_from] = ACTIONS(3181), - [anon_sym_into] = ACTIONS(3181), - [anon_sym_join] = ACTIONS(3181), - [anon_sym_on] = ACTIONS(3181), - [anon_sym_equals] = ACTIONS(3181), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_orderby] = ACTIONS(3181), - [anon_sym_ascending] = ACTIONS(3181), - [anon_sym_descending] = ACTIONS(3181), - [anon_sym_group] = ACTIONS(3181), - [anon_sym_by] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_stackalloc] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3181), - [anon_sym_typeof] = ACTIONS(3181), - [anon_sym___makeref] = ACTIONS(3181), - [anon_sym___reftype] = ACTIONS(3181), - [anon_sym___refvalue] = ACTIONS(3181), - [sym_null_literal] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3183), - [sym_integer_literal] = ACTIONS(3181), - [sym_real_literal] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_verbatim_string_literal] = ACTIONS(3183), - [aux_sym_preproc_if_token1] = ACTIONS(3183), + [2017] = { + [sym_preproc_region] = STATE(2017), + [sym_preproc_endregion] = STATE(2017), + [sym_preproc_line] = STATE(2017), + [sym_preproc_pragma] = STATE(2017), + [sym_preproc_nullable] = STATE(2017), + [sym_preproc_error] = STATE(2017), + [sym_preproc_warning] = STATE(2017), + [sym_preproc_define] = STATE(2017), + [sym_preproc_undef] = STATE(2017), + [sym__identifier_token] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym_alias] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_global] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_unsafe] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_ref] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_delegate] = ACTIONS(3439), + [anon_sym_record] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_file] = ACTIONS(3439), + [anon_sym_fixed] = ACTIONS(3439), + [anon_sym_internal] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_partial] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_required] = ACTIONS(3439), + [anon_sym_sealed] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_notnull] = ACTIONS(3439), + [anon_sym_unmanaged] = ACTIONS(3439), + [anon_sym_checked] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_CARET] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_this] = ACTIONS(3439), + [anon_sym_scoped] = ACTIONS(3439), + [anon_sym_base] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [sym_predefined_type] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_unchecked] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_lock] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_when] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_foreach] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_DOT_DOT] = ACTIONS(3441), + [anon_sym_from] = ACTIONS(3439), + [anon_sym_into] = ACTIONS(3439), + [anon_sym_join] = ACTIONS(3439), + [anon_sym_on] = ACTIONS(3439), + [anon_sym_equals] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_orderby] = ACTIONS(3439), + [anon_sym_ascending] = ACTIONS(3439), + [anon_sym_descending] = ACTIONS(3439), + [anon_sym_group] = ACTIONS(3439), + [anon_sym_by] = ACTIONS(3439), + [anon_sym_select] = ACTIONS(3439), + [anon_sym_stackalloc] = ACTIONS(3439), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym___makeref] = ACTIONS(3439), + [anon_sym___reftype] = ACTIONS(3439), + [anon_sym___refvalue] = ACTIONS(3439), + [sym_null_literal] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3441), + [sym_integer_literal] = ACTIONS(3439), + [sym_real_literal] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_verbatim_string_literal] = ACTIONS(3441), + [aux_sym_preproc_if_token1] = ACTIONS(3441), + [aux_sym_preproc_if_token3] = ACTIONS(3441), + [aux_sym_preproc_else_token1] = ACTIONS(3441), + [aux_sym_preproc_elif_token1] = ACTIONS(3441), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -381658,377 +379279,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3183), - [sym_interpolation_verbatim_start] = ACTIONS(3183), - [sym_interpolation_raw_start] = ACTIONS(3183), - [sym_raw_string_start] = ACTIONS(3183), - }, - [2037] = { - [sym_preproc_region] = STATE(2037), - [sym_preproc_endregion] = STATE(2037), - [sym_preproc_line] = STATE(2037), - [sym_preproc_pragma] = STATE(2037), - [sym_preproc_nullable] = STATE(2037), - [sym_preproc_error] = STATE(2037), - [sym_preproc_warning] = STATE(2037), - [sym_preproc_define] = STATE(2037), - [sym_preproc_undef] = STATE(2037), - [ts_builtin_sym_end] = ACTIONS(3267), - [sym__identifier_token] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym_alias] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_global] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_unsafe] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_ref] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3265), - [anon_sym_delegate] = ACTIONS(3265), - [anon_sym_record] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_file] = ACTIONS(3265), - [anon_sym_fixed] = ACTIONS(3265), - [anon_sym_internal] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_partial] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_required] = ACTIONS(3265), - [anon_sym_sealed] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_where] = ACTIONS(3265), - [anon_sym_notnull] = ACTIONS(3265), - [anon_sym_unmanaged] = ACTIONS(3265), - [anon_sym_checked] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_true] = ACTIONS(3265), - [anon_sym_false] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_this] = ACTIONS(3265), - [anon_sym_scoped] = ACTIONS(3265), - [anon_sym_base] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [sym_predefined_type] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_unchecked] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_lock] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_when] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_foreach] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_else] = ACTIONS(3265), - [anon_sym_DOT_DOT] = ACTIONS(3267), - [anon_sym_from] = ACTIONS(3265), - [anon_sym_into] = ACTIONS(3265), - [anon_sym_join] = ACTIONS(3265), - [anon_sym_on] = ACTIONS(3265), - [anon_sym_equals] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_orderby] = ACTIONS(3265), - [anon_sym_ascending] = ACTIONS(3265), - [anon_sym_descending] = ACTIONS(3265), - [anon_sym_group] = ACTIONS(3265), - [anon_sym_by] = ACTIONS(3265), - [anon_sym_select] = ACTIONS(3265), - [anon_sym_stackalloc] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym___makeref] = ACTIONS(3265), - [anon_sym___reftype] = ACTIONS(3265), - [anon_sym___refvalue] = ACTIONS(3265), - [sym_null_literal] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3267), - [sym_integer_literal] = ACTIONS(3265), - [sym_real_literal] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_verbatim_string_literal] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3267), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3267), - [sym_interpolation_verbatim_start] = ACTIONS(3267), - [sym_interpolation_raw_start] = ACTIONS(3267), - [sym_raw_string_start] = ACTIONS(3267), - }, - [2038] = { - [sym_preproc_region] = STATE(2038), - [sym_preproc_endregion] = STATE(2038), - [sym_preproc_line] = STATE(2038), - [sym_preproc_pragma] = STATE(2038), - [sym_preproc_nullable] = STATE(2038), - [sym_preproc_error] = STATE(2038), - [sym_preproc_warning] = STATE(2038), - [sym_preproc_define] = STATE(2038), - [sym_preproc_undef] = STATE(2038), - [ts_builtin_sym_end] = ACTIONS(3263), - [sym__identifier_token] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_alias] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_global] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_ref] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3261), - [anon_sym_delegate] = ACTIONS(3261), - [anon_sym_record] = ACTIONS(3261), - [anon_sym_abstract] = ACTIONS(3261), - [anon_sym_async] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_file] = ACTIONS(3261), - [anon_sym_fixed] = ACTIONS(3261), - [anon_sym_internal] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_override] = ACTIONS(3261), - [anon_sym_partial] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_readonly] = ACTIONS(3261), - [anon_sym_required] = ACTIONS(3261), - [anon_sym_sealed] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_where] = ACTIONS(3261), - [anon_sym_notnull] = ACTIONS(3261), - [anon_sym_unmanaged] = ACTIONS(3261), - [anon_sym_checked] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_true] = ACTIONS(3261), - [anon_sym_false] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_this] = ACTIONS(3261), - [anon_sym_scoped] = ACTIONS(3261), - [anon_sym_base] = ACTIONS(3261), - [anon_sym_var] = ACTIONS(3261), - [sym_predefined_type] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_unchecked] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_yield] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_when] = ACTIONS(3261), - [anon_sym_await] = ACTIONS(3261), - [anon_sym_foreach] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_else] = ACTIONS(3261), - [anon_sym_DOT_DOT] = ACTIONS(3263), - [anon_sym_from] = ACTIONS(3261), - [anon_sym_into] = ACTIONS(3261), - [anon_sym_join] = ACTIONS(3261), - [anon_sym_on] = ACTIONS(3261), - [anon_sym_equals] = ACTIONS(3261), - [anon_sym_let] = ACTIONS(3261), - [anon_sym_orderby] = ACTIONS(3261), - [anon_sym_ascending] = ACTIONS(3261), - [anon_sym_descending] = ACTIONS(3261), - [anon_sym_group] = ACTIONS(3261), - [anon_sym_by] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_stackalloc] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym_typeof] = ACTIONS(3261), - [anon_sym___makeref] = ACTIONS(3261), - [anon_sym___reftype] = ACTIONS(3261), - [anon_sym___refvalue] = ACTIONS(3261), - [sym_null_literal] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3263), - [sym_integer_literal] = ACTIONS(3261), - [sym_real_literal] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_verbatim_string_literal] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3263), - [sym_interpolation_verbatim_start] = ACTIONS(3263), - [sym_interpolation_raw_start] = ACTIONS(3263), - [sym_raw_string_start] = ACTIONS(3263), + [sym_interpolation_regular_start] = ACTIONS(3441), + [sym_interpolation_verbatim_start] = ACTIONS(3441), + [sym_interpolation_raw_start] = ACTIONS(3441), + [sym_raw_string_start] = ACTIONS(3441), }, - [2039] = { - [sym_preproc_region] = STATE(2039), - [sym_preproc_endregion] = STATE(2039), - [sym_preproc_line] = STATE(2039), - [sym_preproc_pragma] = STATE(2039), - [sym_preproc_nullable] = STATE(2039), - [sym_preproc_error] = STATE(2039), - [sym_preproc_warning] = STATE(2039), - [sym_preproc_define] = STATE(2039), - [sym_preproc_undef] = STATE(2039), - [ts_builtin_sym_end] = ACTIONS(3325), - [sym__identifier_token] = ACTIONS(3323), - [anon_sym_extern] = ACTIONS(3323), - [anon_sym_alias] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_global] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_ref] = ACTIONS(3323), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_delegate] = ACTIONS(3323), - [anon_sym_record] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_file] = ACTIONS(3323), - [anon_sym_fixed] = ACTIONS(3323), - [anon_sym_internal] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_partial] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_required] = ACTIONS(3323), - [anon_sym_sealed] = ACTIONS(3323), - [anon_sym_virtual] = ACTIONS(3323), - [anon_sym_volatile] = ACTIONS(3323), - [anon_sym_where] = ACTIONS(3323), - [anon_sym_notnull] = ACTIONS(3323), - [anon_sym_unmanaged] = ACTIONS(3323), - [anon_sym_checked] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_this] = ACTIONS(3323), - [anon_sym_scoped] = ACTIONS(3323), - [anon_sym_base] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [sym_predefined_type] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_unchecked] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_when] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_foreach] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_from] = ACTIONS(3323), - [anon_sym_into] = ACTIONS(3323), - [anon_sym_join] = ACTIONS(3323), - [anon_sym_on] = ACTIONS(3323), - [anon_sym_equals] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_orderby] = ACTIONS(3323), - [anon_sym_ascending] = ACTIONS(3323), - [anon_sym_descending] = ACTIONS(3323), - [anon_sym_group] = ACTIONS(3323), - [anon_sym_by] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_stackalloc] = ACTIONS(3323), - [anon_sym_sizeof] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym___makeref] = ACTIONS(3323), - [anon_sym___reftype] = ACTIONS(3323), - [anon_sym___refvalue] = ACTIONS(3323), - [sym_null_literal] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3325), - [sym_integer_literal] = ACTIONS(3323), - [sym_real_literal] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [sym_verbatim_string_literal] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), + [2018] = { + [sym_preproc_region] = STATE(2018), + [sym_preproc_endregion] = STATE(2018), + [sym_preproc_line] = STATE(2018), + [sym_preproc_pragma] = STATE(2018), + [sym_preproc_nullable] = STATE(2018), + [sym_preproc_error] = STATE(2018), + [sym_preproc_warning] = STATE(2018), + [sym_preproc_define] = STATE(2018), + [sym_preproc_undef] = STATE(2018), + [sym__identifier_token] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym_alias] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_unsafe] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_ref] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_delegate] = ACTIONS(3443), + [anon_sym_record] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_file] = ACTIONS(3443), + [anon_sym_fixed] = ACTIONS(3443), + [anon_sym_internal] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_partial] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_required] = ACTIONS(3443), + [anon_sym_sealed] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_where] = ACTIONS(3443), + [anon_sym_notnull] = ACTIONS(3443), + [anon_sym_unmanaged] = ACTIONS(3443), + [anon_sym_checked] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_CARET] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_this] = ACTIONS(3443), + [anon_sym_scoped] = ACTIONS(3443), + [anon_sym_base] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [sym_predefined_type] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_unchecked] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_lock] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_when] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_foreach] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_DOT_DOT] = ACTIONS(3445), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_into] = ACTIONS(3443), + [anon_sym_join] = ACTIONS(3443), + [anon_sym_on] = ACTIONS(3443), + [anon_sym_equals] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_orderby] = ACTIONS(3443), + [anon_sym_ascending] = ACTIONS(3443), + [anon_sym_descending] = ACTIONS(3443), + [anon_sym_group] = ACTIONS(3443), + [anon_sym_by] = ACTIONS(3443), + [anon_sym_select] = ACTIONS(3443), + [anon_sym_stackalloc] = ACTIONS(3443), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym___makeref] = ACTIONS(3443), + [anon_sym___reftype] = ACTIONS(3443), + [anon_sym___refvalue] = ACTIONS(3443), + [sym_null_literal] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3445), + [sym_integer_literal] = ACTIONS(3443), + [sym_real_literal] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_verbatim_string_literal] = ACTIONS(3445), + [aux_sym_preproc_if_token1] = ACTIONS(3445), + [aux_sym_preproc_if_token3] = ACTIONS(3445), + [aux_sym_preproc_else_token1] = ACTIONS(3445), + [aux_sym_preproc_elif_token1] = ACTIONS(3445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -382039,377 +379407,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3325), - [sym_interpolation_verbatim_start] = ACTIONS(3325), - [sym_interpolation_raw_start] = ACTIONS(3325), - [sym_raw_string_start] = ACTIONS(3325), - }, - [2040] = { - [sym_preproc_region] = STATE(2040), - [sym_preproc_endregion] = STATE(2040), - [sym_preproc_line] = STATE(2040), - [sym_preproc_pragma] = STATE(2040), - [sym_preproc_nullable] = STATE(2040), - [sym_preproc_error] = STATE(2040), - [sym_preproc_warning] = STATE(2040), - [sym_preproc_define] = STATE(2040), - [sym_preproc_undef] = STATE(2040), - [ts_builtin_sym_end] = ACTIONS(3223), - [sym__identifier_token] = ACTIONS(3221), - [anon_sym_extern] = ACTIONS(3221), - [anon_sym_alias] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_global] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_unsafe] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_ref] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_delegate] = ACTIONS(3221), - [anon_sym_record] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_file] = ACTIONS(3221), - [anon_sym_fixed] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_partial] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_sealed] = ACTIONS(3221), - [anon_sym_virtual] = ACTIONS(3221), - [anon_sym_volatile] = ACTIONS(3221), - [anon_sym_where] = ACTIONS(3221), - [anon_sym_notnull] = ACTIONS(3221), - [anon_sym_unmanaged] = ACTIONS(3221), - [anon_sym_checked] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_this] = ACTIONS(3221), - [anon_sym_scoped] = ACTIONS(3221), - [anon_sym_base] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [sym_predefined_type] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_unchecked] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_lock] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_when] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_foreach] = ACTIONS(3221), - [anon_sym_goto] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [anon_sym_from] = ACTIONS(3221), - [anon_sym_into] = ACTIONS(3221), - [anon_sym_join] = ACTIONS(3221), - [anon_sym_on] = ACTIONS(3221), - [anon_sym_equals] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_orderby] = ACTIONS(3221), - [anon_sym_ascending] = ACTIONS(3221), - [anon_sym_descending] = ACTIONS(3221), - [anon_sym_group] = ACTIONS(3221), - [anon_sym_by] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_stackalloc] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym___makeref] = ACTIONS(3221), - [anon_sym___reftype] = ACTIONS(3221), - [anon_sym___refvalue] = ACTIONS(3221), - [sym_null_literal] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3223), - [sym_integer_literal] = ACTIONS(3221), - [sym_real_literal] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [sym_verbatim_string_literal] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3223), - [sym_interpolation_verbatim_start] = ACTIONS(3223), - [sym_interpolation_raw_start] = ACTIONS(3223), - [sym_raw_string_start] = ACTIONS(3223), - }, - [2041] = { - [sym_preproc_region] = STATE(2041), - [sym_preproc_endregion] = STATE(2041), - [sym_preproc_line] = STATE(2041), - [sym_preproc_pragma] = STATE(2041), - [sym_preproc_nullable] = STATE(2041), - [sym_preproc_error] = STATE(2041), - [sym_preproc_warning] = STATE(2041), - [sym_preproc_define] = STATE(2041), - [sym_preproc_undef] = STATE(2041), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym__identifier_token] = ACTIONS(3225), - [anon_sym_extern] = ACTIONS(3225), - [anon_sym_alias] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_global] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_unsafe] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_ref] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_delegate] = ACTIONS(3225), - [anon_sym_record] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_file] = ACTIONS(3225), - [anon_sym_fixed] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_partial] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_sealed] = ACTIONS(3225), - [anon_sym_virtual] = ACTIONS(3225), - [anon_sym_volatile] = ACTIONS(3225), - [anon_sym_where] = ACTIONS(3225), - [anon_sym_notnull] = ACTIONS(3225), - [anon_sym_unmanaged] = ACTIONS(3225), - [anon_sym_checked] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_this] = ACTIONS(3225), - [anon_sym_scoped] = ACTIONS(3225), - [anon_sym_base] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [sym_predefined_type] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_unchecked] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_lock] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_when] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_foreach] = ACTIONS(3225), - [anon_sym_goto] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_from] = ACTIONS(3225), - [anon_sym_into] = ACTIONS(3225), - [anon_sym_join] = ACTIONS(3225), - [anon_sym_on] = ACTIONS(3225), - [anon_sym_equals] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_orderby] = ACTIONS(3225), - [anon_sym_ascending] = ACTIONS(3225), - [anon_sym_descending] = ACTIONS(3225), - [anon_sym_group] = ACTIONS(3225), - [anon_sym_by] = ACTIONS(3225), - [anon_sym_select] = ACTIONS(3225), - [anon_sym_stackalloc] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym___makeref] = ACTIONS(3225), - [anon_sym___reftype] = ACTIONS(3225), - [anon_sym___refvalue] = ACTIONS(3225), - [sym_null_literal] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3227), - [sym_integer_literal] = ACTIONS(3225), - [sym_real_literal] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [sym_verbatim_string_literal] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3227), - [sym_interpolation_verbatim_start] = ACTIONS(3227), - [sym_interpolation_raw_start] = ACTIONS(3227), - [sym_raw_string_start] = ACTIONS(3227), + [sym_interpolation_regular_start] = ACTIONS(3445), + [sym_interpolation_verbatim_start] = ACTIONS(3445), + [sym_interpolation_raw_start] = ACTIONS(3445), + [sym_raw_string_start] = ACTIONS(3445), }, - [2042] = { - [sym_preproc_region] = STATE(2042), - [sym_preproc_endregion] = STATE(2042), - [sym_preproc_line] = STATE(2042), - [sym_preproc_pragma] = STATE(2042), - [sym_preproc_nullable] = STATE(2042), - [sym_preproc_error] = STATE(2042), - [sym_preproc_warning] = STATE(2042), - [sym_preproc_define] = STATE(2042), - [sym_preproc_undef] = STATE(2042), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym__identifier_token] = ACTIONS(3303), - [anon_sym_extern] = ACTIONS(3303), - [anon_sym_alias] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_global] = ACTIONS(3303), - [anon_sym_using] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_static] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_namespace] = ACTIONS(3303), - [anon_sym_class] = ACTIONS(3303), - [anon_sym_ref] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_delegate] = ACTIONS(3303), - [anon_sym_record] = ACTIONS(3303), - [anon_sym_abstract] = ACTIONS(3303), - [anon_sym_async] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_file] = ACTIONS(3303), - [anon_sym_fixed] = ACTIONS(3303), - [anon_sym_internal] = ACTIONS(3303), - [anon_sym_new] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3303), - [anon_sym_partial] = ACTIONS(3303), - [anon_sym_private] = ACTIONS(3303), - [anon_sym_protected] = ACTIONS(3303), - [anon_sym_public] = ACTIONS(3303), - [anon_sym_readonly] = ACTIONS(3303), - [anon_sym_required] = ACTIONS(3303), - [anon_sym_sealed] = ACTIONS(3303), - [anon_sym_virtual] = ACTIONS(3303), - [anon_sym_volatile] = ACTIONS(3303), - [anon_sym_where] = ACTIONS(3303), - [anon_sym_notnull] = ACTIONS(3303), - [anon_sym_unmanaged] = ACTIONS(3303), - [anon_sym_checked] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_true] = ACTIONS(3303), - [anon_sym_false] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_this] = ACTIONS(3303), - [anon_sym_scoped] = ACTIONS(3303), - [anon_sym_base] = ACTIONS(3303), - [anon_sym_var] = ACTIONS(3303), - [sym_predefined_type] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_unchecked] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_do] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_yield] = ACTIONS(3303), - [anon_sym_switch] = ACTIONS(3303), - [anon_sym_default] = ACTIONS(3303), - [anon_sym_throw] = ACTIONS(3303), - [anon_sym_try] = ACTIONS(3303), - [anon_sym_when] = ACTIONS(3303), - [anon_sym_await] = ACTIONS(3303), - [anon_sym_foreach] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3305), - [anon_sym_from] = ACTIONS(3303), - [anon_sym_into] = ACTIONS(3303), - [anon_sym_join] = ACTIONS(3303), - [anon_sym_on] = ACTIONS(3303), - [anon_sym_equals] = ACTIONS(3303), - [anon_sym_let] = ACTIONS(3303), - [anon_sym_orderby] = ACTIONS(3303), - [anon_sym_ascending] = ACTIONS(3303), - [anon_sym_descending] = ACTIONS(3303), - [anon_sym_group] = ACTIONS(3303), - [anon_sym_by] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_stackalloc] = ACTIONS(3303), - [anon_sym_sizeof] = ACTIONS(3303), - [anon_sym_typeof] = ACTIONS(3303), - [anon_sym___makeref] = ACTIONS(3303), - [anon_sym___reftype] = ACTIONS(3303), - [anon_sym___refvalue] = ACTIONS(3303), - [sym_null_literal] = ACTIONS(3303), - [anon_sym_SQUOTE] = ACTIONS(3305), - [sym_integer_literal] = ACTIONS(3303), - [sym_real_literal] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(3305), - [sym_verbatim_string_literal] = ACTIONS(3305), - [aux_sym_preproc_if_token1] = ACTIONS(3305), + [2019] = { + [sym_preproc_region] = STATE(2019), + [sym_preproc_endregion] = STATE(2019), + [sym_preproc_line] = STATE(2019), + [sym_preproc_pragma] = STATE(2019), + [sym_preproc_nullable] = STATE(2019), + [sym_preproc_error] = STATE(2019), + [sym_preproc_warning] = STATE(2019), + [sym_preproc_define] = STATE(2019), + [sym_preproc_undef] = STATE(2019), + [ts_builtin_sym_end] = ACTIONS(3317), + [sym__identifier_token] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_alias] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_unsafe] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_ref] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_delegate] = ACTIONS(3315), + [anon_sym_record] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_file] = ACTIONS(3315), + [anon_sym_fixed] = ACTIONS(3315), + [anon_sym_internal] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_partial] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_required] = ACTIONS(3315), + [anon_sym_sealed] = ACTIONS(3315), + [anon_sym_virtual] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym_where] = ACTIONS(3315), + [anon_sym_notnull] = ACTIONS(3315), + [anon_sym_unmanaged] = ACTIONS(3315), + [anon_sym_checked] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_this] = ACTIONS(3315), + [anon_sym_scoped] = ACTIONS(3315), + [anon_sym_base] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [sym_predefined_type] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_unchecked] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_lock] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_when] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_foreach] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_into] = ACTIONS(3315), + [anon_sym_join] = ACTIONS(3315), + [anon_sym_on] = ACTIONS(3315), + [anon_sym_equals] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_orderby] = ACTIONS(3315), + [anon_sym_ascending] = ACTIONS(3315), + [anon_sym_descending] = ACTIONS(3315), + [anon_sym_group] = ACTIONS(3315), + [anon_sym_by] = ACTIONS(3315), + [anon_sym_select] = ACTIONS(3315), + [anon_sym_stackalloc] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym___makeref] = ACTIONS(3315), + [anon_sym___reftype] = ACTIONS(3315), + [anon_sym___refvalue] = ACTIONS(3315), + [sym_null_literal] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3317), + [sym_integer_literal] = ACTIONS(3315), + [sym_real_literal] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_verbatim_string_literal] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -382420,250 +379534,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3305), - [sym_interpolation_verbatim_start] = ACTIONS(3305), - [sym_interpolation_raw_start] = ACTIONS(3305), - [sym_raw_string_start] = ACTIONS(3305), - }, - [2043] = { - [sym_preproc_region] = STATE(2043), - [sym_preproc_endregion] = STATE(2043), - [sym_preproc_line] = STATE(2043), - [sym_preproc_pragma] = STATE(2043), - [sym_preproc_nullable] = STATE(2043), - [sym_preproc_error] = STATE(2043), - [sym_preproc_warning] = STATE(2043), - [sym_preproc_define] = STATE(2043), - [sym_preproc_undef] = STATE(2043), - [ts_builtin_sym_end] = ACTIONS(3255), - [sym__identifier_token] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_global] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_ref] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_delegate] = ACTIONS(3253), - [anon_sym_record] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_file] = ACTIONS(3253), - [anon_sym_fixed] = ACTIONS(3253), - [anon_sym_internal] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_partial] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_required] = ACTIONS(3253), - [anon_sym_sealed] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_where] = ACTIONS(3253), - [anon_sym_notnull] = ACTIONS(3253), - [anon_sym_unmanaged] = ACTIONS(3253), - [anon_sym_checked] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_true] = ACTIONS(3253), - [anon_sym_false] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_this] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_base] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [sym_predefined_type] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_unchecked] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_foreach] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_from] = ACTIONS(3253), - [anon_sym_into] = ACTIONS(3253), - [anon_sym_join] = ACTIONS(3253), - [anon_sym_on] = ACTIONS(3253), - [anon_sym_equals] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_orderby] = ACTIONS(3253), - [anon_sym_ascending] = ACTIONS(3253), - [anon_sym_descending] = ACTIONS(3253), - [anon_sym_group] = ACTIONS(3253), - [anon_sym_by] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_stackalloc] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym___makeref] = ACTIONS(3253), - [anon_sym___reftype] = ACTIONS(3253), - [anon_sym___refvalue] = ACTIONS(3253), - [sym_null_literal] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3255), - [sym_integer_literal] = ACTIONS(3253), - [sym_real_literal] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_verbatim_string_literal] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3255), - [sym_interpolation_verbatim_start] = ACTIONS(3255), - [sym_interpolation_raw_start] = ACTIONS(3255), - [sym_raw_string_start] = ACTIONS(3255), + [sym_interpolation_regular_start] = ACTIONS(3317), + [sym_interpolation_verbatim_start] = ACTIONS(3317), + [sym_interpolation_raw_start] = ACTIONS(3317), + [sym_raw_string_start] = ACTIONS(3317), }, - [2044] = { - [sym_preproc_region] = STATE(2044), - [sym_preproc_endregion] = STATE(2044), - [sym_preproc_line] = STATE(2044), - [sym_preproc_pragma] = STATE(2044), - [sym_preproc_nullable] = STATE(2044), - [sym_preproc_error] = STATE(2044), - [sym_preproc_warning] = STATE(2044), - [sym_preproc_define] = STATE(2044), - [sym_preproc_undef] = STATE(2044), - [ts_builtin_sym_end] = ACTIONS(3309), - [sym__identifier_token] = ACTIONS(3307), - [anon_sym_extern] = ACTIONS(3307), - [anon_sym_alias] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_global] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_ref] = ACTIONS(3307), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_delegate] = ACTIONS(3307), - [anon_sym_record] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_file] = ACTIONS(3307), - [anon_sym_fixed] = ACTIONS(3307), - [anon_sym_internal] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_partial] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_required] = ACTIONS(3307), - [anon_sym_sealed] = ACTIONS(3307), - [anon_sym_virtual] = ACTIONS(3307), - [anon_sym_volatile] = ACTIONS(3307), - [anon_sym_where] = ACTIONS(3307), - [anon_sym_notnull] = ACTIONS(3307), - [anon_sym_unmanaged] = ACTIONS(3307), - [anon_sym_checked] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3309), - [anon_sym_CARET] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_this] = ACTIONS(3307), - [anon_sym_scoped] = ACTIONS(3307), - [anon_sym_base] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [sym_predefined_type] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_unchecked] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_when] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_foreach] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3307), - [anon_sym_into] = ACTIONS(3307), - [anon_sym_join] = ACTIONS(3307), - [anon_sym_on] = ACTIONS(3307), - [anon_sym_equals] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_orderby] = ACTIONS(3307), - [anon_sym_ascending] = ACTIONS(3307), - [anon_sym_descending] = ACTIONS(3307), - [anon_sym_group] = ACTIONS(3307), - [anon_sym_by] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_stackalloc] = ACTIONS(3307), - [anon_sym_sizeof] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym___makeref] = ACTIONS(3307), - [anon_sym___reftype] = ACTIONS(3307), - [anon_sym___refvalue] = ACTIONS(3307), - [sym_null_literal] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3309), - [sym_integer_literal] = ACTIONS(3307), - [sym_real_literal] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_verbatim_string_literal] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3309), + [2020] = { + [sym_preproc_region] = STATE(2020), + [sym_preproc_endregion] = STATE(2020), + [sym_preproc_line] = STATE(2020), + [sym_preproc_pragma] = STATE(2020), + [sym_preproc_nullable] = STATE(2020), + [sym_preproc_error] = STATE(2020), + [sym_preproc_warning] = STATE(2020), + [sym_preproc_define] = STATE(2020), + [sym_preproc_undef] = STATE(2020), + [ts_builtin_sym_end] = ACTIONS(3191), + [sym__identifier_token] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym_alias] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_ref] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_delegate] = ACTIONS(3189), + [anon_sym_record] = ACTIONS(3189), + [anon_sym_abstract] = ACTIONS(3189), + [anon_sym_async] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_file] = ACTIONS(3189), + [anon_sym_fixed] = ACTIONS(3189), + [anon_sym_internal] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_override] = ACTIONS(3189), + [anon_sym_partial] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_readonly] = ACTIONS(3189), + [anon_sym_required] = ACTIONS(3189), + [anon_sym_sealed] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_where] = ACTIONS(3189), + [anon_sym_notnull] = ACTIONS(3189), + [anon_sym_unmanaged] = ACTIONS(3189), + [anon_sym_checked] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_true] = ACTIONS(3189), + [anon_sym_false] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_this] = ACTIONS(3189), + [anon_sym_scoped] = ACTIONS(3189), + [anon_sym_base] = ACTIONS(3189), + [anon_sym_var] = ACTIONS(3189), + [sym_predefined_type] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_unchecked] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_yield] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_when] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3189), + [anon_sym_foreach] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3191), + [anon_sym_from] = ACTIONS(3189), + [anon_sym_into] = ACTIONS(3189), + [anon_sym_join] = ACTIONS(3189), + [anon_sym_on] = ACTIONS(3189), + [anon_sym_equals] = ACTIONS(3189), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_orderby] = ACTIONS(3189), + [anon_sym_ascending] = ACTIONS(3189), + [anon_sym_descending] = ACTIONS(3189), + [anon_sym_group] = ACTIONS(3189), + [anon_sym_by] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_stackalloc] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym_typeof] = ACTIONS(3189), + [anon_sym___makeref] = ACTIONS(3189), + [anon_sym___reftype] = ACTIONS(3189), + [anon_sym___refvalue] = ACTIONS(3189), + [sym_null_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3191), + [sym_integer_literal] = ACTIONS(3189), + [sym_real_literal] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_verbatim_string_literal] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -382674,250 +379661,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3309), - [sym_interpolation_verbatim_start] = ACTIONS(3309), - [sym_interpolation_raw_start] = ACTIONS(3309), - [sym_raw_string_start] = ACTIONS(3309), - }, - [2045] = { - [sym_preproc_region] = STATE(2045), - [sym_preproc_endregion] = STATE(2045), - [sym_preproc_line] = STATE(2045), - [sym_preproc_pragma] = STATE(2045), - [sym_preproc_nullable] = STATE(2045), - [sym_preproc_error] = STATE(2045), - [sym_preproc_warning] = STATE(2045), - [sym_preproc_define] = STATE(2045), - [sym_preproc_undef] = STATE(2045), - [ts_builtin_sym_end] = ACTIONS(3271), - [sym__identifier_token] = ACTIONS(3269), - [anon_sym_extern] = ACTIONS(3269), - [anon_sym_alias] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_global] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_ref] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_delegate] = ACTIONS(3269), - [anon_sym_record] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_file] = ACTIONS(3269), - [anon_sym_fixed] = ACTIONS(3269), - [anon_sym_internal] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_partial] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_required] = ACTIONS(3269), - [anon_sym_sealed] = ACTIONS(3269), - [anon_sym_virtual] = ACTIONS(3269), - [anon_sym_volatile] = ACTIONS(3269), - [anon_sym_where] = ACTIONS(3269), - [anon_sym_notnull] = ACTIONS(3269), - [anon_sym_unmanaged] = ACTIONS(3269), - [anon_sym_checked] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3269), - [anon_sym_false] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_this] = ACTIONS(3269), - [anon_sym_scoped] = ACTIONS(3269), - [anon_sym_base] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [sym_predefined_type] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_unchecked] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_when] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_foreach] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_DOT_DOT] = ACTIONS(3271), - [anon_sym_from] = ACTIONS(3269), - [anon_sym_into] = ACTIONS(3269), - [anon_sym_join] = ACTIONS(3269), - [anon_sym_on] = ACTIONS(3269), - [anon_sym_equals] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_orderby] = ACTIONS(3269), - [anon_sym_ascending] = ACTIONS(3269), - [anon_sym_descending] = ACTIONS(3269), - [anon_sym_group] = ACTIONS(3269), - [anon_sym_by] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_stackalloc] = ACTIONS(3269), - [anon_sym_sizeof] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym___makeref] = ACTIONS(3269), - [anon_sym___reftype] = ACTIONS(3269), - [anon_sym___refvalue] = ACTIONS(3269), - [sym_null_literal] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3271), - [sym_integer_literal] = ACTIONS(3269), - [sym_real_literal] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_verbatim_string_literal] = ACTIONS(3271), - [aux_sym_preproc_if_token1] = ACTIONS(3271), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3271), - [sym_interpolation_verbatim_start] = ACTIONS(3271), - [sym_interpolation_raw_start] = ACTIONS(3271), - [sym_raw_string_start] = ACTIONS(3271), + [sym_interpolation_regular_start] = ACTIONS(3191), + [sym_interpolation_verbatim_start] = ACTIONS(3191), + [sym_interpolation_raw_start] = ACTIONS(3191), + [sym_raw_string_start] = ACTIONS(3191), }, - [2046] = { - [sym_preproc_region] = STATE(2046), - [sym_preproc_endregion] = STATE(2046), - [sym_preproc_line] = STATE(2046), - [sym_preproc_pragma] = STATE(2046), - [sym_preproc_nullable] = STATE(2046), - [sym_preproc_error] = STATE(2046), - [sym_preproc_warning] = STATE(2046), - [sym_preproc_define] = STATE(2046), - [sym_preproc_undef] = STATE(2046), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym__identifier_token] = ACTIONS(3273), - [anon_sym_extern] = ACTIONS(3273), - [anon_sym_alias] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_global] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_unsafe] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_ref] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_delegate] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_file] = ACTIONS(3273), - [anon_sym_fixed] = ACTIONS(3273), - [anon_sym_internal] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_partial] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_required] = ACTIONS(3273), - [anon_sym_sealed] = ACTIONS(3273), - [anon_sym_virtual] = ACTIONS(3273), - [anon_sym_volatile] = ACTIONS(3273), - [anon_sym_where] = ACTIONS(3273), - [anon_sym_notnull] = ACTIONS(3273), - [anon_sym_unmanaged] = ACTIONS(3273), - [anon_sym_checked] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3273), - [anon_sym_false] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_this] = ACTIONS(3273), - [anon_sym_scoped] = ACTIONS(3273), - [anon_sym_base] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [sym_predefined_type] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_unchecked] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_lock] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_when] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_foreach] = ACTIONS(3273), - [anon_sym_goto] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_from] = ACTIONS(3273), - [anon_sym_into] = ACTIONS(3273), - [anon_sym_join] = ACTIONS(3273), - [anon_sym_on] = ACTIONS(3273), - [anon_sym_equals] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_orderby] = ACTIONS(3273), - [anon_sym_ascending] = ACTIONS(3273), - [anon_sym_descending] = ACTIONS(3273), - [anon_sym_group] = ACTIONS(3273), - [anon_sym_by] = ACTIONS(3273), - [anon_sym_select] = ACTIONS(3273), - [anon_sym_stackalloc] = ACTIONS(3273), - [anon_sym_sizeof] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym___makeref] = ACTIONS(3273), - [anon_sym___reftype] = ACTIONS(3273), - [anon_sym___refvalue] = ACTIONS(3273), - [sym_null_literal] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3275), - [sym_integer_literal] = ACTIONS(3273), - [sym_real_literal] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [sym_verbatim_string_literal] = ACTIONS(3275), - [aux_sym_preproc_if_token1] = ACTIONS(3275), + [2021] = { + [sym_preproc_region] = STATE(2021), + [sym_preproc_endregion] = STATE(2021), + [sym_preproc_line] = STATE(2021), + [sym_preproc_pragma] = STATE(2021), + [sym_preproc_nullable] = STATE(2021), + [sym_preproc_error] = STATE(2021), + [sym_preproc_warning] = STATE(2021), + [sym_preproc_define] = STATE(2021), + [sym_preproc_undef] = STATE(2021), + [ts_builtin_sym_end] = ACTIONS(3313), + [sym__identifier_token] = ACTIONS(3311), + [anon_sym_extern] = ACTIONS(3311), + [anon_sym_alias] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_ref] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_delegate] = ACTIONS(3311), + [anon_sym_record] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_file] = ACTIONS(3311), + [anon_sym_fixed] = ACTIONS(3311), + [anon_sym_internal] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_partial] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_required] = ACTIONS(3311), + [anon_sym_sealed] = ACTIONS(3311), + [anon_sym_virtual] = ACTIONS(3311), + [anon_sym_volatile] = ACTIONS(3311), + [anon_sym_where] = ACTIONS(3311), + [anon_sym_notnull] = ACTIONS(3311), + [anon_sym_unmanaged] = ACTIONS(3311), + [anon_sym_checked] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_this] = ACTIONS(3311), + [anon_sym_scoped] = ACTIONS(3311), + [anon_sym_base] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [sym_predefined_type] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_unchecked] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_when] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_foreach] = ACTIONS(3311), + [anon_sym_goto] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3313), + [anon_sym_from] = ACTIONS(3311), + [anon_sym_into] = ACTIONS(3311), + [anon_sym_join] = ACTIONS(3311), + [anon_sym_on] = ACTIONS(3311), + [anon_sym_equals] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_orderby] = ACTIONS(3311), + [anon_sym_ascending] = ACTIONS(3311), + [anon_sym_descending] = ACTIONS(3311), + [anon_sym_group] = ACTIONS(3311), + [anon_sym_by] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_stackalloc] = ACTIONS(3311), + [anon_sym_sizeof] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym___makeref] = ACTIONS(3311), + [anon_sym___reftype] = ACTIONS(3311), + [anon_sym___refvalue] = ACTIONS(3311), + [sym_null_literal] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3313), + [sym_integer_literal] = ACTIONS(3311), + [sym_real_literal] = ACTIONS(3313), + [anon_sym_DQUOTE] = ACTIONS(3313), + [sym_verbatim_string_literal] = ACTIONS(3313), + [aux_sym_preproc_if_token1] = ACTIONS(3313), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -382928,250 +379788,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3275), - [sym_interpolation_verbatim_start] = ACTIONS(3275), - [sym_interpolation_raw_start] = ACTIONS(3275), - [sym_raw_string_start] = ACTIONS(3275), + [sym_interpolation_regular_start] = ACTIONS(3313), + [sym_interpolation_verbatim_start] = ACTIONS(3313), + [sym_interpolation_raw_start] = ACTIONS(3313), + [sym_raw_string_start] = ACTIONS(3313), }, - [2047] = { - [sym_preproc_region] = STATE(2047), - [sym_preproc_endregion] = STATE(2047), - [sym_preproc_line] = STATE(2047), - [sym_preproc_pragma] = STATE(2047), - [sym_preproc_nullable] = STATE(2047), - [sym_preproc_error] = STATE(2047), - [sym_preproc_warning] = STATE(2047), - [sym_preproc_define] = STATE(2047), - [sym_preproc_undef] = STATE(2047), - [ts_builtin_sym_end] = ACTIONS(3243), - [sym__identifier_token] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_alias] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_global] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_unsafe] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_ref] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_delegate] = ACTIONS(3241), - [anon_sym_record] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_file] = ACTIONS(3241), - [anon_sym_fixed] = ACTIONS(3241), - [anon_sym_internal] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_partial] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_required] = ACTIONS(3241), - [anon_sym_sealed] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_where] = ACTIONS(3241), - [anon_sym_notnull] = ACTIONS(3241), - [anon_sym_unmanaged] = ACTIONS(3241), - [anon_sym_checked] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_true] = ACTIONS(3241), - [anon_sym_false] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_this] = ACTIONS(3241), - [anon_sym_scoped] = ACTIONS(3241), - [anon_sym_base] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_unchecked] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_lock] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_when] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_foreach] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [anon_sym_from] = ACTIONS(3241), - [anon_sym_into] = ACTIONS(3241), - [anon_sym_join] = ACTIONS(3241), - [anon_sym_on] = ACTIONS(3241), - [anon_sym_equals] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_orderby] = ACTIONS(3241), - [anon_sym_ascending] = ACTIONS(3241), - [anon_sym_descending] = ACTIONS(3241), - [anon_sym_group] = ACTIONS(3241), - [anon_sym_by] = ACTIONS(3241), - [anon_sym_select] = ACTIONS(3241), - [anon_sym_stackalloc] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym___makeref] = ACTIONS(3241), - [anon_sym___reftype] = ACTIONS(3241), - [anon_sym___refvalue] = ACTIONS(3241), - [sym_null_literal] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3243), - [sym_integer_literal] = ACTIONS(3241), - [sym_real_literal] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_verbatim_string_literal] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3243), - [sym_interpolation_verbatim_start] = ACTIONS(3243), - [sym_interpolation_raw_start] = ACTIONS(3243), - [sym_raw_string_start] = ACTIONS(3243), + [2022] = { + [sym_preproc_region] = STATE(2022), + [sym_preproc_endregion] = STATE(2022), + [sym_preproc_line] = STATE(2022), + [sym_preproc_pragma] = STATE(2022), + [sym_preproc_nullable] = STATE(2022), + [sym_preproc_error] = STATE(2022), + [sym_preproc_warning] = STATE(2022), + [sym_preproc_define] = STATE(2022), + [sym_preproc_undef] = STATE(2022), + [ts_builtin_sym_end] = ACTIONS(3285), + [sym__identifier_token] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_alias] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_ref] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_delegate] = ACTIONS(3283), + [anon_sym_record] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_file] = ACTIONS(3283), + [anon_sym_fixed] = ACTIONS(3283), + [anon_sym_internal] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_partial] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_required] = ACTIONS(3283), + [anon_sym_sealed] = ACTIONS(3283), + [anon_sym_virtual] = ACTIONS(3283), + [anon_sym_volatile] = ACTIONS(3283), + [anon_sym_where] = ACTIONS(3283), + [anon_sym_notnull] = ACTIONS(3283), + [anon_sym_unmanaged] = ACTIONS(3283), + [anon_sym_checked] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_this] = ACTIONS(3283), + [anon_sym_scoped] = ACTIONS(3283), + [anon_sym_base] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [sym_predefined_type] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_unchecked] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_when] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_foreach] = ACTIONS(3283), + [anon_sym_goto] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3285), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_into] = ACTIONS(3283), + [anon_sym_join] = ACTIONS(3283), + [anon_sym_on] = ACTIONS(3283), + [anon_sym_equals] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_orderby] = ACTIONS(3283), + [anon_sym_ascending] = ACTIONS(3283), + [anon_sym_descending] = ACTIONS(3283), + [anon_sym_group] = ACTIONS(3283), + [anon_sym_by] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_stackalloc] = ACTIONS(3283), + [anon_sym_sizeof] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym___makeref] = ACTIONS(3283), + [anon_sym___reftype] = ACTIONS(3283), + [anon_sym___refvalue] = ACTIONS(3283), + [sym_null_literal] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3285), + [sym_integer_literal] = ACTIONS(3283), + [sym_real_literal] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [sym_verbatim_string_literal] = ACTIONS(3285), + [aux_sym_preproc_if_token1] = ACTIONS(3285), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3285), + [sym_interpolation_verbatim_start] = ACTIONS(3285), + [sym_interpolation_raw_start] = ACTIONS(3285), + [sym_raw_string_start] = ACTIONS(3285), }, - [2048] = { - [sym_preproc_region] = STATE(2048), - [sym_preproc_endregion] = STATE(2048), - [sym_preproc_line] = STATE(2048), - [sym_preproc_pragma] = STATE(2048), - [sym_preproc_nullable] = STATE(2048), - [sym_preproc_error] = STATE(2048), - [sym_preproc_warning] = STATE(2048), - [sym_preproc_define] = STATE(2048), - [sym_preproc_undef] = STATE(2048), - [ts_builtin_sym_end] = ACTIONS(3187), - [sym__identifier_token] = ACTIONS(3185), - [anon_sym_extern] = ACTIONS(3185), - [anon_sym_alias] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_ref] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_delegate] = ACTIONS(3185), - [anon_sym_record] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_file] = ACTIONS(3185), - [anon_sym_fixed] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_partial] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_required] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_virtual] = ACTIONS(3185), - [anon_sym_volatile] = ACTIONS(3185), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_notnull] = ACTIONS(3185), - [anon_sym_unmanaged] = ACTIONS(3185), - [anon_sym_checked] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_scoped] = ACTIONS(3185), - [anon_sym_base] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [sym_predefined_type] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_unchecked] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_default] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_foreach] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(3187), - [anon_sym_from] = ACTIONS(3185), - [anon_sym_into] = ACTIONS(3185), - [anon_sym_join] = ACTIONS(3185), - [anon_sym_on] = ACTIONS(3185), - [anon_sym_equals] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_orderby] = ACTIONS(3185), - [anon_sym_ascending] = ACTIONS(3185), - [anon_sym_descending] = ACTIONS(3185), - [anon_sym_group] = ACTIONS(3185), - [anon_sym_by] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_stackalloc] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym___makeref] = ACTIONS(3185), - [anon_sym___reftype] = ACTIONS(3185), - [anon_sym___refvalue] = ACTIONS(3185), - [sym_null_literal] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_real_literal] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_verbatim_string_literal] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3187), + [2023] = { + [sym_preproc_region] = STATE(2023), + [sym_preproc_endregion] = STATE(2023), + [sym_preproc_line] = STATE(2023), + [sym_preproc_pragma] = STATE(2023), + [sym_preproc_nullable] = STATE(2023), + [sym_preproc_error] = STATE(2023), + [sym_preproc_warning] = STATE(2023), + [sym_preproc_define] = STATE(2023), + [sym_preproc_undef] = STATE(2023), + [ts_builtin_sym_end] = ACTIONS(3171), + [sym__identifier_token] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym_alias] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_global] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_ref] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_delegate] = ACTIONS(3169), + [anon_sym_record] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_async] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_file] = ACTIONS(3169), + [anon_sym_fixed] = ACTIONS(3169), + [anon_sym_internal] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_partial] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_readonly] = ACTIONS(3169), + [anon_sym_required] = ACTIONS(3169), + [anon_sym_sealed] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_where] = ACTIONS(3169), + [anon_sym_notnull] = ACTIONS(3169), + [anon_sym_unmanaged] = ACTIONS(3169), + [anon_sym_checked] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_true] = ACTIONS(3169), + [anon_sym_false] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_this] = ACTIONS(3169), + [anon_sym_scoped] = ACTIONS(3169), + [anon_sym_base] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [sym_predefined_type] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_unchecked] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_lock] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_when] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3169), + [anon_sym_foreach] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_DOT_DOT] = ACTIONS(3171), + [anon_sym_from] = ACTIONS(3169), + [anon_sym_into] = ACTIONS(3169), + [anon_sym_join] = ACTIONS(3169), + [anon_sym_on] = ACTIONS(3169), + [anon_sym_equals] = ACTIONS(3169), + [anon_sym_let] = ACTIONS(3169), + [anon_sym_orderby] = ACTIONS(3169), + [anon_sym_ascending] = ACTIONS(3169), + [anon_sym_descending] = ACTIONS(3169), + [anon_sym_group] = ACTIONS(3169), + [anon_sym_by] = ACTIONS(3169), + [anon_sym_select] = ACTIONS(3169), + [anon_sym_stackalloc] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym_typeof] = ACTIONS(3169), + [anon_sym___makeref] = ACTIONS(3169), + [anon_sym___reftype] = ACTIONS(3169), + [anon_sym___refvalue] = ACTIONS(3169), + [sym_null_literal] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3171), + [sym_integer_literal] = ACTIONS(3169), + [sym_real_literal] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_verbatim_string_literal] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -383182,123 +380042,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3187), - [sym_interpolation_verbatim_start] = ACTIONS(3187), - [sym_interpolation_raw_start] = ACTIONS(3187), - [sym_raw_string_start] = ACTIONS(3187), + [sym_interpolation_regular_start] = ACTIONS(3171), + [sym_interpolation_verbatim_start] = ACTIONS(3171), + [sym_interpolation_raw_start] = ACTIONS(3171), + [sym_raw_string_start] = ACTIONS(3171), }, - [2049] = { - [sym_preproc_region] = STATE(2049), - [sym_preproc_endregion] = STATE(2049), - [sym_preproc_line] = STATE(2049), - [sym_preproc_pragma] = STATE(2049), - [sym_preproc_nullable] = STATE(2049), - [sym_preproc_error] = STATE(2049), - [sym_preproc_warning] = STATE(2049), - [sym_preproc_define] = STATE(2049), - [sym_preproc_undef] = STATE(2049), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym__identifier_token] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym_alias] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_global] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_ref] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_delegate] = ACTIONS(3189), - [anon_sym_record] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_async] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_file] = ACTIONS(3189), - [anon_sym_fixed] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_partial] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_readonly] = ACTIONS(3189), - [anon_sym_required] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_notnull] = ACTIONS(3189), - [anon_sym_unmanaged] = ACTIONS(3189), - [anon_sym_checked] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_scoped] = ACTIONS(3189), - [anon_sym_base] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3189), - [sym_predefined_type] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_unchecked] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_default] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_await] = ACTIONS(3189), - [anon_sym_foreach] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_from] = ACTIONS(3189), - [anon_sym_into] = ACTIONS(3189), - [anon_sym_join] = ACTIONS(3189), - [anon_sym_on] = ACTIONS(3189), - [anon_sym_equals] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_orderby] = ACTIONS(3189), - [anon_sym_ascending] = ACTIONS(3189), - [anon_sym_descending] = ACTIONS(3189), - [anon_sym_group] = ACTIONS(3189), - [anon_sym_by] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_stackalloc] = ACTIONS(3189), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym_typeof] = ACTIONS(3189), - [anon_sym___makeref] = ACTIONS(3189), - [anon_sym___reftype] = ACTIONS(3189), - [anon_sym___refvalue] = ACTIONS(3189), - [sym_null_literal] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_real_literal] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_verbatim_string_literal] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3191), + [2024] = { + [sym_preproc_region] = STATE(2024), + [sym_preproc_endregion] = STATE(2024), + [sym_preproc_line] = STATE(2024), + [sym_preproc_pragma] = STATE(2024), + [sym_preproc_nullable] = STATE(2024), + [sym_preproc_error] = STATE(2024), + [sym_preproc_warning] = STATE(2024), + [sym_preproc_define] = STATE(2024), + [sym_preproc_undef] = STATE(2024), + [ts_builtin_sym_end] = ACTIONS(3249), + [sym__identifier_token] = ACTIONS(3247), + [anon_sym_extern] = ACTIONS(3247), + [anon_sym_alias] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_unsafe] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_ref] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_delegate] = ACTIONS(3247), + [anon_sym_record] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_file] = ACTIONS(3247), + [anon_sym_fixed] = ACTIONS(3247), + [anon_sym_internal] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_partial] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_required] = ACTIONS(3247), + [anon_sym_sealed] = ACTIONS(3247), + [anon_sym_virtual] = ACTIONS(3247), + [anon_sym_volatile] = ACTIONS(3247), + [anon_sym_where] = ACTIONS(3247), + [anon_sym_notnull] = ACTIONS(3247), + [anon_sym_unmanaged] = ACTIONS(3247), + [anon_sym_checked] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_this] = ACTIONS(3247), + [anon_sym_scoped] = ACTIONS(3247), + [anon_sym_base] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [sym_predefined_type] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_unchecked] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_lock] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_when] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_foreach] = ACTIONS(3247), + [anon_sym_goto] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(3249), + [anon_sym_from] = ACTIONS(3247), + [anon_sym_into] = ACTIONS(3247), + [anon_sym_join] = ACTIONS(3247), + [anon_sym_on] = ACTIONS(3247), + [anon_sym_equals] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_orderby] = ACTIONS(3247), + [anon_sym_ascending] = ACTIONS(3247), + [anon_sym_descending] = ACTIONS(3247), + [anon_sym_group] = ACTIONS(3247), + [anon_sym_by] = ACTIONS(3247), + [anon_sym_select] = ACTIONS(3247), + [anon_sym_stackalloc] = ACTIONS(3247), + [anon_sym_sizeof] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym___makeref] = ACTIONS(3247), + [anon_sym___reftype] = ACTIONS(3247), + [anon_sym___refvalue] = ACTIONS(3247), + [sym_null_literal] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3249), + [sym_integer_literal] = ACTIONS(3247), + [sym_real_literal] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [sym_verbatim_string_literal] = ACTIONS(3249), + [aux_sym_preproc_if_token1] = ACTIONS(3249), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3249), + [sym_interpolation_verbatim_start] = ACTIONS(3249), + [sym_interpolation_raw_start] = ACTIONS(3249), + [sym_raw_string_start] = ACTIONS(3249), + }, + [2025] = { + [sym_preproc_region] = STATE(2025), + [sym_preproc_endregion] = STATE(2025), + [sym_preproc_line] = STATE(2025), + [sym_preproc_pragma] = STATE(2025), + [sym_preproc_nullable] = STATE(2025), + [sym_preproc_error] = STATE(2025), + [sym_preproc_warning] = STATE(2025), + [sym_preproc_define] = STATE(2025), + [sym_preproc_undef] = STATE(2025), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym__identifier_token] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_alias] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_ref] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_delegate] = ACTIONS(3347), + [anon_sym_record] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_file] = ACTIONS(3347), + [anon_sym_fixed] = ACTIONS(3347), + [anon_sym_internal] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_partial] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_required] = ACTIONS(3347), + [anon_sym_sealed] = ACTIONS(3347), + [anon_sym_virtual] = ACTIONS(3347), + [anon_sym_volatile] = ACTIONS(3347), + [anon_sym_where] = ACTIONS(3347), + [anon_sym_notnull] = ACTIONS(3347), + [anon_sym_unmanaged] = ACTIONS(3347), + [anon_sym_checked] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_this] = ACTIONS(3347), + [anon_sym_scoped] = ACTIONS(3347), + [anon_sym_base] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [sym_predefined_type] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_unchecked] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_lock] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_when] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_foreach] = ACTIONS(3347), + [anon_sym_goto] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3347), + [anon_sym_into] = ACTIONS(3347), + [anon_sym_join] = ACTIONS(3347), + [anon_sym_on] = ACTIONS(3347), + [anon_sym_equals] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_orderby] = ACTIONS(3347), + [anon_sym_ascending] = ACTIONS(3347), + [anon_sym_descending] = ACTIONS(3347), + [anon_sym_group] = ACTIONS(3347), + [anon_sym_by] = ACTIONS(3347), + [anon_sym_select] = ACTIONS(3347), + [anon_sym_stackalloc] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym___makeref] = ACTIONS(3347), + [anon_sym___reftype] = ACTIONS(3347), + [anon_sym___refvalue] = ACTIONS(3347), + [sym_null_literal] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3349), + [sym_integer_literal] = ACTIONS(3347), + [sym_real_literal] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_verbatim_string_literal] = ACTIONS(3349), + [aux_sym_preproc_if_token1] = ACTIONS(3349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -383309,21 +380296,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3191), - [sym_interpolation_verbatim_start] = ACTIONS(3191), - [sym_interpolation_raw_start] = ACTIONS(3191), - [sym_raw_string_start] = ACTIONS(3191), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, - [2050] = { - [sym_preproc_region] = STATE(2050), - [sym_preproc_endregion] = STATE(2050), - [sym_preproc_line] = STATE(2050), - [sym_preproc_pragma] = STATE(2050), - [sym_preproc_nullable] = STATE(2050), - [sym_preproc_error] = STATE(2050), - [sym_preproc_warning] = STATE(2050), - [sym_preproc_define] = STATE(2050), - [sym_preproc_undef] = STATE(2050), + [2026] = { + [sym_preproc_region] = STATE(2026), + [sym_preproc_endregion] = STATE(2026), + [sym_preproc_line] = STATE(2026), + [sym_preproc_pragma] = STATE(2026), + [sym_preproc_nullable] = STATE(2026), + [sym_preproc_error] = STATE(2026), + [sym_preproc_warning] = STATE(2026), + [sym_preproc_define] = STATE(2026), + [sym_preproc_undef] = STATE(2026), + [ts_builtin_sym_end] = ACTIONS(3237), + [sym__identifier_token] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_alias] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_unsafe] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_ref] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_delegate] = ACTIONS(3235), + [anon_sym_record] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_file] = ACTIONS(3235), + [anon_sym_fixed] = ACTIONS(3235), + [anon_sym_internal] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_partial] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_required] = ACTIONS(3235), + [anon_sym_sealed] = ACTIONS(3235), + [anon_sym_virtual] = ACTIONS(3235), + [anon_sym_volatile] = ACTIONS(3235), + [anon_sym_where] = ACTIONS(3235), + [anon_sym_notnull] = ACTIONS(3235), + [anon_sym_unmanaged] = ACTIONS(3235), + [anon_sym_checked] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_this] = ACTIONS(3235), + [anon_sym_scoped] = ACTIONS(3235), + [anon_sym_base] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [sym_predefined_type] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_unchecked] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_lock] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_when] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_foreach] = ACTIONS(3235), + [anon_sym_goto] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_DOT_DOT] = ACTIONS(3237), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_into] = ACTIONS(3235), + [anon_sym_join] = ACTIONS(3235), + [anon_sym_on] = ACTIONS(3235), + [anon_sym_equals] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_orderby] = ACTIONS(3235), + [anon_sym_ascending] = ACTIONS(3235), + [anon_sym_descending] = ACTIONS(3235), + [anon_sym_group] = ACTIONS(3235), + [anon_sym_by] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_stackalloc] = ACTIONS(3235), + [anon_sym_sizeof] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym___makeref] = ACTIONS(3235), + [anon_sym___reftype] = ACTIONS(3235), + [anon_sym___refvalue] = ACTIONS(3235), + [sym_null_literal] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3237), + [sym_integer_literal] = ACTIONS(3235), + [sym_real_literal] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [sym_verbatim_string_literal] = ACTIONS(3237), + [aux_sym_preproc_if_token1] = ACTIONS(3237), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3237), + [sym_interpolation_verbatim_start] = ACTIONS(3237), + [sym_interpolation_raw_start] = ACTIONS(3237), + [sym_raw_string_start] = ACTIONS(3237), + }, + [2027] = { + [sym_preproc_region] = STATE(2027), + [sym_preproc_endregion] = STATE(2027), + [sym_preproc_line] = STATE(2027), + [sym_preproc_pragma] = STATE(2027), + [sym_preproc_nullable] = STATE(2027), + [sym_preproc_error] = STATE(2027), + [sym_preproc_warning] = STATE(2027), + [sym_preproc_define] = STATE(2027), + [sym_preproc_undef] = STATE(2027), [ts_builtin_sym_end] = ACTIONS(3281), [sym__identifier_token] = ACTIONS(3279), [anon_sym_extern] = ACTIONS(3279), @@ -383441,16 +380555,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3281), [sym_raw_string_start] = ACTIONS(3281), }, - [2051] = { - [sym_preproc_region] = STATE(2051), - [sym_preproc_endregion] = STATE(2051), - [sym_preproc_line] = STATE(2051), - [sym_preproc_pragma] = STATE(2051), - [sym_preproc_nullable] = STATE(2051), - [sym_preproc_error] = STATE(2051), - [sym_preproc_warning] = STATE(2051), - [sym_preproc_define] = STATE(2051), - [sym_preproc_undef] = STATE(2051), + [2028] = { + [sym_preproc_region] = STATE(2028), + [sym_preproc_endregion] = STATE(2028), + [sym_preproc_line] = STATE(2028), + [sym_preproc_pragma] = STATE(2028), + [sym_preproc_nullable] = STATE(2028), + [sym_preproc_error] = STATE(2028), + [sym_preproc_warning] = STATE(2028), + [sym_preproc_define] = STATE(2028), + [sym_preproc_undef] = STATE(2028), + [ts_builtin_sym_end] = ACTIONS(3333), + [sym__identifier_token] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_alias] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_unsafe] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_ref] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_delegate] = ACTIONS(3331), + [anon_sym_record] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_file] = ACTIONS(3331), + [anon_sym_fixed] = ACTIONS(3331), + [anon_sym_internal] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_partial] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_required] = ACTIONS(3331), + [anon_sym_sealed] = ACTIONS(3331), + [anon_sym_virtual] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym_where] = ACTIONS(3331), + [anon_sym_notnull] = ACTIONS(3331), + [anon_sym_unmanaged] = ACTIONS(3331), + [anon_sym_checked] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_this] = ACTIONS(3331), + [anon_sym_scoped] = ACTIONS(3331), + [anon_sym_base] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [sym_predefined_type] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_unchecked] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_lock] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_foreach] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_into] = ACTIONS(3331), + [anon_sym_join] = ACTIONS(3331), + [anon_sym_on] = ACTIONS(3331), + [anon_sym_equals] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_orderby] = ACTIONS(3331), + [anon_sym_ascending] = ACTIONS(3331), + [anon_sym_descending] = ACTIONS(3331), + [anon_sym_group] = ACTIONS(3331), + [anon_sym_by] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_stackalloc] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym___makeref] = ACTIONS(3331), + [anon_sym___reftype] = ACTIONS(3331), + [anon_sym___refvalue] = ACTIONS(3331), + [sym_null_literal] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), + [sym_integer_literal] = ACTIONS(3331), + [sym_real_literal] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [sym_verbatim_string_literal] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3333), + [sym_interpolation_verbatim_start] = ACTIONS(3333), + [sym_interpolation_raw_start] = ACTIONS(3333), + [sym_raw_string_start] = ACTIONS(3333), + }, + [2029] = { + [sym_preproc_region] = STATE(2029), + [sym_preproc_endregion] = STATE(2029), + [sym_preproc_line] = STATE(2029), + [sym_preproc_pragma] = STATE(2029), + [sym_preproc_nullable] = STATE(2029), + [sym_preproc_error] = STATE(2029), + [sym_preproc_warning] = STATE(2029), + [sym_preproc_define] = STATE(2029), + [sym_preproc_undef] = STATE(2029), + [ts_builtin_sym_end] = ACTIONS(3213), + [sym__identifier_token] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_ref] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_delegate] = ACTIONS(3211), + [anon_sym_record] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_fixed] = ACTIONS(3211), + [anon_sym_internal] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_partial] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_required] = ACTIONS(3211), + [anon_sym_sealed] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_checked] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_this] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3211), + [anon_sym_base] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [sym_predefined_type] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_unchecked] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_lock] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_foreach] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_DOT_DOT] = ACTIONS(3213), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [anon_sym_stackalloc] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym___makeref] = ACTIONS(3211), + [anon_sym___reftype] = ACTIONS(3211), + [anon_sym___refvalue] = ACTIONS(3211), + [sym_null_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3213), + [sym_integer_literal] = ACTIONS(3211), + [sym_real_literal] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_verbatim_string_literal] = ACTIONS(3213), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3213), + [sym_interpolation_verbatim_start] = ACTIONS(3213), + [sym_interpolation_raw_start] = ACTIONS(3213), + [sym_raw_string_start] = ACTIONS(3213), + }, + [2030] = { + [sym_preproc_region] = STATE(2030), + [sym_preproc_endregion] = STATE(2030), + [sym_preproc_line] = STATE(2030), + [sym_preproc_pragma] = STATE(2030), + [sym_preproc_nullable] = STATE(2030), + [sym_preproc_error] = STATE(2030), + [sym_preproc_warning] = STATE(2030), + [sym_preproc_define] = STATE(2030), + [sym_preproc_undef] = STATE(2030), [ts_builtin_sym_end] = ACTIONS(3195), [sym__identifier_token] = ACTIONS(3193), [anon_sym_extern] = ACTIONS(3193), @@ -383526,7 +380894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3193), [anon_sym_goto] = ACTIONS(3193), [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3447), [anon_sym_DOT_DOT] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3193), [anon_sym_into] = ACTIONS(3193), @@ -383568,118 +380936,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3195), [sym_raw_string_start] = ACTIONS(3195), }, - [2052] = { - [sym_preproc_region] = STATE(2052), - [sym_preproc_endregion] = STATE(2052), - [sym_preproc_line] = STATE(2052), - [sym_preproc_pragma] = STATE(2052), - [sym_preproc_nullable] = STATE(2052), - [sym_preproc_error] = STATE(2052), - [sym_preproc_warning] = STATE(2052), - [sym_preproc_define] = STATE(2052), - [sym_preproc_undef] = STATE(2052), - [ts_builtin_sym_end] = ACTIONS(3285), - [sym__identifier_token] = ACTIONS(3283), - [anon_sym_extern] = ACTIONS(3283), - [anon_sym_alias] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_global] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_namespace] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_ref] = ACTIONS(3283), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_delegate] = ACTIONS(3283), - [anon_sym_record] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_file] = ACTIONS(3283), - [anon_sym_fixed] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_partial] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_sealed] = ACTIONS(3283), - [anon_sym_virtual] = ACTIONS(3283), - [anon_sym_volatile] = ACTIONS(3283), - [anon_sym_where] = ACTIONS(3283), - [anon_sym_notnull] = ACTIONS(3283), - [anon_sym_unmanaged] = ACTIONS(3283), - [anon_sym_checked] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_this] = ACTIONS(3283), - [anon_sym_scoped] = ACTIONS(3283), - [anon_sym_base] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [sym_predefined_type] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_unchecked] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_when] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_foreach] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_DOT_DOT] = ACTIONS(3285), - [anon_sym_from] = ACTIONS(3283), - [anon_sym_into] = ACTIONS(3283), - [anon_sym_join] = ACTIONS(3283), - [anon_sym_on] = ACTIONS(3283), - [anon_sym_equals] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_orderby] = ACTIONS(3283), - [anon_sym_ascending] = ACTIONS(3283), - [anon_sym_descending] = ACTIONS(3283), - [anon_sym_group] = ACTIONS(3283), - [anon_sym_by] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_stackalloc] = ACTIONS(3283), - [anon_sym_sizeof] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym___makeref] = ACTIONS(3283), - [anon_sym___reftype] = ACTIONS(3283), - [anon_sym___refvalue] = ACTIONS(3283), - [sym_null_literal] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3285), - [sym_integer_literal] = ACTIONS(3283), - [sym_real_literal] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [sym_verbatim_string_literal] = ACTIONS(3285), - [aux_sym_preproc_if_token1] = ACTIONS(3285), + [2031] = { + [sym_preproc_region] = STATE(2031), + [sym_preproc_endregion] = STATE(2031), + [sym_preproc_line] = STATE(2031), + [sym_preproc_pragma] = STATE(2031), + [sym_preproc_nullable] = STATE(2031), + [sym_preproc_error] = STATE(2031), + [sym_preproc_warning] = STATE(2031), + [sym_preproc_define] = STATE(2031), + [sym_preproc_undef] = STATE(2031), + [ts_builtin_sym_end] = ACTIONS(3321), + [sym__identifier_token] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3319), + [anon_sym_alias] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_global] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_unsafe] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_ref] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_delegate] = ACTIONS(3319), + [anon_sym_record] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_file] = ACTIONS(3319), + [anon_sym_fixed] = ACTIONS(3319), + [anon_sym_internal] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_partial] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_required] = ACTIONS(3319), + [anon_sym_sealed] = ACTIONS(3319), + [anon_sym_virtual] = ACTIONS(3319), + [anon_sym_volatile] = ACTIONS(3319), + [anon_sym_where] = ACTIONS(3319), + [anon_sym_notnull] = ACTIONS(3319), + [anon_sym_unmanaged] = ACTIONS(3319), + [anon_sym_checked] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_this] = ACTIONS(3319), + [anon_sym_scoped] = ACTIONS(3319), + [anon_sym_base] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [sym_predefined_type] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_unchecked] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_lock] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_when] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_foreach] = ACTIONS(3319), + [anon_sym_goto] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_into] = ACTIONS(3319), + [anon_sym_join] = ACTIONS(3319), + [anon_sym_on] = ACTIONS(3319), + [anon_sym_equals] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_orderby] = ACTIONS(3319), + [anon_sym_ascending] = ACTIONS(3319), + [anon_sym_descending] = ACTIONS(3319), + [anon_sym_group] = ACTIONS(3319), + [anon_sym_by] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_stackalloc] = ACTIONS(3319), + [anon_sym_sizeof] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym___makeref] = ACTIONS(3319), + [anon_sym___reftype] = ACTIONS(3319), + [anon_sym___refvalue] = ACTIONS(3319), + [sym_null_literal] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3321), + [sym_integer_literal] = ACTIONS(3319), + [sym_real_literal] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [sym_verbatim_string_literal] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3321), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -383690,250 +381058,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3285), - [sym_interpolation_verbatim_start] = ACTIONS(3285), - [sym_interpolation_raw_start] = ACTIONS(3285), - [sym_raw_string_start] = ACTIONS(3285), + [sym_interpolation_regular_start] = ACTIONS(3321), + [sym_interpolation_verbatim_start] = ACTIONS(3321), + [sym_interpolation_raw_start] = ACTIONS(3321), + [sym_raw_string_start] = ACTIONS(3321), }, - [2053] = { - [sym_preproc_region] = STATE(2053), - [sym_preproc_endregion] = STATE(2053), - [sym_preproc_line] = STATE(2053), - [sym_preproc_pragma] = STATE(2053), - [sym_preproc_nullable] = STATE(2053), - [sym_preproc_error] = STATE(2053), - [sym_preproc_warning] = STATE(2053), - [sym_preproc_define] = STATE(2053), - [sym_preproc_undef] = STATE(2053), - [ts_builtin_sym_end] = ACTIONS(3215), - [sym__identifier_token] = ACTIONS(3213), - [anon_sym_extern] = ACTIONS(3213), - [anon_sym_alias] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_namespace] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_ref] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_delegate] = ACTIONS(3213), - [anon_sym_record] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_file] = ACTIONS(3213), - [anon_sym_fixed] = ACTIONS(3213), - [anon_sym_internal] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_partial] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_required] = ACTIONS(3213), - [anon_sym_sealed] = ACTIONS(3213), - [anon_sym_virtual] = ACTIONS(3213), - [anon_sym_volatile] = ACTIONS(3213), - [anon_sym_where] = ACTIONS(3213), - [anon_sym_notnull] = ACTIONS(3213), - [anon_sym_unmanaged] = ACTIONS(3213), - [anon_sym_checked] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_this] = ACTIONS(3213), - [anon_sym_scoped] = ACTIONS(3213), - [anon_sym_base] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [sym_predefined_type] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_unchecked] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_when] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_foreach] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_DOT_DOT] = ACTIONS(3215), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_into] = ACTIONS(3213), - [anon_sym_join] = ACTIONS(3213), - [anon_sym_on] = ACTIONS(3213), - [anon_sym_equals] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_orderby] = ACTIONS(3213), - [anon_sym_ascending] = ACTIONS(3213), - [anon_sym_descending] = ACTIONS(3213), - [anon_sym_group] = ACTIONS(3213), - [anon_sym_by] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_stackalloc] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym___makeref] = ACTIONS(3213), - [anon_sym___reftype] = ACTIONS(3213), - [anon_sym___refvalue] = ACTIONS(3213), - [sym_null_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3215), - [sym_integer_literal] = ACTIONS(3213), - [sym_real_literal] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(3215), - [sym_verbatim_string_literal] = ACTIONS(3215), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3215), - [sym_interpolation_verbatim_start] = ACTIONS(3215), - [sym_interpolation_raw_start] = ACTIONS(3215), - [sym_raw_string_start] = ACTIONS(3215), + [2032] = { + [sym_preproc_region] = STATE(2032), + [sym_preproc_endregion] = STATE(2032), + [sym_preproc_line] = STATE(2032), + [sym_preproc_pragma] = STATE(2032), + [sym_preproc_nullable] = STATE(2032), + [sym_preproc_error] = STATE(2032), + [sym_preproc_warning] = STATE(2032), + [sym_preproc_define] = STATE(2032), + [sym_preproc_undef] = STATE(2032), + [ts_builtin_sym_end] = ACTIONS(3273), + [sym__identifier_token] = ACTIONS(3271), + [anon_sym_extern] = ACTIONS(3271), + [anon_sym_alias] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_unsafe] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_ref] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_delegate] = ACTIONS(3271), + [anon_sym_record] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_file] = ACTIONS(3271), + [anon_sym_fixed] = ACTIONS(3271), + [anon_sym_internal] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_partial] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_required] = ACTIONS(3271), + [anon_sym_sealed] = ACTIONS(3271), + [anon_sym_virtual] = ACTIONS(3271), + [anon_sym_volatile] = ACTIONS(3271), + [anon_sym_where] = ACTIONS(3271), + [anon_sym_notnull] = ACTIONS(3271), + [anon_sym_unmanaged] = ACTIONS(3271), + [anon_sym_checked] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_this] = ACTIONS(3271), + [anon_sym_scoped] = ACTIONS(3271), + [anon_sym_base] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [sym_predefined_type] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_unchecked] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_lock] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_when] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_foreach] = ACTIONS(3271), + [anon_sym_goto] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_into] = ACTIONS(3271), + [anon_sym_join] = ACTIONS(3271), + [anon_sym_on] = ACTIONS(3271), + [anon_sym_equals] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_orderby] = ACTIONS(3271), + [anon_sym_ascending] = ACTIONS(3271), + [anon_sym_descending] = ACTIONS(3271), + [anon_sym_group] = ACTIONS(3271), + [anon_sym_by] = ACTIONS(3271), + [anon_sym_select] = ACTIONS(3271), + [anon_sym_stackalloc] = ACTIONS(3271), + [anon_sym_sizeof] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym___makeref] = ACTIONS(3271), + [anon_sym___reftype] = ACTIONS(3271), + [anon_sym___refvalue] = ACTIONS(3271), + [sym_null_literal] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3273), + [sym_integer_literal] = ACTIONS(3271), + [sym_real_literal] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [sym_verbatim_string_literal] = ACTIONS(3273), + [aux_sym_preproc_if_token1] = ACTIONS(3273), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3273), + [sym_interpolation_verbatim_start] = ACTIONS(3273), + [sym_interpolation_raw_start] = ACTIONS(3273), + [sym_raw_string_start] = ACTIONS(3273), }, - [2054] = { - [sym_preproc_region] = STATE(2054), - [sym_preproc_endregion] = STATE(2054), - [sym_preproc_line] = STATE(2054), - [sym_preproc_pragma] = STATE(2054), - [sym_preproc_nullable] = STATE(2054), - [sym_preproc_error] = STATE(2054), - [sym_preproc_warning] = STATE(2054), - [sym_preproc_define] = STATE(2054), - [sym_preproc_undef] = STATE(2054), - [ts_builtin_sym_end] = ACTIONS(3199), - [sym__identifier_token] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym_alias] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_global] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_ref] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_delegate] = ACTIONS(3197), - [anon_sym_record] = ACTIONS(3197), - [anon_sym_abstract] = ACTIONS(3197), - [anon_sym_async] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_file] = ACTIONS(3197), - [anon_sym_fixed] = ACTIONS(3197), - [anon_sym_internal] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_override] = ACTIONS(3197), - [anon_sym_partial] = ACTIONS(3197), - [anon_sym_private] = ACTIONS(3197), - [anon_sym_protected] = ACTIONS(3197), - [anon_sym_public] = ACTIONS(3197), - [anon_sym_readonly] = ACTIONS(3197), - [anon_sym_required] = ACTIONS(3197), - [anon_sym_sealed] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_where] = ACTIONS(3197), - [anon_sym_notnull] = ACTIONS(3197), - [anon_sym_unmanaged] = ACTIONS(3197), - [anon_sym_checked] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_this] = ACTIONS(3197), - [anon_sym_scoped] = ACTIONS(3197), - [anon_sym_base] = ACTIONS(3197), - [anon_sym_var] = ACTIONS(3197), - [sym_predefined_type] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_unchecked] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_when] = ACTIONS(3197), - [anon_sym_await] = ACTIONS(3197), - [anon_sym_foreach] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [anon_sym_from] = ACTIONS(3197), - [anon_sym_into] = ACTIONS(3197), - [anon_sym_join] = ACTIONS(3197), - [anon_sym_on] = ACTIONS(3197), - [anon_sym_equals] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_orderby] = ACTIONS(3197), - [anon_sym_ascending] = ACTIONS(3197), - [anon_sym_descending] = ACTIONS(3197), - [anon_sym_group] = ACTIONS(3197), - [anon_sym_by] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_stackalloc] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym_typeof] = ACTIONS(3197), - [anon_sym___makeref] = ACTIONS(3197), - [anon_sym___reftype] = ACTIONS(3197), - [anon_sym___refvalue] = ACTIONS(3197), - [sym_null_literal] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3199), - [sym_integer_literal] = ACTIONS(3197), - [sym_real_literal] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_verbatim_string_literal] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), + [2033] = { + [sym_preproc_region] = STATE(2033), + [sym_preproc_endregion] = STATE(2033), + [sym_preproc_line] = STATE(2033), + [sym_preproc_pragma] = STATE(2033), + [sym_preproc_nullable] = STATE(2033), + [sym_preproc_error] = STATE(2033), + [sym_preproc_warning] = STATE(2033), + [sym_preproc_define] = STATE(2033), + [sym_preproc_undef] = STATE(2033), + [ts_builtin_sym_end] = ACTIONS(3345), + [sym__identifier_token] = ACTIONS(3343), + [anon_sym_extern] = ACTIONS(3343), + [anon_sym_alias] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_ref] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_delegate] = ACTIONS(3343), + [anon_sym_record] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_file] = ACTIONS(3343), + [anon_sym_fixed] = ACTIONS(3343), + [anon_sym_internal] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_partial] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_required] = ACTIONS(3343), + [anon_sym_sealed] = ACTIONS(3343), + [anon_sym_virtual] = ACTIONS(3343), + [anon_sym_volatile] = ACTIONS(3343), + [anon_sym_where] = ACTIONS(3343), + [anon_sym_notnull] = ACTIONS(3343), + [anon_sym_unmanaged] = ACTIONS(3343), + [anon_sym_checked] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_this] = ACTIONS(3343), + [anon_sym_scoped] = ACTIONS(3343), + [anon_sym_base] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [sym_predefined_type] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_unchecked] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_lock] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_when] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_foreach] = ACTIONS(3343), + [anon_sym_goto] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_into] = ACTIONS(3343), + [anon_sym_join] = ACTIONS(3343), + [anon_sym_on] = ACTIONS(3343), + [anon_sym_equals] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_orderby] = ACTIONS(3343), + [anon_sym_ascending] = ACTIONS(3343), + [anon_sym_descending] = ACTIONS(3343), + [anon_sym_group] = ACTIONS(3343), + [anon_sym_by] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_stackalloc] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym___makeref] = ACTIONS(3343), + [anon_sym___reftype] = ACTIONS(3343), + [anon_sym___refvalue] = ACTIONS(3343), + [sym_null_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3345), + [sym_integer_literal] = ACTIONS(3343), + [sym_real_literal] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_verbatim_string_literal] = ACTIONS(3345), + [aux_sym_preproc_if_token1] = ACTIONS(3345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -383944,631 +381312,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3199), - [sym_interpolation_verbatim_start] = ACTIONS(3199), - [sym_interpolation_raw_start] = ACTIONS(3199), - [sym_raw_string_start] = ACTIONS(3199), - }, - [2055] = { - [sym_preproc_region] = STATE(2055), - [sym_preproc_endregion] = STATE(2055), - [sym_preproc_line] = STATE(2055), - [sym_preproc_pragma] = STATE(2055), - [sym_preproc_nullable] = STATE(2055), - [sym_preproc_error] = STATE(2055), - [sym_preproc_warning] = STATE(2055), - [sym_preproc_define] = STATE(2055), - [sym_preproc_undef] = STATE(2055), - [ts_builtin_sym_end] = ACTIONS(3235), - [sym__identifier_token] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_alias] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_global] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_unsafe] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_ref] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_delegate] = ACTIONS(3233), - [anon_sym_record] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_file] = ACTIONS(3233), - [anon_sym_fixed] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_partial] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_sealed] = ACTIONS(3233), - [anon_sym_virtual] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_where] = ACTIONS(3233), - [anon_sym_notnull] = ACTIONS(3233), - [anon_sym_unmanaged] = ACTIONS(3233), - [anon_sym_checked] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_this] = ACTIONS(3233), - [anon_sym_scoped] = ACTIONS(3233), - [anon_sym_base] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [sym_predefined_type] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_unchecked] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_lock] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_when] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_foreach] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3235), - [anon_sym_from] = ACTIONS(3233), - [anon_sym_into] = ACTIONS(3233), - [anon_sym_join] = ACTIONS(3233), - [anon_sym_on] = ACTIONS(3233), - [anon_sym_equals] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_orderby] = ACTIONS(3233), - [anon_sym_ascending] = ACTIONS(3233), - [anon_sym_descending] = ACTIONS(3233), - [anon_sym_group] = ACTIONS(3233), - [anon_sym_by] = ACTIONS(3233), - [anon_sym_select] = ACTIONS(3233), - [anon_sym_stackalloc] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym___makeref] = ACTIONS(3233), - [anon_sym___reftype] = ACTIONS(3233), - [anon_sym___refvalue] = ACTIONS(3233), - [sym_null_literal] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3235), - [sym_integer_literal] = ACTIONS(3233), - [sym_real_literal] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_verbatim_string_literal] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3235), - [sym_interpolation_verbatim_start] = ACTIONS(3235), - [sym_interpolation_raw_start] = ACTIONS(3235), - [sym_raw_string_start] = ACTIONS(3235), - }, - [2056] = { - [sym_preproc_region] = STATE(2056), - [sym_preproc_endregion] = STATE(2056), - [sym_preproc_line] = STATE(2056), - [sym_preproc_pragma] = STATE(2056), - [sym_preproc_nullable] = STATE(2056), - [sym_preproc_error] = STATE(2056), - [sym_preproc_warning] = STATE(2056), - [sym_preproc_define] = STATE(2056), - [sym_preproc_undef] = STATE(2056), - [ts_builtin_sym_end] = ACTIONS(3131), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_record] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), - }, - [2057] = { - [sym_preproc_region] = STATE(2057), - [sym_preproc_endregion] = STATE(2057), - [sym_preproc_line] = STATE(2057), - [sym_preproc_pragma] = STATE(2057), - [sym_preproc_nullable] = STATE(2057), - [sym_preproc_error] = STATE(2057), - [sym_preproc_warning] = STATE(2057), - [sym_preproc_define] = STATE(2057), - [sym_preproc_undef] = STATE(2057), - [ts_builtin_sym_end] = ACTIONS(3247), - [sym__identifier_token] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_alias] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_global] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_ref] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_delegate] = ACTIONS(3245), - [anon_sym_record] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_file] = ACTIONS(3245), - [anon_sym_fixed] = ACTIONS(3245), - [anon_sym_internal] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_partial] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_required] = ACTIONS(3245), - [anon_sym_sealed] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_where] = ACTIONS(3245), - [anon_sym_notnull] = ACTIONS(3245), - [anon_sym_unmanaged] = ACTIONS(3245), - [anon_sym_checked] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_this] = ACTIONS(3245), - [anon_sym_scoped] = ACTIONS(3245), - [anon_sym_base] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [sym_predefined_type] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_unchecked] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_when] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_foreach] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_from] = ACTIONS(3245), - [anon_sym_into] = ACTIONS(3245), - [anon_sym_join] = ACTIONS(3245), - [anon_sym_on] = ACTIONS(3245), - [anon_sym_equals] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_orderby] = ACTIONS(3245), - [anon_sym_ascending] = ACTIONS(3245), - [anon_sym_descending] = ACTIONS(3245), - [anon_sym_group] = ACTIONS(3245), - [anon_sym_by] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_stackalloc] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym___makeref] = ACTIONS(3245), - [anon_sym___reftype] = ACTIONS(3245), - [anon_sym___refvalue] = ACTIONS(3245), - [sym_null_literal] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3247), - [sym_integer_literal] = ACTIONS(3245), - [sym_real_literal] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_verbatim_string_literal] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3247), - [sym_interpolation_verbatim_start] = ACTIONS(3247), - [sym_interpolation_raw_start] = ACTIONS(3247), - [sym_raw_string_start] = ACTIONS(3247), - }, - [2058] = { - [sym_preproc_region] = STATE(2058), - [sym_preproc_endregion] = STATE(2058), - [sym_preproc_line] = STATE(2058), - [sym_preproc_pragma] = STATE(2058), - [sym_preproc_nullable] = STATE(2058), - [sym_preproc_error] = STATE(2058), - [sym_preproc_warning] = STATE(2058), - [sym_preproc_define] = STATE(2058), - [sym_preproc_undef] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_ref] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_delegate] = ACTIONS(3201), - [anon_sym_record] = ACTIONS(3201), - [anon_sym_abstract] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_file] = ACTIONS(3201), - [anon_sym_fixed] = ACTIONS(3201), - [anon_sym_internal] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_override] = ACTIONS(3201), - [anon_sym_partial] = ACTIONS(3201), - [anon_sym_private] = ACTIONS(3201), - [anon_sym_protected] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3201), - [anon_sym_readonly] = ACTIONS(3201), - [anon_sym_required] = ACTIONS(3201), - [anon_sym_sealed] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_notnull] = ACTIONS(3201), - [anon_sym_unmanaged] = ACTIONS(3201), - [anon_sym_checked] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_this] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_base] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_unchecked] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_await] = ACTIONS(3201), - [anon_sym_foreach] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3203), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_orderby] = ACTIONS(3201), - [anon_sym_ascending] = ACTIONS(3201), - [anon_sym_descending] = ACTIONS(3201), - [anon_sym_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_stackalloc] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym_typeof] = ACTIONS(3201), - [anon_sym___makeref] = ACTIONS(3201), - [anon_sym___reftype] = ACTIONS(3201), - [anon_sym___refvalue] = ACTIONS(3201), - [sym_null_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3201), - [sym_real_literal] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_verbatim_string_literal] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3203), - [sym_interpolation_verbatim_start] = ACTIONS(3203), - [sym_interpolation_raw_start] = ACTIONS(3203), - [sym_raw_string_start] = ACTIONS(3203), + [sym_interpolation_regular_start] = ACTIONS(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, - [2059] = { - [sym_catch_clause] = STATE(2100), - [sym_finally_clause] = STATE(2135), - [sym_preproc_region] = STATE(2059), - [sym_preproc_endregion] = STATE(2059), - [sym_preproc_line] = STATE(2059), - [sym_preproc_pragma] = STATE(2059), - [sym_preproc_nullable] = STATE(2059), - [sym_preproc_error] = STATE(2059), - [sym_preproc_warning] = STATE(2059), - [sym_preproc_define] = STATE(2059), - [sym_preproc_undef] = STATE(2059), - [aux_sym_try_statement_repeat1] = STATE(2060), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), + [2034] = { + [sym_catch_clause] = STATE(2099), + [sym_finally_clause] = STATE(2122), + [sym_preproc_region] = STATE(2034), + [sym_preproc_endregion] = STATE(2034), + [sym_preproc_line] = STATE(2034), + [sym_preproc_pragma] = STATE(2034), + [sym_preproc_nullable] = STATE(2034), + [sym_preproc_error] = STATE(2034), + [sym_preproc_warning] = STATE(2034), + [sym_preproc_define] = STATE(2034), + [sym_preproc_undef] = STATE(2034), + [aux_sym_try_statement_repeat1] = STATE(2052), + [sym__identifier_token] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym_alias] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_ref] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_delegate] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_async] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_file] = ACTIONS(3121), + [anon_sym_fixed] = ACTIONS(3121), + [anon_sym_internal] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_partial] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_protected] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_readonly] = ACTIONS(3121), + [anon_sym_required] = ACTIONS(3121), + [anon_sym_sealed] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_where] = ACTIONS(3121), + [anon_sym_notnull] = ACTIONS(3121), + [anon_sym_unmanaged] = ACTIONS(3121), + [anon_sym_checked] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_scoped] = ACTIONS(3121), + [anon_sym_base] = ACTIONS(3121), + [anon_sym_var] = ACTIONS(3121), + [sym_predefined_type] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_unchecked] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), [anon_sym_catch] = ACTIONS(3449), - [anon_sym_when] = ACTIONS(3119), + [anon_sym_when] = ACTIONS(3121), [anon_sym_finally] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), + [anon_sym_await] = ACTIONS(3121), + [anon_sym_foreach] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3121), + [anon_sym_into] = ACTIONS(3121), + [anon_sym_join] = ACTIONS(3121), + [anon_sym_on] = ACTIONS(3121), + [anon_sym_equals] = ACTIONS(3121), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_orderby] = ACTIONS(3121), + [anon_sym_ascending] = ACTIONS(3121), + [anon_sym_descending] = ACTIONS(3121), + [anon_sym_group] = ACTIONS(3121), + [anon_sym_by] = ACTIONS(3121), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_stackalloc] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_typeof] = ACTIONS(3121), + [anon_sym___makeref] = ACTIONS(3121), + [anon_sym___reftype] = ACTIONS(3121), + [anon_sym___refvalue] = ACTIONS(3121), + [sym_null_literal] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [sym_real_literal] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_verbatim_string_literal] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3123), + [sym_interpolation_verbatim_start] = ACTIONS(3123), + [sym_interpolation_raw_start] = ACTIONS(3123), + [sym_raw_string_start] = ACTIONS(3123), + }, + [2035] = { + [sym_preproc_region] = STATE(2035), + [sym_preproc_endregion] = STATE(2035), + [sym_preproc_line] = STATE(2035), + [sym_preproc_pragma] = STATE(2035), + [sym_preproc_nullable] = STATE(2035), + [sym_preproc_error] = STATE(2035), + [sym_preproc_warning] = STATE(2035), + [sym_preproc_define] = STATE(2035), + [sym_preproc_undef] = STATE(2035), + [ts_builtin_sym_end] = ACTIONS(3297), + [sym__identifier_token] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_alias] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_ref] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_delegate] = ACTIONS(3295), + [anon_sym_record] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_file] = ACTIONS(3295), + [anon_sym_fixed] = ACTIONS(3295), + [anon_sym_internal] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_partial] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_required] = ACTIONS(3295), + [anon_sym_sealed] = ACTIONS(3295), + [anon_sym_virtual] = ACTIONS(3295), + [anon_sym_volatile] = ACTIONS(3295), + [anon_sym_where] = ACTIONS(3295), + [anon_sym_notnull] = ACTIONS(3295), + [anon_sym_unmanaged] = ACTIONS(3295), + [anon_sym_checked] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_this] = ACTIONS(3295), + [anon_sym_scoped] = ACTIONS(3295), + [anon_sym_base] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [sym_predefined_type] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_unchecked] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_when] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_foreach] = ACTIONS(3295), + [anon_sym_goto] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_into] = ACTIONS(3295), + [anon_sym_join] = ACTIONS(3295), + [anon_sym_on] = ACTIONS(3295), + [anon_sym_equals] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_orderby] = ACTIONS(3295), + [anon_sym_ascending] = ACTIONS(3295), + [anon_sym_descending] = ACTIONS(3295), + [anon_sym_group] = ACTIONS(3295), + [anon_sym_by] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_stackalloc] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym___makeref] = ACTIONS(3295), + [anon_sym___reftype] = ACTIONS(3295), + [anon_sym___refvalue] = ACTIONS(3295), + [sym_null_literal] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3297), + [sym_integer_literal] = ACTIONS(3295), + [sym_real_literal] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [sym_verbatim_string_literal] = ACTIONS(3297), + [aux_sym_preproc_if_token1] = ACTIONS(3297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -384579,123 +381566,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), + [sym_interpolation_regular_start] = ACTIONS(3297), + [sym_interpolation_verbatim_start] = ACTIONS(3297), + [sym_interpolation_raw_start] = ACTIONS(3297), + [sym_raw_string_start] = ACTIONS(3297), }, - [2060] = { - [sym_catch_clause] = STATE(2100), - [sym_finally_clause] = STATE(2105), - [sym_preproc_region] = STATE(2060), - [sym_preproc_endregion] = STATE(2060), - [sym_preproc_line] = STATE(2060), - [sym_preproc_pragma] = STATE(2060), - [sym_preproc_nullable] = STATE(2060), - [sym_preproc_error] = STATE(2060), - [sym_preproc_warning] = STATE(2060), - [sym_preproc_define] = STATE(2060), - [sym_preproc_undef] = STATE(2060), - [aux_sym_try_statement_repeat1] = STATE(2076), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_case] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_catch] = ACTIONS(3449), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), + [2036] = { + [sym_preproc_region] = STATE(2036), + [sym_preproc_endregion] = STATE(2036), + [sym_preproc_line] = STATE(2036), + [sym_preproc_pragma] = STATE(2036), + [sym_preproc_nullable] = STATE(2036), + [sym_preproc_error] = STATE(2036), + [sym_preproc_warning] = STATE(2036), + [sym_preproc_define] = STATE(2036), + [sym_preproc_undef] = STATE(2036), + [ts_builtin_sym_end] = ACTIONS(3265), + [sym__identifier_token] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_alias] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_ref] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_delegate] = ACTIONS(3263), + [anon_sym_record] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_file] = ACTIONS(3263), + [anon_sym_fixed] = ACTIONS(3263), + [anon_sym_internal] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_partial] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_sealed] = ACTIONS(3263), + [anon_sym_virtual] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_where] = ACTIONS(3263), + [anon_sym_notnull] = ACTIONS(3263), + [anon_sym_unmanaged] = ACTIONS(3263), + [anon_sym_checked] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_this] = ACTIONS(3263), + [anon_sym_scoped] = ACTIONS(3263), + [anon_sym_base] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [sym_predefined_type] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_unchecked] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_lock] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_when] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_foreach] = ACTIONS(3263), + [anon_sym_goto] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_into] = ACTIONS(3263), + [anon_sym_join] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_equals] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_orderby] = ACTIONS(3263), + [anon_sym_ascending] = ACTIONS(3263), + [anon_sym_descending] = ACTIONS(3263), + [anon_sym_group] = ACTIONS(3263), + [anon_sym_by] = ACTIONS(3263), + [anon_sym_select] = ACTIONS(3263), + [anon_sym_stackalloc] = ACTIONS(3263), + [anon_sym_sizeof] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym___makeref] = ACTIONS(3263), + [anon_sym___reftype] = ACTIONS(3263), + [anon_sym___refvalue] = ACTIONS(3263), + [sym_null_literal] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3265), + [sym_integer_literal] = ACTIONS(3263), + [sym_real_literal] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [sym_verbatim_string_literal] = ACTIONS(3265), + [aux_sym_preproc_if_token1] = ACTIONS(3265), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3265), + [sym_interpolation_verbatim_start] = ACTIONS(3265), + [sym_interpolation_raw_start] = ACTIONS(3265), + [sym_raw_string_start] = ACTIONS(3265), + }, + [2037] = { + [sym_preproc_region] = STATE(2037), + [sym_preproc_endregion] = STATE(2037), + [sym_preproc_line] = STATE(2037), + [sym_preproc_pragma] = STATE(2037), + [sym_preproc_nullable] = STATE(2037), + [sym_preproc_error] = STATE(2037), + [sym_preproc_warning] = STATE(2037), + [sym_preproc_define] = STATE(2037), + [sym_preproc_undef] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(3269), + [sym__identifier_token] = ACTIONS(3267), + [anon_sym_extern] = ACTIONS(3267), + [anon_sym_alias] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_unsafe] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_ref] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_delegate] = ACTIONS(3267), + [anon_sym_record] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_file] = ACTIONS(3267), + [anon_sym_fixed] = ACTIONS(3267), + [anon_sym_internal] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_partial] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_required] = ACTIONS(3267), + [anon_sym_sealed] = ACTIONS(3267), + [anon_sym_virtual] = ACTIONS(3267), + [anon_sym_volatile] = ACTIONS(3267), + [anon_sym_where] = ACTIONS(3267), + [anon_sym_notnull] = ACTIONS(3267), + [anon_sym_unmanaged] = ACTIONS(3267), + [anon_sym_checked] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_this] = ACTIONS(3267), + [anon_sym_scoped] = ACTIONS(3267), + [anon_sym_base] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [sym_predefined_type] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_unchecked] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_lock] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_when] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_foreach] = ACTIONS(3267), + [anon_sym_goto] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_from] = ACTIONS(3267), + [anon_sym_into] = ACTIONS(3267), + [anon_sym_join] = ACTIONS(3267), + [anon_sym_on] = ACTIONS(3267), + [anon_sym_equals] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_orderby] = ACTIONS(3267), + [anon_sym_ascending] = ACTIONS(3267), + [anon_sym_descending] = ACTIONS(3267), + [anon_sym_group] = ACTIONS(3267), + [anon_sym_by] = ACTIONS(3267), + [anon_sym_select] = ACTIONS(3267), + [anon_sym_stackalloc] = ACTIONS(3267), + [anon_sym_sizeof] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym___makeref] = ACTIONS(3267), + [anon_sym___reftype] = ACTIONS(3267), + [anon_sym___refvalue] = ACTIONS(3267), + [sym_null_literal] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3269), + [sym_integer_literal] = ACTIONS(3267), + [sym_real_literal] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [sym_verbatim_string_literal] = ACTIONS(3269), + [aux_sym_preproc_if_token1] = ACTIONS(3269), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3269), + [sym_interpolation_verbatim_start] = ACTIONS(3269), + [sym_interpolation_raw_start] = ACTIONS(3269), + [sym_raw_string_start] = ACTIONS(3269), + }, + [2038] = { + [sym_preproc_region] = STATE(2038), + [sym_preproc_endregion] = STATE(2038), + [sym_preproc_line] = STATE(2038), + [sym_preproc_pragma] = STATE(2038), + [sym_preproc_nullable] = STATE(2038), + [sym_preproc_error] = STATE(2038), + [sym_preproc_warning] = STATE(2038), + [sym_preproc_define] = STATE(2038), + [sym_preproc_undef] = STATE(2038), + [ts_builtin_sym_end] = ACTIONS(3341), + [sym__identifier_token] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_alias] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_unsafe] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_ref] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_delegate] = ACTIONS(3339), + [anon_sym_record] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_file] = ACTIONS(3339), + [anon_sym_fixed] = ACTIONS(3339), + [anon_sym_internal] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_partial] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_sealed] = ACTIONS(3339), + [anon_sym_virtual] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_where] = ACTIONS(3339), + [anon_sym_notnull] = ACTIONS(3339), + [anon_sym_unmanaged] = ACTIONS(3339), + [anon_sym_checked] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_this] = ACTIONS(3339), + [anon_sym_scoped] = ACTIONS(3339), + [anon_sym_base] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [sym_predefined_type] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_unchecked] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_lock] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_when] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_foreach] = ACTIONS(3339), + [anon_sym_goto] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_into] = ACTIONS(3339), + [anon_sym_join] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_equals] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_orderby] = ACTIONS(3339), + [anon_sym_ascending] = ACTIONS(3339), + [anon_sym_descending] = ACTIONS(3339), + [anon_sym_group] = ACTIONS(3339), + [anon_sym_by] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_stackalloc] = ACTIONS(3339), + [anon_sym_sizeof] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym___makeref] = ACTIONS(3339), + [anon_sym___reftype] = ACTIONS(3339), + [anon_sym___refvalue] = ACTIONS(3339), + [sym_null_literal] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3341), + [sym_integer_literal] = ACTIONS(3339), + [sym_real_literal] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [sym_verbatim_string_literal] = ACTIONS(3341), + [aux_sym_preproc_if_token1] = ACTIONS(3341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -384706,166 +381947,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), + [sym_interpolation_regular_start] = ACTIONS(3341), + [sym_interpolation_verbatim_start] = ACTIONS(3341), + [sym_interpolation_raw_start] = ACTIONS(3341), + [sym_raw_string_start] = ACTIONS(3341), }, - [2061] = { - [sym_preproc_region] = STATE(2061), - [sym_preproc_endregion] = STATE(2061), - [sym_preproc_line] = STATE(2061), - [sym_preproc_pragma] = STATE(2061), - [sym_preproc_nullable] = STATE(2061), - [sym_preproc_error] = STATE(2061), - [sym_preproc_warning] = STATE(2061), - [sym_preproc_define] = STATE(2061), - [sym_preproc_undef] = STATE(2061), - [ts_builtin_sym_end] = ACTIONS(3231), - [sym__identifier_token] = ACTIONS(3229), - [anon_sym_extern] = ACTIONS(3229), - [anon_sym_alias] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_global] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_unsafe] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_ref] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_delegate] = ACTIONS(3229), - [anon_sym_record] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_file] = ACTIONS(3229), - [anon_sym_fixed] = ACTIONS(3229), - [anon_sym_internal] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_partial] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_required] = ACTIONS(3229), - [anon_sym_sealed] = ACTIONS(3229), - [anon_sym_virtual] = ACTIONS(3229), - [anon_sym_volatile] = ACTIONS(3229), - [anon_sym_where] = ACTIONS(3229), - [anon_sym_notnull] = ACTIONS(3229), - [anon_sym_unmanaged] = ACTIONS(3229), - [anon_sym_checked] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_true] = ACTIONS(3229), - [anon_sym_false] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_this] = ACTIONS(3229), - [anon_sym_scoped] = ACTIONS(3229), - [anon_sym_base] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [sym_predefined_type] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_unchecked] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_lock] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_when] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_foreach] = ACTIONS(3229), - [anon_sym_goto] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3231), - [anon_sym_from] = ACTIONS(3229), - [anon_sym_into] = ACTIONS(3229), - [anon_sym_join] = ACTIONS(3229), - [anon_sym_on] = ACTIONS(3229), - [anon_sym_equals] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_orderby] = ACTIONS(3229), - [anon_sym_ascending] = ACTIONS(3229), - [anon_sym_descending] = ACTIONS(3229), - [anon_sym_group] = ACTIONS(3229), - [anon_sym_by] = ACTIONS(3229), - [anon_sym_select] = ACTIONS(3229), - [anon_sym_stackalloc] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym___makeref] = ACTIONS(3229), - [anon_sym___reftype] = ACTIONS(3229), - [anon_sym___refvalue] = ACTIONS(3229), - [sym_null_literal] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3231), - [sym_integer_literal] = ACTIONS(3229), - [sym_real_literal] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym_verbatim_string_literal] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3231), - [sym_interpolation_verbatim_start] = ACTIONS(3231), - [sym_interpolation_raw_start] = ACTIONS(3231), - [sym_raw_string_start] = ACTIONS(3231), + [2039] = { + [sym_preproc_region] = STATE(2039), + [sym_preproc_endregion] = STATE(2039), + [sym_preproc_line] = STATE(2039), + [sym_preproc_pragma] = STATE(2039), + [sym_preproc_nullable] = STATE(2039), + [sym_preproc_error] = STATE(2039), + [sym_preproc_warning] = STATE(2039), + [sym_preproc_define] = STATE(2039), + [sym_preproc_undef] = STATE(2039), + [ts_builtin_sym_end] = ACTIONS(3201), + [sym__identifier_token] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_alias] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_ref] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_delegate] = ACTIONS(3199), + [anon_sym_record] = ACTIONS(3199), + [anon_sym_abstract] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_file] = ACTIONS(3199), + [anon_sym_fixed] = ACTIONS(3199), + [anon_sym_internal] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_override] = ACTIONS(3199), + [anon_sym_partial] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_protected] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_readonly] = ACTIONS(3199), + [anon_sym_required] = ACTIONS(3199), + [anon_sym_sealed] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_where] = ACTIONS(3199), + [anon_sym_notnull] = ACTIONS(3199), + [anon_sym_unmanaged] = ACTIONS(3199), + [anon_sym_checked] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_this] = ACTIONS(3199), + [anon_sym_scoped] = ACTIONS(3199), + [anon_sym_base] = ACTIONS(3199), + [anon_sym_var] = ACTIONS(3199), + [sym_predefined_type] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_unchecked] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_when] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_foreach] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_into] = ACTIONS(3199), + [anon_sym_join] = ACTIONS(3199), + [anon_sym_on] = ACTIONS(3199), + [anon_sym_equals] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3199), + [anon_sym_orderby] = ACTIONS(3199), + [anon_sym_ascending] = ACTIONS(3199), + [anon_sym_descending] = ACTIONS(3199), + [anon_sym_group] = ACTIONS(3199), + [anon_sym_by] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_stackalloc] = ACTIONS(3199), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym_typeof] = ACTIONS(3199), + [anon_sym___makeref] = ACTIONS(3199), + [anon_sym___reftype] = ACTIONS(3199), + [anon_sym___refvalue] = ACTIONS(3199), + [sym_null_literal] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(3201), + [sym_integer_literal] = ACTIONS(3199), + [sym_real_literal] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_verbatim_string_literal] = ACTIONS(3201), + [aux_sym_preproc_if_token1] = ACTIONS(3201), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3201), + [sym_interpolation_verbatim_start] = ACTIONS(3201), + [sym_interpolation_raw_start] = ACTIONS(3201), + [sym_raw_string_start] = ACTIONS(3201), }, - [2062] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5832), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(2062), - [sym_preproc_endregion] = STATE(2062), - [sym_preproc_line] = STATE(2062), - [sym_preproc_pragma] = STATE(2062), - [sym_preproc_nullable] = STATE(2062), - [sym_preproc_error] = STATE(2062), - [sym_preproc_warning] = STATE(2062), - [sym_preproc_define] = STATE(2062), - [sym_preproc_undef] = STATE(2062), + [2040] = { + [sym_preproc_region] = STATE(2040), + [sym_preproc_endregion] = STATE(2040), + [sym_preproc_line] = STATE(2040), + [sym_preproc_pragma] = STATE(2040), + [sym_preproc_nullable] = STATE(2040), + [sym_preproc_error] = STATE(2040), + [sym_preproc_warning] = STATE(2040), + [sym_preproc_define] = STATE(2040), + [sym_preproc_undef] = STATE(2040), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym__identifier_token] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_alias] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_unsafe] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_ref] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_delegate] = ACTIONS(3231), + [anon_sym_record] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_file] = ACTIONS(3231), + [anon_sym_fixed] = ACTIONS(3231), + [anon_sym_internal] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_partial] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_required] = ACTIONS(3231), + [anon_sym_sealed] = ACTIONS(3231), + [anon_sym_virtual] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_where] = ACTIONS(3231), + [anon_sym_notnull] = ACTIONS(3231), + [anon_sym_unmanaged] = ACTIONS(3231), + [anon_sym_checked] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_this] = ACTIONS(3231), + [anon_sym_scoped] = ACTIONS(3231), + [anon_sym_base] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [sym_predefined_type] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_unchecked] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_lock] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_when] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_foreach] = ACTIONS(3231), + [anon_sym_goto] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_into] = ACTIONS(3231), + [anon_sym_join] = ACTIONS(3231), + [anon_sym_on] = ACTIONS(3231), + [anon_sym_equals] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_orderby] = ACTIONS(3231), + [anon_sym_ascending] = ACTIONS(3231), + [anon_sym_descending] = ACTIONS(3231), + [anon_sym_group] = ACTIONS(3231), + [anon_sym_by] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_stackalloc] = ACTIONS(3231), + [anon_sym_sizeof] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym___makeref] = ACTIONS(3231), + [anon_sym___reftype] = ACTIONS(3231), + [anon_sym___refvalue] = ACTIONS(3231), + [sym_null_literal] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3233), + [sym_integer_literal] = ACTIONS(3231), + [sym_real_literal] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [sym_verbatim_string_literal] = ACTIONS(3233), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3233), + [sym_interpolation_verbatim_start] = ACTIONS(3233), + [sym_interpolation_raw_start] = ACTIONS(3233), + [sym_raw_string_start] = ACTIONS(3233), + }, + [2041] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6180), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5841), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(2041), + [sym_preproc_endregion] = STATE(2041), + [sym_preproc_line] = STATE(2041), + [sym_preproc_pragma] = STATE(2041), + [sym_preproc_nullable] = STATE(2041), + [sym_preproc_error] = STATE(2041), + [sym_preproc_warning] = STATE(2041), + [sym_preproc_define] = STATE(2041), + [sym_preproc_undef] = STATE(2041), [sym__identifier_token] = ACTIONS(3453), [anon_sym_alias] = ACTIONS(3456), [anon_sym_SEMI] = ACTIONS(3459), @@ -384965,118 +382333,1388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2063] = { - [sym_preproc_region] = STATE(2063), - [sym_preproc_endregion] = STATE(2063), - [sym_preproc_line] = STATE(2063), - [sym_preproc_pragma] = STATE(2063), - [sym_preproc_nullable] = STATE(2063), - [sym_preproc_error] = STATE(2063), - [sym_preproc_warning] = STATE(2063), - [sym_preproc_define] = STATE(2063), - [sym_preproc_undef] = STATE(2063), - [ts_builtin_sym_end] = ACTIONS(3345), - [sym__identifier_token] = ACTIONS(3343), - [anon_sym_extern] = ACTIONS(3343), - [anon_sym_alias] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_global] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_ref] = ACTIONS(3343), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_delegate] = ACTIONS(3343), - [anon_sym_record] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_file] = ACTIONS(3343), - [anon_sym_fixed] = ACTIONS(3343), - [anon_sym_internal] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_partial] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_sealed] = ACTIONS(3343), - [anon_sym_virtual] = ACTIONS(3343), - [anon_sym_volatile] = ACTIONS(3343), - [anon_sym_where] = ACTIONS(3343), - [anon_sym_notnull] = ACTIONS(3343), - [anon_sym_unmanaged] = ACTIONS(3343), - [anon_sym_checked] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_this] = ACTIONS(3343), - [anon_sym_scoped] = ACTIONS(3343), - [anon_sym_base] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [sym_predefined_type] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_unchecked] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_when] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_foreach] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_into] = ACTIONS(3343), - [anon_sym_join] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_equals] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_orderby] = ACTIONS(3343), - [anon_sym_ascending] = ACTIONS(3343), - [anon_sym_descending] = ACTIONS(3343), - [anon_sym_group] = ACTIONS(3343), - [anon_sym_by] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_stackalloc] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym___makeref] = ACTIONS(3343), - [anon_sym___reftype] = ACTIONS(3343), - [anon_sym___refvalue] = ACTIONS(3343), - [sym_null_literal] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3345), - [sym_integer_literal] = ACTIONS(3343), - [sym_real_literal] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [sym_verbatim_string_literal] = ACTIONS(3345), - [aux_sym_preproc_if_token1] = ACTIONS(3345), + [2042] = { + [sym_preproc_region] = STATE(2042), + [sym_preproc_endregion] = STATE(2042), + [sym_preproc_line] = STATE(2042), + [sym_preproc_pragma] = STATE(2042), + [sym_preproc_nullable] = STATE(2042), + [sym_preproc_error] = STATE(2042), + [sym_preproc_warning] = STATE(2042), + [sym_preproc_define] = STATE(2042), + [sym_preproc_undef] = STATE(2042), + [ts_builtin_sym_end] = ACTIONS(3225), + [sym__identifier_token] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym_alias] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_unsafe] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_ref] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_delegate] = ACTIONS(3223), + [anon_sym_record] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_file] = ACTIONS(3223), + [anon_sym_fixed] = ACTIONS(3223), + [anon_sym_internal] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_partial] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_required] = ACTIONS(3223), + [anon_sym_sealed] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_where] = ACTIONS(3223), + [anon_sym_notnull] = ACTIONS(3223), + [anon_sym_unmanaged] = ACTIONS(3223), + [anon_sym_checked] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3223), + [anon_sym_false] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_this] = ACTIONS(3223), + [anon_sym_scoped] = ACTIONS(3223), + [anon_sym_base] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [sym_predefined_type] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_unchecked] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_lock] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_when] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_foreach] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_DOT_DOT] = ACTIONS(3225), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_into] = ACTIONS(3223), + [anon_sym_join] = ACTIONS(3223), + [anon_sym_on] = ACTIONS(3223), + [anon_sym_equals] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_orderby] = ACTIONS(3223), + [anon_sym_ascending] = ACTIONS(3223), + [anon_sym_descending] = ACTIONS(3223), + [anon_sym_group] = ACTIONS(3223), + [anon_sym_by] = ACTIONS(3223), + [anon_sym_select] = ACTIONS(3223), + [anon_sym_stackalloc] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym___makeref] = ACTIONS(3223), + [anon_sym___reftype] = ACTIONS(3223), + [anon_sym___refvalue] = ACTIONS(3223), + [sym_null_literal] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3225), + [sym_integer_literal] = ACTIONS(3223), + [sym_real_literal] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_verbatim_string_literal] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3225), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3225), + [sym_interpolation_verbatim_start] = ACTIONS(3225), + [sym_interpolation_raw_start] = ACTIONS(3225), + [sym_raw_string_start] = ACTIONS(3225), + }, + [2043] = { + [sym_preproc_region] = STATE(2043), + [sym_preproc_endregion] = STATE(2043), + [sym_preproc_line] = STATE(2043), + [sym_preproc_pragma] = STATE(2043), + [sym_preproc_nullable] = STATE(2043), + [sym_preproc_error] = STATE(2043), + [sym_preproc_warning] = STATE(2043), + [sym_preproc_define] = STATE(2043), + [sym_preproc_undef] = STATE(2043), + [ts_builtin_sym_end] = ACTIONS(3325), + [sym__identifier_token] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_alias] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_unsafe] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_ref] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_delegate] = ACTIONS(3323), + [anon_sym_record] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_file] = ACTIONS(3323), + [anon_sym_fixed] = ACTIONS(3323), + [anon_sym_internal] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_partial] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_required] = ACTIONS(3323), + [anon_sym_sealed] = ACTIONS(3323), + [anon_sym_virtual] = ACTIONS(3323), + [anon_sym_volatile] = ACTIONS(3323), + [anon_sym_where] = ACTIONS(3323), + [anon_sym_notnull] = ACTIONS(3323), + [anon_sym_unmanaged] = ACTIONS(3323), + [anon_sym_checked] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_scoped] = ACTIONS(3323), + [anon_sym_base] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [sym_predefined_type] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_unchecked] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_lock] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_when] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_foreach] = ACTIONS(3323), + [anon_sym_goto] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_into] = ACTIONS(3323), + [anon_sym_join] = ACTIONS(3323), + [anon_sym_on] = ACTIONS(3323), + [anon_sym_equals] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_orderby] = ACTIONS(3323), + [anon_sym_ascending] = ACTIONS(3323), + [anon_sym_descending] = ACTIONS(3323), + [anon_sym_group] = ACTIONS(3323), + [anon_sym_by] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_stackalloc] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym___makeref] = ACTIONS(3323), + [anon_sym___reftype] = ACTIONS(3323), + [anon_sym___refvalue] = ACTIONS(3323), + [sym_null_literal] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3325), + [sym_integer_literal] = ACTIONS(3323), + [sym_real_literal] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [sym_verbatim_string_literal] = ACTIONS(3325), + [aux_sym_preproc_if_token1] = ACTIONS(3325), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), + }, + [2044] = { + [sym_preproc_region] = STATE(2044), + [sym_preproc_endregion] = STATE(2044), + [sym_preproc_line] = STATE(2044), + [sym_preproc_pragma] = STATE(2044), + [sym_preproc_nullable] = STATE(2044), + [sym_preproc_error] = STATE(2044), + [sym_preproc_warning] = STATE(2044), + [sym_preproc_define] = STATE(2044), + [sym_preproc_undef] = STATE(2044), + [ts_builtin_sym_end] = ACTIONS(3205), + [sym__identifier_token] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_alias] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_global] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_namespace] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_ref] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_delegate] = ACTIONS(3203), + [anon_sym_record] = ACTIONS(3203), + [anon_sym_abstract] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_file] = ACTIONS(3203), + [anon_sym_fixed] = ACTIONS(3203), + [anon_sym_internal] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_override] = ACTIONS(3203), + [anon_sym_partial] = ACTIONS(3203), + [anon_sym_private] = ACTIONS(3203), + [anon_sym_protected] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_readonly] = ACTIONS(3203), + [anon_sym_required] = ACTIONS(3203), + [anon_sym_sealed] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(3203), + [anon_sym_unmanaged] = ACTIONS(3203), + [anon_sym_checked] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_this] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(3203), + [anon_sym_base] = ACTIONS(3203), + [anon_sym_var] = ACTIONS(3203), + [sym_predefined_type] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_unchecked] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(3203), + [anon_sym_await] = ACTIONS(3203), + [anon_sym_foreach] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_into] = ACTIONS(3203), + [anon_sym_join] = ACTIONS(3203), + [anon_sym_on] = ACTIONS(3203), + [anon_sym_equals] = ACTIONS(3203), + [anon_sym_let] = ACTIONS(3203), + [anon_sym_orderby] = ACTIONS(3203), + [anon_sym_ascending] = ACTIONS(3203), + [anon_sym_descending] = ACTIONS(3203), + [anon_sym_group] = ACTIONS(3203), + [anon_sym_by] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_stackalloc] = ACTIONS(3203), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym_typeof] = ACTIONS(3203), + [anon_sym___makeref] = ACTIONS(3203), + [anon_sym___reftype] = ACTIONS(3203), + [anon_sym___refvalue] = ACTIONS(3203), + [sym_null_literal] = ACTIONS(3203), + [anon_sym_SQUOTE] = ACTIONS(3205), + [sym_integer_literal] = ACTIONS(3203), + [sym_real_literal] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_verbatim_string_literal] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3205), + [sym_interpolation_verbatim_start] = ACTIONS(3205), + [sym_interpolation_raw_start] = ACTIONS(3205), + [sym_raw_string_start] = ACTIONS(3205), + }, + [2045] = { + [sym_preproc_region] = STATE(2045), + [sym_preproc_endregion] = STATE(2045), + [sym_preproc_line] = STATE(2045), + [sym_preproc_pragma] = STATE(2045), + [sym_preproc_nullable] = STATE(2045), + [sym_preproc_error] = STATE(2045), + [sym_preproc_warning] = STATE(2045), + [sym_preproc_define] = STATE(2045), + [sym_preproc_undef] = STATE(2045), + [ts_builtin_sym_end] = ACTIONS(3179), + [sym__identifier_token] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_alias] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_namespace] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_delegate] = ACTIONS(3177), + [anon_sym_record] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_file] = ACTIONS(3177), + [anon_sym_fixed] = ACTIONS(3177), + [anon_sym_internal] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_partial] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_protected] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_required] = ACTIONS(3177), + [anon_sym_sealed] = ACTIONS(3177), + [anon_sym_virtual] = ACTIONS(3177), + [anon_sym_volatile] = ACTIONS(3177), + [anon_sym_where] = ACTIONS(3177), + [anon_sym_notnull] = ACTIONS(3177), + [anon_sym_unmanaged] = ACTIONS(3177), + [anon_sym_checked] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_scoped] = ACTIONS(3177), + [anon_sym_base] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [sym_predefined_type] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_unchecked] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_default] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_when] = ACTIONS(3177), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_foreach] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_into] = ACTIONS(3177), + [anon_sym_join] = ACTIONS(3177), + [anon_sym_on] = ACTIONS(3177), + [anon_sym_equals] = ACTIONS(3177), + [anon_sym_let] = ACTIONS(3177), + [anon_sym_orderby] = ACTIONS(3177), + [anon_sym_ascending] = ACTIONS(3177), + [anon_sym_descending] = ACTIONS(3177), + [anon_sym_group] = ACTIONS(3177), + [anon_sym_by] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_stackalloc] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [anon_sym_typeof] = ACTIONS(3177), + [anon_sym___makeref] = ACTIONS(3177), + [anon_sym___reftype] = ACTIONS(3177), + [anon_sym___refvalue] = ACTIONS(3177), + [sym_null_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3179), + [sym_integer_literal] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [sym_verbatim_string_literal] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), + }, + [2046] = { + [sym_preproc_region] = STATE(2046), + [sym_preproc_endregion] = STATE(2046), + [sym_preproc_line] = STATE(2046), + [sym_preproc_pragma] = STATE(2046), + [sym_preproc_nullable] = STATE(2046), + [sym_preproc_error] = STATE(2046), + [sym_preproc_warning] = STATE(2046), + [sym_preproc_define] = STATE(2046), + [sym_preproc_undef] = STATE(2046), + [ts_builtin_sym_end] = ACTIONS(3221), + [sym__identifier_token] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_alias] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_delegate] = ACTIONS(3219), + [anon_sym_record] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_file] = ACTIONS(3219), + [anon_sym_fixed] = ACTIONS(3219), + [anon_sym_internal] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_partial] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_required] = ACTIONS(3219), + [anon_sym_sealed] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_where] = ACTIONS(3219), + [anon_sym_notnull] = ACTIONS(3219), + [anon_sym_unmanaged] = ACTIONS(3219), + [anon_sym_checked] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_this] = ACTIONS(3219), + [anon_sym_scoped] = ACTIONS(3219), + [anon_sym_base] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [sym_predefined_type] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_unchecked] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_when] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_foreach] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_from] = ACTIONS(3219), + [anon_sym_into] = ACTIONS(3219), + [anon_sym_join] = ACTIONS(3219), + [anon_sym_on] = ACTIONS(3219), + [anon_sym_equals] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_orderby] = ACTIONS(3219), + [anon_sym_ascending] = ACTIONS(3219), + [anon_sym_descending] = ACTIONS(3219), + [anon_sym_group] = ACTIONS(3219), + [anon_sym_by] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_stackalloc] = ACTIONS(3219), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym___makeref] = ACTIONS(3219), + [anon_sym___reftype] = ACTIONS(3219), + [anon_sym___refvalue] = ACTIONS(3219), + [sym_null_literal] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3221), + [sym_integer_literal] = ACTIONS(3219), + [sym_real_literal] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_verbatim_string_literal] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3221), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3221), + [sym_interpolation_verbatim_start] = ACTIONS(3221), + [sym_interpolation_raw_start] = ACTIONS(3221), + [sym_raw_string_start] = ACTIONS(3221), + }, + [2047] = { + [sym_preproc_region] = STATE(2047), + [sym_preproc_endregion] = STATE(2047), + [sym_preproc_line] = STATE(2047), + [sym_preproc_pragma] = STATE(2047), + [sym_preproc_nullable] = STATE(2047), + [sym_preproc_error] = STATE(2047), + [sym_preproc_warning] = STATE(2047), + [sym_preproc_define] = STATE(2047), + [sym_preproc_undef] = STATE(2047), + [ts_builtin_sym_end] = ACTIONS(3209), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_global] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_unsafe] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_ref] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_delegate] = ACTIONS(3207), + [anon_sym_record] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_file] = ACTIONS(3207), + [anon_sym_fixed] = ACTIONS(3207), + [anon_sym_internal] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_partial] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_required] = ACTIONS(3207), + [anon_sym_sealed] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_where] = ACTIONS(3207), + [anon_sym_notnull] = ACTIONS(3207), + [anon_sym_unmanaged] = ACTIONS(3207), + [anon_sym_checked] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_this] = ACTIONS(3207), + [anon_sym_scoped] = ACTIONS(3207), + [anon_sym_base] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [sym_predefined_type] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_unchecked] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_lock] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_when] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_foreach] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_DOT_DOT] = ACTIONS(3209), + [anon_sym_from] = ACTIONS(3207), + [anon_sym_into] = ACTIONS(3207), + [anon_sym_join] = ACTIONS(3207), + [anon_sym_on] = ACTIONS(3207), + [anon_sym_equals] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_orderby] = ACTIONS(3207), + [anon_sym_ascending] = ACTIONS(3207), + [anon_sym_descending] = ACTIONS(3207), + [anon_sym_group] = ACTIONS(3207), + [anon_sym_by] = ACTIONS(3207), + [anon_sym_select] = ACTIONS(3207), + [anon_sym_stackalloc] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym___makeref] = ACTIONS(3207), + [anon_sym___reftype] = ACTIONS(3207), + [anon_sym___refvalue] = ACTIONS(3207), + [sym_null_literal] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3209), + [sym_integer_literal] = ACTIONS(3207), + [sym_real_literal] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_verbatim_string_literal] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3209), + [sym_interpolation_verbatim_start] = ACTIONS(3209), + [sym_interpolation_raw_start] = ACTIONS(3209), + [sym_raw_string_start] = ACTIONS(3209), + }, + [2048] = { + [sym_preproc_region] = STATE(2048), + [sym_preproc_endregion] = STATE(2048), + [sym_preproc_line] = STATE(2048), + [sym_preproc_pragma] = STATE(2048), + [sym_preproc_nullable] = STATE(2048), + [sym_preproc_error] = STATE(2048), + [sym_preproc_warning] = STATE(2048), + [sym_preproc_define] = STATE(2048), + [sym_preproc_undef] = STATE(2048), + [ts_builtin_sym_end] = ACTIONS(3183), + [sym__identifier_token] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_alias] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_ref] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_delegate] = ACTIONS(3181), + [anon_sym_record] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_async] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_file] = ACTIONS(3181), + [anon_sym_fixed] = ACTIONS(3181), + [anon_sym_internal] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_override] = ACTIONS(3181), + [anon_sym_partial] = ACTIONS(3181), + [anon_sym_private] = ACTIONS(3181), + [anon_sym_protected] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_required] = ACTIONS(3181), + [anon_sym_sealed] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_where] = ACTIONS(3181), + [anon_sym_notnull] = ACTIONS(3181), + [anon_sym_unmanaged] = ACTIONS(3181), + [anon_sym_checked] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_this] = ACTIONS(3181), + [anon_sym_scoped] = ACTIONS(3181), + [anon_sym_base] = ACTIONS(3181), + [anon_sym_var] = ACTIONS(3181), + [sym_predefined_type] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_unchecked] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_when] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3181), + [anon_sym_foreach] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_DOT_DOT] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3181), + [anon_sym_into] = ACTIONS(3181), + [anon_sym_join] = ACTIONS(3181), + [anon_sym_on] = ACTIONS(3181), + [anon_sym_equals] = ACTIONS(3181), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_orderby] = ACTIONS(3181), + [anon_sym_ascending] = ACTIONS(3181), + [anon_sym_descending] = ACTIONS(3181), + [anon_sym_group] = ACTIONS(3181), + [anon_sym_by] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_stackalloc] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym_typeof] = ACTIONS(3181), + [anon_sym___makeref] = ACTIONS(3181), + [anon_sym___reftype] = ACTIONS(3181), + [anon_sym___refvalue] = ACTIONS(3181), + [sym_null_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3183), + [sym_integer_literal] = ACTIONS(3181), + [sym_real_literal] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_verbatim_string_literal] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), + }, + [2049] = { + [sym_preproc_region] = STATE(2049), + [sym_preproc_endregion] = STATE(2049), + [sym_preproc_line] = STATE(2049), + [sym_preproc_pragma] = STATE(2049), + [sym_preproc_nullable] = STATE(2049), + [sym_preproc_error] = STATE(2049), + [sym_preproc_warning] = STATE(2049), + [sym_preproc_define] = STATE(2049), + [sym_preproc_undef] = STATE(2049), + [ts_builtin_sym_end] = ACTIONS(3289), + [sym__identifier_token] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_alias] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_ref] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_delegate] = ACTIONS(3287), + [anon_sym_record] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_file] = ACTIONS(3287), + [anon_sym_fixed] = ACTIONS(3287), + [anon_sym_internal] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_partial] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_required] = ACTIONS(3287), + [anon_sym_sealed] = ACTIONS(3287), + [anon_sym_virtual] = ACTIONS(3287), + [anon_sym_volatile] = ACTIONS(3287), + [anon_sym_where] = ACTIONS(3287), + [anon_sym_notnull] = ACTIONS(3287), + [anon_sym_unmanaged] = ACTIONS(3287), + [anon_sym_checked] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_this] = ACTIONS(3287), + [anon_sym_scoped] = ACTIONS(3287), + [anon_sym_base] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [sym_predefined_type] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_unchecked] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_lock] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_when] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_foreach] = ACTIONS(3287), + [anon_sym_goto] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3289), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_into] = ACTIONS(3287), + [anon_sym_join] = ACTIONS(3287), + [anon_sym_on] = ACTIONS(3287), + [anon_sym_equals] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_orderby] = ACTIONS(3287), + [anon_sym_ascending] = ACTIONS(3287), + [anon_sym_descending] = ACTIONS(3287), + [anon_sym_group] = ACTIONS(3287), + [anon_sym_by] = ACTIONS(3287), + [anon_sym_select] = ACTIONS(3287), + [anon_sym_stackalloc] = ACTIONS(3287), + [anon_sym_sizeof] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym___makeref] = ACTIONS(3287), + [anon_sym___reftype] = ACTIONS(3287), + [anon_sym___refvalue] = ACTIONS(3287), + [sym_null_literal] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3289), + [sym_integer_literal] = ACTIONS(3287), + [sym_real_literal] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [sym_verbatim_string_literal] = ACTIONS(3289), + [aux_sym_preproc_if_token1] = ACTIONS(3289), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3289), + [sym_interpolation_verbatim_start] = ACTIONS(3289), + [sym_interpolation_raw_start] = ACTIONS(3289), + [sym_raw_string_start] = ACTIONS(3289), + }, + [2050] = { + [sym_preproc_region] = STATE(2050), + [sym_preproc_endregion] = STATE(2050), + [sym_preproc_line] = STATE(2050), + [sym_preproc_pragma] = STATE(2050), + [sym_preproc_nullable] = STATE(2050), + [sym_preproc_error] = STATE(2050), + [sym_preproc_warning] = STATE(2050), + [sym_preproc_define] = STATE(2050), + [sym_preproc_undef] = STATE(2050), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_record] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), + }, + [2051] = { + [sym_preproc_region] = STATE(2051), + [sym_preproc_endregion] = STATE(2051), + [sym_preproc_line] = STATE(2051), + [sym_preproc_pragma] = STATE(2051), + [sym_preproc_nullable] = STATE(2051), + [sym_preproc_error] = STATE(2051), + [sym_preproc_warning] = STATE(2051), + [sym_preproc_define] = STATE(2051), + [sym_preproc_undef] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(3293), + [sym__identifier_token] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_alias] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_ref] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_delegate] = ACTIONS(3291), + [anon_sym_record] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_file] = ACTIONS(3291), + [anon_sym_fixed] = ACTIONS(3291), + [anon_sym_internal] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_partial] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_required] = ACTIONS(3291), + [anon_sym_sealed] = ACTIONS(3291), + [anon_sym_virtual] = ACTIONS(3291), + [anon_sym_volatile] = ACTIONS(3291), + [anon_sym_where] = ACTIONS(3291), + [anon_sym_notnull] = ACTIONS(3291), + [anon_sym_unmanaged] = ACTIONS(3291), + [anon_sym_checked] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_this] = ACTIONS(3291), + [anon_sym_scoped] = ACTIONS(3291), + [anon_sym_base] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [sym_predefined_type] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_unchecked] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_when] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_foreach] = ACTIONS(3291), + [anon_sym_goto] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_into] = ACTIONS(3291), + [anon_sym_join] = ACTIONS(3291), + [anon_sym_on] = ACTIONS(3291), + [anon_sym_equals] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_orderby] = ACTIONS(3291), + [anon_sym_ascending] = ACTIONS(3291), + [anon_sym_descending] = ACTIONS(3291), + [anon_sym_group] = ACTIONS(3291), + [anon_sym_by] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_stackalloc] = ACTIONS(3291), + [anon_sym_sizeof] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym___makeref] = ACTIONS(3291), + [anon_sym___reftype] = ACTIONS(3291), + [anon_sym___refvalue] = ACTIONS(3291), + [sym_null_literal] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3293), + [sym_integer_literal] = ACTIONS(3291), + [sym_real_literal] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [sym_verbatim_string_literal] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3293), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3293), + [sym_interpolation_verbatim_start] = ACTIONS(3293), + [sym_interpolation_raw_start] = ACTIONS(3293), + [sym_raw_string_start] = ACTIONS(3293), + }, + [2052] = { + [sym_catch_clause] = STATE(2099), + [sym_finally_clause] = STATE(2108), + [sym_preproc_region] = STATE(2052), + [sym_preproc_endregion] = STATE(2052), + [sym_preproc_line] = STATE(2052), + [sym_preproc_pragma] = STATE(2052), + [sym_preproc_nullable] = STATE(2052), + [sym_preproc_error] = STATE(2052), + [sym_preproc_warning] = STATE(2052), + [sym_preproc_define] = STATE(2052), + [sym_preproc_undef] = STATE(2052), + [aux_sym_try_statement_repeat1] = STATE(2083), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_case] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_catch] = ACTIONS(3449), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3451), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385087,123 +383725,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3345), - [sym_interpolation_verbatim_start] = ACTIONS(3345), - [sym_interpolation_raw_start] = ACTIONS(3345), - [sym_raw_string_start] = ACTIONS(3345), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), }, - [2064] = { - [sym_preproc_region] = STATE(2064), - [sym_preproc_endregion] = STATE(2064), - [sym_preproc_line] = STATE(2064), - [sym_preproc_pragma] = STATE(2064), - [sym_preproc_nullable] = STATE(2064), - [sym_preproc_error] = STATE(2064), - [sym_preproc_warning] = STATE(2064), - [sym_preproc_define] = STATE(2064), - [sym_preproc_undef] = STATE(2064), - [ts_builtin_sym_end] = ACTIONS(3289), - [sym__identifier_token] = ACTIONS(3287), - [anon_sym_extern] = ACTIONS(3287), - [anon_sym_alias] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_global] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_ref] = ACTIONS(3287), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_delegate] = ACTIONS(3287), - [anon_sym_record] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_file] = ACTIONS(3287), - [anon_sym_fixed] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_partial] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_sealed] = ACTIONS(3287), - [anon_sym_virtual] = ACTIONS(3287), - [anon_sym_volatile] = ACTIONS(3287), - [anon_sym_where] = ACTIONS(3287), - [anon_sym_notnull] = ACTIONS(3287), - [anon_sym_unmanaged] = ACTIONS(3287), - [anon_sym_checked] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [anon_sym_true] = ACTIONS(3287), - [anon_sym_false] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_this] = ACTIONS(3287), - [anon_sym_scoped] = ACTIONS(3287), - [anon_sym_base] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [sym_predefined_type] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_unchecked] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_when] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_foreach] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_DOT_DOT] = ACTIONS(3289), - [anon_sym_from] = ACTIONS(3287), - [anon_sym_into] = ACTIONS(3287), - [anon_sym_join] = ACTIONS(3287), - [anon_sym_on] = ACTIONS(3287), - [anon_sym_equals] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_orderby] = ACTIONS(3287), - [anon_sym_ascending] = ACTIONS(3287), - [anon_sym_descending] = ACTIONS(3287), - [anon_sym_group] = ACTIONS(3287), - [anon_sym_by] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_stackalloc] = ACTIONS(3287), - [anon_sym_sizeof] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym___makeref] = ACTIONS(3287), - [anon_sym___reftype] = ACTIONS(3287), - [anon_sym___refvalue] = ACTIONS(3287), - [sym_null_literal] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3289), - [sym_integer_literal] = ACTIONS(3287), - [sym_real_literal] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [sym_verbatim_string_literal] = ACTIONS(3289), - [aux_sym_preproc_if_token1] = ACTIONS(3289), + [2053] = { + [sym_preproc_region] = STATE(2053), + [sym_preproc_endregion] = STATE(2053), + [sym_preproc_line] = STATE(2053), + [sym_preproc_pragma] = STATE(2053), + [sym_preproc_nullable] = STATE(2053), + [sym_preproc_error] = STATE(2053), + [sym_preproc_warning] = STATE(2053), + [sym_preproc_define] = STATE(2053), + [sym_preproc_undef] = STATE(2053), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym__identifier_token] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_alias] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_ref] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_delegate] = ACTIONS(3227), + [anon_sym_record] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_file] = ACTIONS(3227), + [anon_sym_fixed] = ACTIONS(3227), + [anon_sym_internal] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_partial] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_required] = ACTIONS(3227), + [anon_sym_sealed] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_where] = ACTIONS(3227), + [anon_sym_notnull] = ACTIONS(3227), + [anon_sym_unmanaged] = ACTIONS(3227), + [anon_sym_checked] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_this] = ACTIONS(3227), + [anon_sym_scoped] = ACTIONS(3227), + [anon_sym_base] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [sym_predefined_type] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_unchecked] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_when] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_foreach] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_into] = ACTIONS(3227), + [anon_sym_join] = ACTIONS(3227), + [anon_sym_on] = ACTIONS(3227), + [anon_sym_equals] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_orderby] = ACTIONS(3227), + [anon_sym_ascending] = ACTIONS(3227), + [anon_sym_descending] = ACTIONS(3227), + [anon_sym_group] = ACTIONS(3227), + [anon_sym_by] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_stackalloc] = ACTIONS(3227), + [anon_sym_sizeof] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym___makeref] = ACTIONS(3227), + [anon_sym___reftype] = ACTIONS(3227), + [anon_sym___refvalue] = ACTIONS(3227), + [sym_null_literal] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3229), + [sym_integer_literal] = ACTIONS(3227), + [sym_real_literal] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym_verbatim_string_literal] = ACTIONS(3229), + [aux_sym_preproc_if_token1] = ACTIONS(3229), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3229), + [sym_interpolation_verbatim_start] = ACTIONS(3229), + [sym_interpolation_raw_start] = ACTIONS(3229), + [sym_raw_string_start] = ACTIONS(3229), + }, + [2054] = { + [sym_preproc_region] = STATE(2054), + [sym_preproc_endregion] = STATE(2054), + [sym_preproc_line] = STATE(2054), + [sym_preproc_pragma] = STATE(2054), + [sym_preproc_nullable] = STATE(2054), + [sym_preproc_error] = STATE(2054), + [sym_preproc_warning] = STATE(2054), + [sym_preproc_define] = STATE(2054), + [sym_preproc_undef] = STATE(2054), + [ts_builtin_sym_end] = ACTIONS(3261), + [sym__identifier_token] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_alias] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_ref] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_delegate] = ACTIONS(3259), + [anon_sym_record] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_file] = ACTIONS(3259), + [anon_sym_fixed] = ACTIONS(3259), + [anon_sym_internal] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_partial] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_sealed] = ACTIONS(3259), + [anon_sym_virtual] = ACTIONS(3259), + [anon_sym_volatile] = ACTIONS(3259), + [anon_sym_where] = ACTIONS(3259), + [anon_sym_notnull] = ACTIONS(3259), + [anon_sym_unmanaged] = ACTIONS(3259), + [anon_sym_checked] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_this] = ACTIONS(3259), + [anon_sym_scoped] = ACTIONS(3259), + [anon_sym_base] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [sym_predefined_type] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_unchecked] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_lock] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_when] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_foreach] = ACTIONS(3259), + [anon_sym_goto] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_into] = ACTIONS(3259), + [anon_sym_join] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_equals] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_orderby] = ACTIONS(3259), + [anon_sym_ascending] = ACTIONS(3259), + [anon_sym_descending] = ACTIONS(3259), + [anon_sym_group] = ACTIONS(3259), + [anon_sym_by] = ACTIONS(3259), + [anon_sym_select] = ACTIONS(3259), + [anon_sym_stackalloc] = ACTIONS(3259), + [anon_sym_sizeof] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym___makeref] = ACTIONS(3259), + [anon_sym___reftype] = ACTIONS(3259), + [anon_sym___refvalue] = ACTIONS(3259), + [sym_null_literal] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3261), + [sym_integer_literal] = ACTIONS(3259), + [sym_real_literal] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [sym_verbatim_string_literal] = ACTIONS(3261), + [aux_sym_preproc_if_token1] = ACTIONS(3261), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3261), + [sym_interpolation_verbatim_start] = ACTIONS(3261), + [sym_interpolation_raw_start] = ACTIONS(3261), + [sym_raw_string_start] = ACTIONS(3261), + }, + [2055] = { + [sym_preproc_region] = STATE(2055), + [sym_preproc_endregion] = STATE(2055), + [sym_preproc_line] = STATE(2055), + [sym_preproc_pragma] = STATE(2055), + [sym_preproc_nullable] = STATE(2055), + [sym_preproc_error] = STATE(2055), + [sym_preproc_warning] = STATE(2055), + [sym_preproc_define] = STATE(2055), + [sym_preproc_undef] = STATE(2055), + [ts_builtin_sym_end] = ACTIONS(3253), + [sym__identifier_token] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_alias] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_ref] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_delegate] = ACTIONS(3251), + [anon_sym_record] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_file] = ACTIONS(3251), + [anon_sym_fixed] = ACTIONS(3251), + [anon_sym_internal] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_partial] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_required] = ACTIONS(3251), + [anon_sym_sealed] = ACTIONS(3251), + [anon_sym_virtual] = ACTIONS(3251), + [anon_sym_volatile] = ACTIONS(3251), + [anon_sym_where] = ACTIONS(3251), + [anon_sym_notnull] = ACTIONS(3251), + [anon_sym_unmanaged] = ACTIONS(3251), + [anon_sym_checked] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_this] = ACTIONS(3251), + [anon_sym_scoped] = ACTIONS(3251), + [anon_sym_base] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [sym_predefined_type] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_unchecked] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_lock] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_when] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_foreach] = ACTIONS(3251), + [anon_sym_goto] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_DOT_DOT] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_into] = ACTIONS(3251), + [anon_sym_join] = ACTIONS(3251), + [anon_sym_on] = ACTIONS(3251), + [anon_sym_equals] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_orderby] = ACTIONS(3251), + [anon_sym_ascending] = ACTIONS(3251), + [anon_sym_descending] = ACTIONS(3251), + [anon_sym_group] = ACTIONS(3251), + [anon_sym_by] = ACTIONS(3251), + [anon_sym_select] = ACTIONS(3251), + [anon_sym_stackalloc] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym___makeref] = ACTIONS(3251), + [anon_sym___reftype] = ACTIONS(3251), + [anon_sym___refvalue] = ACTIONS(3251), + [sym_null_literal] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3253), + [sym_integer_literal] = ACTIONS(3251), + [sym_real_literal] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [sym_verbatim_string_literal] = ACTIONS(3253), + [aux_sym_preproc_if_token1] = ACTIONS(3253), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3253), + [sym_interpolation_verbatim_start] = ACTIONS(3253), + [sym_interpolation_raw_start] = ACTIONS(3253), + [sym_raw_string_start] = ACTIONS(3253), + }, + [2056] = { + [sym_preproc_region] = STATE(2056), + [sym_preproc_endregion] = STATE(2056), + [sym_preproc_line] = STATE(2056), + [sym_preproc_pragma] = STATE(2056), + [sym_preproc_nullable] = STATE(2056), + [sym_preproc_error] = STATE(2056), + [sym_preproc_warning] = STATE(2056), + [sym_preproc_define] = STATE(2056), + [sym_preproc_undef] = STATE(2056), + [ts_builtin_sym_end] = ACTIONS(3245), + [sym__identifier_token] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_alias] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_unsafe] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_ref] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_delegate] = ACTIONS(3243), + [anon_sym_record] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_file] = ACTIONS(3243), + [anon_sym_fixed] = ACTIONS(3243), + [anon_sym_internal] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_partial] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_required] = ACTIONS(3243), + [anon_sym_sealed] = ACTIONS(3243), + [anon_sym_virtual] = ACTIONS(3243), + [anon_sym_volatile] = ACTIONS(3243), + [anon_sym_where] = ACTIONS(3243), + [anon_sym_notnull] = ACTIONS(3243), + [anon_sym_unmanaged] = ACTIONS(3243), + [anon_sym_checked] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3243), + [anon_sym_scoped] = ACTIONS(3243), + [anon_sym_base] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [sym_predefined_type] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_unchecked] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_lock] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_when] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_foreach] = ACTIONS(3243), + [anon_sym_goto] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3245), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_into] = ACTIONS(3243), + [anon_sym_join] = ACTIONS(3243), + [anon_sym_on] = ACTIONS(3243), + [anon_sym_equals] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_orderby] = ACTIONS(3243), + [anon_sym_ascending] = ACTIONS(3243), + [anon_sym_descending] = ACTIONS(3243), + [anon_sym_group] = ACTIONS(3243), + [anon_sym_by] = ACTIONS(3243), + [anon_sym_select] = ACTIONS(3243), + [anon_sym_stackalloc] = ACTIONS(3243), + [anon_sym_sizeof] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym___makeref] = ACTIONS(3243), + [anon_sym___reftype] = ACTIONS(3243), + [anon_sym___refvalue] = ACTIONS(3243), + [sym_null_literal] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3245), + [sym_integer_literal] = ACTIONS(3243), + [sym_real_literal] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [sym_verbatim_string_literal] = ACTIONS(3245), + [aux_sym_preproc_if_token1] = ACTIONS(3245), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3245), + [sym_interpolation_verbatim_start] = ACTIONS(3245), + [sym_interpolation_raw_start] = ACTIONS(3245), + [sym_raw_string_start] = ACTIONS(3245), + }, + [2057] = { + [sym_preproc_region] = STATE(2057), + [sym_preproc_endregion] = STATE(2057), + [sym_preproc_line] = STATE(2057), + [sym_preproc_pragma] = STATE(2057), + [sym_preproc_nullable] = STATE(2057), + [sym_preproc_error] = STATE(2057), + [sym_preproc_warning] = STATE(2057), + [sym_preproc_define] = STATE(2057), + [sym_preproc_undef] = STATE(2057), + [ts_builtin_sym_end] = ACTIONS(3277), + [sym__identifier_token] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_alias] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_ref] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_delegate] = ACTIONS(3275), + [anon_sym_record] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_file] = ACTIONS(3275), + [anon_sym_fixed] = ACTIONS(3275), + [anon_sym_internal] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_partial] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_required] = ACTIONS(3275), + [anon_sym_sealed] = ACTIONS(3275), + [anon_sym_virtual] = ACTIONS(3275), + [anon_sym_volatile] = ACTIONS(3275), + [anon_sym_where] = ACTIONS(3275), + [anon_sym_notnull] = ACTIONS(3275), + [anon_sym_unmanaged] = ACTIONS(3275), + [anon_sym_checked] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_this] = ACTIONS(3275), + [anon_sym_scoped] = ACTIONS(3275), + [anon_sym_base] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [sym_predefined_type] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_unchecked] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_when] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_foreach] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_into] = ACTIONS(3275), + [anon_sym_join] = ACTIONS(3275), + [anon_sym_on] = ACTIONS(3275), + [anon_sym_equals] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_orderby] = ACTIONS(3275), + [anon_sym_ascending] = ACTIONS(3275), + [anon_sym_descending] = ACTIONS(3275), + [anon_sym_group] = ACTIONS(3275), + [anon_sym_by] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_stackalloc] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym___makeref] = ACTIONS(3275), + [anon_sym___reftype] = ACTIONS(3275), + [anon_sym___refvalue] = ACTIONS(3275), + [sym_null_literal] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3277), + [sym_integer_literal] = ACTIONS(3275), + [sym_real_literal] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [sym_verbatim_string_literal] = ACTIONS(3277), + [aux_sym_preproc_if_token1] = ACTIONS(3277), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3277), + [sym_interpolation_verbatim_start] = ACTIONS(3277), + [sym_interpolation_raw_start] = ACTIONS(3277), + [sym_raw_string_start] = ACTIONS(3277), + }, + [2058] = { + [sym_preproc_region] = STATE(2058), + [sym_preproc_endregion] = STATE(2058), + [sym_preproc_line] = STATE(2058), + [sym_preproc_pragma] = STATE(2058), + [sym_preproc_nullable] = STATE(2058), + [sym_preproc_error] = STATE(2058), + [sym_preproc_warning] = STATE(2058), + [sym_preproc_define] = STATE(2058), + [sym_preproc_undef] = STATE(2058), + [ts_builtin_sym_end] = ACTIONS(3175), + [sym__identifier_token] = ACTIONS(3173), + [anon_sym_extern] = ACTIONS(3173), + [anon_sym_alias] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_namespace] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_delegate] = ACTIONS(3173), + [anon_sym_record] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_file] = ACTIONS(3173), + [anon_sym_fixed] = ACTIONS(3173), + [anon_sym_internal] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_partial] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_required] = ACTIONS(3173), + [anon_sym_sealed] = ACTIONS(3173), + [anon_sym_virtual] = ACTIONS(3173), + [anon_sym_volatile] = ACTIONS(3173), + [anon_sym_where] = ACTIONS(3173), + [anon_sym_notnull] = ACTIONS(3173), + [anon_sym_unmanaged] = ACTIONS(3173), + [anon_sym_checked] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3173), + [anon_sym_scoped] = ACTIONS(3173), + [anon_sym_base] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [sym_predefined_type] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_unchecked] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_when] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_foreach] = ACTIONS(3173), + [anon_sym_goto] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3175), + [anon_sym_from] = ACTIONS(3173), + [anon_sym_into] = ACTIONS(3173), + [anon_sym_join] = ACTIONS(3173), + [anon_sym_on] = ACTIONS(3173), + [anon_sym_equals] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_orderby] = ACTIONS(3173), + [anon_sym_ascending] = ACTIONS(3173), + [anon_sym_descending] = ACTIONS(3173), + [anon_sym_group] = ACTIONS(3173), + [anon_sym_by] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_stackalloc] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym___makeref] = ACTIONS(3173), + [anon_sym___reftype] = ACTIONS(3173), + [anon_sym___refvalue] = ACTIONS(3173), + [sym_null_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3175), + [sym_integer_literal] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [sym_verbatim_string_literal] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385214,21 +384487,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3289), - [sym_interpolation_verbatim_start] = ACTIONS(3289), - [sym_interpolation_raw_start] = ACTIONS(3289), - [sym_raw_string_start] = ACTIONS(3289), + [sym_interpolation_regular_start] = ACTIONS(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [2065] = { - [sym_preproc_region] = STATE(2065), - [sym_preproc_endregion] = STATE(2065), - [sym_preproc_line] = STATE(2065), - [sym_preproc_pragma] = STATE(2065), - [sym_preproc_nullable] = STATE(2065), - [sym_preproc_error] = STATE(2065), - [sym_preproc_warning] = STATE(2065), - [sym_preproc_define] = STATE(2065), - [sym_preproc_undef] = STATE(2065), + [2059] = { + [sym_preproc_region] = STATE(2059), + [sym_preproc_endregion] = STATE(2059), + [sym_preproc_line] = STATE(2059), + [sym_preproc_pragma] = STATE(2059), + [sym_preproc_nullable] = STATE(2059), + [sym_preproc_error] = STATE(2059), + [sym_preproc_warning] = STATE(2059), + [sym_preproc_define] = STATE(2059), + [sym_preproc_undef] = STATE(2059), [ts_builtin_sym_end] = ACTIONS(3329), [sym__identifier_token] = ACTIONS(3327), [anon_sym_extern] = ACTIONS(3327), @@ -385346,6 +384619,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3329), [sym_raw_string_start] = ACTIONS(3329), }, + [2060] = { + [sym_preproc_region] = STATE(2060), + [sym_preproc_endregion] = STATE(2060), + [sym_preproc_line] = STATE(2060), + [sym_preproc_pragma] = STATE(2060), + [sym_preproc_nullable] = STATE(2060), + [sym_preproc_error] = STATE(2060), + [sym_preproc_warning] = STATE(2060), + [sym_preproc_define] = STATE(2060), + [sym_preproc_undef] = STATE(2060), + [ts_builtin_sym_end] = ACTIONS(3187), + [sym__identifier_token] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_alias] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_ref] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_delegate] = ACTIONS(3185), + [anon_sym_record] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_file] = ACTIONS(3185), + [anon_sym_fixed] = ACTIONS(3185), + [anon_sym_internal] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_partial] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_required] = ACTIONS(3185), + [anon_sym_sealed] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_where] = ACTIONS(3185), + [anon_sym_notnull] = ACTIONS(3185), + [anon_sym_unmanaged] = ACTIONS(3185), + [anon_sym_checked] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_scoped] = ACTIONS(3185), + [anon_sym_base] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [sym_predefined_type] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_unchecked] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_when] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_foreach] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_DOT_DOT] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3185), + [anon_sym_into] = ACTIONS(3185), + [anon_sym_join] = ACTIONS(3185), + [anon_sym_on] = ACTIONS(3185), + [anon_sym_equals] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_orderby] = ACTIONS(3185), + [anon_sym_ascending] = ACTIONS(3185), + [anon_sym_descending] = ACTIONS(3185), + [anon_sym_group] = ACTIONS(3185), + [anon_sym_by] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_stackalloc] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym___makeref] = ACTIONS(3185), + [anon_sym___reftype] = ACTIONS(3185), + [anon_sym___refvalue] = ACTIONS(3185), + [sym_null_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3187), + [sym_integer_literal] = ACTIONS(3185), + [sym_real_literal] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_verbatim_string_literal] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), + }, + [2061] = { + [sym_preproc_region] = STATE(2061), + [sym_preproc_endregion] = STATE(2061), + [sym_preproc_line] = STATE(2061), + [sym_preproc_pragma] = STATE(2061), + [sym_preproc_nullable] = STATE(2061), + [sym_preproc_error] = STATE(2061), + [sym_preproc_warning] = STATE(2061), + [sym_preproc_define] = STATE(2061), + [sym_preproc_undef] = STATE(2061), + [ts_builtin_sym_end] = ACTIONS(3337), + [sym__identifier_token] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_alias] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_unsafe] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_ref] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_delegate] = ACTIONS(3335), + [anon_sym_record] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_file] = ACTIONS(3335), + [anon_sym_fixed] = ACTIONS(3335), + [anon_sym_internal] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_partial] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_required] = ACTIONS(3335), + [anon_sym_sealed] = ACTIONS(3335), + [anon_sym_virtual] = ACTIONS(3335), + [anon_sym_volatile] = ACTIONS(3335), + [anon_sym_where] = ACTIONS(3335), + [anon_sym_notnull] = ACTIONS(3335), + [anon_sym_unmanaged] = ACTIONS(3335), + [anon_sym_checked] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_this] = ACTIONS(3335), + [anon_sym_scoped] = ACTIONS(3335), + [anon_sym_base] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [sym_predefined_type] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_unchecked] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_lock] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_when] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_foreach] = ACTIONS(3335), + [anon_sym_goto] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_into] = ACTIONS(3335), + [anon_sym_join] = ACTIONS(3335), + [anon_sym_on] = ACTIONS(3335), + [anon_sym_equals] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_orderby] = ACTIONS(3335), + [anon_sym_ascending] = ACTIONS(3335), + [anon_sym_descending] = ACTIONS(3335), + [anon_sym_group] = ACTIONS(3335), + [anon_sym_by] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_stackalloc] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym___makeref] = ACTIONS(3335), + [anon_sym___reftype] = ACTIONS(3335), + [anon_sym___refvalue] = ACTIONS(3335), + [sym_null_literal] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3337), + [sym_integer_literal] = ACTIONS(3335), + [sym_real_literal] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [sym_verbatim_string_literal] = ACTIONS(3337), + [aux_sym_preproc_if_token1] = ACTIONS(3337), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3337), + [sym_interpolation_verbatim_start] = ACTIONS(3337), + [sym_interpolation_raw_start] = ACTIONS(3337), + [sym_raw_string_start] = ACTIONS(3337), + }, + [2062] = { + [sym_preproc_region] = STATE(2062), + [sym_preproc_endregion] = STATE(2062), + [sym_preproc_line] = STATE(2062), + [sym_preproc_pragma] = STATE(2062), + [sym_preproc_nullable] = STATE(2062), + [sym_preproc_error] = STATE(2062), + [sym_preproc_warning] = STATE(2062), + [sym_preproc_define] = STATE(2062), + [sym_preproc_undef] = STATE(2062), + [ts_builtin_sym_end] = ACTIONS(3217), + [sym__identifier_token] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_alias] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_unsafe] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_ref] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_delegate] = ACTIONS(3215), + [anon_sym_record] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_file] = ACTIONS(3215), + [anon_sym_fixed] = ACTIONS(3215), + [anon_sym_internal] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_partial] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_required] = ACTIONS(3215), + [anon_sym_sealed] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_where] = ACTIONS(3215), + [anon_sym_notnull] = ACTIONS(3215), + [anon_sym_unmanaged] = ACTIONS(3215), + [anon_sym_checked] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_this] = ACTIONS(3215), + [anon_sym_scoped] = ACTIONS(3215), + [anon_sym_base] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [sym_predefined_type] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_unchecked] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_lock] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_when] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_foreach] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_from] = ACTIONS(3215), + [anon_sym_into] = ACTIONS(3215), + [anon_sym_join] = ACTIONS(3215), + [anon_sym_on] = ACTIONS(3215), + [anon_sym_equals] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_orderby] = ACTIONS(3215), + [anon_sym_ascending] = ACTIONS(3215), + [anon_sym_descending] = ACTIONS(3215), + [anon_sym_group] = ACTIONS(3215), + [anon_sym_by] = ACTIONS(3215), + [anon_sym_select] = ACTIONS(3215), + [anon_sym_stackalloc] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym___makeref] = ACTIONS(3215), + [anon_sym___reftype] = ACTIONS(3215), + [anon_sym___refvalue] = ACTIONS(3215), + [sym_null_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3217), + [sym_integer_literal] = ACTIONS(3215), + [sym_real_literal] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_verbatim_string_literal] = ACTIONS(3217), + [aux_sym_preproc_if_token1] = ACTIONS(3217), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3217), + [sym_interpolation_verbatim_start] = ACTIONS(3217), + [sym_interpolation_raw_start] = ACTIONS(3217), + [sym_raw_string_start] = ACTIONS(3217), + }, + [2063] = { + [sym_preproc_region] = STATE(2063), + [sym_preproc_endregion] = STATE(2063), + [sym_preproc_line] = STATE(2063), + [sym_preproc_pragma] = STATE(2063), + [sym_preproc_nullable] = STATE(2063), + [sym_preproc_error] = STATE(2063), + [sym_preproc_warning] = STATE(2063), + [sym_preproc_define] = STATE(2063), + [sym_preproc_undef] = STATE(2063), + [ts_builtin_sym_end] = ACTIONS(3305), + [sym__identifier_token] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(3303), + [anon_sym_alias] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_unsafe] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_ref] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_delegate] = ACTIONS(3303), + [anon_sym_record] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_file] = ACTIONS(3303), + [anon_sym_fixed] = ACTIONS(3303), + [anon_sym_internal] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_partial] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_required] = ACTIONS(3303), + [anon_sym_sealed] = ACTIONS(3303), + [anon_sym_virtual] = ACTIONS(3303), + [anon_sym_volatile] = ACTIONS(3303), + [anon_sym_where] = ACTIONS(3303), + [anon_sym_notnull] = ACTIONS(3303), + [anon_sym_unmanaged] = ACTIONS(3303), + [anon_sym_checked] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_this] = ACTIONS(3303), + [anon_sym_scoped] = ACTIONS(3303), + [anon_sym_base] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [sym_predefined_type] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_unchecked] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_lock] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_when] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_foreach] = ACTIONS(3303), + [anon_sym_goto] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3305), + [anon_sym_from] = ACTIONS(3303), + [anon_sym_into] = ACTIONS(3303), + [anon_sym_join] = ACTIONS(3303), + [anon_sym_on] = ACTIONS(3303), + [anon_sym_equals] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_orderby] = ACTIONS(3303), + [anon_sym_ascending] = ACTIONS(3303), + [anon_sym_descending] = ACTIONS(3303), + [anon_sym_group] = ACTIONS(3303), + [anon_sym_by] = ACTIONS(3303), + [anon_sym_select] = ACTIONS(3303), + [anon_sym_stackalloc] = ACTIONS(3303), + [anon_sym_sizeof] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym___makeref] = ACTIONS(3303), + [anon_sym___reftype] = ACTIONS(3303), + [anon_sym___refvalue] = ACTIONS(3303), + [sym_null_literal] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3305), + [sym_integer_literal] = ACTIONS(3303), + [sym_real_literal] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_verbatim_string_literal] = ACTIONS(3305), + [aux_sym_preproc_if_token1] = ACTIONS(3305), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3305), + [sym_interpolation_verbatim_start] = ACTIONS(3305), + [sym_interpolation_raw_start] = ACTIONS(3305), + [sym_raw_string_start] = ACTIONS(3305), + }, + [2064] = { + [sym_preproc_region] = STATE(2064), + [sym_preproc_endregion] = STATE(2064), + [sym_preproc_line] = STATE(2064), + [sym_preproc_pragma] = STATE(2064), + [sym_preproc_nullable] = STATE(2064), + [sym_preproc_error] = STATE(2064), + [sym_preproc_warning] = STATE(2064), + [sym_preproc_define] = STATE(2064), + [sym_preproc_undef] = STATE(2064), + [ts_builtin_sym_end] = ACTIONS(3241), + [sym__identifier_token] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_alias] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_ref] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_delegate] = ACTIONS(3239), + [anon_sym_record] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_file] = ACTIONS(3239), + [anon_sym_fixed] = ACTIONS(3239), + [anon_sym_internal] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_partial] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_required] = ACTIONS(3239), + [anon_sym_sealed] = ACTIONS(3239), + [anon_sym_virtual] = ACTIONS(3239), + [anon_sym_volatile] = ACTIONS(3239), + [anon_sym_where] = ACTIONS(3239), + [anon_sym_notnull] = ACTIONS(3239), + [anon_sym_unmanaged] = ACTIONS(3239), + [anon_sym_checked] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_this] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(3239), + [anon_sym_base] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_unchecked] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_lock] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_when] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_foreach] = ACTIONS(3239), + [anon_sym_goto] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_from] = ACTIONS(3239), + [anon_sym_into] = ACTIONS(3239), + [anon_sym_join] = ACTIONS(3239), + [anon_sym_on] = ACTIONS(3239), + [anon_sym_equals] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_orderby] = ACTIONS(3239), + [anon_sym_ascending] = ACTIONS(3239), + [anon_sym_descending] = ACTIONS(3239), + [anon_sym_group] = ACTIONS(3239), + [anon_sym_by] = ACTIONS(3239), + [anon_sym_select] = ACTIONS(3239), + [anon_sym_stackalloc] = ACTIONS(3239), + [anon_sym_sizeof] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym___makeref] = ACTIONS(3239), + [anon_sym___reftype] = ACTIONS(3239), + [anon_sym___refvalue] = ACTIONS(3239), + [sym_null_literal] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3241), + [sym_integer_literal] = ACTIONS(3239), + [sym_real_literal] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [sym_verbatim_string_literal] = ACTIONS(3241), + [aux_sym_preproc_if_token1] = ACTIONS(3241), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3241), + [sym_interpolation_verbatim_start] = ACTIONS(3241), + [sym_interpolation_raw_start] = ACTIONS(3241), + [sym_raw_string_start] = ACTIONS(3241), + }, + [2065] = { + [sym_preproc_region] = STATE(2065), + [sym_preproc_endregion] = STATE(2065), + [sym_preproc_line] = STATE(2065), + [sym_preproc_pragma] = STATE(2065), + [sym_preproc_nullable] = STATE(2065), + [sym_preproc_error] = STATE(2065), + [sym_preproc_warning] = STATE(2065), + [sym_preproc_define] = STATE(2065), + [sym_preproc_undef] = STATE(2065), + [ts_builtin_sym_end] = ACTIONS(3309), + [sym__identifier_token] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_alias] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_namespace] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_ref] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_delegate] = ACTIONS(3307), + [anon_sym_record] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_file] = ACTIONS(3307), + [anon_sym_fixed] = ACTIONS(3307), + [anon_sym_internal] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_partial] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_protected] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_readonly] = ACTIONS(3307), + [anon_sym_required] = ACTIONS(3307), + [anon_sym_sealed] = ACTIONS(3307), + [anon_sym_virtual] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym_where] = ACTIONS(3307), + [anon_sym_notnull] = ACTIONS(3307), + [anon_sym_unmanaged] = ACTIONS(3307), + [anon_sym_checked] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_this] = ACTIONS(3307), + [anon_sym_scoped] = ACTIONS(3307), + [anon_sym_base] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [sym_predefined_type] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_unchecked] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_when] = ACTIONS(3307), + [anon_sym_await] = ACTIONS(3307), + [anon_sym_foreach] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3307), + [anon_sym_into] = ACTIONS(3307), + [anon_sym_join] = ACTIONS(3307), + [anon_sym_on] = ACTIONS(3307), + [anon_sym_equals] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_orderby] = ACTIONS(3307), + [anon_sym_ascending] = ACTIONS(3307), + [anon_sym_descending] = ACTIONS(3307), + [anon_sym_group] = ACTIONS(3307), + [anon_sym_by] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_stackalloc] = ACTIONS(3307), + [anon_sym_sizeof] = ACTIONS(3307), + [anon_sym_typeof] = ACTIONS(3307), + [anon_sym___makeref] = ACTIONS(3307), + [anon_sym___reftype] = ACTIONS(3307), + [anon_sym___refvalue] = ACTIONS(3307), + [sym_null_literal] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3309), + [sym_integer_literal] = ACTIONS(3307), + [sym_real_literal] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_verbatim_string_literal] = ACTIONS(3309), + [aux_sym_preproc_if_token1] = ACTIONS(3309), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3309), + [sym_interpolation_verbatim_start] = ACTIONS(3309), + [sym_interpolation_raw_start] = ACTIONS(3309), + [sym_raw_string_start] = ACTIONS(3309), + }, [2066] = { [sym_preproc_region] = STATE(2066), [sym_preproc_endregion] = STATE(2066), @@ -385356,108 +385391,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2066), [sym_preproc_define] = STATE(2066), [sym_preproc_undef] = STATE(2066), - [ts_builtin_sym_end] = ACTIONS(3333), - [sym__identifier_token] = ACTIONS(3331), - [anon_sym_extern] = ACTIONS(3331), - [anon_sym_alias] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_global] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_ref] = ACTIONS(3331), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_delegate] = ACTIONS(3331), - [anon_sym_record] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_file] = ACTIONS(3331), - [anon_sym_fixed] = ACTIONS(3331), - [anon_sym_internal] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_partial] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_required] = ACTIONS(3331), - [anon_sym_sealed] = ACTIONS(3331), - [anon_sym_virtual] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_where] = ACTIONS(3331), - [anon_sym_notnull] = ACTIONS(3331), - [anon_sym_unmanaged] = ACTIONS(3331), - [anon_sym_checked] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_this] = ACTIONS(3331), - [anon_sym_scoped] = ACTIONS(3331), - [anon_sym_base] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [sym_predefined_type] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_unchecked] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_when] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_foreach] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_from] = ACTIONS(3331), - [anon_sym_into] = ACTIONS(3331), - [anon_sym_join] = ACTIONS(3331), - [anon_sym_on] = ACTIONS(3331), - [anon_sym_equals] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_orderby] = ACTIONS(3331), - [anon_sym_ascending] = ACTIONS(3331), - [anon_sym_descending] = ACTIONS(3331), - [anon_sym_group] = ACTIONS(3331), - [anon_sym_by] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_stackalloc] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym___makeref] = ACTIONS(3331), - [anon_sym___reftype] = ACTIONS(3331), - [anon_sym___refvalue] = ACTIONS(3331), - [sym_null_literal] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), - [sym_integer_literal] = ACTIONS(3331), - [sym_real_literal] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [sym_verbatim_string_literal] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(3257), + [sym__identifier_token] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_alias] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_ref] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_delegate] = ACTIONS(3255), + [anon_sym_record] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_file] = ACTIONS(3255), + [anon_sym_fixed] = ACTIONS(3255), + [anon_sym_internal] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_partial] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_required] = ACTIONS(3255), + [anon_sym_sealed] = ACTIONS(3255), + [anon_sym_virtual] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_where] = ACTIONS(3255), + [anon_sym_notnull] = ACTIONS(3255), + [anon_sym_unmanaged] = ACTIONS(3255), + [anon_sym_checked] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_this] = ACTIONS(3255), + [anon_sym_scoped] = ACTIONS(3255), + [anon_sym_base] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [sym_predefined_type] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_unchecked] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_lock] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_when] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_foreach] = ACTIONS(3255), + [anon_sym_goto] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_into] = ACTIONS(3255), + [anon_sym_join] = ACTIONS(3255), + [anon_sym_on] = ACTIONS(3255), + [anon_sym_equals] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_orderby] = ACTIONS(3255), + [anon_sym_ascending] = ACTIONS(3255), + [anon_sym_descending] = ACTIONS(3255), + [anon_sym_group] = ACTIONS(3255), + [anon_sym_by] = ACTIONS(3255), + [anon_sym_select] = ACTIONS(3255), + [anon_sym_stackalloc] = ACTIONS(3255), + [anon_sym_sizeof] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym___makeref] = ACTIONS(3255), + [anon_sym___reftype] = ACTIONS(3255), + [anon_sym___refvalue] = ACTIONS(3255), + [sym_null_literal] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3257), + [sym_integer_literal] = ACTIONS(3255), + [sym_real_literal] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [sym_verbatim_string_literal] = ACTIONS(3257), + [aux_sym_preproc_if_token1] = ACTIONS(3257), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3257), + [sym_interpolation_verbatim_start] = ACTIONS(3257), + [sym_interpolation_raw_start] = ACTIONS(3257), + [sym_raw_string_start] = ACTIONS(3257), + }, + [2067] = { + [sym_preproc_region] = STATE(2067), + [sym_preproc_endregion] = STATE(2067), + [sym_preproc_line] = STATE(2067), + [sym_preproc_pragma] = STATE(2067), + [sym_preproc_nullable] = STATE(2067), + [sym_preproc_error] = STATE(2067), + [sym_preproc_warning] = STATE(2067), + [sym_preproc_define] = STATE(2067), + [sym_preproc_undef] = STATE(2067), + [ts_builtin_sym_end] = ACTIONS(3301), + [sym__identifier_token] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_alias] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_ref] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_delegate] = ACTIONS(3299), + [anon_sym_record] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_file] = ACTIONS(3299), + [anon_sym_fixed] = ACTIONS(3299), + [anon_sym_internal] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_partial] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_required] = ACTIONS(3299), + [anon_sym_sealed] = ACTIONS(3299), + [anon_sym_virtual] = ACTIONS(3299), + [anon_sym_volatile] = ACTIONS(3299), + [anon_sym_where] = ACTIONS(3299), + [anon_sym_notnull] = ACTIONS(3299), + [anon_sym_unmanaged] = ACTIONS(3299), + [anon_sym_checked] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_this] = ACTIONS(3299), + [anon_sym_scoped] = ACTIONS(3299), + [anon_sym_base] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [sym_predefined_type] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_unchecked] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_when] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_foreach] = ACTIONS(3299), + [anon_sym_goto] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_DOT_DOT] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_into] = ACTIONS(3299), + [anon_sym_join] = ACTIONS(3299), + [anon_sym_on] = ACTIONS(3299), + [anon_sym_equals] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_orderby] = ACTIONS(3299), + [anon_sym_ascending] = ACTIONS(3299), + [anon_sym_descending] = ACTIONS(3299), + [anon_sym_group] = ACTIONS(3299), + [anon_sym_by] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_stackalloc] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym___makeref] = ACTIONS(3299), + [anon_sym___reftype] = ACTIONS(3299), + [anon_sym___refvalue] = ACTIONS(3299), + [sym_null_literal] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3301), + [sym_integer_literal] = ACTIONS(3299), + [sym_real_literal] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [sym_verbatim_string_literal] = ACTIONS(3301), + [aux_sym_preproc_if_token1] = ACTIONS(3301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385468,137 +385630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3333), - [sym_interpolation_verbatim_start] = ACTIONS(3333), - [sym_interpolation_raw_start] = ACTIONS(3333), - [sym_raw_string_start] = ACTIONS(3333), - }, - [2067] = { - [sym_preproc_region] = STATE(2067), - [sym_preproc_endregion] = STATE(2067), - [sym_preproc_line] = STATE(2067), - [sym_preproc_pragma] = STATE(2067), - [sym_preproc_nullable] = STATE(2067), - [sym_preproc_error] = STATE(2067), - [sym_preproc_warning] = STATE(2067), - [sym_preproc_define] = STATE(2067), - [sym_preproc_undef] = STATE(2067), - [ts_builtin_sym_end] = ACTIONS(3211), - [sym__identifier_token] = ACTIONS(3209), - [anon_sym_extern] = ACTIONS(3209), - [anon_sym_alias] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_ref] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_delegate] = ACTIONS(3209), - [anon_sym_record] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_file] = ACTIONS(3209), - [anon_sym_fixed] = ACTIONS(3209), - [anon_sym_internal] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_partial] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_required] = ACTIONS(3209), - [anon_sym_sealed] = ACTIONS(3209), - [anon_sym_virtual] = ACTIONS(3209), - [anon_sym_volatile] = ACTIONS(3209), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_notnull] = ACTIONS(3209), - [anon_sym_unmanaged] = ACTIONS(3209), - [anon_sym_checked] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(3209), - [anon_sym_scoped] = ACTIONS(3209), - [anon_sym_base] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [sym_predefined_type] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_unchecked] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_when] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_foreach] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3209), - [anon_sym_into] = ACTIONS(3209), - [anon_sym_join] = ACTIONS(3209), - [anon_sym_on] = ACTIONS(3209), - [anon_sym_equals] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_orderby] = ACTIONS(3209), - [anon_sym_ascending] = ACTIONS(3209), - [anon_sym_descending] = ACTIONS(3209), - [anon_sym_group] = ACTIONS(3209), - [anon_sym_by] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_stackalloc] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym___makeref] = ACTIONS(3209), - [anon_sym___reftype] = ACTIONS(3209), - [anon_sym___refvalue] = ACTIONS(3209), - [sym_null_literal] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3211), - [sym_integer_literal] = ACTIONS(3209), - [sym_real_literal] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [sym_verbatim_string_literal] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3211), - [sym_interpolation_verbatim_start] = ACTIONS(3211), - [sym_interpolation_raw_start] = ACTIONS(3211), - [sym_raw_string_start] = ACTIONS(3211), + [sym_interpolation_regular_start] = ACTIONS(3301), + [sym_interpolation_verbatim_start] = ACTIONS(3301), + [sym_interpolation_raw_start] = ACTIONS(3301), + [sym_raw_string_start] = ACTIONS(3301), }, [2068] = { [sym_preproc_region] = STATE(2068), @@ -385610,107 +385645,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2068), [sym_preproc_define] = STATE(2068), [sym_preproc_undef] = STATE(2068), - [ts_builtin_sym_end] = ACTIONS(3397), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_extern] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_ref] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_delegate] = ACTIONS(3395), - [anon_sym_record] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_fixed] = ACTIONS(3395), - [anon_sym_internal] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_partial] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_required] = ACTIONS(3395), - [anon_sym_sealed] = ACTIONS(3395), - [anon_sym_virtual] = ACTIONS(3395), - [anon_sym_volatile] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_checked] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_base] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [sym_predefined_type] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_unchecked] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_foreach] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3397), - [anon_sym_from] = ACTIONS(3395), - [anon_sym_into] = ACTIONS(3395), - [anon_sym_join] = ACTIONS(3395), - [anon_sym_on] = ACTIONS(3395), - [anon_sym_equals] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_orderby] = ACTIONS(3395), - [anon_sym_ascending] = ACTIONS(3395), - [anon_sym_descending] = ACTIONS(3395), - [anon_sym_group] = ACTIONS(3395), - [anon_sym_by] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_stackalloc] = ACTIONS(3395), - [anon_sym_sizeof] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym___makeref] = ACTIONS(3395), - [anon_sym___reftype] = ACTIONS(3395), - [anon_sym___refvalue] = ACTIONS(3395), - [sym_null_literal] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3397), - [sym_integer_literal] = ACTIONS(3395), - [sym_real_literal] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym_verbatim_string_literal] = ACTIONS(3397), - [aux_sym_preproc_if_token1] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(3385), + [sym__identifier_token] = ACTIONS(3383), + [anon_sym_extern] = ACTIONS(3383), + [anon_sym_alias] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_global] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_unsafe] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_ref] = ACTIONS(3383), + [anon_sym_struct] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_delegate] = ACTIONS(3383), + [anon_sym_record] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_file] = ACTIONS(3383), + [anon_sym_fixed] = ACTIONS(3383), + [anon_sym_internal] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_partial] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_required] = ACTIONS(3383), + [anon_sym_sealed] = ACTIONS(3383), + [anon_sym_virtual] = ACTIONS(3383), + [anon_sym_volatile] = ACTIONS(3383), + [anon_sym_where] = ACTIONS(3383), + [anon_sym_notnull] = ACTIONS(3383), + [anon_sym_unmanaged] = ACTIONS(3383), + [anon_sym_checked] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_CARET] = ACTIONS(3385), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_this] = ACTIONS(3383), + [anon_sym_scoped] = ACTIONS(3383), + [anon_sym_base] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [sym_predefined_type] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_unchecked] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_lock] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_default] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_when] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_foreach] = ACTIONS(3383), + [anon_sym_goto] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3385), + [anon_sym_from] = ACTIONS(3383), + [anon_sym_into] = ACTIONS(3383), + [anon_sym_join] = ACTIONS(3383), + [anon_sym_on] = ACTIONS(3383), + [anon_sym_equals] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_orderby] = ACTIONS(3383), + [anon_sym_ascending] = ACTIONS(3383), + [anon_sym_descending] = ACTIONS(3383), + [anon_sym_group] = ACTIONS(3383), + [anon_sym_by] = ACTIONS(3383), + [anon_sym_select] = ACTIONS(3383), + [anon_sym_stackalloc] = ACTIONS(3383), + [anon_sym_sizeof] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym___makeref] = ACTIONS(3383), + [anon_sym___reftype] = ACTIONS(3383), + [anon_sym___refvalue] = ACTIONS(3383), + [sym_null_literal] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3385), + [sym_integer_literal] = ACTIONS(3383), + [sym_real_literal] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [sym_verbatim_string_literal] = ACTIONS(3385), + [aux_sym_preproc_if_token1] = ACTIONS(3385), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385721,10 +385756,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3397), - [sym_interpolation_verbatim_start] = ACTIONS(3397), - [sym_interpolation_raw_start] = ACTIONS(3397), - [sym_raw_string_start] = ACTIONS(3397), + [sym_interpolation_regular_start] = ACTIONS(3385), + [sym_interpolation_verbatim_start] = ACTIONS(3385), + [sym_interpolation_raw_start] = ACTIONS(3385), + [sym_raw_string_start] = ACTIONS(3385), }, [2069] = { [sym_preproc_region] = STATE(2069), @@ -385736,107 +385771,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2069), [sym_preproc_define] = STATE(2069), [sym_preproc_undef] = STATE(2069), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym__identifier_token] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_alias] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_global] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(3478), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_namespace] = ACTIONS(3478), - [anon_sym_class] = ACTIONS(3478), - [anon_sym_ref] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_interface] = ACTIONS(3478), - [anon_sym_delegate] = ACTIONS(3478), - [anon_sym_record] = ACTIONS(3478), - [anon_sym_abstract] = ACTIONS(3478), - [anon_sym_async] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_file] = ACTIONS(3478), - [anon_sym_fixed] = ACTIONS(3478), - [anon_sym_internal] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), - [anon_sym_override] = ACTIONS(3478), - [anon_sym_partial] = ACTIONS(3478), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_readonly] = ACTIONS(3478), - [anon_sym_required] = ACTIONS(3478), - [anon_sym_sealed] = ACTIONS(3478), - [anon_sym_virtual] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym_where] = ACTIONS(3478), - [anon_sym_notnull] = ACTIONS(3478), - [anon_sym_unmanaged] = ACTIONS(3478), - [anon_sym_checked] = ACTIONS(3478), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_true] = ACTIONS(3478), - [anon_sym_false] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_CARET] = ACTIONS(3476), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3478), - [anon_sym_scoped] = ACTIONS(3478), - [anon_sym_base] = ACTIONS(3478), - [anon_sym_var] = ACTIONS(3478), - [sym_predefined_type] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_unchecked] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_default] = ACTIONS(3478), - [anon_sym_throw] = ACTIONS(3478), - [anon_sym_try] = ACTIONS(3478), - [anon_sym_when] = ACTIONS(3478), - [anon_sym_await] = ACTIONS(3478), - [anon_sym_foreach] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3476), - [anon_sym_from] = ACTIONS(3478), - [anon_sym_into] = ACTIONS(3478), - [anon_sym_join] = ACTIONS(3478), - [anon_sym_on] = ACTIONS(3478), - [anon_sym_equals] = ACTIONS(3478), - [anon_sym_let] = ACTIONS(3478), - [anon_sym_orderby] = ACTIONS(3478), - [anon_sym_ascending] = ACTIONS(3478), - [anon_sym_descending] = ACTIONS(3478), - [anon_sym_group] = ACTIONS(3478), - [anon_sym_by] = ACTIONS(3478), - [anon_sym_select] = ACTIONS(3478), - [anon_sym_stackalloc] = ACTIONS(3478), - [anon_sym_sizeof] = ACTIONS(3478), - [anon_sym_typeof] = ACTIONS(3478), - [anon_sym___makeref] = ACTIONS(3478), - [anon_sym___reftype] = ACTIONS(3478), - [anon_sym___refvalue] = ACTIONS(3478), - [sym_null_literal] = ACTIONS(3478), - [anon_sym_SQUOTE] = ACTIONS(3476), - [sym_integer_literal] = ACTIONS(3478), - [sym_real_literal] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_verbatim_string_literal] = ACTIONS(3476), - [aux_sym_preproc_if_token1] = ACTIONS(3476), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym__identifier_token] = ACTIONS(3355), + [anon_sym_extern] = ACTIONS(3355), + [anon_sym_alias] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_unsafe] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_ref] = ACTIONS(3355), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_delegate] = ACTIONS(3355), + [anon_sym_record] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_file] = ACTIONS(3355), + [anon_sym_fixed] = ACTIONS(3355), + [anon_sym_internal] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_partial] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_required] = ACTIONS(3355), + [anon_sym_sealed] = ACTIONS(3355), + [anon_sym_virtual] = ACTIONS(3355), + [anon_sym_volatile] = ACTIONS(3355), + [anon_sym_where] = ACTIONS(3355), + [anon_sym_notnull] = ACTIONS(3355), + [anon_sym_unmanaged] = ACTIONS(3355), + [anon_sym_checked] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3355), + [anon_sym_false] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3355), + [anon_sym_scoped] = ACTIONS(3355), + [anon_sym_base] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [sym_predefined_type] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_unchecked] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_lock] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_when] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_foreach] = ACTIONS(3355), + [anon_sym_goto] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3357), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_into] = ACTIONS(3355), + [anon_sym_join] = ACTIONS(3355), + [anon_sym_on] = ACTIONS(3355), + [anon_sym_equals] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_orderby] = ACTIONS(3355), + [anon_sym_ascending] = ACTIONS(3355), + [anon_sym_descending] = ACTIONS(3355), + [anon_sym_group] = ACTIONS(3355), + [anon_sym_by] = ACTIONS(3355), + [anon_sym_select] = ACTIONS(3355), + [anon_sym_stackalloc] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym___makeref] = ACTIONS(3355), + [anon_sym___reftype] = ACTIONS(3355), + [anon_sym___refvalue] = ACTIONS(3355), + [sym_null_literal] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3357), + [sym_integer_literal] = ACTIONS(3355), + [sym_real_literal] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [sym_verbatim_string_literal] = ACTIONS(3357), + [aux_sym_preproc_if_token1] = ACTIONS(3357), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385847,10 +385882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3476), - [sym_interpolation_verbatim_start] = ACTIONS(3476), - [sym_interpolation_raw_start] = ACTIONS(3476), - [sym_raw_string_start] = ACTIONS(3476), + [sym_interpolation_regular_start] = ACTIONS(3357), + [sym_interpolation_verbatim_start] = ACTIONS(3357), + [sym_interpolation_raw_start] = ACTIONS(3357), + [sym_raw_string_start] = ACTIONS(3357), }, [2070] = { [sym_preproc_region] = STATE(2070), @@ -385862,107 +385897,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2070), [sym_preproc_define] = STATE(2070), [sym_preproc_undef] = STATE(2070), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_using] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3482), - [anon_sym_namespace] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_record] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3482), - [anon_sym_fixed] = ACTIONS(3482), - [anon_sym_internal] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3482), - [anon_sym_override] = ACTIONS(3482), - [anon_sym_partial] = ACTIONS(3482), - [anon_sym_private] = ACTIONS(3482), - [anon_sym_protected] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3482), - [anon_sym_readonly] = ACTIONS(3482), - [anon_sym_required] = ACTIONS(3482), - [anon_sym_sealed] = ACTIONS(3482), - [anon_sym_virtual] = ACTIONS(3482), - [anon_sym_volatile] = ACTIONS(3482), - [anon_sym_where] = ACTIONS(3482), - [anon_sym_notnull] = ACTIONS(3482), - [anon_sym_unmanaged] = ACTIONS(3482), - [anon_sym_checked] = ACTIONS(3482), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3482), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_CARET] = ACTIONS(3480), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_this] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_base] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_break] = ACTIONS(3482), - [anon_sym_unchecked] = ACTIONS(3482), - [anon_sym_continue] = ACTIONS(3482), - [anon_sym_do] = ACTIONS(3482), - [anon_sym_while] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3482), - [anon_sym_lock] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_switch] = ACTIONS(3482), - [anon_sym_default] = ACTIONS(3482), - [anon_sym_throw] = ACTIONS(3482), - [anon_sym_try] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [anon_sym_await] = ACTIONS(3482), - [anon_sym_foreach] = ACTIONS(3482), - [anon_sym_goto] = ACTIONS(3482), - [anon_sym_if] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3482), - [anon_sym_into] = ACTIONS(3482), - [anon_sym_join] = ACTIONS(3482), - [anon_sym_on] = ACTIONS(3482), - [anon_sym_equals] = ACTIONS(3482), - [anon_sym_let] = ACTIONS(3482), - [anon_sym_orderby] = ACTIONS(3482), - [anon_sym_ascending] = ACTIONS(3482), - [anon_sym_descending] = ACTIONS(3482), - [anon_sym_group] = ACTIONS(3482), - [anon_sym_by] = ACTIONS(3482), - [anon_sym_select] = ACTIONS(3482), - [anon_sym_stackalloc] = ACTIONS(3482), - [anon_sym_sizeof] = ACTIONS(3482), - [anon_sym_typeof] = ACTIONS(3482), - [anon_sym___makeref] = ACTIONS(3482), - [anon_sym___reftype] = ACTIONS(3482), - [anon_sym___refvalue] = ACTIONS(3482), - [sym_null_literal] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(3480), - [sym_integer_literal] = ACTIONS(3482), - [sym_real_literal] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [sym_verbatim_string_literal] = ACTIONS(3480), - [aux_sym_preproc_if_token1] = ACTIONS(3480), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym__identifier_token] = ACTIONS(3351), + [anon_sym_extern] = ACTIONS(3351), + [anon_sym_alias] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_global] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_unsafe] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_ref] = ACTIONS(3351), + [anon_sym_struct] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_delegate] = ACTIONS(3351), + [anon_sym_record] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_file] = ACTIONS(3351), + [anon_sym_fixed] = ACTIONS(3351), + [anon_sym_internal] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_partial] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_required] = ACTIONS(3351), + [anon_sym_sealed] = ACTIONS(3351), + [anon_sym_virtual] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_where] = ACTIONS(3351), + [anon_sym_notnull] = ACTIONS(3351), + [anon_sym_unmanaged] = ACTIONS(3351), + [anon_sym_checked] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_CARET] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_this] = ACTIONS(3351), + [anon_sym_scoped] = ACTIONS(3351), + [anon_sym_base] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [sym_predefined_type] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_unchecked] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_lock] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_when] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_foreach] = ACTIONS(3351), + [anon_sym_goto] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3353), + [anon_sym_from] = ACTIONS(3351), + [anon_sym_into] = ACTIONS(3351), + [anon_sym_join] = ACTIONS(3351), + [anon_sym_on] = ACTIONS(3351), + [anon_sym_equals] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_orderby] = ACTIONS(3351), + [anon_sym_ascending] = ACTIONS(3351), + [anon_sym_descending] = ACTIONS(3351), + [anon_sym_group] = ACTIONS(3351), + [anon_sym_by] = ACTIONS(3351), + [anon_sym_select] = ACTIONS(3351), + [anon_sym_stackalloc] = ACTIONS(3351), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym___makeref] = ACTIONS(3351), + [anon_sym___reftype] = ACTIONS(3351), + [anon_sym___refvalue] = ACTIONS(3351), + [sym_null_literal] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3353), + [sym_integer_literal] = ACTIONS(3351), + [sym_real_literal] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_verbatim_string_literal] = ACTIONS(3353), + [aux_sym_preproc_if_token1] = ACTIONS(3353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385973,10 +386008,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3480), - [sym_interpolation_verbatim_start] = ACTIONS(3480), - [sym_interpolation_raw_start] = ACTIONS(3480), - [sym_raw_string_start] = ACTIONS(3480), + [sym_interpolation_regular_start] = ACTIONS(3353), + [sym_interpolation_verbatim_start] = ACTIONS(3353), + [sym_interpolation_raw_start] = ACTIONS(3353), + [sym_raw_string_start] = ACTIONS(3353), }, [2071] = { [sym_preproc_region] = STATE(2071), @@ -385988,107 +386023,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2071), [sym_preproc_define] = STATE(2071), [sym_preproc_undef] = STATE(2071), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_checked] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_this] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_base] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_unchecked] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_foreach] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_stackalloc] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym___makeref] = ACTIONS(3379), - [anon_sym___reftype] = ACTIONS(3379), - [anon_sym___refvalue] = ACTIONS(3379), - [sym_null_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(3379), - [sym_real_literal] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_verbatim_string_literal] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), + [ts_builtin_sym_end] = ACTIONS(3421), + [sym__identifier_token] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym_alias] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_global] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_unsafe] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_ref] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_delegate] = ACTIONS(3419), + [anon_sym_record] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_file] = ACTIONS(3419), + [anon_sym_fixed] = ACTIONS(3419), + [anon_sym_internal] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_partial] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_required] = ACTIONS(3419), + [anon_sym_sealed] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_where] = ACTIONS(3419), + [anon_sym_notnull] = ACTIONS(3419), + [anon_sym_unmanaged] = ACTIONS(3419), + [anon_sym_checked] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(3419), + [anon_sym_false] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_CARET] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_this] = ACTIONS(3419), + [anon_sym_scoped] = ACTIONS(3419), + [anon_sym_base] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [sym_predefined_type] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_unchecked] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_lock] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_when] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_foreach] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3421), + [anon_sym_from] = ACTIONS(3419), + [anon_sym_into] = ACTIONS(3419), + [anon_sym_join] = ACTIONS(3419), + [anon_sym_on] = ACTIONS(3419), + [anon_sym_equals] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_orderby] = ACTIONS(3419), + [anon_sym_ascending] = ACTIONS(3419), + [anon_sym_descending] = ACTIONS(3419), + [anon_sym_group] = ACTIONS(3419), + [anon_sym_by] = ACTIONS(3419), + [anon_sym_select] = ACTIONS(3419), + [anon_sym_stackalloc] = ACTIONS(3419), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym___makeref] = ACTIONS(3419), + [anon_sym___reftype] = ACTIONS(3419), + [anon_sym___refvalue] = ACTIONS(3419), + [sym_null_literal] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3421), + [sym_integer_literal] = ACTIONS(3419), + [sym_real_literal] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_verbatim_string_literal] = ACTIONS(3421), + [aux_sym_preproc_if_token1] = ACTIONS(3421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386099,10 +386134,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), + [sym_interpolation_regular_start] = ACTIONS(3421), + [sym_interpolation_verbatim_start] = ACTIONS(3421), + [sym_interpolation_raw_start] = ACTIONS(3421), + [sym_raw_string_start] = ACTIONS(3421), }, [2072] = { [sym_preproc_region] = STATE(2072), @@ -386114,107 +386149,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2072), [sym_preproc_define] = STATE(2072), [sym_preproc_undef] = STATE(2072), - [ts_builtin_sym_end] = ACTIONS(3373), - [sym__identifier_token] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_alias] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_global] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_ref] = ACTIONS(3371), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_delegate] = ACTIONS(3371), - [anon_sym_record] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_file] = ACTIONS(3371), - [anon_sym_fixed] = ACTIONS(3371), - [anon_sym_internal] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_partial] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_required] = ACTIONS(3371), - [anon_sym_sealed] = ACTIONS(3371), - [anon_sym_virtual] = ACTIONS(3371), - [anon_sym_volatile] = ACTIONS(3371), - [anon_sym_where] = ACTIONS(3371), - [anon_sym_notnull] = ACTIONS(3371), - [anon_sym_unmanaged] = ACTIONS(3371), - [anon_sym_checked] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_scoped] = ACTIONS(3371), - [anon_sym_base] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [sym_predefined_type] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_unchecked] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_when] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_foreach] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_from] = ACTIONS(3371), - [anon_sym_into] = ACTIONS(3371), - [anon_sym_join] = ACTIONS(3371), - [anon_sym_on] = ACTIONS(3371), - [anon_sym_equals] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_orderby] = ACTIONS(3371), - [anon_sym_ascending] = ACTIONS(3371), - [anon_sym_descending] = ACTIONS(3371), - [anon_sym_group] = ACTIONS(3371), - [anon_sym_by] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_stackalloc] = ACTIONS(3371), - [anon_sym_sizeof] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym___makeref] = ACTIONS(3371), - [anon_sym___reftype] = ACTIONS(3371), - [anon_sym___refvalue] = ACTIONS(3371), - [sym_null_literal] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3373), - [sym_integer_literal] = ACTIONS(3371), - [sym_real_literal] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [sym_verbatim_string_literal] = ACTIONS(3373), - [aux_sym_preproc_if_token1] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(3401), + [sym__identifier_token] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym_alias] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_global] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_unsafe] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_ref] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_delegate] = ACTIONS(3399), + [anon_sym_record] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_file] = ACTIONS(3399), + [anon_sym_fixed] = ACTIONS(3399), + [anon_sym_internal] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_partial] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_required] = ACTIONS(3399), + [anon_sym_sealed] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_where] = ACTIONS(3399), + [anon_sym_notnull] = ACTIONS(3399), + [anon_sym_unmanaged] = ACTIONS(3399), + [anon_sym_checked] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_CARET] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_this] = ACTIONS(3399), + [anon_sym_scoped] = ACTIONS(3399), + [anon_sym_base] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [sym_predefined_type] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_unchecked] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_lock] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_when] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_foreach] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3399), + [anon_sym_into] = ACTIONS(3399), + [anon_sym_join] = ACTIONS(3399), + [anon_sym_on] = ACTIONS(3399), + [anon_sym_equals] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_orderby] = ACTIONS(3399), + [anon_sym_ascending] = ACTIONS(3399), + [anon_sym_descending] = ACTIONS(3399), + [anon_sym_group] = ACTIONS(3399), + [anon_sym_by] = ACTIONS(3399), + [anon_sym_select] = ACTIONS(3399), + [anon_sym_stackalloc] = ACTIONS(3399), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym___makeref] = ACTIONS(3399), + [anon_sym___reftype] = ACTIONS(3399), + [anon_sym___refvalue] = ACTIONS(3399), + [sym_null_literal] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3401), + [sym_integer_literal] = ACTIONS(3399), + [sym_real_literal] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_verbatim_string_literal] = ACTIONS(3401), + [aux_sym_preproc_if_token1] = ACTIONS(3401), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386225,10 +386260,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3373), - [sym_interpolation_verbatim_start] = ACTIONS(3373), - [sym_interpolation_raw_start] = ACTIONS(3373), - [sym_raw_string_start] = ACTIONS(3373), + [sym_interpolation_regular_start] = ACTIONS(3401), + [sym_interpolation_verbatim_start] = ACTIONS(3401), + [sym_interpolation_raw_start] = ACTIONS(3401), + [sym_raw_string_start] = ACTIONS(3401), }, [2073] = { [sym_preproc_region] = STATE(2073), @@ -386240,107 +386275,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2073), [sym_preproc_define] = STATE(2073), [sym_preproc_undef] = STATE(2073), - [ts_builtin_sym_end] = ACTIONS(3437), - [sym__identifier_token] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym_alias] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_global] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_ref] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_delegate] = ACTIONS(3435), - [anon_sym_record] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_file] = ACTIONS(3435), - [anon_sym_fixed] = ACTIONS(3435), - [anon_sym_internal] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_partial] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_required] = ACTIONS(3435), - [anon_sym_sealed] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_where] = ACTIONS(3435), - [anon_sym_notnull] = ACTIONS(3435), - [anon_sym_unmanaged] = ACTIONS(3435), - [anon_sym_checked] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3435), - [anon_sym_false] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_this] = ACTIONS(3435), - [anon_sym_scoped] = ACTIONS(3435), - [anon_sym_base] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [sym_predefined_type] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_unchecked] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_foreach] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [anon_sym_from] = ACTIONS(3435), - [anon_sym_into] = ACTIONS(3435), - [anon_sym_join] = ACTIONS(3435), - [anon_sym_on] = ACTIONS(3435), - [anon_sym_equals] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_orderby] = ACTIONS(3435), - [anon_sym_ascending] = ACTIONS(3435), - [anon_sym_descending] = ACTIONS(3435), - [anon_sym_group] = ACTIONS(3435), - [anon_sym_by] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_stackalloc] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym___makeref] = ACTIONS(3435), - [anon_sym___reftype] = ACTIONS(3435), - [anon_sym___refvalue] = ACTIONS(3435), - [sym_null_literal] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3437), - [sym_integer_literal] = ACTIONS(3435), - [sym_real_literal] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_verbatim_string_literal] = ACTIONS(3437), - [aux_sym_preproc_if_token1] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym_alias] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_unsafe] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_ref] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_delegate] = ACTIONS(3443), + [anon_sym_record] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_file] = ACTIONS(3443), + [anon_sym_fixed] = ACTIONS(3443), + [anon_sym_internal] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_partial] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_required] = ACTIONS(3443), + [anon_sym_sealed] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_where] = ACTIONS(3443), + [anon_sym_notnull] = ACTIONS(3443), + [anon_sym_unmanaged] = ACTIONS(3443), + [anon_sym_checked] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_CARET] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_this] = ACTIONS(3443), + [anon_sym_scoped] = ACTIONS(3443), + [anon_sym_base] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [sym_predefined_type] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_unchecked] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_lock] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_when] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_foreach] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_DOT_DOT] = ACTIONS(3445), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_into] = ACTIONS(3443), + [anon_sym_join] = ACTIONS(3443), + [anon_sym_on] = ACTIONS(3443), + [anon_sym_equals] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_orderby] = ACTIONS(3443), + [anon_sym_ascending] = ACTIONS(3443), + [anon_sym_descending] = ACTIONS(3443), + [anon_sym_group] = ACTIONS(3443), + [anon_sym_by] = ACTIONS(3443), + [anon_sym_select] = ACTIONS(3443), + [anon_sym_stackalloc] = ACTIONS(3443), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym___makeref] = ACTIONS(3443), + [anon_sym___reftype] = ACTIONS(3443), + [anon_sym___refvalue] = ACTIONS(3443), + [sym_null_literal] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3445), + [sym_integer_literal] = ACTIONS(3443), + [sym_real_literal] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_verbatim_string_literal] = ACTIONS(3445), + [aux_sym_preproc_if_token1] = ACTIONS(3445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386351,10 +386386,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3437), - [sym_interpolation_verbatim_start] = ACTIONS(3437), - [sym_interpolation_raw_start] = ACTIONS(3437), - [sym_raw_string_start] = ACTIONS(3437), + [sym_interpolation_regular_start] = ACTIONS(3445), + [sym_interpolation_verbatim_start] = ACTIONS(3445), + [sym_interpolation_raw_start] = ACTIONS(3445), + [sym_raw_string_start] = ACTIONS(3445), }, [2074] = { [sym_preproc_region] = STATE(2074), @@ -386366,107 +386401,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2074), [sym_preproc_define] = STATE(2074), [sym_preproc_undef] = STATE(2074), - [ts_builtin_sym_end] = ACTIONS(3393), - [sym__identifier_token] = ACTIONS(3391), - [anon_sym_extern] = ACTIONS(3391), - [anon_sym_alias] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_ref] = ACTIONS(3391), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_delegate] = ACTIONS(3391), - [anon_sym_record] = ACTIONS(3391), - [anon_sym_abstract] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_file] = ACTIONS(3391), - [anon_sym_fixed] = ACTIONS(3391), - [anon_sym_internal] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3391), - [anon_sym_partial] = ACTIONS(3391), - [anon_sym_private] = ACTIONS(3391), - [anon_sym_protected] = ACTIONS(3391), - [anon_sym_public] = ACTIONS(3391), - [anon_sym_readonly] = ACTIONS(3391), - [anon_sym_required] = ACTIONS(3391), - [anon_sym_sealed] = ACTIONS(3391), - [anon_sym_virtual] = ACTIONS(3391), - [anon_sym_volatile] = ACTIONS(3391), - [anon_sym_where] = ACTIONS(3391), - [anon_sym_notnull] = ACTIONS(3391), - [anon_sym_unmanaged] = ACTIONS(3391), - [anon_sym_checked] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(3391), - [anon_sym_scoped] = ACTIONS(3391), - [anon_sym_base] = ACTIONS(3391), - [anon_sym_var] = ACTIONS(3391), - [sym_predefined_type] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_unchecked] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_when] = ACTIONS(3391), - [anon_sym_await] = ACTIONS(3391), - [anon_sym_foreach] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3391), - [anon_sym_into] = ACTIONS(3391), - [anon_sym_join] = ACTIONS(3391), - [anon_sym_on] = ACTIONS(3391), - [anon_sym_equals] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_orderby] = ACTIONS(3391), - [anon_sym_ascending] = ACTIONS(3391), - [anon_sym_descending] = ACTIONS(3391), - [anon_sym_group] = ACTIONS(3391), - [anon_sym_by] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_stackalloc] = ACTIONS(3391), - [anon_sym_sizeof] = ACTIONS(3391), - [anon_sym_typeof] = ACTIONS(3391), - [anon_sym___makeref] = ACTIONS(3391), - [anon_sym___reftype] = ACTIONS(3391), - [anon_sym___refvalue] = ACTIONS(3391), - [sym_null_literal] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3393), - [sym_integer_literal] = ACTIONS(3391), - [sym_real_literal] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [sym_verbatim_string_literal] = ACTIONS(3393), - [aux_sym_preproc_if_token1] = ACTIONS(3393), + [ts_builtin_sym_end] = ACTIONS(3365), + [sym__identifier_token] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_alias] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_unsafe] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_ref] = ACTIONS(3363), + [anon_sym_struct] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_delegate] = ACTIONS(3363), + [anon_sym_record] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_file] = ACTIONS(3363), + [anon_sym_fixed] = ACTIONS(3363), + [anon_sym_internal] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_partial] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_required] = ACTIONS(3363), + [anon_sym_sealed] = ACTIONS(3363), + [anon_sym_virtual] = ACTIONS(3363), + [anon_sym_volatile] = ACTIONS(3363), + [anon_sym_where] = ACTIONS(3363), + [anon_sym_notnull] = ACTIONS(3363), + [anon_sym_unmanaged] = ACTIONS(3363), + [anon_sym_checked] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_CARET] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_scoped] = ACTIONS(3363), + [anon_sym_base] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [sym_predefined_type] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_unchecked] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_lock] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_when] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_foreach] = ACTIONS(3363), + [anon_sym_goto] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3365), + [anon_sym_from] = ACTIONS(3363), + [anon_sym_into] = ACTIONS(3363), + [anon_sym_join] = ACTIONS(3363), + [anon_sym_on] = ACTIONS(3363), + [anon_sym_equals] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_orderby] = ACTIONS(3363), + [anon_sym_ascending] = ACTIONS(3363), + [anon_sym_descending] = ACTIONS(3363), + [anon_sym_group] = ACTIONS(3363), + [anon_sym_by] = ACTIONS(3363), + [anon_sym_select] = ACTIONS(3363), + [anon_sym_stackalloc] = ACTIONS(3363), + [anon_sym_sizeof] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym___makeref] = ACTIONS(3363), + [anon_sym___reftype] = ACTIONS(3363), + [anon_sym___refvalue] = ACTIONS(3363), + [sym_null_literal] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3365), + [sym_integer_literal] = ACTIONS(3363), + [sym_real_literal] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [sym_verbatim_string_literal] = ACTIONS(3365), + [aux_sym_preproc_if_token1] = ACTIONS(3365), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386477,10 +386512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3393), - [sym_interpolation_verbatim_start] = ACTIONS(3393), - [sym_interpolation_raw_start] = ACTIONS(3393), - [sym_raw_string_start] = ACTIONS(3393), + [sym_interpolation_regular_start] = ACTIONS(3365), + [sym_interpolation_verbatim_start] = ACTIONS(3365), + [sym_interpolation_raw_start] = ACTIONS(3365), + [sym_raw_string_start] = ACTIONS(3365), }, [2075] = { [sym_preproc_region] = STATE(2075), @@ -386492,107 +386527,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2075), [sym_preproc_define] = STATE(2075), [sym_preproc_undef] = STATE(2075), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym__identifier_token] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3431), - [anon_sym_alias] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_global] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_ref] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_delegate] = ACTIONS(3431), - [anon_sym_record] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_file] = ACTIONS(3431), - [anon_sym_fixed] = ACTIONS(3431), - [anon_sym_internal] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_partial] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_required] = ACTIONS(3431), - [anon_sym_sealed] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3431), - [anon_sym_volatile] = ACTIONS(3431), - [anon_sym_where] = ACTIONS(3431), - [anon_sym_notnull] = ACTIONS(3431), - [anon_sym_unmanaged] = ACTIONS(3431), - [anon_sym_checked] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_true] = ACTIONS(3431), - [anon_sym_false] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_this] = ACTIONS(3431), - [anon_sym_scoped] = ACTIONS(3431), - [anon_sym_base] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [sym_predefined_type] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_unchecked] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_when] = ACTIONS(3431), - [anon_sym_await] = ACTIONS(3431), - [anon_sym_foreach] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOT_DOT] = ACTIONS(3433), - [anon_sym_from] = ACTIONS(3431), - [anon_sym_into] = ACTIONS(3431), - [anon_sym_join] = ACTIONS(3431), - [anon_sym_on] = ACTIONS(3431), - [anon_sym_equals] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_orderby] = ACTIONS(3431), - [anon_sym_ascending] = ACTIONS(3431), - [anon_sym_descending] = ACTIONS(3431), - [anon_sym_group] = ACTIONS(3431), - [anon_sym_by] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_stackalloc] = ACTIONS(3431), - [anon_sym_sizeof] = ACTIONS(3431), - [anon_sym_typeof] = ACTIONS(3431), - [anon_sym___makeref] = ACTIONS(3431), - [anon_sym___reftype] = ACTIONS(3431), - [anon_sym___refvalue] = ACTIONS(3431), - [sym_null_literal] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3433), - [sym_integer_literal] = ACTIONS(3431), - [sym_real_literal] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [sym_verbatim_string_literal] = ACTIONS(3433), - [aux_sym_preproc_if_token1] = ACTIONS(3433), + [ts_builtin_sym_end] = ACTIONS(3476), + [sym__identifier_token] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym_alias] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_global] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_unsafe] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_ref] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_delegate] = ACTIONS(3478), + [anon_sym_record] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_file] = ACTIONS(3478), + [anon_sym_fixed] = ACTIONS(3478), + [anon_sym_internal] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_partial] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_sealed] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_where] = ACTIONS(3478), + [anon_sym_notnull] = ACTIONS(3478), + [anon_sym_unmanaged] = ACTIONS(3478), + [anon_sym_checked] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_true] = ACTIONS(3478), + [anon_sym_false] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_CARET] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3478), + [anon_sym_scoped] = ACTIONS(3478), + [anon_sym_base] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [sym_predefined_type] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_unchecked] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_lock] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_when] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_foreach] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_DOT_DOT] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_into] = ACTIONS(3478), + [anon_sym_join] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_equals] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_orderby] = ACTIONS(3478), + [anon_sym_ascending] = ACTIONS(3478), + [anon_sym_descending] = ACTIONS(3478), + [anon_sym_group] = ACTIONS(3478), + [anon_sym_by] = ACTIONS(3478), + [anon_sym_select] = ACTIONS(3478), + [anon_sym_stackalloc] = ACTIONS(3478), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym___makeref] = ACTIONS(3478), + [anon_sym___reftype] = ACTIONS(3478), + [anon_sym___refvalue] = ACTIONS(3478), + [sym_null_literal] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3476), + [sym_integer_literal] = ACTIONS(3478), + [sym_real_literal] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_verbatim_string_literal] = ACTIONS(3476), + [aux_sym_preproc_if_token1] = ACTIONS(3476), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386603,13 +386638,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3433), - [sym_interpolation_verbatim_start] = ACTIONS(3433), - [sym_interpolation_raw_start] = ACTIONS(3433), - [sym_raw_string_start] = ACTIONS(3433), + [sym_interpolation_regular_start] = ACTIONS(3476), + [sym_interpolation_verbatim_start] = ACTIONS(3476), + [sym_interpolation_raw_start] = ACTIONS(3476), + [sym_raw_string_start] = ACTIONS(3476), }, [2076] = { - [sym_catch_clause] = STATE(2100), [sym_preproc_region] = STATE(2076), [sym_preproc_endregion] = STATE(2076), [sym_preproc_line] = STATE(2076), @@ -386619,106 +386653,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2076), [sym_preproc_define] = STATE(2076), [sym_preproc_undef] = STATE(2076), - [aux_sym_try_statement_repeat1] = STATE(2076), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_catch] = ACTIONS(3484), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_finally] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), + [ts_builtin_sym_end] = ACTIONS(3413), + [sym__identifier_token] = ACTIONS(3411), + [anon_sym_extern] = ACTIONS(3411), + [anon_sym_alias] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_global] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_unsafe] = ACTIONS(3411), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_ref] = ACTIONS(3411), + [anon_sym_struct] = ACTIONS(3411), + [anon_sym_enum] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3411), + [anon_sym_delegate] = ACTIONS(3411), + [anon_sym_record] = ACTIONS(3411), + [anon_sym_abstract] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_const] = ACTIONS(3411), + [anon_sym_file] = ACTIONS(3411), + [anon_sym_fixed] = ACTIONS(3411), + [anon_sym_internal] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_override] = ACTIONS(3411), + [anon_sym_partial] = ACTIONS(3411), + [anon_sym_private] = ACTIONS(3411), + [anon_sym_protected] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_required] = ACTIONS(3411), + [anon_sym_sealed] = ACTIONS(3411), + [anon_sym_virtual] = ACTIONS(3411), + [anon_sym_volatile] = ACTIONS(3411), + [anon_sym_where] = ACTIONS(3411), + [anon_sym_notnull] = ACTIONS(3411), + [anon_sym_unmanaged] = ACTIONS(3411), + [anon_sym_checked] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3413), + [anon_sym_CARET] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_this] = ACTIONS(3411), + [anon_sym_scoped] = ACTIONS(3411), + [anon_sym_base] = ACTIONS(3411), + [anon_sym_var] = ACTIONS(3411), + [sym_predefined_type] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_unchecked] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_lock] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3411), + [anon_sym_default] = ACTIONS(3411), + [anon_sym_throw] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_when] = ACTIONS(3411), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_foreach] = ACTIONS(3411), + [anon_sym_goto] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_DOT_DOT] = ACTIONS(3413), + [anon_sym_from] = ACTIONS(3411), + [anon_sym_into] = ACTIONS(3411), + [anon_sym_join] = ACTIONS(3411), + [anon_sym_on] = ACTIONS(3411), + [anon_sym_equals] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_orderby] = ACTIONS(3411), + [anon_sym_ascending] = ACTIONS(3411), + [anon_sym_descending] = ACTIONS(3411), + [anon_sym_group] = ACTIONS(3411), + [anon_sym_by] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_stackalloc] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3411), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym___makeref] = ACTIONS(3411), + [anon_sym___reftype] = ACTIONS(3411), + [anon_sym___refvalue] = ACTIONS(3411), + [sym_null_literal] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3413), + [sym_integer_literal] = ACTIONS(3411), + [sym_real_literal] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_verbatim_string_literal] = ACTIONS(3413), + [aux_sym_preproc_if_token1] = ACTIONS(3413), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386729,10 +386764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [sym_interpolation_regular_start] = ACTIONS(3413), + [sym_interpolation_verbatim_start] = ACTIONS(3413), + [sym_interpolation_raw_start] = ACTIONS(3413), + [sym_raw_string_start] = ACTIONS(3413), }, [2077] = { [sym_preproc_region] = STATE(2077), @@ -386744,107 +386779,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2077), [sym_preproc_define] = STATE(2077), [sym_preproc_undef] = STATE(2077), - [ts_builtin_sym_end] = ACTIONS(3429), - [sym__identifier_token] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym_alias] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_global] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_ref] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_delegate] = ACTIONS(3427), - [anon_sym_record] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_file] = ACTIONS(3427), - [anon_sym_fixed] = ACTIONS(3427), - [anon_sym_internal] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_partial] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_required] = ACTIONS(3427), - [anon_sym_sealed] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_where] = ACTIONS(3427), - [anon_sym_notnull] = ACTIONS(3427), - [anon_sym_unmanaged] = ACTIONS(3427), - [anon_sym_checked] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_true] = ACTIONS(3427), - [anon_sym_false] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_this] = ACTIONS(3427), - [anon_sym_scoped] = ACTIONS(3427), - [anon_sym_base] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [sym_predefined_type] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_unchecked] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_when] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_foreach] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOT_DOT] = ACTIONS(3429), - [anon_sym_from] = ACTIONS(3427), - [anon_sym_into] = ACTIONS(3427), - [anon_sym_join] = ACTIONS(3427), - [anon_sym_on] = ACTIONS(3427), - [anon_sym_equals] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_orderby] = ACTIONS(3427), - [anon_sym_ascending] = ACTIONS(3427), - [anon_sym_descending] = ACTIONS(3427), - [anon_sym_group] = ACTIONS(3427), - [anon_sym_by] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_stackalloc] = ACTIONS(3427), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym___makeref] = ACTIONS(3427), - [anon_sym___reftype] = ACTIONS(3427), - [anon_sym___refvalue] = ACTIONS(3427), - [sym_null_literal] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3429), - [sym_integer_literal] = ACTIONS(3427), - [sym_real_literal] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_verbatim_string_literal] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3429), + [ts_builtin_sym_end] = ACTIONS(3405), + [sym__identifier_token] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym_alias] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_unsafe] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_ref] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_delegate] = ACTIONS(3403), + [anon_sym_record] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_file] = ACTIONS(3403), + [anon_sym_fixed] = ACTIONS(3403), + [anon_sym_internal] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_partial] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_required] = ACTIONS(3403), + [anon_sym_sealed] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_where] = ACTIONS(3403), + [anon_sym_notnull] = ACTIONS(3403), + [anon_sym_unmanaged] = ACTIONS(3403), + [anon_sym_checked] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_this] = ACTIONS(3403), + [anon_sym_scoped] = ACTIONS(3403), + [anon_sym_base] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [sym_predefined_type] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_unchecked] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_lock] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_when] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_foreach] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_into] = ACTIONS(3403), + [anon_sym_join] = ACTIONS(3403), + [anon_sym_on] = ACTIONS(3403), + [anon_sym_equals] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_orderby] = ACTIONS(3403), + [anon_sym_ascending] = ACTIONS(3403), + [anon_sym_descending] = ACTIONS(3403), + [anon_sym_group] = ACTIONS(3403), + [anon_sym_by] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_stackalloc] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym___makeref] = ACTIONS(3403), + [anon_sym___reftype] = ACTIONS(3403), + [anon_sym___refvalue] = ACTIONS(3403), + [sym_null_literal] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3405), + [sym_integer_literal] = ACTIONS(3403), + [sym_real_literal] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_verbatim_string_literal] = ACTIONS(3405), + [aux_sym_preproc_if_token1] = ACTIONS(3405), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386855,10 +386890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3429), - [sym_interpolation_verbatim_start] = ACTIONS(3429), - [sym_interpolation_raw_start] = ACTIONS(3429), - [sym_raw_string_start] = ACTIONS(3429), + [sym_interpolation_regular_start] = ACTIONS(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, [2078] = { [sym_preproc_region] = STATE(2078), @@ -386870,107 +386905,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2078), [sym_preproc_define] = STATE(2078), [sym_preproc_undef] = STATE(2078), - [ts_builtin_sym_end] = ACTIONS(3377), - [sym__identifier_token] = ACTIONS(3375), - [anon_sym_extern] = ACTIONS(3375), - [anon_sym_alias] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_ref] = ACTIONS(3375), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_delegate] = ACTIONS(3375), - [anon_sym_record] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_file] = ACTIONS(3375), - [anon_sym_fixed] = ACTIONS(3375), - [anon_sym_internal] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_partial] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_required] = ACTIONS(3375), - [anon_sym_sealed] = ACTIONS(3375), - [anon_sym_virtual] = ACTIONS(3375), - [anon_sym_volatile] = ACTIONS(3375), - [anon_sym_where] = ACTIONS(3375), - [anon_sym_notnull] = ACTIONS(3375), - [anon_sym_unmanaged] = ACTIONS(3375), - [anon_sym_checked] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_this] = ACTIONS(3375), - [anon_sym_scoped] = ACTIONS(3375), - [anon_sym_base] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [sym_predefined_type] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_unchecked] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_foreach] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3375), - [anon_sym_into] = ACTIONS(3375), - [anon_sym_join] = ACTIONS(3375), - [anon_sym_on] = ACTIONS(3375), - [anon_sym_equals] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_orderby] = ACTIONS(3375), - [anon_sym_ascending] = ACTIONS(3375), - [anon_sym_descending] = ACTIONS(3375), - [anon_sym_group] = ACTIONS(3375), - [anon_sym_by] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_stackalloc] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym___makeref] = ACTIONS(3375), - [anon_sym___reftype] = ACTIONS(3375), - [anon_sym___refvalue] = ACTIONS(3375), - [sym_null_literal] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3377), - [sym_integer_literal] = ACTIONS(3375), - [sym_real_literal] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_verbatim_string_literal] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym__identifier_token] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym_alias] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_global] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_unsafe] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_ref] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_delegate] = ACTIONS(3482), + [anon_sym_record] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_file] = ACTIONS(3482), + [anon_sym_fixed] = ACTIONS(3482), + [anon_sym_internal] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_override] = ACTIONS(3482), + [anon_sym_partial] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_required] = ACTIONS(3482), + [anon_sym_sealed] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_where] = ACTIONS(3482), + [anon_sym_notnull] = ACTIONS(3482), + [anon_sym_unmanaged] = ACTIONS(3482), + [anon_sym_checked] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_true] = ACTIONS(3482), + [anon_sym_false] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3480), + [anon_sym_this] = ACTIONS(3482), + [anon_sym_scoped] = ACTIONS(3482), + [anon_sym_base] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [sym_predefined_type] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_unchecked] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_lock] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_when] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_foreach] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_DOT_DOT] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3482), + [anon_sym_into] = ACTIONS(3482), + [anon_sym_join] = ACTIONS(3482), + [anon_sym_on] = ACTIONS(3482), + [anon_sym_equals] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_orderby] = ACTIONS(3482), + [anon_sym_ascending] = ACTIONS(3482), + [anon_sym_descending] = ACTIONS(3482), + [anon_sym_group] = ACTIONS(3482), + [anon_sym_by] = ACTIONS(3482), + [anon_sym_select] = ACTIONS(3482), + [anon_sym_stackalloc] = ACTIONS(3482), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym___makeref] = ACTIONS(3482), + [anon_sym___reftype] = ACTIONS(3482), + [anon_sym___refvalue] = ACTIONS(3482), + [sym_null_literal] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3480), + [sym_integer_literal] = ACTIONS(3482), + [sym_real_literal] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_verbatim_string_literal] = ACTIONS(3480), + [aux_sym_preproc_if_token1] = ACTIONS(3480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386981,10 +387016,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), + [sym_interpolation_regular_start] = ACTIONS(3480), + [sym_interpolation_verbatim_start] = ACTIONS(3480), + [sym_interpolation_raw_start] = ACTIONS(3480), + [sym_raw_string_start] = ACTIONS(3480), }, [2079] = { [sym_preproc_region] = STATE(2079), @@ -386996,107 +387031,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2079), [sym_preproc_define] = STATE(2079), [sym_preproc_undef] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(3353), - [sym__identifier_token] = ACTIONS(3351), - [anon_sym_extern] = ACTIONS(3351), - [anon_sym_alias] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_global] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_ref] = ACTIONS(3351), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_delegate] = ACTIONS(3351), - [anon_sym_record] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_file] = ACTIONS(3351), - [anon_sym_fixed] = ACTIONS(3351), - [anon_sym_internal] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_partial] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_required] = ACTIONS(3351), - [anon_sym_sealed] = ACTIONS(3351), - [anon_sym_virtual] = ACTIONS(3351), - [anon_sym_volatile] = ACTIONS(3351), - [anon_sym_where] = ACTIONS(3351), - [anon_sym_notnull] = ACTIONS(3351), - [anon_sym_unmanaged] = ACTIONS(3351), - [anon_sym_checked] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_this] = ACTIONS(3351), - [anon_sym_scoped] = ACTIONS(3351), - [anon_sym_base] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [sym_predefined_type] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_unchecked] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_when] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_foreach] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3353), - [anon_sym_from] = ACTIONS(3351), - [anon_sym_into] = ACTIONS(3351), - [anon_sym_join] = ACTIONS(3351), - [anon_sym_on] = ACTIONS(3351), - [anon_sym_equals] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_orderby] = ACTIONS(3351), - [anon_sym_ascending] = ACTIONS(3351), - [anon_sym_descending] = ACTIONS(3351), - [anon_sym_group] = ACTIONS(3351), - [anon_sym_by] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_stackalloc] = ACTIONS(3351), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym___makeref] = ACTIONS(3351), - [anon_sym___reftype] = ACTIONS(3351), - [anon_sym___refvalue] = ACTIONS(3351), - [sym_null_literal] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3353), - [sym_integer_literal] = ACTIONS(3351), - [sym_real_literal] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [sym_verbatim_string_literal] = ACTIONS(3353), - [aux_sym_preproc_if_token1] = ACTIONS(3353), + [ts_builtin_sym_end] = ACTIONS(3417), + [sym__identifier_token] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym_alias] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_unsafe] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_ref] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_delegate] = ACTIONS(3415), + [anon_sym_record] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_file] = ACTIONS(3415), + [anon_sym_fixed] = ACTIONS(3415), + [anon_sym_internal] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_partial] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_required] = ACTIONS(3415), + [anon_sym_sealed] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_where] = ACTIONS(3415), + [anon_sym_notnull] = ACTIONS(3415), + [anon_sym_unmanaged] = ACTIONS(3415), + [anon_sym_checked] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_CARET] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_this] = ACTIONS(3415), + [anon_sym_scoped] = ACTIONS(3415), + [anon_sym_base] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [sym_predefined_type] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_unchecked] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_lock] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_foreach] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3417), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_into] = ACTIONS(3415), + [anon_sym_join] = ACTIONS(3415), + [anon_sym_on] = ACTIONS(3415), + [anon_sym_equals] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_orderby] = ACTIONS(3415), + [anon_sym_ascending] = ACTIONS(3415), + [anon_sym_descending] = ACTIONS(3415), + [anon_sym_group] = ACTIONS(3415), + [anon_sym_by] = ACTIONS(3415), + [anon_sym_select] = ACTIONS(3415), + [anon_sym_stackalloc] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym___makeref] = ACTIONS(3415), + [anon_sym___reftype] = ACTIONS(3415), + [anon_sym___refvalue] = ACTIONS(3415), + [sym_null_literal] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3417), + [sym_integer_literal] = ACTIONS(3415), + [sym_real_literal] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_verbatim_string_literal] = ACTIONS(3417), + [aux_sym_preproc_if_token1] = ACTIONS(3417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387107,10 +387142,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3353), - [sym_interpolation_verbatim_start] = ACTIONS(3353), - [sym_interpolation_raw_start] = ACTIONS(3353), - [sym_raw_string_start] = ACTIONS(3353), + [sym_interpolation_regular_start] = ACTIONS(3417), + [sym_interpolation_verbatim_start] = ACTIONS(3417), + [sym_interpolation_raw_start] = ACTIONS(3417), + [sym_raw_string_start] = ACTIONS(3417), }, [2080] = { [sym_preproc_region] = STATE(2080), @@ -387122,121 +387157,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2080), [sym_preproc_define] = STATE(2080), [sym_preproc_undef] = STATE(2080), - [ts_builtin_sym_end] = ACTIONS(3445), - [sym__identifier_token] = ACTIONS(3443), - [anon_sym_extern] = ACTIONS(3443), - [anon_sym_alias] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_unsafe] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_ref] = ACTIONS(3443), - [anon_sym_struct] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_delegate] = ACTIONS(3443), - [anon_sym_record] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_file] = ACTIONS(3443), - [anon_sym_fixed] = ACTIONS(3443), - [anon_sym_internal] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_partial] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_required] = ACTIONS(3443), - [anon_sym_sealed] = ACTIONS(3443), - [anon_sym_virtual] = ACTIONS(3443), - [anon_sym_volatile] = ACTIONS(3443), - [anon_sym_where] = ACTIONS(3443), - [anon_sym_notnull] = ACTIONS(3443), - [anon_sym_unmanaged] = ACTIONS(3443), - [anon_sym_checked] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3443), - [anon_sym_scoped] = ACTIONS(3443), - [anon_sym_base] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [sym_predefined_type] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_unchecked] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_lock] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_when] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_foreach] = ACTIONS(3443), - [anon_sym_goto] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3443), - [anon_sym_into] = ACTIONS(3443), - [anon_sym_join] = ACTIONS(3443), - [anon_sym_on] = ACTIONS(3443), - [anon_sym_equals] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_orderby] = ACTIONS(3443), - [anon_sym_ascending] = ACTIONS(3443), - [anon_sym_descending] = ACTIONS(3443), - [anon_sym_group] = ACTIONS(3443), - [anon_sym_by] = ACTIONS(3443), - [anon_sym_select] = ACTIONS(3443), - [anon_sym_stackalloc] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym___makeref] = ACTIONS(3443), - [anon_sym___reftype] = ACTIONS(3443), - [anon_sym___refvalue] = ACTIONS(3443), - [sym_null_literal] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3445), - [sym_integer_literal] = ACTIONS(3443), - [sym_real_literal] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym_verbatim_string_literal] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3445), - [sym_interpolation_verbatim_start] = ACTIONS(3445), - [sym_interpolation_raw_start] = ACTIONS(3445), - [sym_raw_string_start] = ACTIONS(3445), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym__identifier_token] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym_alias] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_global] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_unsafe] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_ref] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_delegate] = ACTIONS(3486), + [anon_sym_record] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_file] = ACTIONS(3486), + [anon_sym_fixed] = ACTIONS(3486), + [anon_sym_internal] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_partial] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_sealed] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_where] = ACTIONS(3486), + [anon_sym_notnull] = ACTIONS(3486), + [anon_sym_unmanaged] = ACTIONS(3486), + [anon_sym_checked] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_true] = ACTIONS(3486), + [anon_sym_false] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_CARET] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_this] = ACTIONS(3486), + [anon_sym_scoped] = ACTIONS(3486), + [anon_sym_base] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [sym_predefined_type] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_unchecked] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_lock] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_when] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_foreach] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_DOT_DOT] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_into] = ACTIONS(3486), + [anon_sym_join] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_equals] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_orderby] = ACTIONS(3486), + [anon_sym_ascending] = ACTIONS(3486), + [anon_sym_descending] = ACTIONS(3486), + [anon_sym_group] = ACTIONS(3486), + [anon_sym_by] = ACTIONS(3486), + [anon_sym_select] = ACTIONS(3486), + [anon_sym_stackalloc] = ACTIONS(3486), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym___makeref] = ACTIONS(3486), + [anon_sym___reftype] = ACTIONS(3486), + [anon_sym___refvalue] = ACTIONS(3486), + [sym_null_literal] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3484), + [sym_integer_literal] = ACTIONS(3486), + [sym_real_literal] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_verbatim_string_literal] = ACTIONS(3484), + [aux_sym_preproc_if_token1] = ACTIONS(3484), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3484), + [sym_interpolation_verbatim_start] = ACTIONS(3484), + [sym_interpolation_raw_start] = ACTIONS(3484), + [sym_raw_string_start] = ACTIONS(3484), }, [2081] = { [sym_preproc_region] = STATE(2081), @@ -387248,107 +387283,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2081), [sym_preproc_define] = STATE(2081), [sym_preproc_undef] = STATE(2081), - [ts_builtin_sym_end] = ACTIONS(3441), - [sym__identifier_token] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3439), - [anon_sym_alias] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_global] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_unsafe] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_ref] = ACTIONS(3439), - [anon_sym_struct] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_delegate] = ACTIONS(3439), - [anon_sym_record] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_file] = ACTIONS(3439), - [anon_sym_fixed] = ACTIONS(3439), - [anon_sym_internal] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_partial] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_required] = ACTIONS(3439), - [anon_sym_sealed] = ACTIONS(3439), - [anon_sym_virtual] = ACTIONS(3439), - [anon_sym_volatile] = ACTIONS(3439), - [anon_sym_where] = ACTIONS(3439), - [anon_sym_notnull] = ACTIONS(3439), - [anon_sym_unmanaged] = ACTIONS(3439), - [anon_sym_checked] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_this] = ACTIONS(3439), - [anon_sym_scoped] = ACTIONS(3439), - [anon_sym_base] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [sym_predefined_type] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_unchecked] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_lock] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_when] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_foreach] = ACTIONS(3439), - [anon_sym_goto] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_DOT_DOT] = ACTIONS(3441), - [anon_sym_from] = ACTIONS(3439), - [anon_sym_into] = ACTIONS(3439), - [anon_sym_join] = ACTIONS(3439), - [anon_sym_on] = ACTIONS(3439), - [anon_sym_equals] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_orderby] = ACTIONS(3439), - [anon_sym_ascending] = ACTIONS(3439), - [anon_sym_descending] = ACTIONS(3439), - [anon_sym_group] = ACTIONS(3439), - [anon_sym_by] = ACTIONS(3439), - [anon_sym_select] = ACTIONS(3439), - [anon_sym_stackalloc] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym___makeref] = ACTIONS(3439), - [anon_sym___reftype] = ACTIONS(3439), - [anon_sym___refvalue] = ACTIONS(3439), - [sym_null_literal] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3441), - [sym_integer_literal] = ACTIONS(3439), - [sym_real_literal] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym_verbatim_string_literal] = ACTIONS(3441), - [aux_sym_preproc_if_token1] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3361), + [sym__identifier_token] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_alias] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_unsafe] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_ref] = ACTIONS(3359), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_delegate] = ACTIONS(3359), + [anon_sym_record] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_file] = ACTIONS(3359), + [anon_sym_fixed] = ACTIONS(3359), + [anon_sym_internal] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_partial] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_required] = ACTIONS(3359), + [anon_sym_sealed] = ACTIONS(3359), + [anon_sym_virtual] = ACTIONS(3359), + [anon_sym_volatile] = ACTIONS(3359), + [anon_sym_where] = ACTIONS(3359), + [anon_sym_notnull] = ACTIONS(3359), + [anon_sym_unmanaged] = ACTIONS(3359), + [anon_sym_checked] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_scoped] = ACTIONS(3359), + [anon_sym_base] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [sym_predefined_type] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_unchecked] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_lock] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_when] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_foreach] = ACTIONS(3359), + [anon_sym_goto] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_into] = ACTIONS(3359), + [anon_sym_join] = ACTIONS(3359), + [anon_sym_on] = ACTIONS(3359), + [anon_sym_equals] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_orderby] = ACTIONS(3359), + [anon_sym_ascending] = ACTIONS(3359), + [anon_sym_descending] = ACTIONS(3359), + [anon_sym_group] = ACTIONS(3359), + [anon_sym_by] = ACTIONS(3359), + [anon_sym_select] = ACTIONS(3359), + [anon_sym_stackalloc] = ACTIONS(3359), + [anon_sym_sizeof] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym___makeref] = ACTIONS(3359), + [anon_sym___reftype] = ACTIONS(3359), + [anon_sym___refvalue] = ACTIONS(3359), + [sym_null_literal] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3361), + [sym_integer_literal] = ACTIONS(3359), + [sym_real_literal] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_verbatim_string_literal] = ACTIONS(3361), + [aux_sym_preproc_if_token1] = ACTIONS(3361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387359,10 +387394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3441), - [sym_interpolation_verbatim_start] = ACTIONS(3441), - [sym_interpolation_raw_start] = ACTIONS(3441), - [sym_raw_string_start] = ACTIONS(3441), + [sym_interpolation_regular_start] = ACTIONS(3361), + [sym_interpolation_verbatim_start] = ACTIONS(3361), + [sym_interpolation_raw_start] = ACTIONS(3361), + [sym_raw_string_start] = ACTIONS(3361), }, [2082] = { [sym_preproc_region] = STATE(2082), @@ -387374,107 +387409,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2082), [sym_preproc_define] = STATE(2082), [sym_preproc_undef] = STATE(2082), - [ts_builtin_sym_end] = ACTIONS(3401), - [sym__identifier_token] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [anon_sym_alias] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_global] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_ref] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_delegate] = ACTIONS(3399), - [anon_sym_record] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_file] = ACTIONS(3399), - [anon_sym_fixed] = ACTIONS(3399), - [anon_sym_internal] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_partial] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_required] = ACTIONS(3399), - [anon_sym_sealed] = ACTIONS(3399), - [anon_sym_virtual] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_where] = ACTIONS(3399), - [anon_sym_notnull] = ACTIONS(3399), - [anon_sym_unmanaged] = ACTIONS(3399), - [anon_sym_checked] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_this] = ACTIONS(3399), - [anon_sym_scoped] = ACTIONS(3399), - [anon_sym_base] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [sym_predefined_type] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_unchecked] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_when] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_foreach] = ACTIONS(3399), - [anon_sym_goto] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_from] = ACTIONS(3399), - [anon_sym_into] = ACTIONS(3399), - [anon_sym_join] = ACTIONS(3399), - [anon_sym_on] = ACTIONS(3399), - [anon_sym_equals] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_orderby] = ACTIONS(3399), - [anon_sym_ascending] = ACTIONS(3399), - [anon_sym_descending] = ACTIONS(3399), - [anon_sym_group] = ACTIONS(3399), - [anon_sym_by] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_stackalloc] = ACTIONS(3399), - [anon_sym_sizeof] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym___makeref] = ACTIONS(3399), - [anon_sym___reftype] = ACTIONS(3399), - [anon_sym___refvalue] = ACTIONS(3399), - [sym_null_literal] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3401), - [sym_integer_literal] = ACTIONS(3399), - [sym_real_literal] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [sym_verbatim_string_literal] = ACTIONS(3401), - [aux_sym_preproc_if_token1] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3381), + [sym__identifier_token] = ACTIONS(3379), + [anon_sym_extern] = ACTIONS(3379), + [anon_sym_alias] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_global] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_unsafe] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_ref] = ACTIONS(3379), + [anon_sym_struct] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_delegate] = ACTIONS(3379), + [anon_sym_record] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_file] = ACTIONS(3379), + [anon_sym_fixed] = ACTIONS(3379), + [anon_sym_internal] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_partial] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_required] = ACTIONS(3379), + [anon_sym_sealed] = ACTIONS(3379), + [anon_sym_virtual] = ACTIONS(3379), + [anon_sym_volatile] = ACTIONS(3379), + [anon_sym_where] = ACTIONS(3379), + [anon_sym_notnull] = ACTIONS(3379), + [anon_sym_unmanaged] = ACTIONS(3379), + [anon_sym_checked] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_this] = ACTIONS(3379), + [anon_sym_scoped] = ACTIONS(3379), + [anon_sym_base] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [sym_predefined_type] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_unchecked] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_lock] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_when] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_foreach] = ACTIONS(3379), + [anon_sym_goto] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_into] = ACTIONS(3379), + [anon_sym_join] = ACTIONS(3379), + [anon_sym_on] = ACTIONS(3379), + [anon_sym_equals] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_orderby] = ACTIONS(3379), + [anon_sym_ascending] = ACTIONS(3379), + [anon_sym_descending] = ACTIONS(3379), + [anon_sym_group] = ACTIONS(3379), + [anon_sym_by] = ACTIONS(3379), + [anon_sym_select] = ACTIONS(3379), + [anon_sym_stackalloc] = ACTIONS(3379), + [anon_sym_sizeof] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym___makeref] = ACTIONS(3379), + [anon_sym___reftype] = ACTIONS(3379), + [anon_sym___refvalue] = ACTIONS(3379), + [sym_null_literal] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3381), + [sym_integer_literal] = ACTIONS(3379), + [sym_real_literal] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [sym_verbatim_string_literal] = ACTIONS(3381), + [aux_sym_preproc_if_token1] = ACTIONS(3381), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387485,12 +387520,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3401), - [sym_interpolation_verbatim_start] = ACTIONS(3401), - [sym_interpolation_raw_start] = ACTIONS(3401), - [sym_raw_string_start] = ACTIONS(3401), + [sym_interpolation_regular_start] = ACTIONS(3381), + [sym_interpolation_verbatim_start] = ACTIONS(3381), + [sym_interpolation_raw_start] = ACTIONS(3381), + [sym_raw_string_start] = ACTIONS(3381), }, [2083] = { + [sym_catch_clause] = STATE(2099), [sym_preproc_region] = STATE(2083), [sym_preproc_endregion] = STATE(2083), [sym_preproc_line] = STATE(2083), @@ -387500,107 +387536,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2083), [sym_preproc_define] = STATE(2083), [sym_preproc_undef] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(3365), - [sym__identifier_token] = ACTIONS(3363), - [anon_sym_extern] = ACTIONS(3363), - [anon_sym_alias] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_global] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_ref] = ACTIONS(3363), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_delegate] = ACTIONS(3363), - [anon_sym_record] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_file] = ACTIONS(3363), - [anon_sym_fixed] = ACTIONS(3363), - [anon_sym_internal] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_partial] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_required] = ACTIONS(3363), - [anon_sym_sealed] = ACTIONS(3363), - [anon_sym_virtual] = ACTIONS(3363), - [anon_sym_volatile] = ACTIONS(3363), - [anon_sym_where] = ACTIONS(3363), - [anon_sym_notnull] = ACTIONS(3363), - [anon_sym_unmanaged] = ACTIONS(3363), - [anon_sym_checked] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_this] = ACTIONS(3363), - [anon_sym_scoped] = ACTIONS(3363), - [anon_sym_base] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [sym_predefined_type] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_unchecked] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_when] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_foreach] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3365), - [anon_sym_from] = ACTIONS(3363), - [anon_sym_into] = ACTIONS(3363), - [anon_sym_join] = ACTIONS(3363), - [anon_sym_on] = ACTIONS(3363), - [anon_sym_equals] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_orderby] = ACTIONS(3363), - [anon_sym_ascending] = ACTIONS(3363), - [anon_sym_descending] = ACTIONS(3363), - [anon_sym_group] = ACTIONS(3363), - [anon_sym_by] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_stackalloc] = ACTIONS(3363), - [anon_sym_sizeof] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym___makeref] = ACTIONS(3363), - [anon_sym___reftype] = ACTIONS(3363), - [anon_sym___refvalue] = ACTIONS(3363), - [sym_null_literal] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3365), - [sym_integer_literal] = ACTIONS(3363), - [sym_real_literal] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3365), - [sym_verbatim_string_literal] = ACTIONS(3365), - [aux_sym_preproc_if_token1] = ACTIONS(3365), + [aux_sym_try_statement_repeat1] = STATE(2083), + [sym__identifier_token] = ACTIONS(3139), + [anon_sym_extern] = ACTIONS(3139), + [anon_sym_alias] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_global] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3139), + [anon_sym_unsafe] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_ref] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_delegate] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_file] = ACTIONS(3139), + [anon_sym_fixed] = ACTIONS(3139), + [anon_sym_internal] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_override] = ACTIONS(3139), + [anon_sym_partial] = ACTIONS(3139), + [anon_sym_private] = ACTIONS(3139), + [anon_sym_protected] = ACTIONS(3139), + [anon_sym_public] = ACTIONS(3139), + [anon_sym_readonly] = ACTIONS(3139), + [anon_sym_required] = ACTIONS(3139), + [anon_sym_sealed] = ACTIONS(3139), + [anon_sym_virtual] = ACTIONS(3139), + [anon_sym_volatile] = ACTIONS(3139), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_notnull] = ACTIONS(3139), + [anon_sym_unmanaged] = ACTIONS(3139), + [anon_sym_checked] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(3139), + [anon_sym_false] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_this] = ACTIONS(3139), + [anon_sym_scoped] = ACTIONS(3139), + [anon_sym_base] = ACTIONS(3139), + [anon_sym_var] = ACTIONS(3139), + [sym_predefined_type] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_unchecked] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_lock] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_case] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_throw] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_catch] = ACTIONS(3488), + [anon_sym_when] = ACTIONS(3139), + [anon_sym_finally] = ACTIONS(3139), + [anon_sym_await] = ACTIONS(3139), + [anon_sym_foreach] = ACTIONS(3139), + [anon_sym_goto] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_from] = ACTIONS(3139), + [anon_sym_into] = ACTIONS(3139), + [anon_sym_join] = ACTIONS(3139), + [anon_sym_on] = ACTIONS(3139), + [anon_sym_equals] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_orderby] = ACTIONS(3139), + [anon_sym_ascending] = ACTIONS(3139), + [anon_sym_descending] = ACTIONS(3139), + [anon_sym_group] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_select] = ACTIONS(3139), + [anon_sym_stackalloc] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3139), + [anon_sym_typeof] = ACTIONS(3139), + [anon_sym___makeref] = ACTIONS(3139), + [anon_sym___reftype] = ACTIONS(3139), + [anon_sym___refvalue] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3141), + [sym_integer_literal] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym_verbatim_string_literal] = ACTIONS(3141), + [aux_sym_preproc_if_token1] = ACTIONS(3141), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387611,10 +387646,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3365), - [sym_interpolation_verbatim_start] = ACTIONS(3365), - [sym_interpolation_raw_start] = ACTIONS(3365), - [sym_raw_string_start] = ACTIONS(3365), + [sym_interpolation_regular_start] = ACTIONS(3141), + [sym_interpolation_verbatim_start] = ACTIONS(3141), + [sym_interpolation_raw_start] = ACTIONS(3141), + [sym_raw_string_start] = ACTIONS(3141), }, [2084] = { [sym_preproc_region] = STATE(2084), @@ -387626,107 +387661,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2084), [sym_preproc_define] = STATE(2084), [sym_preproc_undef] = STATE(2084), - [ts_builtin_sym_end] = ACTIONS(3385), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_record] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_checked] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_this] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_base] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_unchecked] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_foreach] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_stackalloc] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym___makeref] = ACTIONS(3383), - [anon_sym___reftype] = ACTIONS(3383), - [anon_sym___refvalue] = ACTIONS(3383), - [sym_null_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3385), - [sym_integer_literal] = ACTIONS(3383), - [sym_real_literal] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_verbatim_string_literal] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym__identifier_token] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_alias] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_ref] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_delegate] = ACTIONS(3367), + [anon_sym_record] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_file] = ACTIONS(3367), + [anon_sym_fixed] = ACTIONS(3367), + [anon_sym_internal] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_partial] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_required] = ACTIONS(3367), + [anon_sym_sealed] = ACTIONS(3367), + [anon_sym_virtual] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [anon_sym_where] = ACTIONS(3367), + [anon_sym_notnull] = ACTIONS(3367), + [anon_sym_unmanaged] = ACTIONS(3367), + [anon_sym_checked] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3367), + [anon_sym_false] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3367), + [anon_sym_scoped] = ACTIONS(3367), + [anon_sym_base] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [sym_predefined_type] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_unchecked] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_lock] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_foreach] = ACTIONS(3367), + [anon_sym_goto] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3369), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_into] = ACTIONS(3367), + [anon_sym_join] = ACTIONS(3367), + [anon_sym_on] = ACTIONS(3367), + [anon_sym_equals] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_orderby] = ACTIONS(3367), + [anon_sym_ascending] = ACTIONS(3367), + [anon_sym_descending] = ACTIONS(3367), + [anon_sym_group] = ACTIONS(3367), + [anon_sym_by] = ACTIONS(3367), + [anon_sym_select] = ACTIONS(3367), + [anon_sym_stackalloc] = ACTIONS(3367), + [anon_sym_sizeof] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym___makeref] = ACTIONS(3367), + [anon_sym___reftype] = ACTIONS(3367), + [anon_sym___refvalue] = ACTIONS(3367), + [sym_null_literal] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3369), + [sym_integer_literal] = ACTIONS(3367), + [sym_real_literal] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [sym_verbatim_string_literal] = ACTIONS(3369), + [aux_sym_preproc_if_token1] = ACTIONS(3369), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387737,10 +387772,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), + [sym_interpolation_regular_start] = ACTIONS(3369), + [sym_interpolation_verbatim_start] = ACTIONS(3369), + [sym_interpolation_raw_start] = ACTIONS(3369), + [sym_raw_string_start] = ACTIONS(3369), }, [2085] = { [sym_preproc_region] = STATE(2085), @@ -387752,132 +387787,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2085), [sym_preproc_define] = STATE(2085), [sym_preproc_undef] = STATE(2085), - [ts_builtin_sym_end] = ACTIONS(3405), - [sym__identifier_token] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3403), - [anon_sym_alias] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_global] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_ref] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_delegate] = ACTIONS(3403), - [anon_sym_record] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_file] = ACTIONS(3403), - [anon_sym_fixed] = ACTIONS(3403), - [anon_sym_internal] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_partial] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_required] = ACTIONS(3403), - [anon_sym_sealed] = ACTIONS(3403), - [anon_sym_virtual] = ACTIONS(3403), - [anon_sym_volatile] = ACTIONS(3403), - [anon_sym_where] = ACTIONS(3403), - [anon_sym_notnull] = ACTIONS(3403), - [anon_sym_unmanaged] = ACTIONS(3403), - [anon_sym_checked] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_this] = ACTIONS(3403), - [anon_sym_scoped] = ACTIONS(3403), - [anon_sym_base] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [sym_predefined_type] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_unchecked] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_when] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_foreach] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_from] = ACTIONS(3403), - [anon_sym_into] = ACTIONS(3403), - [anon_sym_join] = ACTIONS(3403), - [anon_sym_on] = ACTIONS(3403), - [anon_sym_equals] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_orderby] = ACTIONS(3403), - [anon_sym_ascending] = ACTIONS(3403), - [anon_sym_descending] = ACTIONS(3403), - [anon_sym_group] = ACTIONS(3403), - [anon_sym_by] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_stackalloc] = ACTIONS(3403), - [anon_sym_sizeof] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym___makeref] = ACTIONS(3403), - [anon_sym___reftype] = ACTIONS(3403), - [anon_sym___refvalue] = ACTIONS(3403), - [sym_null_literal] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3405), - [sym_integer_literal] = ACTIONS(3403), - [sym_real_literal] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [sym_verbatim_string_literal] = ACTIONS(3405), - [aux_sym_preproc_if_token1] = ACTIONS(3405), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3405), - [sym_interpolation_verbatim_start] = ACTIONS(3405), - [sym_interpolation_raw_start] = ACTIONS(3405), - [sym_raw_string_start] = ACTIONS(3405), - }, - [2086] = { - [sym_preproc_region] = STATE(2086), - [sym_preproc_endregion] = STATE(2086), - [sym_preproc_line] = STATE(2086), - [sym_preproc_pragma] = STATE(2086), - [sym_preproc_nullable] = STATE(2086), - [sym_preproc_error] = STATE(2086), - [sym_preproc_warning] = STATE(2086), - [sym_preproc_define] = STATE(2086), - [sym_preproc_undef] = STATE(2086), [ts_builtin_sym_end] = ACTIONS(3409), [sym__identifier_token] = ACTIONS(3407), [anon_sym_extern] = ACTIONS(3407), @@ -387994,6 +387903,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3409), [sym_raw_string_start] = ACTIONS(3409), }, + [2086] = { + [sym_preproc_region] = STATE(2086), + [sym_preproc_endregion] = STATE(2086), + [sym_preproc_line] = STATE(2086), + [sym_preproc_pragma] = STATE(2086), + [sym_preproc_nullable] = STATE(2086), + [sym_preproc_error] = STATE(2086), + [sym_preproc_warning] = STATE(2086), + [sym_preproc_define] = STATE(2086), + [sym_preproc_undef] = STATE(2086), + [ts_builtin_sym_end] = ACTIONS(3397), + [sym__identifier_token] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_unsafe] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_ref] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_delegate] = ACTIONS(3395), + [anon_sym_record] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_file] = ACTIONS(3395), + [anon_sym_fixed] = ACTIONS(3395), + [anon_sym_internal] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_partial] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_required] = ACTIONS(3395), + [anon_sym_sealed] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_notnull] = ACTIONS(3395), + [anon_sym_unmanaged] = ACTIONS(3395), + [anon_sym_checked] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_CARET] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_this] = ACTIONS(3395), + [anon_sym_scoped] = ACTIONS(3395), + [anon_sym_base] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [sym_predefined_type] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_unchecked] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_lock] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_when] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_foreach] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_into] = ACTIONS(3395), + [anon_sym_join] = ACTIONS(3395), + [anon_sym_on] = ACTIONS(3395), + [anon_sym_equals] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_orderby] = ACTIONS(3395), + [anon_sym_ascending] = ACTIONS(3395), + [anon_sym_descending] = ACTIONS(3395), + [anon_sym_group] = ACTIONS(3395), + [anon_sym_by] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_stackalloc] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym___makeref] = ACTIONS(3395), + [anon_sym___reftype] = ACTIONS(3395), + [anon_sym___refvalue] = ACTIONS(3395), + [sym_null_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3397), + [sym_integer_literal] = ACTIONS(3395), + [sym_real_literal] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_verbatim_string_literal] = ACTIONS(3397), + [aux_sym_preproc_if_token1] = ACTIONS(3397), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), + }, [2087] = { [sym_preproc_region] = STATE(2087), [sym_preproc_endregion] = STATE(2087), @@ -388004,107 +388039,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2087), [sym_preproc_define] = STATE(2087), [sym_preproc_undef] = STATE(2087), - [ts_builtin_sym_end] = ACTIONS(3357), - [sym__identifier_token] = ACTIONS(3355), - [anon_sym_extern] = ACTIONS(3355), - [anon_sym_alias] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_global] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_ref] = ACTIONS(3355), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_delegate] = ACTIONS(3355), - [anon_sym_record] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_file] = ACTIONS(3355), - [anon_sym_fixed] = ACTIONS(3355), - [anon_sym_internal] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_partial] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_required] = ACTIONS(3355), - [anon_sym_sealed] = ACTIONS(3355), - [anon_sym_virtual] = ACTIONS(3355), - [anon_sym_volatile] = ACTIONS(3355), - [anon_sym_where] = ACTIONS(3355), - [anon_sym_notnull] = ACTIONS(3355), - [anon_sym_unmanaged] = ACTIONS(3355), - [anon_sym_checked] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_true] = ACTIONS(3355), - [anon_sym_false] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_this] = ACTIONS(3355), - [anon_sym_scoped] = ACTIONS(3355), - [anon_sym_base] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [sym_predefined_type] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_unchecked] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_when] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_foreach] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3357), - [anon_sym_from] = ACTIONS(3355), - [anon_sym_into] = ACTIONS(3355), - [anon_sym_join] = ACTIONS(3355), - [anon_sym_on] = ACTIONS(3355), - [anon_sym_equals] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_orderby] = ACTIONS(3355), - [anon_sym_ascending] = ACTIONS(3355), - [anon_sym_descending] = ACTIONS(3355), - [anon_sym_group] = ACTIONS(3355), - [anon_sym_by] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_stackalloc] = ACTIONS(3355), - [anon_sym_sizeof] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym___makeref] = ACTIONS(3355), - [anon_sym___reftype] = ACTIONS(3355), - [anon_sym___refvalue] = ACTIONS(3355), - [sym_null_literal] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3357), - [sym_integer_literal] = ACTIONS(3355), - [sym_real_literal] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [sym_verbatim_string_literal] = ACTIONS(3357), - [aux_sym_preproc_if_token1] = ACTIONS(3357), + [ts_builtin_sym_end] = ACTIONS(3393), + [sym__identifier_token] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym_alias] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_unsafe] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_ref] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_delegate] = ACTIONS(3391), + [anon_sym_record] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_file] = ACTIONS(3391), + [anon_sym_fixed] = ACTIONS(3391), + [anon_sym_internal] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_partial] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_required] = ACTIONS(3391), + [anon_sym_sealed] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_where] = ACTIONS(3391), + [anon_sym_notnull] = ACTIONS(3391), + [anon_sym_unmanaged] = ACTIONS(3391), + [anon_sym_checked] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_CARET] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_this] = ACTIONS(3391), + [anon_sym_scoped] = ACTIONS(3391), + [anon_sym_base] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [sym_predefined_type] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_unchecked] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_lock] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_when] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_foreach] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_into] = ACTIONS(3391), + [anon_sym_join] = ACTIONS(3391), + [anon_sym_on] = ACTIONS(3391), + [anon_sym_equals] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_orderby] = ACTIONS(3391), + [anon_sym_ascending] = ACTIONS(3391), + [anon_sym_descending] = ACTIONS(3391), + [anon_sym_group] = ACTIONS(3391), + [anon_sym_by] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_stackalloc] = ACTIONS(3391), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym___makeref] = ACTIONS(3391), + [anon_sym___reftype] = ACTIONS(3391), + [anon_sym___refvalue] = ACTIONS(3391), + [sym_null_literal] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3393), + [sym_integer_literal] = ACTIONS(3391), + [sym_real_literal] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_verbatim_string_literal] = ACTIONS(3393), + [aux_sym_preproc_if_token1] = ACTIONS(3393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388115,10 +388150,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3357), - [sym_interpolation_verbatim_start] = ACTIONS(3357), - [sym_interpolation_raw_start] = ACTIONS(3357), - [sym_raw_string_start] = ACTIONS(3357), + [sym_interpolation_regular_start] = ACTIONS(3393), + [sym_interpolation_verbatim_start] = ACTIONS(3393), + [sym_interpolation_raw_start] = ACTIONS(3393), + [sym_raw_string_start] = ACTIONS(3393), }, [2088] = { [sym_preproc_region] = STATE(2088), @@ -388130,107 +388165,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2088), [sym_preproc_define] = STATE(2088), [sym_preproc_undef] = STATE(2088), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym__identifier_token] = ACTIONS(3367), - [anon_sym_extern] = ACTIONS(3367), - [anon_sym_alias] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_global] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_ref] = ACTIONS(3367), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_delegate] = ACTIONS(3367), - [anon_sym_record] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_file] = ACTIONS(3367), - [anon_sym_fixed] = ACTIONS(3367), - [anon_sym_internal] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_partial] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_required] = ACTIONS(3367), - [anon_sym_sealed] = ACTIONS(3367), - [anon_sym_virtual] = ACTIONS(3367), - [anon_sym_volatile] = ACTIONS(3367), - [anon_sym_where] = ACTIONS(3367), - [anon_sym_notnull] = ACTIONS(3367), - [anon_sym_unmanaged] = ACTIONS(3367), - [anon_sym_checked] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3367), - [anon_sym_false] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3367), - [anon_sym_scoped] = ACTIONS(3367), - [anon_sym_base] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [sym_predefined_type] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_unchecked] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_when] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_foreach] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [anon_sym_from] = ACTIONS(3367), - [anon_sym_into] = ACTIONS(3367), - [anon_sym_join] = ACTIONS(3367), - [anon_sym_on] = ACTIONS(3367), - [anon_sym_equals] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_orderby] = ACTIONS(3367), - [anon_sym_ascending] = ACTIONS(3367), - [anon_sym_descending] = ACTIONS(3367), - [anon_sym_group] = ACTIONS(3367), - [anon_sym_by] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_stackalloc] = ACTIONS(3367), - [anon_sym_sizeof] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym___makeref] = ACTIONS(3367), - [anon_sym___reftype] = ACTIONS(3367), - [anon_sym___refvalue] = ACTIONS(3367), - [sym_null_literal] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3369), - [sym_integer_literal] = ACTIONS(3367), - [sym_real_literal] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [sym_verbatim_string_literal] = ACTIONS(3369), - [aux_sym_preproc_if_token1] = ACTIONS(3369), + [ts_builtin_sym_end] = ACTIONS(3389), + [sym__identifier_token] = ACTIONS(3387), + [anon_sym_extern] = ACTIONS(3387), + [anon_sym_alias] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_unsafe] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_ref] = ACTIONS(3387), + [anon_sym_struct] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_delegate] = ACTIONS(3387), + [anon_sym_record] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_file] = ACTIONS(3387), + [anon_sym_fixed] = ACTIONS(3387), + [anon_sym_internal] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_partial] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_required] = ACTIONS(3387), + [anon_sym_sealed] = ACTIONS(3387), + [anon_sym_virtual] = ACTIONS(3387), + [anon_sym_volatile] = ACTIONS(3387), + [anon_sym_where] = ACTIONS(3387), + [anon_sym_notnull] = ACTIONS(3387), + [anon_sym_unmanaged] = ACTIONS(3387), + [anon_sym_checked] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3387), + [anon_sym_false] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_this] = ACTIONS(3387), + [anon_sym_scoped] = ACTIONS(3387), + [anon_sym_base] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [sym_predefined_type] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_unchecked] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_lock] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_when] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_foreach] = ACTIONS(3387), + [anon_sym_goto] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_from] = ACTIONS(3387), + [anon_sym_into] = ACTIONS(3387), + [anon_sym_join] = ACTIONS(3387), + [anon_sym_on] = ACTIONS(3387), + [anon_sym_equals] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_orderby] = ACTIONS(3387), + [anon_sym_ascending] = ACTIONS(3387), + [anon_sym_descending] = ACTIONS(3387), + [anon_sym_group] = ACTIONS(3387), + [anon_sym_by] = ACTIONS(3387), + [anon_sym_select] = ACTIONS(3387), + [anon_sym_stackalloc] = ACTIONS(3387), + [anon_sym_sizeof] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym___makeref] = ACTIONS(3387), + [anon_sym___reftype] = ACTIONS(3387), + [anon_sym___refvalue] = ACTIONS(3387), + [sym_null_literal] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3389), + [sym_integer_literal] = ACTIONS(3387), + [sym_real_literal] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [sym_verbatim_string_literal] = ACTIONS(3389), + [aux_sym_preproc_if_token1] = ACTIONS(3389), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388241,10 +388276,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3369), - [sym_interpolation_verbatim_start] = ACTIONS(3369), - [sym_interpolation_raw_start] = ACTIONS(3369), - [sym_raw_string_start] = ACTIONS(3369), + [sym_interpolation_regular_start] = ACTIONS(3389), + [sym_interpolation_verbatim_start] = ACTIONS(3389), + [sym_interpolation_raw_start] = ACTIONS(3389), + [sym_raw_string_start] = ACTIONS(3389), }, [2089] = { [sym_preproc_region] = STATE(2089), @@ -388256,121 +388291,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2089), [sym_preproc_define] = STATE(2089), [sym_preproc_undef] = STATE(2089), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym__identifier_token] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym_global] = ACTIONS(3489), - [anon_sym_using] = ACTIONS(3489), - [anon_sym_unsafe] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_namespace] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_ref] = ACTIONS(3489), - [anon_sym_struct] = ACTIONS(3489), - [anon_sym_enum] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3487), - [anon_sym_interface] = ACTIONS(3489), - [anon_sym_delegate] = ACTIONS(3489), - [anon_sym_record] = ACTIONS(3489), - [anon_sym_abstract] = ACTIONS(3489), - [anon_sym_async] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_file] = ACTIONS(3489), - [anon_sym_fixed] = ACTIONS(3489), - [anon_sym_internal] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_override] = ACTIONS(3489), - [anon_sym_partial] = ACTIONS(3489), - [anon_sym_private] = ACTIONS(3489), - [anon_sym_protected] = ACTIONS(3489), - [anon_sym_public] = ACTIONS(3489), - [anon_sym_readonly] = ACTIONS(3489), - [anon_sym_required] = ACTIONS(3489), - [anon_sym_sealed] = ACTIONS(3489), - [anon_sym_virtual] = ACTIONS(3489), - [anon_sym_volatile] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_notnull] = ACTIONS(3489), - [anon_sym_unmanaged] = ACTIONS(3489), - [anon_sym_checked] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3487), - [anon_sym_TILDE] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_this] = ACTIONS(3489), - [anon_sym_scoped] = ACTIONS(3489), - [anon_sym_base] = ACTIONS(3489), - [anon_sym_var] = ACTIONS(3489), - [sym_predefined_type] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_unchecked] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_lock] = ACTIONS(3489), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_switch] = ACTIONS(3489), - [anon_sym_default] = ACTIONS(3489), - [anon_sym_throw] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_when] = ACTIONS(3489), - [anon_sym_await] = ACTIONS(3489), - [anon_sym_foreach] = ACTIONS(3489), - [anon_sym_goto] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3487), - [anon_sym_from] = ACTIONS(3489), - [anon_sym_into] = ACTIONS(3489), - [anon_sym_join] = ACTIONS(3489), - [anon_sym_on] = ACTIONS(3489), - [anon_sym_equals] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_orderby] = ACTIONS(3489), - [anon_sym_ascending] = ACTIONS(3489), - [anon_sym_descending] = ACTIONS(3489), - [anon_sym_group] = ACTIONS(3489), - [anon_sym_by] = ACTIONS(3489), - [anon_sym_select] = ACTIONS(3489), - [anon_sym_stackalloc] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3489), - [anon_sym_typeof] = ACTIONS(3489), - [anon_sym___makeref] = ACTIONS(3489), - [anon_sym___reftype] = ACTIONS(3489), - [anon_sym___refvalue] = ACTIONS(3489), - [sym_null_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3487), - [sym_integer_literal] = ACTIONS(3489), - [sym_real_literal] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_verbatim_string_literal] = ACTIONS(3487), - [aux_sym_preproc_if_token1] = ACTIONS(3487), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3487), - [sym_interpolation_verbatim_start] = ACTIONS(3487), - [sym_interpolation_raw_start] = ACTIONS(3487), - [sym_raw_string_start] = ACTIONS(3487), + [ts_builtin_sym_end] = ACTIONS(3429), + [sym__identifier_token] = ACTIONS(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_unsafe] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_ref] = ACTIONS(3427), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_delegate] = ACTIONS(3427), + [anon_sym_record] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_file] = ACTIONS(3427), + [anon_sym_fixed] = ACTIONS(3427), + [anon_sym_internal] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_partial] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_required] = ACTIONS(3427), + [anon_sym_sealed] = ACTIONS(3427), + [anon_sym_virtual] = ACTIONS(3427), + [anon_sym_volatile] = ACTIONS(3427), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_notnull] = ACTIONS(3427), + [anon_sym_unmanaged] = ACTIONS(3427), + [anon_sym_checked] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_true] = ACTIONS(3427), + [anon_sym_false] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(3427), + [anon_sym_scoped] = ACTIONS(3427), + [anon_sym_base] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [sym_predefined_type] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_unchecked] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_lock] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_foreach] = ACTIONS(3427), + [anon_sym_goto] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_into] = ACTIONS(3427), + [anon_sym_join] = ACTIONS(3427), + [anon_sym_on] = ACTIONS(3427), + [anon_sym_equals] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_orderby] = ACTIONS(3427), + [anon_sym_ascending] = ACTIONS(3427), + [anon_sym_descending] = ACTIONS(3427), + [anon_sym_group] = ACTIONS(3427), + [anon_sym_by] = ACTIONS(3427), + [anon_sym_select] = ACTIONS(3427), + [anon_sym_stackalloc] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym___makeref] = ACTIONS(3427), + [anon_sym___reftype] = ACTIONS(3427), + [anon_sym___refvalue] = ACTIONS(3427), + [sym_null_literal] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), + [sym_integer_literal] = ACTIONS(3427), + [sym_real_literal] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_verbatim_string_literal] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3429), + [sym_interpolation_verbatim_start] = ACTIONS(3429), + [sym_interpolation_raw_start] = ACTIONS(3429), + [sym_raw_string_start] = ACTIONS(3429), }, [2090] = { [sym_preproc_region] = STATE(2090), @@ -388382,121 +388417,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2090), [sym_preproc_define] = STATE(2090), [sym_preproc_undef] = STATE(2090), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym__identifier_token] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym_global] = ACTIONS(3489), - [anon_sym_using] = ACTIONS(3489), - [anon_sym_unsafe] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_namespace] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_ref] = ACTIONS(3489), - [anon_sym_struct] = ACTIONS(3489), - [anon_sym_enum] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3487), - [anon_sym_interface] = ACTIONS(3489), - [anon_sym_delegate] = ACTIONS(3489), - [anon_sym_record] = ACTIONS(3489), - [anon_sym_abstract] = ACTIONS(3489), - [anon_sym_async] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_file] = ACTIONS(3489), - [anon_sym_fixed] = ACTIONS(3489), - [anon_sym_internal] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_override] = ACTIONS(3489), - [anon_sym_partial] = ACTIONS(3489), - [anon_sym_private] = ACTIONS(3489), - [anon_sym_protected] = ACTIONS(3489), - [anon_sym_public] = ACTIONS(3489), - [anon_sym_readonly] = ACTIONS(3489), - [anon_sym_required] = ACTIONS(3489), - [anon_sym_sealed] = ACTIONS(3489), - [anon_sym_virtual] = ACTIONS(3489), - [anon_sym_volatile] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_notnull] = ACTIONS(3489), - [anon_sym_unmanaged] = ACTIONS(3489), - [anon_sym_checked] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3487), - [anon_sym_TILDE] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_this] = ACTIONS(3489), - [anon_sym_scoped] = ACTIONS(3489), - [anon_sym_base] = ACTIONS(3489), - [anon_sym_var] = ACTIONS(3489), - [sym_predefined_type] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_unchecked] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_lock] = ACTIONS(3489), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_switch] = ACTIONS(3489), - [anon_sym_default] = ACTIONS(3489), - [anon_sym_throw] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_when] = ACTIONS(3489), - [anon_sym_await] = ACTIONS(3489), - [anon_sym_foreach] = ACTIONS(3489), - [anon_sym_goto] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3487), - [anon_sym_from] = ACTIONS(3489), - [anon_sym_into] = ACTIONS(3489), - [anon_sym_join] = ACTIONS(3489), - [anon_sym_on] = ACTIONS(3489), - [anon_sym_equals] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_orderby] = ACTIONS(3489), - [anon_sym_ascending] = ACTIONS(3489), - [anon_sym_descending] = ACTIONS(3489), - [anon_sym_group] = ACTIONS(3489), - [anon_sym_by] = ACTIONS(3489), - [anon_sym_select] = ACTIONS(3489), - [anon_sym_stackalloc] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3489), - [anon_sym_typeof] = ACTIONS(3489), - [anon_sym___makeref] = ACTIONS(3489), - [anon_sym___reftype] = ACTIONS(3489), - [anon_sym___refvalue] = ACTIONS(3489), - [sym_null_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3487), - [sym_integer_literal] = ACTIONS(3489), - [sym_real_literal] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_verbatim_string_literal] = ACTIONS(3487), - [aux_sym_preproc_if_token1] = ACTIONS(3487), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3487), - [sym_interpolation_verbatim_start] = ACTIONS(3487), - [sym_interpolation_raw_start] = ACTIONS(3487), - [sym_raw_string_start] = ACTIONS(3487), + [ts_builtin_sym_end] = ACTIONS(3437), + [sym__identifier_token] = ACTIONS(3435), + [anon_sym_extern] = ACTIONS(3435), + [anon_sym_alias] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_global] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_unsafe] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_ref] = ACTIONS(3435), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_delegate] = ACTIONS(3435), + [anon_sym_record] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_file] = ACTIONS(3435), + [anon_sym_fixed] = ACTIONS(3435), + [anon_sym_internal] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_partial] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_required] = ACTIONS(3435), + [anon_sym_sealed] = ACTIONS(3435), + [anon_sym_virtual] = ACTIONS(3435), + [anon_sym_volatile] = ACTIONS(3435), + [anon_sym_where] = ACTIONS(3435), + [anon_sym_notnull] = ACTIONS(3435), + [anon_sym_unmanaged] = ACTIONS(3435), + [anon_sym_checked] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [anon_sym_true] = ACTIONS(3435), + [anon_sym_false] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_this] = ACTIONS(3435), + [anon_sym_scoped] = ACTIONS(3435), + [anon_sym_base] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [sym_predefined_type] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_unchecked] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_lock] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_default] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_foreach] = ACTIONS(3435), + [anon_sym_goto] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3435), + [anon_sym_into] = ACTIONS(3435), + [anon_sym_join] = ACTIONS(3435), + [anon_sym_on] = ACTIONS(3435), + [anon_sym_equals] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_orderby] = ACTIONS(3435), + [anon_sym_ascending] = ACTIONS(3435), + [anon_sym_descending] = ACTIONS(3435), + [anon_sym_group] = ACTIONS(3435), + [anon_sym_by] = ACTIONS(3435), + [anon_sym_select] = ACTIONS(3435), + [anon_sym_stackalloc] = ACTIONS(3435), + [anon_sym_sizeof] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym___makeref] = ACTIONS(3435), + [anon_sym___reftype] = ACTIONS(3435), + [anon_sym___refvalue] = ACTIONS(3435), + [sym_null_literal] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3437), + [sym_integer_literal] = ACTIONS(3435), + [sym_real_literal] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [sym_verbatim_string_literal] = ACTIONS(3437), + [aux_sym_preproc_if_token1] = ACTIONS(3437), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3437), + [sym_interpolation_verbatim_start] = ACTIONS(3437), + [sym_interpolation_raw_start] = ACTIONS(3437), + [sym_raw_string_start] = ACTIONS(3437), }, [2091] = { [sym_preproc_region] = STATE(2091), @@ -388508,107 +388543,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2091), [sym_preproc_define] = STATE(2091), [sym_preproc_undef] = STATE(2091), - [ts_builtin_sym_end] = ACTIONS(3413), - [sym__identifier_token] = ACTIONS(3411), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym_alias] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_global] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_ref] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_delegate] = ACTIONS(3411), - [anon_sym_record] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_file] = ACTIONS(3411), - [anon_sym_fixed] = ACTIONS(3411), - [anon_sym_internal] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_partial] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_required] = ACTIONS(3411), - [anon_sym_sealed] = ACTIONS(3411), - [anon_sym_virtual] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [anon_sym_where] = ACTIONS(3411), - [anon_sym_notnull] = ACTIONS(3411), - [anon_sym_unmanaged] = ACTIONS(3411), - [anon_sym_checked] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_this] = ACTIONS(3411), - [anon_sym_scoped] = ACTIONS(3411), - [anon_sym_base] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [sym_predefined_type] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_unchecked] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_when] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_foreach] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [anon_sym_from] = ACTIONS(3411), - [anon_sym_into] = ACTIONS(3411), - [anon_sym_join] = ACTIONS(3411), - [anon_sym_on] = ACTIONS(3411), - [anon_sym_equals] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_orderby] = ACTIONS(3411), - [anon_sym_ascending] = ACTIONS(3411), - [anon_sym_descending] = ACTIONS(3411), - [anon_sym_group] = ACTIONS(3411), - [anon_sym_by] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_stackalloc] = ACTIONS(3411), - [anon_sym_sizeof] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym___makeref] = ACTIONS(3411), - [anon_sym___reftype] = ACTIONS(3411), - [anon_sym___refvalue] = ACTIONS(3411), - [sym_null_literal] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3413), - [sym_integer_literal] = ACTIONS(3411), - [sym_real_literal] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym_verbatim_string_literal] = ACTIONS(3413), - [aux_sym_preproc_if_token1] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(3373), + [sym__identifier_token] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_alias] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_unsafe] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_ref] = ACTIONS(3371), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_delegate] = ACTIONS(3371), + [anon_sym_record] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_file] = ACTIONS(3371), + [anon_sym_fixed] = ACTIONS(3371), + [anon_sym_internal] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_partial] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_required] = ACTIONS(3371), + [anon_sym_sealed] = ACTIONS(3371), + [anon_sym_virtual] = ACTIONS(3371), + [anon_sym_volatile] = ACTIONS(3371), + [anon_sym_where] = ACTIONS(3371), + [anon_sym_notnull] = ACTIONS(3371), + [anon_sym_unmanaged] = ACTIONS(3371), + [anon_sym_checked] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_CARET] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_scoped] = ACTIONS(3371), + [anon_sym_base] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [sym_predefined_type] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_unchecked] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_lock] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_when] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_foreach] = ACTIONS(3371), + [anon_sym_goto] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3373), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_into] = ACTIONS(3371), + [anon_sym_join] = ACTIONS(3371), + [anon_sym_on] = ACTIONS(3371), + [anon_sym_equals] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_orderby] = ACTIONS(3371), + [anon_sym_ascending] = ACTIONS(3371), + [anon_sym_descending] = ACTIONS(3371), + [anon_sym_group] = ACTIONS(3371), + [anon_sym_by] = ACTIONS(3371), + [anon_sym_select] = ACTIONS(3371), + [anon_sym_stackalloc] = ACTIONS(3371), + [anon_sym_sizeof] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym___makeref] = ACTIONS(3371), + [anon_sym___reftype] = ACTIONS(3371), + [anon_sym___refvalue] = ACTIONS(3371), + [sym_null_literal] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3373), + [sym_integer_literal] = ACTIONS(3371), + [sym_real_literal] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [sym_verbatim_string_literal] = ACTIONS(3373), + [aux_sym_preproc_if_token1] = ACTIONS(3373), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388619,10 +388654,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3413), - [sym_interpolation_verbatim_start] = ACTIONS(3413), - [sym_interpolation_raw_start] = ACTIONS(3413), - [sym_raw_string_start] = ACTIONS(3413), + [sym_interpolation_regular_start] = ACTIONS(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), }, [2092] = { [sym_preproc_region] = STATE(2092), @@ -388634,258 +388669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2092), [sym_preproc_define] = STATE(2092), [sym_preproc_undef] = STATE(2092), - [ts_builtin_sym_end] = ACTIONS(3417), - [sym__identifier_token] = ACTIONS(3415), - [anon_sym_extern] = ACTIONS(3415), - [anon_sym_alias] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_global] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_ref] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_delegate] = ACTIONS(3415), - [anon_sym_record] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_file] = ACTIONS(3415), - [anon_sym_fixed] = ACTIONS(3415), - [anon_sym_internal] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_partial] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_required] = ACTIONS(3415), - [anon_sym_sealed] = ACTIONS(3415), - [anon_sym_virtual] = ACTIONS(3415), - [anon_sym_volatile] = ACTIONS(3415), - [anon_sym_where] = ACTIONS(3415), - [anon_sym_notnull] = ACTIONS(3415), - [anon_sym_unmanaged] = ACTIONS(3415), - [anon_sym_checked] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_this] = ACTIONS(3415), - [anon_sym_scoped] = ACTIONS(3415), - [anon_sym_base] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [sym_predefined_type] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_unchecked] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_when] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_foreach] = ACTIONS(3415), - [anon_sym_goto] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3417), - [anon_sym_from] = ACTIONS(3415), - [anon_sym_into] = ACTIONS(3415), - [anon_sym_join] = ACTIONS(3415), - [anon_sym_on] = ACTIONS(3415), - [anon_sym_equals] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_orderby] = ACTIONS(3415), - [anon_sym_ascending] = ACTIONS(3415), - [anon_sym_descending] = ACTIONS(3415), - [anon_sym_group] = ACTIONS(3415), - [anon_sym_by] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_stackalloc] = ACTIONS(3415), - [anon_sym_sizeof] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym___makeref] = ACTIONS(3415), - [anon_sym___reftype] = ACTIONS(3415), - [anon_sym___refvalue] = ACTIONS(3415), - [sym_null_literal] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3417), - [sym_integer_literal] = ACTIONS(3415), - [sym_real_literal] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [sym_verbatim_string_literal] = ACTIONS(3417), - [aux_sym_preproc_if_token1] = ACTIONS(3417), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3417), - [sym_interpolation_verbatim_start] = ACTIONS(3417), - [sym_interpolation_raw_start] = ACTIONS(3417), - [sym_raw_string_start] = ACTIONS(3417), - }, - [2093] = { - [sym_preproc_region] = STATE(2093), - [sym_preproc_endregion] = STATE(2093), - [sym_preproc_line] = STATE(2093), - [sym_preproc_pragma] = STATE(2093), - [sym_preproc_nullable] = STATE(2093), - [sym_preproc_error] = STATE(2093), - [sym_preproc_warning] = STATE(2093), - [sym_preproc_define] = STATE(2093), - [sym_preproc_undef] = STATE(2093), - [ts_builtin_sym_end] = ACTIONS(3421), - [sym__identifier_token] = ACTIONS(3419), - [anon_sym_extern] = ACTIONS(3419), - [anon_sym_alias] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_global] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_ref] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_delegate] = ACTIONS(3419), - [anon_sym_record] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_file] = ACTIONS(3419), - [anon_sym_fixed] = ACTIONS(3419), - [anon_sym_internal] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_partial] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_required] = ACTIONS(3419), - [anon_sym_sealed] = ACTIONS(3419), - [anon_sym_virtual] = ACTIONS(3419), - [anon_sym_volatile] = ACTIONS(3419), - [anon_sym_where] = ACTIONS(3419), - [anon_sym_notnull] = ACTIONS(3419), - [anon_sym_unmanaged] = ACTIONS(3419), - [anon_sym_checked] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_true] = ACTIONS(3419), - [anon_sym_false] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_this] = ACTIONS(3419), - [anon_sym_scoped] = ACTIONS(3419), - [anon_sym_base] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [sym_predefined_type] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_unchecked] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_when] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_foreach] = ACTIONS(3419), - [anon_sym_goto] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3421), - [anon_sym_from] = ACTIONS(3419), - [anon_sym_into] = ACTIONS(3419), - [anon_sym_join] = ACTIONS(3419), - [anon_sym_on] = ACTIONS(3419), - [anon_sym_equals] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_orderby] = ACTIONS(3419), - [anon_sym_ascending] = ACTIONS(3419), - [anon_sym_descending] = ACTIONS(3419), - [anon_sym_group] = ACTIONS(3419), - [anon_sym_by] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_stackalloc] = ACTIONS(3419), - [anon_sym_sizeof] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym___makeref] = ACTIONS(3419), - [anon_sym___reftype] = ACTIONS(3419), - [anon_sym___refvalue] = ACTIONS(3419), - [sym_null_literal] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3421), - [sym_integer_literal] = ACTIONS(3419), - [sym_real_literal] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_verbatim_string_literal] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3421), - [sym_interpolation_verbatim_start] = ACTIONS(3421), - [sym_interpolation_raw_start] = ACTIONS(3421), - [sym_raw_string_start] = ACTIONS(3421), - }, - [2094] = { - [sym_preproc_region] = STATE(2094), - [sym_preproc_endregion] = STATE(2094), - [sym_preproc_line] = STATE(2094), - [sym_preproc_pragma] = STATE(2094), - [sym_preproc_nullable] = STATE(2094), - [sym_preproc_error] = STATE(2094), - [sym_preproc_warning] = STATE(2094), - [sym_preproc_define] = STATE(2094), - [sym_preproc_undef] = STATE(2094), [ts_builtin_sym_end] = ACTIONS(3425), [sym__identifier_token] = ACTIONS(3423), [anon_sym_extern] = ACTIONS(3423), @@ -388997,122 +388780,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3425), - [sym_interpolation_verbatim_start] = ACTIONS(3425), - [sym_interpolation_raw_start] = ACTIONS(3425), - [sym_raw_string_start] = ACTIONS(3425), + [sym_interpolation_regular_start] = ACTIONS(3425), + [sym_interpolation_verbatim_start] = ACTIONS(3425), + [sym_interpolation_raw_start] = ACTIONS(3425), + [sym_raw_string_start] = ACTIONS(3425), + }, + [2093] = { + [sym_preproc_region] = STATE(2093), + [sym_preproc_endregion] = STATE(2093), + [sym_preproc_line] = STATE(2093), + [sym_preproc_pragma] = STATE(2093), + [sym_preproc_nullable] = STATE(2093), + [sym_preproc_error] = STATE(2093), + [sym_preproc_warning] = STATE(2093), + [sym_preproc_define] = STATE(2093), + [sym_preproc_undef] = STATE(2093), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym__identifier_token] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym_alias] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_global] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_unsafe] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_ref] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_delegate] = ACTIONS(3486), + [anon_sym_record] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_file] = ACTIONS(3486), + [anon_sym_fixed] = ACTIONS(3486), + [anon_sym_internal] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_partial] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_sealed] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_where] = ACTIONS(3486), + [anon_sym_notnull] = ACTIONS(3486), + [anon_sym_unmanaged] = ACTIONS(3486), + [anon_sym_checked] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_true] = ACTIONS(3486), + [anon_sym_false] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_CARET] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_this] = ACTIONS(3486), + [anon_sym_scoped] = ACTIONS(3486), + [anon_sym_base] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [sym_predefined_type] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_unchecked] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_lock] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_when] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_foreach] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_DOT_DOT] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_into] = ACTIONS(3486), + [anon_sym_join] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_equals] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_orderby] = ACTIONS(3486), + [anon_sym_ascending] = ACTIONS(3486), + [anon_sym_descending] = ACTIONS(3486), + [anon_sym_group] = ACTIONS(3486), + [anon_sym_by] = ACTIONS(3486), + [anon_sym_select] = ACTIONS(3486), + [anon_sym_stackalloc] = ACTIONS(3486), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym___makeref] = ACTIONS(3486), + [anon_sym___reftype] = ACTIONS(3486), + [anon_sym___refvalue] = ACTIONS(3486), + [sym_null_literal] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3484), + [sym_integer_literal] = ACTIONS(3486), + [sym_real_literal] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_verbatim_string_literal] = ACTIONS(3484), + [aux_sym_preproc_if_token1] = ACTIONS(3484), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3484), + [sym_interpolation_verbatim_start] = ACTIONS(3484), + [sym_interpolation_raw_start] = ACTIONS(3484), + [sym_raw_string_start] = ACTIONS(3484), + }, + [2094] = { + [sym_preproc_region] = STATE(2094), + [sym_preproc_endregion] = STATE(2094), + [sym_preproc_line] = STATE(2094), + [sym_preproc_pragma] = STATE(2094), + [sym_preproc_nullable] = STATE(2094), + [sym_preproc_error] = STATE(2094), + [sym_preproc_warning] = STATE(2094), + [sym_preproc_define] = STATE(2094), + [sym_preproc_undef] = STATE(2094), + [ts_builtin_sym_end] = ACTIONS(3377), + [sym__identifier_token] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(3375), + [anon_sym_alias] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_ref] = ACTIONS(3375), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_delegate] = ACTIONS(3375), + [anon_sym_record] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_file] = ACTIONS(3375), + [anon_sym_fixed] = ACTIONS(3375), + [anon_sym_internal] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_partial] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_required] = ACTIONS(3375), + [anon_sym_sealed] = ACTIONS(3375), + [anon_sym_virtual] = ACTIONS(3375), + [anon_sym_volatile] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_notnull] = ACTIONS(3375), + [anon_sym_unmanaged] = ACTIONS(3375), + [anon_sym_checked] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_this] = ACTIONS(3375), + [anon_sym_scoped] = ACTIONS(3375), + [anon_sym_base] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [sym_predefined_type] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_unchecked] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_lock] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_when] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_foreach] = ACTIONS(3375), + [anon_sym_goto] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_into] = ACTIONS(3375), + [anon_sym_join] = ACTIONS(3375), + [anon_sym_on] = ACTIONS(3375), + [anon_sym_equals] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_orderby] = ACTIONS(3375), + [anon_sym_ascending] = ACTIONS(3375), + [anon_sym_descending] = ACTIONS(3375), + [anon_sym_group] = ACTIONS(3375), + [anon_sym_by] = ACTIONS(3375), + [anon_sym_select] = ACTIONS(3375), + [anon_sym_stackalloc] = ACTIONS(3375), + [anon_sym_sizeof] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym___makeref] = ACTIONS(3375), + [anon_sym___reftype] = ACTIONS(3375), + [anon_sym___refvalue] = ACTIONS(3375), + [sym_null_literal] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3377), + [sym_integer_literal] = ACTIONS(3375), + [sym_real_literal] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [sym_verbatim_string_literal] = ACTIONS(3377), + [aux_sym_preproc_if_token1] = ACTIONS(3377), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3377), + [sym_interpolation_verbatim_start] = ACTIONS(3377), + [sym_interpolation_raw_start] = ACTIONS(3377), + [sym_raw_string_start] = ACTIONS(3377), + }, + [2095] = { + [sym_preproc_region] = STATE(2095), + [sym_preproc_endregion] = STATE(2095), + [sym_preproc_line] = STATE(2095), + [sym_preproc_pragma] = STATE(2095), + [sym_preproc_nullable] = STATE(2095), + [sym_preproc_error] = STATE(2095), + [sym_preproc_warning] = STATE(2095), + [sym_preproc_define] = STATE(2095), + [sym_preproc_undef] = STATE(2095), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_extern] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_unsafe] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_ref] = ACTIONS(3431), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_delegate] = ACTIONS(3431), + [anon_sym_record] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_fixed] = ACTIONS(3431), + [anon_sym_internal] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_partial] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_required] = ACTIONS(3431), + [anon_sym_sealed] = ACTIONS(3431), + [anon_sym_virtual] = ACTIONS(3431), + [anon_sym_volatile] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_checked] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), + [anon_sym_true] = ACTIONS(3431), + [anon_sym_false] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_base] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [sym_predefined_type] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_unchecked] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_lock] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_foreach] = ACTIONS(3431), + [anon_sym_goto] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3433), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3431), + [anon_sym_join] = ACTIONS(3431), + [anon_sym_on] = ACTIONS(3431), + [anon_sym_equals] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_orderby] = ACTIONS(3431), + [anon_sym_ascending] = ACTIONS(3431), + [anon_sym_descending] = ACTIONS(3431), + [anon_sym_group] = ACTIONS(3431), + [anon_sym_by] = ACTIONS(3431), + [anon_sym_select] = ACTIONS(3431), + [anon_sym_stackalloc] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym___makeref] = ACTIONS(3431), + [anon_sym___reftype] = ACTIONS(3431), + [anon_sym___refvalue] = ACTIONS(3431), + [sym_null_literal] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [sym_integer_literal] = ACTIONS(3431), + [sym_real_literal] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_verbatim_string_literal] = ACTIONS(3433), + [aux_sym_preproc_if_token1] = ACTIONS(3433), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3433), + [sym_interpolation_verbatim_start] = ACTIONS(3433), + [sym_interpolation_raw_start] = ACTIONS(3433), + [sym_raw_string_start] = ACTIONS(3433), }, - [2095] = { - [sym_preproc_region] = STATE(2095), - [sym_preproc_endregion] = STATE(2095), - [sym_preproc_line] = STATE(2095), - [sym_preproc_pragma] = STATE(2095), - [sym_preproc_nullable] = STATE(2095), - [sym_preproc_error] = STATE(2095), - [sym_preproc_warning] = STATE(2095), - [sym_preproc_define] = STATE(2095), - [sym_preproc_undef] = STATE(2095), - [ts_builtin_sym_end] = ACTIONS(3361), - [sym__identifier_token] = ACTIONS(3359), - [anon_sym_extern] = ACTIONS(3359), - [anon_sym_alias] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_global] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_ref] = ACTIONS(3359), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_delegate] = ACTIONS(3359), - [anon_sym_record] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_file] = ACTIONS(3359), - [anon_sym_fixed] = ACTIONS(3359), - [anon_sym_internal] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_partial] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_required] = ACTIONS(3359), - [anon_sym_sealed] = ACTIONS(3359), - [anon_sym_virtual] = ACTIONS(3359), - [anon_sym_volatile] = ACTIONS(3359), - [anon_sym_where] = ACTIONS(3359), - [anon_sym_notnull] = ACTIONS(3359), - [anon_sym_unmanaged] = ACTIONS(3359), - [anon_sym_checked] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_this] = ACTIONS(3359), - [anon_sym_scoped] = ACTIONS(3359), - [anon_sym_base] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [sym_predefined_type] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_unchecked] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_when] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_foreach] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3361), - [anon_sym_from] = ACTIONS(3359), - [anon_sym_into] = ACTIONS(3359), - [anon_sym_join] = ACTIONS(3359), - [anon_sym_on] = ACTIONS(3359), - [anon_sym_equals] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_orderby] = ACTIONS(3359), - [anon_sym_ascending] = ACTIONS(3359), - [anon_sym_descending] = ACTIONS(3359), - [anon_sym_group] = ACTIONS(3359), - [anon_sym_by] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_stackalloc] = ACTIONS(3359), - [anon_sym_sizeof] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym___makeref] = ACTIONS(3359), - [anon_sym___reftype] = ACTIONS(3359), - [anon_sym___refvalue] = ACTIONS(3359), - [sym_null_literal] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3361), - [sym_integer_literal] = ACTIONS(3359), - [sym_real_literal] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [sym_verbatim_string_literal] = ACTIONS(3361), - [aux_sym_preproc_if_token1] = ACTIONS(3361), + [2096] = { + [sym_preproc_region] = STATE(2096), + [sym_preproc_endregion] = STATE(2096), + [sym_preproc_line] = STATE(2096), + [sym_preproc_pragma] = STATE(2096), + [sym_preproc_nullable] = STATE(2096), + [sym_preproc_error] = STATE(2096), + [sym_preproc_warning] = STATE(2096), + [sym_preproc_define] = STATE(2096), + [sym_preproc_undef] = STATE(2096), + [sym__identifier_token] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym_alias] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_global] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_ref] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_delegate] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_file] = ACTIONS(3150), + [anon_sym_fixed] = ACTIONS(3150), + [anon_sym_internal] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_partial] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_required] = ACTIONS(3150), + [anon_sym_sealed] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_where] = ACTIONS(3150), + [anon_sym_notnull] = ACTIONS(3150), + [anon_sym_unmanaged] = ACTIONS(3150), + [anon_sym_checked] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3150), + [anon_sym_false] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3150), + [anon_sym_scoped] = ACTIONS(3150), + [anon_sym_base] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [sym_predefined_type] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_unchecked] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_catch] = ACTIONS(3150), + [anon_sym_when] = ACTIONS(3150), + [anon_sym_finally] = ACTIONS(3150), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_foreach] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_DOT_DOT] = ACTIONS(3152), + [anon_sym_from] = ACTIONS(3150), + [anon_sym_into] = ACTIONS(3150), + [anon_sym_join] = ACTIONS(3150), + [anon_sym_on] = ACTIONS(3150), + [anon_sym_equals] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_orderby] = ACTIONS(3150), + [anon_sym_ascending] = ACTIONS(3150), + [anon_sym_descending] = ACTIONS(3150), + [anon_sym_group] = ACTIONS(3150), + [anon_sym_by] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_stackalloc] = ACTIONS(3150), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym___makeref] = ACTIONS(3150), + [anon_sym___reftype] = ACTIONS(3150), + [anon_sym___refvalue] = ACTIONS(3150), + [sym_null_literal] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_verbatim_string_literal] = ACTIONS(3152), + [aux_sym_preproc_if_token1] = ACTIONS(3152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -389123,21 +389282,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3361), - [sym_interpolation_verbatim_start] = ACTIONS(3361), - [sym_interpolation_raw_start] = ACTIONS(3361), - [sym_raw_string_start] = ACTIONS(3361), + [sym_interpolation_regular_start] = ACTIONS(3152), + [sym_interpolation_verbatim_start] = ACTIONS(3152), + [sym_interpolation_raw_start] = ACTIONS(3152), + [sym_raw_string_start] = ACTIONS(3152), }, - [2096] = { - [sym_preproc_region] = STATE(2096), - [sym_preproc_endregion] = STATE(2096), - [sym_preproc_line] = STATE(2096), - [sym_preproc_pragma] = STATE(2096), - [sym_preproc_nullable] = STATE(2096), - [sym_preproc_error] = STATE(2096), - [sym_preproc_warning] = STATE(2096), - [sym_preproc_define] = STATE(2096), - [sym_preproc_undef] = STATE(2096), + [2097] = { + [sym_preproc_region] = STATE(2097), + [sym_preproc_endregion] = STATE(2097), + [sym_preproc_line] = STATE(2097), + [sym_preproc_pragma] = STATE(2097), + [sym_preproc_nullable] = STATE(2097), + [sym_preproc_error] = STATE(2097), + [sym_preproc_warning] = STATE(2097), + [sym_preproc_define] = STATE(2097), + [sym_preproc_undef] = STATE(2097), [sym__identifier_token] = ACTIONS(3157), [anon_sym_extern] = ACTIONS(3157), [anon_sym_alias] = ACTIONS(3157), @@ -389252,16 +389411,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3159), [sym_raw_string_start] = ACTIONS(3159), }, - [2097] = { - [sym_preproc_region] = STATE(2097), - [sym_preproc_endregion] = STATE(2097), - [sym_preproc_line] = STATE(2097), - [sym_preproc_pragma] = STATE(2097), - [sym_preproc_nullable] = STATE(2097), - [sym_preproc_error] = STATE(2097), - [sym_preproc_warning] = STATE(2097), - [sym_preproc_define] = STATE(2097), - [sym_preproc_undef] = STATE(2097), + [2098] = { + [sym_preproc_region] = STATE(2098), + [sym_preproc_endregion] = STATE(2098), + [sym_preproc_line] = STATE(2098), + [sym_preproc_pragma] = STATE(2098), + [sym_preproc_nullable] = STATE(2098), + [sym_preproc_error] = STATE(2098), + [sym_preproc_warning] = STATE(2098), + [sym_preproc_define] = STATE(2098), + [sym_preproc_undef] = STATE(2098), [sym__identifier_token] = ACTIONS(3165), [anon_sym_extern] = ACTIONS(3165), [anon_sym_alias] = ACTIONS(3165), @@ -389376,130 +389535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3167), [sym_raw_string_start] = ACTIONS(3167), }, - [2098] = { - [sym_preproc_region] = STATE(2098), - [sym_preproc_endregion] = STATE(2098), - [sym_preproc_line] = STATE(2098), - [sym_preproc_pragma] = STATE(2098), - [sym_preproc_nullable] = STATE(2098), - [sym_preproc_error] = STATE(2098), - [sym_preproc_warning] = STATE(2098), - [sym_preproc_define] = STATE(2098), - [sym_preproc_undef] = STATE(2098), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_checked] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_this] = ACTIONS(2985), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_base] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_unchecked] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_catch] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_finally] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2985), - [anon_sym_foreach] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_stackalloc] = ACTIONS(2985), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym_typeof] = ACTIONS(2985), - [anon_sym___makeref] = ACTIONS(2985), - [anon_sym___reftype] = ACTIONS(2985), - [anon_sym___refvalue] = ACTIONS(2985), - [sym_null_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2987), - [sym_integer_literal] = ACTIONS(2985), - [sym_real_literal] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_verbatim_string_literal] = ACTIONS(2987), - [aux_sym_preproc_if_token1] = ACTIONS(2987), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2987), - [sym_interpolation_verbatim_start] = ACTIONS(2987), - [sym_interpolation_raw_start] = ACTIONS(2987), - [sym_raw_string_start] = ACTIONS(2987), - }, [2099] = { [sym_preproc_region] = STATE(2099), [sym_preproc_endregion] = STATE(2099), @@ -389510,130 +389545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2099), [sym_preproc_define] = STATE(2099), [sym_preproc_undef] = STATE(2099), - [sym__identifier_token] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_alias] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_global] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_unsafe] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_ref] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_delegate] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_file] = ACTIONS(3150), - [anon_sym_fixed] = ACTIONS(3150), - [anon_sym_internal] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_partial] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_required] = ACTIONS(3150), - [anon_sym_sealed] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3150), - [anon_sym_notnull] = ACTIONS(3150), - [anon_sym_unmanaged] = ACTIONS(3150), - [anon_sym_checked] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_true] = ACTIONS(3150), - [anon_sym_false] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_this] = ACTIONS(3150), - [anon_sym_scoped] = ACTIONS(3150), - [anon_sym_base] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [sym_predefined_type] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_unchecked] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_lock] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_case] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_catch] = ACTIONS(3150), - [anon_sym_when] = ACTIONS(3150), - [anon_sym_finally] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_foreach] = ACTIONS(3150), - [anon_sym_goto] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_from] = ACTIONS(3150), - [anon_sym_into] = ACTIONS(3150), - [anon_sym_join] = ACTIONS(3150), - [anon_sym_on] = ACTIONS(3150), - [anon_sym_equals] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_orderby] = ACTIONS(3150), - [anon_sym_ascending] = ACTIONS(3150), - [anon_sym_descending] = ACTIONS(3150), - [anon_sym_group] = ACTIONS(3150), - [anon_sym_by] = ACTIONS(3150), - [anon_sym_select] = ACTIONS(3150), - [anon_sym_stackalloc] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym___makeref] = ACTIONS(3150), - [anon_sym___reftype] = ACTIONS(3150), - [anon_sym___refvalue] = ACTIONS(3150), - [sym_null_literal] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3152), - [sym_integer_literal] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym_verbatim_string_literal] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3152), - [sym_interpolation_verbatim_start] = ACTIONS(3152), - [sym_interpolation_raw_start] = ACTIONS(3152), - [sym_raw_string_start] = ACTIONS(3152), - }, - [2100] = { - [sym_preproc_region] = STATE(2100), - [sym_preproc_endregion] = STATE(2100), - [sym_preproc_line] = STATE(2100), - [sym_preproc_pragma] = STATE(2100), - [sym_preproc_nullable] = STATE(2100), - [sym_preproc_error] = STATE(2100), - [sym_preproc_warning] = STATE(2100), - [sym_preproc_define] = STATE(2100), - [sym_preproc_undef] = STATE(2100), [sym__identifier_token] = ACTIONS(3161), [anon_sym_extern] = ACTIONS(3161), [anon_sym_alias] = ACTIONS(3161), @@ -389748,6 +389659,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3163), [sym_raw_string_start] = ACTIONS(3163), }, + [2100] = { + [sym_preproc_region] = STATE(2100), + [sym_preproc_endregion] = STATE(2100), + [sym_preproc_line] = STATE(2100), + [sym_preproc_pragma] = STATE(2100), + [sym_preproc_nullable] = STATE(2100), + [sym_preproc_error] = STATE(2100), + [sym_preproc_warning] = STATE(2100), + [sym_preproc_define] = STATE(2100), + [sym_preproc_undef] = STATE(2100), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_checked] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_base] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_unchecked] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_case] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_catch] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_finally] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_foreach] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_stackalloc] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2977), + [anon_sym___makeref] = ACTIONS(2977), + [anon_sym___reftype] = ACTIONS(2977), + [anon_sym___refvalue] = ACTIONS(2977), + [sym_null_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [sym_real_literal] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_verbatim_string_literal] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2979), + [sym_interpolation_verbatim_start] = ACTIONS(2979), + [sym_interpolation_raw_start] = ACTIONS(2979), + [sym_raw_string_start] = ACTIONS(2979), + }, [2101] = { [sym_preproc_region] = STATE(2101), [sym_preproc_endregion] = STATE(2101), @@ -389849,1355 +389884,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3491), [anon_sym_orderby] = ACTIONS(3491), [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2102] = { - [sym_preproc_region] = STATE(2102), - [sym_preproc_endregion] = STATE(2102), - [sym_preproc_line] = STATE(2102), - [sym_preproc_pragma] = STATE(2102), - [sym_preproc_nullable] = STATE(2102), - [sym_preproc_error] = STATE(2102), - [sym_preproc_warning] = STATE(2102), - [sym_preproc_define] = STATE(2102), - [sym_preproc_undef] = STATE(2102), - [sym__identifier_token] = ACTIONS(3225), - [anon_sym_extern] = ACTIONS(3225), - [anon_sym_alias] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_global] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_unsafe] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_ref] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_delegate] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_file] = ACTIONS(3225), - [anon_sym_fixed] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_partial] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_sealed] = ACTIONS(3225), - [anon_sym_virtual] = ACTIONS(3225), - [anon_sym_volatile] = ACTIONS(3225), - [anon_sym_where] = ACTIONS(3225), - [anon_sym_notnull] = ACTIONS(3225), - [anon_sym_unmanaged] = ACTIONS(3225), - [anon_sym_checked] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_this] = ACTIONS(3225), - [anon_sym_scoped] = ACTIONS(3225), - [anon_sym_base] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [sym_predefined_type] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_unchecked] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_lock] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_when] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_foreach] = ACTIONS(3225), - [anon_sym_goto] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_from] = ACTIONS(3225), - [anon_sym_into] = ACTIONS(3225), - [anon_sym_join] = ACTIONS(3225), - [anon_sym_on] = ACTIONS(3225), - [anon_sym_equals] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_orderby] = ACTIONS(3225), - [anon_sym_ascending] = ACTIONS(3225), - [anon_sym_descending] = ACTIONS(3225), - [anon_sym_group] = ACTIONS(3225), - [anon_sym_by] = ACTIONS(3225), - [anon_sym_select] = ACTIONS(3225), - [anon_sym_stackalloc] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym___makeref] = ACTIONS(3225), - [anon_sym___reftype] = ACTIONS(3225), - [anon_sym___refvalue] = ACTIONS(3225), - [sym_null_literal] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3227), - [sym_integer_literal] = ACTIONS(3225), - [sym_real_literal] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [sym_verbatim_string_literal] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3227), - [sym_interpolation_verbatim_start] = ACTIONS(3227), - [sym_interpolation_raw_start] = ACTIONS(3227), - [sym_raw_string_start] = ACTIONS(3227), - }, - [2103] = { - [sym_preproc_region] = STATE(2103), - [sym_preproc_endregion] = STATE(2103), - [sym_preproc_line] = STATE(2103), - [sym_preproc_pragma] = STATE(2103), - [sym_preproc_nullable] = STATE(2103), - [sym_preproc_error] = STATE(2103), - [sym_preproc_warning] = STATE(2103), - [sym_preproc_define] = STATE(2103), - [sym_preproc_undef] = STATE(2103), - [sym__identifier_token] = ACTIONS(3299), - [anon_sym_extern] = ACTIONS(3299), - [anon_sym_alias] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_global] = ACTIONS(3299), - [anon_sym_using] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_static] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_ref] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_delegate] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3299), - [anon_sym_async] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_file] = ACTIONS(3299), - [anon_sym_fixed] = ACTIONS(3299), - [anon_sym_internal] = ACTIONS(3299), - [anon_sym_new] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3299), - [anon_sym_partial] = ACTIONS(3299), - [anon_sym_private] = ACTIONS(3299), - [anon_sym_protected] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3299), - [anon_sym_readonly] = ACTIONS(3299), - [anon_sym_required] = ACTIONS(3299), - [anon_sym_sealed] = ACTIONS(3299), - [anon_sym_virtual] = ACTIONS(3299), - [anon_sym_volatile] = ACTIONS(3299), - [anon_sym_where] = ACTIONS(3299), - [anon_sym_notnull] = ACTIONS(3299), - [anon_sym_unmanaged] = ACTIONS(3299), - [anon_sym_checked] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_this] = ACTIONS(3299), - [anon_sym_scoped] = ACTIONS(3299), - [anon_sym_base] = ACTIONS(3299), - [anon_sym_var] = ACTIONS(3299), - [sym_predefined_type] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_unchecked] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_do] = ACTIONS(3299), - [anon_sym_while] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_yield] = ACTIONS(3299), - [anon_sym_switch] = ACTIONS(3299), - [anon_sym_case] = ACTIONS(3299), - [anon_sym_default] = ACTIONS(3299), - [anon_sym_throw] = ACTIONS(3299), - [anon_sym_try] = ACTIONS(3299), - [anon_sym_when] = ACTIONS(3299), - [anon_sym_await] = ACTIONS(3299), - [anon_sym_foreach] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_DOT_DOT] = ACTIONS(3301), - [anon_sym_from] = ACTIONS(3299), - [anon_sym_into] = ACTIONS(3299), - [anon_sym_join] = ACTIONS(3299), - [anon_sym_on] = ACTIONS(3299), - [anon_sym_equals] = ACTIONS(3299), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_orderby] = ACTIONS(3299), - [anon_sym_ascending] = ACTIONS(3299), - [anon_sym_descending] = ACTIONS(3299), - [anon_sym_group] = ACTIONS(3299), - [anon_sym_by] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_stackalloc] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3299), - [anon_sym_typeof] = ACTIONS(3299), - [anon_sym___makeref] = ACTIONS(3299), - [anon_sym___reftype] = ACTIONS(3299), - [anon_sym___refvalue] = ACTIONS(3299), - [sym_null_literal] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(3301), - [sym_integer_literal] = ACTIONS(3299), - [sym_real_literal] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(3301), - [sym_verbatim_string_literal] = ACTIONS(3301), - [aux_sym_preproc_if_token1] = ACTIONS(3301), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3301), - [sym_interpolation_verbatim_start] = ACTIONS(3301), - [sym_interpolation_raw_start] = ACTIONS(3301), - [sym_raw_string_start] = ACTIONS(3301), - }, - [2104] = { - [sym_preproc_region] = STATE(2104), - [sym_preproc_endregion] = STATE(2104), - [sym_preproc_line] = STATE(2104), - [sym_preproc_pragma] = STATE(2104), - [sym_preproc_nullable] = STATE(2104), - [sym_preproc_error] = STATE(2104), - [sym_preproc_warning] = STATE(2104), - [sym_preproc_define] = STATE(2104), - [sym_preproc_undef] = STATE(2104), - [sym__identifier_token] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_alias] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_global] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_unsafe] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_ref] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_delegate] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_file] = ACTIONS(3241), - [anon_sym_fixed] = ACTIONS(3241), - [anon_sym_internal] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_partial] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_required] = ACTIONS(3241), - [anon_sym_sealed] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_where] = ACTIONS(3241), - [anon_sym_notnull] = ACTIONS(3241), - [anon_sym_unmanaged] = ACTIONS(3241), - [anon_sym_checked] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_true] = ACTIONS(3241), - [anon_sym_false] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_this] = ACTIONS(3241), - [anon_sym_scoped] = ACTIONS(3241), - [anon_sym_base] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_unchecked] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_lock] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_when] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_foreach] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [anon_sym_from] = ACTIONS(3241), - [anon_sym_into] = ACTIONS(3241), - [anon_sym_join] = ACTIONS(3241), - [anon_sym_on] = ACTIONS(3241), - [anon_sym_equals] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_orderby] = ACTIONS(3241), - [anon_sym_ascending] = ACTIONS(3241), - [anon_sym_descending] = ACTIONS(3241), - [anon_sym_group] = ACTIONS(3241), - [anon_sym_by] = ACTIONS(3241), - [anon_sym_select] = ACTIONS(3241), - [anon_sym_stackalloc] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym___makeref] = ACTIONS(3241), - [anon_sym___reftype] = ACTIONS(3241), - [anon_sym___refvalue] = ACTIONS(3241), - [sym_null_literal] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3243), - [sym_integer_literal] = ACTIONS(3241), - [sym_real_literal] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_verbatim_string_literal] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3243), - [sym_interpolation_verbatim_start] = ACTIONS(3243), - [sym_interpolation_raw_start] = ACTIONS(3243), - [sym_raw_string_start] = ACTIONS(3243), - }, - [2105] = { - [sym_preproc_region] = STATE(2105), - [sym_preproc_endregion] = STATE(2105), - [sym_preproc_line] = STATE(2105), - [sym_preproc_pragma] = STATE(2105), - [sym_preproc_nullable] = STATE(2105), - [sym_preproc_error] = STATE(2105), - [sym_preproc_warning] = STATE(2105), - [sym_preproc_define] = STATE(2105), - [sym_preproc_undef] = STATE(2105), - [sym__identifier_token] = ACTIONS(3233), - [anon_sym_extern] = ACTIONS(3233), - [anon_sym_alias] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_global] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_unsafe] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_ref] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_delegate] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_file] = ACTIONS(3233), - [anon_sym_fixed] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_partial] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_sealed] = ACTIONS(3233), - [anon_sym_virtual] = ACTIONS(3233), - [anon_sym_volatile] = ACTIONS(3233), - [anon_sym_where] = ACTIONS(3233), - [anon_sym_notnull] = ACTIONS(3233), - [anon_sym_unmanaged] = ACTIONS(3233), - [anon_sym_checked] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_this] = ACTIONS(3233), - [anon_sym_scoped] = ACTIONS(3233), - [anon_sym_base] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [sym_predefined_type] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_unchecked] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_lock] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_when] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_foreach] = ACTIONS(3233), - [anon_sym_goto] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3235), - [anon_sym_from] = ACTIONS(3233), - [anon_sym_into] = ACTIONS(3233), - [anon_sym_join] = ACTIONS(3233), - [anon_sym_on] = ACTIONS(3233), - [anon_sym_equals] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_orderby] = ACTIONS(3233), - [anon_sym_ascending] = ACTIONS(3233), - [anon_sym_descending] = ACTIONS(3233), - [anon_sym_group] = ACTIONS(3233), - [anon_sym_by] = ACTIONS(3233), - [anon_sym_select] = ACTIONS(3233), - [anon_sym_stackalloc] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym___makeref] = ACTIONS(3233), - [anon_sym___reftype] = ACTIONS(3233), - [anon_sym___refvalue] = ACTIONS(3233), - [sym_null_literal] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3235), - [sym_integer_literal] = ACTIONS(3233), - [sym_real_literal] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym_verbatim_string_literal] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3235), - [sym_interpolation_verbatim_start] = ACTIONS(3235), - [sym_interpolation_raw_start] = ACTIONS(3235), - [sym_raw_string_start] = ACTIONS(3235), - }, - [2106] = { - [sym_preproc_region] = STATE(2106), - [sym_preproc_endregion] = STATE(2106), - [sym_preproc_line] = STATE(2106), - [sym_preproc_pragma] = STATE(2106), - [sym_preproc_nullable] = STATE(2106), - [sym_preproc_error] = STATE(2106), - [sym_preproc_warning] = STATE(2106), - [sym_preproc_define] = STATE(2106), - [sym_preproc_undef] = STATE(2106), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_ref] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_delegate] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_checked] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_this] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_base] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [sym_predefined_type] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_unchecked] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_case] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_foreach] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_stackalloc] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym___makeref] = ACTIONS(3205), - [anon_sym___reftype] = ACTIONS(3205), - [anon_sym___refvalue] = ACTIONS(3205), - [sym_null_literal] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3207), - [sym_integer_literal] = ACTIONS(3205), - [sym_real_literal] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [sym_verbatim_string_literal] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3207), - [sym_interpolation_verbatim_start] = ACTIONS(3207), - [sym_interpolation_raw_start] = ACTIONS(3207), - [sym_raw_string_start] = ACTIONS(3207), - }, - [2107] = { - [sym_preproc_region] = STATE(2107), - [sym_preproc_endregion] = STATE(2107), - [sym_preproc_line] = STATE(2107), - [sym_preproc_pragma] = STATE(2107), - [sym_preproc_nullable] = STATE(2107), - [sym_preproc_error] = STATE(2107), - [sym_preproc_warning] = STATE(2107), - [sym_preproc_define] = STATE(2107), - [sym_preproc_undef] = STATE(2107), - [sym__identifier_token] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_alias] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_global] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_ref] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_delegate] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_file] = ACTIONS(3249), - [anon_sym_fixed] = ACTIONS(3249), - [anon_sym_internal] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_partial] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_required] = ACTIONS(3249), - [anon_sym_sealed] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_where] = ACTIONS(3249), - [anon_sym_notnull] = ACTIONS(3249), - [anon_sym_unmanaged] = ACTIONS(3249), - [anon_sym_checked] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_true] = ACTIONS(3249), - [anon_sym_false] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_this] = ACTIONS(3249), - [anon_sym_scoped] = ACTIONS(3249), - [anon_sym_base] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [sym_predefined_type] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_unchecked] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_when] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_foreach] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(3251), - [anon_sym_from] = ACTIONS(3249), - [anon_sym_into] = ACTIONS(3249), - [anon_sym_join] = ACTIONS(3249), - [anon_sym_on] = ACTIONS(3249), - [anon_sym_equals] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_orderby] = ACTIONS(3249), - [anon_sym_ascending] = ACTIONS(3249), - [anon_sym_descending] = ACTIONS(3249), - [anon_sym_group] = ACTIONS(3249), - [anon_sym_by] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_stackalloc] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym___makeref] = ACTIONS(3249), - [anon_sym___reftype] = ACTIONS(3249), - [anon_sym___refvalue] = ACTIONS(3249), - [sym_null_literal] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3251), - [sym_integer_literal] = ACTIONS(3249), - [sym_real_literal] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_verbatim_string_literal] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3251), - [sym_interpolation_verbatim_start] = ACTIONS(3251), - [sym_interpolation_raw_start] = ACTIONS(3251), - [sym_raw_string_start] = ACTIONS(3251), - }, - [2108] = { - [sym_preproc_region] = STATE(2108), - [sym_preproc_endregion] = STATE(2108), - [sym_preproc_line] = STATE(2108), - [sym_preproc_pragma] = STATE(2108), - [sym_preproc_nullable] = STATE(2108), - [sym_preproc_error] = STATE(2108), - [sym_preproc_warning] = STATE(2108), - [sym_preproc_define] = STATE(2108), - [sym_preproc_undef] = STATE(2108), - [sym__identifier_token] = ACTIONS(3213), - [anon_sym_extern] = ACTIONS(3213), - [anon_sym_alias] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_ref] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_delegate] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_file] = ACTIONS(3213), - [anon_sym_fixed] = ACTIONS(3213), - [anon_sym_internal] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_partial] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_required] = ACTIONS(3213), - [anon_sym_sealed] = ACTIONS(3213), - [anon_sym_virtual] = ACTIONS(3213), - [anon_sym_volatile] = ACTIONS(3213), - [anon_sym_where] = ACTIONS(3213), - [anon_sym_notnull] = ACTIONS(3213), - [anon_sym_unmanaged] = ACTIONS(3213), - [anon_sym_checked] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_this] = ACTIONS(3213), - [anon_sym_scoped] = ACTIONS(3213), - [anon_sym_base] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [sym_predefined_type] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_unchecked] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_case] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_when] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_foreach] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_DOT_DOT] = ACTIONS(3215), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_into] = ACTIONS(3213), - [anon_sym_join] = ACTIONS(3213), - [anon_sym_on] = ACTIONS(3213), - [anon_sym_equals] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_orderby] = ACTIONS(3213), - [anon_sym_ascending] = ACTIONS(3213), - [anon_sym_descending] = ACTIONS(3213), - [anon_sym_group] = ACTIONS(3213), - [anon_sym_by] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_stackalloc] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym___makeref] = ACTIONS(3213), - [anon_sym___reftype] = ACTIONS(3213), - [anon_sym___refvalue] = ACTIONS(3213), - [sym_null_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3215), - [sym_integer_literal] = ACTIONS(3213), - [sym_real_literal] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(3215), - [sym_verbatim_string_literal] = ACTIONS(3215), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3215), - [sym_interpolation_verbatim_start] = ACTIONS(3215), - [sym_interpolation_raw_start] = ACTIONS(3215), - [sym_raw_string_start] = ACTIONS(3215), - }, - [2109] = { - [sym_preproc_region] = STATE(2109), - [sym_preproc_endregion] = STATE(2109), - [sym_preproc_line] = STATE(2109), - [sym_preproc_pragma] = STATE(2109), - [sym_preproc_nullable] = STATE(2109), - [sym_preproc_error] = STATE(2109), - [sym_preproc_warning] = STATE(2109), - [sym_preproc_define] = STATE(2109), - [sym_preproc_undef] = STATE(2109), - [sym__identifier_token] = ACTIONS(3237), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_alias] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_global] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_ref] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_delegate] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_file] = ACTIONS(3237), - [anon_sym_fixed] = ACTIONS(3237), - [anon_sym_internal] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_partial] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_required] = ACTIONS(3237), - [anon_sym_sealed] = ACTIONS(3237), - [anon_sym_virtual] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [anon_sym_where] = ACTIONS(3237), - [anon_sym_notnull] = ACTIONS(3237), - [anon_sym_unmanaged] = ACTIONS(3237), - [anon_sym_checked] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_true] = ACTIONS(3237), - [anon_sym_false] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_this] = ACTIONS(3237), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_base] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [sym_predefined_type] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_unchecked] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_when] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_foreach] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_from] = ACTIONS(3237), - [anon_sym_into] = ACTIONS(3237), - [anon_sym_join] = ACTIONS(3237), - [anon_sym_on] = ACTIONS(3237), - [anon_sym_equals] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_orderby] = ACTIONS(3237), - [anon_sym_ascending] = ACTIONS(3237), - [anon_sym_descending] = ACTIONS(3237), - [anon_sym_group] = ACTIONS(3237), - [anon_sym_by] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_stackalloc] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym___makeref] = ACTIONS(3237), - [anon_sym___reftype] = ACTIONS(3237), - [anon_sym___refvalue] = ACTIONS(3237), - [sym_null_literal] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3239), - [sym_integer_literal] = ACTIONS(3237), - [sym_real_literal] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym_verbatim_string_literal] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3239), - [sym_interpolation_verbatim_start] = ACTIONS(3239), - [sym_interpolation_raw_start] = ACTIONS(3239), - [sym_raw_string_start] = ACTIONS(3239), - }, - [2110] = { - [sym_preproc_region] = STATE(2110), - [sym_preproc_endregion] = STATE(2110), - [sym_preproc_line] = STATE(2110), - [sym_preproc_pragma] = STATE(2110), - [sym_preproc_nullable] = STATE(2110), - [sym_preproc_error] = STATE(2110), - [sym_preproc_warning] = STATE(2110), - [sym_preproc_define] = STATE(2110), - [sym_preproc_undef] = STATE(2110), - [sym__identifier_token] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_global] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_ref] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_delegate] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_file] = ACTIONS(3253), - [anon_sym_fixed] = ACTIONS(3253), - [anon_sym_internal] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_partial] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_required] = ACTIONS(3253), - [anon_sym_sealed] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_where] = ACTIONS(3253), - [anon_sym_notnull] = ACTIONS(3253), - [anon_sym_unmanaged] = ACTIONS(3253), - [anon_sym_checked] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_true] = ACTIONS(3253), - [anon_sym_false] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_this] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_base] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [sym_predefined_type] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_unchecked] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_foreach] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_from] = ACTIONS(3253), - [anon_sym_into] = ACTIONS(3253), - [anon_sym_join] = ACTIONS(3253), - [anon_sym_on] = ACTIONS(3253), - [anon_sym_equals] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_orderby] = ACTIONS(3253), - [anon_sym_ascending] = ACTIONS(3253), - [anon_sym_descending] = ACTIONS(3253), - [anon_sym_group] = ACTIONS(3253), - [anon_sym_by] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_stackalloc] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym___makeref] = ACTIONS(3253), - [anon_sym___reftype] = ACTIONS(3253), - [anon_sym___refvalue] = ACTIONS(3253), - [sym_null_literal] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3255), - [sym_integer_literal] = ACTIONS(3253), - [sym_real_literal] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_verbatim_string_literal] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3255), - [sym_interpolation_verbatim_start] = ACTIONS(3255), - [sym_interpolation_raw_start] = ACTIONS(3255), - [sym_raw_string_start] = ACTIONS(3255), - }, - [2111] = { - [sym_preproc_region] = STATE(2111), - [sym_preproc_endregion] = STATE(2111), - [sym_preproc_line] = STATE(2111), - [sym_preproc_pragma] = STATE(2111), - [sym_preproc_nullable] = STATE(2111), - [sym_preproc_error] = STATE(2111), - [sym_preproc_warning] = STATE(2111), - [sym_preproc_define] = STATE(2111), - [sym_preproc_undef] = STATE(2111), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), - }, - [2112] = { - [sym_preproc_region] = STATE(2112), - [sym_preproc_endregion] = STATE(2112), - [sym_preproc_line] = STATE(2112), - [sym_preproc_pragma] = STATE(2112), - [sym_preproc_nullable] = STATE(2112), - [sym_preproc_error] = STATE(2112), - [sym_preproc_warning] = STATE(2112), - [sym_preproc_define] = STATE(2112), - [sym_preproc_undef] = STATE(2112), - [sym__identifier_token] = ACTIONS(3347), - [anon_sym_extern] = ACTIONS(3347), - [anon_sym_alias] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_global] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_ref] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_delegate] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_file] = ACTIONS(3347), - [anon_sym_fixed] = ACTIONS(3347), - [anon_sym_internal] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_partial] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_required] = ACTIONS(3347), - [anon_sym_sealed] = ACTIONS(3347), - [anon_sym_virtual] = ACTIONS(3347), - [anon_sym_volatile] = ACTIONS(3347), - [anon_sym_where] = ACTIONS(3347), - [anon_sym_notnull] = ACTIONS(3347), - [anon_sym_unmanaged] = ACTIONS(3347), - [anon_sym_checked] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_this] = ACTIONS(3347), - [anon_sym_scoped] = ACTIONS(3347), - [anon_sym_base] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [sym_predefined_type] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_unchecked] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_when] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_foreach] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_DOT_DOT] = ACTIONS(3349), - [anon_sym_from] = ACTIONS(3347), - [anon_sym_into] = ACTIONS(3347), - [anon_sym_join] = ACTIONS(3347), - [anon_sym_on] = ACTIONS(3347), - [anon_sym_equals] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_orderby] = ACTIONS(3347), - [anon_sym_ascending] = ACTIONS(3347), - [anon_sym_descending] = ACTIONS(3347), - [anon_sym_group] = ACTIONS(3347), - [anon_sym_by] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_stackalloc] = ACTIONS(3347), - [anon_sym_sizeof] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym___makeref] = ACTIONS(3347), - [anon_sym___reftype] = ACTIONS(3347), - [anon_sym___refvalue] = ACTIONS(3347), - [sym_null_literal] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3349), - [sym_integer_literal] = ACTIONS(3347), - [sym_real_literal] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [sym_verbatim_string_literal] = ACTIONS(3349), - [aux_sym_preproc_if_token1] = ACTIONS(3349), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391208,240 +389905,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3349), - [sym_interpolation_verbatim_start] = ACTIONS(3349), - [sym_interpolation_raw_start] = ACTIONS(3349), - [sym_raw_string_start] = ACTIONS(3349), - }, - [2113] = { - [sym_preproc_region] = STATE(2113), - [sym_preproc_endregion] = STATE(2113), - [sym_preproc_line] = STATE(2113), - [sym_preproc_pragma] = STATE(2113), - [sym_preproc_nullable] = STATE(2113), - [sym_preproc_error] = STATE(2113), - [sym_preproc_warning] = STATE(2113), - [sym_preproc_define] = STATE(2113), - [sym_preproc_undef] = STATE(2113), - [sym__identifier_token] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_alias] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_global] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_ref] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_delegate] = ACTIONS(3261), - [anon_sym_abstract] = ACTIONS(3261), - [anon_sym_async] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_file] = ACTIONS(3261), - [anon_sym_fixed] = ACTIONS(3261), - [anon_sym_internal] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_override] = ACTIONS(3261), - [anon_sym_partial] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_readonly] = ACTIONS(3261), - [anon_sym_required] = ACTIONS(3261), - [anon_sym_sealed] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_where] = ACTIONS(3261), - [anon_sym_notnull] = ACTIONS(3261), - [anon_sym_unmanaged] = ACTIONS(3261), - [anon_sym_checked] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_true] = ACTIONS(3261), - [anon_sym_false] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_this] = ACTIONS(3261), - [anon_sym_scoped] = ACTIONS(3261), - [anon_sym_base] = ACTIONS(3261), - [anon_sym_var] = ACTIONS(3261), - [sym_predefined_type] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_unchecked] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_yield] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_when] = ACTIONS(3261), - [anon_sym_await] = ACTIONS(3261), - [anon_sym_foreach] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_else] = ACTIONS(3261), - [anon_sym_DOT_DOT] = ACTIONS(3263), - [anon_sym_from] = ACTIONS(3261), - [anon_sym_into] = ACTIONS(3261), - [anon_sym_join] = ACTIONS(3261), - [anon_sym_on] = ACTIONS(3261), - [anon_sym_equals] = ACTIONS(3261), - [anon_sym_let] = ACTIONS(3261), - [anon_sym_orderby] = ACTIONS(3261), - [anon_sym_ascending] = ACTIONS(3261), - [anon_sym_descending] = ACTIONS(3261), - [anon_sym_group] = ACTIONS(3261), - [anon_sym_by] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_stackalloc] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym_typeof] = ACTIONS(3261), - [anon_sym___makeref] = ACTIONS(3261), - [anon_sym___reftype] = ACTIONS(3261), - [anon_sym___refvalue] = ACTIONS(3261), - [sym_null_literal] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3263), - [sym_integer_literal] = ACTIONS(3261), - [sym_real_literal] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_verbatim_string_literal] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3263), - [sym_interpolation_verbatim_start] = ACTIONS(3263), - [sym_interpolation_raw_start] = ACTIONS(3263), - [sym_raw_string_start] = ACTIONS(3263), }, - [2114] = { - [sym_preproc_region] = STATE(2114), - [sym_preproc_endregion] = STATE(2114), - [sym_preproc_line] = STATE(2114), - [sym_preproc_pragma] = STATE(2114), - [sym_preproc_nullable] = STATE(2114), - [sym_preproc_error] = STATE(2114), - [sym_preproc_warning] = STATE(2114), - [sym_preproc_define] = STATE(2114), - [sym_preproc_undef] = STATE(2114), - [sym__identifier_token] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym_alias] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_global] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_ref] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_delegate] = ACTIONS(3177), - [anon_sym_abstract] = ACTIONS(3177), - [anon_sym_async] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_file] = ACTIONS(3177), - [anon_sym_fixed] = ACTIONS(3177), - [anon_sym_internal] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3177), - [anon_sym_partial] = ACTIONS(3177), - [anon_sym_private] = ACTIONS(3177), - [anon_sym_protected] = ACTIONS(3177), - [anon_sym_public] = ACTIONS(3177), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_required] = ACTIONS(3177), - [anon_sym_sealed] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_where] = ACTIONS(3177), - [anon_sym_notnull] = ACTIONS(3177), - [anon_sym_unmanaged] = ACTIONS(3177), - [anon_sym_checked] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_this] = ACTIONS(3177), - [anon_sym_scoped] = ACTIONS(3177), - [anon_sym_base] = ACTIONS(3177), - [anon_sym_var] = ACTIONS(3177), - [sym_predefined_type] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_unchecked] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_case] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_when] = ACTIONS(3177), - [anon_sym_await] = ACTIONS(3177), - [anon_sym_foreach] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_DOT_DOT] = ACTIONS(3179), - [anon_sym_from] = ACTIONS(3177), - [anon_sym_into] = ACTIONS(3177), - [anon_sym_join] = ACTIONS(3177), - [anon_sym_on] = ACTIONS(3177), - [anon_sym_equals] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_orderby] = ACTIONS(3177), - [anon_sym_ascending] = ACTIONS(3177), - [anon_sym_descending] = ACTIONS(3177), - [anon_sym_group] = ACTIONS(3177), - [anon_sym_by] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_stackalloc] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym_typeof] = ACTIONS(3177), - [anon_sym___makeref] = ACTIONS(3177), - [anon_sym___reftype] = ACTIONS(3177), - [anon_sym___refvalue] = ACTIONS(3177), - [sym_null_literal] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3179), - [sym_integer_literal] = ACTIONS(3177), - [sym_real_literal] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_verbatim_string_literal] = ACTIONS(3179), - [aux_sym_preproc_if_token1] = ACTIONS(3179), + [2102] = { + [sym_preproc_region] = STATE(2102), + [sym_preproc_endregion] = STATE(2102), + [sym_preproc_line] = STATE(2102), + [sym_preproc_pragma] = STATE(2102), + [sym_preproc_nullable] = STATE(2102), + [sym_preproc_error] = STATE(2102), + [sym_preproc_warning] = STATE(2102), + [sym_preproc_define] = STATE(2102), + [sym_preproc_undef] = STATE(2102), + [sym__identifier_token] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_alias] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_global] = ACTIONS(3335), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_unsafe] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_ref] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_delegate] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_file] = ACTIONS(3335), + [anon_sym_fixed] = ACTIONS(3335), + [anon_sym_internal] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_partial] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_protected] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_readonly] = ACTIONS(3335), + [anon_sym_required] = ACTIONS(3335), + [anon_sym_sealed] = ACTIONS(3335), + [anon_sym_virtual] = ACTIONS(3335), + [anon_sym_volatile] = ACTIONS(3335), + [anon_sym_where] = ACTIONS(3335), + [anon_sym_notnull] = ACTIONS(3335), + [anon_sym_unmanaged] = ACTIONS(3335), + [anon_sym_checked] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_this] = ACTIONS(3335), + [anon_sym_scoped] = ACTIONS(3335), + [anon_sym_base] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [sym_predefined_type] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_unchecked] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_lock] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_when] = ACTIONS(3335), + [anon_sym_await] = ACTIONS(3335), + [anon_sym_foreach] = ACTIONS(3335), + [anon_sym_goto] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_from] = ACTIONS(3335), + [anon_sym_into] = ACTIONS(3335), + [anon_sym_join] = ACTIONS(3335), + [anon_sym_on] = ACTIONS(3335), + [anon_sym_equals] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_orderby] = ACTIONS(3335), + [anon_sym_ascending] = ACTIONS(3335), + [anon_sym_descending] = ACTIONS(3335), + [anon_sym_group] = ACTIONS(3335), + [anon_sym_by] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_stackalloc] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym_typeof] = ACTIONS(3335), + [anon_sym___makeref] = ACTIONS(3335), + [anon_sym___reftype] = ACTIONS(3335), + [anon_sym___refvalue] = ACTIONS(3335), + [sym_null_literal] = ACTIONS(3335), + [anon_sym_SQUOTE] = ACTIONS(3337), + [sym_integer_literal] = ACTIONS(3335), + [sym_real_literal] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [sym_verbatim_string_literal] = ACTIONS(3337), + [aux_sym_preproc_if_token1] = ACTIONS(3337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391452,265 +390023,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3179), - [sym_interpolation_verbatim_start] = ACTIONS(3179), - [sym_interpolation_raw_start] = ACTIONS(3179), - [sym_raw_string_start] = ACTIONS(3179), + [sym_interpolation_regular_start] = ACTIONS(3337), + [sym_interpolation_verbatim_start] = ACTIONS(3337), + [sym_interpolation_raw_start] = ACTIONS(3337), + [sym_raw_string_start] = ACTIONS(3337), }, - [2115] = { - [sym_preproc_region] = STATE(2115), - [sym_preproc_endregion] = STATE(2115), - [sym_preproc_line] = STATE(2115), - [sym_preproc_pragma] = STATE(2115), - [sym_preproc_nullable] = STATE(2115), - [sym_preproc_error] = STATE(2115), - [sym_preproc_warning] = STATE(2115), - [sym_preproc_define] = STATE(2115), - [sym_preproc_undef] = STATE(2115), - [sym__identifier_token] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym_alias] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_global] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_unsafe] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_ref] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_delegate] = ACTIONS(3265), - [anon_sym_abstract] = ACTIONS(3265), - [anon_sym_async] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_file] = ACTIONS(3265), - [anon_sym_fixed] = ACTIONS(3265), - [anon_sym_internal] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_override] = ACTIONS(3265), - [anon_sym_partial] = ACTIONS(3265), - [anon_sym_private] = ACTIONS(3265), - [anon_sym_protected] = ACTIONS(3265), - [anon_sym_public] = ACTIONS(3265), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_required] = ACTIONS(3265), - [anon_sym_sealed] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_where] = ACTIONS(3265), - [anon_sym_notnull] = ACTIONS(3265), - [anon_sym_unmanaged] = ACTIONS(3265), - [anon_sym_checked] = ACTIONS(3265), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_true] = ACTIONS(3265), - [anon_sym_false] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_this] = ACTIONS(3265), - [anon_sym_scoped] = ACTIONS(3265), - [anon_sym_base] = ACTIONS(3265), - [anon_sym_var] = ACTIONS(3265), - [sym_predefined_type] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_unchecked] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_lock] = ACTIONS(3265), - [anon_sym_yield] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_when] = ACTIONS(3265), - [anon_sym_await] = ACTIONS(3265), - [anon_sym_foreach] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_else] = ACTIONS(3265), - [anon_sym_DOT_DOT] = ACTIONS(3267), - [anon_sym_from] = ACTIONS(3265), - [anon_sym_into] = ACTIONS(3265), - [anon_sym_join] = ACTIONS(3265), - [anon_sym_on] = ACTIONS(3265), - [anon_sym_equals] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3265), - [anon_sym_orderby] = ACTIONS(3265), - [anon_sym_ascending] = ACTIONS(3265), - [anon_sym_descending] = ACTIONS(3265), - [anon_sym_group] = ACTIONS(3265), - [anon_sym_by] = ACTIONS(3265), - [anon_sym_select] = ACTIONS(3265), - [anon_sym_stackalloc] = ACTIONS(3265), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym_typeof] = ACTIONS(3265), - [anon_sym___makeref] = ACTIONS(3265), - [anon_sym___reftype] = ACTIONS(3265), - [anon_sym___refvalue] = ACTIONS(3265), - [sym_null_literal] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3267), - [sym_integer_literal] = ACTIONS(3265), - [sym_real_literal] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_verbatim_string_literal] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3267), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3267), - [sym_interpolation_verbatim_start] = ACTIONS(3267), - [sym_interpolation_raw_start] = ACTIONS(3267), - [sym_raw_string_start] = ACTIONS(3267), + [2103] = { + [sym_preproc_region] = STATE(2103), + [sym_preproc_endregion] = STATE(2103), + [sym_preproc_line] = STATE(2103), + [sym_preproc_pragma] = STATE(2103), + [sym_preproc_nullable] = STATE(2103), + [sym_preproc_error] = STATE(2103), + [sym_preproc_warning] = STATE(2103), + [sym_preproc_define] = STATE(2103), + [sym_preproc_undef] = STATE(2103), + [sym__identifier_token] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_alias] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_ref] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_delegate] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_file] = ACTIONS(3219), + [anon_sym_fixed] = ACTIONS(3219), + [anon_sym_internal] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_partial] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_required] = ACTIONS(3219), + [anon_sym_sealed] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_where] = ACTIONS(3219), + [anon_sym_notnull] = ACTIONS(3219), + [anon_sym_unmanaged] = ACTIONS(3219), + [anon_sym_checked] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_this] = ACTIONS(3219), + [anon_sym_scoped] = ACTIONS(3219), + [anon_sym_base] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [sym_predefined_type] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_unchecked] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_when] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_foreach] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_from] = ACTIONS(3219), + [anon_sym_into] = ACTIONS(3219), + [anon_sym_join] = ACTIONS(3219), + [anon_sym_on] = ACTIONS(3219), + [anon_sym_equals] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_orderby] = ACTIONS(3219), + [anon_sym_ascending] = ACTIONS(3219), + [anon_sym_descending] = ACTIONS(3219), + [anon_sym_group] = ACTIONS(3219), + [anon_sym_by] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_stackalloc] = ACTIONS(3219), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym___makeref] = ACTIONS(3219), + [anon_sym___reftype] = ACTIONS(3219), + [anon_sym___refvalue] = ACTIONS(3219), + [sym_null_literal] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3221), + [sym_integer_literal] = ACTIONS(3219), + [sym_real_literal] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_verbatim_string_literal] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3221), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3221), + [sym_interpolation_verbatim_start] = ACTIONS(3221), + [sym_interpolation_raw_start] = ACTIONS(3221), + [sym_raw_string_start] = ACTIONS(3221), }, - [2116] = { - [sym_preproc_region] = STATE(2116), - [sym_preproc_endregion] = STATE(2116), - [sym_preproc_line] = STATE(2116), - [sym_preproc_pragma] = STATE(2116), - [sym_preproc_nullable] = STATE(2116), - [sym_preproc_error] = STATE(2116), - [sym_preproc_warning] = STATE(2116), - [sym_preproc_define] = STATE(2116), - [sym_preproc_undef] = STATE(2116), - [sym__identifier_token] = ACTIONS(3269), - [anon_sym_extern] = ACTIONS(3269), - [anon_sym_alias] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_global] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_ref] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_delegate] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_file] = ACTIONS(3269), - [anon_sym_fixed] = ACTIONS(3269), - [anon_sym_internal] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_partial] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_required] = ACTIONS(3269), - [anon_sym_sealed] = ACTIONS(3269), - [anon_sym_virtual] = ACTIONS(3269), - [anon_sym_volatile] = ACTIONS(3269), - [anon_sym_where] = ACTIONS(3269), - [anon_sym_notnull] = ACTIONS(3269), - [anon_sym_unmanaged] = ACTIONS(3269), - [anon_sym_checked] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3269), - [anon_sym_false] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_this] = ACTIONS(3269), - [anon_sym_scoped] = ACTIONS(3269), - [anon_sym_base] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [sym_predefined_type] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_unchecked] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_case] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_when] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_foreach] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_DOT_DOT] = ACTIONS(3271), - [anon_sym_from] = ACTIONS(3269), - [anon_sym_into] = ACTIONS(3269), - [anon_sym_join] = ACTIONS(3269), - [anon_sym_on] = ACTIONS(3269), - [anon_sym_equals] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_orderby] = ACTIONS(3269), - [anon_sym_ascending] = ACTIONS(3269), - [anon_sym_descending] = ACTIONS(3269), - [anon_sym_group] = ACTIONS(3269), - [anon_sym_by] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_stackalloc] = ACTIONS(3269), - [anon_sym_sizeof] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym___makeref] = ACTIONS(3269), - [anon_sym___reftype] = ACTIONS(3269), - [anon_sym___refvalue] = ACTIONS(3269), - [sym_null_literal] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3271), - [sym_integer_literal] = ACTIONS(3269), - [sym_real_literal] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_verbatim_string_literal] = ACTIONS(3271), - [aux_sym_preproc_if_token1] = ACTIONS(3271), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3271), - [sym_interpolation_verbatim_start] = ACTIONS(3271), - [sym_interpolation_raw_start] = ACTIONS(3271), - [sym_raw_string_start] = ACTIONS(3271), + [2104] = { + [sym_preproc_region] = STATE(2104), + [sym_preproc_endregion] = STATE(2104), + [sym_preproc_line] = STATE(2104), + [sym_preproc_pragma] = STATE(2104), + [sym_preproc_nullable] = STATE(2104), + [sym_preproc_error] = STATE(2104), + [sym_preproc_warning] = STATE(2104), + [sym_preproc_define] = STATE(2104), + [sym_preproc_undef] = STATE(2104), + [sym__identifier_token] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_alias] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_ref] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_delegate] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_file] = ACTIONS(3287), + [anon_sym_fixed] = ACTIONS(3287), + [anon_sym_internal] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_partial] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_required] = ACTIONS(3287), + [anon_sym_sealed] = ACTIONS(3287), + [anon_sym_virtual] = ACTIONS(3287), + [anon_sym_volatile] = ACTIONS(3287), + [anon_sym_where] = ACTIONS(3287), + [anon_sym_notnull] = ACTIONS(3287), + [anon_sym_unmanaged] = ACTIONS(3287), + [anon_sym_checked] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_this] = ACTIONS(3287), + [anon_sym_scoped] = ACTIONS(3287), + [anon_sym_base] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [sym_predefined_type] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_unchecked] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_lock] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_when] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_foreach] = ACTIONS(3287), + [anon_sym_goto] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3289), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_into] = ACTIONS(3287), + [anon_sym_join] = ACTIONS(3287), + [anon_sym_on] = ACTIONS(3287), + [anon_sym_equals] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_orderby] = ACTIONS(3287), + [anon_sym_ascending] = ACTIONS(3287), + [anon_sym_descending] = ACTIONS(3287), + [anon_sym_group] = ACTIONS(3287), + [anon_sym_by] = ACTIONS(3287), + [anon_sym_select] = ACTIONS(3287), + [anon_sym_stackalloc] = ACTIONS(3287), + [anon_sym_sizeof] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym___makeref] = ACTIONS(3287), + [anon_sym___reftype] = ACTIONS(3287), + [anon_sym___refvalue] = ACTIONS(3287), + [sym_null_literal] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3289), + [sym_integer_literal] = ACTIONS(3287), + [sym_real_literal] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [sym_verbatim_string_literal] = ACTIONS(3289), + [aux_sym_preproc_if_token1] = ACTIONS(3289), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3289), + [sym_interpolation_verbatim_start] = ACTIONS(3289), + [sym_interpolation_raw_start] = ACTIONS(3289), + [sym_raw_string_start] = ACTIONS(3289), }, - [2117] = { - [sym_preproc_region] = STATE(2117), - [sym_preproc_endregion] = STATE(2117), - [sym_preproc_line] = STATE(2117), - [sym_preproc_pragma] = STATE(2117), - [sym_preproc_nullable] = STATE(2117), - [sym_preproc_error] = STATE(2117), - [sym_preproc_warning] = STATE(2117), - [sym_preproc_define] = STATE(2117), - [sym_preproc_undef] = STATE(2117), + [2105] = { + [sym_preproc_region] = STATE(2105), + [sym_preproc_endregion] = STATE(2105), + [sym_preproc_line] = STATE(2105), + [sym_preproc_pragma] = STATE(2105), + [sym_preproc_nullable] = STATE(2105), + [sym_preproc_error] = STATE(2105), + [sym_preproc_warning] = STATE(2105), + [sym_preproc_define] = STATE(2105), + [sym_preproc_undef] = STATE(2105), [sym__identifier_token] = ACTIONS(3169), [anon_sym_extern] = ACTIONS(3169), [anon_sym_alias] = ACTIONS(3169), @@ -391823,138 +390394,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3171), [sym_raw_string_start] = ACTIONS(3171), }, - [2118] = { - [sym_preproc_region] = STATE(2118), - [sym_preproc_endregion] = STATE(2118), - [sym_preproc_line] = STATE(2118), - [sym_preproc_pragma] = STATE(2118), - [sym_preproc_nullable] = STATE(2118), - [sym_preproc_error] = STATE(2118), - [sym_preproc_warning] = STATE(2118), - [sym_preproc_define] = STATE(2118), - [sym_preproc_undef] = STATE(2118), - [sym__identifier_token] = ACTIONS(3273), - [anon_sym_extern] = ACTIONS(3273), - [anon_sym_alias] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_global] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_unsafe] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_ref] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_delegate] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_file] = ACTIONS(3273), - [anon_sym_fixed] = ACTIONS(3273), - [anon_sym_internal] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_partial] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_required] = ACTIONS(3273), - [anon_sym_sealed] = ACTIONS(3273), - [anon_sym_virtual] = ACTIONS(3273), - [anon_sym_volatile] = ACTIONS(3273), - [anon_sym_where] = ACTIONS(3273), - [anon_sym_notnull] = ACTIONS(3273), - [anon_sym_unmanaged] = ACTIONS(3273), - [anon_sym_checked] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3273), - [anon_sym_false] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_this] = ACTIONS(3273), - [anon_sym_scoped] = ACTIONS(3273), - [anon_sym_base] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [sym_predefined_type] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_unchecked] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_lock] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_when] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_foreach] = ACTIONS(3273), - [anon_sym_goto] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_from] = ACTIONS(3273), - [anon_sym_into] = ACTIONS(3273), - [anon_sym_join] = ACTIONS(3273), - [anon_sym_on] = ACTIONS(3273), - [anon_sym_equals] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_orderby] = ACTIONS(3273), - [anon_sym_ascending] = ACTIONS(3273), - [anon_sym_descending] = ACTIONS(3273), - [anon_sym_group] = ACTIONS(3273), - [anon_sym_by] = ACTIONS(3273), - [anon_sym_select] = ACTIONS(3273), - [anon_sym_stackalloc] = ACTIONS(3273), - [anon_sym_sizeof] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym___makeref] = ACTIONS(3273), - [anon_sym___reftype] = ACTIONS(3273), - [anon_sym___refvalue] = ACTIONS(3273), - [sym_null_literal] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3275), - [sym_integer_literal] = ACTIONS(3273), - [sym_real_literal] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [sym_verbatim_string_literal] = ACTIONS(3275), - [aux_sym_preproc_if_token1] = ACTIONS(3275), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3275), - [sym_interpolation_verbatim_start] = ACTIONS(3275), - [sym_interpolation_raw_start] = ACTIONS(3275), - [sym_raw_string_start] = ACTIONS(3275), - }, - [2119] = { - [sym_preproc_region] = STATE(2119), - [sym_preproc_endregion] = STATE(2119), - [sym_preproc_line] = STATE(2119), - [sym_preproc_pragma] = STATE(2119), - [sym_preproc_nullable] = STATE(2119), - [sym_preproc_error] = STATE(2119), - [sym_preproc_warning] = STATE(2119), - [sym_preproc_define] = STATE(2119), - [sym_preproc_undef] = STATE(2119), + [2106] = { + [sym_preproc_region] = STATE(2106), + [sym_preproc_endregion] = STATE(2106), + [sym_preproc_line] = STATE(2106), + [sym_preproc_pragma] = STATE(2106), + [sym_preproc_nullable] = STATE(2106), + [sym_preproc_error] = STATE(2106), + [sym_preproc_warning] = STATE(2106), + [sym_preproc_define] = STATE(2106), + [sym_preproc_undef] = STATE(2106), [sym__identifier_token] = ACTIONS(3303), [anon_sym_extern] = ACTIONS(3303), [anon_sym_alias] = ACTIONS(3303), @@ -392067,260 +390516,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3305), [sym_raw_string_start] = ACTIONS(3305), }, - [2120] = { - [sym_preproc_region] = STATE(2120), - [sym_preproc_endregion] = STATE(2120), - [sym_preproc_line] = STATE(2120), - [sym_preproc_pragma] = STATE(2120), - [sym_preproc_nullable] = STATE(2120), - [sym_preproc_error] = STATE(2120), - [sym_preproc_warning] = STATE(2120), - [sym_preproc_define] = STATE(2120), - [sym_preproc_undef] = STATE(2120), - [sym__identifier_token] = ACTIONS(3279), - [anon_sym_extern] = ACTIONS(3279), - [anon_sym_alias] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_global] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_ref] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_delegate] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_file] = ACTIONS(3279), - [anon_sym_fixed] = ACTIONS(3279), - [anon_sym_internal] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_partial] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_required] = ACTIONS(3279), - [anon_sym_sealed] = ACTIONS(3279), - [anon_sym_virtual] = ACTIONS(3279), - [anon_sym_volatile] = ACTIONS(3279), - [anon_sym_where] = ACTIONS(3279), - [anon_sym_notnull] = ACTIONS(3279), - [anon_sym_unmanaged] = ACTIONS(3279), - [anon_sym_checked] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3279), - [anon_sym_false] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_AMP] = ACTIONS(3281), - [anon_sym_this] = ACTIONS(3279), - [anon_sym_scoped] = ACTIONS(3279), - [anon_sym_base] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [sym_predefined_type] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_unchecked] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_when] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_foreach] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_from] = ACTIONS(3279), - [anon_sym_into] = ACTIONS(3279), - [anon_sym_join] = ACTIONS(3279), - [anon_sym_on] = ACTIONS(3279), - [anon_sym_equals] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_orderby] = ACTIONS(3279), - [anon_sym_ascending] = ACTIONS(3279), - [anon_sym_descending] = ACTIONS(3279), - [anon_sym_group] = ACTIONS(3279), - [anon_sym_by] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_stackalloc] = ACTIONS(3279), - [anon_sym_sizeof] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym___makeref] = ACTIONS(3279), - [anon_sym___reftype] = ACTIONS(3279), - [anon_sym___refvalue] = ACTIONS(3279), - [sym_null_literal] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3281), - [sym_integer_literal] = ACTIONS(3279), - [sym_real_literal] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [sym_verbatim_string_literal] = ACTIONS(3281), - [aux_sym_preproc_if_token1] = ACTIONS(3281), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3281), - [sym_interpolation_verbatim_start] = ACTIONS(3281), - [sym_interpolation_raw_start] = ACTIONS(3281), - [sym_raw_string_start] = ACTIONS(3281), - }, - [2121] = { - [sym_preproc_region] = STATE(2121), - [sym_preproc_endregion] = STATE(2121), - [sym_preproc_line] = STATE(2121), - [sym_preproc_pragma] = STATE(2121), - [sym_preproc_nullable] = STATE(2121), - [sym_preproc_error] = STATE(2121), - [sym_preproc_warning] = STATE(2121), - [sym_preproc_define] = STATE(2121), - [sym_preproc_undef] = STATE(2121), - [sym__identifier_token] = ACTIONS(3283), - [anon_sym_extern] = ACTIONS(3283), - [anon_sym_alias] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_global] = ACTIONS(3283), - [anon_sym_using] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_ref] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_delegate] = ACTIONS(3283), - [anon_sym_abstract] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_file] = ACTIONS(3283), - [anon_sym_fixed] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3283), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_partial] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_protected] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_readonly] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_sealed] = ACTIONS(3283), - [anon_sym_virtual] = ACTIONS(3283), - [anon_sym_volatile] = ACTIONS(3283), - [anon_sym_where] = ACTIONS(3283), - [anon_sym_notnull] = ACTIONS(3283), - [anon_sym_unmanaged] = ACTIONS(3283), - [anon_sym_checked] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - [anon_sym_this] = ACTIONS(3283), - [anon_sym_scoped] = ACTIONS(3283), - [anon_sym_base] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [sym_predefined_type] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_unchecked] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_do] = ACTIONS(3283), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_yield] = ACTIONS(3283), - [anon_sym_switch] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_default] = ACTIONS(3283), - [anon_sym_throw] = ACTIONS(3283), - [anon_sym_try] = ACTIONS(3283), - [anon_sym_when] = ACTIONS(3283), - [anon_sym_await] = ACTIONS(3283), - [anon_sym_foreach] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_DOT_DOT] = ACTIONS(3285), - [anon_sym_from] = ACTIONS(3283), - [anon_sym_into] = ACTIONS(3283), - [anon_sym_join] = ACTIONS(3283), - [anon_sym_on] = ACTIONS(3283), - [anon_sym_equals] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_orderby] = ACTIONS(3283), - [anon_sym_ascending] = ACTIONS(3283), - [anon_sym_descending] = ACTIONS(3283), - [anon_sym_group] = ACTIONS(3283), - [anon_sym_by] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_stackalloc] = ACTIONS(3283), - [anon_sym_sizeof] = ACTIONS(3283), - [anon_sym_typeof] = ACTIONS(3283), - [anon_sym___makeref] = ACTIONS(3283), - [anon_sym___reftype] = ACTIONS(3283), - [anon_sym___refvalue] = ACTIONS(3283), - [sym_null_literal] = ACTIONS(3283), - [anon_sym_SQUOTE] = ACTIONS(3285), - [sym_integer_literal] = ACTIONS(3283), - [sym_real_literal] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [sym_verbatim_string_literal] = ACTIONS(3285), - [aux_sym_preproc_if_token1] = ACTIONS(3285), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3285), - [sym_interpolation_verbatim_start] = ACTIONS(3285), - [sym_interpolation_raw_start] = ACTIONS(3285), - [sym_raw_string_start] = ACTIONS(3285), + [2107] = { + [sym_preproc_region] = STATE(2107), + [sym_preproc_endregion] = STATE(2107), + [sym_preproc_line] = STATE(2107), + [sym_preproc_pragma] = STATE(2107), + [sym_preproc_nullable] = STATE(2107), + [sym_preproc_error] = STATE(2107), + [sym_preproc_warning] = STATE(2107), + [sym_preproc_define] = STATE(2107), + [sym_preproc_undef] = STATE(2107), + [sym__identifier_token] = ACTIONS(3247), + [anon_sym_extern] = ACTIONS(3247), + [anon_sym_alias] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_global] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_unsafe] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_ref] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_delegate] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_file] = ACTIONS(3247), + [anon_sym_fixed] = ACTIONS(3247), + [anon_sym_internal] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_partial] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_required] = ACTIONS(3247), + [anon_sym_sealed] = ACTIONS(3247), + [anon_sym_virtual] = ACTIONS(3247), + [anon_sym_volatile] = ACTIONS(3247), + [anon_sym_where] = ACTIONS(3247), + [anon_sym_notnull] = ACTIONS(3247), + [anon_sym_unmanaged] = ACTIONS(3247), + [anon_sym_checked] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_this] = ACTIONS(3247), + [anon_sym_scoped] = ACTIONS(3247), + [anon_sym_base] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [sym_predefined_type] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_unchecked] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_lock] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_case] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_when] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_foreach] = ACTIONS(3247), + [anon_sym_goto] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(3249), + [anon_sym_from] = ACTIONS(3247), + [anon_sym_into] = ACTIONS(3247), + [anon_sym_join] = ACTIONS(3247), + [anon_sym_on] = ACTIONS(3247), + [anon_sym_equals] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_orderby] = ACTIONS(3247), + [anon_sym_ascending] = ACTIONS(3247), + [anon_sym_descending] = ACTIONS(3247), + [anon_sym_group] = ACTIONS(3247), + [anon_sym_by] = ACTIONS(3247), + [anon_sym_select] = ACTIONS(3247), + [anon_sym_stackalloc] = ACTIONS(3247), + [anon_sym_sizeof] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym___makeref] = ACTIONS(3247), + [anon_sym___reftype] = ACTIONS(3247), + [anon_sym___refvalue] = ACTIONS(3247), + [sym_null_literal] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3249), + [sym_integer_literal] = ACTIONS(3247), + [sym_real_literal] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [sym_verbatim_string_literal] = ACTIONS(3249), + [aux_sym_preproc_if_token1] = ACTIONS(3249), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3249), + [sym_interpolation_verbatim_start] = ACTIONS(3249), + [sym_interpolation_raw_start] = ACTIONS(3249), + [sym_raw_string_start] = ACTIONS(3249), }, - [2122] = { - [sym_preproc_region] = STATE(2122), - [sym_preproc_endregion] = STATE(2122), - [sym_preproc_line] = STATE(2122), - [sym_preproc_pragma] = STATE(2122), - [sym_preproc_nullable] = STATE(2122), - [sym_preproc_error] = STATE(2122), - [sym_preproc_warning] = STATE(2122), - [sym_preproc_define] = STATE(2122), - [sym_preproc_undef] = STATE(2122), + [2108] = { + [sym_preproc_region] = STATE(2108), + [sym_preproc_endregion] = STATE(2108), + [sym_preproc_line] = STATE(2108), + [sym_preproc_pragma] = STATE(2108), + [sym_preproc_nullable] = STATE(2108), + [sym_preproc_error] = STATE(2108), + [sym_preproc_warning] = STATE(2108), + [sym_preproc_define] = STATE(2108), + [sym_preproc_undef] = STATE(2108), [sym__identifier_token] = ACTIONS(3307), [anon_sym_extern] = ACTIONS(3307), [anon_sym_alias] = ACTIONS(3307), @@ -392433,235 +390760,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3309), [sym_raw_string_start] = ACTIONS(3309), }, - [2123] = { - [sym_preproc_region] = STATE(2123), - [sym_preproc_endregion] = STATE(2123), - [sym_preproc_line] = STATE(2123), - [sym_preproc_pragma] = STATE(2123), - [sym_preproc_nullable] = STATE(2123), - [sym_preproc_error] = STATE(2123), - [sym_preproc_warning] = STATE(2123), - [sym_preproc_define] = STATE(2123), - [sym_preproc_undef] = STATE(2123), - [sym__identifier_token] = ACTIONS(3221), - [anon_sym_extern] = ACTIONS(3221), - [anon_sym_alias] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_global] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_unsafe] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_ref] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_delegate] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_file] = ACTIONS(3221), - [anon_sym_fixed] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_partial] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_sealed] = ACTIONS(3221), - [anon_sym_virtual] = ACTIONS(3221), - [anon_sym_volatile] = ACTIONS(3221), - [anon_sym_where] = ACTIONS(3221), - [anon_sym_notnull] = ACTIONS(3221), - [anon_sym_unmanaged] = ACTIONS(3221), - [anon_sym_checked] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_this] = ACTIONS(3221), - [anon_sym_scoped] = ACTIONS(3221), - [anon_sym_base] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [sym_predefined_type] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_unchecked] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_lock] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_when] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_foreach] = ACTIONS(3221), - [anon_sym_goto] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [anon_sym_from] = ACTIONS(3221), - [anon_sym_into] = ACTIONS(3221), - [anon_sym_join] = ACTIONS(3221), - [anon_sym_on] = ACTIONS(3221), - [anon_sym_equals] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_orderby] = ACTIONS(3221), - [anon_sym_ascending] = ACTIONS(3221), - [anon_sym_descending] = ACTIONS(3221), - [anon_sym_group] = ACTIONS(3221), - [anon_sym_by] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_stackalloc] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym___makeref] = ACTIONS(3221), - [anon_sym___reftype] = ACTIONS(3221), - [anon_sym___refvalue] = ACTIONS(3221), - [sym_null_literal] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3223), - [sym_integer_literal] = ACTIONS(3221), - [sym_real_literal] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [sym_verbatim_string_literal] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3223), - [sym_interpolation_verbatim_start] = ACTIONS(3223), - [sym_interpolation_raw_start] = ACTIONS(3223), - [sym_raw_string_start] = ACTIONS(3223), + [2109] = { + [sym_preproc_region] = STATE(2109), + [sym_preproc_endregion] = STATE(2109), + [sym_preproc_line] = STATE(2109), + [sym_preproc_pragma] = STATE(2109), + [sym_preproc_nullable] = STATE(2109), + [sym_preproc_error] = STATE(2109), + [sym_preproc_warning] = STATE(2109), + [sym_preproc_define] = STATE(2109), + [sym_preproc_undef] = STATE(2109), + [sym__identifier_token] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_alias] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_unsafe] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_ref] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_delegate] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_file] = ACTIONS(3315), + [anon_sym_fixed] = ACTIONS(3315), + [anon_sym_internal] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_partial] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_required] = ACTIONS(3315), + [anon_sym_sealed] = ACTIONS(3315), + [anon_sym_virtual] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym_where] = ACTIONS(3315), + [anon_sym_notnull] = ACTIONS(3315), + [anon_sym_unmanaged] = ACTIONS(3315), + [anon_sym_checked] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_this] = ACTIONS(3315), + [anon_sym_scoped] = ACTIONS(3315), + [anon_sym_base] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [sym_predefined_type] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_unchecked] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_lock] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_when] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_foreach] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_into] = ACTIONS(3315), + [anon_sym_join] = ACTIONS(3315), + [anon_sym_on] = ACTIONS(3315), + [anon_sym_equals] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_orderby] = ACTIONS(3315), + [anon_sym_ascending] = ACTIONS(3315), + [anon_sym_descending] = ACTIONS(3315), + [anon_sym_group] = ACTIONS(3315), + [anon_sym_by] = ACTIONS(3315), + [anon_sym_select] = ACTIONS(3315), + [anon_sym_stackalloc] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym___makeref] = ACTIONS(3315), + [anon_sym___reftype] = ACTIONS(3315), + [anon_sym___refvalue] = ACTIONS(3315), + [sym_null_literal] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3317), + [sym_integer_literal] = ACTIONS(3315), + [sym_real_literal] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_verbatim_string_literal] = ACTIONS(3317), + [aux_sym_preproc_if_token1] = ACTIONS(3317), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3317), + [sym_interpolation_verbatim_start] = ACTIONS(3317), + [sym_interpolation_raw_start] = ACTIONS(3317), + [sym_raw_string_start] = ACTIONS(3317), }, - [2124] = { - [sym_preproc_region] = STATE(2124), - [sym_preproc_endregion] = STATE(2124), - [sym_preproc_line] = STATE(2124), - [sym_preproc_pragma] = STATE(2124), - [sym_preproc_nullable] = STATE(2124), - [sym_preproc_error] = STATE(2124), - [sym_preproc_warning] = STATE(2124), - [sym_preproc_define] = STATE(2124), - [sym_preproc_undef] = STATE(2124), - [sym__identifier_token] = ACTIONS(3287), - [anon_sym_extern] = ACTIONS(3287), - [anon_sym_alias] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_global] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_ref] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_delegate] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_file] = ACTIONS(3287), - [anon_sym_fixed] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_partial] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_sealed] = ACTIONS(3287), - [anon_sym_virtual] = ACTIONS(3287), - [anon_sym_volatile] = ACTIONS(3287), - [anon_sym_where] = ACTIONS(3287), - [anon_sym_notnull] = ACTIONS(3287), - [anon_sym_unmanaged] = ACTIONS(3287), - [anon_sym_checked] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [anon_sym_true] = ACTIONS(3287), - [anon_sym_false] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_this] = ACTIONS(3287), - [anon_sym_scoped] = ACTIONS(3287), - [anon_sym_base] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [sym_predefined_type] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_unchecked] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_when] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_foreach] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_DOT_DOT] = ACTIONS(3289), - [anon_sym_from] = ACTIONS(3287), - [anon_sym_into] = ACTIONS(3287), - [anon_sym_join] = ACTIONS(3287), - [anon_sym_on] = ACTIONS(3287), - [anon_sym_equals] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_orderby] = ACTIONS(3287), - [anon_sym_ascending] = ACTIONS(3287), - [anon_sym_descending] = ACTIONS(3287), - [anon_sym_group] = ACTIONS(3287), - [anon_sym_by] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_stackalloc] = ACTIONS(3287), - [anon_sym_sizeof] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym___makeref] = ACTIONS(3287), - [anon_sym___reftype] = ACTIONS(3287), - [anon_sym___refvalue] = ACTIONS(3287), - [sym_null_literal] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3289), - [sym_integer_literal] = ACTIONS(3287), - [sym_real_literal] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [sym_verbatim_string_literal] = ACTIONS(3289), - [aux_sym_preproc_if_token1] = ACTIONS(3289), + [2110] = { + [sym_preproc_region] = STATE(2110), + [sym_preproc_endregion] = STATE(2110), + [sym_preproc_line] = STATE(2110), + [sym_preproc_pragma] = STATE(2110), + [sym_preproc_nullable] = STATE(2110), + [sym_preproc_error] = STATE(2110), + [sym_preproc_warning] = STATE(2110), + [sym_preproc_define] = STATE(2110), + [sym_preproc_undef] = STATE(2110), + [sym__identifier_token] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_alias] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_ref] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_delegate] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_file] = ACTIONS(3291), + [anon_sym_fixed] = ACTIONS(3291), + [anon_sym_internal] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_partial] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_required] = ACTIONS(3291), + [anon_sym_sealed] = ACTIONS(3291), + [anon_sym_virtual] = ACTIONS(3291), + [anon_sym_volatile] = ACTIONS(3291), + [anon_sym_where] = ACTIONS(3291), + [anon_sym_notnull] = ACTIONS(3291), + [anon_sym_unmanaged] = ACTIONS(3291), + [anon_sym_checked] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_this] = ACTIONS(3291), + [anon_sym_scoped] = ACTIONS(3291), + [anon_sym_base] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [sym_predefined_type] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_unchecked] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_when] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_foreach] = ACTIONS(3291), + [anon_sym_goto] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_into] = ACTIONS(3291), + [anon_sym_join] = ACTIONS(3291), + [anon_sym_on] = ACTIONS(3291), + [anon_sym_equals] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_orderby] = ACTIONS(3291), + [anon_sym_ascending] = ACTIONS(3291), + [anon_sym_descending] = ACTIONS(3291), + [anon_sym_group] = ACTIONS(3291), + [anon_sym_by] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_stackalloc] = ACTIONS(3291), + [anon_sym_sizeof] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym___makeref] = ACTIONS(3291), + [anon_sym___reftype] = ACTIONS(3291), + [anon_sym___refvalue] = ACTIONS(3291), + [sym_null_literal] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3293), + [sym_integer_literal] = ACTIONS(3291), + [sym_real_literal] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [sym_verbatim_string_literal] = ACTIONS(3293), + [aux_sym_preproc_if_token1] = ACTIONS(3293), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392672,21 +390999,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3289), - [sym_interpolation_verbatim_start] = ACTIONS(3289), - [sym_interpolation_raw_start] = ACTIONS(3289), - [sym_raw_string_start] = ACTIONS(3289), + [sym_interpolation_regular_start] = ACTIONS(3293), + [sym_interpolation_verbatim_start] = ACTIONS(3293), + [sym_interpolation_raw_start] = ACTIONS(3293), + [sym_raw_string_start] = ACTIONS(3293), }, - [2125] = { - [sym_preproc_region] = STATE(2125), - [sym_preproc_endregion] = STATE(2125), - [sym_preproc_line] = STATE(2125), - [sym_preproc_pragma] = STATE(2125), - [sym_preproc_nullable] = STATE(2125), - [sym_preproc_error] = STATE(2125), - [sym_preproc_warning] = STATE(2125), - [sym_preproc_define] = STATE(2125), - [sym_preproc_undef] = STATE(2125), + [2111] = { + [sym_preproc_region] = STATE(2111), + [sym_preproc_endregion] = STATE(2111), + [sym_preproc_line] = STATE(2111), + [sym_preproc_pragma] = STATE(2111), + [sym_preproc_nullable] = STATE(2111), + [sym_preproc_error] = STATE(2111), + [sym_preproc_warning] = STATE(2111), + [sym_preproc_define] = STATE(2111), + [sym_preproc_undef] = STATE(2111), [sym__identifier_token] = ACTIONS(3311), [anon_sym_extern] = ACTIONS(3311), [anon_sym_alias] = ACTIONS(3311), @@ -392799,113 +391126,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3313), [sym_raw_string_start] = ACTIONS(3313), }, - [2126] = { - [sym_preproc_region] = STATE(2126), - [sym_preproc_endregion] = STATE(2126), - [sym_preproc_line] = STATE(2126), - [sym_preproc_pragma] = STATE(2126), - [sym_preproc_nullable] = STATE(2126), - [sym_preproc_error] = STATE(2126), - [sym_preproc_warning] = STATE(2126), - [sym_preproc_define] = STATE(2126), - [sym_preproc_undef] = STATE(2126), - [sym__identifier_token] = ACTIONS(3315), - [anon_sym_extern] = ACTIONS(3315), - [anon_sym_alias] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_global] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_ref] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_delegate] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_file] = ACTIONS(3315), - [anon_sym_fixed] = ACTIONS(3315), - [anon_sym_internal] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_partial] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_required] = ACTIONS(3315), - [anon_sym_sealed] = ACTIONS(3315), - [anon_sym_virtual] = ACTIONS(3315), - [anon_sym_volatile] = ACTIONS(3315), - [anon_sym_where] = ACTIONS(3315), - [anon_sym_notnull] = ACTIONS(3315), - [anon_sym_unmanaged] = ACTIONS(3315), - [anon_sym_checked] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3315), - [anon_sym_false] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_this] = ACTIONS(3315), - [anon_sym_scoped] = ACTIONS(3315), - [anon_sym_base] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [sym_predefined_type] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_unchecked] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_when] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_foreach] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_from] = ACTIONS(3315), - [anon_sym_into] = ACTIONS(3315), - [anon_sym_join] = ACTIONS(3315), - [anon_sym_on] = ACTIONS(3315), - [anon_sym_equals] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_orderby] = ACTIONS(3315), - [anon_sym_ascending] = ACTIONS(3315), - [anon_sym_descending] = ACTIONS(3315), - [anon_sym_group] = ACTIONS(3315), - [anon_sym_by] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_stackalloc] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym___makeref] = ACTIONS(3315), - [anon_sym___reftype] = ACTIONS(3315), - [anon_sym___refvalue] = ACTIONS(3315), - [sym_null_literal] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3317), - [sym_integer_literal] = ACTIONS(3315), - [sym_real_literal] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [sym_verbatim_string_literal] = ACTIONS(3317), - [aux_sym_preproc_if_token1] = ACTIONS(3317), + [2112] = { + [sym_preproc_region] = STATE(2112), + [sym_preproc_endregion] = STATE(2112), + [sym_preproc_line] = STATE(2112), + [sym_preproc_pragma] = STATE(2112), + [sym_preproc_nullable] = STATE(2112), + [sym_preproc_error] = STATE(2112), + [sym_preproc_warning] = STATE(2112), + [sym_preproc_define] = STATE(2112), + [sym_preproc_undef] = STATE(2112), + [sym__identifier_token] = ACTIONS(3343), + [anon_sym_extern] = ACTIONS(3343), + [anon_sym_alias] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_ref] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_delegate] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_file] = ACTIONS(3343), + [anon_sym_fixed] = ACTIONS(3343), + [anon_sym_internal] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_partial] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_required] = ACTIONS(3343), + [anon_sym_sealed] = ACTIONS(3343), + [anon_sym_virtual] = ACTIONS(3343), + [anon_sym_volatile] = ACTIONS(3343), + [anon_sym_where] = ACTIONS(3343), + [anon_sym_notnull] = ACTIONS(3343), + [anon_sym_unmanaged] = ACTIONS(3343), + [anon_sym_checked] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_this] = ACTIONS(3343), + [anon_sym_scoped] = ACTIONS(3343), + [anon_sym_base] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [sym_predefined_type] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_unchecked] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_lock] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_when] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_foreach] = ACTIONS(3343), + [anon_sym_goto] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_into] = ACTIONS(3343), + [anon_sym_join] = ACTIONS(3343), + [anon_sym_on] = ACTIONS(3343), + [anon_sym_equals] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_orderby] = ACTIONS(3343), + [anon_sym_ascending] = ACTIONS(3343), + [anon_sym_descending] = ACTIONS(3343), + [anon_sym_group] = ACTIONS(3343), + [anon_sym_by] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_stackalloc] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym___makeref] = ACTIONS(3343), + [anon_sym___reftype] = ACTIONS(3343), + [anon_sym___refvalue] = ACTIONS(3343), + [sym_null_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3345), + [sym_integer_literal] = ACTIONS(3343), + [sym_real_literal] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_verbatim_string_literal] = ACTIONS(3345), + [aux_sym_preproc_if_token1] = ACTIONS(3345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392916,21 +391243,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3317), - [sym_interpolation_verbatim_start] = ACTIONS(3317), - [sym_interpolation_raw_start] = ACTIONS(3317), - [sym_raw_string_start] = ACTIONS(3317), + [sym_interpolation_regular_start] = ACTIONS(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, - [2127] = { - [sym_preproc_region] = STATE(2127), - [sym_preproc_endregion] = STATE(2127), - [sym_preproc_line] = STATE(2127), - [sym_preproc_pragma] = STATE(2127), - [sym_preproc_nullable] = STATE(2127), - [sym_preproc_error] = STATE(2127), - [sym_preproc_warning] = STATE(2127), - [sym_preproc_define] = STATE(2127), - [sym_preproc_undef] = STATE(2127), + [2113] = { + [sym_preproc_region] = STATE(2113), + [sym_preproc_endregion] = STATE(2113), + [sym_preproc_line] = STATE(2113), + [sym_preproc_pragma] = STATE(2113), + [sym_preproc_nullable] = STATE(2113), + [sym_preproc_error] = STATE(2113), + [sym_preproc_warning] = STATE(2113), + [sym_preproc_define] = STATE(2113), + [sym_preproc_undef] = STATE(2113), + [sym__identifier_token] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_alias] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_unsafe] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_ref] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_delegate] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_file] = ACTIONS(3235), + [anon_sym_fixed] = ACTIONS(3235), + [anon_sym_internal] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_partial] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_required] = ACTIONS(3235), + [anon_sym_sealed] = ACTIONS(3235), + [anon_sym_virtual] = ACTIONS(3235), + [anon_sym_volatile] = ACTIONS(3235), + [anon_sym_where] = ACTIONS(3235), + [anon_sym_notnull] = ACTIONS(3235), + [anon_sym_unmanaged] = ACTIONS(3235), + [anon_sym_checked] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_this] = ACTIONS(3235), + [anon_sym_scoped] = ACTIONS(3235), + [anon_sym_base] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [sym_predefined_type] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_unchecked] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_lock] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_case] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_when] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_foreach] = ACTIONS(3235), + [anon_sym_goto] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_DOT_DOT] = ACTIONS(3237), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_into] = ACTIONS(3235), + [anon_sym_join] = ACTIONS(3235), + [anon_sym_on] = ACTIONS(3235), + [anon_sym_equals] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_orderby] = ACTIONS(3235), + [anon_sym_ascending] = ACTIONS(3235), + [anon_sym_descending] = ACTIONS(3235), + [anon_sym_group] = ACTIONS(3235), + [anon_sym_by] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_stackalloc] = ACTIONS(3235), + [anon_sym_sizeof] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym___makeref] = ACTIONS(3235), + [anon_sym___reftype] = ACTIONS(3235), + [anon_sym___refvalue] = ACTIONS(3235), + [sym_null_literal] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3237), + [sym_integer_literal] = ACTIONS(3235), + [sym_real_literal] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [sym_verbatim_string_literal] = ACTIONS(3237), + [aux_sym_preproc_if_token1] = ACTIONS(3237), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3237), + [sym_interpolation_verbatim_start] = ACTIONS(3237), + [sym_interpolation_raw_start] = ACTIONS(3237), + [sym_raw_string_start] = ACTIONS(3237), + }, + [2114] = { + [sym_preproc_region] = STATE(2114), + [sym_preproc_endregion] = STATE(2114), + [sym_preproc_line] = STATE(2114), + [sym_preproc_pragma] = STATE(2114), + [sym_preproc_nullable] = STATE(2114), + [sym_preproc_error] = STATE(2114), + [sym_preproc_warning] = STATE(2114), + [sym_preproc_define] = STATE(2114), + [sym_preproc_undef] = STATE(2114), + [sym__identifier_token] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_alias] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_global] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_ref] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_delegate] = ACTIONS(3203), + [anon_sym_abstract] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_file] = ACTIONS(3203), + [anon_sym_fixed] = ACTIONS(3203), + [anon_sym_internal] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_override] = ACTIONS(3203), + [anon_sym_partial] = ACTIONS(3203), + [anon_sym_private] = ACTIONS(3203), + [anon_sym_protected] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_readonly] = ACTIONS(3203), + [anon_sym_required] = ACTIONS(3203), + [anon_sym_sealed] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(3203), + [anon_sym_unmanaged] = ACTIONS(3203), + [anon_sym_checked] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_this] = ACTIONS(3203), + [anon_sym_scoped] = ACTIONS(3203), + [anon_sym_base] = ACTIONS(3203), + [anon_sym_var] = ACTIONS(3203), + [sym_predefined_type] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_unchecked] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_case] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_when] = ACTIONS(3203), + [anon_sym_await] = ACTIONS(3203), + [anon_sym_foreach] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_into] = ACTIONS(3203), + [anon_sym_join] = ACTIONS(3203), + [anon_sym_on] = ACTIONS(3203), + [anon_sym_equals] = ACTIONS(3203), + [anon_sym_let] = ACTIONS(3203), + [anon_sym_orderby] = ACTIONS(3203), + [anon_sym_ascending] = ACTIONS(3203), + [anon_sym_descending] = ACTIONS(3203), + [anon_sym_group] = ACTIONS(3203), + [anon_sym_by] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_stackalloc] = ACTIONS(3203), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym_typeof] = ACTIONS(3203), + [anon_sym___makeref] = ACTIONS(3203), + [anon_sym___reftype] = ACTIONS(3203), + [anon_sym___refvalue] = ACTIONS(3203), + [sym_null_literal] = ACTIONS(3203), + [anon_sym_SQUOTE] = ACTIONS(3205), + [sym_integer_literal] = ACTIONS(3203), + [sym_real_literal] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_verbatim_string_literal] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3205), + [sym_interpolation_verbatim_start] = ACTIONS(3205), + [sym_interpolation_raw_start] = ACTIONS(3205), + [sym_raw_string_start] = ACTIONS(3205), + }, + [2115] = { + [sym_preproc_region] = STATE(2115), + [sym_preproc_endregion] = STATE(2115), + [sym_preproc_line] = STATE(2115), + [sym_preproc_pragma] = STATE(2115), + [sym_preproc_nullable] = STATE(2115), + [sym_preproc_error] = STATE(2115), + [sym_preproc_warning] = STATE(2115), + [sym_preproc_define] = STATE(2115), + [sym_preproc_undef] = STATE(2115), + [sym__identifier_token] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_alias] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_ref] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_delegate] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_file] = ACTIONS(3185), + [anon_sym_fixed] = ACTIONS(3185), + [anon_sym_internal] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_partial] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_required] = ACTIONS(3185), + [anon_sym_sealed] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_where] = ACTIONS(3185), + [anon_sym_notnull] = ACTIONS(3185), + [anon_sym_unmanaged] = ACTIONS(3185), + [anon_sym_checked] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_scoped] = ACTIONS(3185), + [anon_sym_base] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [sym_predefined_type] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_unchecked] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_when] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_foreach] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_DOT_DOT] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3185), + [anon_sym_into] = ACTIONS(3185), + [anon_sym_join] = ACTIONS(3185), + [anon_sym_on] = ACTIONS(3185), + [anon_sym_equals] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_orderby] = ACTIONS(3185), + [anon_sym_ascending] = ACTIONS(3185), + [anon_sym_descending] = ACTIONS(3185), + [anon_sym_group] = ACTIONS(3185), + [anon_sym_by] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_stackalloc] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym___makeref] = ACTIONS(3185), + [anon_sym___reftype] = ACTIONS(3185), + [anon_sym___refvalue] = ACTIONS(3185), + [sym_null_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3187), + [sym_integer_literal] = ACTIONS(3185), + [sym_real_literal] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_verbatim_string_literal] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), + }, + [2116] = { + [sym_preproc_region] = STATE(2116), + [sym_preproc_endregion] = STATE(2116), + [sym_preproc_line] = STATE(2116), + [sym_preproc_pragma] = STATE(2116), + [sym_preproc_nullable] = STATE(2116), + [sym_preproc_error] = STATE(2116), + [sym_preproc_warning] = STATE(2116), + [sym_preproc_define] = STATE(2116), + [sym_preproc_undef] = STATE(2116), + [sym__identifier_token] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_alias] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_ref] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_delegate] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_file] = ACTIONS(3263), + [anon_sym_fixed] = ACTIONS(3263), + [anon_sym_internal] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_partial] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_sealed] = ACTIONS(3263), + [anon_sym_virtual] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_where] = ACTIONS(3263), + [anon_sym_notnull] = ACTIONS(3263), + [anon_sym_unmanaged] = ACTIONS(3263), + [anon_sym_checked] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_this] = ACTIONS(3263), + [anon_sym_scoped] = ACTIONS(3263), + [anon_sym_base] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [sym_predefined_type] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_unchecked] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_lock] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_case] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_when] = ACTIONS(3263), + [anon_sym_await] = ACTIONS(3263), + [anon_sym_foreach] = ACTIONS(3263), + [anon_sym_goto] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_into] = ACTIONS(3263), + [anon_sym_join] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_equals] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_orderby] = ACTIONS(3263), + [anon_sym_ascending] = ACTIONS(3263), + [anon_sym_descending] = ACTIONS(3263), + [anon_sym_group] = ACTIONS(3263), + [anon_sym_by] = ACTIONS(3263), + [anon_sym_select] = ACTIONS(3263), + [anon_sym_stackalloc] = ACTIONS(3263), + [anon_sym_sizeof] = ACTIONS(3263), + [anon_sym_typeof] = ACTIONS(3263), + [anon_sym___makeref] = ACTIONS(3263), + [anon_sym___reftype] = ACTIONS(3263), + [anon_sym___refvalue] = ACTIONS(3263), + [sym_null_literal] = ACTIONS(3263), + [anon_sym_SQUOTE] = ACTIONS(3265), + [sym_integer_literal] = ACTIONS(3263), + [sym_real_literal] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [sym_verbatim_string_literal] = ACTIONS(3265), + [aux_sym_preproc_if_token1] = ACTIONS(3265), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3265), + [sym_interpolation_verbatim_start] = ACTIONS(3265), + [sym_interpolation_raw_start] = ACTIONS(3265), + [sym_raw_string_start] = ACTIONS(3265), + }, + [2117] = { + [sym_preproc_region] = STATE(2117), + [sym_preproc_endregion] = STATE(2117), + [sym_preproc_line] = STATE(2117), + [sym_preproc_pragma] = STATE(2117), + [sym_preproc_nullable] = STATE(2117), + [sym_preproc_error] = STATE(2117), + [sym_preproc_warning] = STATE(2117), + [sym_preproc_define] = STATE(2117), + [sym_preproc_undef] = STATE(2117), [sym__identifier_token] = ACTIONS(3319), [anon_sym_extern] = ACTIONS(3319), [anon_sym_alias] = ACTIONS(3319), @@ -393043,16 +391858,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3321), [sym_raw_string_start] = ACTIONS(3321), }, - [2128] = { - [sym_preproc_region] = STATE(2128), - [sym_preproc_endregion] = STATE(2128), - [sym_preproc_line] = STATE(2128), - [sym_preproc_pragma] = STATE(2128), - [sym_preproc_nullable] = STATE(2128), - [sym_preproc_error] = STATE(2128), - [sym_preproc_warning] = STATE(2128), - [sym_preproc_define] = STATE(2128), - [sym_preproc_undef] = STATE(2128), + [2118] = { + [sym_preproc_region] = STATE(2118), + [sym_preproc_endregion] = STATE(2118), + [sym_preproc_line] = STATE(2118), + [sym_preproc_pragma] = STATE(2118), + [sym_preproc_nullable] = STATE(2118), + [sym_preproc_error] = STATE(2118), + [sym_preproc_warning] = STATE(2118), + [sym_preproc_define] = STATE(2118), + [sym_preproc_undef] = STATE(2118), + [sym__identifier_token] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_alias] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_global] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_ref] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_delegate] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_file] = ACTIONS(3239), + [anon_sym_fixed] = ACTIONS(3239), + [anon_sym_internal] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_partial] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_required] = ACTIONS(3239), + [anon_sym_sealed] = ACTIONS(3239), + [anon_sym_virtual] = ACTIONS(3239), + [anon_sym_volatile] = ACTIONS(3239), + [anon_sym_where] = ACTIONS(3239), + [anon_sym_notnull] = ACTIONS(3239), + [anon_sym_unmanaged] = ACTIONS(3239), + [anon_sym_checked] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_this] = ACTIONS(3239), + [anon_sym_scoped] = ACTIONS(3239), + [anon_sym_base] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [sym_predefined_type] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_unchecked] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_lock] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_when] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_foreach] = ACTIONS(3239), + [anon_sym_goto] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_from] = ACTIONS(3239), + [anon_sym_into] = ACTIONS(3239), + [anon_sym_join] = ACTIONS(3239), + [anon_sym_on] = ACTIONS(3239), + [anon_sym_equals] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_orderby] = ACTIONS(3239), + [anon_sym_ascending] = ACTIONS(3239), + [anon_sym_descending] = ACTIONS(3239), + [anon_sym_group] = ACTIONS(3239), + [anon_sym_by] = ACTIONS(3239), + [anon_sym_select] = ACTIONS(3239), + [anon_sym_stackalloc] = ACTIONS(3239), + [anon_sym_sizeof] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym___makeref] = ACTIONS(3239), + [anon_sym___reftype] = ACTIONS(3239), + [anon_sym___refvalue] = ACTIONS(3239), + [sym_null_literal] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3241), + [sym_integer_literal] = ACTIONS(3239), + [sym_real_literal] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [sym_verbatim_string_literal] = ACTIONS(3241), + [aux_sym_preproc_if_token1] = ACTIONS(3241), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3241), + [sym_interpolation_verbatim_start] = ACTIONS(3241), + [sym_interpolation_raw_start] = ACTIONS(3241), + [sym_raw_string_start] = ACTIONS(3241), + }, + [2119] = { + [sym_preproc_region] = STATE(2119), + [sym_preproc_endregion] = STATE(2119), + [sym_preproc_line] = STATE(2119), + [sym_preproc_pragma] = STATE(2119), + [sym_preproc_nullable] = STATE(2119), + [sym_preproc_error] = STATE(2119), + [sym_preproc_warning] = STATE(2119), + [sym_preproc_define] = STATE(2119), + [sym_preproc_undef] = STATE(2119), + [sym__identifier_token] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_alias] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_delegate] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_file] = ACTIONS(3177), + [anon_sym_fixed] = ACTIONS(3177), + [anon_sym_internal] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_partial] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_protected] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_required] = ACTIONS(3177), + [anon_sym_sealed] = ACTIONS(3177), + [anon_sym_virtual] = ACTIONS(3177), + [anon_sym_volatile] = ACTIONS(3177), + [anon_sym_where] = ACTIONS(3177), + [anon_sym_notnull] = ACTIONS(3177), + [anon_sym_unmanaged] = ACTIONS(3177), + [anon_sym_checked] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_scoped] = ACTIONS(3177), + [anon_sym_base] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [sym_predefined_type] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_unchecked] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_case] = ACTIONS(3177), + [anon_sym_default] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_when] = ACTIONS(3177), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_foreach] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_into] = ACTIONS(3177), + [anon_sym_join] = ACTIONS(3177), + [anon_sym_on] = ACTIONS(3177), + [anon_sym_equals] = ACTIONS(3177), + [anon_sym_let] = ACTIONS(3177), + [anon_sym_orderby] = ACTIONS(3177), + [anon_sym_ascending] = ACTIONS(3177), + [anon_sym_descending] = ACTIONS(3177), + [anon_sym_group] = ACTIONS(3177), + [anon_sym_by] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_stackalloc] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [anon_sym_typeof] = ACTIONS(3177), + [anon_sym___makeref] = ACTIONS(3177), + [anon_sym___reftype] = ACTIONS(3177), + [anon_sym___refvalue] = ACTIONS(3177), + [sym_null_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3179), + [sym_integer_literal] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [sym_verbatim_string_literal] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), + }, + [2120] = { + [sym_preproc_region] = STATE(2120), + [sym_preproc_endregion] = STATE(2120), + [sym_preproc_line] = STATE(2120), + [sym_preproc_pragma] = STATE(2120), + [sym_preproc_nullable] = STATE(2120), + [sym_preproc_error] = STATE(2120), + [sym_preproc_warning] = STATE(2120), + [sym_preproc_define] = STATE(2120), + [sym_preproc_undef] = STATE(2120), + [sym__identifier_token] = ACTIONS(3267), + [anon_sym_extern] = ACTIONS(3267), + [anon_sym_alias] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_unsafe] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_ref] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_delegate] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_file] = ACTIONS(3267), + [anon_sym_fixed] = ACTIONS(3267), + [anon_sym_internal] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_partial] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_required] = ACTIONS(3267), + [anon_sym_sealed] = ACTIONS(3267), + [anon_sym_virtual] = ACTIONS(3267), + [anon_sym_volatile] = ACTIONS(3267), + [anon_sym_where] = ACTIONS(3267), + [anon_sym_notnull] = ACTIONS(3267), + [anon_sym_unmanaged] = ACTIONS(3267), + [anon_sym_checked] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_this] = ACTIONS(3267), + [anon_sym_scoped] = ACTIONS(3267), + [anon_sym_base] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [sym_predefined_type] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_unchecked] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_lock] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_when] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_foreach] = ACTIONS(3267), + [anon_sym_goto] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_from] = ACTIONS(3267), + [anon_sym_into] = ACTIONS(3267), + [anon_sym_join] = ACTIONS(3267), + [anon_sym_on] = ACTIONS(3267), + [anon_sym_equals] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_orderby] = ACTIONS(3267), + [anon_sym_ascending] = ACTIONS(3267), + [anon_sym_descending] = ACTIONS(3267), + [anon_sym_group] = ACTIONS(3267), + [anon_sym_by] = ACTIONS(3267), + [anon_sym_select] = ACTIONS(3267), + [anon_sym_stackalloc] = ACTIONS(3267), + [anon_sym_sizeof] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym___makeref] = ACTIONS(3267), + [anon_sym___reftype] = ACTIONS(3267), + [anon_sym___refvalue] = ACTIONS(3267), + [sym_null_literal] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3269), + [sym_integer_literal] = ACTIONS(3267), + [sym_real_literal] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [sym_verbatim_string_literal] = ACTIONS(3269), + [aux_sym_preproc_if_token1] = ACTIONS(3269), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3269), + [sym_interpolation_verbatim_start] = ACTIONS(3269), + [sym_interpolation_raw_start] = ACTIONS(3269), + [sym_raw_string_start] = ACTIONS(3269), + }, + [2121] = { + [sym_preproc_region] = STATE(2121), + [sym_preproc_endregion] = STATE(2121), + [sym_preproc_line] = STATE(2121), + [sym_preproc_pragma] = STATE(2121), + [sym_preproc_nullable] = STATE(2121), + [sym_preproc_error] = STATE(2121), + [sym_preproc_warning] = STATE(2121), + [sym_preproc_define] = STATE(2121), + [sym_preproc_undef] = STATE(2121), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_global] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_unsafe] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_ref] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_delegate] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_file] = ACTIONS(3207), + [anon_sym_fixed] = ACTIONS(3207), + [anon_sym_internal] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_partial] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_required] = ACTIONS(3207), + [anon_sym_sealed] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_where] = ACTIONS(3207), + [anon_sym_notnull] = ACTIONS(3207), + [anon_sym_unmanaged] = ACTIONS(3207), + [anon_sym_checked] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_this] = ACTIONS(3207), + [anon_sym_scoped] = ACTIONS(3207), + [anon_sym_base] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [sym_predefined_type] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_unchecked] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_lock] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_when] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_foreach] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_DOT_DOT] = ACTIONS(3209), + [anon_sym_from] = ACTIONS(3207), + [anon_sym_into] = ACTIONS(3207), + [anon_sym_join] = ACTIONS(3207), + [anon_sym_on] = ACTIONS(3207), + [anon_sym_equals] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_orderby] = ACTIONS(3207), + [anon_sym_ascending] = ACTIONS(3207), + [anon_sym_descending] = ACTIONS(3207), + [anon_sym_group] = ACTIONS(3207), + [anon_sym_by] = ACTIONS(3207), + [anon_sym_select] = ACTIONS(3207), + [anon_sym_stackalloc] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym___makeref] = ACTIONS(3207), + [anon_sym___reftype] = ACTIONS(3207), + [anon_sym___refvalue] = ACTIONS(3207), + [sym_null_literal] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3209), + [sym_integer_literal] = ACTIONS(3207), + [sym_real_literal] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_verbatim_string_literal] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3209), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3209), + [sym_interpolation_verbatim_start] = ACTIONS(3209), + [sym_interpolation_raw_start] = ACTIONS(3209), + [sym_raw_string_start] = ACTIONS(3209), + }, + [2122] = { + [sym_preproc_region] = STATE(2122), + [sym_preproc_endregion] = STATE(2122), + [sym_preproc_line] = STATE(2122), + [sym_preproc_pragma] = STATE(2122), + [sym_preproc_nullable] = STATE(2122), + [sym_preproc_error] = STATE(2122), + [sym_preproc_warning] = STATE(2122), + [sym_preproc_define] = STATE(2122), + [sym_preproc_undef] = STATE(2122), + [sym__identifier_token] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_alias] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3133), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_ref] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_delegate] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_file] = ACTIONS(3133), + [anon_sym_fixed] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_partial] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_virtual] = ACTIONS(3133), + [anon_sym_volatile] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_notnull] = ACTIONS(3133), + [anon_sym_unmanaged] = ACTIONS(3133), + [anon_sym_checked] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_scoped] = ACTIONS(3133), + [anon_sym_base] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [sym_predefined_type] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_unchecked] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3133), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_case] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_await] = ACTIONS(3133), + [anon_sym_foreach] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_into] = ACTIONS(3133), + [anon_sym_join] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_equals] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_orderby] = ACTIONS(3133), + [anon_sym_ascending] = ACTIONS(3133), + [anon_sym_descending] = ACTIONS(3133), + [anon_sym_group] = ACTIONS(3133), + [anon_sym_by] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_stackalloc] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3133), + [anon_sym_typeof] = ACTIONS(3133), + [anon_sym___makeref] = ACTIONS(3133), + [anon_sym___reftype] = ACTIONS(3133), + [anon_sym___refvalue] = ACTIONS(3133), + [sym_null_literal] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_real_literal] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [sym_verbatim_string_literal] = ACTIONS(3135), + [aux_sym_preproc_if_token1] = ACTIONS(3135), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3135), + [sym_interpolation_verbatim_start] = ACTIONS(3135), + [sym_interpolation_raw_start] = ACTIONS(3135), + [sym_raw_string_start] = ACTIONS(3135), + }, + [2123] = { + [sym_preproc_region] = STATE(2123), + [sym_preproc_endregion] = STATE(2123), + [sym_preproc_line] = STATE(2123), + [sym_preproc_pragma] = STATE(2123), + [sym_preproc_nullable] = STATE(2123), + [sym_preproc_error] = STATE(2123), + [sym_preproc_warning] = STATE(2123), + [sym_preproc_define] = STATE(2123), + [sym_preproc_undef] = STATE(2123), [sym__identifier_token] = ACTIONS(3181), [anon_sym_extern] = ACTIONS(3181), [anon_sym_alias] = ACTIONS(3181), @@ -393160,21 +392585,753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3183), - [sym_interpolation_verbatim_start] = ACTIONS(3183), - [sym_interpolation_raw_start] = ACTIONS(3183), - [sym_raw_string_start] = ACTIONS(3183), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), + }, + [2124] = { + [sym_preproc_region] = STATE(2124), + [sym_preproc_endregion] = STATE(2124), + [sym_preproc_line] = STATE(2124), + [sym_preproc_pragma] = STATE(2124), + [sym_preproc_nullable] = STATE(2124), + [sym_preproc_error] = STATE(2124), + [sym_preproc_warning] = STATE(2124), + [sym_preproc_define] = STATE(2124), + [sym_preproc_undef] = STATE(2124), + [sym__identifier_token] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym_alias] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_unsafe] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_ref] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_delegate] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_file] = ACTIONS(3223), + [anon_sym_fixed] = ACTIONS(3223), + [anon_sym_internal] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_partial] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_required] = ACTIONS(3223), + [anon_sym_sealed] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_where] = ACTIONS(3223), + [anon_sym_notnull] = ACTIONS(3223), + [anon_sym_unmanaged] = ACTIONS(3223), + [anon_sym_checked] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3223), + [anon_sym_false] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_this] = ACTIONS(3223), + [anon_sym_scoped] = ACTIONS(3223), + [anon_sym_base] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [sym_predefined_type] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_unchecked] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_lock] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_when] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_foreach] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_DOT_DOT] = ACTIONS(3225), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_into] = ACTIONS(3223), + [anon_sym_join] = ACTIONS(3223), + [anon_sym_on] = ACTIONS(3223), + [anon_sym_equals] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_orderby] = ACTIONS(3223), + [anon_sym_ascending] = ACTIONS(3223), + [anon_sym_descending] = ACTIONS(3223), + [anon_sym_group] = ACTIONS(3223), + [anon_sym_by] = ACTIONS(3223), + [anon_sym_select] = ACTIONS(3223), + [anon_sym_stackalloc] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym___makeref] = ACTIONS(3223), + [anon_sym___reftype] = ACTIONS(3223), + [anon_sym___refvalue] = ACTIONS(3223), + [sym_null_literal] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3225), + [sym_integer_literal] = ACTIONS(3223), + [sym_real_literal] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_verbatim_string_literal] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3225), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3225), + [sym_interpolation_verbatim_start] = ACTIONS(3225), + [sym_interpolation_raw_start] = ACTIONS(3225), + [sym_raw_string_start] = ACTIONS(3225), + }, + [2125] = { + [sym_preproc_region] = STATE(2125), + [sym_preproc_endregion] = STATE(2125), + [sym_preproc_line] = STATE(2125), + [sym_preproc_pragma] = STATE(2125), + [sym_preproc_nullable] = STATE(2125), + [sym_preproc_error] = STATE(2125), + [sym_preproc_warning] = STATE(2125), + [sym_preproc_define] = STATE(2125), + [sym_preproc_undef] = STATE(2125), + [sym__identifier_token] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_alias] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_ref] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_delegate] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_file] = ACTIONS(3227), + [anon_sym_fixed] = ACTIONS(3227), + [anon_sym_internal] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_partial] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_required] = ACTIONS(3227), + [anon_sym_sealed] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_where] = ACTIONS(3227), + [anon_sym_notnull] = ACTIONS(3227), + [anon_sym_unmanaged] = ACTIONS(3227), + [anon_sym_checked] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_this] = ACTIONS(3227), + [anon_sym_scoped] = ACTIONS(3227), + [anon_sym_base] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [sym_predefined_type] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_unchecked] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_when] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_foreach] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_into] = ACTIONS(3227), + [anon_sym_join] = ACTIONS(3227), + [anon_sym_on] = ACTIONS(3227), + [anon_sym_equals] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_orderby] = ACTIONS(3227), + [anon_sym_ascending] = ACTIONS(3227), + [anon_sym_descending] = ACTIONS(3227), + [anon_sym_group] = ACTIONS(3227), + [anon_sym_by] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_stackalloc] = ACTIONS(3227), + [anon_sym_sizeof] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym___makeref] = ACTIONS(3227), + [anon_sym___reftype] = ACTIONS(3227), + [anon_sym___refvalue] = ACTIONS(3227), + [sym_null_literal] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3229), + [sym_integer_literal] = ACTIONS(3227), + [sym_real_literal] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym_verbatim_string_literal] = ACTIONS(3229), + [aux_sym_preproc_if_token1] = ACTIONS(3229), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3229), + [sym_interpolation_verbatim_start] = ACTIONS(3229), + [sym_interpolation_raw_start] = ACTIONS(3229), + [sym_raw_string_start] = ACTIONS(3229), + }, + [2126] = { + [sym_preproc_region] = STATE(2126), + [sym_preproc_endregion] = STATE(2126), + [sym_preproc_line] = STATE(2126), + [sym_preproc_pragma] = STATE(2126), + [sym_preproc_nullable] = STATE(2126), + [sym_preproc_error] = STATE(2126), + [sym_preproc_warning] = STATE(2126), + [sym_preproc_define] = STATE(2126), + [sym_preproc_undef] = STATE(2126), + [sym__identifier_token] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_ref] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_delegate] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_fixed] = ACTIONS(3211), + [anon_sym_internal] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_partial] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_required] = ACTIONS(3211), + [anon_sym_sealed] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_where] = ACTIONS(3211), + [anon_sym_notnull] = ACTIONS(3211), + [anon_sym_unmanaged] = ACTIONS(3211), + [anon_sym_checked] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_this] = ACTIONS(3211), + [anon_sym_scoped] = ACTIONS(3211), + [anon_sym_base] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [sym_predefined_type] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_unchecked] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_lock] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_when] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_foreach] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_DOT_DOT] = ACTIONS(3213), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_into] = ACTIONS(3211), + [anon_sym_join] = ACTIONS(3211), + [anon_sym_on] = ACTIONS(3211), + [anon_sym_equals] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_orderby] = ACTIONS(3211), + [anon_sym_ascending] = ACTIONS(3211), + [anon_sym_descending] = ACTIONS(3211), + [anon_sym_group] = ACTIONS(3211), + [anon_sym_by] = ACTIONS(3211), + [anon_sym_select] = ACTIONS(3211), + [anon_sym_stackalloc] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym___makeref] = ACTIONS(3211), + [anon_sym___reftype] = ACTIONS(3211), + [anon_sym___refvalue] = ACTIONS(3211), + [sym_null_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3213), + [sym_integer_literal] = ACTIONS(3211), + [sym_real_literal] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_verbatim_string_literal] = ACTIONS(3213), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3213), + [sym_interpolation_verbatim_start] = ACTIONS(3213), + [sym_interpolation_raw_start] = ACTIONS(3213), + [sym_raw_string_start] = ACTIONS(3213), + }, + [2127] = { + [sym_preproc_region] = STATE(2127), + [sym_preproc_endregion] = STATE(2127), + [sym_preproc_line] = STATE(2127), + [sym_preproc_pragma] = STATE(2127), + [sym_preproc_nullable] = STATE(2127), + [sym_preproc_error] = STATE(2127), + [sym_preproc_warning] = STATE(2127), + [sym_preproc_define] = STATE(2127), + [sym_preproc_undef] = STATE(2127), + [sym__identifier_token] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_alias] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_global] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_unsafe] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_ref] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_delegate] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_file] = ACTIONS(3331), + [anon_sym_fixed] = ACTIONS(3331), + [anon_sym_internal] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_partial] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_required] = ACTIONS(3331), + [anon_sym_sealed] = ACTIONS(3331), + [anon_sym_virtual] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym_where] = ACTIONS(3331), + [anon_sym_notnull] = ACTIONS(3331), + [anon_sym_unmanaged] = ACTIONS(3331), + [anon_sym_checked] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_this] = ACTIONS(3331), + [anon_sym_scoped] = ACTIONS(3331), + [anon_sym_base] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [sym_predefined_type] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_unchecked] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_lock] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_foreach] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_into] = ACTIONS(3331), + [anon_sym_join] = ACTIONS(3331), + [anon_sym_on] = ACTIONS(3331), + [anon_sym_equals] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_orderby] = ACTIONS(3331), + [anon_sym_ascending] = ACTIONS(3331), + [anon_sym_descending] = ACTIONS(3331), + [anon_sym_group] = ACTIONS(3331), + [anon_sym_by] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_stackalloc] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym___makeref] = ACTIONS(3331), + [anon_sym___reftype] = ACTIONS(3331), + [anon_sym___refvalue] = ACTIONS(3331), + [sym_null_literal] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3333), + [sym_integer_literal] = ACTIONS(3331), + [sym_real_literal] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [sym_verbatim_string_literal] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3333), + [sym_interpolation_verbatim_start] = ACTIONS(3333), + [sym_interpolation_raw_start] = ACTIONS(3333), + [sym_raw_string_start] = ACTIONS(3333), + }, + [2128] = { + [sym_preproc_region] = STATE(2128), + [sym_preproc_endregion] = STATE(2128), + [sym_preproc_line] = STATE(2128), + [sym_preproc_pragma] = STATE(2128), + [sym_preproc_nullable] = STATE(2128), + [sym_preproc_error] = STATE(2128), + [sym_preproc_warning] = STATE(2128), + [sym_preproc_define] = STATE(2128), + [sym_preproc_undef] = STATE(2128), + [sym__identifier_token] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_alias] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_ref] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_delegate] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_file] = ACTIONS(3295), + [anon_sym_fixed] = ACTIONS(3295), + [anon_sym_internal] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_partial] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_required] = ACTIONS(3295), + [anon_sym_sealed] = ACTIONS(3295), + [anon_sym_virtual] = ACTIONS(3295), + [anon_sym_volatile] = ACTIONS(3295), + [anon_sym_where] = ACTIONS(3295), + [anon_sym_notnull] = ACTIONS(3295), + [anon_sym_unmanaged] = ACTIONS(3295), + [anon_sym_checked] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_this] = ACTIONS(3295), + [anon_sym_scoped] = ACTIONS(3295), + [anon_sym_base] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [sym_predefined_type] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_unchecked] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_when] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_foreach] = ACTIONS(3295), + [anon_sym_goto] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_into] = ACTIONS(3295), + [anon_sym_join] = ACTIONS(3295), + [anon_sym_on] = ACTIONS(3295), + [anon_sym_equals] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_orderby] = ACTIONS(3295), + [anon_sym_ascending] = ACTIONS(3295), + [anon_sym_descending] = ACTIONS(3295), + [anon_sym_group] = ACTIONS(3295), + [anon_sym_by] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_stackalloc] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym___makeref] = ACTIONS(3295), + [anon_sym___reftype] = ACTIONS(3295), + [anon_sym___refvalue] = ACTIONS(3295), + [sym_null_literal] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3297), + [sym_integer_literal] = ACTIONS(3295), + [sym_real_literal] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [sym_verbatim_string_literal] = ACTIONS(3297), + [aux_sym_preproc_if_token1] = ACTIONS(3297), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3297), + [sym_interpolation_verbatim_start] = ACTIONS(3297), + [sym_interpolation_raw_start] = ACTIONS(3297), + [sym_raw_string_start] = ACTIONS(3297), + }, + [2129] = { + [sym_preproc_region] = STATE(2129), + [sym_preproc_endregion] = STATE(2129), + [sym_preproc_line] = STATE(2129), + [sym_preproc_pragma] = STATE(2129), + [sym_preproc_nullable] = STATE(2129), + [sym_preproc_error] = STATE(2129), + [sym_preproc_warning] = STATE(2129), + [sym_preproc_define] = STATE(2129), + [sym_preproc_undef] = STATE(2129), + [sym__identifier_token] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_alias] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_unsafe] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_ref] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_delegate] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_file] = ACTIONS(3339), + [anon_sym_fixed] = ACTIONS(3339), + [anon_sym_internal] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_partial] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_sealed] = ACTIONS(3339), + [anon_sym_virtual] = ACTIONS(3339), + [anon_sym_volatile] = ACTIONS(3339), + [anon_sym_where] = ACTIONS(3339), + [anon_sym_notnull] = ACTIONS(3339), + [anon_sym_unmanaged] = ACTIONS(3339), + [anon_sym_checked] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_this] = ACTIONS(3339), + [anon_sym_scoped] = ACTIONS(3339), + [anon_sym_base] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [sym_predefined_type] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_unchecked] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_lock] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_when] = ACTIONS(3339), + [anon_sym_await] = ACTIONS(3339), + [anon_sym_foreach] = ACTIONS(3339), + [anon_sym_goto] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_into] = ACTIONS(3339), + [anon_sym_join] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_equals] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_orderby] = ACTIONS(3339), + [anon_sym_ascending] = ACTIONS(3339), + [anon_sym_descending] = ACTIONS(3339), + [anon_sym_group] = ACTIONS(3339), + [anon_sym_by] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_stackalloc] = ACTIONS(3339), + [anon_sym_sizeof] = ACTIONS(3339), + [anon_sym_typeof] = ACTIONS(3339), + [anon_sym___makeref] = ACTIONS(3339), + [anon_sym___reftype] = ACTIONS(3339), + [anon_sym___refvalue] = ACTIONS(3339), + [sym_null_literal] = ACTIONS(3339), + [anon_sym_SQUOTE] = ACTIONS(3341), + [sym_integer_literal] = ACTIONS(3339), + [sym_real_literal] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [sym_verbatim_string_literal] = ACTIONS(3341), + [aux_sym_preproc_if_token1] = ACTIONS(3341), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3341), + [sym_interpolation_verbatim_start] = ACTIONS(3341), + [sym_interpolation_raw_start] = ACTIONS(3341), + [sym_raw_string_start] = ACTIONS(3341), }, - [2129] = { - [sym_preproc_region] = STATE(2129), - [sym_preproc_endregion] = STATE(2129), - [sym_preproc_line] = STATE(2129), - [sym_preproc_pragma] = STATE(2129), - [sym_preproc_nullable] = STATE(2129), - [sym_preproc_error] = STATE(2129), - [sym_preproc_warning] = STATE(2129), - [sym_preproc_define] = STATE(2129), - [sym_preproc_undef] = STATE(2129), + [2130] = { + [sym_preproc_region] = STATE(2130), + [sym_preproc_endregion] = STATE(2130), + [sym_preproc_line] = STATE(2130), + [sym_preproc_pragma] = STATE(2130), + [sym_preproc_nullable] = STATE(2130), + [sym_preproc_error] = STATE(2130), + [sym_preproc_warning] = STATE(2130), + [sym_preproc_define] = STATE(2130), + [sym_preproc_undef] = STATE(2130), [sym__identifier_token] = ACTIONS(3323), [anon_sym_extern] = ACTIONS(3323), [anon_sym_alias] = ACTIONS(3323), @@ -393287,113 +393444,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3325), [sym_raw_string_start] = ACTIONS(3325), }, - [2130] = { - [sym_preproc_region] = STATE(2130), - [sym_preproc_endregion] = STATE(2130), - [sym_preproc_line] = STATE(2130), - [sym_preproc_pragma] = STATE(2130), - [sym_preproc_nullable] = STATE(2130), - [sym_preproc_error] = STATE(2130), - [sym_preproc_warning] = STATE(2130), - [sym_preproc_define] = STATE(2130), - [sym_preproc_undef] = STATE(2130), - [sym__identifier_token] = ACTIONS(3185), - [anon_sym_extern] = ACTIONS(3185), - [anon_sym_alias] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_global] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_ref] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_delegate] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_file] = ACTIONS(3185), - [anon_sym_fixed] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_partial] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_required] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_virtual] = ACTIONS(3185), - [anon_sym_volatile] = ACTIONS(3185), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_notnull] = ACTIONS(3185), - [anon_sym_unmanaged] = ACTIONS(3185), - [anon_sym_checked] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_scoped] = ACTIONS(3185), - [anon_sym_base] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [sym_predefined_type] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_unchecked] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_case] = ACTIONS(3185), - [anon_sym_default] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_foreach] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(3187), - [anon_sym_from] = ACTIONS(3185), - [anon_sym_into] = ACTIONS(3185), - [anon_sym_join] = ACTIONS(3185), - [anon_sym_on] = ACTIONS(3185), - [anon_sym_equals] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_orderby] = ACTIONS(3185), - [anon_sym_ascending] = ACTIONS(3185), - [anon_sym_descending] = ACTIONS(3185), - [anon_sym_group] = ACTIONS(3185), - [anon_sym_by] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_stackalloc] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym___makeref] = ACTIONS(3185), - [anon_sym___reftype] = ACTIONS(3185), - [anon_sym___refvalue] = ACTIONS(3185), - [sym_null_literal] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_real_literal] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_verbatim_string_literal] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3187), + [2131] = { + [sym_preproc_region] = STATE(2131), + [sym_preproc_endregion] = STATE(2131), + [sym_preproc_line] = STATE(2131), + [sym_preproc_pragma] = STATE(2131), + [sym_preproc_nullable] = STATE(2131), + [sym_preproc_error] = STATE(2131), + [sym_preproc_warning] = STATE(2131), + [sym_preproc_define] = STATE(2131), + [sym_preproc_undef] = STATE(2131), + [sym__identifier_token] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_alias] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_unsafe] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_ref] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_delegate] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_file] = ACTIONS(3243), + [anon_sym_fixed] = ACTIONS(3243), + [anon_sym_internal] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_partial] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_required] = ACTIONS(3243), + [anon_sym_sealed] = ACTIONS(3243), + [anon_sym_virtual] = ACTIONS(3243), + [anon_sym_volatile] = ACTIONS(3243), + [anon_sym_where] = ACTIONS(3243), + [anon_sym_notnull] = ACTIONS(3243), + [anon_sym_unmanaged] = ACTIONS(3243), + [anon_sym_checked] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3243), + [anon_sym_scoped] = ACTIONS(3243), + [anon_sym_base] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [sym_predefined_type] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_unchecked] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_lock] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_when] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_foreach] = ACTIONS(3243), + [anon_sym_goto] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3245), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_into] = ACTIONS(3243), + [anon_sym_join] = ACTIONS(3243), + [anon_sym_on] = ACTIONS(3243), + [anon_sym_equals] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_orderby] = ACTIONS(3243), + [anon_sym_ascending] = ACTIONS(3243), + [anon_sym_descending] = ACTIONS(3243), + [anon_sym_group] = ACTIONS(3243), + [anon_sym_by] = ACTIONS(3243), + [anon_sym_select] = ACTIONS(3243), + [anon_sym_stackalloc] = ACTIONS(3243), + [anon_sym_sizeof] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym___makeref] = ACTIONS(3243), + [anon_sym___reftype] = ACTIONS(3243), + [anon_sym___refvalue] = ACTIONS(3243), + [sym_null_literal] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3245), + [sym_integer_literal] = ACTIONS(3243), + [sym_real_literal] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [sym_verbatim_string_literal] = ACTIONS(3245), + [aux_sym_preproc_if_token1] = ACTIONS(3245), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3245), + [sym_interpolation_verbatim_start] = ACTIONS(3245), + [sym_interpolation_raw_start] = ACTIONS(3245), + [sym_raw_string_start] = ACTIONS(3245), + }, + [2132] = { + [sym_preproc_region] = STATE(2132), + [sym_preproc_endregion] = STATE(2132), + [sym_preproc_line] = STATE(2132), + [sym_preproc_pragma] = STATE(2132), + [sym_preproc_nullable] = STATE(2132), + [sym_preproc_error] = STATE(2132), + [sym_preproc_warning] = STATE(2132), + [sym_preproc_define] = STATE(2132), + [sym_preproc_undef] = STATE(2132), + [sym__identifier_token] = ACTIONS(3173), + [anon_sym_extern] = ACTIONS(3173), + [anon_sym_alias] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3173), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_ref] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_delegate] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_async] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_file] = ACTIONS(3173), + [anon_sym_fixed] = ACTIONS(3173), + [anon_sym_internal] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_partial] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_protected] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_readonly] = ACTIONS(3173), + [anon_sym_required] = ACTIONS(3173), + [anon_sym_sealed] = ACTIONS(3173), + [anon_sym_virtual] = ACTIONS(3173), + [anon_sym_volatile] = ACTIONS(3173), + [anon_sym_where] = ACTIONS(3173), + [anon_sym_notnull] = ACTIONS(3173), + [anon_sym_unmanaged] = ACTIONS(3173), + [anon_sym_checked] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3173), + [anon_sym_scoped] = ACTIONS(3173), + [anon_sym_base] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [sym_predefined_type] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_unchecked] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3173), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_case] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_when] = ACTIONS(3173), + [anon_sym_await] = ACTIONS(3173), + [anon_sym_foreach] = ACTIONS(3173), + [anon_sym_goto] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3175), + [anon_sym_from] = ACTIONS(3173), + [anon_sym_into] = ACTIONS(3173), + [anon_sym_join] = ACTIONS(3173), + [anon_sym_on] = ACTIONS(3173), + [anon_sym_equals] = ACTIONS(3173), + [anon_sym_let] = ACTIONS(3173), + [anon_sym_orderby] = ACTIONS(3173), + [anon_sym_ascending] = ACTIONS(3173), + [anon_sym_descending] = ACTIONS(3173), + [anon_sym_group] = ACTIONS(3173), + [anon_sym_by] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_stackalloc] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3173), + [anon_sym_typeof] = ACTIONS(3173), + [anon_sym___makeref] = ACTIONS(3173), + [anon_sym___reftype] = ACTIONS(3173), + [anon_sym___refvalue] = ACTIONS(3173), + [sym_null_literal] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3175), + [sym_integer_literal] = ACTIONS(3173), + [sym_real_literal] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [sym_verbatim_string_literal] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393404,21 +393683,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3187), - [sym_interpolation_verbatim_start] = ACTIONS(3187), - [sym_interpolation_raw_start] = ACTIONS(3187), - [sym_raw_string_start] = ACTIONS(3187), + [sym_interpolation_regular_start] = ACTIONS(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [2131] = { - [sym_preproc_region] = STATE(2131), - [sym_preproc_endregion] = STATE(2131), - [sym_preproc_line] = STATE(2131), - [sym_preproc_pragma] = STATE(2131), - [sym_preproc_nullable] = STATE(2131), - [sym_preproc_error] = STATE(2131), - [sym_preproc_warning] = STATE(2131), - [sym_preproc_define] = STATE(2131), - [sym_preproc_undef] = STATE(2131), + [2133] = { + [sym_preproc_region] = STATE(2133), + [sym_preproc_endregion] = STATE(2133), + [sym_preproc_line] = STATE(2133), + [sym_preproc_pragma] = STATE(2133), + [sym_preproc_nullable] = STATE(2133), + [sym_preproc_error] = STATE(2133), + [sym_preproc_warning] = STATE(2133), + [sym_preproc_define] = STATE(2133), + [sym_preproc_undef] = STATE(2133), + [sym__identifier_token] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_alias] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_unsafe] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_ref] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_delegate] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_file] = ACTIONS(3327), + [anon_sym_fixed] = ACTIONS(3327), + [anon_sym_internal] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_partial] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_required] = ACTIONS(3327), + [anon_sym_sealed] = ACTIONS(3327), + [anon_sym_virtual] = ACTIONS(3327), + [anon_sym_volatile] = ACTIONS(3327), + [anon_sym_where] = ACTIONS(3327), + [anon_sym_notnull] = ACTIONS(3327), + [anon_sym_unmanaged] = ACTIONS(3327), + [anon_sym_checked] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_this] = ACTIONS(3327), + [anon_sym_scoped] = ACTIONS(3327), + [anon_sym_base] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [sym_predefined_type] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_unchecked] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_lock] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_when] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_foreach] = ACTIONS(3327), + [anon_sym_goto] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_into] = ACTIONS(3327), + [anon_sym_join] = ACTIONS(3327), + [anon_sym_on] = ACTIONS(3327), + [anon_sym_equals] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_orderby] = ACTIONS(3327), + [anon_sym_ascending] = ACTIONS(3327), + [anon_sym_descending] = ACTIONS(3327), + [anon_sym_group] = ACTIONS(3327), + [anon_sym_by] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_stackalloc] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym___makeref] = ACTIONS(3327), + [anon_sym___reftype] = ACTIONS(3327), + [anon_sym___refvalue] = ACTIONS(3327), + [sym_null_literal] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3329), + [sym_integer_literal] = ACTIONS(3327), + [sym_real_literal] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_verbatim_string_literal] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), + }, + [2134] = { + [sym_preproc_region] = STATE(2134), + [sym_preproc_endregion] = STATE(2134), + [sym_preproc_line] = STATE(2134), + [sym_preproc_pragma] = STATE(2134), + [sym_preproc_nullable] = STATE(2134), + [sym_preproc_error] = STATE(2134), + [sym_preproc_warning] = STATE(2134), + [sym_preproc_define] = STATE(2134), + [sym_preproc_undef] = STATE(2134), + [sym__identifier_token] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_alias] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_ref] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_delegate] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_file] = ACTIONS(3251), + [anon_sym_fixed] = ACTIONS(3251), + [anon_sym_internal] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_partial] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_required] = ACTIONS(3251), + [anon_sym_sealed] = ACTIONS(3251), + [anon_sym_virtual] = ACTIONS(3251), + [anon_sym_volatile] = ACTIONS(3251), + [anon_sym_where] = ACTIONS(3251), + [anon_sym_notnull] = ACTIONS(3251), + [anon_sym_unmanaged] = ACTIONS(3251), + [anon_sym_checked] = ACTIONS(3251), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_this] = ACTIONS(3251), + [anon_sym_scoped] = ACTIONS(3251), + [anon_sym_base] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [sym_predefined_type] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_unchecked] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_lock] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_when] = ACTIONS(3251), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_foreach] = ACTIONS(3251), + [anon_sym_goto] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_DOT_DOT] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_into] = ACTIONS(3251), + [anon_sym_join] = ACTIONS(3251), + [anon_sym_on] = ACTIONS(3251), + [anon_sym_equals] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_orderby] = ACTIONS(3251), + [anon_sym_ascending] = ACTIONS(3251), + [anon_sym_descending] = ACTIONS(3251), + [anon_sym_group] = ACTIONS(3251), + [anon_sym_by] = ACTIONS(3251), + [anon_sym_select] = ACTIONS(3251), + [anon_sym_stackalloc] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3251), + [anon_sym_typeof] = ACTIONS(3251), + [anon_sym___makeref] = ACTIONS(3251), + [anon_sym___reftype] = ACTIONS(3251), + [anon_sym___refvalue] = ACTIONS(3251), + [sym_null_literal] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(3253), + [sym_integer_literal] = ACTIONS(3251), + [sym_real_literal] = ACTIONS(3253), + [anon_sym_DQUOTE] = ACTIONS(3253), + [sym_verbatim_string_literal] = ACTIONS(3253), + [aux_sym_preproc_if_token1] = ACTIONS(3253), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3253), + [sym_interpolation_verbatim_start] = ACTIONS(3253), + [sym_interpolation_raw_start] = ACTIONS(3253), + [sym_raw_string_start] = ACTIONS(3253), + }, + [2135] = { + [sym_preproc_region] = STATE(2135), + [sym_preproc_endregion] = STATE(2135), + [sym_preproc_line] = STATE(2135), + [sym_preproc_pragma] = STATE(2135), + [sym_preproc_nullable] = STATE(2135), + [sym_preproc_error] = STATE(2135), + [sym_preproc_warning] = STATE(2135), + [sym_preproc_define] = STATE(2135), + [sym_preproc_undef] = STATE(2135), [sym__identifier_token] = ACTIONS(3189), [anon_sym_extern] = ACTIONS(3189), [anon_sym_alias] = ACTIONS(3189), @@ -393531,16 +394054,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3191), [sym_raw_string_start] = ACTIONS(3191), }, - [2132] = { - [sym_preproc_region] = STATE(2132), - [sym_preproc_endregion] = STATE(2132), - [sym_preproc_line] = STATE(2132), - [sym_preproc_pragma] = STATE(2132), - [sym_preproc_nullable] = STATE(2132), - [sym_preproc_error] = STATE(2132), - [sym_preproc_warning] = STATE(2132), - [sym_preproc_define] = STATE(2132), - [sym_preproc_undef] = STATE(2132), + [2136] = { + [sym_preproc_region] = STATE(2136), + [sym_preproc_endregion] = STATE(2136), + [sym_preproc_line] = STATE(2136), + [sym_preproc_pragma] = STATE(2136), + [sym_preproc_nullable] = STATE(2136), + [sym_preproc_error] = STATE(2136), + [sym_preproc_warning] = STATE(2136), + [sym_preproc_define] = STATE(2136), + [sym_preproc_undef] = STATE(2136), + [sym__identifier_token] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_alias] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_global] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_ref] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_delegate] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_file] = ACTIONS(3283), + [anon_sym_fixed] = ACTIONS(3283), + [anon_sym_internal] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_partial] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_required] = ACTIONS(3283), + [anon_sym_sealed] = ACTIONS(3283), + [anon_sym_virtual] = ACTIONS(3283), + [anon_sym_volatile] = ACTIONS(3283), + [anon_sym_where] = ACTIONS(3283), + [anon_sym_notnull] = ACTIONS(3283), + [anon_sym_unmanaged] = ACTIONS(3283), + [anon_sym_checked] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_this] = ACTIONS(3283), + [anon_sym_scoped] = ACTIONS(3283), + [anon_sym_base] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [sym_predefined_type] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_unchecked] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_when] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_foreach] = ACTIONS(3283), + [anon_sym_goto] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3285), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_into] = ACTIONS(3283), + [anon_sym_join] = ACTIONS(3283), + [anon_sym_on] = ACTIONS(3283), + [anon_sym_equals] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_orderby] = ACTIONS(3283), + [anon_sym_ascending] = ACTIONS(3283), + [anon_sym_descending] = ACTIONS(3283), + [anon_sym_group] = ACTIONS(3283), + [anon_sym_by] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_stackalloc] = ACTIONS(3283), + [anon_sym_sizeof] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym___makeref] = ACTIONS(3283), + [anon_sym___reftype] = ACTIONS(3283), + [anon_sym___refvalue] = ACTIONS(3283), + [sym_null_literal] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3285), + [sym_integer_literal] = ACTIONS(3283), + [sym_real_literal] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [sym_verbatim_string_literal] = ACTIONS(3285), + [aux_sym_preproc_if_token1] = ACTIONS(3285), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3285), + [sym_interpolation_verbatim_start] = ACTIONS(3285), + [sym_interpolation_raw_start] = ACTIONS(3285), + [sym_raw_string_start] = ACTIONS(3285), + }, + [2137] = { + [sym_preproc_region] = STATE(2137), + [sym_preproc_endregion] = STATE(2137), + [sym_preproc_line] = STATE(2137), + [sym_preproc_pragma] = STATE(2137), + [sym_preproc_nullable] = STATE(2137), + [sym_preproc_error] = STATE(2137), + [sym_preproc_warning] = STATE(2137), + [sym_preproc_define] = STATE(2137), + [sym_preproc_undef] = STATE(2137), [sym__identifier_token] = ACTIONS(3193), [anon_sym_extern] = ACTIONS(3193), [anon_sym_alias] = ACTIONS(3193), @@ -393611,7 +394256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3193), [anon_sym_goto] = ACTIONS(3193), [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3499), [anon_sym_DOT_DOT] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3193), [anon_sym_into] = ACTIONS(3193), @@ -393622,754 +394267,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_orderby] = ACTIONS(3193), [anon_sym_ascending] = ACTIONS(3193), [anon_sym_descending] = ACTIONS(3193), - [anon_sym_group] = ACTIONS(3193), - [anon_sym_by] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_stackalloc] = ACTIONS(3193), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym___makeref] = ACTIONS(3193), - [anon_sym___reftype] = ACTIONS(3193), - [anon_sym___refvalue] = ACTIONS(3193), - [sym_null_literal] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_real_literal] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_verbatim_string_literal] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3195), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3195), - [sym_interpolation_verbatim_start] = ACTIONS(3195), - [sym_interpolation_raw_start] = ACTIONS(3195), - [sym_raw_string_start] = ACTIONS(3195), - }, - [2133] = { - [sym_preproc_region] = STATE(2133), - [sym_preproc_endregion] = STATE(2133), - [sym_preproc_line] = STATE(2133), - [sym_preproc_pragma] = STATE(2133), - [sym_preproc_nullable] = STATE(2133), - [sym_preproc_error] = STATE(2133), - [sym_preproc_warning] = STATE(2133), - [sym_preproc_define] = STATE(2133), - [sym_preproc_undef] = STATE(2133), - [sym__identifier_token] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym_alias] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_global] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_ref] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_delegate] = ACTIONS(3197), - [anon_sym_abstract] = ACTIONS(3197), - [anon_sym_async] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_file] = ACTIONS(3197), - [anon_sym_fixed] = ACTIONS(3197), - [anon_sym_internal] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_override] = ACTIONS(3197), - [anon_sym_partial] = ACTIONS(3197), - [anon_sym_private] = ACTIONS(3197), - [anon_sym_protected] = ACTIONS(3197), - [anon_sym_public] = ACTIONS(3197), - [anon_sym_readonly] = ACTIONS(3197), - [anon_sym_required] = ACTIONS(3197), - [anon_sym_sealed] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_where] = ACTIONS(3197), - [anon_sym_notnull] = ACTIONS(3197), - [anon_sym_unmanaged] = ACTIONS(3197), - [anon_sym_checked] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_this] = ACTIONS(3197), - [anon_sym_scoped] = ACTIONS(3197), - [anon_sym_base] = ACTIONS(3197), - [anon_sym_var] = ACTIONS(3197), - [sym_predefined_type] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_unchecked] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_when] = ACTIONS(3197), - [anon_sym_await] = ACTIONS(3197), - [anon_sym_foreach] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [anon_sym_from] = ACTIONS(3197), - [anon_sym_into] = ACTIONS(3197), - [anon_sym_join] = ACTIONS(3197), - [anon_sym_on] = ACTIONS(3197), - [anon_sym_equals] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_orderby] = ACTIONS(3197), - [anon_sym_ascending] = ACTIONS(3197), - [anon_sym_descending] = ACTIONS(3197), - [anon_sym_group] = ACTIONS(3197), - [anon_sym_by] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_stackalloc] = ACTIONS(3197), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym_typeof] = ACTIONS(3197), - [anon_sym___makeref] = ACTIONS(3197), - [anon_sym___reftype] = ACTIONS(3197), - [anon_sym___refvalue] = ACTIONS(3197), - [sym_null_literal] = ACTIONS(3197), - [anon_sym_SQUOTE] = ACTIONS(3199), - [sym_integer_literal] = ACTIONS(3197), - [sym_real_literal] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_verbatim_string_literal] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3199), - [sym_interpolation_verbatim_start] = ACTIONS(3199), - [sym_interpolation_raw_start] = ACTIONS(3199), - [sym_raw_string_start] = ACTIONS(3199), - }, - [2134] = { - [sym_preproc_region] = STATE(2134), - [sym_preproc_endregion] = STATE(2134), - [sym_preproc_line] = STATE(2134), - [sym_preproc_pragma] = STATE(2134), - [sym_preproc_nullable] = STATE(2134), - [sym_preproc_error] = STATE(2134), - [sym_preproc_warning] = STATE(2134), - [sym_preproc_define] = STATE(2134), - [sym_preproc_undef] = STATE(2134), - [sym__identifier_token] = ACTIONS(3291), - [anon_sym_extern] = ACTIONS(3291), - [anon_sym_alias] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_global] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_ref] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_delegate] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_file] = ACTIONS(3291), - [anon_sym_fixed] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_partial] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_sealed] = ACTIONS(3291), - [anon_sym_virtual] = ACTIONS(3291), - [anon_sym_volatile] = ACTIONS(3291), - [anon_sym_where] = ACTIONS(3291), - [anon_sym_notnull] = ACTIONS(3291), - [anon_sym_unmanaged] = ACTIONS(3291), - [anon_sym_checked] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_CARET] = ACTIONS(3293), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_this] = ACTIONS(3291), - [anon_sym_scoped] = ACTIONS(3291), - [anon_sym_base] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [sym_predefined_type] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_unchecked] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_when] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_foreach] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [anon_sym_from] = ACTIONS(3291), - [anon_sym_into] = ACTIONS(3291), - [anon_sym_join] = ACTIONS(3291), - [anon_sym_on] = ACTIONS(3291), - [anon_sym_equals] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_orderby] = ACTIONS(3291), - [anon_sym_ascending] = ACTIONS(3291), - [anon_sym_descending] = ACTIONS(3291), - [anon_sym_group] = ACTIONS(3291), - [anon_sym_by] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_stackalloc] = ACTIONS(3291), - [anon_sym_sizeof] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym___makeref] = ACTIONS(3291), - [anon_sym___reftype] = ACTIONS(3291), - [anon_sym___refvalue] = ACTIONS(3291), - [sym_null_literal] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3293), - [sym_integer_literal] = ACTIONS(3291), - [sym_real_literal] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [sym_verbatim_string_literal] = ACTIONS(3293), - [aux_sym_preproc_if_token1] = ACTIONS(3293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3293), - [sym_interpolation_verbatim_start] = ACTIONS(3293), - [sym_interpolation_raw_start] = ACTIONS(3293), - [sym_raw_string_start] = ACTIONS(3293), - }, - [2135] = { - [sym_preproc_region] = STATE(2135), - [sym_preproc_endregion] = STATE(2135), - [sym_preproc_line] = STATE(2135), - [sym_preproc_pragma] = STATE(2135), - [sym_preproc_nullable] = STATE(2135), - [sym_preproc_error] = STATE(2135), - [sym_preproc_warning] = STATE(2135), - [sym_preproc_define] = STATE(2135), - [sym_preproc_undef] = STATE(2135), - [sym__identifier_token] = ACTIONS(3129), - [anon_sym_extern] = ACTIONS(3129), - [anon_sym_alias] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_ref] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_delegate] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_file] = ACTIONS(3129), - [anon_sym_fixed] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_partial] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_required] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_virtual] = ACTIONS(3129), - [anon_sym_volatile] = ACTIONS(3129), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_notnull] = ACTIONS(3129), - [anon_sym_unmanaged] = ACTIONS(3129), - [anon_sym_checked] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_scoped] = ACTIONS(3129), - [anon_sym_base] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [sym_predefined_type] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_unchecked] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_case] = ACTIONS(3129), - [anon_sym_default] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_foreach] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_into] = ACTIONS(3129), - [anon_sym_join] = ACTIONS(3129), - [anon_sym_on] = ACTIONS(3129), - [anon_sym_equals] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_orderby] = ACTIONS(3129), - [anon_sym_ascending] = ACTIONS(3129), - [anon_sym_descending] = ACTIONS(3129), - [anon_sym_group] = ACTIONS(3129), - [anon_sym_by] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_stackalloc] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym___makeref] = ACTIONS(3129), - [anon_sym___reftype] = ACTIONS(3129), - [anon_sym___refvalue] = ACTIONS(3129), - [sym_null_literal] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_real_literal] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_verbatim_string_literal] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3131), - [sym_interpolation_verbatim_start] = ACTIONS(3131), - [sym_interpolation_raw_start] = ACTIONS(3131), - [sym_raw_string_start] = ACTIONS(3131), - }, - [2136] = { - [sym_preproc_region] = STATE(2136), - [sym_preproc_endregion] = STATE(2136), - [sym_preproc_line] = STATE(2136), - [sym_preproc_pragma] = STATE(2136), - [sym_preproc_nullable] = STATE(2136), - [sym_preproc_error] = STATE(2136), - [sym_preproc_warning] = STATE(2136), - [sym_preproc_define] = STATE(2136), - [sym_preproc_undef] = STATE(2136), - [sym__identifier_token] = ACTIONS(3327), - [anon_sym_extern] = ACTIONS(3327), - [anon_sym_alias] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_global] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_static] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_ref] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_delegate] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_file] = ACTIONS(3327), - [anon_sym_fixed] = ACTIONS(3327), - [anon_sym_internal] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3327), - [anon_sym_partial] = ACTIONS(3327), - [anon_sym_private] = ACTIONS(3327), - [anon_sym_protected] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3327), - [anon_sym_readonly] = ACTIONS(3327), - [anon_sym_required] = ACTIONS(3327), - [anon_sym_sealed] = ACTIONS(3327), - [anon_sym_virtual] = ACTIONS(3327), - [anon_sym_volatile] = ACTIONS(3327), - [anon_sym_where] = ACTIONS(3327), - [anon_sym_notnull] = ACTIONS(3327), - [anon_sym_unmanaged] = ACTIONS(3327), - [anon_sym_checked] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_this] = ACTIONS(3327), - [anon_sym_scoped] = ACTIONS(3327), - [anon_sym_base] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [sym_predefined_type] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_unchecked] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_when] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_foreach] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_from] = ACTIONS(3327), - [anon_sym_into] = ACTIONS(3327), - [anon_sym_join] = ACTIONS(3327), - [anon_sym_on] = ACTIONS(3327), - [anon_sym_equals] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_orderby] = ACTIONS(3327), - [anon_sym_ascending] = ACTIONS(3327), - [anon_sym_descending] = ACTIONS(3327), - [anon_sym_group] = ACTIONS(3327), - [anon_sym_by] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_stackalloc] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym___makeref] = ACTIONS(3327), - [anon_sym___reftype] = ACTIONS(3327), - [anon_sym___refvalue] = ACTIONS(3327), - [sym_null_literal] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3329), - [sym_integer_literal] = ACTIONS(3327), - [sym_real_literal] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym_verbatim_string_literal] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3329), - [sym_interpolation_verbatim_start] = ACTIONS(3329), - [sym_interpolation_raw_start] = ACTIONS(3329), - [sym_raw_string_start] = ACTIONS(3329), - }, - [2137] = { - [sym_preproc_region] = STATE(2137), - [sym_preproc_endregion] = STATE(2137), - [sym_preproc_line] = STATE(2137), - [sym_preproc_pragma] = STATE(2137), - [sym_preproc_nullable] = STATE(2137), - [sym_preproc_error] = STATE(2137), - [sym_preproc_warning] = STATE(2137), - [sym_preproc_define] = STATE(2137), - [sym_preproc_undef] = STATE(2137), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_ref] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_delegate] = ACTIONS(3201), - [anon_sym_abstract] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_file] = ACTIONS(3201), - [anon_sym_fixed] = ACTIONS(3201), - [anon_sym_internal] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_override] = ACTIONS(3201), - [anon_sym_partial] = ACTIONS(3201), - [anon_sym_private] = ACTIONS(3201), - [anon_sym_protected] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3201), - [anon_sym_readonly] = ACTIONS(3201), - [anon_sym_required] = ACTIONS(3201), - [anon_sym_sealed] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_notnull] = ACTIONS(3201), - [anon_sym_unmanaged] = ACTIONS(3201), - [anon_sym_checked] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_this] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_base] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_unchecked] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_await] = ACTIONS(3201), - [anon_sym_foreach] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3203), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_orderby] = ACTIONS(3201), - [anon_sym_ascending] = ACTIONS(3201), - [anon_sym_descending] = ACTIONS(3201), - [anon_sym_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_stackalloc] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym_typeof] = ACTIONS(3201), - [anon_sym___makeref] = ACTIONS(3201), - [anon_sym___reftype] = ACTIONS(3201), - [anon_sym___refvalue] = ACTIONS(3201), - [sym_null_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3201), - [sym_real_literal] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_verbatim_string_literal] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3203), - [sym_interpolation_verbatim_start] = ACTIONS(3203), - [sym_interpolation_raw_start] = ACTIONS(3203), - [sym_raw_string_start] = ACTIONS(3203), - }, - [2138] = { - [sym_preproc_region] = STATE(2138), - [sym_preproc_endregion] = STATE(2138), - [sym_preproc_line] = STATE(2138), - [sym_preproc_pragma] = STATE(2138), - [sym_preproc_nullable] = STATE(2138), - [sym_preproc_error] = STATE(2138), - [sym_preproc_warning] = STATE(2138), - [sym_preproc_define] = STATE(2138), - [sym_preproc_undef] = STATE(2138), - [sym__identifier_token] = ACTIONS(3331), - [anon_sym_extern] = ACTIONS(3331), - [anon_sym_alias] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_global] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_ref] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_delegate] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_file] = ACTIONS(3331), - [anon_sym_fixed] = ACTIONS(3331), - [anon_sym_internal] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_partial] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_required] = ACTIONS(3331), - [anon_sym_sealed] = ACTIONS(3331), - [anon_sym_virtual] = ACTIONS(3331), - [anon_sym_volatile] = ACTIONS(3331), - [anon_sym_where] = ACTIONS(3331), - [anon_sym_notnull] = ACTIONS(3331), - [anon_sym_unmanaged] = ACTIONS(3331), - [anon_sym_checked] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_this] = ACTIONS(3331), - [anon_sym_scoped] = ACTIONS(3331), - [anon_sym_base] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [sym_predefined_type] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_unchecked] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_when] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_foreach] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_from] = ACTIONS(3331), - [anon_sym_into] = ACTIONS(3331), - [anon_sym_join] = ACTIONS(3331), - [anon_sym_on] = ACTIONS(3331), - [anon_sym_equals] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_orderby] = ACTIONS(3331), - [anon_sym_ascending] = ACTIONS(3331), - [anon_sym_descending] = ACTIONS(3331), - [anon_sym_group] = ACTIONS(3331), - [anon_sym_by] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_stackalloc] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym___makeref] = ACTIONS(3331), - [anon_sym___reftype] = ACTIONS(3331), - [anon_sym___refvalue] = ACTIONS(3331), - [sym_null_literal] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3333), - [sym_integer_literal] = ACTIONS(3331), - [sym_real_literal] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [sym_verbatim_string_literal] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), + [anon_sym_group] = ACTIONS(3193), + [anon_sym_by] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_stackalloc] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym___makeref] = ACTIONS(3193), + [anon_sym___reftype] = ACTIONS(3193), + [anon_sym___refvalue] = ACTIONS(3193), + [sym_null_literal] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [sym_real_literal] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_verbatim_string_literal] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394380,118 +394293,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3333), - [sym_interpolation_verbatim_start] = ACTIONS(3333), - [sym_interpolation_raw_start] = ACTIONS(3333), - [sym_raw_string_start] = ACTIONS(3333), + [sym_interpolation_regular_start] = ACTIONS(3195), + [sym_interpolation_verbatim_start] = ACTIONS(3195), + [sym_interpolation_raw_start] = ACTIONS(3195), + [sym_raw_string_start] = ACTIONS(3195), }, - [2139] = { - [sym_preproc_region] = STATE(2139), - [sym_preproc_endregion] = STATE(2139), - [sym_preproc_line] = STATE(2139), - [sym_preproc_pragma] = STATE(2139), - [sym_preproc_nullable] = STATE(2139), - [sym_preproc_error] = STATE(2139), - [sym_preproc_warning] = STATE(2139), - [sym_preproc_define] = STATE(2139), - [sym_preproc_undef] = STATE(2139), - [sym__identifier_token] = ACTIONS(3335), - [anon_sym_extern] = ACTIONS(3335), - [anon_sym_alias] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_global] = ACTIONS(3335), - [anon_sym_using] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_ref] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_delegate] = ACTIONS(3335), - [anon_sym_abstract] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_file] = ACTIONS(3335), - [anon_sym_fixed] = ACTIONS(3335), - [anon_sym_internal] = ACTIONS(3335), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3335), - [anon_sym_partial] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_protected] = ACTIONS(3335), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_readonly] = ACTIONS(3335), - [anon_sym_required] = ACTIONS(3335), - [anon_sym_sealed] = ACTIONS(3335), - [anon_sym_virtual] = ACTIONS(3335), - [anon_sym_volatile] = ACTIONS(3335), - [anon_sym_where] = ACTIONS(3335), - [anon_sym_notnull] = ACTIONS(3335), - [anon_sym_unmanaged] = ACTIONS(3335), - [anon_sym_checked] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_this] = ACTIONS(3335), - [anon_sym_scoped] = ACTIONS(3335), - [anon_sym_base] = ACTIONS(3335), - [anon_sym_var] = ACTIONS(3335), - [sym_predefined_type] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_unchecked] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_do] = ACTIONS(3335), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_yield] = ACTIONS(3335), - [anon_sym_switch] = ACTIONS(3335), - [anon_sym_case] = ACTIONS(3335), - [anon_sym_default] = ACTIONS(3335), - [anon_sym_throw] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3335), - [anon_sym_when] = ACTIONS(3335), - [anon_sym_await] = ACTIONS(3335), - [anon_sym_foreach] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_from] = ACTIONS(3335), - [anon_sym_into] = ACTIONS(3335), - [anon_sym_join] = ACTIONS(3335), - [anon_sym_on] = ACTIONS(3335), - [anon_sym_equals] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3335), - [anon_sym_orderby] = ACTIONS(3335), - [anon_sym_ascending] = ACTIONS(3335), - [anon_sym_descending] = ACTIONS(3335), - [anon_sym_group] = ACTIONS(3335), - [anon_sym_by] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_stackalloc] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3335), - [anon_sym_typeof] = ACTIONS(3335), - [anon_sym___makeref] = ACTIONS(3335), - [anon_sym___reftype] = ACTIONS(3335), - [anon_sym___refvalue] = ACTIONS(3335), - [sym_null_literal] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3337), - [sym_integer_literal] = ACTIONS(3335), - [sym_real_literal] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [sym_verbatim_string_literal] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), + [2138] = { + [sym_preproc_region] = STATE(2138), + [sym_preproc_endregion] = STATE(2138), + [sym_preproc_line] = STATE(2138), + [sym_preproc_pragma] = STATE(2138), + [sym_preproc_nullable] = STATE(2138), + [sym_preproc_error] = STATE(2138), + [sym_preproc_warning] = STATE(2138), + [sym_preproc_define] = STATE(2138), + [sym_preproc_undef] = STATE(2138), + [sym__identifier_token] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_alias] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_ref] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_delegate] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_file] = ACTIONS(3299), + [anon_sym_fixed] = ACTIONS(3299), + [anon_sym_internal] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_partial] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_required] = ACTIONS(3299), + [anon_sym_sealed] = ACTIONS(3299), + [anon_sym_virtual] = ACTIONS(3299), + [anon_sym_volatile] = ACTIONS(3299), + [anon_sym_where] = ACTIONS(3299), + [anon_sym_notnull] = ACTIONS(3299), + [anon_sym_unmanaged] = ACTIONS(3299), + [anon_sym_checked] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_this] = ACTIONS(3299), + [anon_sym_scoped] = ACTIONS(3299), + [anon_sym_base] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [sym_predefined_type] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_unchecked] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_when] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_foreach] = ACTIONS(3299), + [anon_sym_goto] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_DOT_DOT] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_into] = ACTIONS(3299), + [anon_sym_join] = ACTIONS(3299), + [anon_sym_on] = ACTIONS(3299), + [anon_sym_equals] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_orderby] = ACTIONS(3299), + [anon_sym_ascending] = ACTIONS(3299), + [anon_sym_descending] = ACTIONS(3299), + [anon_sym_group] = ACTIONS(3299), + [anon_sym_by] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_stackalloc] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym___makeref] = ACTIONS(3299), + [anon_sym___reftype] = ACTIONS(3299), + [anon_sym___refvalue] = ACTIONS(3299), + [sym_null_literal] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3301), + [sym_integer_literal] = ACTIONS(3299), + [sym_real_literal] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [sym_verbatim_string_literal] = ACTIONS(3301), + [aux_sym_preproc_if_token1] = ACTIONS(3301), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394502,10 +394415,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3337), - [sym_interpolation_verbatim_start] = ACTIONS(3337), - [sym_interpolation_raw_start] = ACTIONS(3337), - [sym_raw_string_start] = ACTIONS(3337), + [sym_interpolation_regular_start] = ACTIONS(3301), + [sym_interpolation_verbatim_start] = ACTIONS(3301), + [sym_interpolation_raw_start] = ACTIONS(3301), + [sym_raw_string_start] = ACTIONS(3301), + }, + [2139] = { + [sym_preproc_region] = STATE(2139), + [sym_preproc_endregion] = STATE(2139), + [sym_preproc_line] = STATE(2139), + [sym_preproc_pragma] = STATE(2139), + [sym_preproc_nullable] = STATE(2139), + [sym_preproc_error] = STATE(2139), + [sym_preproc_warning] = STATE(2139), + [sym_preproc_define] = STATE(2139), + [sym_preproc_undef] = STATE(2139), + [sym__identifier_token] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_alias] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_ref] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_delegate] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_file] = ACTIONS(3255), + [anon_sym_fixed] = ACTIONS(3255), + [anon_sym_internal] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_partial] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_required] = ACTIONS(3255), + [anon_sym_sealed] = ACTIONS(3255), + [anon_sym_virtual] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_where] = ACTIONS(3255), + [anon_sym_notnull] = ACTIONS(3255), + [anon_sym_unmanaged] = ACTIONS(3255), + [anon_sym_checked] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_this] = ACTIONS(3255), + [anon_sym_scoped] = ACTIONS(3255), + [anon_sym_base] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [sym_predefined_type] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_unchecked] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_lock] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_when] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_foreach] = ACTIONS(3255), + [anon_sym_goto] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_into] = ACTIONS(3255), + [anon_sym_join] = ACTIONS(3255), + [anon_sym_on] = ACTIONS(3255), + [anon_sym_equals] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_orderby] = ACTIONS(3255), + [anon_sym_ascending] = ACTIONS(3255), + [anon_sym_descending] = ACTIONS(3255), + [anon_sym_group] = ACTIONS(3255), + [anon_sym_by] = ACTIONS(3255), + [anon_sym_select] = ACTIONS(3255), + [anon_sym_stackalloc] = ACTIONS(3255), + [anon_sym_sizeof] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym___makeref] = ACTIONS(3255), + [anon_sym___reftype] = ACTIONS(3255), + [anon_sym___refvalue] = ACTIONS(3255), + [sym_null_literal] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3257), + [sym_integer_literal] = ACTIONS(3255), + [sym_real_literal] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [sym_verbatim_string_literal] = ACTIONS(3257), + [aux_sym_preproc_if_token1] = ACTIONS(3257), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3257), + [sym_interpolation_verbatim_start] = ACTIONS(3257), + [sym_interpolation_raw_start] = ACTIONS(3257), + [sym_raw_string_start] = ACTIONS(3257), }, [2140] = { [sym_preproc_region] = STATE(2140), @@ -394517,117 +394552,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2140), [sym_preproc_define] = STATE(2140), [sym_preproc_undef] = STATE(2140), - [sym__identifier_token] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_alias] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_ref] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_delegate] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_file] = ACTIONS(3339), - [anon_sym_fixed] = ACTIONS(3339), - [anon_sym_internal] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_partial] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_required] = ACTIONS(3339), - [anon_sym_sealed] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_where] = ACTIONS(3339), - [anon_sym_notnull] = ACTIONS(3339), - [anon_sym_unmanaged] = ACTIONS(3339), - [anon_sym_checked] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_this] = ACTIONS(3339), - [anon_sym_scoped] = ACTIONS(3339), - [anon_sym_base] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [sym_predefined_type] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_unchecked] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_when] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_foreach] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_from] = ACTIONS(3339), - [anon_sym_into] = ACTIONS(3339), - [anon_sym_join] = ACTIONS(3339), - [anon_sym_on] = ACTIONS(3339), - [anon_sym_equals] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_orderby] = ACTIONS(3339), - [anon_sym_ascending] = ACTIONS(3339), - [anon_sym_descending] = ACTIONS(3339), - [anon_sym_group] = ACTIONS(3339), - [anon_sym_by] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_stackalloc] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym___makeref] = ACTIONS(3339), - [anon_sym___reftype] = ACTIONS(3339), - [anon_sym___refvalue] = ACTIONS(3339), - [sym_null_literal] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3341), - [sym_integer_literal] = ACTIONS(3339), - [sym_real_literal] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_verbatim_string_literal] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3341), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3341), - [sym_interpolation_verbatim_start] = ACTIONS(3341), - [sym_interpolation_raw_start] = ACTIONS(3341), - [sym_raw_string_start] = ACTIONS(3341), + [sym__identifier_token] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_alias] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_ref] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3201), + [anon_sym_delegate] = ACTIONS(3199), + [anon_sym_abstract] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_file] = ACTIONS(3199), + [anon_sym_fixed] = ACTIONS(3199), + [anon_sym_internal] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_override] = ACTIONS(3199), + [anon_sym_partial] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_protected] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_readonly] = ACTIONS(3199), + [anon_sym_required] = ACTIONS(3199), + [anon_sym_sealed] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_where] = ACTIONS(3199), + [anon_sym_notnull] = ACTIONS(3199), + [anon_sym_unmanaged] = ACTIONS(3199), + [anon_sym_checked] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_this] = ACTIONS(3199), + [anon_sym_scoped] = ACTIONS(3199), + [anon_sym_base] = ACTIONS(3199), + [anon_sym_var] = ACTIONS(3199), + [sym_predefined_type] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_unchecked] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_when] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_foreach] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_into] = ACTIONS(3199), + [anon_sym_join] = ACTIONS(3199), + [anon_sym_on] = ACTIONS(3199), + [anon_sym_equals] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3199), + [anon_sym_orderby] = ACTIONS(3199), + [anon_sym_ascending] = ACTIONS(3199), + [anon_sym_descending] = ACTIONS(3199), + [anon_sym_group] = ACTIONS(3199), + [anon_sym_by] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_stackalloc] = ACTIONS(3199), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym_typeof] = ACTIONS(3199), + [anon_sym___makeref] = ACTIONS(3199), + [anon_sym___reftype] = ACTIONS(3199), + [anon_sym___refvalue] = ACTIONS(3199), + [sym_null_literal] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(3201), + [sym_integer_literal] = ACTIONS(3199), + [sym_real_literal] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_verbatim_string_literal] = ACTIONS(3201), + [aux_sym_preproc_if_token1] = ACTIONS(3201), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3201), + [sym_interpolation_verbatim_start] = ACTIONS(3201), + [sym_interpolation_raw_start] = ACTIONS(3201), + [sym_raw_string_start] = ACTIONS(3201), }, [2141] = { [sym_preproc_region] = STATE(2141), @@ -394639,117 +394674,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2141), [sym_preproc_define] = STATE(2141), [sym_preproc_undef] = STATE(2141), - [sym__identifier_token] = ACTIONS(3343), - [anon_sym_extern] = ACTIONS(3343), - [anon_sym_alias] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_global] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_ref] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_delegate] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_file] = ACTIONS(3343), - [anon_sym_fixed] = ACTIONS(3343), - [anon_sym_internal] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_partial] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_sealed] = ACTIONS(3343), - [anon_sym_virtual] = ACTIONS(3343), - [anon_sym_volatile] = ACTIONS(3343), - [anon_sym_where] = ACTIONS(3343), - [anon_sym_notnull] = ACTIONS(3343), - [anon_sym_unmanaged] = ACTIONS(3343), - [anon_sym_checked] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_this] = ACTIONS(3343), - [anon_sym_scoped] = ACTIONS(3343), - [anon_sym_base] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [sym_predefined_type] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_unchecked] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_when] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_foreach] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_into] = ACTIONS(3343), - [anon_sym_join] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_equals] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_orderby] = ACTIONS(3343), - [anon_sym_ascending] = ACTIONS(3343), - [anon_sym_descending] = ACTIONS(3343), - [anon_sym_group] = ACTIONS(3343), - [anon_sym_by] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_stackalloc] = ACTIONS(3343), - [anon_sym_sizeof] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym___makeref] = ACTIONS(3343), - [anon_sym___reftype] = ACTIONS(3343), - [anon_sym___refvalue] = ACTIONS(3343), - [sym_null_literal] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3345), - [sym_integer_literal] = ACTIONS(3343), - [sym_real_literal] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [sym_verbatim_string_literal] = ACTIONS(3345), - [aux_sym_preproc_if_token1] = ACTIONS(3345), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3345), - [sym_interpolation_verbatim_start] = ACTIONS(3345), - [sym_interpolation_raw_start] = ACTIONS(3345), - [sym_raw_string_start] = ACTIONS(3345), + [sym__identifier_token] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_alias] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_unsafe] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_ref] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_delegate] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_file] = ACTIONS(3231), + [anon_sym_fixed] = ACTIONS(3231), + [anon_sym_internal] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_partial] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_required] = ACTIONS(3231), + [anon_sym_sealed] = ACTIONS(3231), + [anon_sym_virtual] = ACTIONS(3231), + [anon_sym_volatile] = ACTIONS(3231), + [anon_sym_where] = ACTIONS(3231), + [anon_sym_notnull] = ACTIONS(3231), + [anon_sym_unmanaged] = ACTIONS(3231), + [anon_sym_checked] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_this] = ACTIONS(3231), + [anon_sym_scoped] = ACTIONS(3231), + [anon_sym_base] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [sym_predefined_type] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_unchecked] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_lock] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_when] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_foreach] = ACTIONS(3231), + [anon_sym_goto] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_into] = ACTIONS(3231), + [anon_sym_join] = ACTIONS(3231), + [anon_sym_on] = ACTIONS(3231), + [anon_sym_equals] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_orderby] = ACTIONS(3231), + [anon_sym_ascending] = ACTIONS(3231), + [anon_sym_descending] = ACTIONS(3231), + [anon_sym_group] = ACTIONS(3231), + [anon_sym_by] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_stackalloc] = ACTIONS(3231), + [anon_sym_sizeof] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym___makeref] = ACTIONS(3231), + [anon_sym___reftype] = ACTIONS(3231), + [anon_sym___refvalue] = ACTIONS(3231), + [sym_null_literal] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3233), + [sym_integer_literal] = ACTIONS(3231), + [sym_real_literal] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [sym_verbatim_string_literal] = ACTIONS(3233), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3233), + [sym_interpolation_verbatim_start] = ACTIONS(3233), + [sym_interpolation_raw_start] = ACTIONS(3233), + [sym_raw_string_start] = ACTIONS(3233), }, [2142] = { [sym_preproc_region] = STATE(2142), @@ -394761,117 +394796,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2142), [sym_preproc_define] = STATE(2142), [sym_preproc_undef] = STATE(2142), - [sym__identifier_token] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_alias] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_global] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_ref] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_delegate] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_file] = ACTIONS(3257), - [anon_sym_fixed] = ACTIONS(3257), - [anon_sym_internal] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_partial] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_required] = ACTIONS(3257), - [anon_sym_sealed] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_where] = ACTIONS(3257), - [anon_sym_notnull] = ACTIONS(3257), - [anon_sym_unmanaged] = ACTIONS(3257), - [anon_sym_checked] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_true] = ACTIONS(3257), - [anon_sym_false] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_this] = ACTIONS(3257), - [anon_sym_scoped] = ACTIONS(3257), - [anon_sym_base] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [sym_predefined_type] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_unchecked] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_when] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_foreach] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_DOT_DOT] = ACTIONS(3259), - [anon_sym_from] = ACTIONS(3257), - [anon_sym_into] = ACTIONS(3257), - [anon_sym_join] = ACTIONS(3257), - [anon_sym_on] = ACTIONS(3257), - [anon_sym_equals] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_orderby] = ACTIONS(3257), - [anon_sym_ascending] = ACTIONS(3257), - [anon_sym_descending] = ACTIONS(3257), - [anon_sym_group] = ACTIONS(3257), - [anon_sym_by] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_stackalloc] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym___makeref] = ACTIONS(3257), - [anon_sym___reftype] = ACTIONS(3257), - [anon_sym___refvalue] = ACTIONS(3257), - [sym_null_literal] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3259), - [sym_integer_literal] = ACTIONS(3257), - [sym_real_literal] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_verbatim_string_literal] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3259), - [sym_interpolation_verbatim_start] = ACTIONS(3259), - [sym_interpolation_raw_start] = ACTIONS(3259), - [sym_raw_string_start] = ACTIONS(3259), + [sym__identifier_token] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_alias] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_ref] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_delegate] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_file] = ACTIONS(3279), + [anon_sym_fixed] = ACTIONS(3279), + [anon_sym_internal] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_partial] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_required] = ACTIONS(3279), + [anon_sym_sealed] = ACTIONS(3279), + [anon_sym_virtual] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_where] = ACTIONS(3279), + [anon_sym_notnull] = ACTIONS(3279), + [anon_sym_unmanaged] = ACTIONS(3279), + [anon_sym_checked] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_this] = ACTIONS(3279), + [anon_sym_scoped] = ACTIONS(3279), + [anon_sym_base] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [sym_predefined_type] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_unchecked] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_when] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_foreach] = ACTIONS(3279), + [anon_sym_goto] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_into] = ACTIONS(3279), + [anon_sym_join] = ACTIONS(3279), + [anon_sym_on] = ACTIONS(3279), + [anon_sym_equals] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_orderby] = ACTIONS(3279), + [anon_sym_ascending] = ACTIONS(3279), + [anon_sym_descending] = ACTIONS(3279), + [anon_sym_group] = ACTIONS(3279), + [anon_sym_by] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_stackalloc] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym___makeref] = ACTIONS(3279), + [anon_sym___reftype] = ACTIONS(3279), + [anon_sym___refvalue] = ACTIONS(3279), + [sym_null_literal] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3281), + [sym_integer_literal] = ACTIONS(3279), + [sym_real_literal] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [sym_verbatim_string_literal] = ACTIONS(3281), + [aux_sym_preproc_if_token1] = ACTIONS(3281), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3281), + [sym_interpolation_verbatim_start] = ACTIONS(3281), + [sym_interpolation_raw_start] = ACTIONS(3281), + [sym_raw_string_start] = ACTIONS(3281), }, [2143] = { [sym_preproc_region] = STATE(2143), @@ -394883,117 +394918,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2143), [sym_preproc_define] = STATE(2143), [sym_preproc_undef] = STATE(2143), - [sym__identifier_token] = ACTIONS(3209), - [anon_sym_extern] = ACTIONS(3209), - [anon_sym_alias] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_ref] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_delegate] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_file] = ACTIONS(3209), - [anon_sym_fixed] = ACTIONS(3209), - [anon_sym_internal] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_partial] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_required] = ACTIONS(3209), - [anon_sym_sealed] = ACTIONS(3209), - [anon_sym_virtual] = ACTIONS(3209), - [anon_sym_volatile] = ACTIONS(3209), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_notnull] = ACTIONS(3209), - [anon_sym_unmanaged] = ACTIONS(3209), - [anon_sym_checked] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(3209), - [anon_sym_scoped] = ACTIONS(3209), - [anon_sym_base] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [sym_predefined_type] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_unchecked] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_case] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_when] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_foreach] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3209), - [anon_sym_into] = ACTIONS(3209), - [anon_sym_join] = ACTIONS(3209), - [anon_sym_on] = ACTIONS(3209), - [anon_sym_equals] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_orderby] = ACTIONS(3209), - [anon_sym_ascending] = ACTIONS(3209), - [anon_sym_descending] = ACTIONS(3209), - [anon_sym_group] = ACTIONS(3209), - [anon_sym_by] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_stackalloc] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym___makeref] = ACTIONS(3209), - [anon_sym___reftype] = ACTIONS(3209), - [anon_sym___refvalue] = ACTIONS(3209), - [sym_null_literal] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3211), - [sym_integer_literal] = ACTIONS(3209), - [sym_real_literal] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [sym_verbatim_string_literal] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3211), - [sym_interpolation_verbatim_start] = ACTIONS(3211), - [sym_interpolation_raw_start] = ACTIONS(3211), - [sym_raw_string_start] = ACTIONS(3211), + [sym__identifier_token] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_alias] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_unsafe] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_ref] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_delegate] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_file] = ACTIONS(3215), + [anon_sym_fixed] = ACTIONS(3215), + [anon_sym_internal] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_partial] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_required] = ACTIONS(3215), + [anon_sym_sealed] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_where] = ACTIONS(3215), + [anon_sym_notnull] = ACTIONS(3215), + [anon_sym_unmanaged] = ACTIONS(3215), + [anon_sym_checked] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_this] = ACTIONS(3215), + [anon_sym_scoped] = ACTIONS(3215), + [anon_sym_base] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [sym_predefined_type] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_unchecked] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_lock] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_when] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_foreach] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_from] = ACTIONS(3215), + [anon_sym_into] = ACTIONS(3215), + [anon_sym_join] = ACTIONS(3215), + [anon_sym_on] = ACTIONS(3215), + [anon_sym_equals] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_orderby] = ACTIONS(3215), + [anon_sym_ascending] = ACTIONS(3215), + [anon_sym_descending] = ACTIONS(3215), + [anon_sym_group] = ACTIONS(3215), + [anon_sym_by] = ACTIONS(3215), + [anon_sym_select] = ACTIONS(3215), + [anon_sym_stackalloc] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym_typeof] = ACTIONS(3215), + [anon_sym___makeref] = ACTIONS(3215), + [anon_sym___reftype] = ACTIONS(3215), + [anon_sym___refvalue] = ACTIONS(3215), + [sym_null_literal] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3217), + [sym_integer_literal] = ACTIONS(3215), + [sym_real_literal] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_verbatim_string_literal] = ACTIONS(3217), + [aux_sym_preproc_if_token1] = ACTIONS(3217), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3217), + [sym_interpolation_verbatim_start] = ACTIONS(3217), + [sym_interpolation_raw_start] = ACTIONS(3217), + [sym_raw_string_start] = ACTIONS(3217), }, [2144] = { [sym_preproc_region] = STATE(2144), @@ -395005,103 +395040,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2144), [sym_preproc_define] = STATE(2144), [sym_preproc_undef] = STATE(2144), - [sym__identifier_token] = ACTIONS(3295), - [anon_sym_extern] = ACTIONS(3295), - [anon_sym_alias] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_global] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_ref] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_delegate] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_file] = ACTIONS(3295), - [anon_sym_fixed] = ACTIONS(3295), - [anon_sym_internal] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_partial] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_required] = ACTIONS(3295), - [anon_sym_sealed] = ACTIONS(3295), - [anon_sym_virtual] = ACTIONS(3295), - [anon_sym_volatile] = ACTIONS(3295), - [anon_sym_where] = ACTIONS(3295), - [anon_sym_notnull] = ACTIONS(3295), - [anon_sym_unmanaged] = ACTIONS(3295), - [anon_sym_checked] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3295), - [anon_sym_false] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [anon_sym_this] = ACTIONS(3295), - [anon_sym_scoped] = ACTIONS(3295), - [anon_sym_base] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [sym_predefined_type] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_unchecked] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_case] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_when] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_foreach] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_DOT_DOT] = ACTIONS(3297), - [anon_sym_from] = ACTIONS(3295), - [anon_sym_into] = ACTIONS(3295), - [anon_sym_join] = ACTIONS(3295), - [anon_sym_on] = ACTIONS(3295), - [anon_sym_equals] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_orderby] = ACTIONS(3295), - [anon_sym_ascending] = ACTIONS(3295), - [anon_sym_descending] = ACTIONS(3295), - [anon_sym_group] = ACTIONS(3295), - [anon_sym_by] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_stackalloc] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym___makeref] = ACTIONS(3295), - [anon_sym___reftype] = ACTIONS(3295), - [anon_sym___refvalue] = ACTIONS(3295), - [sym_null_literal] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3297), - [sym_integer_literal] = ACTIONS(3295), - [sym_real_literal] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_verbatim_string_literal] = ACTIONS(3297), - [aux_sym_preproc_if_token1] = ACTIONS(3297), + [sym__identifier_token] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_alias] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_global] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_ref] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_delegate] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_file] = ACTIONS(3347), + [anon_sym_fixed] = ACTIONS(3347), + [anon_sym_internal] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_partial] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_required] = ACTIONS(3347), + [anon_sym_sealed] = ACTIONS(3347), + [anon_sym_virtual] = ACTIONS(3347), + [anon_sym_volatile] = ACTIONS(3347), + [anon_sym_where] = ACTIONS(3347), + [anon_sym_notnull] = ACTIONS(3347), + [anon_sym_unmanaged] = ACTIONS(3347), + [anon_sym_checked] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_this] = ACTIONS(3347), + [anon_sym_scoped] = ACTIONS(3347), + [anon_sym_base] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [sym_predefined_type] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_unchecked] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_lock] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_when] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_foreach] = ACTIONS(3347), + [anon_sym_goto] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3347), + [anon_sym_into] = ACTIONS(3347), + [anon_sym_join] = ACTIONS(3347), + [anon_sym_on] = ACTIONS(3347), + [anon_sym_equals] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_orderby] = ACTIONS(3347), + [anon_sym_ascending] = ACTIONS(3347), + [anon_sym_descending] = ACTIONS(3347), + [anon_sym_group] = ACTIONS(3347), + [anon_sym_by] = ACTIONS(3347), + [anon_sym_select] = ACTIONS(3347), + [anon_sym_stackalloc] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym___makeref] = ACTIONS(3347), + [anon_sym___reftype] = ACTIONS(3347), + [anon_sym___refvalue] = ACTIONS(3347), + [sym_null_literal] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3349), + [sym_integer_literal] = ACTIONS(3347), + [sym_real_literal] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_verbatim_string_literal] = ACTIONS(3349), + [aux_sym_preproc_if_token1] = ACTIONS(3349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395112,10 +395147,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3297), - [sym_interpolation_verbatim_start] = ACTIONS(3297), - [sym_interpolation_raw_start] = ACTIONS(3297), - [sym_raw_string_start] = ACTIONS(3297), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, [2145] = { [sym_preproc_region] = STATE(2145), @@ -395127,117 +395162,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2145), [sym_preproc_define] = STATE(2145), [sym_preproc_undef] = STATE(2145), - [sym__identifier_token] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_alias] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_global] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_ref] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_delegate] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_file] = ACTIONS(3245), - [anon_sym_fixed] = ACTIONS(3245), - [anon_sym_internal] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_partial] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_required] = ACTIONS(3245), - [anon_sym_sealed] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_where] = ACTIONS(3245), - [anon_sym_notnull] = ACTIONS(3245), - [anon_sym_unmanaged] = ACTIONS(3245), - [anon_sym_checked] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_this] = ACTIONS(3245), - [anon_sym_scoped] = ACTIONS(3245), - [anon_sym_base] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [sym_predefined_type] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_unchecked] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_when] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_foreach] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_from] = ACTIONS(3245), - [anon_sym_into] = ACTIONS(3245), - [anon_sym_join] = ACTIONS(3245), - [anon_sym_on] = ACTIONS(3245), - [anon_sym_equals] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_orderby] = ACTIONS(3245), - [anon_sym_ascending] = ACTIONS(3245), - [anon_sym_descending] = ACTIONS(3245), - [anon_sym_group] = ACTIONS(3245), - [anon_sym_by] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_stackalloc] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym___makeref] = ACTIONS(3245), - [anon_sym___reftype] = ACTIONS(3245), - [anon_sym___refvalue] = ACTIONS(3245), - [sym_null_literal] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3247), - [sym_integer_literal] = ACTIONS(3245), - [sym_real_literal] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_verbatim_string_literal] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3247), - [sym_interpolation_verbatim_start] = ACTIONS(3247), - [sym_interpolation_raw_start] = ACTIONS(3247), - [sym_raw_string_start] = ACTIONS(3247), + [sym__identifier_token] = ACTIONS(3271), + [anon_sym_extern] = ACTIONS(3271), + [anon_sym_alias] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_unsafe] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_ref] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_delegate] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_file] = ACTIONS(3271), + [anon_sym_fixed] = ACTIONS(3271), + [anon_sym_internal] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_partial] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_required] = ACTIONS(3271), + [anon_sym_sealed] = ACTIONS(3271), + [anon_sym_virtual] = ACTIONS(3271), + [anon_sym_volatile] = ACTIONS(3271), + [anon_sym_where] = ACTIONS(3271), + [anon_sym_notnull] = ACTIONS(3271), + [anon_sym_unmanaged] = ACTIONS(3271), + [anon_sym_checked] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_this] = ACTIONS(3271), + [anon_sym_scoped] = ACTIONS(3271), + [anon_sym_base] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [sym_predefined_type] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_unchecked] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_lock] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_when] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_foreach] = ACTIONS(3271), + [anon_sym_goto] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_into] = ACTIONS(3271), + [anon_sym_join] = ACTIONS(3271), + [anon_sym_on] = ACTIONS(3271), + [anon_sym_equals] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_orderby] = ACTIONS(3271), + [anon_sym_ascending] = ACTIONS(3271), + [anon_sym_descending] = ACTIONS(3271), + [anon_sym_group] = ACTIONS(3271), + [anon_sym_by] = ACTIONS(3271), + [anon_sym_select] = ACTIONS(3271), + [anon_sym_stackalloc] = ACTIONS(3271), + [anon_sym_sizeof] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym___makeref] = ACTIONS(3271), + [anon_sym___reftype] = ACTIONS(3271), + [anon_sym___refvalue] = ACTIONS(3271), + [sym_null_literal] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3273), + [sym_integer_literal] = ACTIONS(3271), + [sym_real_literal] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [sym_verbatim_string_literal] = ACTIONS(3273), + [aux_sym_preproc_if_token1] = ACTIONS(3273), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3273), + [sym_interpolation_verbatim_start] = ACTIONS(3273), + [sym_interpolation_raw_start] = ACTIONS(3273), + [sym_raw_string_start] = ACTIONS(3273), }, [2146] = { [sym_preproc_region] = STATE(2146), @@ -395249,117 +395284,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2146), [sym_preproc_define] = STATE(2146), [sym_preproc_undef] = STATE(2146), - [sym__identifier_token] = ACTIONS(3173), - [anon_sym_extern] = ACTIONS(3173), - [anon_sym_alias] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_global] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_ref] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_delegate] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_file] = ACTIONS(3173), - [anon_sym_fixed] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_partial] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_required] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_virtual] = ACTIONS(3173), - [anon_sym_volatile] = ACTIONS(3173), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_notnull] = ACTIONS(3173), - [anon_sym_unmanaged] = ACTIONS(3173), - [anon_sym_checked] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_scoped] = ACTIONS(3173), - [anon_sym_base] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [sym_predefined_type] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_unchecked] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_foreach] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_from] = ACTIONS(3173), - [anon_sym_into] = ACTIONS(3173), - [anon_sym_join] = ACTIONS(3173), - [anon_sym_on] = ACTIONS(3173), - [anon_sym_equals] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_orderby] = ACTIONS(3173), - [anon_sym_ascending] = ACTIONS(3173), - [anon_sym_descending] = ACTIONS(3173), - [anon_sym_group] = ACTIONS(3173), - [anon_sym_by] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_stackalloc] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym___makeref] = ACTIONS(3173), - [anon_sym___reftype] = ACTIONS(3173), - [anon_sym___refvalue] = ACTIONS(3173), - [sym_null_literal] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_real_literal] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_verbatim_string_literal] = ACTIONS(3175), - [aux_sym_preproc_if_token1] = ACTIONS(3175), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3175), - [sym_interpolation_verbatim_start] = ACTIONS(3175), - [sym_interpolation_raw_start] = ACTIONS(3175), - [sym_raw_string_start] = ACTIONS(3175), + [sym__identifier_token] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_alias] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_global] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_ref] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_delegate] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_file] = ACTIONS(3275), + [anon_sym_fixed] = ACTIONS(3275), + [anon_sym_internal] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_partial] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_required] = ACTIONS(3275), + [anon_sym_sealed] = ACTIONS(3275), + [anon_sym_virtual] = ACTIONS(3275), + [anon_sym_volatile] = ACTIONS(3275), + [anon_sym_where] = ACTIONS(3275), + [anon_sym_notnull] = ACTIONS(3275), + [anon_sym_unmanaged] = ACTIONS(3275), + [anon_sym_checked] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_this] = ACTIONS(3275), + [anon_sym_scoped] = ACTIONS(3275), + [anon_sym_base] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [sym_predefined_type] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_unchecked] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_when] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_foreach] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_into] = ACTIONS(3275), + [anon_sym_join] = ACTIONS(3275), + [anon_sym_on] = ACTIONS(3275), + [anon_sym_equals] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_orderby] = ACTIONS(3275), + [anon_sym_ascending] = ACTIONS(3275), + [anon_sym_descending] = ACTIONS(3275), + [anon_sym_group] = ACTIONS(3275), + [anon_sym_by] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_stackalloc] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym___makeref] = ACTIONS(3275), + [anon_sym___reftype] = ACTIONS(3275), + [anon_sym___refvalue] = ACTIONS(3275), + [sym_null_literal] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3277), + [sym_integer_literal] = ACTIONS(3275), + [sym_real_literal] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [sym_verbatim_string_literal] = ACTIONS(3277), + [aux_sym_preproc_if_token1] = ACTIONS(3277), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3277), + [sym_interpolation_verbatim_start] = ACTIONS(3277), + [sym_interpolation_raw_start] = ACTIONS(3277), + [sym_raw_string_start] = ACTIONS(3277), }, [2147] = { [sym_preproc_region] = STATE(2147), @@ -395371,117 +395406,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2147), [sym_preproc_define] = STATE(2147), [sym_preproc_undef] = STATE(2147), - [sym__identifier_token] = ACTIONS(3229), - [anon_sym_extern] = ACTIONS(3229), - [anon_sym_alias] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_global] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_unsafe] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_ref] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_delegate] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_file] = ACTIONS(3229), - [anon_sym_fixed] = ACTIONS(3229), - [anon_sym_internal] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_partial] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_required] = ACTIONS(3229), - [anon_sym_sealed] = ACTIONS(3229), - [anon_sym_virtual] = ACTIONS(3229), - [anon_sym_volatile] = ACTIONS(3229), - [anon_sym_where] = ACTIONS(3229), - [anon_sym_notnull] = ACTIONS(3229), - [anon_sym_unmanaged] = ACTIONS(3229), - [anon_sym_checked] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_true] = ACTIONS(3229), - [anon_sym_false] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_this] = ACTIONS(3229), - [anon_sym_scoped] = ACTIONS(3229), - [anon_sym_base] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [sym_predefined_type] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_unchecked] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_lock] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_when] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_foreach] = ACTIONS(3229), - [anon_sym_goto] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3231), - [anon_sym_from] = ACTIONS(3229), - [anon_sym_into] = ACTIONS(3229), - [anon_sym_join] = ACTIONS(3229), - [anon_sym_on] = ACTIONS(3229), - [anon_sym_equals] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_orderby] = ACTIONS(3229), - [anon_sym_ascending] = ACTIONS(3229), - [anon_sym_descending] = ACTIONS(3229), - [anon_sym_group] = ACTIONS(3229), - [anon_sym_by] = ACTIONS(3229), - [anon_sym_select] = ACTIONS(3229), - [anon_sym_stackalloc] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym___makeref] = ACTIONS(3229), - [anon_sym___reftype] = ACTIONS(3229), - [anon_sym___refvalue] = ACTIONS(3229), - [sym_null_literal] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3231), - [sym_integer_literal] = ACTIONS(3229), - [sym_real_literal] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym_verbatim_string_literal] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3231), - [sym_interpolation_verbatim_start] = ACTIONS(3231), - [sym_interpolation_raw_start] = ACTIONS(3231), - [sym_raw_string_start] = ACTIONS(3231), + [sym__identifier_token] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_alias] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_ref] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_delegate] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_file] = ACTIONS(3259), + [anon_sym_fixed] = ACTIONS(3259), + [anon_sym_internal] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_partial] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_sealed] = ACTIONS(3259), + [anon_sym_virtual] = ACTIONS(3259), + [anon_sym_volatile] = ACTIONS(3259), + [anon_sym_where] = ACTIONS(3259), + [anon_sym_notnull] = ACTIONS(3259), + [anon_sym_unmanaged] = ACTIONS(3259), + [anon_sym_checked] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_this] = ACTIONS(3259), + [anon_sym_scoped] = ACTIONS(3259), + [anon_sym_base] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [sym_predefined_type] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_unchecked] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_lock] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_when] = ACTIONS(3259), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_foreach] = ACTIONS(3259), + [anon_sym_goto] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_into] = ACTIONS(3259), + [anon_sym_join] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_equals] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_orderby] = ACTIONS(3259), + [anon_sym_ascending] = ACTIONS(3259), + [anon_sym_descending] = ACTIONS(3259), + [anon_sym_group] = ACTIONS(3259), + [anon_sym_by] = ACTIONS(3259), + [anon_sym_select] = ACTIONS(3259), + [anon_sym_stackalloc] = ACTIONS(3259), + [anon_sym_sizeof] = ACTIONS(3259), + [anon_sym_typeof] = ACTIONS(3259), + [anon_sym___makeref] = ACTIONS(3259), + [anon_sym___reftype] = ACTIONS(3259), + [anon_sym___refvalue] = ACTIONS(3259), + [sym_null_literal] = ACTIONS(3259), + [anon_sym_SQUOTE] = ACTIONS(3261), + [sym_integer_literal] = ACTIONS(3259), + [sym_real_literal] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [sym_verbatim_string_literal] = ACTIONS(3261), + [aux_sym_preproc_if_token1] = ACTIONS(3261), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3261), + [sym_interpolation_verbatim_start] = ACTIONS(3261), + [sym_interpolation_raw_start] = ACTIONS(3261), + [sym_raw_string_start] = ACTIONS(3261), }, [2148] = { [sym_preproc_region] = STATE(2148), @@ -395493,6 +395528,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2148), [sym_preproc_define] = STATE(2148), [sym_preproc_undef] = STATE(2148), + [sym__identifier_token] = ACTIONS(3491), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3491), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3491), + [anon_sym_unmanaged] = ACTIONS(3491), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3491), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3491), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3491), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_into] = ACTIONS(3491), + [anon_sym_join] = ACTIONS(3491), + [anon_sym_on] = ACTIONS(3491), + [anon_sym_equals] = ACTIONS(3491), + [anon_sym_let] = ACTIONS(3491), + [anon_sym_orderby] = ACTIONS(3491), + [anon_sym_ascending] = ACTIONS(3491), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2149] = { + [sym_preproc_region] = STATE(2149), + [sym_preproc_endregion] = STATE(2149), + [sym_preproc_line] = STATE(2149), + [sym_preproc_pragma] = STATE(2149), + [sym_preproc_nullable] = STATE(2149), + [sym_preproc_error] = STATE(2149), + [sym_preproc_warning] = STATE(2149), + [sym_preproc_define] = STATE(2149), + [sym_preproc_undef] = STATE(2149), [sym__identifier_token] = ACTIONS(3501), [anon_sym_extern] = ACTIONS(3501), [anon_sym_alias] = ACTIONS(3501), @@ -395604,146 +395760,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3503), [sym_raw_string_start] = ACTIONS(3503), }, - [2149] = { - [sym_preproc_region] = STATE(2149), - [sym_preproc_endregion] = STATE(2149), - [sym_preproc_line] = STATE(2149), - [sym_preproc_pragma] = STATE(2149), - [sym_preproc_nullable] = STATE(2149), - [sym_preproc_error] = STATE(2149), - [sym_preproc_warning] = STATE(2149), - [sym_preproc_define] = STATE(2149), - [sym_preproc_undef] = STATE(2149), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2150] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5832), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6180), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5841), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2150), [sym_preproc_endregion] = STATE(2150), [sym_preproc_line] = STATE(2150), @@ -398464,15 +398499,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3591), }, [2173] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym__name] = STATE(2448), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2173), [sym_preproc_endregion] = STATE(2173), [sym_preproc_line] = STATE(2173), @@ -398483,27 +398518,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2173), [sym_preproc_undef] = STATE(2173), [sym__identifier_token] = ACTIONS(3593), - [anon_sym_alias] = ACTIONS(3597), - [anon_sym_global] = ACTIONS(3597), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3596), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(2719), + [anon_sym_ref] = ACTIONS(3599), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_file] = ACTIONS(3597), - [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3596), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(3597), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3596), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3597), - [anon_sym_unmanaged] = ACTIONS(3597), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -398522,16 +398556,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3459), [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_this] = ACTIONS(2719), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3597), + [anon_sym_scoped] = ACTIONS(3596), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3597), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(3597), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3597), + [anon_sym_when] = ACTIONS(3596), [sym_discard] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), @@ -398551,22 +398583,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3597), - [anon_sym_into] = ACTIONS(3597), - [anon_sym_join] = ACTIONS(3597), - [anon_sym_on] = ACTIONS(3597), - [anon_sym_equals] = ACTIONS(3597), - [anon_sym_let] = ACTIONS(3597), - [anon_sym_orderby] = ACTIONS(3597), - [anon_sym_ascending] = ACTIONS(3597), - [anon_sym_descending] = ACTIONS(3597), - [anon_sym_group] = ACTIONS(3597), - [anon_sym_by] = ACTIONS(3597), - [anon_sym_select] = ACTIONS(3597), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(3596), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_equals] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(3596), + [anon_sym_select] = ACTIONS(3596), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398579,15 +398614,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2174] = { - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2174), [sym_preproc_endregion] = STATE(2174), [sym_preproc_line] = STATE(2174), @@ -398597,27 +398632,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2174), [sym_preproc_define] = STATE(2174), [sym_preproc_undef] = STATE(2174), - [sym__identifier_token] = ACTIONS(3604), - [anon_sym_alias] = ACTIONS(3607), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3607), + [sym__identifier_token] = ACTIONS(3601), + [anon_sym_alias] = ACTIONS(3605), + [anon_sym_global] = ACTIONS(3605), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3609), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3610), + [anon_sym_ref] = ACTIONS(2719), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3607), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_file] = ACTIONS(3605), + [anon_sym_readonly] = ACTIONS(2719), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(3605), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3607), - [anon_sym_unmanaged] = ACTIONS(3607), + [anon_sym_notnull] = ACTIONS(3605), + [anon_sym_unmanaged] = ACTIONS(3605), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -398636,14 +398672,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3459), [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(2719), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3607), + [anon_sym_scoped] = ACTIONS(3605), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3605), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(3605), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3607), + [anon_sym_when] = ACTIONS(3605), [sym_discard] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), @@ -398663,25 +398701,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(3607), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(3607), - [anon_sym_equals] = ACTIONS(3607), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(3607), - [anon_sym_select] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3605), + [anon_sym_into] = ACTIONS(3605), + [anon_sym_join] = ACTIONS(3605), + [anon_sym_on] = ACTIONS(3605), + [anon_sym_equals] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_orderby] = ACTIONS(3605), + [anon_sym_ascending] = ACTIONS(3605), + [anon_sym_descending] = ACTIONS(3605), + [anon_sym_group] = ACTIONS(3605), + [anon_sym_by] = ACTIONS(3605), + [anon_sym_select] = ACTIONS(3605), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398694,14 +398729,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2175] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2175), [sym_preproc_endregion] = STATE(2175), @@ -398808,14 +398843,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2176] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2176), [sym_preproc_endregion] = STATE(2176), @@ -398919,10 +398954,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2177] = { - [sym__variable_designation] = STATE(3353), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym__name] = STATE(2643), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2576), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2177), [sym_preproc_endregion] = STATE(2177), [sym_preproc_line] = STATE(2177), @@ -398932,140 +398972,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2177), [sym_preproc_define] = STATE(2177), [sym_preproc_undef] = STATE(2177), - [sym__identifier_token] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_global] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3624), - [anon_sym_unmanaged] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3624), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3624), - [sym_discard] = ACTIONS(3638), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2178] = { - [sym__name] = STATE(2625), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2588), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2178), - [sym_preproc_endregion] = STATE(2178), - [sym_preproc_line] = STATE(2178), - [sym_preproc_pragma] = STATE(2178), - [sym_preproc_nullable] = STATE(2178), - [sym_preproc_error] = STATE(2178), - [sym_preproc_warning] = STATE(2178), - [sym_preproc_define] = STATE(2178), - [sym_preproc_undef] = STATE(2178), - [sym__identifier_token] = ACTIONS(3604), - [anon_sym_alias] = ACTIONS(3607), - [anon_sym_global] = ACTIONS(3607), + [sym__identifier_token] = ACTIONS(3593), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_global] = ACTIONS(3596), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3642), + [anon_sym_ref] = ACTIONS(3620), [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3607), + [anon_sym_file] = ACTIONS(3596), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), + [anon_sym_where] = ACTIONS(3596), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3607), - [anon_sym_unmanaged] = ACTIONS(3607), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -399085,13 +399010,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3607), + [anon_sym_scoped] = ACTIONS(3596), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3607), + [anon_sym_when] = ACTIONS(3596), [sym_discard] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), @@ -399111,18 +399036,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(3607), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(3607), - [anon_sym_equals] = ACTIONS(3607), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(3607), - [anon_sym_select] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(3596), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_equals] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(3596), + [anon_sym_select] = ACTIONS(3596), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -399138,16 +399063,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2178] = { + [sym__variable_designation] = STATE(3396), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2178), + [sym_preproc_endregion] = STATE(2178), + [sym_preproc_line] = STATE(2178), + [sym_preproc_pragma] = STATE(2178), + [sym_preproc_nullable] = STATE(2178), + [sym_preproc_error] = STATE(2178), + [sym_preproc_warning] = STATE(2178), + [sym_preproc_define] = STATE(2178), + [sym_preproc_undef] = STATE(2178), + [sym__identifier_token] = ACTIONS(3622), + [anon_sym_alias] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_global] = ACTIONS(3626), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3626), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3626), + [anon_sym_unmanaged] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3626), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3626), + [sym_discard] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_into] = ACTIONS(3626), + [anon_sym_join] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_equals] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_orderby] = ACTIONS(3626), + [anon_sym_ascending] = ACTIONS(3626), + [anon_sym_descending] = ACTIONS(3626), + [anon_sym_group] = ACTIONS(3626), + [anon_sym_by] = ACTIONS(3626), + [anon_sym_select] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2179] = { - [sym__name] = STATE(2836), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2831), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2790), - [sym_ref_type] = STATE(2727), - [sym__scoped_base_type] = STATE(2814), - [sym_identifier] = STATE(2612), - [sym__reserved_identifier] = STATE(2650), + [sym__name] = STATE(2855), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2714), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2809), + [sym_ref_type] = STATE(2856), + [sym__scoped_base_type] = STATE(2857), + [sym_identifier] = STATE(2602), + [sym__reserved_identifier] = STATE(2652), [sym_preproc_region] = STATE(2179), [sym_preproc_endregion] = STATE(2179), [sym_preproc_line] = STATE(2179), @@ -399248,15 +399283,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_close_brace] = ACTIONS(3459), }, [2180] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2180), [sym_preproc_endregion] = STATE(2180), [sym_preproc_line] = STATE(2180), @@ -399266,6 +399296,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2180), [sym_preproc_define] = STATE(2180), [sym_preproc_undef] = STATE(2180), + [sym__identifier_token] = ACTIONS(3622), + [anon_sym_alias] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_global] = ACTIONS(3626), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3626), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3626), + [anon_sym_unmanaged] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3626), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3626), + [sym_discard] = ACTIONS(3656), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_into] = ACTIONS(3626), + [anon_sym_join] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_equals] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_orderby] = ACTIONS(3626), + [anon_sym_ascending] = ACTIONS(3626), + [anon_sym_descending] = ACTIONS(3626), + [anon_sym_group] = ACTIONS(3626), + [anon_sym_by] = ACTIONS(3626), + [anon_sym_select] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2181] = { + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_region] = STATE(2181), + [sym_preproc_endregion] = STATE(2181), + [sym_preproc_line] = STATE(2181), + [sym_preproc_pragma] = STATE(2181), + [sym_preproc_nullable] = STATE(2181), + [sym_preproc_error] = STATE(2181), + [sym_preproc_warning] = STATE(2181), + [sym_preproc_define] = STATE(2181), + [sym_preproc_undef] = STATE(2181), [sym__identifier_token] = ACTIONS(3612), [anon_sym_alias] = ACTIONS(3615), [anon_sym_global] = ACTIONS(3615), @@ -399275,7 +399419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3652), + [anon_sym_ref] = ACTIONS(3660), [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_file] = ACTIONS(3615), [anon_sym_LT] = ACTIONS(3461), @@ -399356,115 +399500,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2181] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2181), - [sym_preproc_endregion] = STATE(2181), - [sym_preproc_line] = STATE(2181), - [sym_preproc_pragma] = STATE(2181), - [sym_preproc_nullable] = STATE(2181), - [sym_preproc_error] = STATE(2181), - [sym_preproc_warning] = STATE(2181), - [sym_preproc_define] = STATE(2181), - [sym_preproc_undef] = STATE(2181), - [sym__identifier_token] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_global] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3624), - [anon_sym_unmanaged] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3624), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3624), - [sym_discard] = ACTIONS(3658), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2182] = { [sym_preproc_region] = STATE(2182), [sym_preproc_endregion] = STATE(2182), @@ -399789,15 +399824,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2185] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2185), [sym_preproc_endregion] = STATE(2185), [sym_preproc_line] = STATE(2185), @@ -399807,104 +399833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2185), [sym_preproc_define] = STATE(2185), [sym_preproc_undef] = STATE(2185), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3615), - [anon_sym_global] = ACTIONS(3615), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3615), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3615), - [anon_sym_unmanaged] = ACTIONS(3615), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3615), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3615), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3615), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3615), - [anon_sym_into] = ACTIONS(3615), - [anon_sym_join] = ACTIONS(3615), - [anon_sym_on] = ACTIONS(3615), - [anon_sym_equals] = ACTIONS(3615), - [anon_sym_let] = ACTIONS(3615), - [anon_sym_orderby] = ACTIONS(3615), - [anon_sym_ascending] = ACTIONS(3615), - [anon_sym_descending] = ACTIONS(3615), - [anon_sym_group] = ACTIONS(3615), - [anon_sym_by] = ACTIONS(3615), - [anon_sym_select] = ACTIONS(3615), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), - }, - [2186] = { - [sym_preproc_region] = STATE(2186), - [sym_preproc_endregion] = STATE(2186), - [sym_preproc_line] = STATE(2186), - [sym_preproc_pragma] = STATE(2186), - [sym_preproc_nullable] = STATE(2186), - [sym_preproc_error] = STATE(2186), - [sym_preproc_warning] = STATE(2186), - [sym_preproc_define] = STATE(2186), - [sym_preproc_undef] = STATE(2186), [sym__identifier_token] = ACTIONS(3670), [anon_sym_alias] = ACTIONS(3670), [anon_sym_SEMI] = ACTIONS(3672), @@ -400002,16 +399930,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2187] = { - [sym_preproc_region] = STATE(2187), - [sym_preproc_endregion] = STATE(2187), - [sym_preproc_line] = STATE(2187), - [sym_preproc_pragma] = STATE(2187), - [sym_preproc_nullable] = STATE(2187), - [sym_preproc_error] = STATE(2187), - [sym_preproc_warning] = STATE(2187), - [sym_preproc_define] = STATE(2187), - [sym_preproc_undef] = STATE(2187), + [2186] = { + [sym_preproc_region] = STATE(2186), + [sym_preproc_endregion] = STATE(2186), + [sym_preproc_line] = STATE(2186), + [sym_preproc_pragma] = STATE(2186), + [sym_preproc_nullable] = STATE(2186), + [sym_preproc_error] = STATE(2186), + [sym_preproc_warning] = STATE(2186), + [sym_preproc_define] = STATE(2186), + [sym_preproc_undef] = STATE(2186), [sym__identifier_token] = ACTIONS(3674), [anon_sym_alias] = ACTIONS(3674), [anon_sym_SEMI] = ACTIONS(3676), @@ -400109,15 +400037,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2187] = { + [sym_preproc_region] = STATE(2187), + [sym_preproc_endregion] = STATE(2187), + [sym_preproc_line] = STATE(2187), + [sym_preproc_pragma] = STATE(2187), + [sym_preproc_nullable] = STATE(2187), + [sym_preproc_error] = STATE(2187), + [sym_preproc_warning] = STATE(2187), + [sym_preproc_define] = STATE(2187), + [sym_preproc_undef] = STATE(2187), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_this] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2188] = { - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), + [sym__name] = STATE(5907), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(5783), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(5781), [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2188), [sym_preproc_endregion] = STATE(2188), @@ -400135,7 +400170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3678), + [anon_sym_ref] = ACTIONS(3682), [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_file] = ACTIONS(3615), [anon_sym_LT] = ACTIONS(3461), @@ -400226,113 +400261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2189), [sym_preproc_define] = STATE(2189), [sym_preproc_undef] = STATE(2189), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_this] = ACTIONS(3680), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2190] = { - [sym_preproc_region] = STATE(2190), - [sym_preproc_endregion] = STATE(2190), - [sym_preproc_line] = STATE(2190), - [sym_preproc_pragma] = STATE(2190), - [sym_preproc_nullable] = STATE(2190), - [sym_preproc_error] = STATE(2190), - [sym_preproc_warning] = STATE(2190), - [sym_preproc_define] = STATE(2190), - [sym_preproc_undef] = STATE(2190), [sym__identifier_token] = ACTIONS(3684), [anon_sym_alias] = ACTIONS(3684), [anon_sym_SEMI] = ACTIONS(3686), @@ -400430,8 +400358,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2190] = { + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_region] = STATE(2190), + [sym_preproc_endregion] = STATE(2190), + [sym_preproc_line] = STATE(2190), + [sym_preproc_pragma] = STATE(2190), + [sym_preproc_nullable] = STATE(2190), + [sym_preproc_error] = STATE(2190), + [sym_preproc_warning] = STATE(2190), + [sym_preproc_define] = STATE(2190), + [sym_preproc_undef] = STATE(2190), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3615), + [anon_sym_unmanaged] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3615), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3615), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_into] = ACTIONS(3615), + [anon_sym_join] = ACTIONS(3615), + [anon_sym_on] = ACTIONS(3615), + [anon_sym_equals] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_orderby] = ACTIONS(3615), + [anon_sym_ascending] = ACTIONS(3615), + [anon_sym_descending] = ACTIONS(3615), + [anon_sym_group] = ACTIONS(3615), + [anon_sym_by] = ACTIONS(3615), + [anon_sym_select] = ACTIONS(3615), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), + }, [2191] = { - [sym_type_argument_list] = STATE(2186), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2191), [sym_preproc_endregion] = STATE(2191), [sym_preproc_line] = STATE(2191), @@ -400441,91 +400476,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2191), [sym_preproc_define] = STATE(2191), [sym_preproc_undef] = STATE(2191), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), [anon_sym_EQ_GT] = ACTIONS(3691), [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400538,7 +400573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2192] = { - [sym_type_argument_list] = STATE(2186), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2192), [sym_preproc_endregion] = STATE(2192), [sym_preproc_line] = STATE(2192), @@ -400548,90 +400583,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2192), [sym_preproc_define] = STATE(2192), [sym_preproc_undef] = STATE(2192), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400644,7 +400679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2193] = { - [sym_type_argument_list] = STATE(2186), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2193), [sym_preproc_endregion] = STATE(2193), [sym_preproc_line] = STATE(2193), @@ -400654,90 +400689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2193), [sym_preproc_define] = STATE(2193), [sym_preproc_undef] = STATE(2193), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3695), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400759,57 +400794,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2194), [sym_preproc_define] = STATE(2194), [sym_preproc_undef] = STATE(2194), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_global] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_global] = ACTIONS(3633), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3633), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -400822,28 +400857,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400869,67 +400904,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3697), [anon_sym_SEMI] = ACTIONS(3699), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), [anon_sym_COLON] = ACTIONS(3699), [anon_sym_COMMA] = ACTIONS(3699), [anon_sym_RBRACK] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_RBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_in] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_in] = ACTIONS(3697), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_EQ_GT] = ACTIONS(3699), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), @@ -400942,10 +400977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_if_token3] = ACTIONS(3699), [aux_sym_preproc_else_token1] = ACTIONS(3699), [aux_sym_preproc_elif_token1] = ACTIONS(3699), @@ -400972,71 +401007,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2196), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3703), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_RBRACK] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_RBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_in] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_in] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_EQ_GT] = ACTIONS(3703), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), + [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -401047,13 +401082,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_if_token3] = ACTIONS(3699), - [aux_sym_preproc_else_token1] = ACTIONS(3699), - [aux_sym_preproc_elif_token1] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), + [aux_sym_preproc_if_token3] = ACTIONS(3703), + [aux_sym_preproc_else_token1] = ACTIONS(3703), + [aux_sym_preproc_elif_token1] = ACTIONS(3703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401075,90 +401110,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2197), [sym_preproc_define] = STATE(2197), [sym_preproc_undef] = STATE(2197), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_RBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401180,54 +401215,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2198), [sym_preproc_define] = STATE(2198), [sym_preproc_undef] = STATE(2198), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_RBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3713), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), [anon_sym_and] = ACTIONS(3728), [anon_sym_or] = ACTIONS(3728), [anon_sym_PLUS_EQ] = ACTIONS(3731), @@ -401242,28 +401277,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), - [aux_sym_preproc_if_token3] = ACTIONS(3731), - [aux_sym_preproc_else_token1] = ACTIONS(3731), - [aux_sym_preproc_elif_token1] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_if_token3] = ACTIONS(3713), + [aux_sym_preproc_else_token1] = ACTIONS(3713), + [aux_sym_preproc_elif_token1] = ACTIONS(3713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401285,73 +401320,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2199), [sym_preproc_define] = STATE(2199), [sym_preproc_undef] = STATE(2199), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3713), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_if_token3] = ACTIONS(3713), + [aux_sym_preproc_else_token1] = ACTIONS(3713), + [aux_sym_preproc_elif_token1] = ACTIONS(3713), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2200] = { + [sym_preproc_region] = STATE(2200), + [sym_preproc_endregion] = STATE(2200), + [sym_preproc_line] = STATE(2200), + [sym_preproc_pragma] = STATE(2200), + [sym_preproc_nullable] = STATE(2200), + [sym_preproc_error] = STATE(2200), + [sym_preproc_warning] = STATE(2200), + [sym_preproc_define] = STATE(2200), + [sym_preproc_undef] = STATE(2200), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3703), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_RBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_GT] = ACTIONS(3736), - [anon_sym_in] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_in] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3736), - [anon_sym_PLUS_PLUS] = ACTIONS(3733), - [anon_sym_DASH_DASH] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_GT_GT_GT] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_GT_EQ] = ACTIONS(3733), - [anon_sym_LT_EQ] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), + [anon_sym_EQ_GT] = ACTIONS(3703), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3736), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3733), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_QMARK_QMARK] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -401362,118 +401502,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3736), - [anon_sym_is] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3736), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2200] = { - [sym_preproc_region] = STATE(2200), - [sym_preproc_endregion] = STATE(2200), - [sym_preproc_line] = STATE(2200), - [sym_preproc_pragma] = STATE(2200), - [sym_preproc_nullable] = STATE(2200), - [sym_preproc_error] = STATE(2200), - [sym_preproc_warning] = STATE(2200), - [sym_preproc_define] = STATE(2200), - [sym_preproc_undef] = STATE(2200), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3725), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_RBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_in] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), - [aux_sym_preproc_if_token3] = ACTIONS(3725), - [aux_sym_preproc_else_token1] = ACTIONS(3725), - [aux_sym_preproc_elif_token1] = ACTIONS(3725), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), + [aux_sym_preproc_if_token3] = ACTIONS(3703), + [aux_sym_preproc_else_token1] = ACTIONS(3703), + [aux_sym_preproc_elif_token1] = ACTIONS(3703), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401495,56 +401530,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2201), [sym_preproc_define] = STATE(2201), [sym_preproc_undef] = STATE(2201), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3725), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_RBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_in] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3733), + [anon_sym_DASH_DASH] = ACTIONS(3733), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_GT_GT_GT] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3733), + [anon_sym_BANG_EQ] = ACTIONS(3733), + [anon_sym_GT_EQ] = ACTIONS(3733), + [anon_sym_LT_EQ] = ACTIONS(3733), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3736), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3733), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -401557,28 +401592,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), - [aux_sym_preproc_if_token3] = ACTIONS(3725), - [aux_sym_preproc_else_token1] = ACTIONS(3725), - [aux_sym_preproc_elif_token1] = ACTIONS(3725), + [anon_sym_AMP_AMP] = ACTIONS(3733), + [anon_sym_PIPE_PIPE] = ACTIONS(3733), + [anon_sym_QMARK_QMARK] = ACTIONS(3736), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3736), + [anon_sym_is] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3736), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401591,10 +401626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2202] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(2604), + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(2616), [sym_preproc_region] = STATE(2202), [sym_preproc_endregion] = STATE(2202), [sym_preproc_line] = STATE(2202), @@ -401610,12 +401645,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), [anon_sym_file] = ACTIONS(3743), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -401649,10 +401684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3743), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3743), - [sym_discard] = ACTIONS(3658), + [sym_discard] = ACTIONS(3656), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -401705,26 +401740,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2203), [sym_preproc_define] = STATE(2203), [sym_preproc_undef] = STATE(2203), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3631), + [anon_sym_global] = ACTIONS(3633), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym_RPAREN] = ACTIONS(3459), [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3631), + [anon_sym_file] = ACTIONS(3633), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), + [anon_sym_where] = ACTIONS(3633), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -401744,13 +401779,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), + [anon_sym_scoped] = ACTIONS(3633), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), + [anon_sym_when] = ACTIONS(3633), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), @@ -401769,18 +401804,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -401800,29 +401835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2204] = { - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_modifier] = STATE(3164), - [sym_variable_declaration] = STATE(7458), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5471), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5766), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(3062), [sym_preproc_region] = STATE(2204), [sym_preproc_endregion] = STATE(2204), [sym_preproc_line] = STATE(2204), @@ -401832,65 +401844,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2204), [sym_preproc_define] = STATE(2204), [sym_preproc_undef] = STATE(2204), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2901), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2300), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(3747), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3749), - [anon_sym_class] = ACTIONS(3751), - [anon_sym_ref] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(3755), - [anon_sym_interface] = ACTIONS(3757), - [anon_sym_delegate] = ACTIONS(3759), - [anon_sym_record] = ACTIONS(3761), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(3763), - [anon_sym_implicit] = ACTIONS(3765), - [anon_sym_explicit] = ACTIONS(3765), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3767), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401912,54 +401947,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2205), [sym_preproc_define] = STATE(2205), [sym_preproc_undef] = STATE(2205), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), [anon_sym_COLON] = ACTIONS(3731), [anon_sym_COMMA] = ACTIONS(3731), [anon_sym_RBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3733), [anon_sym_RPAREN] = ACTIONS(3731), [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -401974,23 +402009,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_if_token3] = ACTIONS(3731), [aux_sym_preproc_else_token1] = ACTIONS(3731), [aux_sym_preproc_elif_token1] = ACTIONS(3731), @@ -402015,174 +402050,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2206), [sym_preproc_define] = STATE(2206), [sym_preproc_undef] = STATE(2206), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_RBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), - [aux_sym_preproc_if_token3] = ACTIONS(3731), - [aux_sym_preproc_else_token1] = ACTIONS(3731), - [aux_sym_preproc_elif_token1] = ACTIONS(3731), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2207] = { - [sym_preproc_region] = STATE(2207), - [sym_preproc_endregion] = STATE(2207), - [sym_preproc_line] = STATE(2207), - [sym_preproc_pragma] = STATE(2207), - [sym_preproc_nullable] = STATE(2207), - [sym_preproc_error] = STATE(2207), - [sym_preproc_warning] = STATE(2207), - [sym_preproc_define] = STATE(2207), - [sym_preproc_undef] = STATE(2207), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3709), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3717), + [anon_sym_EQ_GT] = ACTIONS(3709), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -402193,13 +402125,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2207] = { + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_modifier] = STATE(3166), + [sym_variable_declaration] = STATE(7628), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5372), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5772), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(2207), + [sym_preproc_endregion] = STATE(2207), + [sym_preproc_line] = STATE(2207), + [sym_preproc_pragma] = STATE(2207), + [sym_preproc_nullable] = STATE(2207), + [sym_preproc_error] = STATE(2207), + [sym_preproc_warning] = STATE(2207), + [sym_preproc_define] = STATE(2207), + [sym_preproc_undef] = STATE(2207), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2902), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2298), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(3747), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_event] = ACTIONS(3749), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_ref] = ACTIONS(3753), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(3755), + [anon_sym_interface] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3759), + [anon_sym_record] = ACTIONS(3761), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(3763), + [anon_sym_implicit] = ACTIONS(3765), + [anon_sym_explicit] = ACTIONS(3765), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3767), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402212,10 +402247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2208] = { - [sym__variable_designation] = STATE(4814), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym__variable_designation] = STATE(4815), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2208), [sym_preproc_endregion] = STATE(2208), [sym_preproc_line] = STATE(2208), @@ -402229,48 +402264,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3773), [anon_sym_global] = ACTIONS(3773), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), [anon_sym_LPAREN] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), [anon_sym_file] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), [anon_sym_where] = ACTIONS(3773), - [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3633), [anon_sym_notnull] = ACTIONS(3773), [anon_sym_unmanaged] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), [anon_sym_scoped] = ACTIONS(3773), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3773), [anon_sym_yield] = ACTIONS(3773), - [anon_sym_switch] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3633), [anon_sym_when] = ACTIONS(3773), [sym_discard] = ACTIONS(3781), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -402283,9 +402318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), [anon_sym_from] = ACTIONS(3773), [anon_sym_into] = ACTIONS(3773), [anon_sym_join] = ACTIONS(3773), @@ -402298,10 +402333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3773), [anon_sym_by] = ACTIONS(3773), [anon_sym_select] = ACTIONS(3773), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402312,9 +402347,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3628), + [sym_interpolation_close_brace] = ACTIONS(3630), }, [2209] = { + [sym__name] = STATE(2448), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2209), [sym_preproc_endregion] = STATE(2209), [sym_preproc_line] = STATE(2209), @@ -402324,6 +402368,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2209), [sym_preproc_define] = STATE(2209), [sym_preproc_undef] = STATE(2209), + [sym__identifier_token] = ACTIONS(3593), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(3596), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_equals] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(3596), + [anon_sym_select] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2210] = { + [sym_preproc_region] = STATE(2210), + [sym_preproc_endregion] = STATE(2210), + [sym_preproc_line] = STATE(2210), + [sym_preproc_pragma] = STATE(2210), + [sym_preproc_nullable] = STATE(2210), + [sym_preproc_error] = STATE(2210), + [sym_preproc_warning] = STATE(2210), + [sym_preproc_define] = STATE(2210), + [sym_preproc_undef] = STATE(2210), [sym__identifier_token] = ACTIONS(3785), [anon_sym_extern] = ACTIONS(3785), [anon_sym_alias] = ACTIONS(3785), @@ -402351,43 +402488,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(3785), [anon_sym_virtual] = ACTIONS(3785), [anon_sym_volatile] = ACTIONS(3785), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), [anon_sym_where] = ACTIONS(3785), - [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2989), [anon_sym_notnull] = ACTIONS(3785), [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2989), [anon_sym_scoped] = ACTIONS(3785), [anon_sym_var] = ACTIONS(3785), [sym_predefined_type] = ACTIONS(3785), - [anon_sym_while] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2985), [anon_sym_yield] = ACTIONS(3785), - [anon_sym_switch] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2989), [anon_sym_when] = ACTIONS(3785), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_DOT_DOT] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), [anon_sym_from] = ACTIONS(3785), [anon_sym_into] = ACTIONS(3785), [anon_sym_join] = ACTIONS(3785), @@ -402400,10 +402537,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3785), [anon_sym_by] = ACTIONS(3785), [anon_sym_select] = ACTIONS(3785), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_with] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2989), [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -402416,45 +402553,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2210] = { - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2210), - [sym_preproc_endregion] = STATE(2210), - [sym_preproc_line] = STATE(2210), - [sym_preproc_pragma] = STATE(2210), - [sym_preproc_nullable] = STATE(2210), - [sym_preproc_error] = STATE(2210), - [sym_preproc_warning] = STATE(2210), - [sym_preproc_define] = STATE(2210), - [sym_preproc_undef] = STATE(2210), - [sym__identifier_token] = ACTIONS(3604), - [anon_sym_alias] = ACTIONS(3607), + [2211] = { + [sym__name] = STATE(3220), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_ref_type] = STATE(3223), + [sym__scoped_base_type] = STATE(3228), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), + [sym_preproc_region] = STATE(2211), + [sym_preproc_endregion] = STATE(2211), + [sym_preproc_line] = STATE(2211), + [sym_preproc_pragma] = STATE(2211), + [sym_preproc_nullable] = STATE(2211), + [sym_preproc_error] = STATE(2211), + [sym_preproc_warning] = STATE(2211), + [sym_preproc_define] = STATE(2211), + [sym_preproc_undef] = STATE(2211), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3607), + [anon_sym_global] = ACTIONS(3791), [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_RBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3610), + [anon_sym_ref] = ACTIONS(3793), [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3607), + [anon_sym_file] = ACTIONS(3791), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), + [anon_sym_where] = ACTIONS(3791), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3607), - [anon_sym_unmanaged] = ACTIONS(3607), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -402474,32 +402612,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3607), + [anon_sym_scoped] = ACTIONS(3791), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3607), - [sym_discard] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3791), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(3607), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(3607), - [anon_sym_equals] = ACTIONS(3607), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(3607), - [anon_sym_select] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3795), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -402518,97 +402655,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2211] = { - [sym_preproc_region] = STATE(2211), - [sym_preproc_endregion] = STATE(2211), - [sym_preproc_line] = STATE(2211), - [sym_preproc_pragma] = STATE(2211), - [sym_preproc_nullable] = STATE(2211), - [sym_preproc_error] = STATE(2211), - [sym_preproc_warning] = STATE(2211), - [sym_preproc_define] = STATE(2211), - [sym_preproc_undef] = STATE(2211), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), + [2212] = { + [sym_preproc_region] = STATE(2212), + [sym_preproc_endregion] = STATE(2212), + [sym_preproc_line] = STATE(2212), + [sym_preproc_pragma] = STATE(2212), + [sym_preproc_nullable] = STATE(2212), + [sym_preproc_error] = STATE(2212), + [sym_preproc_warning] = STATE(2212), + [sym_preproc_define] = STATE(2212), + [sym_preproc_undef] = STATE(2212), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3731), [anon_sym_COMMA] = ACTIONS(3733), [anon_sym_RBRACK] = ACTIONS(3733), [anon_sym_LPAREN] = ACTIONS(3733), [anon_sym_RPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_if_token3] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3731), + [aux_sym_preproc_elif_token1] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402620,46 +402757,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2212] = { - [sym__name] = STATE(3211), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_ref_type] = STATE(3214), - [sym__scoped_base_type] = STATE(3216), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), - [sym_preproc_region] = STATE(2212), - [sym_preproc_endregion] = STATE(2212), - [sym_preproc_line] = STATE(2212), - [sym_preproc_pragma] = STATE(2212), - [sym_preproc_nullable] = STATE(2212), - [sym_preproc_error] = STATE(2212), - [sym_preproc_warning] = STATE(2212), - [sym_preproc_define] = STATE(2212), - [sym_preproc_undef] = STATE(2212), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), + [2213] = { + [sym__name] = STATE(3483), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), + [sym_preproc_region] = STATE(2213), + [sym_preproc_endregion] = STATE(2213), + [sym_preproc_line] = STATE(2213), + [sym_preproc_pragma] = STATE(2213), + [sym_preproc_nullable] = STATE(2213), + [sym_preproc_error] = STATE(2213), + [sym_preproc_warning] = STATE(2213), + [sym_preproc_define] = STATE(2213), + [sym_preproc_undef] = STATE(2213), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_RBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3793), + [anon_sym_ref] = ACTIONS(3802), [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3791), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -402679,31 +402815,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(3800), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3800), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3795), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -402722,65 +402858,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2213] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2213), - [sym_preproc_endregion] = STATE(2213), - [sym_preproc_line] = STATE(2213), - [sym_preproc_pragma] = STATE(2213), - [sym_preproc_nullable] = STATE(2213), - [sym_preproc_error] = STATE(2213), - [sym_preproc_warning] = STATE(2213), - [sym_preproc_define] = STATE(2213), - [sym_preproc_undef] = STATE(2213), - [sym__identifier_token] = ACTIONS(3798), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), + [2214] = { + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), + [sym_preproc_region] = STATE(2214), + [sym_preproc_endregion] = STATE(2214), + [sym_preproc_line] = STATE(2214), + [sym_preproc_pragma] = STATE(2214), + [sym_preproc_nullable] = STATE(2214), + [sym_preproc_error] = STATE(2214), + [sym_preproc_warning] = STATE(2214), + [sym_preproc_define] = STATE(2214), + [sym_preproc_undef] = STATE(2214), + [sym__identifier_token] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3808), + [anon_sym_global] = ACTIONS(3808), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3808), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3808), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3808), + [anon_sym_unmanaged] = ACTIONS(3808), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3808), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(3658), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3808), + [anon_sym_yield] = ACTIONS(3808), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3808), + [sym_discard] = ACTIONS(3656), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -402793,25 +402929,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3802), - [anon_sym_into] = ACTIONS(3802), - [anon_sym_join] = ACTIONS(3802), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3802), - [anon_sym_orderby] = ACTIONS(3802), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3802), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3802), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3808), + [anon_sym_into] = ACTIONS(3808), + [anon_sym_join] = ACTIONS(3808), + [anon_sym_on] = ACTIONS(3808), + [anon_sym_equals] = ACTIONS(3808), + [anon_sym_let] = ACTIONS(3808), + [anon_sym_orderby] = ACTIONS(3808), + [anon_sym_ascending] = ACTIONS(3808), + [anon_sym_descending] = ACTIONS(3808), + [anon_sym_group] = ACTIONS(3808), + [anon_sym_by] = ACTIONS(3808), + [anon_sym_select] = ACTIONS(3808), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402823,96 +402959,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2214] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2214), - [sym_preproc_endregion] = STATE(2214), - [sym_preproc_line] = STATE(2214), - [sym_preproc_pragma] = STATE(2214), - [sym_preproc_nullable] = STATE(2214), - [sym_preproc_error] = STATE(2214), - [sym_preproc_warning] = STATE(2214), - [sym_preproc_define] = STATE(2214), - [sym_preproc_undef] = STATE(2214), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3806), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), + [2215] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2215), + [sym_preproc_endregion] = STATE(2215), + [sym_preproc_line] = STATE(2215), + [sym_preproc_pragma] = STATE(2215), + [sym_preproc_nullable] = STATE(2215), + [sym_preproc_error] = STATE(2215), + [sym_preproc_warning] = STATE(2215), + [sym_preproc_define] = STATE(2215), + [sym_preproc_undef] = STATE(2215), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), [anon_sym_EQ_GT] = ACTIONS(3691), [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402924,35 +403060,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2215] = { - [sym_preproc_region] = STATE(2215), - [sym_preproc_endregion] = STATE(2215), - [sym_preproc_line] = STATE(2215), - [sym_preproc_pragma] = STATE(2215), - [sym_preproc_nullable] = STATE(2215), - [sym_preproc_error] = STATE(2215), - [sym_preproc_warning] = STATE(2215), - [sym_preproc_define] = STATE(2215), - [sym_preproc_undef] = STATE(2215), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), + [2216] = { + [sym_preproc_region] = STATE(2216), + [sym_preproc_endregion] = STATE(2216), + [sym_preproc_line] = STATE(2216), + [sym_preproc_pragma] = STATE(2216), + [sym_preproc_nullable] = STATE(2216), + [sym_preproc_error] = STATE(2216), + [sym_preproc_warning] = STATE(2216), + [sym_preproc_define] = STATE(2216), + [sym_preproc_undef] = STATE(2216), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), + [anon_sym_where] = ACTIONS(3633), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -402972,17 +403108,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), + [anon_sym_scoped] = ACTIONS(3633), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -402998,18 +403134,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -403025,43 +403161,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2216] = { - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_modifier] = STATE(3164), - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5976), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(3062), - [sym_preproc_region] = STATE(2216), - [sym_preproc_endregion] = STATE(2216), - [sym_preproc_line] = STATE(2216), - [sym_preproc_pragma] = STATE(2216), - [sym_preproc_nullable] = STATE(2216), - [sym_preproc_error] = STATE(2216), - [sym_preproc_warning] = STATE(2216), - [sym_preproc_define] = STATE(2216), - [sym_preproc_undef] = STATE(2216), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2901), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2415), - [aux_sym__lambda_expression_init_repeat1] = STATE(3528), + [2217] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2217), + [sym_preproc_endregion] = STATE(2217), + [sym_preproc_line] = STATE(2217), + [sym_preproc_pragma] = STATE(2217), + [sym_preproc_nullable] = STATE(2217), + [sym_preproc_error] = STATE(2217), + [sym_preproc_warning] = STATE(2217), + [sym_preproc_define] = STATE(2217), + [sym_preproc_undef] = STATE(2217), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3814), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2218] = { + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_modifier] = STATE(3166), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5968), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(3038), + [sym_preproc_region] = STATE(2218), + [sym_preproc_endregion] = STATE(2218), + [sym_preproc_line] = STATE(2218), + [sym_preproc_pragma] = STATE(2218), + [sym_preproc_nullable] = STATE(2218), + [sym_preproc_error] = STATE(2218), + [sym_preproc_warning] = STATE(2218), + [sym_preproc_define] = STATE(2218), + [sym_preproc_undef] = STATE(2218), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2902), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2393), + [aux_sym__lambda_expression_init_repeat1] = STATE(3463), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(2997), @@ -403069,10 +403306,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(3816), [anon_sym_class] = ACTIONS(3751), [anon_sym_ref] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2797), [anon_sym_enum] = ACTIONS(3755), [anon_sym_interface] = ACTIONS(3757), [anon_sym_delegate] = ACTIONS(3759), @@ -403126,129 +403363,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2217] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2217), - [sym_preproc_endregion] = STATE(2217), - [sym_preproc_line] = STATE(2217), - [sym_preproc_pragma] = STATE(2217), - [sym_preproc_nullable] = STATE(2217), - [sym_preproc_error] = STATE(2217), - [sym_preproc_warning] = STATE(2217), - [sym_preproc_define] = STATE(2217), - [sym_preproc_undef] = STATE(2217), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3810), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2218] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(2604), - [sym_preproc_region] = STATE(2218), - [sym_preproc_endregion] = STATE(2218), - [sym_preproc_line] = STATE(2218), - [sym_preproc_pragma] = STATE(2218), - [sym_preproc_nullable] = STATE(2218), - [sym_preproc_error] = STATE(2218), - [sym_preproc_warning] = STATE(2218), - [sym_preproc_define] = STATE(2218), - [sym_preproc_undef] = STATE(2218), + [2219] = { + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(2616), + [sym_preproc_region] = STATE(2219), + [sym_preproc_endregion] = STATE(2219), + [sym_preproc_line] = STATE(2219), + [sym_preproc_pragma] = STATE(2219), + [sym_preproc_nullable] = STATE(2219), + [sym_preproc_error] = STATE(2219), + [sym_preproc_warning] = STATE(2219), + [sym_preproc_define] = STATE(2219), + [sym_preproc_undef] = STATE(2219), [sym__identifier_token] = ACTIONS(3739), [anon_sym_alias] = ACTIONS(3743), [anon_sym_global] = ACTIONS(3743), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3630), [anon_sym_file] = ACTIONS(3743), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -403282,10 +403418,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3743), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3743), - [sym_discard] = ACTIONS(3658), + [sym_discard] = ACTIONS(3656), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -403328,112 +403464,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2219] = { - [sym__name] = STATE(3449), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2219), - [sym_preproc_endregion] = STATE(2219), - [sym_preproc_line] = STATE(2219), - [sym_preproc_pragma] = STATE(2219), - [sym_preproc_nullable] = STATE(2219), - [sym_preproc_error] = STATE(2219), - [sym_preproc_warning] = STATE(2219), - [sym_preproc_define] = STATE(2219), - [sym_preproc_undef] = STATE(2219), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3816), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2220] = { - [sym__variable_designation] = STATE(3909), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3803), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2220), [sym_preproc_endregion] = STATE(2220), [sym_preproc_line] = STATE(2220), @@ -403447,47 +403482,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3822), [anon_sym_global] = ACTIONS(3822), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COMMA] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COMMA] = ACTIONS(3630), [anon_sym_LPAREN] = ACTIONS(3826), - [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), [anon_sym_file] = ACTIONS(3822), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), [anon_sym_where] = ACTIONS(3822), - [anon_sym_QMARK] = ACTIONS(3631), + [anon_sym_QMARK] = ACTIONS(3633), [anon_sym_notnull] = ACTIONS(3822), [anon_sym_unmanaged] = ACTIONS(3822), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), [anon_sym_scoped] = ACTIONS(3822), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3822), [anon_sym_yield] = ACTIONS(3822), - [anon_sym_switch] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3633), [anon_sym_when] = ACTIONS(3822), [sym_discard] = ACTIONS(3830), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -403500,9 +403535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), [anon_sym_from] = ACTIONS(3822), [anon_sym_into] = ACTIONS(3822), [anon_sym_join] = ACTIONS(3822), @@ -403515,10 +403550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3822), [anon_sym_by] = ACTIONS(3822), [anon_sym_select] = ACTIONS(3822), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403531,10 +403566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2221] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(2604), [sym_preproc_region] = STATE(2221), [sym_preproc_endregion] = STATE(2221), [sym_preproc_line] = STATE(2221), @@ -403544,81 +403575,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2221), [sym_preproc_define] = STATE(2221), [sym_preproc_undef] = STATE(2221), - [sym__identifier_token] = ACTIONS(3739), - [anon_sym_alias] = ACTIONS(3743), - [anon_sym_global] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3743), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3743), - [anon_sym_unmanaged] = ACTIONS(3743), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3743), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3743), - [anon_sym_yield] = ACTIONS(3743), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3743), - [sym_discard] = ACTIONS(3658), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3743), - [anon_sym_into] = ACTIONS(3743), - [anon_sym_join] = ACTIONS(3743), - [anon_sym_on] = ACTIONS(3743), - [anon_sym_equals] = ACTIONS(3743), - [anon_sym_let] = ACTIONS(3743), - [anon_sym_orderby] = ACTIONS(3743), - [anon_sym_ascending] = ACTIONS(3743), - [anon_sym_descending] = ACTIONS(3743), - [anon_sym_group] = ACTIONS(3743), - [anon_sym_by] = ACTIONS(3743), - [anon_sym_select] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403631,7 +403666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2222] = { - [sym_type_argument_list] = STATE(2186), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2222), [sym_preproc_endregion] = STATE(2222), [sym_preproc_line] = STATE(2222), @@ -403641,84 +403676,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2222), [sym_preproc_define] = STATE(2222), [sym_preproc_undef] = STATE(2222), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3680), [anon_sym_COLON] = ACTIONS(3837), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), [anon_sym_EQ_GT] = ACTIONS(3691), [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403731,7 +403766,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2223] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2223), [sym_preproc_endregion] = STATE(2223), [sym_preproc_line] = STATE(2223), @@ -403741,84 +403775,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2223), [sym_preproc_define] = STATE(2223), [sym_preproc_undef] = STATE(2223), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3837), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403831,10 +403866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2224] = { - [sym__variable_designation] = STATE(3479), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2224), [sym_preproc_endregion] = STATE(2224), [sym_preproc_line] = STATE(2224), @@ -403844,81 +403876,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2224), [sym_preproc_define] = STATE(2224), [sym_preproc_undef] = STATE(2224), - [sym__identifier_token] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_global] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3624), - [anon_sym_unmanaged] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3624), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3624), - [sym_discard] = ACTIONS(3658), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3842), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403940,85 +403975,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2225), [sym_preproc_define] = STATE(2225), [sym_preproc_undef] = STATE(2225), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(2719), + [anon_sym_alias] = ACTIONS(2719), + [anon_sym_global] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3845), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_ref] = ACTIONS(2719), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_file] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(2719), + [anon_sym_unmanaged] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_this] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(2719), + [anon_sym_var] = ACTIONS(2719), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(2719), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(2719), + [anon_sym_into] = ACTIONS(2719), + [anon_sym_join] = ACTIONS(2719), + [anon_sym_on] = ACTIONS(2719), + [anon_sym_equals] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_orderby] = ACTIONS(2719), + [anon_sym_ascending] = ACTIONS(2719), + [anon_sym_descending] = ACTIONS(2719), + [anon_sym_group] = ACTIONS(2719), + [anon_sym_by] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404031,15 +404066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2226] = { - [sym__name] = STATE(3576), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_ref_type] = STATE(2991), - [sym__scoped_base_type] = STATE(2992), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym__variable_designation] = STATE(4203), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2226), [sym_preproc_endregion] = STATE(2226), [sym_preproc_line] = STATE(2226), @@ -404049,76 +404079,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2226), [sym_preproc_define] = STATE(2226), [sym_preproc_undef] = STATE(2226), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3846), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3848), + [anon_sym_alias] = ACTIONS(3852), + [anon_sym_global] = ACTIONS(3852), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3856), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3852), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3852), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3852), + [anon_sym_unmanaged] = ACTIONS(3852), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3852), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3848), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3852), + [anon_sym_yield] = ACTIONS(3852), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3852), + [sym_discard] = ACTIONS(3860), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3852), + [anon_sym_into] = ACTIONS(3852), + [anon_sym_join] = ACTIONS(3852), + [anon_sym_on] = ACTIONS(3852), + [anon_sym_equals] = ACTIONS(3852), + [anon_sym_let] = ACTIONS(3852), + [anon_sym_orderby] = ACTIONS(3852), + [anon_sym_ascending] = ACTIONS(3852), + [anon_sym_descending] = ACTIONS(3852), + [anon_sym_group] = ACTIONS(3852), + [anon_sym_by] = ACTIONS(3852), + [anon_sym_select] = ACTIONS(3852), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404131,6 +404166,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2227] = { + [sym__variable_designation] = STATE(3396), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2227), [sym_preproc_endregion] = STATE(2227), [sym_preproc_line] = STATE(2227), @@ -404140,54 +404179,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2227), [sym_preproc_define] = STATE(2227), [sym_preproc_undef] = STATE(2227), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3622), + [anon_sym_alias] = ACTIONS(3626), + [anon_sym_global] = ACTIONS(3626), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3626), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3626), + [anon_sym_unmanaged] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3626), + [anon_sym_EQ_GT] = ACTIONS(3630), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3626), + [sym_discard] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -404200,25 +404235,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_into] = ACTIONS(3626), + [anon_sym_join] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_equals] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_orderby] = ACTIONS(3626), + [anon_sym_ascending] = ACTIONS(3626), + [anon_sym_descending] = ACTIONS(3626), + [anon_sym_group] = ACTIONS(3626), + [anon_sym_by] = ACTIONS(3626), + [anon_sym_select] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404231,6 +404266,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2228] = { + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2228), [sym_preproc_endregion] = STATE(2228), [sym_preproc_line] = STATE(2228), @@ -404238,87 +404277,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_nullable] = STATE(2228), [sym_preproc_error] = STATE(2228), [sym_preproc_warning] = STATE(2228), - [sym_preproc_define] = STATE(2228), - [sym_preproc_undef] = STATE(2228), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_ref] = ACTIONS(3785), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_delegate] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_readonly] = ACTIONS(3785), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(3785), - [anon_sym_out] = ACTIONS(3785), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_this] = ACTIONS(3785), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_params] = ACTIONS(3785), - [anon_sym_EQ_GT] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(3785), - [sym_predefined_type] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_DOT_DOT] = ACTIONS(2983), - [anon_sym_and] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_with] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(3787), - [aux_sym_preproc_if_token3] = ACTIONS(2983), - [aux_sym_preproc_else_token1] = ACTIONS(2983), - [aux_sym_preproc_elif_token1] = ACTIONS(2983), + [sym_preproc_define] = STATE(2228), + [sym_preproc_undef] = STATE(2228), + [sym__identifier_token] = ACTIONS(3622), + [anon_sym_alias] = ACTIONS(3626), + [anon_sym_global] = ACTIONS(3626), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3626), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3626), + [anon_sym_unmanaged] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3626), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3626), + [sym_discard] = ACTIONS(3656), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_into] = ACTIONS(3626), + [anon_sym_join] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_equals] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_orderby] = ACTIONS(3626), + [anon_sym_ascending] = ACTIONS(3626), + [anon_sym_descending] = ACTIONS(3626), + [anon_sym_group] = ACTIONS(3626), + [anon_sym_by] = ACTIONS(3626), + [anon_sym_select] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404331,7 +404366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2229] = { - [sym_type_argument_list] = STATE(2186), + [sym_type_argument_list] = STATE(2273), [sym_preproc_region] = STATE(2229), [sym_preproc_endregion] = STATE(2229), [sym_preproc_line] = STATE(2229), @@ -404341,100 +404376,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2229), [sym_preproc_define] = STATE(2229), [sym_preproc_undef] = STATE(2229), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3851), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3864), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(3867), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [2230] = { - [sym__variable_designation] = STATE(4194), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), + [sym__variable_designation] = STATE(3546), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(2616), [sym_preproc_region] = STATE(2230), [sym_preproc_endregion] = STATE(2230), [sym_preproc_line] = STATE(2230), @@ -404444,50 +404479,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2230), [sym_preproc_define] = STATE(2230), [sym_preproc_undef] = STATE(2230), - [sym__identifier_token] = ACTIONS(3854), - [anon_sym_alias] = ACTIONS(3858), - [anon_sym_global] = ACTIONS(3858), + [sym__identifier_token] = ACTIONS(3739), + [anon_sym_alias] = ACTIONS(3743), + [anon_sym_global] = ACTIONS(3743), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3858), - [anon_sym_unmanaged] = ACTIONS(3858), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3858), - [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3743), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3743), + [anon_sym_unmanaged] = ACTIONS(3743), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3743), + [anon_sym_EQ_GT] = ACTIONS(3630), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3858), - [anon_sym_yield] = ACTIONS(3858), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3858), - [sym_discard] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3743), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3743), + [sym_discard] = ACTIONS(3656), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -404500,25 +404535,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3858), - [anon_sym_into] = ACTIONS(3858), - [anon_sym_join] = ACTIONS(3858), - [anon_sym_on] = ACTIONS(3858), - [anon_sym_equals] = ACTIONS(3858), - [anon_sym_let] = ACTIONS(3858), - [anon_sym_orderby] = ACTIONS(3858), - [anon_sym_ascending] = ACTIONS(3858), - [anon_sym_descending] = ACTIONS(3858), - [anon_sym_group] = ACTIONS(3858), - [anon_sym_by] = ACTIONS(3858), - [anon_sym_select] = ACTIONS(3858), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3743), + [anon_sym_into] = ACTIONS(3743), + [anon_sym_join] = ACTIONS(3743), + [anon_sym_on] = ACTIONS(3743), + [anon_sym_equals] = ACTIONS(3743), + [anon_sym_let] = ACTIONS(3743), + [anon_sym_orderby] = ACTIONS(3743), + [anon_sym_ascending] = ACTIONS(3743), + [anon_sym_descending] = ACTIONS(3743), + [anon_sym_group] = ACTIONS(3743), + [anon_sym_by] = ACTIONS(3743), + [anon_sym_select] = ACTIONS(3743), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404531,7 +404566,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2231] = { - [sym_type_argument_list] = STATE(2186), + [sym__name] = STATE(3586), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_ref_type] = STATE(2994), + [sym__scoped_base_type] = STATE(2965), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2231), [sym_preproc_endregion] = STATE(2231), [sym_preproc_line] = STATE(2231), @@ -404541,84 +404584,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2231), [sym_preproc_define] = STATE(2231), [sym_preproc_undef] = STATE(2231), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3870), - [anon_sym_COMMA] = ACTIONS(3872), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3875), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404631,7 +404666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2232] = { - [sym_type_argument_list] = STATE(2269), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2232), [sym_preproc_endregion] = STATE(2232), [sym_preproc_line] = STATE(2232), @@ -404641,83 +404676,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2232), [sym_preproc_define] = STATE(2232), [sym_preproc_undef] = STATE(2232), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3875), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3834), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404728,13 +404764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [2233] = { - [sym__variable_designation] = STATE(4194), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2233), [sym_preproc_endregion] = STATE(2233), [sym_preproc_line] = STATE(2233), @@ -404744,81 +404776,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2233), [sym_preproc_define] = STATE(2233), [sym_preproc_undef] = STATE(2233), - [sym__identifier_token] = ACTIONS(3880), - [anon_sym_alias] = ACTIONS(3884), - [anon_sym_global] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3884), - [anon_sym_unmanaged] = ACTIONS(3884), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3884), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3884), - [anon_sym_yield] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3884), - [sym_discard] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3884), - [anon_sym_into] = ACTIONS(3884), - [anon_sym_join] = ACTIONS(3884), - [anon_sym_on] = ACTIONS(3884), - [anon_sym_equals] = ACTIONS(3884), - [anon_sym_let] = ACTIONS(3884), - [anon_sym_orderby] = ACTIONS(3884), - [anon_sym_ascending] = ACTIONS(3884), - [anon_sym_descending] = ACTIONS(3884), - [anon_sym_group] = ACTIONS(3884), - [anon_sym_by] = ACTIONS(3884), - [anon_sym_select] = ACTIONS(3884), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3834), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3837), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404840,85 +404875,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2234), [sym_preproc_define] = STATE(2234), [sym_preproc_undef] = STATE(2234), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404931,7 +404966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2235] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2235), [sym_preproc_endregion] = STATE(2235), [sym_preproc_line] = STATE(2235), @@ -404941,84 +404975,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2235), [sym_preproc_define] = STATE(2235), [sym_preproc_undef] = STATE(2235), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3870), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_RPAREN] = ACTIONS(2991), + [anon_sym_ref] = ACTIONS(3785), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_delegate] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_readonly] = ACTIONS(3785), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(3785), + [anon_sym_out] = ACTIONS(3785), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_this] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_params] = ACTIONS(3785), + [anon_sym_EQ_GT] = ACTIONS(2991), + [anon_sym_var] = ACTIONS(3785), + [sym_predefined_type] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_DOT_DOT] = ACTIONS(2991), + [anon_sym_and] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(3787), + [aux_sym_preproc_if_token3] = ACTIONS(2991), + [aux_sym_preproc_else_token1] = ACTIONS(2991), + [aux_sym_preproc_elif_token1] = ACTIONS(2991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405031,6 +405066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2236] = { + [sym__variable_designation] = STATE(4203), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2236), [sym_preproc_endregion] = STATE(2236), [sym_preproc_line] = STATE(2236), @@ -405040,85 +405079,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2236), [sym_preproc_define] = STATE(2236), [sym_preproc_undef] = STATE(2236), - [sym__identifier_token] = ACTIONS(2719), - [anon_sym_alias] = ACTIONS(2719), - [anon_sym_global] = ACTIONS(2719), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_ref] = ACTIONS(2719), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_file] = ACTIONS(2719), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(2719), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(2719), - [anon_sym_unmanaged] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_this] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(2719), - [anon_sym_var] = ACTIONS(2719), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(2719), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(2719), - [anon_sym_into] = ACTIONS(2719), - [anon_sym_join] = ACTIONS(2719), - [anon_sym_on] = ACTIONS(2719), - [anon_sym_equals] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_orderby] = ACTIONS(2719), - [anon_sym_ascending] = ACTIONS(2719), - [anon_sym_descending] = ACTIONS(2719), - [anon_sym_group] = ACTIONS(2719), - [anon_sym_by] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3883), + [anon_sym_alias] = ACTIONS(3887), + [anon_sym_global] = ACTIONS(3887), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3856), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3887), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3887), + [anon_sym_unmanaged] = ACTIONS(3887), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3887), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3887), + [anon_sym_yield] = ACTIONS(3887), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3887), + [sym_discard] = ACTIONS(3860), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(3887), + [anon_sym_equals] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_orderby] = ACTIONS(3887), + [anon_sym_ascending] = ACTIONS(3887), + [anon_sym_descending] = ACTIONS(3887), + [anon_sym_group] = ACTIONS(3887), + [anon_sym_by] = ACTIONS(3887), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405131,10 +405166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2237] = { - [sym__variable_designation] = STATE(3353), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2237), [sym_preproc_endregion] = STATE(2237), [sym_preproc_line] = STATE(2237), @@ -405144,81 +405176,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2237), [sym_preproc_define] = STATE(2237), [sym_preproc_undef] = STATE(2237), - [sym__identifier_token] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_global] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3624), - [anon_sym_unmanaged] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3624), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3624), - [sym_discard] = ACTIONS(3638), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405240,84 +405275,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2238), [sym_preproc_define] = STATE(2238), [sym_preproc_undef] = STATE(2238), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3704), - [anon_sym_RBRACK] = ACTIONS(3704), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3713), [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3704), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405339,151 +405374,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2239), [sym_preproc_define] = STATE(2239), [sym_preproc_undef] = STATE(2239), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_RBRACK] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3699), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2240] = { - [sym_preproc_region] = STATE(2240), - [sym_preproc_endregion] = STATE(2240), - [sym_preproc_line] = STATE(2240), - [sym_preproc_pragma] = STATE(2240), - [sym_preproc_nullable] = STATE(2240), - [sym_preproc_error] = STATE(2240), - [sym_preproc_warning] = STATE(2240), - [sym_preproc_define] = STATE(2240), - [sym_preproc_undef] = STATE(2240), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3633), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -405496,125 +405432,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3628), - }, - [2241] = { - [sym_preproc_region] = STATE(2241), - [sym_preproc_endregion] = STATE(2241), - [sym_preproc_line] = STATE(2241), - [sym_preproc_pragma] = STATE(2241), - [sym_preproc_nullable] = STATE(2241), - [sym_preproc_error] = STATE(2241), - [sym_preproc_warning] = STATE(2241), - [sym_preproc_define] = STATE(2241), - [sym_preproc_undef] = STATE(2241), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3733), - [anon_sym_RBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405625,26 +405461,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3630), }, - [2242] = { - [sym__name] = STATE(3149), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2242), - [sym_preproc_endregion] = STATE(2242), - [sym_preproc_line] = STATE(2242), - [sym_preproc_pragma] = STATE(2242), - [sym_preproc_nullable] = STATE(2242), - [sym_preproc_error] = STATE(2242), - [sym_preproc_warning] = STATE(2242), - [sym_preproc_define] = STATE(2242), - [sym_preproc_undef] = STATE(2242), + [2240] = { + [sym__name] = STATE(3127), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2240), + [sym_preproc_endregion] = STATE(2240), + [sym_preproc_line] = STATE(2240), + [sym_preproc_pragma] = STATE(2240), + [sym_preproc_nullable] = STATE(2240), + [sym_preproc_error] = STATE(2240), + [sym_preproc_warning] = STATE(2240), + [sym_preproc_define] = STATE(2240), + [sym_preproc_undef] = STATE(2240), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_SEMI] = ACTIONS(3459), @@ -405725,24 +405562,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2243] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2243), - [sym_preproc_endregion] = STATE(2243), - [sym_preproc_line] = STATE(2243), - [sym_preproc_pragma] = STATE(2243), - [sym_preproc_nullable] = STATE(2243), - [sym_preproc_error] = STATE(2243), - [sym_preproc_warning] = STATE(2243), - [sym_preproc_define] = STATE(2243), - [sym_preproc_undef] = STATE(2243), + [2241] = { + [sym_preproc_region] = STATE(2241), + [sym_preproc_endregion] = STATE(2241), + [sym_preproc_line] = STATE(2241), + [sym_preproc_pragma] = STATE(2241), + [sym_preproc_nullable] = STATE(2241), + [sym_preproc_error] = STATE(2241), + [sym_preproc_warning] = STATE(2241), + [sym_preproc_define] = STATE(2241), + [sym_preproc_undef] = STATE(2241), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3718), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2242] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2242), + [sym_preproc_endregion] = STATE(2242), + [sym_preproc_line] = STATE(2242), + [sym_preproc_pragma] = STATE(2242), + [sym_preproc_nullable] = STATE(2242), + [sym_preproc_error] = STATE(2242), + [sym_preproc_warning] = STATE(2242), + [sym_preproc_define] = STATE(2242), + [sym_preproc_undef] = STATE(2242), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_SEMI] = ACTIONS(3901), @@ -405824,16 +405760,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2244] = { - [sym_preproc_region] = STATE(2244), - [sym_preproc_endregion] = STATE(2244), - [sym_preproc_line] = STATE(2244), - [sym_preproc_pragma] = STATE(2244), - [sym_preproc_nullable] = STATE(2244), - [sym_preproc_error] = STATE(2244), - [sym_preproc_warning] = STATE(2244), - [sym_preproc_define] = STATE(2244), - [sym_preproc_undef] = STATE(2244), + [2243] = { + [sym_preproc_region] = STATE(2243), + [sym_preproc_endregion] = STATE(2243), + [sym_preproc_line] = STATE(2243), + [sym_preproc_pragma] = STATE(2243), + [sym_preproc_nullable] = STATE(2243), + [sym_preproc_error] = STATE(2243), + [sym_preproc_warning] = STATE(2243), + [sym_preproc_define] = STATE(2243), + [sym_preproc_undef] = STATE(2243), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_global] = ACTIONS(3461), @@ -405921,26 +405857,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), + [sym_interpolation_close_brace] = ACTIONS(3459), + }, + [2244] = { + [sym_preproc_region] = STATE(2244), + [sym_preproc_endregion] = STATE(2244), + [sym_preproc_line] = STATE(2244), + [sym_preproc_pragma] = STATE(2244), + [sym_preproc_nullable] = STATE(2244), + [sym_preproc_error] = STATE(2244), + [sym_preproc_warning] = STATE(2244), + [sym_preproc_define] = STATE(2244), + [sym_preproc_undef] = STATE(2244), + [sym__identifier_token] = ACTIONS(3662), + [anon_sym_alias] = ACTIONS(3662), + [anon_sym_global] = ACTIONS(3662), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_notnull] = ACTIONS(3662), + [anon_sym_unmanaged] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_scoped] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_when] = ACTIONS(3662), + [sym_discard] = ACTIONS(3662), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_PLUS_EQ] = ACTIONS(3664), + [anon_sym_DASH_EQ] = ACTIONS(3664), + [anon_sym_STAR_EQ] = ACTIONS(3664), + [anon_sym_SLASH_EQ] = ACTIONS(3664), + [anon_sym_PERCENT_EQ] = ACTIONS(3664), + [anon_sym_AMP_EQ] = ACTIONS(3664), + [anon_sym_CARET_EQ] = ACTIONS(3664), + [anon_sym_PIPE_EQ] = ACTIONS(3664), + [anon_sym_LT_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3662), + [anon_sym_join] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_equals] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_orderby] = ACTIONS(3662), + [anon_sym_ascending] = ACTIONS(3662), + [anon_sym_descending] = ACTIONS(3662), + [anon_sym_group] = ACTIONS(3662), + [anon_sym_by] = ACTIONS(3662), + [anon_sym_select] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_is] = ACTIONS(3662), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3662), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3664), + }, + [2245] = { + [sym_preproc_region] = STATE(2245), + [sym_preproc_endregion] = STATE(2245), + [sym_preproc_line] = STATE(2245), + [sym_preproc_pragma] = STATE(2245), + [sym_preproc_nullable] = STATE(2245), + [sym_preproc_error] = STATE(2245), + [sym_preproc_warning] = STATE(2245), + [sym_preproc_define] = STATE(2245), + [sym_preproc_undef] = STATE(2245), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3733), + [anon_sym_RBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2246] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2246), + [sym_preproc_endregion] = STATE(2246), + [sym_preproc_line] = STATE(2246), + [sym_preproc_pragma] = STATE(2246), + [sym_preproc_nullable] = STATE(2246), + [sym_preproc_error] = STATE(2246), + [sym_preproc_warning] = STATE(2246), + [sym_preproc_define] = STATE(2246), + [sym_preproc_undef] = STATE(2246), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), + [aux_sym_preproc_if_token3] = ACTIONS(3911), + [aux_sym_preproc_else_token1] = ACTIONS(3911), + [aux_sym_preproc_elif_token1] = ACTIONS(3911), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2247] = { + [sym_preproc_region] = STATE(2247), + [sym_preproc_endregion] = STATE(2247), + [sym_preproc_line] = STATE(2247), + [sym_preproc_pragma] = STATE(2247), + [sym_preproc_nullable] = STATE(2247), + [sym_preproc_error] = STATE(2247), + [sym_preproc_warning] = STATE(2247), + [sym_preproc_define] = STATE(2247), + [sym_preproc_undef] = STATE(2247), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_RBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, - [2245] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2245), - [sym_preproc_endregion] = STATE(2245), - [sym_preproc_line] = STATE(2245), - [sym_preproc_pragma] = STATE(2245), - [sym_preproc_nullable] = STATE(2245), - [sym_preproc_error] = STATE(2245), - [sym_preproc_warning] = STATE(2245), - [sym_preproc_define] = STATE(2245), - [sym_preproc_undef] = STATE(2245), + [2248] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2248), + [sym_preproc_endregion] = STATE(2248), + [sym_preproc_line] = STATE(2248), + [sym_preproc_pragma] = STATE(2248), + [sym_preproc_nullable] = STATE(2248), + [sym_preproc_error] = STATE(2248), + [sym_preproc_warning] = STATE(2248), + [sym_preproc_define] = STATE(2248), + [sym_preproc_undef] = STATE(2248), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_RBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_if_token3] = ACTIONS(3901), + [aux_sym_preproc_else_token1] = ACTIONS(3901), + [aux_sym_preproc_elif_token1] = ACTIONS(3901), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2249] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2249), + [sym_preproc_endregion] = STATE(2249), + [sym_preproc_line] = STATE(2249), + [sym_preproc_pragma] = STATE(2249), + [sym_preproc_nullable] = STATE(2249), + [sym_preproc_error] = STATE(2249), + [sym_preproc_warning] = STATE(2249), + [sym_preproc_define] = STATE(2249), + [sym_preproc_undef] = STATE(2249), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_SEMI] = ACTIONS(3911), @@ -405956,7 +406387,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_in] = ACTIONS(3909), [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3909), [anon_sym_notnull] = ACTIONS(3899), @@ -405985,7 +406415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -405993,7 +406423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -406022,123 +406452,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2246] = { - [sym_preproc_region] = STATE(2246), - [sym_preproc_endregion] = STATE(2246), - [sym_preproc_line] = STATE(2246), - [sym_preproc_pragma] = STATE(2246), - [sym_preproc_nullable] = STATE(2246), - [sym_preproc_error] = STATE(2246), - [sym_preproc_warning] = STATE(2246), - [sym_preproc_define] = STATE(2246), - [sym_preproc_undef] = STATE(2246), - [sym__identifier_token] = ACTIONS(3662), - [anon_sym_alias] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_file] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3662), - [anon_sym_unmanaged] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3664), - [anon_sym_DASH_EQ] = ACTIONS(3664), - [anon_sym_STAR_EQ] = ACTIONS(3664), - [anon_sym_SLASH_EQ] = ACTIONS(3664), - [anon_sym_PERCENT_EQ] = ACTIONS(3664), - [anon_sym_AMP_EQ] = ACTIONS(3664), - [anon_sym_CARET_EQ] = ACTIONS(3664), - [anon_sym_PIPE_EQ] = ACTIONS(3664), - [anon_sym_LT_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3664), - }, - [2247] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2247), - [sym_preproc_endregion] = STATE(2247), - [sym_preproc_line] = STATE(2247), - [sym_preproc_pragma] = STATE(2247), - [sym_preproc_nullable] = STATE(2247), - [sym_preproc_error] = STATE(2247), - [sym_preproc_warning] = STATE(2247), - [sym_preproc_define] = STATE(2247), - [sym_preproc_undef] = STATE(2247), + [2250] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2250), + [sym_preproc_endregion] = STATE(2250), + [sym_preproc_line] = STATE(2250), + [sym_preproc_pragma] = STATE(2250), + [sym_preproc_nullable] = STATE(2250), + [sym_preproc_error] = STATE(2250), + [sym_preproc_warning] = STATE(2250), + [sym_preproc_define] = STATE(2250), + [sym_preproc_undef] = STATE(2250), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_SEMI] = ACTIONS(3901), @@ -406154,7 +406485,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3905), [anon_sym_notnull] = ACTIONS(3899), @@ -406183,7 +406513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), @@ -406191,7 +406521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -406220,63 +406550,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2248] = { - [sym_preproc_region] = STATE(2248), - [sym_preproc_endregion] = STATE(2248), - [sym_preproc_line] = STATE(2248), - [sym_preproc_pragma] = STATE(2248), - [sym_preproc_nullable] = STATE(2248), - [sym_preproc_error] = STATE(2248), - [sym_preproc_warning] = STATE(2248), - [sym_preproc_define] = STATE(2248), - [sym_preproc_undef] = STATE(2248), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), + [2251] = { + [sym_preproc_region] = STATE(2251), + [sym_preproc_endregion] = STATE(2251), + [sym_preproc_line] = STATE(2251), + [sym_preproc_pragma] = STATE(2251), + [sym_preproc_nullable] = STATE(2251), + [sym_preproc_error] = STATE(2251), + [sym_preproc_warning] = STATE(2251), + [sym_preproc_define] = STATE(2251), + [sym_preproc_undef] = STATE(2251), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_RBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -406291,316 +406620,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2249] = { - [sym_preproc_region] = STATE(2249), - [sym_preproc_endregion] = STATE(2249), - [sym_preproc_line] = STATE(2249), - [sym_preproc_pragma] = STATE(2249), - [sym_preproc_nullable] = STATE(2249), - [sym_preproc_error] = STATE(2249), - [sym_preproc_warning] = STATE(2249), - [sym_preproc_define] = STATE(2249), - [sym_preproc_undef] = STATE(2249), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2250] = { - [sym_preproc_region] = STATE(2250), - [sym_preproc_endregion] = STATE(2250), - [sym_preproc_line] = STATE(2250), - [sym_preproc_pragma] = STATE(2250), - [sym_preproc_nullable] = STATE(2250), - [sym_preproc_error] = STATE(2250), - [sym_preproc_warning] = STATE(2250), - [sym_preproc_define] = STATE(2250), - [sym_preproc_undef] = STATE(2250), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2251] = { - [sym_type_argument_list] = STATE(2269), - [sym_preproc_region] = STATE(2251), - [sym_preproc_endregion] = STATE(2251), - [sym_preproc_line] = STATE(2251), - [sym_preproc_pragma] = STATE(2251), - [sym_preproc_nullable] = STATE(2251), - [sym_preproc_error] = STATE(2251), - [sym_preproc_warning] = STATE(2251), - [sym_preproc_define] = STATE(2251), - [sym_preproc_undef] = STATE(2251), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3875), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406611,10 +406647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [2252] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2252), [sym_preproc_endregion] = STATE(2252), [sym_preproc_line] = STATE(2252), @@ -406624,201 +406658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2252), [sym_preproc_define] = STATE(2252), [sym_preproc_undef] = STATE(2252), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3917), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2253] = { - [sym_type_argument_list] = STATE(2269), - [sym_preproc_region] = STATE(2253), - [sym_preproc_endregion] = STATE(2253), - [sym_preproc_line] = STATE(2253), - [sym_preproc_pragma] = STATE(2253), - [sym_preproc_nullable] = STATE(2253), - [sym_preproc_error] = STATE(2253), - [sym_preproc_warning] = STATE(2253), - [sym_preproc_define] = STATE(2253), - [sym_preproc_undef] = STATE(2253), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3875), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), - }, - [2254] = { - [sym_preproc_region] = STATE(2254), - [sym_preproc_endregion] = STATE(2254), - [sym_preproc_line] = STATE(2254), - [sym_preproc_pragma] = STATE(2254), - [sym_preproc_nullable] = STATE(2254), - [sym_preproc_error] = STATE(2254), - [sym_preproc_warning] = STATE(2254), - [sym_preproc_define] = STATE(2254), - [sym_preproc_undef] = STATE(2254), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_global] = ACTIONS(3461), @@ -406907,74 +406746,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2255] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2255), - [sym_preproc_endregion] = STATE(2255), - [sym_preproc_line] = STATE(2255), - [sym_preproc_pragma] = STATE(2255), - [sym_preproc_nullable] = STATE(2255), - [sym_preproc_error] = STATE(2255), - [sym_preproc_warning] = STATE(2255), - [sym_preproc_define] = STATE(2255), - [sym_preproc_undef] = STATE(2255), + [2253] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2253), + [sym_preproc_endregion] = STATE(2253), + [sym_preproc_line] = STATE(2253), + [sym_preproc_pragma] = STATE(2253), + [sym_preproc_nullable] = STATE(2253), + [sym_preproc_error] = STATE(2253), + [sym_preproc_warning] = STATE(2253), + [sym_preproc_define] = STATE(2253), + [sym_preproc_undef] = STATE(2253), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3901), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_RBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_RBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3901), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3905), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3911), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -406987,13 +406826,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), - [aux_sym_preproc_if_token3] = ACTIONS(3911), - [aux_sym_preproc_else_token1] = ACTIONS(3911), - [aux_sym_preproc_elif_token1] = ACTIONS(3911), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_if_token3] = ACTIONS(3901), + [aux_sym_preproc_else_token1] = ACTIONS(3901), + [aux_sym_preproc_elif_token1] = ACTIONS(3901), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407005,16 +406844,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2256] = { - [sym_preproc_region] = STATE(2256), - [sym_preproc_endregion] = STATE(2256), - [sym_preproc_line] = STATE(2256), - [sym_preproc_pragma] = STATE(2256), - [sym_preproc_nullable] = STATE(2256), - [sym_preproc_error] = STATE(2256), - [sym_preproc_warning] = STATE(2256), - [sym_preproc_define] = STATE(2256), - [sym_preproc_undef] = STATE(2256), + [2254] = { + [sym_preproc_region] = STATE(2254), + [sym_preproc_endregion] = STATE(2254), + [sym_preproc_line] = STATE(2254), + [sym_preproc_pragma] = STATE(2254), + [sym_preproc_nullable] = STATE(2254), + [sym_preproc_error] = STATE(2254), + [sym_preproc_warning] = STATE(2254), + [sym_preproc_define] = STATE(2254), + [sym_preproc_undef] = STATE(2254), [sym__identifier_token] = ACTIONS(3662), [anon_sym_alias] = ACTIONS(3662), [anon_sym_global] = ACTIONS(3662), @@ -407103,287 +406942,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2257] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2257), - [sym_preproc_endregion] = STATE(2257), - [sym_preproc_line] = STATE(2257), - [sym_preproc_pragma] = STATE(2257), - [sym_preproc_nullable] = STATE(2257), - [sym_preproc_error] = STATE(2257), - [sym_preproc_warning] = STATE(2257), - [sym_preproc_define] = STATE(2257), - [sym_preproc_undef] = STATE(2257), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3901), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_RBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), - [aux_sym_preproc_if_token3] = ACTIONS(3901), - [aux_sym_preproc_else_token1] = ACTIONS(3901), - [aux_sym_preproc_elif_token1] = ACTIONS(3901), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2258] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2258), - [sym_preproc_endregion] = STATE(2258), - [sym_preproc_line] = STATE(2258), - [sym_preproc_pragma] = STATE(2258), - [sym_preproc_nullable] = STATE(2258), - [sym_preproc_error] = STATE(2258), - [sym_preproc_warning] = STATE(2258), - [sym_preproc_define] = STATE(2258), - [sym_preproc_undef] = STATE(2258), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3901), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_RBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), - [aux_sym_preproc_if_token3] = ACTIONS(3901), - [aux_sym_preproc_else_token1] = ACTIONS(3901), - [aux_sym_preproc_elif_token1] = ACTIONS(3901), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [2255] = { + [sym_type_argument_list] = STATE(2273), + [sym_preproc_region] = STATE(2255), + [sym_preproc_endregion] = STATE(2255), + [sym_preproc_line] = STATE(2255), + [sym_preproc_pragma] = STATE(2255), + [sym_preproc_nullable] = STATE(2255), + [sym_preproc_error] = STATE(2255), + [sym_preproc_warning] = STATE(2255), + [sym_preproc_define] = STATE(2255), + [sym_preproc_undef] = STATE(2255), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3864), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), }, - [2259] = { - [sym_preproc_region] = STATE(2259), - [sym_preproc_endregion] = STATE(2259), - [sym_preproc_line] = STATE(2259), - [sym_preproc_pragma] = STATE(2259), - [sym_preproc_nullable] = STATE(2259), - [sym_preproc_error] = STATE(2259), - [sym_preproc_warning] = STATE(2259), - [sym_preproc_define] = STATE(2259), - [sym_preproc_undef] = STATE(2259), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [2256] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2256), + [sym_preproc_endregion] = STATE(2256), + [sym_preproc_line] = STATE(2256), + [sym_preproc_pragma] = STATE(2256), + [sym_preproc_nullable] = STATE(2256), + [sym_preproc_error] = STATE(2256), + [sym_preproc_warning] = STATE(2256), + [sym_preproc_define] = STATE(2256), + [sym_preproc_undef] = STATE(2256), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407394,33 +407137,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, - [2260] = { - [sym_preproc_region] = STATE(2260), - [sym_preproc_endregion] = STATE(2260), - [sym_preproc_line] = STATE(2260), - [sym_preproc_pragma] = STATE(2260), - [sym_preproc_nullable] = STATE(2260), - [sym_preproc_error] = STATE(2260), - [sym_preproc_warning] = STATE(2260), - [sym_preproc_define] = STATE(2260), - [sym_preproc_undef] = STATE(2260), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), + [2257] = { + [sym_preproc_region] = STATE(2257), + [sym_preproc_endregion] = STATE(2257), + [sym_preproc_line] = STATE(2257), + [sym_preproc_pragma] = STATE(2257), + [sym_preproc_nullable] = STATE(2257), + [sym_preproc_error] = STATE(2257), + [sym_preproc_warning] = STATE(2257), + [sym_preproc_define] = STATE(2257), + [sym_preproc_undef] = STATE(2257), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_file] = ACTIONS(3461), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), + [anon_sym_where] = ACTIONS(3461), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -407440,16 +407182,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), + [anon_sym_scoped] = ACTIONS(3461), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_break] = ACTIONS(3919), + [anon_sym_yield] = ACTIONS(3461), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), + [anon_sym_when] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -407465,22 +407206,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2258] = { + [sym_type_argument_list] = STATE(2273), + [sym_preproc_region] = STATE(2258), + [sym_preproc_endregion] = STATE(2258), + [sym_preproc_line] = STATE(2258), + [sym_preproc_pragma] = STATE(2258), + [sym_preproc_nullable] = STATE(2258), + [sym_preproc_error] = STATE(2258), + [sym_preproc_warning] = STATE(2258), + [sym_preproc_define] = STATE(2258), + [sym_preproc_undef] = STATE(2258), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3864), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), + }, + [2259] = { + [sym_preproc_region] = STATE(2259), + [sym_preproc_endregion] = STATE(2259), + [sym_preproc_line] = STATE(2259), + [sym_preproc_pragma] = STATE(2259), + [sym_preproc_nullable] = STATE(2259), + [sym_preproc_error] = STATE(2259), + [sym_preproc_warning] = STATE(2259), + [sym_preproc_define] = STATE(2259), + [sym_preproc_undef] = STATE(2259), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407491,14 +407430,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), + }, + [2260] = { + [sym_preproc_region] = STATE(2260), + [sym_preproc_endregion] = STATE(2260), + [sym_preproc_line] = STATE(2260), + [sym_preproc_pragma] = STATE(2260), + [sym_preproc_nullable] = STATE(2260), + [sym_preproc_error] = STATE(2260), + [sym_preproc_warning] = STATE(2260), + [sym_preproc_define] = STATE(2260), + [sym_preproc_undef] = STATE(2260), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3713), }, [2261] = { - [sym_property_pattern_clause] = STATE(2307), - [sym__variable_designation] = STATE(3362), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2261), [sym_preproc_endregion] = STATE(2261), [sym_preproc_line] = STATE(2261), @@ -407508,77 +407538,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2261), [sym_preproc_define] = STATE(2261), [sym_preproc_undef] = STATE(2261), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3921), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_if_token3] = ACTIONS(3921), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407589,6 +407623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3699), }, [2262] = { [sym_preproc_region] = STATE(2262), @@ -407600,50 +407635,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2262), [sym_preproc_define] = STATE(2262), [sym_preproc_undef] = STATE(2262), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3733), + [anon_sym_COMMA] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -407656,25 +407692,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407685,7 +407721,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3725), }, [2263] = { [sym_preproc_region] = STATE(2263), @@ -407697,82 +407732,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2263), [sym_preproc_define] = STATE(2263), [sym_preproc_undef] = STATE(2263), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3925), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407797,64 +407832,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -407865,10 +407900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407879,7 +407914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3699), + [sym_interpolation_close_brace] = ACTIONS(3703), }, [2265] = { [sym_preproc_region] = STATE(2265), @@ -407891,81 +407926,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2265), [sym_preproc_define] = STATE(2265), [sym_preproc_undef] = STATE(2265), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407976,7 +408012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3721), }, [2266] = { [sym_preproc_region] = STATE(2266), @@ -407991,62 +408026,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3736), - [anon_sym_GT] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3736), - [anon_sym_PLUS_PLUS] = ACTIONS(3733), - [anon_sym_DASH_DASH] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3736), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_CARET] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LT_LT] = ACTIONS(3736), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_GT_GT_GT] = ACTIONS(3736), - [anon_sym_EQ_EQ] = ACTIONS(3733), - [anon_sym_BANG_EQ] = ACTIONS(3733), - [anon_sym_GT_EQ] = ACTIONS(3733), - [anon_sym_LT_EQ] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3736), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3733), + [anon_sym_DOT_DOT] = ACTIONS(3709), [anon_sym_and] = ACTIONS(3697), [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3733), - [anon_sym_PIPE_PIPE] = ACTIONS(3733), - [anon_sym_QMARK_QMARK] = ACTIONS(3736), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), @@ -408059,10 +408095,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3736), - [anon_sym_is] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408073,7 +408109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3708), }, [2267] = { [sym_preproc_region] = STATE(2267), @@ -408085,162 +408120,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2267), [sym_preproc_define] = STATE(2267), [sym_preproc_undef] = STATE(2267), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3725), - }, - [2268] = { - [sym_preproc_region] = STATE(2268), - [sym_preproc_endregion] = STATE(2268), - [sym_preproc_line] = STATE(2268), - [sym_preproc_pragma] = STATE(2268), - [sym_preproc_nullable] = STATE(2268), - [sym_preproc_error] = STATE(2268), - [sym_preproc_warning] = STATE(2268), - [sym_preproc_define] = STATE(2268), - [sym_preproc_undef] = STATE(2268), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_RPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), @@ -408253,10 +408192,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2268] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2268), + [sym_preproc_endregion] = STATE(2268), + [sym_preproc_line] = STATE(2268), + [sym_preproc_pragma] = STATE(2268), + [sym_preproc_nullable] = STATE(2268), + [sym_preproc_error] = STATE(2268), + [sym_preproc_warning] = STATE(2268), + [sym_preproc_define] = STATE(2268), + [sym_preproc_undef] = STATE(2268), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408267,9 +408303,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3699), }, [2269] = { + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2269), [sym_preproc_endregion] = STATE(2269), [sym_preproc_line] = STATE(2269), @@ -408279,81 +408315,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2269), [sym_preproc_define] = STATE(2269), [sym_preproc_undef] = STATE(2269), - [sym__identifier_token] = ACTIONS(3670), - [anon_sym_alias] = ACTIONS(3670), - [anon_sym_global] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_file] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3670), - [anon_sym_unmanaged] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3670), - [anon_sym_var] = ACTIONS(3670), - [anon_sym_yield] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_when] = ACTIONS(3670), - [sym_discard] = ACTIONS(3670), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3670), - [anon_sym_or] = ACTIONS(3670), - [anon_sym_PLUS_EQ] = ACTIONS(3672), - [anon_sym_DASH_EQ] = ACTIONS(3672), - [anon_sym_STAR_EQ] = ACTIONS(3672), - [anon_sym_SLASH_EQ] = ACTIONS(3672), - [anon_sym_PERCENT_EQ] = ACTIONS(3672), - [anon_sym_AMP_EQ] = ACTIONS(3672), - [anon_sym_CARET_EQ] = ACTIONS(3672), - [anon_sym_PIPE_EQ] = ACTIONS(3672), - [anon_sym_LT_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3670), - [anon_sym_equals] = ACTIONS(3670), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3670), - [anon_sym_descending] = ACTIONS(3670), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3670), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_is] = ACTIONS(3670), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3670), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408364,7 +408400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3672), }, [2270] = { [sym_preproc_region] = STATE(2270), @@ -408376,6 +408411,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2270), [sym_preproc_define] = STATE(2270), [sym_preproc_undef] = STATE(2270), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), + }, + [2271] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2271), + [sym_preproc_endregion] = STATE(2271), + [sym_preproc_line] = STATE(2271), + [sym_preproc_pragma] = STATE(2271), + [sym_preproc_nullable] = STATE(2271), + [sym_preproc_error] = STATE(2271), + [sym_preproc_warning] = STATE(2271), + [sym_preproc_define] = STATE(2271), + [sym_preproc_undef] = STATE(2271), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2272] = { + [sym_preproc_region] = STATE(2272), + [sym_preproc_endregion] = STATE(2272), + [sym_preproc_line] = STATE(2272), + [sym_preproc_pragma] = STATE(2272), + [sym_preproc_nullable] = STATE(2272), + [sym_preproc_error] = STATE(2272), + [sym_preproc_warning] = STATE(2272), + [sym_preproc_define] = STATE(2272), + [sym_preproc_undef] = STATE(2272), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), + }, + [2273] = { + [sym_preproc_region] = STATE(2273), + [sym_preproc_endregion] = STATE(2273), + [sym_preproc_line] = STATE(2273), + [sym_preproc_pragma] = STATE(2273), + [sym_preproc_nullable] = STATE(2273), + [sym_preproc_error] = STATE(2273), + [sym_preproc_warning] = STATE(2273), + [sym_preproc_define] = STATE(2273), + [sym_preproc_undef] = STATE(2273), + [sym__identifier_token] = ACTIONS(3666), + [anon_sym_alias] = ACTIONS(3666), + [anon_sym_global] = ACTIONS(3666), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_file] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_where] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_notnull] = ACTIONS(3666), + [anon_sym_unmanaged] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3666), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3666), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_scoped] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_when] = ACTIONS(3666), + [sym_discard] = ACTIONS(3666), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3666), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_PLUS_EQ] = ACTIONS(3668), + [anon_sym_DASH_EQ] = ACTIONS(3668), + [anon_sym_STAR_EQ] = ACTIONS(3668), + [anon_sym_SLASH_EQ] = ACTIONS(3668), + [anon_sym_PERCENT_EQ] = ACTIONS(3668), + [anon_sym_AMP_EQ] = ACTIONS(3668), + [anon_sym_CARET_EQ] = ACTIONS(3668), + [anon_sym_PIPE_EQ] = ACTIONS(3668), + [anon_sym_LT_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_into] = ACTIONS(3666), + [anon_sym_join] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_equals] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_orderby] = ACTIONS(3666), + [anon_sym_ascending] = ACTIONS(3666), + [anon_sym_descending] = ACTIONS(3666), + [anon_sym_group] = ACTIONS(3666), + [anon_sym_by] = ACTIONS(3666), + [anon_sym_select] = ACTIONS(3666), + [anon_sym_as] = ACTIONS(3666), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3666), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3668), + }, + [2274] = { + [sym_preproc_region] = STATE(2274), + [sym_preproc_endregion] = STATE(2274), + [sym_preproc_line] = STATE(2274), + [sym_preproc_pragma] = STATE(2274), + [sym_preproc_nullable] = STATE(2274), + [sym_preproc_error] = STATE(2274), + [sym_preproc_warning] = STATE(2274), + [sym_preproc_define] = STATE(2274), + [sym_preproc_undef] = STATE(2274), [sym__identifier_token] = ACTIONS(3684), [anon_sym_alias] = ACTIONS(3684), [anon_sym_global] = ACTIONS(3684), @@ -408463,286 +408886,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3686), }, - [2271] = { - [sym_preproc_region] = STATE(2271), - [sym_preproc_endregion] = STATE(2271), - [sym_preproc_line] = STATE(2271), - [sym_preproc_pragma] = STATE(2271), - [sym_preproc_nullable] = STATE(2271), - [sym_preproc_error] = STATE(2271), - [sym_preproc_warning] = STATE(2271), - [sym_preproc_define] = STATE(2271), - [sym_preproc_undef] = STATE(2271), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2272] = { - [sym_preproc_region] = STATE(2272), - [sym_preproc_endregion] = STATE(2272), - [sym_preproc_line] = STATE(2272), - [sym_preproc_pragma] = STATE(2272), - [sym_preproc_nullable] = STATE(2272), - [sym_preproc_error] = STATE(2272), - [sym_preproc_warning] = STATE(2272), - [sym_preproc_define] = STATE(2272), - [sym_preproc_undef] = STATE(2272), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2273] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2273), - [sym_preproc_endregion] = STATE(2273), - [sym_preproc_line] = STATE(2273), - [sym_preproc_pragma] = STATE(2273), - [sym_preproc_nullable] = STATE(2273), - [sym_preproc_error] = STATE(2273), - [sym_preproc_warning] = STATE(2273), - [sym_preproc_define] = STATE(2273), - [sym_preproc_undef] = STATE(2273), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [2275] = { + [sym_preproc_region] = STATE(2275), + [sym_preproc_endregion] = STATE(2275), + [sym_preproc_line] = STATE(2275), + [sym_preproc_pragma] = STATE(2275), + [sym_preproc_nullable] = STATE(2275), + [sym_preproc_error] = STATE(2275), + [sym_preproc_warning] = STATE(2275), + [sym_preproc_define] = STATE(2275), + [sym_preproc_undef] = STATE(2275), + [sym__identifier_token] = ACTIONS(3670), + [anon_sym_alias] = ACTIONS(3670), + [anon_sym_global] = ACTIONS(3670), + [anon_sym_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_file] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_where] = ACTIONS(3670), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_notnull] = ACTIONS(3670), + [anon_sym_unmanaged] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_scoped] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_when] = ACTIONS(3670), + [sym_discard] = ACTIONS(3670), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3670), + [anon_sym_PLUS_EQ] = ACTIONS(3672), + [anon_sym_DASH_EQ] = ACTIONS(3672), + [anon_sym_STAR_EQ] = ACTIONS(3672), + [anon_sym_SLASH_EQ] = ACTIONS(3672), + [anon_sym_PERCENT_EQ] = ACTIONS(3672), + [anon_sym_AMP_EQ] = ACTIONS(3672), + [anon_sym_CARET_EQ] = ACTIONS(3672), + [anon_sym_PIPE_EQ] = ACTIONS(3672), + [anon_sym_LT_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_into] = ACTIONS(3670), + [anon_sym_join] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_equals] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_orderby] = ACTIONS(3670), + [anon_sym_ascending] = ACTIONS(3670), + [anon_sym_descending] = ACTIONS(3670), + [anon_sym_group] = ACTIONS(3670), + [anon_sym_by] = ACTIONS(3670), + [anon_sym_select] = ACTIONS(3670), + [anon_sym_as] = ACTIONS(3670), + [anon_sym_is] = ACTIONS(3670), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408753,93 +408981,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3672), }, - [2274] = { - [sym_preproc_region] = STATE(2274), - [sym_preproc_endregion] = STATE(2274), - [sym_preproc_line] = STATE(2274), - [sym_preproc_pragma] = STATE(2274), - [sym_preproc_nullable] = STATE(2274), - [sym_preproc_error] = STATE(2274), - [sym_preproc_warning] = STATE(2274), - [sym_preproc_define] = STATE(2274), - [sym_preproc_undef] = STATE(2274), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [2276] = { + [sym_preproc_region] = STATE(2276), + [sym_preproc_endregion] = STATE(2276), + [sym_preproc_line] = STATE(2276), + [sym_preproc_pragma] = STATE(2276), + [sym_preproc_nullable] = STATE(2276), + [sym_preproc_error] = STATE(2276), + [sym_preproc_warning] = STATE(2276), + [sym_preproc_define] = STATE(2276), + [sym_preproc_undef] = STATE(2276), + [sym__identifier_token] = ACTIONS(3674), + [anon_sym_alias] = ACTIONS(3674), + [anon_sym_global] = ACTIONS(3674), + [anon_sym_EQ] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_file] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_where] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_notnull] = ACTIONS(3674), + [anon_sym_unmanaged] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3674), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3674), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_scoped] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_when] = ACTIONS(3674), + [sym_discard] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3674), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_PLUS_EQ] = ACTIONS(3676), + [anon_sym_DASH_EQ] = ACTIONS(3676), + [anon_sym_STAR_EQ] = ACTIONS(3676), + [anon_sym_SLASH_EQ] = ACTIONS(3676), + [anon_sym_PERCENT_EQ] = ACTIONS(3676), + [anon_sym_AMP_EQ] = ACTIONS(3676), + [anon_sym_CARET_EQ] = ACTIONS(3676), + [anon_sym_PIPE_EQ] = ACTIONS(3676), + [anon_sym_LT_LT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_into] = ACTIONS(3674), + [anon_sym_join] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_equals] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_orderby] = ACTIONS(3674), + [anon_sym_ascending] = ACTIONS(3674), + [anon_sym_descending] = ACTIONS(3674), + [anon_sym_group] = ACTIONS(3674), + [anon_sym_by] = ACTIONS(3674), + [anon_sym_select] = ACTIONS(3674), + [anon_sym_as] = ACTIONS(3674), + [anon_sym_is] = ACTIONS(3674), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408850,26 +409078,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3676), }, - [2275] = { - [sym_preproc_region] = STATE(2275), - [sym_preproc_endregion] = STATE(2275), - [sym_preproc_line] = STATE(2275), - [sym_preproc_pragma] = STATE(2275), - [sym_preproc_nullable] = STATE(2275), - [sym_preproc_error] = STATE(2275), - [sym_preproc_warning] = STATE(2275), - [sym_preproc_define] = STATE(2275), - [sym_preproc_undef] = STATE(2275), + [2277] = { + [sym_preproc_region] = STATE(2277), + [sym_preproc_endregion] = STATE(2277), + [sym_preproc_line] = STATE(2277), + [sym_preproc_pragma] = STATE(2277), + [sym_preproc_nullable] = STATE(2277), + [sym_preproc_error] = STATE(2277), + [sym_preproc_warning] = STATE(2277), + [sym_preproc_define] = STATE(2277), + [sym_preproc_undef] = STATE(2277), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_global] = ACTIONS(3461), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3923), + [anon_sym_RBRACE] = ACTIONS(3459), [anon_sym_file] = ACTIONS(3461), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -408897,14 +409127,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3461), + [anon_sym_break] = ACTIONS(3925), [anon_sym_yield] = ACTIONS(3461), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3461), - [sym_discard] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -408946,94 +409176,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), }, - [2276] = { - [sym_preproc_region] = STATE(2276), - [sym_preproc_endregion] = STATE(2276), - [sym_preproc_line] = STATE(2276), - [sym_preproc_pragma] = STATE(2276), - [sym_preproc_nullable] = STATE(2276), - [sym_preproc_error] = STATE(2276), - [sym_preproc_warning] = STATE(2276), - [sym_preproc_define] = STATE(2276), - [sym_preproc_undef] = STATE(2276), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [2278] = { + [sym_property_pattern_clause] = STATE(2324), + [sym__variable_designation] = STATE(3286), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2278), + [sym_preproc_endregion] = STATE(2278), + [sym_preproc_line] = STATE(2278), + [sym_preproc_pragma] = STATE(2278), + [sym_preproc_nullable] = STATE(2278), + [sym_preproc_error] = STATE(2278), + [sym_preproc_warning] = STATE(2278), + [sym_preproc_define] = STATE(2278), + [sym_preproc_undef] = STATE(2278), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3927), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_RBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_if_token3] = ACTIONS(3927), + [aux_sym_preproc_else_token1] = ACTIONS(3927), + [aux_sym_preproc_elif_token1] = ACTIONS(3927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409045,92 +409274,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2277] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2277), - [sym_preproc_endregion] = STATE(2277), - [sym_preproc_line] = STATE(2277), - [sym_preproc_pragma] = STATE(2277), - [sym_preproc_nullable] = STATE(2277), - [sym_preproc_error] = STATE(2277), - [sym_preproc_warning] = STATE(2277), - [sym_preproc_define] = STATE(2277), - [sym_preproc_undef] = STATE(2277), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(3695), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [2279] = { + [sym_property_pattern_clause] = STATE(2325), + [sym__variable_designation] = STATE(3391), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2279), + [sym_preproc_endregion] = STATE(2279), + [sym_preproc_line] = STATE(2279), + [sym_preproc_pragma] = STATE(2279), + [sym_preproc_nullable] = STATE(2279), + [sym_preproc_error] = STATE(2279), + [sym_preproc_warning] = STATE(2279), + [sym_preproc_define] = STATE(2279), + [sym_preproc_undef] = STATE(2279), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_in] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3931), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_if_token3] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409142,26 +409371,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2278] = { - [sym_preproc_region] = STATE(2278), - [sym_preproc_endregion] = STATE(2278), - [sym_preproc_line] = STATE(2278), - [sym_preproc_pragma] = STATE(2278), - [sym_preproc_nullable] = STATE(2278), - [sym_preproc_error] = STATE(2278), - [sym_preproc_warning] = STATE(2278), - [sym_preproc_define] = STATE(2278), - [sym_preproc_undef] = STATE(2278), + [2280] = { + [sym_preproc_region] = STATE(2280), + [sym_preproc_endregion] = STATE(2280), + [sym_preproc_line] = STATE(2280), + [sym_preproc_pragma] = STATE(2280), + [sym_preproc_nullable] = STATE(2280), + [sym_preproc_error] = STATE(2280), + [sym_preproc_warning] = STATE(2280), + [sym_preproc_define] = STATE(2280), + [sym_preproc_undef] = STATE(2280), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3713), + }, + [2281] = { + [sym_preproc_region] = STATE(2281), + [sym_preproc_endregion] = STATE(2281), + [sym_preproc_line] = STATE(2281), + [sym_preproc_pragma] = STATE(2281), + [sym_preproc_nullable] = STATE(2281), + [sym_preproc_error] = STATE(2281), + [sym_preproc_warning] = STATE(2281), + [sym_preproc_define] = STATE(2281), + [sym_preproc_undef] = STATE(2281), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_global] = ACTIONS(3461), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COLON] = ACTIONS(3459), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3929), - [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), [anon_sym_file] = ACTIONS(3461), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -409189,14 +409514,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3931), [anon_sym_yield] = ACTIONS(3461), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3461), + [sym_discard] = ACTIONS(3461), [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -409238,17 +409563,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), }, - [2279] = { - [sym_preproc_region] = STATE(2279), - [sym_preproc_endregion] = STATE(2279), - [sym_preproc_line] = STATE(2279), - [sym_preproc_pragma] = STATE(2279), - [sym_preproc_nullable] = STATE(2279), - [sym_preproc_error] = STATE(2279), - [sym_preproc_warning] = STATE(2279), - [sym_preproc_define] = STATE(2279), - [sym_preproc_undef] = STATE(2279), + [2282] = { + [sym_preproc_region] = STATE(2282), + [sym_preproc_endregion] = STATE(2282), + [sym_preproc_line] = STATE(2282), + [sym_preproc_pragma] = STATE(2282), + [sym_preproc_nullable] = STATE(2282), + [sym_preproc_error] = STATE(2282), + [sym_preproc_warning] = STATE(2282), + [sym_preproc_define] = STATE(2282), + [sym_preproc_undef] = STATE(2282), [sym__identifier_token] = ACTIONS(3662), [anon_sym_alias] = ACTIONS(3662), [anon_sym_global] = ACTIONS(3662), @@ -409336,297 +409662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3664), }, - [2280] = { - [sym_preproc_region] = STATE(2280), - [sym_preproc_endregion] = STATE(2280), - [sym_preproc_line] = STATE(2280), - [sym_preproc_pragma] = STATE(2280), - [sym_preproc_nullable] = STATE(2280), - [sym_preproc_error] = STATE(2280), - [sym_preproc_warning] = STATE(2280), - [sym_preproc_define] = STATE(2280), - [sym_preproc_undef] = STATE(2280), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2281] = { - [sym_preproc_region] = STATE(2281), - [sym_preproc_endregion] = STATE(2281), - [sym_preproc_line] = STATE(2281), - [sym_preproc_pragma] = STATE(2281), - [sym_preproc_nullable] = STATE(2281), - [sym_preproc_error] = STATE(2281), - [sym_preproc_warning] = STATE(2281), - [sym_preproc_define] = STATE(2281), - [sym_preproc_undef] = STATE(2281), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_RPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2282] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2282), - [sym_preproc_endregion] = STATE(2282), - [sym_preproc_line] = STATE(2282), - [sym_preproc_pragma] = STATE(2282), - [sym_preproc_nullable] = STATE(2282), - [sym_preproc_error] = STATE(2282), - [sym_preproc_warning] = STATE(2282), - [sym_preproc_define] = STATE(2282), - [sym_preproc_undef] = STATE(2282), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2283] = { [sym_preproc_region] = STATE(2283), [sym_preproc_endregion] = STATE(2283), @@ -409637,81 +409672,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2283), [sym_preproc_define] = STATE(2283), [sym_preproc_undef] = STATE(2283), - [sym__identifier_token] = ACTIONS(3666), - [anon_sym_alias] = ACTIONS(3666), - [anon_sym_global] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_file] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_where] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_notnull] = ACTIONS(3666), - [anon_sym_unmanaged] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3666), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3666), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_scoped] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_when] = ACTIONS(3666), - [sym_discard] = ACTIONS(3666), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3666), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_PLUS_EQ] = ACTIONS(3668), - [anon_sym_DASH_EQ] = ACTIONS(3668), - [anon_sym_STAR_EQ] = ACTIONS(3668), - [anon_sym_SLASH_EQ] = ACTIONS(3668), - [anon_sym_PERCENT_EQ] = ACTIONS(3668), - [anon_sym_AMP_EQ] = ACTIONS(3668), - [anon_sym_CARET_EQ] = ACTIONS(3668), - [anon_sym_PIPE_EQ] = ACTIONS(3668), - [anon_sym_LT_LT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_into] = ACTIONS(3666), - [anon_sym_join] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_equals] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_orderby] = ACTIONS(3666), - [anon_sym_ascending] = ACTIONS(3666), - [anon_sym_descending] = ACTIONS(3666), - [anon_sym_group] = ACTIONS(3666), - [anon_sym_by] = ACTIONS(3666), - [anon_sym_select] = ACTIONS(3666), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_is] = ACTIONS(3666), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3666), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409722,14 +409758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3668), }, [2284] = { - [sym_property_pattern_clause] = STATE(2325), - [sym__variable_designation] = STATE(3357), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2284), [sym_preproc_endregion] = STATE(2284), [sym_preproc_line] = STATE(2284), @@ -409739,77 +409769,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2284), [sym_preproc_define] = STATE(2284), [sym_preproc_undef] = STATE(2284), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_in] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_if_token3] = ACTIONS(3933), - [aux_sym_preproc_else_token1] = ACTIONS(3933), - [aux_sym_preproc_elif_token1] = ACTIONS(3933), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3733), + [anon_sym_DASH_DASH] = ACTIONS(3733), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_GT_GT_GT] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3733), + [anon_sym_BANG_EQ] = ACTIONS(3733), + [anon_sym_GT_EQ] = ACTIONS(3733), + [anon_sym_LT_EQ] = ACTIONS(3733), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3736), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3733), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3733), + [anon_sym_PIPE_PIPE] = ACTIONS(3733), + [anon_sym_QMARK_QMARK] = ACTIONS(3736), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3736), + [anon_sym_is] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3736), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409820,6 +409854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3722), }, [2285] = { [sym_preproc_region] = STATE(2285), @@ -409831,81 +409866,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2285), [sym_preproc_define] = STATE(2285), [sym_preproc_undef] = STATE(2285), - [sym__identifier_token] = ACTIONS(3674), - [anon_sym_alias] = ACTIONS(3674), - [anon_sym_global] = ACTIONS(3674), - [anon_sym_EQ] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_file] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_notnull] = ACTIONS(3674), - [anon_sym_unmanaged] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3674), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3674), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_scoped] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_when] = ACTIONS(3674), - [sym_discard] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3674), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_PLUS_EQ] = ACTIONS(3676), - [anon_sym_DASH_EQ] = ACTIONS(3676), - [anon_sym_STAR_EQ] = ACTIONS(3676), - [anon_sym_SLASH_EQ] = ACTIONS(3676), - [anon_sym_PERCENT_EQ] = ACTIONS(3676), - [anon_sym_AMP_EQ] = ACTIONS(3676), - [anon_sym_CARET_EQ] = ACTIONS(3676), - [anon_sym_PIPE_EQ] = ACTIONS(3676), - [anon_sym_LT_LT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_into] = ACTIONS(3674), - [anon_sym_join] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_equals] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_orderby] = ACTIONS(3674), - [anon_sym_ascending] = ACTIONS(3674), - [anon_sym_descending] = ACTIONS(3674), - [anon_sym_group] = ACTIONS(3674), - [anon_sym_by] = ACTIONS(3674), - [anon_sym_select] = ACTIONS(3674), - [anon_sym_as] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3674), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3674), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409916,7 +409951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3676), + [sym_interpolation_close_brace] = ACTIONS(3703), }, [2286] = { [sym_preproc_region] = STATE(2286), @@ -409928,81 +409963,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2286), [sym_preproc_define] = STATE(2286), [sym_preproc_undef] = STATE(2286), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COMMA] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410015,6 +410050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2287] = { + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2287), [sym_preproc_endregion] = STATE(2287), [sym_preproc_line] = STATE(2287), @@ -410024,81 +410060,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2287), [sym_preproc_define] = STATE(2287), [sym_preproc_undef] = STATE(2287), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3728), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410111,11 +410146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2288] = { - [sym_property_pattern_clause] = STATE(2369), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2288), [sym_preproc_endregion] = STATE(2288), [sym_preproc_line] = STATE(2288), @@ -410125,158 +410155,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2288), [sym_preproc_define] = STATE(2288), [sym_preproc_undef] = STATE(2288), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3921), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_if_token3] = ACTIONS(3921), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2289] = { - [sym_preproc_region] = STATE(2289), - [sym_preproc_endregion] = STATE(2289), - [sym_preproc_line] = STATE(2289), - [sym_preproc_pragma] = STATE(2289), - [sym_preproc_nullable] = STATE(2289), - [sym_preproc_error] = STATE(2289), - [sym_preproc_warning] = STATE(2289), - [sym_preproc_define] = STATE(2289), - [sym_preproc_undef] = STATE(2289), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3703), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3706), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -410287,10 +410226,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2289] = { + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_modifier] = STATE(3740), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5968), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(3637), + [sym_preproc_region] = STATE(2289), + [sym_preproc_endregion] = STATE(2289), + [sym_preproc_line] = STATE(2289), + [sym_preproc_pragma] = STATE(2289), + [sym_preproc_nullable] = STATE(2289), + [sym_preproc_error] = STATE(2289), + [sym_preproc_warning] = STATE(2289), + [sym_preproc_define] = STATE(2289), + [sym_preproc_undef] = STATE(2289), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3203), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2581), + [aux_sym__lambda_expression_init_repeat1] = STATE(3463), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(653), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3941), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(3943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410303,6 +410338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2290] = { + [sym__name] = STATE(2643), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2576), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2290), [sym_preproc_endregion] = STATE(2290), [sym_preproc_line] = STATE(2290), @@ -410312,81 +410356,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2290), [sym_preproc_define] = STATE(2290), [sym_preproc_undef] = STATE(2290), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3714), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3593), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(3596), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_equals] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(3596), + [anon_sym_select] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410399,26 +410434,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2291] = { - [sym_modifier] = STATE(3164), - [sym_variable_declaration] = STATE(7458), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5471), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5766), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3166), + [sym_variable_declaration] = STATE(7628), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5372), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5772), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2291), [sym_preproc_endregion] = STATE(2291), [sym_preproc_line] = STATE(2291), @@ -410428,7 +410463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2291), [sym_preproc_define] = STATE(2291), [sym_preproc_undef] = STATE(2291), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(2997), @@ -410439,7 +410474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_event] = ACTIONS(3749), [anon_sym_class] = ACTIONS(3751), [anon_sym_ref] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2797), [anon_sym_enum] = ACTIONS(3755), [anon_sym_interface] = ACTIONS(3757), [anon_sym_delegate] = ACTIONS(3759), @@ -410481,104 +410516,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ascending] = ACTIONS(2997), [anon_sym_descending] = ACTIONS(2997), [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2292] = { - [sym_preproc_region] = STATE(2292), - [sym_preproc_endregion] = STATE(2292), - [sym_preproc_line] = STATE(2292), - [sym_preproc_pragma] = STATE(2292), - [sym_preproc_nullable] = STATE(2292), - [sym_preproc_error] = STATE(2292), - [sym_preproc_warning] = STATE(2292), - [sym_preproc_define] = STATE(2292), - [sym_preproc_undef] = STATE(2292), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3714), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2292] = { + [sym_type_argument_list] = STATE(2184), + [sym_preproc_region] = STATE(2292), + [sym_preproc_endregion] = STATE(2292), + [sym_preproc_line] = STATE(2292), + [sym_preproc_pragma] = STATE(2292), + [sym_preproc_nullable] = STATE(2292), + [sym_preproc_error] = STATE(2292), + [sym_preproc_warning] = STATE(2292), + [sym_preproc_define] = STATE(2292), + [sym_preproc_undef] = STATE(2292), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3834), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_COMMA] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3839), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410591,6 +410626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2293] = { + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2293), [sym_preproc_endregion] = STATE(2293), [sym_preproc_line] = STATE(2293), @@ -410600,81 +410636,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2293), [sym_preproc_define] = STATE(2293), [sym_preproc_undef] = STATE(2293), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3728), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410687,30 +410722,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2294] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_modifier] = STATE(3870), - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5976), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(3683), [sym_preproc_region] = STATE(2294), [sym_preproc_endregion] = STATE(2294), [sym_preproc_line] = STATE(2294), @@ -410720,57 +410731,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2294), [sym_preproc_define] = STATE(2294), [sym_preproc_undef] = STATE(2294), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2576), - [aux_sym__lambda_expression_init_repeat1] = STATE(3528), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(653), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(3941), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3703), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3706), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410783,9 +410818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2295] = { - [sym_parameter_list] = STATE(7560), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(7348), + [sym_parameter_list] = STATE(7385), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(7710), [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2295), [sym_preproc_endregion] = STATE(2295), @@ -410796,77 +410831,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2295), [sym_preproc_define] = STATE(2295), [sym_preproc_undef] = STATE(2295), - [sym__identifier_token] = ACTIONS(3943), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3943), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3943), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [sym__identifier_token] = ACTIONS(3947), + [anon_sym_alias] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_file] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3947), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_notnull] = ACTIONS(3947), + [anon_sym_unmanaged] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_scoped] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_switch] = ACTIONS(3947), + [anon_sym_when] = ACTIONS(3947), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_into] = ACTIONS(3947), + [anon_sym_join] = ACTIONS(3947), + [anon_sym_on] = ACTIONS(3947), + [anon_sym_equals] = ACTIONS(3947), + [anon_sym_let] = ACTIONS(3947), + [anon_sym_orderby] = ACTIONS(3947), + [anon_sym_ascending] = ACTIONS(3947), + [anon_sym_descending] = ACTIONS(3947), + [anon_sym_group] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3947), + [anon_sym_select] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3947), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3947), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410879,6 +410914,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2296] = { + [sym_property_pattern_clause] = STATE(2365), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2296), [sym_preproc_endregion] = STATE(2296), [sym_preproc_line] = STATE(2296), @@ -410888,81 +410928,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2296), [sym_preproc_define] = STATE(2296), [sym_preproc_undef] = STATE(2296), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3728), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3927), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_RBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_if_token3] = ACTIONS(3927), + [aux_sym_preproc_else_token1] = ACTIONS(3927), + [aux_sym_preproc_elif_token1] = ACTIONS(3927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410975,7 +411010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2297] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2297), [sym_preproc_endregion] = STATE(2297), [sym_preproc_line] = STATE(2297), @@ -410985,241 +411019,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2297), [sym_preproc_define] = STATE(2297), [sym_preproc_undef] = STATE(2297), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2298] = { - [sym__name] = STATE(2625), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2588), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2298), - [sym_preproc_endregion] = STATE(2298), - [sym_preproc_line] = STATE(2298), - [sym_preproc_pragma] = STATE(2298), - [sym_preproc_nullable] = STATE(2298), - [sym_preproc_error] = STATE(2298), - [sym_preproc_warning] = STATE(2298), - [sym_preproc_define] = STATE(2298), - [sym_preproc_undef] = STATE(2298), - [sym__identifier_token] = ACTIONS(3604), - [anon_sym_alias] = ACTIONS(3607), - [anon_sym_global] = ACTIONS(3607), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), + [anon_sym_where] = ACTIONS(3633), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3607), - [anon_sym_unmanaged] = ACTIONS(3607), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), [anon_sym_PLUS] = ACTIONS(3461), [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3461), [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), [anon_sym_PIPE] = ACTIONS(3461), [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_LT_LT] = ACTIONS(3461), [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_GT_GT_GT] = ACTIONS(3461), [anon_sym_EQ_EQ] = ACTIONS(3459), [anon_sym_BANG_EQ] = ACTIONS(3459), [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3607), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3607), - [anon_sym_yield] = ACTIONS(3607), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3607), - [sym_discard] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(3607), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(3607), - [anon_sym_equals] = ACTIONS(3607), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(3607), - [anon_sym_select] = ACTIONS(3607), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2299] = { - [sym_preproc_region] = STATE(2299), - [sym_preproc_endregion] = STATE(2299), - [sym_preproc_line] = STATE(2299), - [sym_preproc_pragma] = STATE(2299), - [sym_preproc_nullable] = STATE(2299), - [sym_preproc_error] = STATE(2299), - [sym_preproc_warning] = STATE(2299), - [sym_preproc_define] = STATE(2299), - [sym_preproc_undef] = STATE(2299), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3631), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3631), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), [anon_sym_PLUS_EQ] = ACTIONS(3459), [anon_sym_DASH_EQ] = ACTIONS(3459), [anon_sym_STAR_EQ] = ACTIONS(3459), @@ -411232,25 +411075,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3459), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3631), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411262,37 +411105,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2300] = { - [sym_modifier] = STATE(3164), - [sym_variable_declaration] = STATE(7757), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5407), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5776), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(2300), - [sym_preproc_endregion] = STATE(2300), - [sym_preproc_line] = STATE(2300), - [sym_preproc_pragma] = STATE(2300), - [sym_preproc_nullable] = STATE(2300), - [sym_preproc_error] = STATE(2300), - [sym_preproc_warning] = STATE(2300), - [sym_preproc_define] = STATE(2300), - [sym_preproc_undef] = STATE(2300), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), + [2298] = { + [sym_modifier] = STATE(3166), + [sym_variable_declaration] = STATE(7799), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5380), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5769), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(2298), + [sym_preproc_endregion] = STATE(2298), + [sym_preproc_line] = STATE(2298), + [sym_preproc_pragma] = STATE(2298), + [sym_preproc_nullable] = STATE(2298), + [sym_preproc_error] = STATE(2298), + [sym_preproc_warning] = STATE(2298), + [sym_preproc_define] = STATE(2298), + [sym_preproc_undef] = STATE(2298), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(2997), @@ -411300,14 +411143,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_event] = ACTIONS(3949), - [anon_sym_class] = ACTIONS(3951), - [anon_sym_ref] = ACTIONS(3953), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_enum] = ACTIONS(3957), - [anon_sym_interface] = ACTIONS(3959), - [anon_sym_delegate] = ACTIONS(3961), - [anon_sym_record] = ACTIONS(3963), + [anon_sym_event] = ACTIONS(3951), + [anon_sym_class] = ACTIONS(3953), + [anon_sym_ref] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_interface] = ACTIONS(3961), + [anon_sym_delegate] = ACTIONS(3963), + [anon_sym_record] = ACTIONS(3965), [anon_sym_abstract] = ACTIONS(65), [anon_sym_async] = ACTIONS(65), [anon_sym_const] = ACTIONS(65), @@ -411328,8 +411171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_implicit] = ACTIONS(3965), - [anon_sym_explicit] = ACTIONS(3965), + [anon_sym_implicit] = ACTIONS(3967), + [anon_sym_explicit] = ACTIONS(3967), [anon_sym_scoped] = ACTIONS(3021), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), @@ -411358,8 +411201,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2299] = { + [sym_preproc_region] = STATE(2299), + [sym_preproc_endregion] = STATE(2299), + [sym_preproc_line] = STATE(2299), + [sym_preproc_pragma] = STATE(2299), + [sym_preproc_nullable] = STATE(2299), + [sym_preproc_error] = STATE(2299), + [sym_preproc_warning] = STATE(2299), + [sym_preproc_define] = STATE(2299), + [sym_preproc_undef] = STATE(2299), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3713), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3728), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2300] = { + [sym_preproc_region] = STATE(2300), + [sym_preproc_endregion] = STATE(2300), + [sym_preproc_line] = STATE(2300), + [sym_preproc_pragma] = STATE(2300), + [sym_preproc_nullable] = STATE(2300), + [sym_preproc_error] = STATE(2300), + [sym_preproc_warning] = STATE(2300), + [sym_preproc_define] = STATE(2300), + [sym_preproc_undef] = STATE(2300), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3713), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3728), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2301] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2301), [sym_preproc_endregion] = STATE(2301), [sym_preproc_line] = STATE(2301), @@ -411369,80 +411403,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2301), [sym_preproc_define] = STATE(2301), [sym_preproc_undef] = STATE(2301), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3806), - [anon_sym_COMMA] = ACTIONS(3872), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3633), + [anon_sym_CARET] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3633), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3633), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411455,6 +411490,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2302] = { + [sym_property_pattern_clause] = STATE(2343), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2302), [sym_preproc_endregion] = STATE(2302), [sym_preproc_line] = STATE(2302), @@ -411464,65 +411504,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2302), [sym_preproc_define] = STATE(2302), [sym_preproc_undef] = STATE(2302), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3931), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_if_token3] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2303] = { + [sym_preproc_region] = STATE(2303), + [sym_preproc_endregion] = STATE(2303), + [sym_preproc_line] = STATE(2303), + [sym_preproc_pragma] = STATE(2303), + [sym_preproc_nullable] = STATE(2303), + [sym_preproc_error] = STATE(2303), + [sym_preproc_warning] = STATE(2303), + [sym_preproc_define] = STATE(2303), + [sym_preproc_undef] = STATE(2303), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_EQ_GT] = ACTIONS(3703), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3706), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), @@ -411535,106 +411666,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2303] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2303), - [sym_preproc_endregion] = STATE(2303), - [sym_preproc_line] = STATE(2303), - [sym_preproc_pragma] = STATE(2303), - [sym_preproc_nullable] = STATE(2303), - [sym_preproc_error] = STATE(2303), - [sym_preproc_warning] = STATE(2303), - [sym_preproc_define] = STATE(2303), - [sym_preproc_undef] = STATE(2303), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3967), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411647,11 +411682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2304] = { - [sym_property_pattern_clause] = STATE(2332), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2304), [sym_preproc_endregion] = STATE(2304), [sym_preproc_line] = STATE(2304), @@ -411661,76 +411691,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2304), [sym_preproc_define] = STATE(2304), [sym_preproc_undef] = STATE(2304), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_if_token3] = ACTIONS(3933), - [aux_sym_preproc_else_token1] = ACTIONS(3933), - [aux_sym_preproc_elif_token1] = ACTIONS(3933), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3713), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3728), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411752,79 +411787,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2305), [sym_preproc_define] = STATE(2305), [sym_preproc_undef] = STATE(2305), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3713), [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3728), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411835,7 +411871,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3717), }, [2306] = { [sym_preproc_region] = STATE(2306), @@ -411847,79 +411882,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2306), [sym_preproc_define] = STATE(2306), [sym_preproc_undef] = STATE(2306), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411930,13 +411966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3731), }, [2307] = { - [sym__variable_designation] = STATE(3370), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2307), [sym_preproc_endregion] = STATE(2307), [sym_preproc_line] = STATE(2307), @@ -411946,76 +411978,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2307), [sym_preproc_define] = STATE(2307), [sym_preproc_undef] = STATE(2307), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3969), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_RBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_RPAREN] = ACTIONS(3969), - [anon_sym_RBRACE] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3969), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), - [aux_sym_preproc_if_token3] = ACTIONS(3969), - [aux_sym_preproc_else_token1] = ACTIONS(3969), - [aux_sym_preproc_elif_token1] = ACTIONS(3969), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412028,10 +412063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2308] = { - [sym__variable_designation] = STATE(3359), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2308), [sym_preproc_endregion] = STATE(2308), [sym_preproc_line] = STATE(2308), @@ -412041,76 +412072,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2308), [sym_preproc_define] = STATE(2308), [sym_preproc_undef] = STATE(2308), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_in] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3706), + [anon_sym_descending] = ACTIONS(3706), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412139,7 +412174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3979), + [anon_sym_return] = ACTIONS(3971), [anon_sym_file] = ACTIONS(3461), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -412170,7 +412205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3973), [anon_sym_yield] = ACTIONS(3461), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3461), @@ -412218,6 +412253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2310] = { + [sym__variable_designation] = STATE(3376), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2310), [sym_preproc_endregion] = STATE(2310), [sym_preproc_line] = STATE(2310), @@ -412227,156 +412266,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2310), [sym_preproc_define] = STATE(2310), [sym_preproc_undef] = STATE(2310), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3714), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3714), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3714), - [anon_sym_orderby] = ACTIONS(3714), - [anon_sym_ascending] = ACTIONS(3714), - [anon_sym_descending] = ACTIONS(3714), - [anon_sym_group] = ACTIONS(3714), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2311] = { - [sym__variable_designation] = STATE(3373), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2311), - [sym_preproc_endregion] = STATE(2311), - [sym_preproc_line] = STATE(2311), - [sym_preproc_pragma] = STATE(2311), - [sym_preproc_nullable] = STATE(2311), - [sym_preproc_error] = STATE(2311), - [sym_preproc_warning] = STATE(2311), - [sym_preproc_define] = STATE(2311), - [sym_preproc_undef] = STATE(2311), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3975), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_COLON] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_RBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3975), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_RBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3975), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), - [anon_sym_in] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_in] = ACTIONS(3979), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3985), + [anon_sym_QMARK] = ACTIONS(3979), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3983), + [anon_sym_EQ_GT] = ACTIONS(3975), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3979), [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -412389,13 +412329,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), - [aux_sym_preproc_if_token3] = ACTIONS(3983), - [aux_sym_preproc_else_token1] = ACTIONS(3983), - [aux_sym_preproc_elif_token1] = ACTIONS(3983), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), + [aux_sym_preproc_if_token3] = ACTIONS(3975), + [aux_sym_preproc_else_token1] = ACTIONS(3975), + [aux_sym_preproc_elif_token1] = ACTIONS(3975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412407,265 +412347,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2312] = { - [sym__variable_designation] = STATE(3363), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2312), - [sym_preproc_endregion] = STATE(2312), - [sym_preproc_line] = STATE(2312), - [sym_preproc_pragma] = STATE(2312), - [sym_preproc_nullable] = STATE(2312), - [sym_preproc_error] = STATE(2312), - [sym_preproc_warning] = STATE(2312), - [sym_preproc_define] = STATE(2312), - [sym_preproc_undef] = STATE(2312), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3921), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_if_token3] = ACTIONS(3921), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2313] = { - [sym_type_argument_list] = STATE(2186), - [sym_preproc_region] = STATE(2313), - [sym_preproc_endregion] = STATE(2313), - [sym_preproc_line] = STATE(2313), - [sym_preproc_pragma] = STATE(2313), - [sym_preproc_nullable] = STATE(2313), - [sym_preproc_error] = STATE(2313), - [sym_preproc_warning] = STATE(2313), - [sym_preproc_define] = STATE(2313), - [sym_preproc_undef] = STATE(2313), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2314] = { - [sym_preproc_region] = STATE(2314), - [sym_preproc_endregion] = STATE(2314), - [sym_preproc_line] = STATE(2314), - [sym_preproc_pragma] = STATE(2314), - [sym_preproc_nullable] = STATE(2314), - [sym_preproc_error] = STATE(2314), - [sym_preproc_warning] = STATE(2314), - [sym_preproc_define] = STATE(2314), - [sym_preproc_undef] = STATE(2314), + [2311] = { + [sym_preproc_region] = STATE(2311), + [sym_preproc_endregion] = STATE(2311), + [sym_preproc_line] = STATE(2311), + [sym_preproc_pragma] = STATE(2311), + [sym_preproc_nullable] = STATE(2311), + [sym_preproc_error] = STATE(2311), + [sym_preproc_warning] = STATE(2311), + [sym_preproc_define] = STATE(2311), + [sym_preproc_undef] = STATE(2311), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), @@ -412676,106 +412426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3717), - }, - [2315] = { - [sym_preproc_region] = STATE(2315), - [sym_preproc_endregion] = STATE(2315), - [sym_preproc_line] = STATE(2315), - [sym_preproc_pragma] = STATE(2315), - [sym_preproc_nullable] = STATE(2315), - [sym_preproc_error] = STATE(2315), - [sym_preproc_warning] = STATE(2315), - [sym_preproc_define] = STATE(2315), - [sym_preproc_undef] = STATE(2315), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3714), - [anon_sym_into] = ACTIONS(3714), - [anon_sym_join] = ACTIONS(3714), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3714), - [anon_sym_orderby] = ACTIONS(3714), - [anon_sym_ascending] = ACTIONS(3714), - [anon_sym_descending] = ACTIONS(3714), - [anon_sym_group] = ACTIONS(3714), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412786,90 +412440,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3709), }, - [2316] = { - [sym_preproc_region] = STATE(2316), - [sym_preproc_endregion] = STATE(2316), - [sym_preproc_line] = STATE(2316), - [sym_preproc_pragma] = STATE(2316), - [sym_preproc_nullable] = STATE(2316), - [sym_preproc_error] = STATE(2316), - [sym_preproc_warning] = STATE(2316), - [sym_preproc_define] = STATE(2316), - [sym_preproc_undef] = STATE(2316), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [2312] = { + [sym__variable_designation] = STATE(3293), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2312), + [sym_preproc_endregion] = STATE(2312), + [sym_preproc_line] = STATE(2312), + [sym_preproc_pragma] = STATE(2312), + [sym_preproc_nullable] = STATE(2312), + [sym_preproc_error] = STATE(2312), + [sym_preproc_warning] = STATE(2312), + [sym_preproc_define] = STATE(2312), + [sym_preproc_undef] = STATE(2312), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3981), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_COMMA] = ACTIONS(3981), + [anon_sym_RBRACK] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3981), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_in] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3981), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), + [aux_sym_preproc_if_token3] = ACTIONS(3981), + [aux_sym_preproc_else_token1] = ACTIONS(3981), + [aux_sym_preproc_elif_token1] = ACTIONS(3981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412879,93 +412535,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3731), - }, - [2317] = { - [sym_preproc_region] = STATE(2317), - [sym_preproc_endregion] = STATE(2317), - [sym_preproc_line] = STATE(2317), - [sym_preproc_pragma] = STATE(2317), - [sym_preproc_nullable] = STATE(2317), - [sym_preproc_error] = STATE(2317), - [sym_preproc_warning] = STATE(2317), - [sym_preproc_define] = STATE(2317), - [sym_preproc_undef] = STATE(2317), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym_comment] = ACTIONS(21), + }, + [2313] = { + [sym__variable_designation] = STATE(3300), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2313), + [sym_preproc_endregion] = STATE(2313), + [sym_preproc_line] = STATE(2313), + [sym_preproc_pragma] = STATE(2313), + [sym_preproc_nullable] = STATE(2313), + [sym_preproc_error] = STATE(2313), + [sym_preproc_warning] = STATE(2313), + [sym_preproc_define] = STATE(2313), + [sym_preproc_undef] = STATE(2313), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_COLON] = ACTIONS(3985), + [anon_sym_COMMA] = ACTIONS(3985), + [anon_sym_RBRACK] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_in] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3985), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), + [aux_sym_preproc_if_token3] = ACTIONS(3985), + [aux_sym_preproc_else_token1] = ACTIONS(3985), + [aux_sym_preproc_elif_token1] = ACTIONS(3985), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412977,73 +412632,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2318] = { - [sym__variable_designation] = STATE(3358), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2318), - [sym_preproc_endregion] = STATE(2318), - [sym_preproc_line] = STATE(2318), - [sym_preproc_pragma] = STATE(2318), - [sym_preproc_nullable] = STATE(2318), - [sym_preproc_error] = STATE(2318), - [sym_preproc_warning] = STATE(2318), - [sym_preproc_define] = STATE(2318), - [sym_preproc_undef] = STATE(2318), + [2314] = { + [sym__variable_designation] = STATE(3307), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2314), + [sym_preproc_endregion] = STATE(2314), + [sym_preproc_line] = STATE(2314), + [sym_preproc_pragma] = STATE(2314), + [sym_preproc_nullable] = STATE(2314), + [sym_preproc_error] = STATE(2314), + [sym_preproc_warning] = STATE(2314), + [sym_preproc_define] = STATE(2314), + [sym_preproc_undef] = STATE(2314), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym_SEMI] = ACTIONS(3989), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3989), + [anon_sym_RBRACK] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3989), + [anon_sym_RBRACE] = ACTIONS(3989), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_in] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3991), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), + [anon_sym_EQ_GT] = ACTIONS(3989), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -413054,13 +412709,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_if_token3] = ACTIONS(3933), - [aux_sym_preproc_else_token1] = ACTIONS(3933), - [aux_sym_preproc_elif_token1] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), + [aux_sym_preproc_if_token3] = ACTIONS(3989), + [aux_sym_preproc_else_token1] = ACTIONS(3989), + [aux_sym_preproc_elif_token1] = ACTIONS(3989), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413072,25 +412727,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2319] = { - [sym__name] = STATE(2836), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2831), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2790), - [sym_ref_type] = STATE(2727), - [sym__scoped_base_type] = STATE(2814), - [sym_identifier] = STATE(2612), - [sym__reserved_identifier] = STATE(2650), - [sym_preproc_region] = STATE(2319), - [sym_preproc_endregion] = STATE(2319), - [sym_preproc_line] = STATE(2319), - [sym_preproc_pragma] = STATE(2319), - [sym_preproc_nullable] = STATE(2319), - [sym_preproc_error] = STATE(2319), - [sym_preproc_warning] = STATE(2319), - [sym_preproc_define] = STATE(2319), - [sym_preproc_undef] = STATE(2319), + [2315] = { + [sym__name] = STATE(2855), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2714), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2809), + [sym_ref_type] = STATE(2856), + [sym__scoped_base_type] = STATE(2857), + [sym_identifier] = STATE(2602), + [sym__reserved_identifier] = STATE(2652), + [sym_preproc_region] = STATE(2315), + [sym_preproc_endregion] = STATE(2315), + [sym_preproc_line] = STATE(2315), + [sym_preproc_pragma] = STATE(2315), + [sym_preproc_nullable] = STATE(2315), + [sym_preproc_error] = STATE(2315), + [sym_preproc_warning] = STATE(2315), + [sym_preproc_define] = STATE(2315), + [sym_preproc_undef] = STATE(2315), [sym__identifier_token] = ACTIONS(3644), [anon_sym_alias] = ACTIONS(3647), [anon_sym_global] = ACTIONS(3647), @@ -413167,74 +412822,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3459), }, - [2320] = { - [sym_preproc_region] = STATE(2320), - [sym_preproc_endregion] = STATE(2320), - [sym_preproc_line] = STATE(2320), - [sym_preproc_pragma] = STATE(2320), - [sym_preproc_nullable] = STATE(2320), - [sym_preproc_error] = STATE(2320), - [sym_preproc_warning] = STATE(2320), - [sym_preproc_define] = STATE(2320), - [sym_preproc_undef] = STATE(2320), + [2316] = { + [sym_preproc_region] = STATE(2316), + [sym_preproc_endregion] = STATE(2316), + [sym_preproc_line] = STATE(2316), + [sym_preproc_pragma] = STATE(2316), + [sym_preproc_nullable] = STATE(2316), + [sym_preproc_error] = STATE(2316), + [sym_preproc_warning] = STATE(2316), + [sym_preproc_define] = STATE(2316), + [sym_preproc_undef] = STATE(2316), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2317] = { + [sym_preproc_region] = STATE(2317), + [sym_preproc_endregion] = STATE(2317), + [sym_preproc_line] = STATE(2317), + [sym_preproc_pragma] = STATE(2317), + [sym_preproc_nullable] = STATE(2317), + [sym_preproc_error] = STATE(2317), + [sym_preproc_warning] = STATE(2317), + [sym_preproc_define] = STATE(2317), + [sym_preproc_undef] = STATE(2317), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), + [anon_sym_DOT_DOT] = ACTIONS(3709), [anon_sym_and] = ACTIONS(3697), [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), @@ -413247,10 +412997,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2318] = { + [sym_preproc_region] = STATE(2318), + [sym_preproc_endregion] = STATE(2318), + [sym_preproc_line] = STATE(2318), + [sym_preproc_pragma] = STATE(2318), + [sym_preproc_nullable] = STATE(2318), + [sym_preproc_error] = STATE(2318), + [sym_preproc_warning] = STATE(2318), + [sym_preproc_define] = STATE(2318), + [sym_preproc_undef] = STATE(2318), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413261,58 +413105,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3731), }, - [2321] = { - [sym_preproc_region] = STATE(2321), - [sym_preproc_endregion] = STATE(2321), - [sym_preproc_line] = STATE(2321), - [sym_preproc_pragma] = STATE(2321), - [sym_preproc_nullable] = STATE(2321), - [sym_preproc_error] = STATE(2321), - [sym_preproc_warning] = STATE(2321), - [sym_preproc_define] = STATE(2321), - [sym_preproc_undef] = STATE(2321), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), + [2319] = { + [sym_preproc_region] = STATE(2319), + [sym_preproc_endregion] = STATE(2319), + [sym_preproc_line] = STATE(2319), + [sym_preproc_pragma] = STATE(2319), + [sym_preproc_nullable] = STATE(2319), + [sym_preproc_error] = STATE(2319), + [sym_preproc_warning] = STATE(2319), + [sym_preproc_define] = STATE(2319), + [sym_preproc_undef] = STATE(2319), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), [anon_sym_and] = ACTIONS(3728), [anon_sym_or] = ACTIONS(3728), [anon_sym_PLUS_EQ] = ACTIONS(3731), @@ -413327,25 +413172,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3728), + [anon_sym_into] = ACTIONS(3711), [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), [anon_sym_let] = ACTIONS(3728), [anon_sym_orderby] = ACTIONS(3728), [anon_sym_ascending] = ACTIONS(3728), [anon_sym_descending] = ACTIONS(3728), [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), + [anon_sym_by] = ACTIONS(3711), [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2320] = { + [sym_preproc_region] = STATE(2320), + [sym_preproc_endregion] = STATE(2320), + [sym_preproc_line] = STATE(2320), + [sym_preproc_pragma] = STATE(2320), + [sym_preproc_nullable] = STATE(2320), + [sym_preproc_error] = STATE(2320), + [sym_preproc_warning] = STATE(2320), + [sym_preproc_define] = STATE(2320), + [sym_preproc_undef] = STATE(2320), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3709), + }, + [2321] = { + [sym__variable_designation] = STATE(3331), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2321), + [sym_preproc_endregion] = STATE(2321), + [sym_preproc_line] = STATE(2321), + [sym_preproc_pragma] = STATE(2321), + [sym_preproc_nullable] = STATE(2321), + [sym_preproc_error] = STATE(2321), + [sym_preproc_warning] = STATE(2321), + [sym_preproc_define] = STATE(2321), + [sym_preproc_undef] = STATE(2321), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3927), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_RBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_RBRACE] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_if_token3] = ACTIONS(3927), + [aux_sym_preproc_else_token1] = ACTIONS(3927), + [aux_sym_preproc_elif_token1] = ACTIONS(3927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413358,6 +413393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2322] = { + [sym__variable_designation] = STATE(3268), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2322), [sym_preproc_endregion] = STATE(2322), [sym_preproc_line] = STATE(2322), @@ -413367,6 +413406,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2322), [sym_preproc_define] = STATE(2322), [sym_preproc_undef] = STATE(2322), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3931), + [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_in] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3931), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_if_token3] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2323] = { + [sym_preproc_region] = STATE(2323), + [sym_preproc_endregion] = STATE(2323), + [sym_preproc_line] = STATE(2323), + [sym_preproc_pragma] = STATE(2323), + [sym_preproc_nullable] = STATE(2323), + [sym_preproc_error] = STATE(2323), + [sym_preproc_warning] = STATE(2323), + [sym_preproc_define] = STATE(2323), + [sym_preproc_undef] = STATE(2323), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_global] = ACTIONS(3461), @@ -413374,7 +413504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3993), [anon_sym_file] = ACTIONS(3461), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), @@ -413405,7 +413535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), [anon_sym_var] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3995), [anon_sym_yield] = ACTIONS(3461), [anon_sym_switch] = ACTIONS(3461), [anon_sym_when] = ACTIONS(3461), @@ -413452,102 +413582,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2323] = { - [sym__variable_designation] = STATE(3368), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2323), - [sym_preproc_endregion] = STATE(2323), - [sym_preproc_line] = STATE(2323), - [sym_preproc_pragma] = STATE(2323), - [sym_preproc_nullable] = STATE(2323), - [sym_preproc_error] = STATE(2323), - [sym_preproc_warning] = STATE(2323), - [sym_preproc_define] = STATE(2323), - [sym_preproc_undef] = STATE(2323), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3993), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_RBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3993), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), - [aux_sym_preproc_if_token3] = ACTIONS(3993), - [aux_sym_preproc_else_token1] = ACTIONS(3993), - [aux_sym_preproc_elif_token1] = ACTIONS(3993), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2324] = { + [sym__variable_designation] = STATE(3282), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2324), [sym_preproc_endregion] = STATE(2324), [sym_preproc_line] = STATE(2324), @@ -413557,105 +413596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2324), [sym_preproc_define] = STATE(2324), [sym_preproc_undef] = STATE(2324), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3714), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2325] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2325), - [sym_preproc_endregion] = STATE(2325), - [sym_preproc_line] = STATE(2325), - [sym_preproc_pragma] = STATE(2325), - [sym_preproc_nullable] = STATE(2325), - [sym_preproc_error] = STATE(2325), - [sym_preproc_warning] = STATE(2325), - [sym_preproc_define] = STATE(2325), - [sym_preproc_undef] = STATE(2325), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_SEMI] = ACTIONS(3997), @@ -413737,115 +413677,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2326] = { - [sym_preproc_region] = STATE(2326), - [sym_preproc_endregion] = STATE(2326), - [sym_preproc_line] = STATE(2326), - [sym_preproc_pragma] = STATE(2326), - [sym_preproc_nullable] = STATE(2326), - [sym_preproc_error] = STATE(2326), - [sym_preproc_warning] = STATE(2326), - [sym_preproc_define] = STATE(2326), - [sym_preproc_undef] = STATE(2326), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2327] = { - [sym__variable_designation] = STATE(3371), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2327), - [sym_preproc_endregion] = STATE(2327), - [sym_preproc_line] = STATE(2327), - [sym_preproc_pragma] = STATE(2327), - [sym_preproc_nullable] = STATE(2327), - [sym_preproc_error] = STATE(2327), - [sym_preproc_warning] = STATE(2327), - [sym_preproc_define] = STATE(2327), - [sym_preproc_undef] = STATE(2327), + [2325] = { + [sym__variable_designation] = STATE(3297), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2325), + [sym_preproc_endregion] = STATE(2325), + [sym_preproc_line] = STATE(2325), + [sym_preproc_pragma] = STATE(2325), + [sym_preproc_nullable] = STATE(2325), + [sym_preproc_error] = STATE(2325), + [sym_preproc_warning] = STATE(2325), + [sym_preproc_define] = STATE(2325), + [sym_preproc_undef] = STATE(2325), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_SEMI] = ACTIONS(4001), @@ -413854,7 +413699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(4001), [anon_sym_COMMA] = ACTIONS(4001), [anon_sym_RBRACK] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4001), [anon_sym_RPAREN] = ACTIONS(4001), [anon_sym_RBRACE] = ACTIONS(4001), [anon_sym_file] = ACTIONS(3899), @@ -413898,7 +413743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4001), [anon_sym_QMARK_QMARK] = ACTIONS(4001), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -413927,57 +413772,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2328] = { - [sym_preproc_region] = STATE(2328), - [sym_preproc_endregion] = STATE(2328), - [sym_preproc_line] = STATE(2328), - [sym_preproc_pragma] = STATE(2328), - [sym_preproc_nullable] = STATE(2328), - [sym_preproc_error] = STATE(2328), - [sym_preproc_warning] = STATE(2328), - [sym_preproc_define] = STATE(2328), - [sym_preproc_undef] = STATE(2328), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), + [2326] = { + [sym_preproc_region] = STATE(2326), + [sym_preproc_endregion] = STATE(2326), + [sym_preproc_line] = STATE(2326), + [sym_preproc_pragma] = STATE(2326), + [sym_preproc_nullable] = STATE(2326), + [sym_preproc_error] = STATE(2326), + [sym_preproc_warning] = STATE(2326), + [sym_preproc_define] = STATE(2326), + [sym_preproc_undef] = STATE(2326), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3731), + }, + [2327] = { + [sym_preproc_region] = STATE(2327), + [sym_preproc_endregion] = STATE(2327), + [sym_preproc_line] = STATE(2327), + [sym_preproc_pragma] = STATE(2327), + [sym_preproc_nullable] = STATE(2327), + [sym_preproc_error] = STATE(2327), + [sym_preproc_warning] = STATE(2327), + [sym_preproc_define] = STATE(2327), + [sym_preproc_undef] = STATE(2327), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), [anon_sym_and] = ACTIONS(3728), [anon_sym_or] = ACTIONS(3728), [anon_sym_PLUS_EQ] = ACTIONS(3731), @@ -413992,25 +413932,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3719), + [anon_sym_into] = ACTIONS(3728), [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), [anon_sym_let] = ACTIONS(3728), [anon_sym_orderby] = ACTIONS(3728), [anon_sym_ascending] = ACTIONS(3728), [anon_sym_descending] = ACTIONS(3728), [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), + [anon_sym_by] = ACTIONS(3711), [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2328] = { + [sym_preproc_region] = STATE(2328), + [sym_preproc_endregion] = STATE(2328), + [sym_preproc_line] = STATE(2328), + [sym_preproc_pragma] = STATE(2328), + [sym_preproc_nullable] = STATE(2328), + [sym_preproc_error] = STATE(2328), + [sym_preproc_warning] = STATE(2328), + [sym_preproc_define] = STATE(2328), + [sym_preproc_undef] = STATE(2328), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3706), + [anon_sym_descending] = ACTIONS(3706), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414032,79 +414067,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2329), [sym_preproc_define] = STATE(2329), [sym_preproc_undef] = STATE(2329), - [sym__identifier_token] = ACTIONS(4005), - [anon_sym_alias] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_global] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_file] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_notnull] = ACTIONS(4005), - [anon_sym_unmanaged] = ACTIONS(4005), - [anon_sym_operator] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_this] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_scoped] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4005), - [anon_sym_yield] = ACTIONS(4005), - [anon_sym_switch] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [sym_discard] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4005), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4005), - [anon_sym_into] = ACTIONS(4005), - [anon_sym_join] = ACTIONS(4005), - [anon_sym_on] = ACTIONS(4005), - [anon_sym_equals] = ACTIONS(4005), - [anon_sym_let] = ACTIONS(4005), - [anon_sym_orderby] = ACTIONS(4005), - [anon_sym_ascending] = ACTIONS(4005), - [anon_sym_descending] = ACTIONS(4005), - [anon_sym_group] = ACTIONS(4005), - [anon_sym_by] = ACTIONS(4005), - [anon_sym_select] = ACTIONS(4005), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4005), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3706), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414117,7 +414152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2330] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2330), [sym_preproc_endregion] = STATE(2330), [sym_preproc_line] = STATE(2330), @@ -414127,78 +414161,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2330), [sym_preproc_define] = STATE(2330), [sym_preproc_undef] = STATE(2330), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3728), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3728), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3728), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3728), + [anon_sym_orderby] = ACTIONS(3728), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3728), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414211,10 +414246,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2331] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2331), [sym_preproc_endregion] = STATE(2331), [sym_preproc_line] = STATE(2331), @@ -414224,75 +414255,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2331), [sym_preproc_define] = STATE(2331), [sym_preproc_undef] = STATE(2331), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3921), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_if_token3] = ACTIONS(3921), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414305,10 +414340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2332] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym__variable_designation] = STATE(3552), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2332), [sym_preproc_endregion] = STATE(2332), [sym_preproc_line] = STATE(2332), @@ -414320,54 +414355,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2332), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3981), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_COMMA] = ACTIONS(3981), + [anon_sym_RBRACK] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(3981), + [anon_sym_RBRACE] = ACTIONS(3981), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(3983), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_EQ_GT] = ACTIONS(3981), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), + [anon_sym_switch] = ACTIONS(3983), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -414380,13 +414415,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), - [aux_sym_preproc_if_token3] = ACTIONS(3997), - [aux_sym_preproc_else_token1] = ACTIONS(3997), - [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), + [aux_sym_preproc_if_token3] = ACTIONS(3981), + [aux_sym_preproc_else_token1] = ACTIONS(3981), + [aux_sym_preproc_elif_token1] = ACTIONS(3981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414399,6 +414434,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2333] = { + [sym__name] = STATE(4527), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_ref_type] = STATE(4506), + [sym__scoped_base_type] = STATE(4508), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), [sym_preproc_region] = STATE(2333), [sym_preproc_endregion] = STATE(2333), [sym_preproc_line] = STATE(2333), @@ -414408,79 +414452,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2333), [sym_preproc_define] = STATE(2333), [sym_preproc_undef] = STATE(2333), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3714), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(4011), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(4011), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4015), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414491,6 +414525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), }, [2334] = { [sym_preproc_region] = STATE(2334), @@ -414502,79 +414537,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2334), [sym_preproc_define] = STATE(2334), [sym_preproc_undef] = STATE(2334), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3736), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(4018), + [anon_sym_alias] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_global] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_file] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_in] = ACTIONS(4018), + [anon_sym_where] = ACTIONS(4018), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_notnull] = ACTIONS(4018), + [anon_sym_unmanaged] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_this] = ACTIONS(4018), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_scoped] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_var] = ACTIONS(4018), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_switch] = ACTIONS(4018), + [anon_sym_when] = ACTIONS(4018), + [sym_discard] = ACTIONS(4018), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_or] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4018), + [anon_sym_into] = ACTIONS(4018), + [anon_sym_join] = ACTIONS(4018), + [anon_sym_on] = ACTIONS(4018), + [anon_sym_equals] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_orderby] = ACTIONS(4018), + [anon_sym_ascending] = ACTIONS(4018), + [anon_sym_descending] = ACTIONS(4018), + [anon_sym_group] = ACTIONS(4018), + [anon_sym_by] = ACTIONS(4018), + [anon_sym_select] = ACTIONS(4018), + [anon_sym_as] = ACTIONS(4018), + [anon_sym_is] = ACTIONS(4018), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4018), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414587,10 +414622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2335] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym__variable_designation] = STATE(3503), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2335), [sym_preproc_endregion] = STATE(2335), [sym_preproc_line] = STATE(2335), @@ -414602,54 +414637,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2335), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym_SEMI] = ACTIONS(3989), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3989), + [anon_sym_RBRACK] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(3989), + [anon_sym_RBRACE] = ACTIONS(3989), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3991), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), + [anon_sym_EQ_GT] = ACTIONS(3989), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3991), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -414662,13 +414697,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_if_token3] = ACTIONS(3933), - [aux_sym_preproc_else_token1] = ACTIONS(3933), - [aux_sym_preproc_elif_token1] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), + [aux_sym_preproc_if_token3] = ACTIONS(3989), + [aux_sym_preproc_else_token1] = ACTIONS(3989), + [aux_sym_preproc_elif_token1] = ACTIONS(3989), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414681,10 +414716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2336] = { - [sym__variable_designation] = STATE(3430), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2336), [sym_preproc_endregion] = STATE(2336), [sym_preproc_line] = STATE(2336), @@ -414694,75 +414725,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2336), [sym_preproc_define] = STATE(2336), [sym_preproc_undef] = STATE(2336), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(4001), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_COLON] = ACTIONS(4001), - [anon_sym_COMMA] = ACTIONS(4001), - [anon_sym_RBRACK] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_RPAREN] = ACTIONS(4001), - [anon_sym_RBRACE] = ACTIONS(4001), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(4001), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(4003), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), - [aux_sym_preproc_if_token3] = ACTIONS(4001), - [aux_sym_preproc_else_token1] = ACTIONS(4001), - [aux_sym_preproc_elif_token1] = ACTIONS(4001), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414784,79 +414819,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2337), [sym_preproc_define] = STATE(2337), [sym_preproc_undef] = STATE(2337), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3728), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_this] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414869,6 +414904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2338] = { + [sym__variable_designation] = STATE(3470), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2338), [sym_preproc_endregion] = STATE(2338), [sym_preproc_line] = STATE(2338), @@ -414878,79 +414917,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2338), [sym_preproc_define] = STATE(2338), [sym_preproc_undef] = STATE(2338), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_COLON] = ACTIONS(3985), + [anon_sym_COMMA] = ACTIONS(3985), + [anon_sym_RBRACK] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3985), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), + [aux_sym_preproc_if_token3] = ACTIONS(3985), + [aux_sym_preproc_else_token1] = ACTIONS(3985), + [aux_sym_preproc_elif_token1] = ACTIONS(3985), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414972,79 +415007,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2339), [sym_preproc_define] = STATE(2339), [sym_preproc_undef] = STATE(2339), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3714), - [anon_sym_into] = ACTIONS(3714), - [anon_sym_join] = ACTIONS(3714), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3714), - [anon_sym_orderby] = ACTIONS(3714), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3714), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3728), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415066,79 +415101,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2340), [sym_preproc_define] = STATE(2340), [sym_preproc_undef] = STATE(2340), - [sym__identifier_token] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_operator] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_this] = ACTIONS(4013), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(4013), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4013), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4013), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4013), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [sym__identifier_token] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_this] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(4026), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_is] = ACTIONS(4026), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4026), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415160,79 +415195,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2341), [sym_preproc_define] = STATE(2341), [sym_preproc_undef] = STATE(2341), - [sym__identifier_token] = ACTIONS(4017), - [anon_sym_alias] = ACTIONS(4017), - [anon_sym_SEMI] = ACTIONS(4019), - [anon_sym_global] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_file] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4017), - [anon_sym_where] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_notnull] = ACTIONS(4017), - [anon_sym_unmanaged] = ACTIONS(4017), - [anon_sym_operator] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_this] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_scoped] = ACTIONS(4017), - [anon_sym_EQ_GT] = ACTIONS(4019), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_yield] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_when] = ACTIONS(4017), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4017), - [anon_sym_into] = ACTIONS(4017), - [anon_sym_join] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_let] = ACTIONS(4017), - [anon_sym_orderby] = ACTIONS(4017), - [anon_sym_ascending] = ACTIONS(4017), - [anon_sym_descending] = ACTIONS(4017), - [anon_sym_group] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_if_token3] = ACTIONS(4019), - [aux_sym_preproc_else_token1] = ACTIONS(4019), - [aux_sym_preproc_elif_token1] = ACTIONS(4019), + [sym__identifier_token] = ACTIONS(4030), + [anon_sym_alias] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_global] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_file] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_notnull] = ACTIONS(4030), + [anon_sym_unmanaged] = ACTIONS(4030), + [anon_sym_operator] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_scoped] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(4032), + [anon_sym_var] = ACTIONS(4030), + [anon_sym_yield] = ACTIONS(4030), + [anon_sym_switch] = ACTIONS(4030), + [anon_sym_when] = ACTIONS(4030), + [sym_discard] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4030), + [anon_sym_or] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_from] = ACTIONS(4030), + [anon_sym_into] = ACTIONS(4030), + [anon_sym_join] = ACTIONS(4030), + [anon_sym_on] = ACTIONS(4030), + [anon_sym_equals] = ACTIONS(4030), + [anon_sym_let] = ACTIONS(4030), + [anon_sym_orderby] = ACTIONS(4030), + [anon_sym_ascending] = ACTIONS(4030), + [anon_sym_descending] = ACTIONS(4030), + [anon_sym_group] = ACTIONS(4030), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_select] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4030), + [aux_sym_preproc_if_token3] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415254,79 +415289,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2342), [sym_preproc_define] = STATE(2342), [sym_preproc_undef] = STATE(2342), - [sym__identifier_token] = ACTIONS(4021), - [anon_sym_alias] = ACTIONS(4021), - [anon_sym_SEMI] = ACTIONS(4023), - [anon_sym_global] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_file] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4021), - [anon_sym_where] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_notnull] = ACTIONS(4021), - [anon_sym_unmanaged] = ACTIONS(4021), - [anon_sym_operator] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_this] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_scoped] = ACTIONS(4021), - [anon_sym_EQ_GT] = ACTIONS(4023), - [anon_sym_var] = ACTIONS(4021), - [anon_sym_yield] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_when] = ACTIONS(4021), - [sym_discard] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4021), - [anon_sym_into] = ACTIONS(4021), - [anon_sym_join] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_let] = ACTIONS(4021), - [anon_sym_orderby] = ACTIONS(4021), - [anon_sym_ascending] = ACTIONS(4021), - [anon_sym_descending] = ACTIONS(4021), - [anon_sym_group] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_select] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4023), - [aux_sym_preproc_else_token1] = ACTIONS(4023), - [aux_sym_preproc_elif_token1] = ACTIONS(4023), + [sym__identifier_token] = ACTIONS(4034), + [anon_sym_alias] = ACTIONS(4034), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_global] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_file] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_in] = ACTIONS(4034), + [anon_sym_where] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_notnull] = ACTIONS(4034), + [anon_sym_unmanaged] = ACTIONS(4034), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_this] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_scoped] = ACTIONS(4034), + [anon_sym_EQ_GT] = ACTIONS(4036), + [anon_sym_var] = ACTIONS(4034), + [anon_sym_yield] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_when] = ACTIONS(4034), + [sym_discard] = ACTIONS(4034), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4034), + [anon_sym_or] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_from] = ACTIONS(4034), + [anon_sym_into] = ACTIONS(4034), + [anon_sym_join] = ACTIONS(4034), + [anon_sym_on] = ACTIONS(4034), + [anon_sym_equals] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4034), + [anon_sym_orderby] = ACTIONS(4034), + [anon_sym_ascending] = ACTIONS(4034), + [anon_sym_descending] = ACTIONS(4034), + [anon_sym_group] = ACTIONS(4034), + [anon_sym_by] = ACTIONS(4034), + [anon_sym_select] = ACTIONS(4034), + [anon_sym_as] = ACTIONS(4034), + [anon_sym_is] = ACTIONS(4034), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4034), + [aux_sym_preproc_if_token3] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415339,6 +415374,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2343] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2343), [sym_preproc_endregion] = STATE(2343), [sym_preproc_line] = STATE(2343), @@ -415348,79 +415387,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2343), [sym_preproc_define] = STATE(2343), [sym_preproc_undef] = STATE(2343), - [sym__identifier_token] = ACTIONS(4025), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_operator] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_this] = ACTIONS(4025), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_EQ_GT] = ACTIONS(4027), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4025), - [anon_sym_or] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4025), - [aux_sym_preproc_if_token3] = ACTIONS(4027), - [aux_sym_preproc_else_token1] = ACTIONS(4027), - [aux_sym_preproc_elif_token1] = ACTIONS(4027), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(4001), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(4001), + [anon_sym_RBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(4001), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_if_token3] = ACTIONS(4001), + [aux_sym_preproc_else_token1] = ACTIONS(4001), + [aux_sym_preproc_elif_token1] = ACTIONS(4001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415442,79 +415477,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2344), [sym_preproc_define] = STATE(2344), [sym_preproc_undef] = STATE(2344), - [sym__identifier_token] = ACTIONS(4029), - [anon_sym_alias] = ACTIONS(4029), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_global] = ACTIONS(4029), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_file] = ACTIONS(4029), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_notnull] = ACTIONS(4029), - [anon_sym_unmanaged] = ACTIONS(4029), - [anon_sym_operator] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_this] = ACTIONS(4029), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_scoped] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_var] = ACTIONS(4029), - [anon_sym_yield] = ACTIONS(4029), - [anon_sym_switch] = ACTIONS(4029), - [anon_sym_when] = ACTIONS(4029), - [sym_discard] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4029), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4029), - [anon_sym_into] = ACTIONS(4029), - [anon_sym_join] = ACTIONS(4029), - [anon_sym_on] = ACTIONS(4029), - [anon_sym_equals] = ACTIONS(4029), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_orderby] = ACTIONS(4029), - [anon_sym_ascending] = ACTIONS(4029), - [anon_sym_descending] = ACTIONS(4029), - [anon_sym_group] = ACTIONS(4029), - [anon_sym_by] = ACTIONS(4029), - [anon_sym_select] = ACTIONS(4029), - [anon_sym_as] = ACTIONS(4029), - [anon_sym_is] = ACTIONS(4029), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4029), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [sym__identifier_token] = ACTIONS(4038), + [anon_sym_alias] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym_global] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_file] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_in] = ACTIONS(4038), + [anon_sym_where] = ACTIONS(4038), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_notnull] = ACTIONS(4038), + [anon_sym_unmanaged] = ACTIONS(4038), + [anon_sym_operator] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_this] = ACTIONS(4038), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_scoped] = ACTIONS(4038), + [anon_sym_EQ_GT] = ACTIONS(4040), + [anon_sym_var] = ACTIONS(4038), + [anon_sym_yield] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_when] = ACTIONS(4038), + [sym_discard] = ACTIONS(4038), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4038), + [anon_sym_or] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_from] = ACTIONS(4038), + [anon_sym_into] = ACTIONS(4038), + [anon_sym_join] = ACTIONS(4038), + [anon_sym_on] = ACTIONS(4038), + [anon_sym_equals] = ACTIONS(4038), + [anon_sym_let] = ACTIONS(4038), + [anon_sym_orderby] = ACTIONS(4038), + [anon_sym_ascending] = ACTIONS(4038), + [anon_sym_descending] = ACTIONS(4038), + [anon_sym_group] = ACTIONS(4038), + [anon_sym_by] = ACTIONS(4038), + [anon_sym_select] = ACTIONS(4038), + [anon_sym_as] = ACTIONS(4038), + [anon_sym_is] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4038), + [aux_sym_preproc_if_token3] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415539,76 +415574,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3714), + [anon_sym_equals] = ACTIONS(3697), [anon_sym_let] = ACTIONS(3697), [anon_sym_orderby] = ACTIONS(3697), [anon_sym_ascending] = ACTIONS(3697), [anon_sym_descending] = ACTIONS(3697), [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3706), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415621,7 +415656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2346] = { - [sym_type_argument_list] = STATE(2186), [sym_preproc_region] = STATE(2346), [sym_preproc_endregion] = STATE(2346), [sym_preproc_line] = STATE(2346), @@ -415631,78 +415665,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2346), [sym_preproc_define] = STATE(2346), [sym_preproc_undef] = STATE(2346), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_COLON_COLON] = ACTIONS(3693), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3706), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415715,15 +415750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2347] = { - [sym__name] = STATE(4475), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_ref_type] = STATE(4450), - [sym__scoped_base_type] = STATE(4396), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2347), [sym_preproc_endregion] = STATE(2347), [sym_preproc_line] = STATE(2347), @@ -415733,69 +415763,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2347), [sym_preproc_define] = STATE(2347), [sym_preproc_undef] = STATE(2347), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4039), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(4037), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(4037), - [anon_sym_yield] = ACTIONS(4037), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3927), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_RBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_RBRACE] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_if_token3] = ACTIONS(3927), + [aux_sym_preproc_else_token1] = ACTIONS(3927), + [aux_sym_preproc_elif_token1] = ACTIONS(3927), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415806,7 +415842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), }, [2348] = { [sym_preproc_region] = STATE(2348), @@ -415818,79 +415853,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2348), [sym_preproc_define] = STATE(2348), [sym_preproc_undef] = STATE(2348), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3714), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415912,79 +415947,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2349), [sym_preproc_define] = STATE(2349), [sym_preproc_undef] = STATE(2349), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4042), + [anon_sym_alias] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_global] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_file] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4042), + [anon_sym_where] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_notnull] = ACTIONS(4042), + [anon_sym_unmanaged] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_this] = ACTIONS(4042), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_scoped] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4044), + [anon_sym_var] = ACTIONS(4042), + [anon_sym_yield] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_when] = ACTIONS(4042), + [sym_discard] = ACTIONS(4042), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4042), + [anon_sym_or] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_from] = ACTIONS(4042), + [anon_sym_into] = ACTIONS(4042), + [anon_sym_join] = ACTIONS(4042), + [anon_sym_on] = ACTIONS(4042), + [anon_sym_equals] = ACTIONS(4042), + [anon_sym_let] = ACTIONS(4042), + [anon_sym_orderby] = ACTIONS(4042), + [anon_sym_ascending] = ACTIONS(4042), + [anon_sym_descending] = ACTIONS(4042), + [anon_sym_group] = ACTIONS(4042), + [anon_sym_by] = ACTIONS(4042), + [anon_sym_select] = ACTIONS(4042), + [anon_sym_as] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(4042), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4042), + [aux_sym_preproc_if_token3] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416009,65 +416044,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3717), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3736), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3706), [anon_sym_let] = ACTIONS(3697), [anon_sym_orderby] = ACTIONS(3697), [anon_sym_ascending] = ACTIONS(3697), @@ -416075,10 +416110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416091,6 +416126,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2351] = { + [sym__variable_designation] = STATE(3493), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2351), [sym_preproc_endregion] = STATE(2351), [sym_preproc_line] = STATE(2351), @@ -416100,154 +416139,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2351), [sym_preproc_define] = STATE(2351), [sym_preproc_undef] = STATE(2351), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2352] = { - [sym__variable_designation] = STATE(3475), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2352), - [sym_preproc_endregion] = STATE(2352), - [sym_preproc_line] = STATE(2352), - [sym_preproc_pragma] = STATE(2352), - [sym_preproc_nullable] = STATE(2352), - [sym_preproc_error] = STATE(2352), - [sym_preproc_warning] = STATE(2352), - [sym_preproc_define] = STATE(2352), - [sym_preproc_undef] = STATE(2352), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3975), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_COLON] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_RBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3975), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_RBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3975), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3985), + [anon_sym_QMARK] = ACTIONS(3979), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3983), + [anon_sym_EQ_GT] = ACTIONS(3975), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3979), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -416260,13 +416201,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), - [aux_sym_preproc_if_token3] = ACTIONS(3983), - [aux_sym_preproc_else_token1] = ACTIONS(3983), - [aux_sym_preproc_elif_token1] = ACTIONS(3983), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), + [aux_sym_preproc_if_token3] = ACTIONS(3975), + [aux_sym_preproc_else_token1] = ACTIONS(3975), + [aux_sym_preproc_elif_token1] = ACTIONS(3975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416278,78 +416219,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2353] = { - [sym_preproc_region] = STATE(2353), - [sym_preproc_endregion] = STATE(2353), - [sym_preproc_line] = STATE(2353), - [sym_preproc_pragma] = STATE(2353), - [sym_preproc_nullable] = STATE(2353), - [sym_preproc_error] = STATE(2353), - [sym_preproc_warning] = STATE(2353), - [sym_preproc_define] = STATE(2353), - [sym_preproc_undef] = STATE(2353), + [2352] = { + [sym_preproc_region] = STATE(2352), + [sym_preproc_endregion] = STATE(2352), + [sym_preproc_line] = STATE(2352), + [sym_preproc_pragma] = STATE(2352), + [sym_preproc_nullable] = STATE(2352), + [sym_preproc_error] = STATE(2352), + [sym_preproc_warning] = STATE(2352), + [sym_preproc_define] = STATE(2352), + [sym_preproc_undef] = STATE(2352), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3709), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3706), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), + [anon_sym_into] = ACTIONS(3697), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3714), + [anon_sym_equals] = ACTIONS(3697), [anon_sym_let] = ACTIONS(3697), [anon_sym_orderby] = ACTIONS(3697), [anon_sym_ascending] = ACTIONS(3697), @@ -416357,10 +416298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416372,89 +416313,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2354] = { - [sym_preproc_region] = STATE(2354), - [sym_preproc_endregion] = STATE(2354), - [sym_preproc_line] = STATE(2354), - [sym_preproc_pragma] = STATE(2354), - [sym_preproc_nullable] = STATE(2354), - [sym_preproc_error] = STATE(2354), - [sym_preproc_warning] = STATE(2354), - [sym_preproc_define] = STATE(2354), - [sym_preproc_undef] = STATE(2354), + [2353] = { + [sym_preproc_region] = STATE(2353), + [sym_preproc_endregion] = STATE(2353), + [sym_preproc_line] = STATE(2353), + [sym_preproc_pragma] = STATE(2353), + [sym_preproc_nullable] = STATE(2353), + [sym_preproc_error] = STATE(2353), + [sym_preproc_warning] = STATE(2353), + [sym_preproc_define] = STATE(2353), + [sym_preproc_undef] = STATE(2353), [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3706), [anon_sym_when] = ACTIONS(3697), [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3714), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), [anon_sym_ascending] = ACTIONS(3697), [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3706), [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2354] = { + [sym_preproc_region] = STATE(2354), + [sym_preproc_endregion] = STATE(2354), + [sym_preproc_line] = STATE(2354), + [sym_preproc_pragma] = STATE(2354), + [sym_preproc_nullable] = STATE(2354), + [sym_preproc_error] = STATE(2354), + [sym_preproc_warning] = STATE(2354), + [sym_preproc_define] = STATE(2354), + [sym_preproc_undef] = STATE(2354), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3728), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3728), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3728), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3728), + [anon_sym_orderby] = ACTIONS(3728), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3728), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416476,79 +416511,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2355), [sym_preproc_define] = STATE(2355), [sym_preproc_undef] = STATE(2355), - [sym__identifier_token] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_global] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_file] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_notnull] = ACTIONS(4043), - [anon_sym_unmanaged] = ACTIONS(4043), - [anon_sym_operator] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_this] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_scoped] = ACTIONS(4043), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_var] = ACTIONS(4043), - [anon_sym_yield] = ACTIONS(4043), - [anon_sym_switch] = ACTIONS(4043), - [anon_sym_when] = ACTIONS(4043), - [sym_discard] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4043), - [anon_sym_or] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_from] = ACTIONS(4043), - [anon_sym_into] = ACTIONS(4043), - [anon_sym_join] = ACTIONS(4043), - [anon_sym_on] = ACTIONS(4043), - [anon_sym_equals] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_orderby] = ACTIONS(4043), - [anon_sym_ascending] = ACTIONS(4043), - [anon_sym_descending] = ACTIONS(4043), - [anon_sym_group] = ACTIONS(4043), - [anon_sym_by] = ACTIONS(4043), - [anon_sym_select] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4043), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4043), - [aux_sym_preproc_if_token3] = ACTIONS(4045), - [aux_sym_preproc_else_token1] = ACTIONS(4045), - [aux_sym_preproc_elif_token1] = ACTIONS(4045), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3728), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416561,15 +416596,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2356] = { - [sym__name] = STATE(4475), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_ref_type] = STATE(4450), - [sym__scoped_base_type] = STATE(4396), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), + [sym__name] = STATE(4527), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_ref_type] = STATE(4506), + [sym__scoped_base_type] = STATE(4508), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), [sym_preproc_region] = STATE(2356), [sym_preproc_endregion] = STATE(2356), [sym_preproc_line] = STATE(2356), @@ -416579,22 +416614,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2356), [sym_preproc_define] = STATE(2356), [sym_preproc_undef] = STATE(2356), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_COMMA] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4047), + [anon_sym_ref] = ACTIONS(4046), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(4037), + [anon_sym_file] = ACTIONS(4011), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(4037), + [anon_sym_where] = ACTIONS(4011), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -416614,30 +416649,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(4037), + [anon_sym_scoped] = ACTIONS(4011), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(4037), - [anon_sym_yield] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4011), + [anon_sym_yield] = ACTIONS(4011), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(4037), + [anon_sym_when] = ACTIONS(4011), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4049), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4011), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -416664,48 +416699,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2357), [sym_preproc_define] = STATE(2357), [sym_preproc_undef] = STATE(2357), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3728), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -416718,25 +416753,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3728), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416758,79 +416793,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2358), [sym_preproc_define] = STATE(2358), [sym_preproc_undef] = STATE(2358), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(4048), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_RBRACK] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_in] = ACTIONS(4048), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_this] = ACTIONS(4048), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_EQ_GT] = ACTIONS(4050), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4048), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4048), + [anon_sym_or] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(4048), + [anon_sym_join] = ACTIONS(4048), + [anon_sym_on] = ACTIONS(4048), + [anon_sym_equals] = ACTIONS(4048), + [anon_sym_let] = ACTIONS(4048), + [anon_sym_orderby] = ACTIONS(4048), + [anon_sym_ascending] = ACTIONS(4048), + [anon_sym_descending] = ACTIONS(4048), + [anon_sym_group] = ACTIONS(4048), + [anon_sym_by] = ACTIONS(4048), + [anon_sym_select] = ACTIONS(4048), + [anon_sym_as] = ACTIONS(4048), + [anon_sym_is] = ACTIONS(4048), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4048), + [aux_sym_preproc_if_token3] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416852,79 +416887,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2359), [sym_preproc_define] = STATE(2359), [sym_preproc_undef] = STATE(2359), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3728), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(4052), + [anon_sym_alias] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_global] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_COMMA] = ACTIONS(4054), + [anon_sym_RBRACK] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_file] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4052), + [anon_sym_in] = ACTIONS(4052), + [anon_sym_where] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_notnull] = ACTIONS(4052), + [anon_sym_unmanaged] = ACTIONS(4052), + [anon_sym_operator] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_this] = ACTIONS(4052), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_scoped] = ACTIONS(4052), + [anon_sym_EQ_GT] = ACTIONS(4054), + [anon_sym_var] = ACTIONS(4052), + [anon_sym_yield] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_when] = ACTIONS(4052), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4052), + [anon_sym_or] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4054), + [anon_sym_QMARK_QMARK] = ACTIONS(4054), + [anon_sym_from] = ACTIONS(4052), + [anon_sym_into] = ACTIONS(4052), + [anon_sym_join] = ACTIONS(4052), + [anon_sym_on] = ACTIONS(4052), + [anon_sym_equals] = ACTIONS(4052), + [anon_sym_let] = ACTIONS(4052), + [anon_sym_orderby] = ACTIONS(4052), + [anon_sym_ascending] = ACTIONS(4052), + [anon_sym_descending] = ACTIONS(4052), + [anon_sym_group] = ACTIONS(4052), + [anon_sym_by] = ACTIONS(4052), + [anon_sym_select] = ACTIONS(4052), + [anon_sym_as] = ACTIONS(4052), + [anon_sym_is] = ACTIONS(4052), + [anon_sym_DASH_GT] = ACTIONS(4054), + [anon_sym_with] = ACTIONS(4052), + [aux_sym_preproc_if_token3] = ACTIONS(4054), + [aux_sym_preproc_else_token1] = ACTIONS(4054), + [aux_sym_preproc_elif_token1] = ACTIONS(4054), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416946,79 +416981,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2360), [sym_preproc_define] = STATE(2360), [sym_preproc_undef] = STATE(2360), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3728), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3706), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417040,46 +417075,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2361), [sym_preproc_define] = STATE(2361), [sym_preproc_undef] = STATE(2361), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), [anon_sym_and] = ACTIONS(3728), [anon_sym_or] = ACTIONS(3728), [anon_sym_PLUS_EQ] = ACTIONS(3731), @@ -417094,25 +417129,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), [anon_sym_by] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417134,79 +417169,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2362), [sym_preproc_define] = STATE(2362), [sym_preproc_undef] = STATE(2362), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3728), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3706), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417228,48 +417263,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2363), [sym_preproc_define] = STATE(2363), [sym_preproc_undef] = STATE(2363), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3728), - [anon_sym_GT] = ACTIONS(3728), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3725), - [anon_sym_DASH_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_PERCENT] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3728), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3728), - [anon_sym_GT_GT] = ACTIONS(3728), - [anon_sym_GT_GT_GT] = ACTIONS(3728), - [anon_sym_EQ_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_GT_EQ] = ACTIONS(3725), - [anon_sym_LT_EQ] = ACTIONS(3725), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_and] = ACTIONS(3728), - [anon_sym_or] = ACTIONS(3728), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -417282,25 +417317,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3731), [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3725), - [anon_sym_PIPE_PIPE] = ACTIONS(3725), - [anon_sym_QMARK_QMARK] = ACTIONS(3728), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3728), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417313,6 +417348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2364] = { + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2364), [sym_preproc_endregion] = STATE(2364), [sym_preproc_line] = STATE(2364), @@ -417322,79 +417358,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2364), [sym_preproc_define] = STATE(2364), [sym_preproc_undef] = STATE(2364), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3714), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3714), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3714), - [anon_sym_orderby] = ACTIONS(3714), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3714), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3714), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417407,6 +417442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2365] = { + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2365), [sym_preproc_endregion] = STATE(2365), [sym_preproc_line] = STATE(2365), @@ -417416,79 +417455,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2365), [sym_preproc_define] = STATE(2365), [sym_preproc_undef] = STATE(2365), - [sym__identifier_token] = ACTIONS(4052), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_COLON] = ACTIONS(4054), - [anon_sym_COMMA] = ACTIONS(4054), - [anon_sym_RBRACK] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_in] = ACTIONS(4052), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_operator] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_SLASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4054), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_GT_GT_GT] = ACTIONS(4054), - [anon_sym_EQ_EQ] = ACTIONS(4054), - [anon_sym_BANG_EQ] = ACTIONS(4054), - [anon_sym_GT_EQ] = ACTIONS(4054), - [anon_sym_LT_EQ] = ACTIONS(4054), - [anon_sym_this] = ACTIONS(4052), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_EQ_GT] = ACTIONS(4054), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(4052), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4052), - [anon_sym_DOT_DOT] = ACTIONS(4054), - [anon_sym_and] = ACTIONS(4052), - [anon_sym_or] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4054), - [anon_sym_QMARK_QMARK] = ACTIONS(4054), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(4052), - [anon_sym_join] = ACTIONS(4052), - [anon_sym_on] = ACTIONS(4052), - [anon_sym_equals] = ACTIONS(4052), - [anon_sym_let] = ACTIONS(4052), - [anon_sym_orderby] = ACTIONS(4052), - [anon_sym_ascending] = ACTIONS(4052), - [anon_sym_descending] = ACTIONS(4052), - [anon_sym_group] = ACTIONS(4052), - [anon_sym_by] = ACTIONS(4052), - [anon_sym_select] = ACTIONS(4052), - [anon_sym_as] = ACTIONS(4052), - [anon_sym_is] = ACTIONS(4052), - [anon_sym_DASH_GT] = ACTIONS(4054), - [anon_sym_with] = ACTIONS(4052), - [aux_sym_preproc_if_token3] = ACTIONS(4054), - [aux_sym_preproc_else_token1] = ACTIONS(4054), - [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3997), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3997), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), + [aux_sym_preproc_if_token3] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417510,79 +417545,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2366), [sym_preproc_define] = STATE(2366), [sym_preproc_undef] = STATE(2366), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_operator] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_this] = ACTIONS(4056), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3703), + [anon_sym_DASH_DASH] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_CARET] = ACTIONS(3706), + [anon_sym_PIPE] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_LT_LT] = ACTIONS(3706), + [anon_sym_GT_GT] = ACTIONS(3706), + [anon_sym_GT_GT_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_and] = ACTIONS(3706), + [anon_sym_or] = ACTIONS(3706), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_PIPE_PIPE] = ACTIONS(3703), + [anon_sym_QMARK_QMARK] = ACTIONS(3706), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3706), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3706), + [anon_sym_is] = ACTIONS(3706), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3706), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417595,10 +417630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2367] = { - [sym__variable_designation] = STATE(3407), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2367), [sym_preproc_endregion] = STATE(2367), [sym_preproc_line] = STATE(2367), @@ -417610,54 +417645,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2367), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3931), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3931), + [anon_sym_RBRACE] = ACTIONS(3931), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3973), + [anon_sym_EQ_GT] = ACTIONS(3931), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3977), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -417670,13 +417705,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_if_token3] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417689,10 +417724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2368] = { - [sym__variable_designation] = STATE(3529), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2368), [sym_preproc_endregion] = STATE(2368), [sym_preproc_line] = STATE(2368), @@ -417702,75 +417733,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2368), [sym_preproc_define] = STATE(2368), [sym_preproc_undef] = STATE(2368), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3993), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_RBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3993), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), - [aux_sym_preproc_if_token3] = ACTIONS(3993), - [aux_sym_preproc_else_token1] = ACTIONS(3993), - [aux_sym_preproc_elif_token1] = ACTIONS(3993), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3728), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417783,10 +417818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2369] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2369), [sym_preproc_endregion] = STATE(2369), [sym_preproc_line] = STATE(2369), @@ -417796,75 +417827,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2369), [sym_preproc_define] = STATE(2369), [sym_preproc_undef] = STATE(2369), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_SEMI] = ACTIONS(3969), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_RBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_RPAREN] = ACTIONS(3969), - [anon_sym_RBRACE] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3969), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), - [aux_sym_preproc_if_token3] = ACTIONS(3969), - [aux_sym_preproc_else_token1] = ACTIONS(3969), - [aux_sym_preproc_elif_token1] = ACTIONS(3969), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3724), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3724), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_GT_GT_GT] = ACTIONS(3724), + [anon_sym_EQ_EQ] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_GT_EQ] = ACTIONS(3718), + [anon_sym_LT_EQ] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3724), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_and] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3728), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_QMARK_QMARK] = ACTIONS(3724), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3728), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3728), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3724), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3724), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417877,6 +417912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2370] = { + [sym_type_argument_list] = STATE(2184), [sym_preproc_region] = STATE(2370), [sym_preproc_endregion] = STATE(2370), [sym_preproc_line] = STATE(2370), @@ -417886,79 +417922,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2370), [sym_preproc_define] = STATE(2370), [sym_preproc_undef] = STATE(2370), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3710), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3704), - [anon_sym_and] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3704), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3714), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3714), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3688), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417971,26 +418006,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2371] = { - [sym_modifier] = STATE(3164), - [sym_variable_declaration] = STATE(7448), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3166), + [sym_variable_declaration] = STATE(7491), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5963), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2371), [sym_preproc_endregion] = STATE(2371), [sym_preproc_line] = STATE(2371), @@ -418000,7 +418035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2371), [sym_preproc_define] = STATE(2371), [sym_preproc_undef] = STATE(2371), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(2997), @@ -418010,7 +418045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_class] = ACTIONS(3751), [anon_sym_ref] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2797), [anon_sym_enum] = ACTIONS(3755), [anon_sym_interface] = ACTIONS(3757), [anon_sym_delegate] = ACTIONS(3759), @@ -418064,6 +418099,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2372] = { + [sym__name] = STATE(4952), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(4435), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2372), [sym_preproc_endregion] = STATE(2372), [sym_preproc_line] = STATE(2372), @@ -418073,6 +418117,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2372), [sym_preproc_define] = STATE(2372), [sym_preproc_undef] = STATE(2372), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2373] = { + [sym_preproc_region] = STATE(2373), + [sym_preproc_endregion] = STATE(2373), + [sym_preproc_line] = STATE(2373), + [sym_preproc_pragma] = STATE(2373), + [sym_preproc_nullable] = STATE(2373), + [sym_preproc_error] = STATE(2373), + [sym_preproc_warning] = STATE(2373), + [sym_preproc_define] = STATE(2373), + [sym_preproc_undef] = STATE(2373), [sym__identifier_token] = ACTIONS(3461), [anon_sym_alias] = ACTIONS(3461), [anon_sym_SEMI] = ACTIONS(3459), @@ -418156,99 +418284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2373] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2373), - [sym_preproc_endregion] = STATE(2373), - [sym_preproc_line] = STATE(2373), - [sym_preproc_pragma] = STATE(2373), - [sym_preproc_nullable] = STATE(2373), - [sym_preproc_error] = STATE(2373), - [sym_preproc_warning] = STATE(2373), - [sym_preproc_define] = STATE(2373), - [sym_preproc_undef] = STATE(2373), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2374] = { [sym_preproc_region] = STATE(2374), [sym_preproc_endregion] = STATE(2374), @@ -418259,78 +418294,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2374), [sym_preproc_define] = STATE(2374), [sym_preproc_undef] = STATE(2374), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3736), - [anon_sym_into] = ACTIONS(3736), - [anon_sym_join] = ACTIONS(3736), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3736), - [anon_sym_orderby] = ACTIONS(3736), - [anon_sym_ascending] = ACTIONS(3736), - [anon_sym_descending] = ACTIONS(3736), - [anon_sym_group] = ACTIONS(3736), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3662), + [anon_sym_alias] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_global] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_notnull] = ACTIONS(3662), + [anon_sym_unmanaged] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_scoped] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_when] = ACTIONS(3662), + [sym_discard] = ACTIONS(3662), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3662), + [anon_sym_join] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_equals] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_orderby] = ACTIONS(3662), + [anon_sym_ascending] = ACTIONS(3662), + [anon_sym_descending] = ACTIONS(3662), + [anon_sym_group] = ACTIONS(3662), + [anon_sym_by] = ACTIONS(3662), + [anon_sym_select] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_is] = ACTIONS(3662), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3662), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418343,26 +418378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2375] = { - [sym_modifier] = STATE(3164), - [sym_variable_declaration] = STATE(7539), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(2375), [sym_preproc_endregion] = STATE(2375), [sym_preproc_line] = STATE(2375), @@ -418372,58 +418387,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2375), [sym_preproc_define] = STATE(2375), [sym_preproc_undef] = STATE(2375), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3751), - [anon_sym_ref] = ACTIONS(3753), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(3755), - [anon_sym_interface] = ACTIONS(3757), - [anon_sym_delegate] = ACTIONS(3759), - [anon_sym_record] = ACTIONS(3761), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(3015), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3706), + [anon_sym_descending] = ACTIONS(3706), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418436,7 +418471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2376] = { - [sym_type_argument_list] = STATE(2428), [sym_preproc_region] = STATE(2376), [sym_preproc_endregion] = STATE(2376), [sym_preproc_line] = STATE(2376), @@ -418446,77 +418480,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2376), [sym_preproc_define] = STATE(2376), [sym_preproc_undef] = STATE(2376), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(4074), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(3695), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3736), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3736), + [anon_sym_orderby] = ACTIONS(3736), + [anon_sym_ascending] = ACTIONS(3736), + [anon_sym_descending] = ACTIONS(3736), + [anon_sym_group] = ACTIONS(3736), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418538,78 +418573,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2377), [sym_preproc_define] = STATE(2377), [sym_preproc_undef] = STATE(2377), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418622,6 +418657,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2378] = { + [sym__name] = STATE(3220), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_ref_type] = STATE(3223), + [sym__scoped_base_type] = STATE(3228), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(2378), [sym_preproc_endregion] = STATE(2378), [sym_preproc_line] = STATE(2378), @@ -418631,78 +418675,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2378), [sym_preproc_define] = STATE(2378), [sym_preproc_undef] = STATE(2378), - [sym__identifier_token] = ACTIONS(3662), - [anon_sym_alias] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_global] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_file] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3662), - [anon_sym_unmanaged] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3791), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3795), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3795), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418715,6 +418750,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2379] = { + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2379), [sym_preproc_endregion] = STATE(2379), [sym_preproc_line] = STATE(2379), @@ -418724,78 +418778,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2379), [sym_preproc_define] = STATE(2379), [sym_preproc_undef] = STATE(2379), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3728), - [anon_sym_descending] = ACTIONS(3728), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418808,6 +418843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2380] = { + [sym_type_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2380), [sym_preproc_endregion] = STATE(2380), [sym_preproc_line] = STATE(2380), @@ -418817,78 +418853,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2380), [sym_preproc_define] = STATE(2380), [sym_preproc_undef] = STATE(2380), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3736), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3736), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3736), - [anon_sym_orderby] = ACTIONS(3736), - [anon_sym_ascending] = ACTIONS(3736), - [anon_sym_descending] = ACTIONS(3736), - [anon_sym_group] = ACTIONS(3736), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418910,47 +418945,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2381), [sym_preproc_define] = STATE(2381), [sym_preproc_undef] = STATE(2381), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -418965,23 +419000,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3728), - [anon_sym_descending] = ACTIONS(3728), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3736), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3736), + [anon_sym_orderby] = ACTIONS(3736), + [anon_sym_ascending] = ACTIONS(3736), + [anon_sym_descending] = ACTIONS(3736), + [anon_sym_group] = ACTIONS(3736), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418994,15 +419029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2382] = { - [sym__name] = STATE(4953), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(4461), - [sym__reserved_identifier] = STATE(2981), + [sym_type_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2382), [sym_preproc_endregion] = STATE(2382), [sym_preproc_line] = STATE(2382), @@ -419012,69 +419039,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2382), [sym_preproc_define] = STATE(2382), [sym_preproc_undef] = STATE(2382), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419087,7 +419122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2383] = { - [sym_type_argument_list] = STATE(2428), [sym_preproc_region] = STATE(2383), [sym_preproc_endregion] = STATE(2383), [sym_preproc_line] = STATE(2383), @@ -419097,77 +419131,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2383), [sym_preproc_define] = STATE(2383), [sym_preproc_undef] = STATE(2383), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(4074), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3706), + [anon_sym_descending] = ACTIONS(3706), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419180,15 +419215,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2384] = { - [sym__name] = STATE(3449), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), + [sym_modifier] = STATE(3166), + [sym_variable_declaration] = STATE(7652), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5963), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2384), [sym_preproc_endregion] = STATE(2384), [sym_preproc_line] = STATE(2384), @@ -419198,69 +419244,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2384), [sym_preproc_define] = STATE(2384), [sym_preproc_undef] = STATE(2384), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(4081), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3751), + [anon_sym_ref] = ACTIONS(3753), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(3755), + [anon_sym_interface] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3759), + [anon_sym_record] = ACTIONS(3761), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(3015), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419273,15 +419308,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2385] = { - [sym__name] = STATE(3211), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_ref_type] = STATE(3214), - [sym__scoped_base_type] = STATE(3216), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym__name] = STATE(3483), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2385), [sym_preproc_endregion] = STATE(2385), [sym_preproc_line] = STATE(2385), @@ -419291,21 +419326,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2385), [sym_preproc_define] = STATE(2385), [sym_preproc_undef] = STATE(2385), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_COLON] = ACTIONS(3461), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4084), + [anon_sym_ref] = ACTIONS(4081), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3791), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -419325,31 +419360,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(3800), [anon_sym_EQ_GT] = ACTIONS(3459), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3795), + [anon_sym_when] = ACTIONS(4083), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3795), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -419375,77 +419410,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2386), [sym_preproc_define] = STATE(2386), [sym_preproc_undef] = STATE(2386), - [sym__identifier_token] = ACTIONS(3666), - [anon_sym_alias] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_global] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_file] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_where] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_notnull] = ACTIONS(3666), - [anon_sym_unmanaged] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_scoped] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_when] = ACTIONS(3666), - [sym_discard] = ACTIONS(3666), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3666), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_into] = ACTIONS(3666), - [anon_sym_join] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_equals] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_orderby] = ACTIONS(3666), - [anon_sym_ascending] = ACTIONS(3666), - [anon_sym_descending] = ACTIONS(3666), - [anon_sym_group] = ACTIONS(3666), - [anon_sym_by] = ACTIONS(3666), - [anon_sym_select] = ACTIONS(3666), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_is] = ACTIONS(3666), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3666), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3706), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419458,14 +419493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2387] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2507), - [sym_property_pattern_clause] = STATE(2585), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), [sym_preproc_region] = STATE(2387), [sym_preproc_endregion] = STATE(2387), [sym_preproc_line] = STATE(2387), @@ -419475,68 +419502,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2387), [sym_preproc_define] = STATE(2387), [sym_preproc_undef] = STATE(2387), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3706), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419547,7 +419583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3911), }, [2388] = { [sym_preproc_region] = STATE(2388), @@ -419562,74 +419597,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3706), [anon_sym_equals] = ACTIONS(3697), [anon_sym_let] = ACTIONS(3697), [anon_sym_orderby] = ACTIONS(3697), [anon_sym_ascending] = ACTIONS(3697), [anon_sym_descending] = ACTIONS(3697), [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3736), + [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419651,46 +419686,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2389), [sym_preproc_define] = STATE(2389), [sym_preproc_undef] = STATE(2389), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -419705,23 +419740,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3728), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3736), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419734,6 +419769,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2390] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2517), + [sym_property_pattern_clause] = STATE(2584), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2390), [sym_preproc_endregion] = STATE(2390), [sym_preproc_line] = STATE(2390), @@ -419743,77 +419786,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2390), [sym_preproc_define] = STATE(2390), [sym_preproc_undef] = STATE(2390), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3736), - [anon_sym_into] = ACTIONS(3736), - [anon_sym_join] = ACTIONS(3736), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3736), - [anon_sym_orderby] = ACTIONS(3736), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3736), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419824,6 +419858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3911), }, [2391] = { [sym_preproc_region] = STATE(2391), @@ -419835,77 +419870,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2391), [sym_preproc_define] = STATE(2391), [sym_preproc_undef] = STATE(2391), - [sym__identifier_token] = ACTIONS(4094), - [anon_sym_alias] = ACTIONS(4094), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_global] = ACTIONS(4094), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_file] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4094), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_notnull] = ACTIONS(4094), - [anon_sym_unmanaged] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_scoped] = ACTIONS(4094), - [anon_sym_EQ_GT] = ACTIONS(4096), - [anon_sym_var] = ACTIONS(4094), - [anon_sym_yield] = ACTIONS(4094), - [anon_sym_switch] = ACTIONS(4094), - [anon_sym_when] = ACTIONS(4094), - [sym_discard] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4094), - [anon_sym_or] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_from] = ACTIONS(4094), - [anon_sym_into] = ACTIONS(4094), - [anon_sym_join] = ACTIONS(4094), - [anon_sym_on] = ACTIONS(4094), - [anon_sym_equals] = ACTIONS(4094), - [anon_sym_let] = ACTIONS(4094), - [anon_sym_orderby] = ACTIONS(4094), - [anon_sym_ascending] = ACTIONS(4094), - [anon_sym_descending] = ACTIONS(4094), - [anon_sym_group] = ACTIONS(4094), - [anon_sym_by] = ACTIONS(4094), - [anon_sym_select] = ACTIONS(4094), - [anon_sym_as] = ACTIONS(4094), - [anon_sym_is] = ACTIONS(4094), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4094), - [aux_sym_preproc_if_token3] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3736), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3736), + [anon_sym_orderby] = ACTIONS(3736), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3736), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419927,46 +419962,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2392), [sym_preproc_define] = STATE(2392), [sym_preproc_undef] = STATE(2392), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -419981,23 +420016,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3728), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3736), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3736), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3736), + [anon_sym_orderby] = ACTIONS(3736), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3736), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420010,6 +420045,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2393] = { + [sym_modifier] = STATE(3166), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6144), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2393), [sym_preproc_endregion] = STATE(2393), [sym_preproc_line] = STATE(2393), @@ -420019,77 +420073,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2393), [sym_preproc_define] = STATE(2393), [sym_preproc_undef] = STATE(2393), - [sym__identifier_token] = ACTIONS(4098), - [anon_sym_alias] = ACTIONS(4098), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_global] = ACTIONS(4098), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_RPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4100), - [anon_sym_file] = ACTIONS(4098), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_where] = ACTIONS(4098), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_notnull] = ACTIONS(4098), - [anon_sym_unmanaged] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_scoped] = ACTIONS(4098), - [anon_sym_EQ_GT] = ACTIONS(4100), - [anon_sym_var] = ACTIONS(4098), - [anon_sym_yield] = ACTIONS(4098), - [anon_sym_switch] = ACTIONS(4098), - [anon_sym_when] = ACTIONS(4098), - [sym_discard] = ACTIONS(4098), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4098), - [anon_sym_or] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_from] = ACTIONS(4098), - [anon_sym_into] = ACTIONS(4098), - [anon_sym_join] = ACTIONS(4098), - [anon_sym_on] = ACTIONS(4098), - [anon_sym_equals] = ACTIONS(4098), - [anon_sym_let] = ACTIONS(4098), - [anon_sym_orderby] = ACTIONS(4098), - [anon_sym_ascending] = ACTIONS(4098), - [anon_sym_descending] = ACTIONS(4098), - [anon_sym_group] = ACTIONS(4098), - [anon_sym_by] = ACTIONS(4098), - [anon_sym_select] = ACTIONS(4098), - [anon_sym_as] = ACTIONS(4098), - [anon_sym_is] = ACTIONS(4098), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4098), - [aux_sym_preproc_if_token3] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3953), + [anon_sym_ref] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_interface] = ACTIONS(3961), + [anon_sym_delegate] = ACTIONS(3963), + [anon_sym_record] = ACTIONS(3965), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(4094), + [anon_sym_fixed] = ACTIONS(65), + [anon_sym_internal] = ACTIONS(65), + [anon_sym_new] = ACTIONS(65), + [anon_sym_override] = ACTIONS(65), + [anon_sym_partial] = ACTIONS(65), + [anon_sym_private] = ACTIONS(65), + [anon_sym_protected] = ACTIONS(65), + [anon_sym_public] = ACTIONS(65), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_required] = ACTIONS(65), + [anon_sym_sealed] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420102,14 +420137,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2394] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2511), - [sym_property_pattern_clause] = STATE(2587), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), + [sym__name] = STATE(2448), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2394), [sym_preproc_endregion] = STATE(2394), [sym_preproc_line] = STATE(2394), @@ -420119,68 +420155,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2394), [sym_preproc_define] = STATE(2394), [sym_preproc_undef] = STATE(2394), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420191,17 +420227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3901), }, [2395] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2511), - [sym_property_pattern_clause] = STATE(2587), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), [sym_preproc_region] = STATE(2395), [sym_preproc_endregion] = STATE(2395), [sym_preproc_line] = STATE(2395), @@ -420211,182 +420238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2395), [sym_preproc_define] = STATE(2395), [sym_preproc_undef] = STATE(2395), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3911), - }, - [2396] = { - [sym_preproc_region] = STATE(2396), - [sym_preproc_endregion] = STATE(2396), - [sym_preproc_line] = STATE(2396), - [sym_preproc_pragma] = STATE(2396), - [sym_preproc_nullable] = STATE(2396), - [sym_preproc_error] = STATE(2396), - [sym_preproc_warning] = STATE(2396), - [sym_preproc_define] = STATE(2396), - [sym_preproc_undef] = STATE(2396), - [sym__identifier_token] = ACTIONS(3674), - [anon_sym_alias] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_global] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_file] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_notnull] = ACTIONS(3674), - [anon_sym_unmanaged] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_scoped] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_when] = ACTIONS(3674), - [sym_discard] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3674), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_into] = ACTIONS(3674), - [anon_sym_join] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_equals] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_orderby] = ACTIONS(3674), - [anon_sym_ascending] = ACTIONS(3674), - [anon_sym_descending] = ACTIONS(3674), - [anon_sym_group] = ACTIONS(3674), - [anon_sym_by] = ACTIONS(3674), - [anon_sym_select] = ACTIONS(3674), - [anon_sym_as] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3674), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3674), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2397] = { - [sym_preproc_region] = STATE(2397), - [sym_preproc_endregion] = STATE(2397), - [sym_preproc_line] = STATE(2397), - [sym_preproc_pragma] = STATE(2397), - [sym_preproc_nullable] = STATE(2397), - [sym_preproc_error] = STATE(2397), - [sym_preproc_warning] = STATE(2397), - [sym_preproc_define] = STATE(2397), - [sym_preproc_undef] = STATE(2397), [sym__identifier_token] = ACTIONS(4102), [anon_sym_alias] = ACTIONS(4102), [anon_sym_SEMI] = ACTIONS(4104), @@ -420469,16 +420320,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2396] = { + [sym_preproc_region] = STATE(2396), + [sym_preproc_endregion] = STATE(2396), + [sym_preproc_line] = STATE(2396), + [sym_preproc_pragma] = STATE(2396), + [sym_preproc_nullable] = STATE(2396), + [sym_preproc_error] = STATE(2396), + [sym_preproc_warning] = STATE(2396), + [sym_preproc_define] = STATE(2396), + [sym_preproc_undef] = STATE(2396), + [sym__identifier_token] = ACTIONS(4106), + [anon_sym_alias] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_global] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_notnull] = ACTIONS(4106), + [anon_sym_unmanaged] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_scoped] = ACTIONS(4106), + [anon_sym_EQ_GT] = ACTIONS(4108), + [anon_sym_var] = ACTIONS(4106), + [anon_sym_yield] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [sym_discard] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4106), + [anon_sym_or] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_from] = ACTIONS(4106), + [anon_sym_into] = ACTIONS(4106), + [anon_sym_join] = ACTIONS(4106), + [anon_sym_on] = ACTIONS(4106), + [anon_sym_equals] = ACTIONS(4106), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_orderby] = ACTIONS(4106), + [anon_sym_ascending] = ACTIONS(4106), + [anon_sym_descending] = ACTIONS(4106), + [anon_sym_group] = ACTIONS(4106), + [anon_sym_by] = ACTIONS(4106), + [anon_sym_select] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4106), + [aux_sym_preproc_if_token3] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2397] = { + [sym_preproc_region] = STATE(2397), + [sym_preproc_endregion] = STATE(2397), + [sym_preproc_line] = STATE(2397), + [sym_preproc_pragma] = STATE(2397), + [sym_preproc_nullable] = STATE(2397), + [sym_preproc_error] = STATE(2397), + [sym_preproc_warning] = STATE(2397), + [sym_preproc_define] = STATE(2397), + [sym_preproc_undef] = STATE(2397), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3736), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2398] = { - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2398), [sym_preproc_endregion] = STATE(2398), [sym_preproc_line] = STATE(2398), @@ -420488,68 +420514,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2398), [sym_preproc_define] = STATE(2398), [sym_preproc_undef] = STATE(2398), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3607), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420571,77 +420606,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2399), [sym_preproc_define] = STATE(2399), [sym_preproc_undef] = STATE(2399), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3736), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3947), + [anon_sym_alias] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_file] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3947), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_notnull] = ACTIONS(3947), + [anon_sym_unmanaged] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_scoped] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_switch] = ACTIONS(3947), + [anon_sym_when] = ACTIONS(3947), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_into] = ACTIONS(3947), + [anon_sym_join] = ACTIONS(3947), + [anon_sym_on] = ACTIONS(3947), + [anon_sym_equals] = ACTIONS(3947), + [anon_sym_let] = ACTIONS(3947), + [anon_sym_orderby] = ACTIONS(3947), + [anon_sym_ascending] = ACTIONS(3947), + [anon_sym_descending] = ACTIONS(3947), + [anon_sym_group] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3947), + [anon_sym_select] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3947), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3947), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420666,63 +420701,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3706), [anon_sym_join] = ACTIONS(3697), [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3736), + [anon_sym_equals] = ACTIONS(3706), [anon_sym_let] = ACTIONS(3697), [anon_sym_orderby] = ACTIONS(3697), [anon_sym_ascending] = ACTIONS(3697), @@ -420730,10 +420765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3697), [anon_sym_by] = ACTIONS(3697), [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420755,77 +420790,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2401), [sym_preproc_define] = STATE(2401), [sym_preproc_undef] = STATE(2401), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), [anon_sym_LBRACK] = ACTIONS(3733), [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3736), - [anon_sym_join] = ACTIONS(3697), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), [anon_sym_on] = ACTIONS(3736), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3716), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420838,6 +420873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2402] = { + [sym_type_argument_list] = STATE(2453), [sym_preproc_region] = STATE(2402), [sym_preproc_endregion] = STATE(2402), [sym_preproc_line] = STATE(2402), @@ -420847,77 +420883,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2402), [sym_preproc_define] = STATE(2402), [sym_preproc_undef] = STATE(2402), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4116), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420930,14 +420965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2403] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2507), - [sym_property_pattern_clause] = STATE(2585), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), [sym_preproc_region] = STATE(2403), [sym_preproc_endregion] = STATE(2403), [sym_preproc_line] = STATE(2403), @@ -420947,68 +420974,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2403), [sym_preproc_define] = STATE(2403), [sym_preproc_undef] = STATE(2403), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(4119), + [anon_sym_alias] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym_global] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_RPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_file] = ACTIONS(4119), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4119), + [anon_sym_where] = ACTIONS(4119), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_notnull] = ACTIONS(4119), + [anon_sym_unmanaged] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_scoped] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(4121), + [anon_sym_var] = ACTIONS(4119), + [anon_sym_yield] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_when] = ACTIONS(4119), + [sym_discard] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4119), + [anon_sym_or] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_from] = ACTIONS(4119), + [anon_sym_into] = ACTIONS(4119), + [anon_sym_join] = ACTIONS(4119), + [anon_sym_on] = ACTIONS(4119), + [anon_sym_equals] = ACTIONS(4119), + [anon_sym_let] = ACTIONS(4119), + [anon_sym_orderby] = ACTIONS(4119), + [anon_sym_ascending] = ACTIONS(4119), + [anon_sym_descending] = ACTIONS(4119), + [anon_sym_group] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4119), + [anon_sym_select] = ACTIONS(4119), + [anon_sym_as] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4119), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4119), + [aux_sym_preproc_if_token3] = ACTIONS(4121), + [aux_sym_preproc_else_token1] = ACTIONS(4121), + [aux_sym_preproc_elif_token1] = ACTIONS(4121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421019,18 +421055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3901), }, [2404] = { - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2404), [sym_preproc_endregion] = STATE(2404), [sym_preproc_line] = STATE(2404), @@ -421040,68 +421066,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2404), [sym_preproc_define] = STATE(2404), [sym_preproc_undef] = STATE(2404), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3607), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3607), - [anon_sym_into] = ACTIONS(3607), - [anon_sym_join] = ACTIONS(3607), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3607), - [anon_sym_orderby] = ACTIONS(3607), - [anon_sym_ascending] = ACTIONS(3607), - [anon_sym_descending] = ACTIONS(3607), - [anon_sym_group] = ACTIONS(3607), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3607), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3706), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421114,15 +421149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2405] = { - [sym__name] = STATE(5277), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(4593), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(2405), [sym_preproc_endregion] = STATE(2405), [sym_preproc_line] = STATE(2405), @@ -421132,68 +421158,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2405), [sym_preproc_define] = STATE(2405), [sym_preproc_undef] = STATE(2405), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4123), + [anon_sym_alias] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_global] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_RBRACK] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4125), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_file] = ACTIONS(4123), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(4123), + [anon_sym_QMARK] = ACTIONS(4123), + [anon_sym_notnull] = ACTIONS(4123), + [anon_sym_unmanaged] = ACTIONS(4123), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4123), + [anon_sym_AMP] = ACTIONS(4123), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_GT_GT] = ACTIONS(4123), + [anon_sym_GT_GT_GT] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_scoped] = ACTIONS(4123), + [anon_sym_EQ_GT] = ACTIONS(4125), + [anon_sym_var] = ACTIONS(4123), + [anon_sym_yield] = ACTIONS(4123), + [anon_sym_switch] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [sym_discard] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4123), + [anon_sym_or] = ACTIONS(4123), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_QMARK_QMARK] = ACTIONS(4125), + [anon_sym_from] = ACTIONS(4123), + [anon_sym_into] = ACTIONS(4123), + [anon_sym_join] = ACTIONS(4123), + [anon_sym_on] = ACTIONS(4123), + [anon_sym_equals] = ACTIONS(4123), + [anon_sym_let] = ACTIONS(4123), + [anon_sym_orderby] = ACTIONS(4123), + [anon_sym_ascending] = ACTIONS(4123), + [anon_sym_descending] = ACTIONS(4123), + [anon_sym_group] = ACTIONS(4123), + [anon_sym_by] = ACTIONS(4123), + [anon_sym_select] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_with] = ACTIONS(4123), + [aux_sym_preproc_if_token3] = ACTIONS(4125), + [aux_sym_preproc_else_token1] = ACTIONS(4125), + [aux_sym_preproc_elif_token1] = ACTIONS(4125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421218,74 +421253,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3697), [anon_sym_alias] = ACTIONS(3697), [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), [anon_sym_notnull] = ACTIONS(3697), [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), [anon_sym_scoped] = ACTIONS(3697), [anon_sym_var] = ACTIONS(3697), [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3701), [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3706), + [anon_sym_into] = ACTIONS(3706), + [anon_sym_join] = ACTIONS(3706), + [anon_sym_on] = ACTIONS(3697), [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3706), + [anon_sym_orderby] = ACTIONS(3706), [anon_sym_ascending] = ACTIONS(3697), [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3706), [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [anon_sym_select] = ACTIONS(3706), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421298,7 +421333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2407] = { - [sym_type_argument_list] = STATE(2464), [sym_preproc_region] = STATE(2407), [sym_preproc_endregion] = STATE(2407), [sym_preproc_line] = STATE(2407), @@ -421308,76 +421342,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2407), [sym_preproc_define] = STATE(2407), [sym_preproc_undef] = STATE(2407), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_in] = ACTIONS(3697), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3697), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3697), + [anon_sym_is] = ACTIONS(3697), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), + [aux_sym_preproc_if_token3] = ACTIONS(3699), + [aux_sym_preproc_else_token1] = ACTIONS(3699), + [aux_sym_preproc_elif_token1] = ACTIONS(3699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421399,77 +421434,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2408), [sym_preproc_define] = STATE(2408), [sym_preproc_undef] = STATE(2408), - [sym__identifier_token] = ACTIONS(3943), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3943), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3943), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_RPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4131), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), + [aux_sym_preproc_if_token3] = ACTIONS(4129), + [aux_sym_preproc_else_token1] = ACTIONS(4129), + [aux_sym_preproc_elif_token1] = ACTIONS(4129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421491,138 +421526,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2409), [sym_preproc_define] = STATE(2409), [sym_preproc_undef] = STATE(2409), - [sym__identifier_token] = ACTIONS(4119), - [anon_sym_alias] = ACTIONS(4119), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_global] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_file] = ACTIONS(4119), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_in] = ACTIONS(4119), - [anon_sym_where] = ACTIONS(4119), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_notnull] = ACTIONS(4119), - [anon_sym_unmanaged] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_scoped] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(4121), - [anon_sym_var] = ACTIONS(4119), - [anon_sym_yield] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_when] = ACTIONS(4119), - [sym_discard] = ACTIONS(4119), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4119), - [anon_sym_or] = ACTIONS(4119), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_from] = ACTIONS(4119), - [anon_sym_into] = ACTIONS(4119), - [anon_sym_join] = ACTIONS(4119), - [anon_sym_on] = ACTIONS(4119), - [anon_sym_equals] = ACTIONS(4119), - [anon_sym_let] = ACTIONS(4119), - [anon_sym_orderby] = ACTIONS(4119), - [anon_sym_ascending] = ACTIONS(4119), - [anon_sym_descending] = ACTIONS(4119), - [anon_sym_group] = ACTIONS(4119), - [anon_sym_by] = ACTIONS(4119), - [anon_sym_select] = ACTIONS(4119), - [anon_sym_as] = ACTIONS(4119), - [anon_sym_is] = ACTIONS(4119), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4119), - [aux_sym_preproc_if_token3] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2410] = { - [sym_preproc_region] = STATE(2410), - [sym_preproc_endregion] = STATE(2410), - [sym_preproc_line] = STATE(2410), - [sym_preproc_pragma] = STATE(2410), - [sym_preproc_nullable] = STATE(2410), - [sym_preproc_error] = STATE(2410), - [sym_preproc_warning] = STATE(2410), - [sym_preproc_define] = STATE(2410), - [sym_preproc_undef] = STATE(2410), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_PLUS_PLUS] = ACTIONS(3731), [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), [anon_sym_EQ_EQ] = ACTIONS(3731), [anon_sym_BANG_EQ] = ACTIONS(3731), [anon_sym_GT_EQ] = ACTIONS(3731), [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), [anon_sym_PLUS_EQ] = ACTIONS(3731), [anon_sym_DASH_EQ] = ACTIONS(3731), [anon_sym_STAR_EQ] = ACTIONS(3731), @@ -421637,23 +421580,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), [anon_sym_AMP_AMP] = ACTIONS(3731), [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3736), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2410] = { + [sym_preproc_region] = STATE(2410), + [sym_preproc_endregion] = STATE(2410), + [sym_preproc_line] = STATE(2410), + [sym_preproc_pragma] = STATE(2410), + [sym_preproc_nullable] = STATE(2410), + [sym_preproc_error] = STATE(2410), + [sym_preproc_warning] = STATE(2410), + [sym_preproc_define] = STATE(2410), + [sym_preproc_undef] = STATE(2410), + [sym__identifier_token] = ACTIONS(3674), + [anon_sym_alias] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_global] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_file] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3674), + [anon_sym_where] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_notnull] = ACTIONS(3674), + [anon_sym_unmanaged] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_scoped] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_when] = ACTIONS(3674), + [sym_discard] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3674), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_into] = ACTIONS(3674), + [anon_sym_join] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_equals] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_orderby] = ACTIONS(3674), + [anon_sym_ascending] = ACTIONS(3674), + [anon_sym_descending] = ACTIONS(3674), + [anon_sym_group] = ACTIONS(3674), + [anon_sym_by] = ACTIONS(3674), + [anon_sym_select] = ACTIONS(3674), + [anon_sym_as] = ACTIONS(3674), + [anon_sym_is] = ACTIONS(3674), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3674), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421675,77 +421710,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2411), [sym_preproc_define] = STATE(2411), [sym_preproc_undef] = STATE(2411), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3728), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421758,14 +421793,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2412] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2511), - [sym_property_pattern_clause] = STATE(2587), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), [sym_preproc_region] = STATE(2412), [sym_preproc_endregion] = STATE(2412), [sym_preproc_line] = STATE(2412), @@ -421775,68 +421802,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2412), [sym_preproc_define] = STATE(2412), [sym_preproc_undef] = STATE(2412), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_RPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4131), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), + [aux_sym_preproc_if_token3] = ACTIONS(4129), + [aux_sym_preproc_else_token1] = ACTIONS(4129), + [aux_sym_preproc_elif_token1] = ACTIONS(4129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421847,7 +421883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3901), }, [2413] = { [sym_preproc_region] = STATE(2413), @@ -421859,77 +421894,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2413), [sym_preproc_define] = STATE(2413), [sym_preproc_undef] = STATE(2413), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3728), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3728), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421951,77 +421986,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2414), [sym_preproc_define] = STATE(2414), [sym_preproc_undef] = STATE(2414), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3706), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422034,25 +422069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2415] = { - [sym_modifier] = STATE(3164), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6168), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(2415), [sym_preproc_endregion] = STATE(2415), [sym_preproc_line] = STATE(2415), @@ -422062,58 +422078,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2415), [sym_preproc_define] = STATE(2415), [sym_preproc_undef] = STATE(2415), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3951), - [anon_sym_ref] = ACTIONS(3953), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_enum] = ACTIONS(3957), - [anon_sym_interface] = ACTIONS(3959), - [anon_sym_delegate] = ACTIONS(3961), - [anon_sym_record] = ACTIONS(3963), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4123), - [anon_sym_fixed] = ACTIONS(65), - [anon_sym_internal] = ACTIONS(65), - [anon_sym_new] = ACTIONS(65), - [anon_sym_override] = ACTIONS(65), - [anon_sym_partial] = ACTIONS(65), - [anon_sym_private] = ACTIONS(65), - [anon_sym_protected] = ACTIONS(65), - [anon_sym_public] = ACTIONS(65), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_required] = ACTIONS(65), - [anon_sym_sealed] = ACTIONS(65), - [anon_sym_virtual] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422126,6 +422161,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2416] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2570), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2416), [sym_preproc_endregion] = STATE(2416), [sym_preproc_line] = STATE(2416), @@ -422135,77 +422178,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2416), [sym_preproc_define] = STATE(2416), [sym_preproc_undef] = STATE(2416), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422216,8 +422250,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3901), }, [2417] = { + [sym__name] = STATE(2448), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2417), [sym_preproc_endregion] = STATE(2417), [sym_preproc_line] = STATE(2417), @@ -422227,77 +422271,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2417), [sym_preproc_define] = STATE(2417), [sym_preproc_undef] = STATE(2417), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_in] = ACTIONS(3697), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3697), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3697), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_into] = ACTIONS(3596), + [anon_sym_join] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_orderby] = ACTIONS(3596), + [anon_sym_ascending] = ACTIONS(3596), + [anon_sym_descending] = ACTIONS(3596), + [anon_sym_group] = ACTIONS(3596), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422319,77 +422354,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2418), [sym_preproc_define] = STATE(2418), [sym_preproc_undef] = STATE(2418), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422411,77 +422446,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2419), [sym_preproc_define] = STATE(2419), [sym_preproc_undef] = STATE(2419), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3736), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3736), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3736), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3736), - [anon_sym_orderby] = ACTIONS(3736), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3736), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), + [sym__identifier_token] = ACTIONS(3666), + [anon_sym_alias] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_global] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_file] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_where] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_notnull] = ACTIONS(3666), + [anon_sym_unmanaged] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_scoped] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_when] = ACTIONS(3666), + [sym_discard] = ACTIONS(3666), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3666), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_into] = ACTIONS(3666), + [anon_sym_join] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_equals] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_orderby] = ACTIONS(3666), + [anon_sym_ascending] = ACTIONS(3666), + [anon_sym_descending] = ACTIONS(3666), + [anon_sym_group] = ACTIONS(3666), + [anon_sym_by] = ACTIONS(3666), + [anon_sym_select] = ACTIONS(3666), + [anon_sym_as] = ACTIONS(3666), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3666), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422494,6 +422529,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2420] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2570), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2420), [sym_preproc_endregion] = STATE(2420), [sym_preproc_line] = STATE(2420), @@ -422503,77 +422546,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2420), [sym_preproc_define] = STATE(2420), [sym_preproc_undef] = STATE(2420), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422584,6 +422618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3911), }, [2421] = { [sym_preproc_region] = STATE(2421), @@ -422595,374 +422630,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2421), [sym_preproc_define] = STATE(2421), [sym_preproc_undef] = STATE(2421), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2422] = { - [sym_preproc_region] = STATE(2422), - [sym_preproc_endregion] = STATE(2422), - [sym_preproc_line] = STATE(2422), - [sym_preproc_pragma] = STATE(2422), - [sym_preproc_nullable] = STATE(2422), - [sym_preproc_error] = STATE(2422), - [sym_preproc_warning] = STATE(2422), - [sym_preproc_define] = STATE(2422), - [sym_preproc_undef] = STATE(2422), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2423] = { - [sym_preproc_region] = STATE(2423), - [sym_preproc_endregion] = STATE(2423), - [sym_preproc_line] = STATE(2423), - [sym_preproc_pragma] = STATE(2423), - [sym_preproc_nullable] = STATE(2423), - [sym_preproc_error] = STATE(2423), - [sym_preproc_warning] = STATE(2423), - [sym_preproc_define] = STATE(2423), - [sym_preproc_undef] = STATE(2423), - [sym__identifier_token] = ACTIONS(4138), - [anon_sym_alias] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4140), - [anon_sym_global] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_COLON] = ACTIONS(4140), - [anon_sym_COMMA] = ACTIONS(4140), - [anon_sym_RBRACK] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4140), - [anon_sym_RPAREN] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4140), - [anon_sym_RBRACE] = ACTIONS(4140), - [anon_sym_file] = ACTIONS(4138), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_in] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_QMARK] = ACTIONS(4138), - [anon_sym_notnull] = ACTIONS(4138), - [anon_sym_unmanaged] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4140), - [anon_sym_PIPE] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_LT_LT] = ACTIONS(4140), - [anon_sym_GT_GT] = ACTIONS(4138), - [anon_sym_GT_GT_GT] = ACTIONS(4140), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_GT_EQ] = ACTIONS(4140), - [anon_sym_LT_EQ] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_scoped] = ACTIONS(4138), - [anon_sym_EQ_GT] = ACTIONS(4140), - [anon_sym_var] = ACTIONS(4138), - [anon_sym_yield] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [sym_discard] = ACTIONS(4138), - [anon_sym_DOT_DOT] = ACTIONS(4140), - [anon_sym_and] = ACTIONS(4138), - [anon_sym_or] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4140), - [anon_sym_PIPE_PIPE] = ACTIONS(4140), - [anon_sym_QMARK_QMARK] = ACTIONS(4140), - [anon_sym_from] = ACTIONS(4138), - [anon_sym_into] = ACTIONS(4138), - [anon_sym_join] = ACTIONS(4138), - [anon_sym_on] = ACTIONS(4138), - [anon_sym_equals] = ACTIONS(4138), - [anon_sym_let] = ACTIONS(4138), - [anon_sym_orderby] = ACTIONS(4138), - [anon_sym_ascending] = ACTIONS(4138), - [anon_sym_descending] = ACTIONS(4138), - [anon_sym_group] = ACTIONS(4138), - [anon_sym_by] = ACTIONS(4138), - [anon_sym_select] = ACTIONS(4138), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_is] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4140), - [anon_sym_with] = ACTIONS(4138), - [aux_sym_preproc_if_token3] = ACTIONS(4140), - [aux_sym_preproc_else_token1] = ACTIONS(4140), - [aux_sym_preproc_elif_token1] = ACTIONS(4140), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2424] = { - [sym_preproc_region] = STATE(2424), - [sym_preproc_endregion] = STATE(2424), - [sym_preproc_line] = STATE(2424), - [sym_preproc_pragma] = STATE(2424), - [sym_preproc_nullable] = STATE(2424), - [sym_preproc_error] = STATE(2424), - [sym_preproc_warning] = STATE(2424), - [sym_preproc_define] = STATE(2424), - [sym_preproc_undef] = STATE(2424), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2425] = { - [sym_preproc_region] = STATE(2425), - [sym_preproc_endregion] = STATE(2425), - [sym_preproc_line] = STATE(2425), - [sym_preproc_pragma] = STATE(2425), - [sym_preproc_nullable] = STATE(2425), - [sym_preproc_error] = STATE(2425), - [sym_preproc_warning] = STATE(2425), - [sym_preproc_define] = STATE(2425), - [sym_preproc_undef] = STATE(2425), [sym__identifier_token] = ACTIONS(4142), [anon_sym_alias] = ACTIONS(4142), [anon_sym_SEMI] = ACTIONS(4144), @@ -423045,16 +422712,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2426] = { - [sym_preproc_region] = STATE(2426), - [sym_preproc_endregion] = STATE(2426), - [sym_preproc_line] = STATE(2426), - [sym_preproc_pragma] = STATE(2426), - [sym_preproc_nullable] = STATE(2426), - [sym_preproc_error] = STATE(2426), - [sym_preproc_warning] = STATE(2426), - [sym_preproc_define] = STATE(2426), - [sym_preproc_undef] = STATE(2426), + [2422] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2570), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), + [sym_preproc_region] = STATE(2422), + [sym_preproc_endregion] = STATE(2422), + [sym_preproc_line] = STATE(2422), + [sym_preproc_pragma] = STATE(2422), + [sym_preproc_nullable] = STATE(2422), + [sym_preproc_error] = STATE(2422), + [sym_preproc_warning] = STATE(2422), + [sym_preproc_define] = STATE(2422), + [sym_preproc_undef] = STATE(2422), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3901), + }, + [2423] = { + [sym_preproc_region] = STATE(2423), + [sym_preproc_endregion] = STATE(2423), + [sym_preproc_line] = STATE(2423), + [sym_preproc_pragma] = STATE(2423), + [sym_preproc_nullable] = STATE(2423), + [sym_preproc_error] = STATE(2423), + [sym_preproc_warning] = STATE(2423), + [sym_preproc_define] = STATE(2423), + [sym_preproc_undef] = STATE(2423), [sym__identifier_token] = ACTIONS(4146), [anon_sym_alias] = ACTIONS(4146), [anon_sym_SEMI] = ACTIONS(4148), @@ -423095,7 +422854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(4148), [anon_sym_DOT] = ACTIONS(4146), [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4148), [anon_sym_var] = ACTIONS(4146), [anon_sym_yield] = ACTIONS(4146), [anon_sym_switch] = ACTIONS(4146), @@ -423137,6 +422896,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2424] = { + [sym_preproc_region] = STATE(2424), + [sym_preproc_endregion] = STATE(2424), + [sym_preproc_line] = STATE(2424), + [sym_preproc_pragma] = STATE(2424), + [sym_preproc_nullable] = STATE(2424), + [sym_preproc_error] = STATE(2424), + [sym_preproc_warning] = STATE(2424), + [sym_preproc_define] = STATE(2424), + [sym_preproc_undef] = STATE(2424), + [sym__identifier_token] = ACTIONS(4150), + [anon_sym_alias] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_global] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_file] = ACTIONS(4150), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_notnull] = ACTIONS(4150), + [anon_sym_unmanaged] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_scoped] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_var] = ACTIONS(4150), + [anon_sym_yield] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [sym_discard] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4150), + [anon_sym_or] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4150), + [anon_sym_into] = ACTIONS(4150), + [anon_sym_join] = ACTIONS(4150), + [anon_sym_on] = ACTIONS(4150), + [anon_sym_equals] = ACTIONS(4150), + [anon_sym_let] = ACTIONS(4150), + [anon_sym_orderby] = ACTIONS(4150), + [anon_sym_ascending] = ACTIONS(4150), + [anon_sym_descending] = ACTIONS(4150), + [anon_sym_group] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4150), + [anon_sym_select] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4150), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2425] = { + [sym_preproc_region] = STATE(2425), + [sym_preproc_endregion] = STATE(2425), + [sym_preproc_line] = STATE(2425), + [sym_preproc_pragma] = STATE(2425), + [sym_preproc_nullable] = STATE(2425), + [sym_preproc_error] = STATE(2425), + [sym_preproc_warning] = STATE(2425), + [sym_preproc_define] = STATE(2425), + [sym_preproc_undef] = STATE(2425), + [sym__identifier_token] = ACTIONS(4154), + [anon_sym_alias] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym_global] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_file] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4154), + [anon_sym_where] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_notnull] = ACTIONS(4154), + [anon_sym_unmanaged] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_scoped] = ACTIONS(4154), + [anon_sym_EQ_GT] = ACTIONS(4156), + [anon_sym_var] = ACTIONS(4154), + [anon_sym_yield] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_when] = ACTIONS(4154), + [sym_discard] = ACTIONS(4154), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4154), + [anon_sym_or] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_from] = ACTIONS(4154), + [anon_sym_into] = ACTIONS(4154), + [anon_sym_join] = ACTIONS(4154), + [anon_sym_on] = ACTIONS(4154), + [anon_sym_equals] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4154), + [anon_sym_orderby] = ACTIONS(4154), + [anon_sym_ascending] = ACTIONS(4154), + [anon_sym_descending] = ACTIONS(4154), + [anon_sym_group] = ACTIONS(4154), + [anon_sym_by] = ACTIONS(4154), + [anon_sym_select] = ACTIONS(4154), + [anon_sym_as] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4154), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4154), + [aux_sym_preproc_if_token3] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2426] = { + [sym_preproc_region] = STATE(2426), + [sym_preproc_endregion] = STATE(2426), + [sym_preproc_line] = STATE(2426), + [sym_preproc_pragma] = STATE(2426), + [sym_preproc_nullable] = STATE(2426), + [sym_preproc_error] = STATE(2426), + [sym_preproc_warning] = STATE(2426), + [sym_preproc_define] = STATE(2426), + [sym_preproc_undef] = STATE(2426), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3736), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2427] = { [sym_preproc_region] = STATE(2427), [sym_preproc_endregion] = STATE(2427), @@ -423147,77 +423182,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2427), [sym_preproc_define] = STATE(2427), [sym_preproc_undef] = STATE(2427), - [sym__identifier_token] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_global] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_RBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_file] = ACTIONS(4146), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_notnull] = ACTIONS(4146), - [anon_sym_unmanaged] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4148), - [anon_sym_EQ_EQ] = ACTIONS(4148), - [anon_sym_BANG_EQ] = ACTIONS(4148), - [anon_sym_GT_EQ] = ACTIONS(4148), - [anon_sym_LT_EQ] = ACTIONS(4148), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4150), - [anon_sym_var] = ACTIONS(4146), - [anon_sym_yield] = ACTIONS(4146), - [anon_sym_switch] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4146), - [sym_discard] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4148), - [anon_sym_from] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4146), - [anon_sym_join] = ACTIONS(4146), - [anon_sym_on] = ACTIONS(4146), - [anon_sym_equals] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_orderby] = ACTIONS(4146), - [anon_sym_ascending] = ACTIONS(4146), - [anon_sym_descending] = ACTIONS(4146), - [anon_sym_group] = ACTIONS(4146), - [anon_sym_by] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4146), - [aux_sym_preproc_if_token3] = ACTIONS(4148), - [aux_sym_preproc_else_token1] = ACTIONS(4148), - [aux_sym_preproc_elif_token1] = ACTIONS(4148), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423239,77 +423274,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2428), [sym_preproc_define] = STATE(2428), [sym_preproc_undef] = STATE(2428), - [sym__identifier_token] = ACTIONS(3670), - [anon_sym_alias] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_global] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_file] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3670), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3670), - [anon_sym_unmanaged] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3672), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3670), - [anon_sym_yield] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_when] = ACTIONS(3670), - [sym_discard] = ACTIONS(3670), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3670), - [anon_sym_or] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3670), - [anon_sym_equals] = ACTIONS(3670), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3670), - [anon_sym_descending] = ACTIONS(3670), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3670), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_is] = ACTIONS(3670), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3670), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423322,6 +423357,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2429] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2517), + [sym_property_pattern_clause] = STATE(2584), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2429), [sym_preproc_endregion] = STATE(2429), [sym_preproc_line] = STATE(2429), @@ -423331,198 +423374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2429), [sym_preproc_define] = STATE(2429), [sym_preproc_undef] = STATE(2429), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2430] = { - [sym_preproc_region] = STATE(2430), - [sym_preproc_endregion] = STATE(2430), - [sym_preproc_line] = STATE(2430), - [sym_preproc_pragma] = STATE(2430), - [sym_preproc_nullable] = STATE(2430), - [sym_preproc_error] = STATE(2430), - [sym_preproc_warning] = STATE(2430), - [sym_preproc_define] = STATE(2430), - [sym_preproc_undef] = STATE(2430), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3733), - [anon_sym_LPAREN] = ACTIONS(3733), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3736), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3736), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3733), - [anon_sym_with] = ACTIONS(3702), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2431] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2507), - [sym_property_pattern_clause] = STATE(2585), - [sym__variable_designation] = STATE(4816), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4399), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2431), - [sym_preproc_endregion] = STATE(2431), - [sym_preproc_line] = STATE(2431), - [sym_preproc_pragma] = STATE(2431), - [sym_preproc_nullable] = STATE(2431), - [sym_preproc_error] = STATE(2431), - [sym_preproc_warning] = STATE(2431), - [sym_preproc_define] = STATE(2431), - [sym_preproc_undef] = STATE(2431), [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), @@ -423597,6 +423448,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3901), }, + [2430] = { + [sym_preproc_region] = STATE(2430), + [sym_preproc_endregion] = STATE(2430), + [sym_preproc_line] = STATE(2430), + [sym_preproc_pragma] = STATE(2430), + [sym_preproc_nullable] = STATE(2430), + [sym_preproc_error] = STATE(2430), + [sym_preproc_warning] = STATE(2430), + [sym_preproc_define] = STATE(2430), + [sym_preproc_undef] = STATE(2430), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3736), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3736), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3733), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2431] = { + [sym_preproc_region] = STATE(2431), + [sym_preproc_endregion] = STATE(2431), + [sym_preproc_line] = STATE(2431), + [sym_preproc_pragma] = STATE(2431), + [sym_preproc_nullable] = STATE(2431), + [sym_preproc_error] = STATE(2431), + [sym_preproc_warning] = STATE(2431), + [sym_preproc_define] = STATE(2431), + [sym_preproc_undef] = STATE(2431), + [sym__identifier_token] = ACTIONS(3670), + [anon_sym_alias] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_global] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_file] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3670), + [anon_sym_where] = ACTIONS(3670), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_notnull] = ACTIONS(3670), + [anon_sym_unmanaged] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3672), + [anon_sym_CARET] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3672), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_scoped] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_when] = ACTIONS(3670), + [sym_discard] = ACTIONS(3670), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_into] = ACTIONS(3670), + [anon_sym_join] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_equals] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_orderby] = ACTIONS(3670), + [anon_sym_ascending] = ACTIONS(3670), + [anon_sym_descending] = ACTIONS(3670), + [anon_sym_group] = ACTIONS(3670), + [anon_sym_by] = ACTIONS(3670), + [anon_sym_select] = ACTIONS(3670), + [anon_sym_as] = ACTIONS(3670), + [anon_sym_is] = ACTIONS(3670), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3670), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2432] = { [sym_preproc_region] = STATE(2432), [sym_preproc_endregion] = STATE(2432), @@ -423690,6 +423725,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2433] = { + [sym__name] = STATE(5258), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(4595), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2433), [sym_preproc_endregion] = STATE(2433), [sym_preproc_line] = STATE(2433), @@ -423699,77 +423743,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2433), [sym_preproc_define] = STATE(2433), [sym_preproc_undef] = STATE(2433), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3725), - [anon_sym_LPAREN] = ACTIONS(3725), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3728), - [anon_sym_QMARK] = ACTIONS(3728), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3728), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3728), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3723), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3723), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3728), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3728), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3728), - [anon_sym_orderby] = ACTIONS(3728), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3728), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3723), - [anon_sym_DASH_GT] = ACTIONS(3725), - [anon_sym_with] = ACTIONS(3723), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423782,6 +423817,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2434] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2517), + [sym_property_pattern_clause] = STATE(2584), + [sym__variable_designation] = STATE(4817), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4445), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2434), [sym_preproc_endregion] = STATE(2434), [sym_preproc_line] = STATE(2434), @@ -423791,77 +423834,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2434), [sym_preproc_define] = STATE(2434), [sym_preproc_undef] = STATE(2434), - [sym__identifier_token] = ACTIONS(4156), - [anon_sym_alias] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym_global] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_file] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_notnull] = ACTIONS(4156), - [anon_sym_unmanaged] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_scoped] = ACTIONS(4156), - [anon_sym_EQ_GT] = ACTIONS(4158), - [anon_sym_var] = ACTIONS(4156), - [anon_sym_yield] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_when] = ACTIONS(4156), - [sym_discard] = ACTIONS(4156), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4156), - [anon_sym_or] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_from] = ACTIONS(4156), - [anon_sym_into] = ACTIONS(4156), - [anon_sym_join] = ACTIONS(4156), - [anon_sym_on] = ACTIONS(4156), - [anon_sym_equals] = ACTIONS(4156), - [anon_sym_let] = ACTIONS(4156), - [anon_sym_orderby] = ACTIONS(4156), - [anon_sym_ascending] = ACTIONS(4156), - [anon_sym_descending] = ACTIONS(4156), - [anon_sym_group] = ACTIONS(4156), - [anon_sym_by] = ACTIONS(4156), - [anon_sym_select] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4156), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4156), - [aux_sym_preproc_if_token3] = ACTIONS(4158), - [aux_sym_preproc_else_token1] = ACTIONS(4158), - [aux_sym_preproc_elif_token1] = ACTIONS(4158), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423872,6 +423906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3901), }, [2435] = { [sym_preproc_region] = STATE(2435), @@ -423883,77 +423918,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2435), [sym_preproc_define] = STATE(2435), [sym_preproc_undef] = STATE(2435), - [sym__identifier_token] = ACTIONS(4160), - [anon_sym_alias] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_global] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_RBRACK] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_RPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_file] = ACTIONS(4160), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_in] = ACTIONS(4160), - [anon_sym_where] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_notnull] = ACTIONS(4160), - [anon_sym_unmanaged] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_scoped] = ACTIONS(4160), - [anon_sym_EQ_GT] = ACTIONS(4162), - [anon_sym_var] = ACTIONS(4160), - [anon_sym_yield] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_when] = ACTIONS(4160), - [sym_discard] = ACTIONS(4160), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4160), - [anon_sym_or] = ACTIONS(4160), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_from] = ACTIONS(4160), - [anon_sym_into] = ACTIONS(4160), - [anon_sym_join] = ACTIONS(4160), - [anon_sym_on] = ACTIONS(4160), - [anon_sym_equals] = ACTIONS(4160), - [anon_sym_let] = ACTIONS(4160), - [anon_sym_orderby] = ACTIONS(4160), - [anon_sym_ascending] = ACTIONS(4160), - [anon_sym_descending] = ACTIONS(4160), - [anon_sym_group] = ACTIONS(4160), - [anon_sym_by] = ACTIONS(4160), - [anon_sym_select] = ACTIONS(4160), - [anon_sym_as] = ACTIONS(4160), - [anon_sym_is] = ACTIONS(4160), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4160), - [aux_sym_preproc_if_token3] = ACTIONS(4162), - [aux_sym_preproc_else_token1] = ACTIONS(4162), - [aux_sym_preproc_elif_token1] = ACTIONS(4162), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3703), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3706), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3701), + [anon_sym_when] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3701), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3706), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423975,76 +424010,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2436), [sym_preproc_define] = STATE(2436), [sym_preproc_undef] = STATE(2436), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_where] = ACTIONS(3668), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3666), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3666), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_PLUS_EQ] = ACTIONS(3668), - [anon_sym_DASH_EQ] = ACTIONS(3668), - [anon_sym_STAR_EQ] = ACTIONS(3668), - [anon_sym_SLASH_EQ] = ACTIONS(3668), - [anon_sym_PERCENT_EQ] = ACTIONS(3668), - [anon_sym_AMP_EQ] = ACTIONS(3668), - [anon_sym_CARET_EQ] = ACTIONS(3668), - [anon_sym_PIPE_EQ] = ACTIONS(3668), - [anon_sym_LT_LT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_join] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_orderby] = ACTIONS(3668), - [anon_sym_group] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_select] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_PLUS_EQ] = ACTIONS(3664), + [anon_sym_DASH_EQ] = ACTIONS(3664), + [anon_sym_STAR_EQ] = ACTIONS(3664), + [anon_sym_SLASH_EQ] = ACTIONS(3664), + [anon_sym_PERCENT_EQ] = ACTIONS(3664), + [anon_sym_AMP_EQ] = ACTIONS(3664), + [anon_sym_CARET_EQ] = ACTIONS(3664), + [anon_sym_PIPE_EQ] = ACTIONS(3664), + [anon_sym_LT_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_join] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_orderby] = ACTIONS(3664), + [anon_sym_group] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_select] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424066,76 +424101,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2437), [sym_preproc_define] = STATE(2437), [sym_preproc_undef] = STATE(2437), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3717), - [anon_sym_into] = ACTIONS(3717), - [anon_sym_join] = ACTIONS(3717), - [anon_sym_on] = ACTIONS(3717), - [anon_sym_equals] = ACTIONS(3717), - [anon_sym_let] = ACTIONS(3717), - [anon_sym_orderby] = ACTIONS(3717), - [anon_sym_group] = ACTIONS(3717), - [anon_sym_by] = ACTIONS(3717), - [anon_sym_select] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_from] = ACTIONS(4164), + [anon_sym_into] = ACTIONS(4164), + [anon_sym_join] = ACTIONS(4164), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_orderby] = ACTIONS(4164), + [anon_sym_group] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_select] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424148,15 +424183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2438] = { - [sym__name] = STATE(3449), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(2438), [sym_preproc_endregion] = STATE(2438), [sym_preproc_line] = STATE(2438), @@ -424166,67 +424192,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2438), [sym_preproc_define] = STATE(2438), [sym_preproc_undef] = STATE(2438), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(4081), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_LT] = ACTIONS(4170), + [anon_sym_GT_GT] = ACTIONS(4170), + [anon_sym_GT_GT_GT] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_EQ_GT] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_or] = ACTIONS(4170), + [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_AMP_EQ] = ACTIONS(4168), + [anon_sym_CARET_EQ] = ACTIONS(4168), + [anon_sym_PIPE_EQ] = ACTIONS(4168), + [anon_sym_LT_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_QMARK_QMARK] = ACTIONS(4170), + [anon_sym_from] = ACTIONS(4168), + [anon_sym_into] = ACTIONS(4168), + [anon_sym_join] = ACTIONS(4168), + [anon_sym_on] = ACTIONS(4168), + [anon_sym_equals] = ACTIONS(4168), + [anon_sym_let] = ACTIONS(4168), + [anon_sym_orderby] = ACTIONS(4168), + [anon_sym_group] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4168), + [anon_sym_select] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_with] = ACTIONS(4168), + [aux_sym_preproc_if_token3] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424248,76 +424283,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2439), [sym_preproc_define] = STATE(2439), [sym_preproc_undef] = STATE(2439), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_where] = ACTIONS(3686), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3684), - [anon_sym_CARET] = ACTIONS(3684), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3684), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3684), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3684), - [anon_sym_PLUS_EQ] = ACTIONS(3686), - [anon_sym_DASH_EQ] = ACTIONS(3686), - [anon_sym_STAR_EQ] = ACTIONS(3686), - [anon_sym_SLASH_EQ] = ACTIONS(3686), - [anon_sym_PERCENT_EQ] = ACTIONS(3686), - [anon_sym_AMP_EQ] = ACTIONS(3686), - [anon_sym_CARET_EQ] = ACTIONS(3686), - [anon_sym_PIPE_EQ] = ACTIONS(3686), - [anon_sym_LT_LT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_into] = ACTIONS(3686), - [anon_sym_join] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_orderby] = ACTIONS(3686), - [anon_sym_group] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_select] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_in] = ACTIONS(4174), + [anon_sym_where] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_EQ_GT] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_from] = ACTIONS(4172), + [anon_sym_into] = ACTIONS(4172), + [anon_sym_join] = ACTIONS(4172), + [anon_sym_on] = ACTIONS(4172), + [anon_sym_equals] = ACTIONS(4172), + [anon_sym_let] = ACTIONS(4172), + [anon_sym_orderby] = ACTIONS(4172), + [anon_sym_group] = ACTIONS(4172), + [anon_sym_by] = ACTIONS(4172), + [anon_sym_select] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), + [aux_sym_preproc_if_token3] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424339,76 +424374,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2440), [sym_preproc_define] = STATE(2440), [sym_preproc_undef] = STATE(2440), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_in] = ACTIONS(4168), - [anon_sym_where] = ACTIONS(4166), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_EQ_GT] = ACTIONS(4166), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4168), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_from] = ACTIONS(4166), - [anon_sym_into] = ACTIONS(4166), - [anon_sym_join] = ACTIONS(4166), - [anon_sym_on] = ACTIONS(4166), - [anon_sym_equals] = ACTIONS(4166), - [anon_sym_let] = ACTIONS(4166), - [anon_sym_orderby] = ACTIONS(4166), - [anon_sym_group] = ACTIONS(4166), - [anon_sym_by] = ACTIONS(4166), - [anon_sym_select] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), - [aux_sym_preproc_if_token3] = ACTIONS(4166), - [aux_sym_preproc_else_token1] = ACTIONS(4166), - [aux_sym_preproc_elif_token1] = ACTIONS(4166), + [sym__identifier_token] = ACTIONS(4176), + [anon_sym_alias] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym_global] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_RBRACK] = ACTIONS(4178), + [anon_sym_LPAREN] = ACTIONS(4178), + [anon_sym_RPAREN] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_file] = ACTIONS(4176), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4176), + [anon_sym_notnull] = ACTIONS(4176), + [anon_sym_unmanaged] = ACTIONS(4176), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4176), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_LT_LT] = ACTIONS(4178), + [anon_sym_GT_GT] = ACTIONS(4176), + [anon_sym_GT_GT_GT] = ACTIONS(4178), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_scoped] = ACTIONS(4176), + [anon_sym_EQ_GT] = ACTIONS(4178), + [anon_sym_var] = ACTIONS(4176), + [anon_sym_yield] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [sym_discard] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_and] = ACTIONS(4176), + [anon_sym_or] = ACTIONS(4176), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_PIPE_PIPE] = ACTIONS(4178), + [anon_sym_QMARK_QMARK] = ACTIONS(4178), + [anon_sym_from] = ACTIONS(4176), + [anon_sym_into] = ACTIONS(4176), + [anon_sym_join] = ACTIONS(4176), + [anon_sym_on] = ACTIONS(4176), + [anon_sym_equals] = ACTIONS(4176), + [anon_sym_let] = ACTIONS(4176), + [anon_sym_orderby] = ACTIONS(4176), + [anon_sym_ascending] = ACTIONS(4176), + [anon_sym_descending] = ACTIONS(4176), + [anon_sym_group] = ACTIONS(4176), + [anon_sym_by] = ACTIONS(4176), + [anon_sym_select] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4178), + [anon_sym_with] = ACTIONS(4176), + [aux_sym_preproc_if_token3] = ACTIONS(4178), + [aux_sym_preproc_else_token1] = ACTIONS(4178), + [aux_sym_preproc_elif_token1] = ACTIONS(4178), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424421,129 +424456,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2441] = { + [sym__name] = STATE(3220), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_ref_type] = STATE(3223), + [sym__scoped_base_type] = STATE(3228), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(2441), [sym_preproc_endregion] = STATE(2441), [sym_preproc_line] = STATE(2441), - [sym_preproc_pragma] = STATE(2441), - [sym_preproc_nullable] = STATE(2441), - [sym_preproc_error] = STATE(2441), - [sym_preproc_warning] = STATE(2441), - [sym_preproc_define] = STATE(2441), - [sym_preproc_undef] = STATE(2441), - [sym__identifier_token] = ACTIONS(4170), - [anon_sym_alias] = ACTIONS(4170), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_global] = ACTIONS(4170), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_COLON] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_RBRACK] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_file] = ACTIONS(4170), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_in] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_QMARK] = ACTIONS(4170), - [anon_sym_notnull] = ACTIONS(4170), - [anon_sym_unmanaged] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4170), - [anon_sym_LT_LT] = ACTIONS(4172), - [anon_sym_GT_GT] = ACTIONS(4170), - [anon_sym_GT_GT_GT] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_scoped] = ACTIONS(4170), - [anon_sym_EQ_GT] = ACTIONS(4172), - [anon_sym_var] = ACTIONS(4170), - [anon_sym_yield] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4170), - [anon_sym_when] = ACTIONS(4170), - [sym_discard] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_and] = ACTIONS(4170), - [anon_sym_or] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_QMARK_QMARK] = ACTIONS(4172), - [anon_sym_from] = ACTIONS(4170), - [anon_sym_into] = ACTIONS(4170), - [anon_sym_join] = ACTIONS(4170), - [anon_sym_on] = ACTIONS(4170), - [anon_sym_equals] = ACTIONS(4170), - [anon_sym_let] = ACTIONS(4170), - [anon_sym_orderby] = ACTIONS(4170), - [anon_sym_ascending] = ACTIONS(4170), - [anon_sym_descending] = ACTIONS(4170), - [anon_sym_group] = ACTIONS(4170), - [anon_sym_by] = ACTIONS(4170), - [anon_sym_select] = ACTIONS(4170), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_DASH_GT] = ACTIONS(4172), - [anon_sym_with] = ACTIONS(4170), - [aux_sym_preproc_if_token3] = ACTIONS(4172), - [aux_sym_preproc_else_token1] = ACTIONS(4172), - [aux_sym_preproc_elif_token1] = ACTIONS(4172), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2442] = { - [sym__name] = STATE(3449), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2442), - [sym_preproc_endregion] = STATE(2442), - [sym_preproc_line] = STATE(2442), - [sym_preproc_pragma] = STATE(2442), - [sym_preproc_nullable] = STATE(2442), - [sym_preproc_error] = STATE(2442), - [sym_preproc_warning] = STATE(2442), - [sym_preproc_define] = STATE(2442), - [sym_preproc_undef] = STATE(2442), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), + [sym_preproc_pragma] = STATE(2441), + [sym_preproc_nullable] = STATE(2441), + [sym_preproc_error] = STATE(2441), + [sym_preproc_warning] = STATE(2441), + [sym_preproc_define] = STATE(2441), + [sym_preproc_undef] = STATE(2441), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4174), + [anon_sym_ref] = ACTIONS(4180), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), + [anon_sym_file] = ACTIONS(3791), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), + [anon_sym_where] = ACTIONS(3791), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -424563,30 +424507,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), + [anon_sym_scoped] = ACTIONS(3791), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), + [anon_sym_var] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3814), + [anon_sym_when] = ACTIONS(3791), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(4081), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3795), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3795), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -424602,16 +424546,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2442] = { + [sym_preproc_region] = STATE(2442), + [sym_preproc_endregion] = STATE(2442), + [sym_preproc_line] = STATE(2442), + [sym_preproc_pragma] = STATE(2442), + [sym_preproc_nullable] = STATE(2442), + [sym_preproc_error] = STATE(2442), + [sym_preproc_warning] = STATE(2442), + [sym_preproc_define] = STATE(2442), + [sym_preproc_undef] = STATE(2442), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4184), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(4184), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_RPAREN] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), + [anon_sym_PIPE] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4184), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_GT_GT_GT] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4184), + [anon_sym_LT_EQ] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_EQ_GT] = ACTIONS(4184), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4184), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4184), + [anon_sym_QMARK_QMARK] = ACTIONS(4184), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4184), + [anon_sym_with] = ACTIONS(4182), + [aux_sym_preproc_if_token3] = ACTIONS(4184), + [aux_sym_preproc_else_token1] = ACTIONS(4184), + [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2443] = { - [sym__name] = STATE(3449), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_ref_type] = STATE(3301), - [sym__scoped_base_type] = STATE(3302), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(2443), [sym_preproc_endregion] = STATE(2443), [sym_preproc_line] = STATE(2443), @@ -424621,67 +424647,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2443), [sym_preproc_define] = STATE(2443), [sym_preproc_undef] = STATE(2443), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(4081), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4192), + [anon_sym_where] = ACTIONS(4186), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_EQ_GT] = ACTIONS(4186), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_from] = ACTIONS(4186), + [anon_sym_into] = ACTIONS(4186), + [anon_sym_join] = ACTIONS(4186), + [anon_sym_on] = ACTIONS(4186), + [anon_sym_equals] = ACTIONS(4186), + [anon_sym_let] = ACTIONS(4186), + [anon_sym_orderby] = ACTIONS(4186), + [anon_sym_group] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4186), + [anon_sym_select] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), + [aux_sym_preproc_if_token3] = ACTIONS(4186), + [aux_sym_preproc_else_token1] = ACTIONS(4186), + [aux_sym_preproc_elif_token1] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424694,15 +424729,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2444] = { - [sym__name] = STATE(3211), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_ref_type] = STATE(3214), - [sym__scoped_base_type] = STATE(3216), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym__name] = STATE(3483), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2444), [sym_preproc_endregion] = STATE(2444), [sym_preproc_line] = STATE(2444), @@ -424712,20 +424747,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2444), [sym_preproc_define] = STATE(2444), [sym_preproc_undef] = STATE(2444), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4178), + [anon_sym_ref] = ACTIONS(4194), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3791), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -424745,30 +424780,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(3800), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3800), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3795), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3795), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(4083), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -424785,15 +424820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2445] = { - [sym__name] = STATE(3211), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_ref_type] = STATE(3214), - [sym__scoped_base_type] = STATE(3216), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), [sym_preproc_region] = STATE(2445), [sym_preproc_endregion] = STATE(2445), [sym_preproc_line] = STATE(2445), @@ -424803,67 +424829,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2445), [sym_preproc_define] = STATE(2445), [sym_preproc_undef] = STATE(2445), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3791), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3795), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3795), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424876,15 +424911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2446] = { - [sym__name] = STATE(3211), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_ref_type] = STATE(3214), - [sym__scoped_base_type] = STATE(3216), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), [sym_preproc_region] = STATE(2446), [sym_preproc_endregion] = STATE(2446), [sym_preproc_line] = STATE(2446), @@ -424894,67 +424920,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2446), [sym_preproc_define] = STATE(2446), [sym_preproc_undef] = STATE(2446), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3791), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3791), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3795), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3795), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4198), + [anon_sym_alias] = ACTIONS(4198), + [anon_sym_SEMI] = ACTIONS(4200), + [anon_sym_global] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_COMMA] = ACTIONS(4200), + [anon_sym_RBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(4200), + [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym_file] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4198), + [anon_sym_GT] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4198), + [anon_sym_where] = ACTIONS(4198), + [anon_sym_QMARK] = ACTIONS(4198), + [anon_sym_notnull] = ACTIONS(4198), + [anon_sym_unmanaged] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_CARET] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_LT_LT] = ACTIONS(4200), + [anon_sym_GT_GT] = ACTIONS(4198), + [anon_sym_GT_GT_GT] = ACTIONS(4200), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_GT_EQ] = ACTIONS(4200), + [anon_sym_LT_EQ] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_scoped] = ACTIONS(4198), + [anon_sym_EQ_GT] = ACTIONS(4200), + [anon_sym_var] = ACTIONS(4198), + [anon_sym_yield] = ACTIONS(4198), + [anon_sym_switch] = ACTIONS(4198), + [anon_sym_when] = ACTIONS(4198), + [sym_discard] = ACTIONS(4198), + [anon_sym_DOT_DOT] = ACTIONS(4200), + [anon_sym_and] = ACTIONS(4198), + [anon_sym_or] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4200), + [anon_sym_PIPE_PIPE] = ACTIONS(4200), + [anon_sym_QMARK_QMARK] = ACTIONS(4200), + [anon_sym_from] = ACTIONS(4198), + [anon_sym_into] = ACTIONS(4198), + [anon_sym_join] = ACTIONS(4198), + [anon_sym_on] = ACTIONS(4198), + [anon_sym_equals] = ACTIONS(4198), + [anon_sym_let] = ACTIONS(4198), + [anon_sym_orderby] = ACTIONS(4198), + [anon_sym_ascending] = ACTIONS(4198), + [anon_sym_descending] = ACTIONS(4198), + [anon_sym_group] = ACTIONS(4198), + [anon_sym_by] = ACTIONS(4198), + [anon_sym_select] = ACTIONS(4198), + [anon_sym_as] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4200), + [anon_sym_with] = ACTIONS(4198), + [aux_sym_preproc_if_token3] = ACTIONS(4200), + [aux_sym_preproc_else_token1] = ACTIONS(4200), + [aux_sym_preproc_elif_token1] = ACTIONS(4200), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424976,76 +425011,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2447), [sym_preproc_define] = STATE(2447), [sym_preproc_undef] = STATE(2447), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_from] = ACTIONS(4184), - [anon_sym_into] = ACTIONS(4184), - [anon_sym_join] = ACTIONS(4184), - [anon_sym_on] = ACTIONS(4184), - [anon_sym_equals] = ACTIONS(4184), - [anon_sym_let] = ACTIONS(4184), - [anon_sym_orderby] = ACTIONS(4184), - [anon_sym_group] = ACTIONS(4184), - [anon_sym_by] = ACTIONS(4184), - [anon_sym_select] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), - [aux_sym_preproc_if_token3] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425067,76 +425102,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2448), [sym_preproc_define] = STATE(2448), [sym_preproc_undef] = STATE(2448), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_EQ] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3674), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3674), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_PLUS_EQ] = ACTIONS(3676), - [anon_sym_DASH_EQ] = ACTIONS(3676), - [anon_sym_STAR_EQ] = ACTIONS(3676), - [anon_sym_SLASH_EQ] = ACTIONS(3676), - [anon_sym_PERCENT_EQ] = ACTIONS(3676), - [anon_sym_AMP_EQ] = ACTIONS(3676), - [anon_sym_CARET_EQ] = ACTIONS(3676), - [anon_sym_PIPE_EQ] = ACTIONS(3676), - [anon_sym_LT_LT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_into] = ACTIONS(3676), - [anon_sym_join] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_orderby] = ACTIONS(3676), - [anon_sym_group] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_select] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [sym__identifier_token] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(4026), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_is] = ACTIONS(4026), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4026), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425158,76 +425193,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2449), [sym_preproc_define] = STATE(2449), [sym_preproc_undef] = STATE(2449), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3459), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3459), - [anon_sym_into] = ACTIONS(3459), - [anon_sym_join] = ACTIONS(3459), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_orderby] = ACTIONS(3459), - [anon_sym_group] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_select] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425249,76 +425284,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2450), [sym_preproc_define] = STATE(2450), [sym_preproc_undef] = STATE(2450), - [anon_sym_SEMI] = ACTIONS(4192), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_RBRACK] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_RPAREN] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_EQ_GT] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4194), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_from] = ACTIONS(4192), - [anon_sym_into] = ACTIONS(4192), - [anon_sym_join] = ACTIONS(4192), - [anon_sym_on] = ACTIONS(4192), - [anon_sym_equals] = ACTIONS(4192), - [anon_sym_let] = ACTIONS(4192), - [anon_sym_orderby] = ACTIONS(4192), - [anon_sym_group] = ACTIONS(4192), - [anon_sym_by] = ACTIONS(4192), - [anon_sym_select] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4192), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), - [aux_sym_preproc_if_token3] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425331,15 +425366,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2451] = { - [sym__name] = STATE(4165), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_ref_type] = STATE(2991), - [sym__scoped_base_type] = STATE(2992), - [sym_identifier] = STATE(3795), - [sym__reserved_identifier] = STATE(2934), + [sym__name] = STATE(3127), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2451), [sym_preproc_endregion] = STATE(2451), [sym_preproc_line] = STATE(2451), @@ -425349,20 +425384,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2451), [sym_preproc_define] = STATE(2451), [sym_preproc_undef] = STATE(2451), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4196), + [anon_sym_ref] = ACTIONS(4208), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3844), + [anon_sym_file] = ACTIONS(3893), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3848), + [anon_sym_where] = ACTIONS(4210), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -425382,30 +425417,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3844), + [anon_sym_scoped] = ACTIONS(3893), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3844), + [anon_sym_when] = ACTIONS(3893), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3848), - [anon_sym_into] = ACTIONS(3848), - [anon_sym_join] = ACTIONS(3848), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3848), - [anon_sym_orderby] = ACTIONS(3848), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3848), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3848), + [anon_sym_from] = ACTIONS(4210), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(4210), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_orderby] = ACTIONS(4210), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(4210), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -425431,76 +425466,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2452), [sym_preproc_define] = STATE(2452), [sym_preproc_undef] = STATE(2452), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_EQ] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3664), - [anon_sym_DASH_EQ] = ACTIONS(3664), - [anon_sym_STAR_EQ] = ACTIONS(3664), - [anon_sym_SLASH_EQ] = ACTIONS(3664), - [anon_sym_PERCENT_EQ] = ACTIONS(3664), - [anon_sym_AMP_EQ] = ACTIONS(3664), - [anon_sym_CARET_EQ] = ACTIONS(3664), - [anon_sym_PIPE_EQ] = ACTIONS(3664), - [anon_sym_LT_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_join] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_orderby] = ACTIONS(3664), - [anon_sym_group] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_select] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_RBRACK] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_in] = ACTIONS(4215), + [anon_sym_where] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_EQ_GT] = ACTIONS(4213), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4215), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_from] = ACTIONS(4213), + [anon_sym_into] = ACTIONS(4213), + [anon_sym_join] = ACTIONS(4213), + [anon_sym_on] = ACTIONS(4213), + [anon_sym_equals] = ACTIONS(4213), + [anon_sym_let] = ACTIONS(4213), + [anon_sym_orderby] = ACTIONS(4213), + [anon_sym_group] = ACTIONS(4213), + [anon_sym_by] = ACTIONS(4213), + [anon_sym_select] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4213), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [aux_sym_preproc_if_token3] = ACTIONS(4213), + [aux_sym_preproc_else_token1] = ACTIONS(4213), + [aux_sym_preproc_elif_token1] = ACTIONS(4213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425522,76 +425557,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2453), [sym_preproc_define] = STATE(2453), [sym_preproc_undef] = STATE(2453), - [sym__identifier_token] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4198), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(4013), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4013), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4013), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4013), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_where] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3666), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3666), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_PLUS_EQ] = ACTIONS(3668), + [anon_sym_DASH_EQ] = ACTIONS(3668), + [anon_sym_STAR_EQ] = ACTIONS(3668), + [anon_sym_SLASH_EQ] = ACTIONS(3668), + [anon_sym_PERCENT_EQ] = ACTIONS(3668), + [anon_sym_AMP_EQ] = ACTIONS(3668), + [anon_sym_CARET_EQ] = ACTIONS(3668), + [anon_sym_PIPE_EQ] = ACTIONS(3668), + [anon_sym_LT_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_join] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_orderby] = ACTIONS(3668), + [anon_sym_group] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_select] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425613,76 +425648,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2454), [sym_preproc_define] = STATE(2454), [sym_preproc_undef] = STATE(2454), - [sym__identifier_token] = ACTIONS(4200), - [anon_sym_alias] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_global] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_file] = ACTIONS(4200), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_QMARK] = ACTIONS(4200), - [anon_sym_notnull] = ACTIONS(4200), - [anon_sym_unmanaged] = ACTIONS(4200), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_CARET] = ACTIONS(4202), - [anon_sym_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_LT_LT] = ACTIONS(4202), - [anon_sym_GT_GT] = ACTIONS(4200), - [anon_sym_GT_GT_GT] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_scoped] = ACTIONS(4200), - [anon_sym_EQ_GT] = ACTIONS(4202), - [anon_sym_var] = ACTIONS(4200), - [anon_sym_yield] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [sym_discard] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_and] = ACTIONS(4200), - [anon_sym_or] = ACTIONS(4200), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_QMARK_QMARK] = ACTIONS(4202), - [anon_sym_from] = ACTIONS(4200), - [anon_sym_into] = ACTIONS(4200), - [anon_sym_join] = ACTIONS(4200), - [anon_sym_on] = ACTIONS(4200), - [anon_sym_equals] = ACTIONS(4200), - [anon_sym_let] = ACTIONS(4200), - [anon_sym_orderby] = ACTIONS(4200), - [anon_sym_ascending] = ACTIONS(4200), - [anon_sym_descending] = ACTIONS(4200), - [anon_sym_group] = ACTIONS(4200), - [anon_sym_by] = ACTIONS(4200), - [anon_sym_select] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [anon_sym_with] = ACTIONS(4200), - [aux_sym_preproc_if_token3] = ACTIONS(4202), - [aux_sym_preproc_else_token1] = ACTIONS(4202), - [aux_sym_preproc_elif_token1] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_where] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3684), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3684), + [anon_sym_PLUS_EQ] = ACTIONS(3686), + [anon_sym_DASH_EQ] = ACTIONS(3686), + [anon_sym_STAR_EQ] = ACTIONS(3686), + [anon_sym_SLASH_EQ] = ACTIONS(3686), + [anon_sym_PERCENT_EQ] = ACTIONS(3686), + [anon_sym_AMP_EQ] = ACTIONS(3686), + [anon_sym_CARET_EQ] = ACTIONS(3686), + [anon_sym_PIPE_EQ] = ACTIONS(3686), + [anon_sym_LT_LT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_into] = ACTIONS(3686), + [anon_sym_join] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_orderby] = ACTIONS(3686), + [anon_sym_group] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_select] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425704,76 +425739,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2455), [sym_preproc_define] = STATE(2455), [sym_preproc_undef] = STATE(2455), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_RBRACK] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_EQ_GT] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_from] = ACTIONS(4204), - [anon_sym_into] = ACTIONS(4204), - [anon_sym_join] = ACTIONS(4204), - [anon_sym_on] = ACTIONS(4204), - [anon_sym_equals] = ACTIONS(4204), - [anon_sym_let] = ACTIONS(4204), - [anon_sym_orderby] = ACTIONS(4204), - [anon_sym_group] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4204), - [anon_sym_select] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), - [aux_sym_preproc_if_token3] = ACTIONS(4204), - [aux_sym_preproc_else_token1] = ACTIONS(4204), - [aux_sym_preproc_elif_token1] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3670), + [anon_sym_where] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3670), + [anon_sym_PLUS_EQ] = ACTIONS(3672), + [anon_sym_DASH_EQ] = ACTIONS(3672), + [anon_sym_STAR_EQ] = ACTIONS(3672), + [anon_sym_SLASH_EQ] = ACTIONS(3672), + [anon_sym_PERCENT_EQ] = ACTIONS(3672), + [anon_sym_AMP_EQ] = ACTIONS(3672), + [anon_sym_CARET_EQ] = ACTIONS(3672), + [anon_sym_PIPE_EQ] = ACTIONS(3672), + [anon_sym_LT_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_join] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_orderby] = ACTIONS(3672), + [anon_sym_group] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_select] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425795,76 +425830,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2456), [sym_preproc_define] = STATE(2456), [sym_preproc_undef] = STATE(2456), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4198), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_EQ] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3674), + [anon_sym_where] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3674), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3674), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_PLUS_EQ] = ACTIONS(3676), + [anon_sym_DASH_EQ] = ACTIONS(3676), + [anon_sym_STAR_EQ] = ACTIONS(3676), + [anon_sym_SLASH_EQ] = ACTIONS(3676), + [anon_sym_PERCENT_EQ] = ACTIONS(3676), + [anon_sym_AMP_EQ] = ACTIONS(3676), + [anon_sym_CARET_EQ] = ACTIONS(3676), + [anon_sym_PIPE_EQ] = ACTIONS(3676), + [anon_sym_LT_LT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_into] = ACTIONS(3676), + [anon_sym_join] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_orderby] = ACTIONS(3676), + [anon_sym_group] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_select] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425886,76 +425921,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2457), [sym_preproc_define] = STATE(2457), [sym_preproc_undef] = STATE(2457), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3731), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3731), + [anon_sym_into] = ACTIONS(3731), + [anon_sym_join] = ACTIONS(3731), + [anon_sym_on] = ACTIONS(3731), + [anon_sym_equals] = ACTIONS(3731), + [anon_sym_let] = ACTIONS(3731), + [anon_sym_orderby] = ACTIONS(3731), + [anon_sym_group] = ACTIONS(3731), + [anon_sym_by] = ACTIONS(3731), + [anon_sym_select] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [aux_sym_preproc_if_token3] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3731), + [aux_sym_preproc_elif_token1] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425977,76 +426012,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2458), [sym_preproc_define] = STATE(2458), [sym_preproc_undef] = STATE(2458), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4210), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_from] = ACTIONS(4208), - [anon_sym_into] = ACTIONS(4208), - [anon_sym_join] = ACTIONS(4208), - [anon_sym_on] = ACTIONS(4208), - [anon_sym_equals] = ACTIONS(4208), - [anon_sym_let] = ACTIONS(4208), - [anon_sym_orderby] = ACTIONS(4208), - [anon_sym_group] = ACTIONS(4208), - [anon_sym_by] = ACTIONS(4208), - [anon_sym_select] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), - [aux_sym_preproc_if_token3] = ACTIONS(4208), - [aux_sym_preproc_else_token1] = ACTIONS(4208), - [aux_sym_preproc_elif_token1] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_EQ_GT] = ACTIONS(4190), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_from] = ACTIONS(4190), + [anon_sym_into] = ACTIONS(4190), + [anon_sym_join] = ACTIONS(4190), + [anon_sym_on] = ACTIONS(4190), + [anon_sym_equals] = ACTIONS(4190), + [anon_sym_let] = ACTIONS(4190), + [anon_sym_orderby] = ACTIONS(4190), + [anon_sym_group] = ACTIONS(4190), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_select] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), + [aux_sym_preproc_if_token3] = ACTIONS(4190), + [aux_sym_preproc_else_token1] = ACTIONS(4190), + [aux_sym_preproc_elif_token1] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426059,6 +426094,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2459] = { + [sym__name] = STATE(3483), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2459), [sym_preproc_endregion] = STATE(2459), [sym_preproc_line] = STATE(2459), @@ -426068,76 +426112,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2459), [sym_preproc_define] = STATE(2459), [sym_preproc_undef] = STATE(2459), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_in] = ACTIONS(4214), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = ACTIONS(4214), - [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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_from] = ACTIONS(4212), - [anon_sym_into] = ACTIONS(4212), - [anon_sym_join] = ACTIONS(4212), - [anon_sym_on] = ACTIONS(4212), - [anon_sym_equals] = ACTIONS(4212), - [anon_sym_let] = ACTIONS(4212), - [anon_sym_orderby] = ACTIONS(4212), - [anon_sym_group] = ACTIONS(4212), - [anon_sym_by] = ACTIONS(4212), - [anon_sym_select] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(4083), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426159,76 +426194,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2460), [sym_preproc_define] = STATE(2460), [sym_preproc_undef] = STATE(2460), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4216), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COMMA] = ACTIONS(4216), - [anon_sym_RBRACK] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_RBRACE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(4218), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PLUS_PLUS] = ACTIONS(4216), - [anon_sym_DASH_DASH] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_LT] = ACTIONS(4218), - [anon_sym_GT_GT] = ACTIONS(4218), - [anon_sym_GT_GT_GT] = ACTIONS(4218), - [anon_sym_EQ_EQ] = ACTIONS(4216), - [anon_sym_BANG_EQ] = ACTIONS(4216), - [anon_sym_GT_EQ] = ACTIONS(4216), - [anon_sym_LT_EQ] = ACTIONS(4216), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_EQ_GT] = ACTIONS(4216), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_DOT_DOT] = ACTIONS(4216), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4218), - [anon_sym_PLUS_EQ] = ACTIONS(4216), - [anon_sym_DASH_EQ] = ACTIONS(4216), - [anon_sym_STAR_EQ] = ACTIONS(4216), - [anon_sym_SLASH_EQ] = ACTIONS(4216), - [anon_sym_PERCENT_EQ] = ACTIONS(4216), - [anon_sym_AMP_EQ] = ACTIONS(4216), - [anon_sym_CARET_EQ] = ACTIONS(4216), - [anon_sym_PIPE_EQ] = ACTIONS(4216), - [anon_sym_LT_LT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_QMARK_QMARK] = ACTIONS(4218), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4216), - [anon_sym_equals] = ACTIONS(4216), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4216), - [anon_sym_with] = ACTIONS(4216), - [aux_sym_preproc_if_token3] = ACTIONS(4216), - [aux_sym_preproc_else_token1] = ACTIONS(4216), - [aux_sym_preproc_elif_token1] = ACTIONS(4216), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_RBRACK] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_RPAREN] = ACTIONS(4221), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_in] = ACTIONS(4219), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_LT_LT] = ACTIONS(4221), + [anon_sym_GT_GT] = ACTIONS(4219), + [anon_sym_GT_GT_GT] = ACTIONS(4221), + [anon_sym_EQ_EQ] = ACTIONS(4221), + [anon_sym_BANG_EQ] = ACTIONS(4221), + [anon_sym_GT_EQ] = ACTIONS(4221), + [anon_sym_LT_EQ] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_EQ_GT] = ACTIONS(4221), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4221), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_PIPE_PIPE] = ACTIONS(4221), + [anon_sym_QMARK_QMARK] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4219), + [anon_sym_is] = ACTIONS(4219), + [anon_sym_DASH_GT] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4219), + [aux_sym_preproc_if_token3] = ACTIONS(4221), + [aux_sym_preproc_else_token1] = ACTIONS(4221), + [aux_sym_preproc_elif_token1] = ACTIONS(4221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426250,76 +426285,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2461), [sym_preproc_define] = STATE(2461), [sym_preproc_undef] = STATE(2461), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_QMARK_QMARK] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_RBRACK] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_RPAREN] = ACTIONS(4221), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_in] = ACTIONS(4219), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_LT_LT] = ACTIONS(4221), + [anon_sym_GT_GT] = ACTIONS(4219), + [anon_sym_GT_GT_GT] = ACTIONS(4221), + [anon_sym_EQ_EQ] = ACTIONS(4221), + [anon_sym_BANG_EQ] = ACTIONS(4221), + [anon_sym_GT_EQ] = ACTIONS(4221), + [anon_sym_LT_EQ] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_EQ_GT] = ACTIONS(4221), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4221), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_PIPE_PIPE] = ACTIONS(4221), + [anon_sym_QMARK_QMARK] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4219), + [anon_sym_is] = ACTIONS(4219), + [anon_sym_DASH_GT] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4219), + [aux_sym_preproc_if_token3] = ACTIONS(4221), + [aux_sym_preproc_else_token1] = ACTIONS(4221), + [aux_sym_preproc_elif_token1] = ACTIONS(4221), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426332,6 +426367,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2462] = { + [sym__name] = STATE(3483), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_ref_type] = STATE(3271), + [sym__scoped_base_type] = STATE(3273), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2462), [sym_preproc_endregion] = STATE(2462), [sym_preproc_line] = STATE(2462), @@ -426341,76 +426385,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2462), [sym_preproc_define] = STATE(2462), [sym_preproc_undef] = STATE(2462), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_QMARK_QMARK] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4222), - [aux_sym_preproc_else_token1] = ACTIONS(4222), - [aux_sym_preproc_elif_token1] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(4083), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426430,169 +426465,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_nullable] = STATE(2463), [sym_preproc_error] = STATE(2463), [sym_preproc_warning] = STATE(2463), - [sym_preproc_define] = STATE(2463), - [sym_preproc_undef] = STATE(2463), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_COLON] = ACTIONS(4226), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_EQ_GT] = ACTIONS(4226), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_QMARK_QMARK] = ACTIONS(4226), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4226), - [anon_sym_with] = ACTIONS(4224), - [aux_sym_preproc_if_token3] = ACTIONS(4226), - [aux_sym_preproc_else_token1] = ACTIONS(4226), - [aux_sym_preproc_elif_token1] = ACTIONS(4226), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2464] = { - [sym_preproc_region] = STATE(2464), - [sym_preproc_endregion] = STATE(2464), - [sym_preproc_line] = STATE(2464), - [sym_preproc_pragma] = STATE(2464), - [sym_preproc_nullable] = STATE(2464), - [sym_preproc_error] = STATE(2464), - [sym_preproc_warning] = STATE(2464), - [sym_preproc_define] = STATE(2464), - [sym_preproc_undef] = STATE(2464), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3670), - [anon_sym_where] = ACTIONS(3672), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3670), - [anon_sym_PLUS_EQ] = ACTIONS(3672), - [anon_sym_DASH_EQ] = ACTIONS(3672), - [anon_sym_STAR_EQ] = ACTIONS(3672), - [anon_sym_SLASH_EQ] = ACTIONS(3672), - [anon_sym_PERCENT_EQ] = ACTIONS(3672), - [anon_sym_AMP_EQ] = ACTIONS(3672), - [anon_sym_CARET_EQ] = ACTIONS(3672), - [anon_sym_PIPE_EQ] = ACTIONS(3672), - [anon_sym_LT_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_join] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_orderby] = ACTIONS(3672), - [anon_sym_group] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_select] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [sym_preproc_define] = STATE(2463), + [sym_preproc_undef] = STATE(2463), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_in] = ACTIONS(4227), + [anon_sym_where] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_EQ_GT] = ACTIONS(4225), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4227), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_from] = ACTIONS(4225), + [anon_sym_into] = ACTIONS(4225), + [anon_sym_join] = ACTIONS(4225), + [anon_sym_on] = ACTIONS(4225), + [anon_sym_equals] = ACTIONS(4225), + [anon_sym_let] = ACTIONS(4225), + [anon_sym_orderby] = ACTIONS(4225), + [anon_sym_group] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4225), + [anon_sym_select] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [aux_sym_preproc_if_token3] = ACTIONS(4225), + [aux_sym_preproc_else_token1] = ACTIONS(4225), + [aux_sym_preproc_elif_token1] = ACTIONS(4225), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2464] = { + [sym_preproc_region] = STATE(2464), + [sym_preproc_endregion] = STATE(2464), + [sym_preproc_line] = STATE(2464), + [sym_preproc_pragma] = STATE(2464), + [sym_preproc_nullable] = STATE(2464), + [sym_preproc_error] = STATE(2464), + [sym_preproc_warning] = STATE(2464), + [sym_preproc_define] = STATE(2464), + [sym_preproc_undef] = STATE(2464), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4184), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(4184), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_RPAREN] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), + [anon_sym_PIPE] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4184), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_GT_GT_GT] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4184), + [anon_sym_LT_EQ] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_EQ_GT] = ACTIONS(4184), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4184), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4184), + [anon_sym_QMARK_QMARK] = ACTIONS(4184), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4184), + [anon_sym_with] = ACTIONS(4182), + [aux_sym_preproc_if_token3] = ACTIONS(4184), + [aux_sym_preproc_else_token1] = ACTIONS(4184), + [aux_sym_preproc_elif_token1] = ACTIONS(4184), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426614,76 +426649,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2465), [sym_preproc_define] = STATE(2465), [sym_preproc_undef] = STATE(2465), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_COLON] = ACTIONS(4226), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_EQ_GT] = ACTIONS(4226), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_QMARK_QMARK] = ACTIONS(4226), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4226), - [anon_sym_with] = ACTIONS(4224), - [aux_sym_preproc_if_token3] = ACTIONS(4226), - [aux_sym_preproc_else_token1] = ACTIONS(4226), - [aux_sym_preproc_elif_token1] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3709), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_switch] = ACTIONS(3709), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3709), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3709), + [anon_sym_into] = ACTIONS(3709), + [anon_sym_join] = ACTIONS(3709), + [anon_sym_on] = ACTIONS(3709), + [anon_sym_equals] = ACTIONS(3709), + [anon_sym_let] = ACTIONS(3709), + [anon_sym_orderby] = ACTIONS(3709), + [anon_sym_group] = ACTIONS(3709), + [anon_sym_by] = ACTIONS(3709), + [anon_sym_select] = ACTIONS(3709), + [anon_sym_as] = ACTIONS(3709), + [anon_sym_is] = ACTIONS(3709), + [anon_sym_DASH_GT] = ACTIONS(3709), + [anon_sym_with] = ACTIONS(3709), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426696,6 +426731,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2466] = { + [sym__name] = STATE(3220), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_ref_type] = STATE(3223), + [sym__scoped_base_type] = STATE(3228), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(2466), [sym_preproc_endregion] = STATE(2466), [sym_preproc_line] = STATE(2466), @@ -426705,76 +426749,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2466), [sym_preproc_define] = STATE(2466), [sym_preproc_undef] = STATE(2466), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_in] = ACTIONS(4186), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4186), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3791), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3795), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3795), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426796,76 +426831,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2467), [sym_preproc_define] = STATE(2467), [sym_preproc_undef] = STATE(2467), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_RBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3723), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3731), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3731), - [anon_sym_into] = ACTIONS(3731), - [anon_sym_join] = ACTIONS(3731), - [anon_sym_on] = ACTIONS(3731), - [anon_sym_equals] = ACTIONS(3731), - [anon_sym_let] = ACTIONS(3731), - [anon_sym_orderby] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3731), - [anon_sym_DASH_GT] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), - [aux_sym_preproc_if_token3] = ACTIONS(3731), - [aux_sym_preproc_else_token1] = ACTIONS(3731), - [aux_sym_preproc_elif_token1] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3459), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3459), + [anon_sym_into] = ACTIONS(3459), + [anon_sym_join] = ACTIONS(3459), + [anon_sym_on] = ACTIONS(3459), + [anon_sym_equals] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_orderby] = ACTIONS(3459), + [anon_sym_group] = ACTIONS(3459), + [anon_sym_by] = ACTIONS(3459), + [anon_sym_select] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426878,6 +426913,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2468] = { + [sym__name] = STATE(4108), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_ref_type] = STATE(2994), + [sym__scoped_base_type] = STATE(2965), + [sym_identifier] = STATE(3787), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2468), [sym_preproc_endregion] = STATE(2468), [sym_preproc_line] = STATE(2468), @@ -426887,76 +426931,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2468), [sym_preproc_define] = STATE(2468), [sym_preproc_undef] = STATE(2468), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3875), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3875), + [anon_sym_into] = ACTIONS(3875), + [anon_sym_join] = ACTIONS(3875), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3875), + [anon_sym_orderby] = ACTIONS(3875), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3875), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3875), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426978,76 +427013,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2469), [sym_preproc_define] = STATE(2469), [sym_preproc_undef] = STATE(2469), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4230), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_RBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_in] = ACTIONS(4235), + [anon_sym_where] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_EQ_GT] = ACTIONS(4233), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4235), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_from] = ACTIONS(4233), + [anon_sym_into] = ACTIONS(4233), + [anon_sym_join] = ACTIONS(4233), + [anon_sym_on] = ACTIONS(4233), + [anon_sym_equals] = ACTIONS(4233), + [anon_sym_let] = ACTIONS(4233), + [anon_sym_orderby] = ACTIONS(4233), + [anon_sym_group] = ACTIONS(4233), + [anon_sym_by] = ACTIONS(4233), + [anon_sym_select] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4233), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [aux_sym_preproc_if_token3] = ACTIONS(4233), + [aux_sym_preproc_else_token1] = ACTIONS(4233), + [aux_sym_preproc_elif_token1] = ACTIONS(4233), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427060,15 +427095,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2470] = { - [sym__name] = STATE(3149), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym__name] = STATE(3220), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_ref_type] = STATE(3223), + [sym__scoped_base_type] = STATE(3228), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(2470), [sym_preproc_endregion] = STATE(2470), [sym_preproc_line] = STATE(2470), @@ -427078,20 +427113,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2470), [sym_preproc_define] = STATE(2470), [sym_preproc_undef] = STATE(2470), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4232), + [anon_sym_ref] = ACTIONS(4237), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3791), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(3791), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -427111,30 +427146,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(3791), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3791), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_and] = ACTIONS(3461), [anon_sym_or] = ACTIONS(3461), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(4234), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(4234), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(4234), - [anon_sym_orderby] = ACTIONS(4234), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(4234), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(4234), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3795), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3795), + [anon_sym_select] = ACTIONS(3791), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -427160,76 +427195,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2471), [sym_preproc_define] = STATE(2471), [sym_preproc_undef] = STATE(2471), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4239), - [anon_sym_where] = ACTIONS(4237), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_EQ_GT] = ACTIONS(4237), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_from] = ACTIONS(4237), - [anon_sym_into] = ACTIONS(4237), - [anon_sym_join] = ACTIONS(4237), - [anon_sym_on] = ACTIONS(4237), - [anon_sym_equals] = ACTIONS(4237), - [anon_sym_let] = ACTIONS(4237), - [anon_sym_orderby] = ACTIONS(4237), - [anon_sym_group] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4237), - [anon_sym_select] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), - [aux_sym_preproc_if_token3] = ACTIONS(4237), - [aux_sym_preproc_else_token1] = ACTIONS(4237), - [aux_sym_preproc_elif_token1] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_EQ_GT] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = ACTIONS(4241), + [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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_from] = ACTIONS(4239), + [anon_sym_into] = ACTIONS(4239), + [anon_sym_join] = ACTIONS(4239), + [anon_sym_on] = ACTIONS(4239), + [anon_sym_equals] = ACTIONS(4239), + [anon_sym_let] = ACTIONS(4239), + [anon_sym_orderby] = ACTIONS(4239), + [anon_sym_group] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4239), + [anon_sym_select] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), + [aux_sym_preproc_if_token3] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427251,76 +427286,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2472), [sym_preproc_define] = STATE(2472), [sym_preproc_undef] = STATE(2472), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4241), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427333,14 +427368,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2473] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2473), [sym_preproc_endregion] = STATE(2473), [sym_preproc_line] = STATE(2473), @@ -427350,19 +427385,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2473), [sym_preproc_define] = STATE(2473), [sym_preproc_undef] = STATE(2473), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3905), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -427382,31 +427418,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3901), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3905), + [anon_sym_descending] = ACTIONS(3905), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3905), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -427423,14 +427458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2474] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2545), - [sym_property_pattern_clause] = STATE(2603), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2474), [sym_preproc_endregion] = STATE(2474), [sym_preproc_line] = STATE(2474), @@ -427440,20 +427467,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2474), [sym_preproc_define] = STATE(2474), [sym_preproc_undef] = STATE(2474), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4186), + [anon_sym_where] = ACTIONS(4186), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_EQ_GT] = ACTIONS(4186), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_from] = ACTIONS(4186), + [anon_sym_join] = ACTIONS(4186), + [anon_sym_on] = ACTIONS(4186), + [anon_sym_equals] = ACTIONS(4186), + [anon_sym_let] = ACTIONS(4186), + [anon_sym_orderby] = ACTIONS(4186), + [anon_sym_group] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4186), + [anon_sym_select] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), + [aux_sym_preproc_if_token3] = ACTIONS(4186), + [aux_sym_preproc_else_token1] = ACTIONS(4186), + [aux_sym_preproc_elif_token1] = ACTIONS(4186), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2475] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2582), + [sym_property_pattern_clause] = STATE(2675), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3192), + [sym_preproc_region] = STATE(2475), + [sym_preproc_endregion] = STATE(2475), + [sym_preproc_line] = STATE(2475), + [sym_preproc_pragma] = STATE(2475), + [sym_preproc_nullable] = STATE(2475), + [sym_preproc_error] = STATE(2475), + [sym_preproc_warning] = STATE(2475), + [sym_preproc_define] = STATE(2475), + [sym_preproc_undef] = STATE(2475), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_in] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -427473,30 +427598,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3905), - [sym_discard] = ACTIONS(3919), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -427512,38 +427637,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2475] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2635), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2475), - [sym_preproc_endregion] = STATE(2475), - [sym_preproc_line] = STATE(2475), - [sym_preproc_pragma] = STATE(2475), - [sym_preproc_nullable] = STATE(2475), - [sym_preproc_error] = STATE(2475), - [sym_preproc_warning] = STATE(2475), - [sym_preproc_define] = STATE(2475), - [sym_preproc_undef] = STATE(2475), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), + [2476] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), + [sym_preproc_region] = STATE(2476), + [sym_preproc_endregion] = STATE(2476), + [sym_preproc_line] = STATE(2476), + [sym_preproc_pragma] = STATE(2476), + [sym_preproc_nullable] = STATE(2476), + [sym_preproc_error] = STATE(2476), + [sym_preproc_warning] = STATE(2476), + [sym_preproc_define] = STATE(2476), + [sym_preproc_undef] = STATE(2476), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3901), [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), [anon_sym_where] = ACTIONS(3905), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -427563,29 +427688,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(4108), + [anon_sym_into] = ACTIONS(4098), [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), [anon_sym_let] = ACTIONS(3905), [anon_sym_orderby] = ACTIONS(3905), [anon_sym_ascending] = ACTIONS(3905), [anon_sym_descending] = ACTIONS(3905), [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(4108), + [anon_sym_by] = ACTIONS(4098), [anon_sym_select] = ACTIONS(3905), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), @@ -427602,105 +427727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2476] = { - [sym_preproc_region] = STATE(2476), - [sym_preproc_endregion] = STATE(2476), - [sym_preproc_line] = STATE(2476), - [sym_preproc_pragma] = STATE(2476), - [sym_preproc_nullable] = STATE(2476), - [sym_preproc_error] = STATE(2476), - [sym_preproc_warning] = STATE(2476), - [sym_preproc_define] = STATE(2476), - [sym_preproc_undef] = STATE(2476), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_from] = ACTIONS(4208), - [anon_sym_join] = ACTIONS(4208), - [anon_sym_on] = ACTIONS(4208), - [anon_sym_equals] = ACTIONS(4208), - [anon_sym_let] = ACTIONS(4208), - [anon_sym_orderby] = ACTIONS(4208), - [anon_sym_group] = ACTIONS(4208), - [anon_sym_by] = ACTIONS(4208), - [anon_sym_select] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), - [aux_sym_preproc_if_token3] = ACTIONS(4208), - [aux_sym_preproc_else_token1] = ACTIONS(4208), - [aux_sym_preproc_elif_token1] = ACTIONS(4208), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2477] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2545), - [sym_property_pattern_clause] = STATE(2603), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2477), [sym_preproc_endregion] = STATE(2477), [sym_preproc_line] = STATE(2477), @@ -427710,67 +427737,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2477), [sym_preproc_define] = STATE(2477), [sym_preproc_undef] = STATE(2477), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3901), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3905), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4239), + [anon_sym_where] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_EQ_GT] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = ACTIONS(4241), + [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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_from] = ACTIONS(4239), + [anon_sym_join] = ACTIONS(4239), + [anon_sym_on] = ACTIONS(4239), + [anon_sym_equals] = ACTIONS(4239), + [anon_sym_let] = ACTIONS(4239), + [anon_sym_orderby] = ACTIONS(4239), + [anon_sym_group] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4239), + [anon_sym_select] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), + [aux_sym_preproc_if_token3] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427783,14 +427818,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2478] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2594), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2560), + [sym_property_pattern_clause] = STATE(2611), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2478), [sym_preproc_endregion] = STATE(2478), [sym_preproc_line] = STATE(2478), @@ -427804,7 +427839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), @@ -427834,6 +427868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3901), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), @@ -427873,14 +427908,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2479] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2594), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2479), [sym_preproc_endregion] = STATE(2479), [sym_preproc_line] = STATE(2479), @@ -427890,67 +427917,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2479), [sym_preproc_define] = STATE(2479), [sym_preproc_undef] = STATE(2479), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3909), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_in] = ACTIONS(4225), + [anon_sym_where] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_EQ_GT] = ACTIONS(4225), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4227), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_from] = ACTIONS(4225), + [anon_sym_join] = ACTIONS(4225), + [anon_sym_on] = ACTIONS(4225), + [anon_sym_equals] = ACTIONS(4225), + [anon_sym_let] = ACTIONS(4225), + [anon_sym_orderby] = ACTIONS(4225), + [anon_sym_group] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4225), + [anon_sym_select] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [aux_sym_preproc_if_token3] = ACTIONS(4225), + [aux_sym_preproc_else_token1] = ACTIONS(4225), + [aux_sym_preproc_elif_token1] = ACTIONS(4225), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427963,6 +427998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2480] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2679), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2480), [sym_preproc_endregion] = STATE(2480), [sym_preproc_line] = STATE(2480), @@ -427972,118 +428015,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2480), [sym_preproc_define] = STATE(2480), [sym_preproc_undef] = STATE(2480), - [anon_sym_SEMI] = ACTIONS(4192), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_RBRACK] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_RPAREN] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4192), - [anon_sym_where] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_EQ_GT] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4194), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_from] = ACTIONS(4192), - [anon_sym_join] = ACTIONS(4192), - [anon_sym_on] = ACTIONS(4192), - [anon_sym_equals] = ACTIONS(4192), - [anon_sym_let] = ACTIONS(4192), - [anon_sym_orderby] = ACTIONS(4192), - [anon_sym_group] = ACTIONS(4192), - [anon_sym_by] = ACTIONS(4192), - [anon_sym_select] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4192), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), - [aux_sym_preproc_if_token3] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2481] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2569), - [sym_property_pattern_clause] = STATE(2659), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2481), - [sym_preproc_endregion] = STATE(2481), - [sym_preproc_line] = STATE(2481), - [sym_preproc_pragma] = STATE(2481), - [sym_preproc_nullable] = STATE(2481), - [sym_preproc_error] = STATE(2481), - [sym_preproc_warning] = STATE(2481), - [sym_preproc_define] = STATE(2481), - [sym_preproc_undef] = STATE(2481), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3814), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3814), + [anon_sym_where] = ACTIONS(3905), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -428103,30 +428048,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3905), + [anon_sym_descending] = ACTIONS(3905), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3905), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -428142,38 +428087,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2482] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2545), - [sym_property_pattern_clause] = STATE(2603), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2482), - [sym_preproc_endregion] = STATE(2482), - [sym_preproc_line] = STATE(2482), - [sym_preproc_pragma] = STATE(2482), - [sym_preproc_nullable] = STATE(2482), - [sym_preproc_error] = STATE(2482), - [sym_preproc_warning] = STATE(2482), - [sym_preproc_define] = STATE(2482), - [sym_preproc_undef] = STATE(2482), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [2481] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2668), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), + [sym_preproc_region] = STATE(2481), + [sym_preproc_endregion] = STATE(2481), + [sym_preproc_line] = STATE(2481), + [sym_preproc_pragma] = STATE(2481), + [sym_preproc_nullable] = STATE(2481), + [sym_preproc_error] = STATE(2481), + [sym_preproc_warning] = STATE(2481), + [sym_preproc_define] = STATE(2481), + [sym_preproc_undef] = STATE(2481), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3909), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -428193,18 +428138,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3909), - [sym_discard] = ACTIONS(3919), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_orderby] = ACTIONS(3909), + [anon_sym_ascending] = ACTIONS(3909), + [anon_sym_descending] = ACTIONS(3909), + [anon_sym_group] = ACTIONS(3909), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3909), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2482] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2482), + [sym_preproc_endregion] = STATE(2482), + [sym_preproc_line] = STATE(2482), + [sym_preproc_pragma] = STATE(2482), + [sym_preproc_nullable] = STATE(2482), + [sym_preproc_error] = STATE(2482), + [sym_preproc_warning] = STATE(2482), + [sym_preproc_define] = STATE(2482), + [sym_preproc_undef] = STATE(2482), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3901), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -428217,10 +428252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428233,6 +428268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2483] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2606), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2483), [sym_preproc_endregion] = STATE(2483), [sym_preproc_line] = STATE(2483), @@ -428242,75 +428285,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2483), [sym_preproc_define] = STATE(2483), [sym_preproc_undef] = STATE(2483), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = ACTIONS(4214), - [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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_from] = ACTIONS(4212), - [anon_sym_join] = ACTIONS(4212), - [anon_sym_on] = ACTIONS(4212), - [anon_sym_equals] = ACTIONS(4212), - [anon_sym_let] = ACTIONS(4212), - [anon_sym_orderby] = ACTIONS(4212), - [anon_sym_group] = ACTIONS(4212), - [anon_sym_by] = ACTIONS(4212), - [anon_sym_select] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3905), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428323,6 +428358,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2484] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2679), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2484), [sym_preproc_endregion] = STATE(2484), [sym_preproc_line] = STATE(2484), @@ -428332,117 +428375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2484), [sym_preproc_define] = STATE(2484), [sym_preproc_undef] = STATE(2484), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4237), - [anon_sym_where] = ACTIONS(4237), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_EQ_GT] = ACTIONS(4237), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_from] = ACTIONS(4237), - [anon_sym_join] = ACTIONS(4237), - [anon_sym_on] = ACTIONS(4237), - [anon_sym_equals] = ACTIONS(4237), - [anon_sym_let] = ACTIONS(4237), - [anon_sym_orderby] = ACTIONS(4237), - [anon_sym_group] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4237), - [anon_sym_select] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), - [aux_sym_preproc_if_token3] = ACTIONS(4237), - [aux_sym_preproc_else_token1] = ACTIONS(4237), - [aux_sym_preproc_elif_token1] = ACTIONS(4237), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2485] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2594), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2485), - [sym_preproc_endregion] = STATE(2485), - [sym_preproc_line] = STATE(2485), - [sym_preproc_pragma] = STATE(2485), - [sym_preproc_nullable] = STATE(2485), - [sym_preproc_error] = STATE(2485), - [sym_preproc_warning] = STATE(2485), - [sym_preproc_define] = STATE(2485), - [sym_preproc_undef] = STATE(2485), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3909), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -428462,31 +428408,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3911), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3909), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3909), [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_orderby] = ACTIONS(3909), + [anon_sym_ascending] = ACTIONS(3909), + [anon_sym_descending] = ACTIONS(3909), + [anon_sym_group] = ACTIONS(3909), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3909), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -428502,28 +428447,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2486] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2545), - [sym_property_pattern_clause] = STATE(2603), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2486), - [sym_preproc_endregion] = STATE(2486), - [sym_preproc_line] = STATE(2486), - [sym_preproc_pragma] = STATE(2486), - [sym_preproc_nullable] = STATE(2486), - [sym_preproc_error] = STATE(2486), - [sym_preproc_warning] = STATE(2486), - [sym_preproc_define] = STATE(2486), - [sym_preproc_undef] = STATE(2486), + [2485] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2606), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2485), + [sym_preproc_endregion] = STATE(2485), + [sym_preproc_line] = STATE(2485), + [sym_preproc_pragma] = STATE(2485), + [sym_preproc_nullable] = STATE(2485), + [sym_preproc_error] = STATE(2485), + [sym_preproc_warning] = STATE(2485), + [sym_preproc_define] = STATE(2485), + [sym_preproc_undef] = STATE(2485), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), @@ -428553,12 +428499,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3911), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3909), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -428592,38 +428537,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2487] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2635), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2487), - [sym_preproc_endregion] = STATE(2487), - [sym_preproc_line] = STATE(2487), - [sym_preproc_pragma] = STATE(2487), - [sym_preproc_nullable] = STATE(2487), - [sym_preproc_error] = STATE(2487), - [sym_preproc_warning] = STATE(2487), - [sym_preproc_define] = STATE(2487), - [sym_preproc_undef] = STATE(2487), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), + [2486] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2582), + [sym_property_pattern_clause] = STATE(2675), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3192), + [sym_preproc_region] = STATE(2486), + [sym_preproc_endregion] = STATE(2486), + [sym_preproc_line] = STATE(2486), + [sym_preproc_pragma] = STATE(2486), + [sym_preproc_nullable] = STATE(2486), + [sym_preproc_error] = STATE(2486), + [sym_preproc_warning] = STATE(2486), + [sym_preproc_define] = STATE(2486), + [sym_preproc_undef] = STATE(2486), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -428643,30 +428588,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3905), - [anon_sym_descending] = ACTIONS(3905), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3905), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -428682,15 +428627,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2487] = { + [sym_preproc_region] = STATE(2487), + [sym_preproc_endregion] = STATE(2487), + [sym_preproc_line] = STATE(2487), + [sym_preproc_pragma] = STATE(2487), + [sym_preproc_nullable] = STATE(2487), + [sym_preproc_error] = STATE(2487), + [sym_preproc_warning] = STATE(2487), + [sym_preproc_define] = STATE(2487), + [sym_preproc_undef] = STATE(2487), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_RBRACK] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_in] = ACTIONS(4213), + [anon_sym_where] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_EQ_GT] = ACTIONS(4213), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4215), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_from] = ACTIONS(4213), + [anon_sym_join] = ACTIONS(4213), + [anon_sym_on] = ACTIONS(4213), + [anon_sym_equals] = ACTIONS(4213), + [anon_sym_let] = ACTIONS(4213), + [anon_sym_orderby] = ACTIONS(4213), + [anon_sym_group] = ACTIONS(4213), + [anon_sym_by] = ACTIONS(4213), + [anon_sym_select] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4213), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [aux_sym_preproc_if_token3] = ACTIONS(4213), + [aux_sym_preproc_else_token1] = ACTIONS(4213), + [aux_sym_preproc_elif_token1] = ACTIONS(4213), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2488] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2488), [sym_preproc_endregion] = STATE(2488), [sym_preproc_line] = STATE(2488), @@ -428703,48 +428738,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3909), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3901), + [anon_sym_EQ_GT] = ACTIONS(3911), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), + [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -428757,10 +428792,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428773,14 +428808,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2489] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2594), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2489), [sym_preproc_endregion] = STATE(2489), [sym_preproc_line] = STATE(2489), @@ -428793,6 +428828,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3911), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2490] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2302), + [sym_property_pattern_clause] = STATE(2367), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2490), + [sym_preproc_endregion] = STATE(2490), + [sym_preproc_line] = STATE(2490), + [sym_preproc_pragma] = STATE(2490), + [sym_preproc_nullable] = STATE(2490), + [sym_preproc_error] = STATE(2490), + [sym_preproc_warning] = STATE(2490), + [sym_preproc_define] = STATE(2490), + [sym_preproc_undef] = STATE(2490), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), @@ -428827,8 +428952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3905), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), @@ -428836,7 +428961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -428862,96 +428987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2490] = { - [sym_preproc_region] = STATE(2490), - [sym_preproc_endregion] = STATE(2490), - [sym_preproc_line] = STATE(2490), - [sym_preproc_pragma] = STATE(2490), - [sym_preproc_nullable] = STATE(2490), - [sym_preproc_error] = STATE(2490), - [sym_preproc_warning] = STATE(2490), - [sym_preproc_define] = STATE(2490), - [sym_preproc_undef] = STATE(2490), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_in] = ACTIONS(4188), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4186), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2491] = { [sym_preproc_region] = STATE(2491), [sym_preproc_endregion] = STATE(2491), @@ -428962,75 +428997,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2491), [sym_preproc_define] = STATE(2491), [sym_preproc_undef] = STATE(2491), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_in] = ACTIONS(4166), - [anon_sym_where] = ACTIONS(4166), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_EQ_GT] = ACTIONS(4166), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4168), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_from] = ACTIONS(4166), - [anon_sym_join] = ACTIONS(4166), - [anon_sym_on] = ACTIONS(4166), - [anon_sym_equals] = ACTIONS(4166), - [anon_sym_let] = ACTIONS(4166), - [anon_sym_orderby] = ACTIONS(4166), - [anon_sym_group] = ACTIONS(4166), - [anon_sym_by] = ACTIONS(4166), - [anon_sym_select] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), - [aux_sym_preproc_if_token3] = ACTIONS(4166), - [aux_sym_preproc_else_token1] = ACTIONS(4166), - [aux_sym_preproc_elif_token1] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_in] = ACTIONS(4172), + [anon_sym_where] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_EQ_GT] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_from] = ACTIONS(4172), + [anon_sym_join] = ACTIONS(4172), + [anon_sym_on] = ACTIONS(4172), + [anon_sym_equals] = ACTIONS(4172), + [anon_sym_let] = ACTIONS(4172), + [anon_sym_orderby] = ACTIONS(4172), + [anon_sym_group] = ACTIONS(4172), + [anon_sym_by] = ACTIONS(4172), + [anon_sym_select] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), + [aux_sym_preproc_if_token3] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429043,14 +429078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2492] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2633), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2492), [sym_preproc_endregion] = STATE(2492), [sym_preproc_line] = STATE(2492), @@ -429060,67 +429087,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2492), [sym_preproc_define] = STATE(2492), [sym_preproc_undef] = STATE(2492), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3905), - [anon_sym_descending] = ACTIONS(3905), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_from] = ACTIONS(4164), + [anon_sym_join] = ACTIONS(4164), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_orderby] = ACTIONS(4164), + [anon_sym_group] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_select] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429133,14 +429168,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2493] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2560), + [sym_property_pattern_clause] = STATE(2611), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2493), [sym_preproc_endregion] = STATE(2493), [sym_preproc_line] = STATE(2493), @@ -429153,50 +429188,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3909), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3901), + [anon_sym_EQ_GT] = ACTIONS(3911), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3909), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3909), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -429207,10 +429242,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429223,14 +429258,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2494] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2635), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2582), + [sym_property_pattern_clause] = STATE(2675), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2494), [sym_preproc_endregion] = STATE(2494), [sym_preproc_line] = STATE(2494), @@ -429240,20 +429275,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2494), [sym_preproc_define] = STATE(2494), [sym_preproc_undef] = STATE(2494), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(3800), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3800), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -429273,30 +429308,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3909), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3909), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_orderby] = ACTIONS(3909), - [anon_sym_ascending] = ACTIONS(3909), - [anon_sym_descending] = ACTIONS(3909), - [anon_sym_group] = ACTIONS(3909), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3909), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -429322,75 +429357,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2495), [sym_preproc_define] = STATE(2495), [sym_preproc_undef] = STATE(2495), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4184), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_from] = ACTIONS(4184), - [anon_sym_join] = ACTIONS(4184), - [anon_sym_on] = ACTIONS(4184), - [anon_sym_equals] = ACTIONS(4184), - [anon_sym_let] = ACTIONS(4184), - [anon_sym_orderby] = ACTIONS(4184), - [anon_sym_group] = ACTIONS(4184), - [anon_sym_by] = ACTIONS(4184), - [anon_sym_select] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), - [aux_sym_preproc_if_token3] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_EQ_GT] = ACTIONS(4190), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_from] = ACTIONS(4190), + [anon_sym_join] = ACTIONS(4190), + [anon_sym_on] = ACTIONS(4190), + [anon_sym_equals] = ACTIONS(4190), + [anon_sym_let] = ACTIONS(4190), + [anon_sym_orderby] = ACTIONS(4190), + [anon_sym_group] = ACTIONS(4190), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_select] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), + [aux_sym_preproc_if_token3] = ACTIONS(4190), + [aux_sym_preproc_else_token1] = ACTIONS(4190), + [aux_sym_preproc_elif_token1] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429403,14 +429438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2496] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2633), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2496), [sym_preproc_endregion] = STATE(2496), [sym_preproc_line] = STATE(2496), @@ -429420,20 +429455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2496), [sym_preproc_define] = STATE(2496), [sym_preproc_undef] = STATE(2496), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -429453,30 +429487,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3901), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), + [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3905), - [anon_sym_descending] = ACTIONS(3905), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -429493,14 +429528,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2497] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2633), - [sym__variable_designation] = STATE(3917), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3693), - [sym__reserved_identifier] = STATE(2378), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2560), + [sym_property_pattern_clause] = STATE(2611), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2497), [sym_preproc_endregion] = STATE(2497), [sym_preproc_line] = STATE(2497), @@ -429510,20 +429545,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2497), [sym_preproc_define] = STATE(2497), [sym_preproc_undef] = STATE(2497), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -429543,30 +429578,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3909), + [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3909), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_orderby] = ACTIONS(3909), - [anon_sym_ascending] = ACTIONS(3909), - [anon_sym_descending] = ACTIONS(3909), - [anon_sym_group] = ACTIONS(3909), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -429583,6 +429618,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2498] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2560), + [sym_property_pattern_clause] = STATE(2611), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2498), [sym_preproc_endregion] = STATE(2498), [sym_preproc_line] = STATE(2498), @@ -429592,75 +429635,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2498), [sym_preproc_define] = STATE(2498), [sym_preproc_undef] = STATE(2498), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3717), - [anon_sym_where] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3717), - [anon_sym_join] = ACTIONS(3717), - [anon_sym_on] = ACTIONS(3717), - [anon_sym_equals] = ACTIONS(3717), - [anon_sym_let] = ACTIONS(3717), - [anon_sym_orderby] = ACTIONS(3717), - [anon_sym_group] = ACTIONS(3717), - [anon_sym_by] = ACTIONS(3717), - [anon_sym_select] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3905), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429673,14 +429708,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2499] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2569), - [sym_property_pattern_clause] = STATE(2659), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3208), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2606), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2499), [sym_preproc_endregion] = STATE(2499), [sym_preproc_line] = STATE(2499), @@ -429690,141 +429725,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2499), [sym_preproc_define] = STATE(2499), [sym_preproc_undef] = STATE(2499), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_in] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2500] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2500), - [sym_preproc_endregion] = STATE(2500), - [sym_preproc_line] = STATE(2500), - [sym_preproc_pragma] = STATE(2500), - [sym_preproc_nullable] = STATE(2500), - [sym_preproc_error] = STATE(2500), - [sym_preproc_warning] = STATE(2500), - [sym_preproc_define] = STATE(2500), - [sym_preproc_undef] = STATE(2500), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3905), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3911), + [anon_sym_EQ_GT] = ACTIONS(3901), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3905), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -429837,10 +429782,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2500] = { + [sym_preproc_region] = STATE(2500), + [sym_preproc_endregion] = STATE(2500), + [sym_preproc_line] = STATE(2500), + [sym_preproc_pragma] = STATE(2500), + [sym_preproc_nullable] = STATE(2500), + [sym_preproc_error] = STATE(2500), + [sym_preproc_warning] = STATE(2500), + [sym_preproc_define] = STATE(2500), + [sym_preproc_undef] = STATE(2500), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_RBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_in] = ACTIONS(4233), + [anon_sym_where] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_EQ_GT] = ACTIONS(4233), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4235), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_from] = ACTIONS(4233), + [anon_sym_join] = ACTIONS(4233), + [anon_sym_on] = ACTIONS(4233), + [anon_sym_equals] = ACTIONS(4233), + [anon_sym_let] = ACTIONS(4233), + [anon_sym_orderby] = ACTIONS(4233), + [anon_sym_group] = ACTIONS(4233), + [anon_sym_by] = ACTIONS(4233), + [anon_sym_select] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4233), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [aux_sym_preproc_if_token3] = ACTIONS(4233), + [aux_sym_preproc_else_token1] = ACTIONS(4233), + [aux_sym_preproc_elif_token1] = ACTIONS(4233), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429853,14 +429888,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2501] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2288), - [sym_property_pattern_clause] = STATE(2331), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2279), + [sym_property_pattern_clause] = STATE(2322), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2501), [sym_preproc_endregion] = STATE(2501), [sym_preproc_line] = STATE(2501), @@ -429908,15 +429943,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -429943,6 +429978,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2502] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2679), + [sym__variable_designation] = STATE(3817), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3729), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2502), [sym_preproc_endregion] = STATE(2502), [sym_preproc_line] = STATE(2502), @@ -429952,118 +429995,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2502), [sym_preproc_define] = STATE(2502), [sym_preproc_undef] = STATE(2502), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_RBRACK] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4204), - [anon_sym_where] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_EQ_GT] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_from] = ACTIONS(4204), - [anon_sym_join] = ACTIONS(4204), - [anon_sym_on] = ACTIONS(4204), - [anon_sym_equals] = ACTIONS(4204), - [anon_sym_let] = ACTIONS(4204), - [anon_sym_orderby] = ACTIONS(4204), - [anon_sym_group] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4204), - [anon_sym_select] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), - [aux_sym_preproc_if_token3] = ACTIONS(4204), - [aux_sym_preproc_else_token1] = ACTIONS(4204), - [aux_sym_preproc_elif_token1] = ACTIONS(4204), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2503] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2569), - [sym_property_pattern_clause] = STATE(2659), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2503), - [sym_preproc_endregion] = STATE(2503), - [sym_preproc_line] = STATE(2503), - [sym_preproc_pragma] = STATE(2503), - [sym_preproc_nullable] = STATE(2503), - [sym_preproc_error] = STATE(2503), - [sym_preproc_warning] = STATE(2503), - [sym_preproc_define] = STATE(2503), - [sym_preproc_undef] = STATE(2503), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3814), + [anon_sym_file] = ACTIONS(4098), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3814), + [anon_sym_where] = ACTIONS(3905), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -430083,30 +430028,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3905), + [anon_sym_descending] = ACTIONS(3905), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3905), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -430122,15 +430067,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2503] = { + [sym_preproc_region] = STATE(2503), + [sym_preproc_endregion] = STATE(2503), + [sym_preproc_line] = STATE(2503), + [sym_preproc_pragma] = STATE(2503), + [sym_preproc_nullable] = STATE(2503), + [sym_preproc_error] = STATE(2503), + [sym_preproc_warning] = STATE(2503), + [sym_preproc_define] = STATE(2503), + [sym_preproc_undef] = STATE(2503), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3731), + [anon_sym_where] = ACTIONS(3731), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3731), + [anon_sym_join] = ACTIONS(3731), + [anon_sym_on] = ACTIONS(3731), + [anon_sym_equals] = ACTIONS(3731), + [anon_sym_let] = ACTIONS(3731), + [anon_sym_orderby] = ACTIONS(3731), + [anon_sym_group] = ACTIONS(3731), + [anon_sym_by] = ACTIONS(3731), + [anon_sym_select] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [aux_sym_preproc_if_token3] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3731), + [aux_sym_preproc_elif_token1] = ACTIONS(3731), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2504] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2261), - [sym_property_pattern_clause] = STATE(2312), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(5035), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2606), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(5028), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2504), [sym_preproc_endregion] = STATE(2504), [sym_preproc_line] = STATE(2504), @@ -430177,8 +430212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -430186,7 +430221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -430213,15 +430248,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2505] = { - [sym__name] = STATE(3149), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2620), + [sym_property_pattern_clause] = STATE(2879), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2505), [sym_preproc_endregion] = STATE(2505), [sym_preproc_line] = STATE(2505), @@ -430231,65 +430265,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2505), [sym_preproc_define] = STATE(2505), [sym_preproc_undef] = STATE(2505), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4245), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(4234), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3905), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430302,14 +430337,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2506] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2619), - [sym_property_pattern_clause] = STATE(2812), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2598), + [sym_property_pattern_clause] = STATE(2774), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2506), [sym_preproc_endregion] = STATE(2506), [sym_preproc_line] = STATE(2506), @@ -430356,6 +430391,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3905), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2507] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2615), + [sym_property_pattern_clause] = STATE(2874), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2507), + [sym_preproc_endregion] = STATE(2507), + [sym_preproc_line] = STATE(2507), + [sym_preproc_pragma] = STATE(2507), + [sym_preproc_nullable] = STATE(2507), + [sym_preproc_error] = STATE(2507), + [sym_preproc_warning] = STATE(2507), + [sym_preproc_define] = STATE(2507), + [sym_preproc_undef] = STATE(2507), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), @@ -430367,13 +430491,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_into] = ACTIONS(3905), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3905), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), @@ -430390,104 +430514,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2507] = { - [sym_property_pattern_clause] = STATE(2582), - [sym__variable_designation] = STATE(4865), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2507), - [sym_preproc_endregion] = STATE(2507), - [sym_preproc_line] = STATE(2507), - [sym_preproc_pragma] = STATE(2507), - [sym_preproc_nullable] = STATE(2507), - [sym_preproc_error] = STATE(2507), - [sym_preproc_warning] = STATE(2507), - [sym_preproc_define] = STATE(2507), - [sym_preproc_undef] = STATE(2507), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3921), - }, [2508] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2619), - [sym_property_pattern_clause] = STATE(2812), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2598), + [sym_property_pattern_clause] = STATE(2774), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2508), [sym_preproc_endregion] = STATE(2508), [sym_preproc_line] = STATE(2508), @@ -430534,7 +430569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -430542,7 +430577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -430569,26 +430604,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2509] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7539), - [sym__name] = STATE(5951), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5784), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2821), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2509), [sym_preproc_endregion] = STATE(2509), [sym_preproc_line] = STATE(2509), @@ -430598,8 +430621,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2509), [sym_preproc_define] = STATE(2509), [sym_preproc_undef] = STATE(2509), - [aux_sym_using_directive_repeat1] = STATE(5800), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3905), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2510] = { + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7491), + [sym__name] = STATE(5945), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5782), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(2510), + [sym_preproc_endregion] = STATE(2510), + [sym_preproc_line] = STATE(2510), + [sym_preproc_pragma] = STATE(2510), + [sym_preproc_nullable] = STATE(2510), + [sym_preproc_error] = STATE(2510), + [sym_preproc_warning] = STATE(2510), + [sym_preproc_define] = STATE(2510), + [sym_preproc_undef] = STATE(2510), + [aux_sym_using_directive_repeat1] = STATE(5801), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2549), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -430612,7 +430736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -430657,101 +430781,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2510] = { - [sym_property_pattern_clause] = STATE(2571), - [sym__variable_designation] = STATE(4817), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2510), - [sym_preproc_endregion] = STATE(2510), - [sym_preproc_line] = STATE(2510), - [sym_preproc_pragma] = STATE(2510), - [sym_preproc_nullable] = STATE(2510), - [sym_preproc_error] = STATE(2510), - [sym_preproc_warning] = STATE(2510), - [sym_preproc_define] = STATE(2510), - [sym_preproc_undef] = STATE(2510), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3933), - }, [2511] = { - [sym_property_pattern_clause] = STATE(2572), - [sym__variable_designation] = STATE(4865), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2601), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2511), [sym_preproc_endregion] = STATE(2511), [sym_preproc_line] = STATE(2511), @@ -430761,111 +430799,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2511), [sym_preproc_define] = STATE(2511), [sym_preproc_undef] = STATE(2511), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3921), - }, - [2512] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2605), - [sym_property_pattern_clause] = STATE(2853), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2512), - [sym_preproc_endregion] = STATE(2512), - [sym_preproc_line] = STATE(2512), - [sym_preproc_pragma] = STATE(2512), - [sym_preproc_nullable] = STATE(2512), - [sym_preproc_error] = STATE(2512), - [sym_preproc_warning] = STATE(2512), - [sym_preproc_define] = STATE(2512), - [sym_preproc_undef] = STATE(2512), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -430885,30 +430831,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3905), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3905), + [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -430924,15 +430870,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2512] = { + [sym__name] = STATE(3586), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_ref_type] = STATE(2994), + [sym__scoped_base_type] = STATE(2965), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2512), + [sym_preproc_endregion] = STATE(2512), + [sym_preproc_line] = STATE(2512), + [sym_preproc_pragma] = STATE(2512), + [sym_preproc_nullable] = STATE(2512), + [sym_preproc_error] = STATE(2512), + [sym_preproc_warning] = STATE(2512), + [sym_preproc_define] = STATE(2512), + [sym_preproc_undef] = STATE(2512), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3875), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3875), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2513] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2593), - [sym_property_pattern_clause] = STATE(2690), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2934), + [sym__name] = STATE(3586), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_ref_type] = STATE(2994), + [sym__scoped_base_type] = STATE(2965), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2513), [sym_preproc_endregion] = STATE(2513), [sym_preproc_line] = STATE(2513), @@ -430942,66 +430978,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2513), [sym_preproc_define] = STATE(2513), [sym_preproc_undef] = STATE(2513), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3875), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3875), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431014,14 +431049,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2514] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2601), - [sym_property_pattern_clause] = STATE(2736), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2595), + [sym_property_pattern_clause] = STATE(2698), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2514), [sym_preproc_endregion] = STATE(2514), [sym_preproc_line] = STATE(2514), @@ -431031,19 +431066,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2514), [sym_preproc_define] = STATE(2514), [sym_preproc_undef] = STATE(2514), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(3893), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3909), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -431063,30 +431098,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3909), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_orderby] = ACTIONS(3909), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3909), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3909), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -431103,14 +431138,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2515] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2589), - [sym_property_pattern_clause] = STATE(2881), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym__name] = STATE(3586), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_ref_type] = STATE(2994), + [sym__scoped_base_type] = STATE(2965), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2515), [sym_preproc_endregion] = STATE(2515), [sym_preproc_line] = STATE(2515), @@ -431120,66 +431156,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2515), [sym_preproc_define] = STATE(2515), [sym_preproc_undef] = STATE(2515), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3905), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4257), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3875), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3875), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431192,14 +431227,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2516] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2608), - [sym_property_pattern_clause] = STATE(2796), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2585), + [sym__variable_designation] = STATE(4818), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2516), [sym_preproc_endregion] = STATE(2516), [sym_preproc_line] = STATE(2516), @@ -431209,66 +431241,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2516), [sym_preproc_define] = STATE(2516), [sym_preproc_undef] = STATE(2516), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3909), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431279,17 +431313,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3927), }, [2517] = { - [sym__name] = STATE(3149), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_property_pattern_clause] = STATE(2586), + [sym__variable_designation] = STATE(4860), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2517), [sym_preproc_endregion] = STATE(2517), [sym_preproc_line] = STATE(2517), @@ -431299,65 +431330,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2517), [sym_preproc_define] = STATE(2517), [sym_preproc_undef] = STATE(2517), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4255), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(4234), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431368,16 +431402,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3931), }, [2518] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2605), - [sym_property_pattern_clause] = STATE(2853), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2981), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2821), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2518), [sym_preproc_endregion] = STATE(2518), [sym_preproc_line] = STATE(2518), @@ -431387,66 +431422,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2518), [sym_preproc_define] = STATE(2518), [sym_preproc_undef] = STATE(2518), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_where] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_SLASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_LT] = ACTIONS(3901), + [anon_sym_GT_GT] = ACTIONS(3905), + [anon_sym_GT_GT_GT] = ACTIONS(3901), + [anon_sym_EQ_EQ] = ACTIONS(3901), + [anon_sym_BANG_EQ] = ACTIONS(3901), + [anon_sym_GT_EQ] = ACTIONS(3901), + [anon_sym_LT_EQ] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3905), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3909), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3909), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_orderby] = ACTIONS(3909), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3909), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3909), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3901), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3905), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3905), + [anon_sym_as] = ACTIONS(3905), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_DASH_GT] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3905), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431459,14 +431494,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2519] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2601), - [sym_property_pattern_clause] = STATE(2736), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2831), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2519), [sym_preproc_endregion] = STATE(2519), [sym_preproc_line] = STATE(2519), @@ -431513,7 +431548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -431521,7 +431556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3905), @@ -431548,15 +431583,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2520] = { - [sym__name] = STATE(3576), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_ref_type] = STATE(2991), - [sym__scoped_base_type] = STATE(2992), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym__name] = STATE(3127), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2520), [sym_preproc_endregion] = STATE(2520), [sym_preproc_line] = STATE(2520), @@ -431566,20 +431601,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2520), [sym_preproc_define] = STATE(2520), [sym_preproc_undef] = STATE(2520), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4257), + [anon_sym_ref] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3844), + [anon_sym_file] = ACTIONS(3893), [anon_sym_LT] = ACTIONS(3461), [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3844), + [anon_sym_where] = ACTIONS(3893), [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), [anon_sym_BANG] = ACTIONS(3461), [anon_sym_PLUS_PLUS] = ACTIONS(3459), [anon_sym_DASH_DASH] = ACTIONS(3459), @@ -431599,28 +431634,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3459), [anon_sym_LT_EQ] = ACTIONS(3459), [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3844), + [anon_sym_scoped] = ACTIONS(3893), [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3844), + [anon_sym_when] = ACTIONS(3893), [anon_sym_DOT_DOT] = ACTIONS(3459), [anon_sym_AMP_AMP] = ACTIONS(3459), [anon_sym_PIPE_PIPE] = ACTIONS(3459), [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3848), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3848), - [anon_sym_select] = ACTIONS(3844), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(3893), [anon_sym_as] = ACTIONS(3461), [anon_sym_is] = ACTIONS(3461), [anon_sym_DASH_GT] = ACTIONS(3459), @@ -431637,14 +431672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2521] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2608), - [sym_property_pattern_clause] = STATE(2796), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2597), + [sym_property_pattern_clause] = STATE(2843), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2521), [sym_preproc_endregion] = STATE(2521), [sym_preproc_line] = STATE(2521), @@ -431691,7 +431726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -431699,7 +431734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3905), [anon_sym_equals] = ACTIONS(3899), @@ -431726,14 +431761,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2522] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2593), - [sym_property_pattern_clause] = STATE(2690), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2934), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2831), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2522), [sym_preproc_endregion] = STATE(2522), [sym_preproc_line] = STATE(2522), @@ -431743,66 +431778,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2522), [sym_preproc_define] = STATE(2522), [sym_preproc_undef] = STATE(2522), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3909), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431815,14 +431850,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2523] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2747), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2597), + [sym_property_pattern_clause] = STATE(2843), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2523), [sym_preproc_endregion] = STATE(2523), [sym_preproc_line] = STATE(2523), @@ -431835,52 +431870,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3909), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3901), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3901), - [anon_sym_EQ_EQ] = ACTIONS(3901), - [anon_sym_BANG_EQ] = ACTIONS(3901), - [anon_sym_GT_EQ] = ACTIONS(3901), - [anon_sym_LT_EQ] = ACTIONS(3901), - [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3905), + [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3901), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3901), - [anon_sym_PIPE_PIPE] = ACTIONS(3901), - [anon_sym_QMARK_QMARK] = ACTIONS(3901), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(3909), + [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), @@ -431888,10 +431923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3901), - [anon_sym_with] = ACTIONS(3905), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431904,14 +431939,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2524] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2747), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2601), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2524), [sym_preproc_endregion] = STATE(2524), [sym_preproc_line] = STATE(2524), @@ -431958,24 +431993,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3905), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3905), + [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3905), [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), @@ -431993,14 +432028,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2525] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2593), - [sym_property_pattern_clause] = STATE(2690), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2934), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2601), + [sym_property_pattern_clause] = STATE(2861), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2525), [sym_preproc_endregion] = STATE(2525), [sym_preproc_line] = STATE(2525), @@ -432010,19 +432045,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2525), [sym_preproc_define] = STATE(2525), [sym_preproc_undef] = STATE(2525), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3844), + [anon_sym_file] = ACTIONS(3899), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -432042,30 +432077,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3909), + [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3909), - [anon_sym_join] = ACTIONS(3909), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_orderby] = ACTIONS(3909), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3909), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3909), + [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -432082,14 +432117,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2526] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2620), - [sym_property_pattern_clause] = STATE(2876), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2831), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2526), [sym_preproc_endregion] = STATE(2526), [sym_preproc_line] = STATE(2526), @@ -432136,7 +432171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), @@ -432146,8 +432181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3905), - [anon_sym_equals] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3905), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), @@ -432171,15 +432206,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2527] = { - [sym__name] = STATE(3576), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_ref_type] = STATE(2991), - [sym__scoped_base_type] = STATE(2992), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_property_pattern_clause] = STATE(2571), + [sym__variable_designation] = STATE(4818), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2527), [sym_preproc_endregion] = STATE(2527), [sym_preproc_line] = STATE(2527), @@ -432189,65 +432220,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2527), [sym_preproc_define] = STATE(2527), [sym_preproc_undef] = STATE(2527), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3848), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3848), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432258,16 +432292,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3927), }, [2528] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2619), - [sym_property_pattern_clause] = STATE(2812), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2615), + [sym_property_pattern_clause] = STATE(2874), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2528), [sym_preproc_endregion] = STATE(2528), [sym_preproc_line] = STATE(2528), @@ -432325,13 +432360,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_into] = ACTIONS(3905), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3905), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), @@ -432349,15 +432384,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2529] = { - [sym__name] = STATE(3576), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_ref_type] = STATE(2991), - [sym__scoped_base_type] = STATE(2992), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_property_pattern_clause] = STATE(2572), + [sym__variable_designation] = STATE(4860), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2529), [sym_preproc_endregion] = STATE(2529), [sym_preproc_line] = STATE(2529), @@ -432367,65 +432398,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2529), [sym_preproc_define] = STATE(2529), [sym_preproc_undef] = STATE(2529), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3848), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3848), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432436,17 +432470,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3931), }, [2530] = { - [sym__name] = STATE(3149), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_ref_type] = STATE(3064), - [sym__scoped_base_type] = STATE(3065), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2595), + [sym_property_pattern_clause] = STATE(2698), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2530), [sym_preproc_endregion] = STATE(2530), [sym_preproc_line] = STATE(2530), @@ -432459,104 +432493,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(4234), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2531] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2601), - [sym_property_pattern_clause] = STATE(2736), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2531), - [sym_preproc_endregion] = STATE(2531), - [sym_preproc_line] = STATE(2531), - [sym_preproc_pragma] = STATE(2531), - [sym_preproc_nullable] = STATE(2531), - [sym_preproc_error] = STATE(2531), - [sym_preproc_warning] = STATE(2531), - [sym_preproc_define] = STATE(2531), - [sym_preproc_undef] = STATE(2531), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(3893), [anon_sym_LT] = ACTIONS(3905), [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3905), [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), [anon_sym_BANG] = ACTIONS(3905), [anon_sym_PLUS_PLUS] = ACTIONS(3901), [anon_sym_DASH_DASH] = ACTIONS(3901), @@ -432576,30 +432522,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3901), [anon_sym_LT_EQ] = ACTIONS(3901), [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3905), [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3905), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3905), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3905), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3905), + [anon_sym_orderby] = ACTIONS(3905), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3905), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3905), [anon_sym_as] = ACTIONS(3905), [anon_sym_is] = ACTIONS(3905), [anon_sym_DASH_GT] = ACTIONS(3901), @@ -432615,24 +432561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2532] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2608), - [sym_property_pattern_clause] = STATE(2796), - [sym__variable_designation] = STATE(3355), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3277), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2532), - [sym_preproc_endregion] = STATE(2532), - [sym_preproc_line] = STATE(2532), - [sym_preproc_pragma] = STATE(2532), - [sym_preproc_nullable] = STATE(2532), - [sym_preproc_error] = STATE(2532), - [sym_preproc_warning] = STATE(2532), - [sym_preproc_define] = STATE(2532), - [sym_preproc_undef] = STATE(2532), + [2531] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2620), + [sym_property_pattern_clause] = STATE(2879), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2531), + [sym_preproc_endregion] = STATE(2531), + [sym_preproc_line] = STATE(2531), + [sym_preproc_pragma] = STATE(2531), + [sym_preproc_nullable] = STATE(2531), + [sym_preproc_error] = STATE(2531), + [sym_preproc_warning] = STATE(2531), + [sym_preproc_define] = STATE(2531), + [sym_preproc_undef] = STATE(2531), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), @@ -432672,8 +432618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), @@ -432704,51 +432650,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2533] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7448), - [sym__name] = STATE(5924), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5797), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(2533), - [sym_preproc_endregion] = STATE(2533), - [sym_preproc_line] = STATE(2533), - [sym_preproc_pragma] = STATE(2533), - [sym_preproc_nullable] = STATE(2533), - [sym_preproc_error] = STATE(2533), - [sym_preproc_warning] = STATE(2533), - [sym_preproc_define] = STATE(2533), - [sym_preproc_undef] = STATE(2533), - [aux_sym_using_directive_repeat1] = STATE(5795), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2568), + [2532] = { + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7652), + [sym__name] = STATE(5953), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5788), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(2532), + [sym_preproc_endregion] = STATE(2532), + [sym_preproc_line] = STATE(2532), + [sym_preproc_pragma] = STATE(2532), + [sym_preproc_nullable] = STATE(2532), + [sym_preproc_error] = STATE(2532), + [sym_preproc_warning] = STATE(2532), + [sym_preproc_define] = STATE(2532), + [sym_preproc_undef] = STATE(2532), + [aux_sym_using_directive_repeat1] = STATE(5784), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2557), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(4265), + [anon_sym_unsafe] = ACTIONS(4261), [anon_sym_static] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4263), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -432793,24 +432739,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2534] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2605), - [sym_property_pattern_clause] = STATE(2853), - [sym__variable_designation] = STATE(4175), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(4120), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2534), - [sym_preproc_endregion] = STATE(2534), - [sym_preproc_line] = STATE(2534), - [sym_preproc_pragma] = STATE(2534), - [sym_preproc_nullable] = STATE(2534), - [sym_preproc_error] = STATE(2534), - [sym_preproc_warning] = STATE(2534), - [sym_preproc_define] = STATE(2534), - [sym_preproc_undef] = STATE(2534), + [2533] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2595), + [sym_property_pattern_clause] = STATE(2698), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2533), + [sym_preproc_endregion] = STATE(2533), + [sym_preproc_line] = STATE(2533), + [sym_preproc_pragma] = STATE(2533), + [sym_preproc_nullable] = STATE(2533), + [sym_preproc_error] = STATE(2533), + [sym_preproc_warning] = STATE(2533), + [sym_preproc_define] = STATE(2533), + [sym_preproc_undef] = STATE(2533), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), @@ -432848,7 +432794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3893), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), + [sym_discard] = ACTIONS(4245), [anon_sym_DOT_DOT] = ACTIONS(3901), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -432882,15 +432828,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2534] = { + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2615), + [sym_property_pattern_clause] = STATE(2874), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2534), + [sym_preproc_endregion] = STATE(2534), + [sym_preproc_line] = STATE(2534), + [sym_preproc_pragma] = STATE(2534), + [sym_preproc_nullable] = STATE(2534), + [sym_preproc_error] = STATE(2534), + [sym_preproc_warning] = STATE(2534), + [sym_preproc_define] = STATE(2534), + [sym_preproc_undef] = STATE(2534), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_GT_GT_GT] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3909), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_is] = ACTIONS(3909), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3909), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2535] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2620), - [sym_property_pattern_clause] = STATE(2876), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2597), + [sym_property_pattern_clause] = STATE(2843), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2535), [sym_preproc_endregion] = STATE(2535), [sym_preproc_line] = STATE(2535), @@ -432937,10 +432972,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), @@ -432972,14 +433007,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2536] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2602), - [sym_property_pattern_clause] = STATE(2747), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2598), + [sym_property_pattern_clause] = STATE(2774), + [sym__variable_designation] = STATE(3548), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3549), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2536), [sym_preproc_endregion] = STATE(2536), [sym_preproc_line] = STATE(2536), @@ -432992,95 +433027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3911), - [anon_sym_DASH_DASH] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [anon_sym_GT_EQ] = ACTIONS(3911), - [anon_sym_LT_EQ] = ACTIONS(3911), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3911), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3909), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_is] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3911), - [anon_sym_with] = ACTIONS(3909), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2537] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2589), - [sym_property_pattern_clause] = STATE(2881), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2537), - [sym_preproc_endregion] = STATE(2537), - [sym_preproc_line] = STATE(2537), - [sym_preproc_pragma] = STATE(2537), - [sym_preproc_nullable] = STATE(2537), - [sym_preproc_error] = STATE(2537), - [sym_preproc_warning] = STATE(2537), - [sym_preproc_define] = STATE(2537), - [sym_preproc_undef] = STATE(2537), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3901), [anon_sym_LPAREN] = ACTIONS(3901), [anon_sym_LBRACE] = ACTIONS(3903), @@ -433115,10 +433061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3905), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3901), - [anon_sym_and] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3909), + [anon_sym_and] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3905), [anon_sym_AMP_AMP] = ACTIONS(3901), [anon_sym_PIPE_PIPE] = ACTIONS(3901), [anon_sym_QMARK_QMARK] = ACTIONS(3901), @@ -433149,113 +433095,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2538] = { - [sym_property_pattern_clause] = STATE(2586), - [sym__variable_designation] = STATE(4817), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2538), - [sym_preproc_endregion] = STATE(2538), - [sym_preproc_line] = STATE(2538), - [sym_preproc_pragma] = STATE(2538), - [sym_preproc_nullable] = STATE(2538), - [sym_preproc_error] = STATE(2538), - [sym_preproc_warning] = STATE(2538), - [sym_preproc_define] = STATE(2538), - [sym_preproc_undef] = STATE(2538), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3933), - }, - [2539] = { - [sym_parameter_list] = STATE(7560), + [2537] = { + [sym_parameter_list] = STATE(7385), [sym_positional_pattern_clause] = STATE(2620), - [sym_property_pattern_clause] = STATE(2876), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2539), - [sym_preproc_endregion] = STATE(2539), - [sym_preproc_line] = STATE(2539), - [sym_preproc_pragma] = STATE(2539), - [sym_preproc_nullable] = STATE(2539), - [sym_preproc_error] = STATE(2539), - [sym_preproc_warning] = STATE(2539), - [sym_preproc_define] = STATE(2539), - [sym_preproc_undef] = STATE(2539), + [sym_property_pattern_clause] = STATE(2879), + [sym__variable_designation] = STATE(3377), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2537), + [sym_preproc_endregion] = STATE(2537), + [sym_preproc_line] = STATE(2537), + [sym_preproc_pragma] = STATE(2537), + [sym_preproc_nullable] = STATE(2537), + [sym_preproc_error] = STATE(2537), + [sym_preproc_warning] = STATE(2537), + [sym_preproc_define] = STATE(2537), + [sym_preproc_undef] = STATE(2537), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), @@ -433293,7 +433150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3909), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3907), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), @@ -433301,7 +433158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3909), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3909), [anon_sym_equals] = ACTIONS(3899), @@ -433327,15 +433184,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2538] = { + [sym__name] = STATE(3127), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2538), + [sym_preproc_endregion] = STATE(2538), + [sym_preproc_line] = STATE(2538), + [sym_preproc_pragma] = STATE(2538), + [sym_preproc_nullable] = STATE(2538), + [sym_preproc_error] = STATE(2538), + [sym_preproc_warning] = STATE(2538), + [sym_preproc_define] = STATE(2538), + [sym_preproc_undef] = STATE(2538), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(4210), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2539] = { + [sym__name] = STATE(3127), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_ref_type] = STATE(3016), + [sym__scoped_base_type] = STATE(3025), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2539), + [sym_preproc_endregion] = STATE(2539), + [sym_preproc_line] = STATE(2539), + [sym_preproc_pragma] = STATE(2539), + [sym_preproc_nullable] = STATE(2539), + [sym_preproc_error] = STATE(2539), + [sym_preproc_warning] = STATE(2539), + [sym_preproc_define] = STATE(2539), + [sym_preproc_undef] = STATE(2539), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2540] = { - [sym_parameter_list] = STATE(7560), - [sym_positional_pattern_clause] = STATE(2589), - [sym_property_pattern_clause] = STATE(2881), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(3501), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym_positional_pattern_clause] = STATE(2621), + [sym_property_pattern_clause] = STATE(2821), + [sym__variable_designation] = STATE(4206), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(4139), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2540), [sym_preproc_endregion] = STATE(2540), [sym_preproc_line] = STATE(2540), @@ -433345,19 +433380,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2540), [sym_preproc_define] = STATE(2540), [sym_preproc_undef] = STATE(2540), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), [anon_sym_LBRACK] = ACTIONS(3911), [anon_sym_LPAREN] = ACTIONS(3911), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), + [anon_sym_file] = ACTIONS(3871), [anon_sym_LT] = ACTIONS(3909), [anon_sym_GT] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3899), + [anon_sym_where] = ACTIONS(3909), [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), [anon_sym_BANG] = ACTIONS(3909), [anon_sym_PLUS_PLUS] = ACTIONS(3911), [anon_sym_DASH_DASH] = ACTIONS(3911), @@ -433377,30 +433412,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3911), [anon_sym_LT_EQ] = ACTIONS(3911), [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), [anon_sym_switch] = ACTIONS(3909), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), [anon_sym_DOT_DOT] = ACTIONS(3911), [anon_sym_and] = ACTIONS(3909), [anon_sym_or] = ACTIONS(3909), [anon_sym_AMP_AMP] = ACTIONS(3911), [anon_sym_PIPE_PIPE] = ACTIONS(3911), [anon_sym_QMARK_QMARK] = ACTIONS(3911), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3909), - [anon_sym_select] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3909), + [anon_sym_into] = ACTIONS(3909), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_orderby] = ACTIONS(3909), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3909), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3909), [anon_sym_as] = ACTIONS(3909), [anon_sym_is] = ACTIONS(3909), [anon_sym_DASH_GT] = ACTIONS(3911), @@ -433417,6 +433452,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2541] = { + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7491), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5963), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2541), [sym_preproc_endregion] = STATE(2541), [sym_preproc_line] = STATE(2541), @@ -433426,72 +433481,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2541), [sym_preproc_define] = STATE(2541), [sym_preproc_undef] = STATE(2541), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_ref] = ACTIONS(3785), - [anon_sym_delegate] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_var] = ACTIONS(3785), - [sym_predefined_type] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_DOT_DOT] = ACTIONS(2983), - [anon_sym_and] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_with] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(3787), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3941), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433502,29 +433538,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(2983), }, [2542] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7578), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7498), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2542), [sym_preproc_endregion] = STATE(2542), [sym_preproc_line] = STATE(2542), @@ -433534,7 +433569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2542), [sym_preproc_define] = STATE(2542), [sym_preproc_undef] = STATE(2542), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2564), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -433547,7 +433582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -433593,11 +433628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2543] = { - [sym_property_pattern_clause] = STATE(2596), - [sym__variable_designation] = STATE(3362), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2608), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2543), [sym_preproc_endregion] = STATE(2543), [sym_preproc_line] = STATE(2543), @@ -433610,51 +433645,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), + [anon_sym_EQ_GT] = ACTIONS(3931), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3923), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3933), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -433665,10 +433700,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433681,11 +433716,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2544] = { - [sym_property_pattern_clause] = STATE(2606), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_parameter_list] = STATE(7385), + [sym__lambda_parameters] = STATE(7347), + [sym_identifier] = STATE(7710), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(2544), [sym_preproc_endregion] = STATE(2544), [sym_preproc_line] = STATE(2544), @@ -433695,85 +433729,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2544), [sym_preproc_define] = STATE(2544), [sym_preproc_undef] = STATE(2544), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3935), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(3947), + [anon_sym_alias] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_file] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3947), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_notnull] = ACTIONS(3947), + [anon_sym_unmanaged] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_scoped] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_switch] = ACTIONS(3947), + [anon_sym_when] = ACTIONS(3947), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_into] = ACTIONS(3947), + [anon_sym_join] = ACTIONS(3947), + [anon_sym_on] = ACTIONS(3947), + [anon_sym_equals] = ACTIONS(3947), + [anon_sym_let] = ACTIONS(3947), + [anon_sym_orderby] = ACTIONS(3947), + [anon_sym_ascending] = ACTIONS(3947), + [anon_sym_descending] = ACTIONS(3947), + [anon_sym_group] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3947), + [anon_sym_select] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3947), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3947), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3949), }, [2545] = { - [sym_property_pattern_clause] = STATE(2610), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7498), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5963), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2545), [sym_preproc_endregion] = STATE(2545), [sym_preproc_line] = STATE(2545), @@ -433783,68 +433833,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2545), [sym_preproc_define] = STATE(2545), [sym_preproc_undef] = STATE(2545), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3923), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3941), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433857,26 +433892,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2546] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7578), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7634), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2546), [sym_preproc_endregion] = STATE(2546), [sym_preproc_line] = STATE(2546), @@ -433886,7 +433921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2546), [sym_preproc_define] = STATE(2546), [sym_preproc_undef] = STATE(2546), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -433899,7 +433934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -433945,26 +433980,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2547] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7755), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7701), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2547), [sym_preproc_endregion] = STATE(2547), [sym_preproc_line] = STATE(2547), @@ -433974,20 +434009,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2547), [sym_preproc_define] = STATE(2547), [sym_preproc_undef] = STATE(2547), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2548), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(4271), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434033,26 +434068,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2548] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7401), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7569), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2548), [sym_preproc_endregion] = STATE(2548), [sym_preproc_line] = STATE(2548), @@ -434062,7 +434097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2548), [sym_preproc_define] = STATE(2548), [sym_preproc_undef] = STATE(2548), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -434075,7 +434110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434121,26 +434156,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2549] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7539), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7701), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2549), [sym_preproc_endregion] = STATE(2549), [sym_preproc_line] = STATE(2549), @@ -434150,20 +434185,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2549), [sym_preproc_define] = STATE(2549), [sym_preproc_undef] = STATE(2549), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2554), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434209,26 +434244,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2550] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7539), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7401), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2550), [sym_preproc_endregion] = STATE(2550), [sym_preproc_line] = STATE(2550), @@ -434238,7 +434273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2550), [sym_preproc_define] = STATE(2550), [sym_preproc_undef] = STATE(2550), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -434251,7 +434286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434297,26 +434332,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2551] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7401), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7652), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2551), [sym_preproc_endregion] = STATE(2551), [sym_preproc_line] = STATE(2551), @@ -434326,20 +434361,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2551), [sym_preproc_define] = STATE(2551), [sym_preproc_undef] = STATE(2551), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2552), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2557), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4263), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434385,26 +434420,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2552] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7531), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(4377), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2552), [sym_preproc_endregion] = STATE(2552), [sym_preproc_line] = STATE(2552), @@ -434414,53 +434448,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2552), [sym_preproc_define] = STATE(2552), [sym_preproc_undef] = STATE(2552), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434473,26 +434508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2553] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7699), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(2553), [sym_preproc_endregion] = STATE(2553), [sym_preproc_line] = STATE(2553), @@ -434502,53 +434517,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2553), [sym_preproc_define] = STATE(2553), [sym_preproc_undef] = STATE(2553), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_ref] = ACTIONS(3785), + [anon_sym_delegate] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_var] = ACTIONS(3785), + [sym_predefined_type] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_DOT_DOT] = ACTIONS(2991), + [anon_sym_and] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434559,28 +434593,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(2991), }, [2554] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7712), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7652), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2554), [sym_preproc_endregion] = STATE(2554), [sym_preproc_line] = STATE(2554), @@ -434590,7 +434625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2554), [sym_preproc_define] = STATE(2554), [sym_preproc_undef] = STATE(2554), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -434603,7 +434638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434649,26 +434684,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2555] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7712), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7401), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2555), [sym_preproc_endregion] = STATE(2555), [sym_preproc_line] = STATE(2555), @@ -434685,13 +434720,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4273), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434737,26 +434772,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2556] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7385), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7527), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2556), [sym_preproc_endregion] = STATE(2556), [sym_preproc_line] = STATE(2556), @@ -434766,7 +434801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2556), [sym_preproc_define] = STATE(2556), [sym_preproc_undef] = STATE(2556), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -434779,7 +434814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434825,26 +434860,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2557] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7448), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7580), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2557), [sym_preproc_endregion] = STATE(2557), [sym_preproc_line] = STATE(2557), @@ -434854,20 +434889,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2557), [sym_preproc_define] = STATE(2557), [sym_preproc_undef] = STATE(2557), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2568), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -434913,25 +434948,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2558] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7580), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2558), [sym_preproc_endregion] = STATE(2558), [sym_preproc_line] = STATE(2558), @@ -434941,109 +434977,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2558), [sym_preproc_define] = STATE(2558), [sym_preproc_undef] = STATE(2558), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2559] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7448), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(2559), - [sym_preproc_endregion] = STATE(2559), - [sym_preproc_line] = STATE(2559), - [sym_preproc_pragma] = STATE(2559), - [sym_preproc_nullable] = STATE(2559), - [sym_preproc_error] = STATE(2559), - [sym_preproc_warning] = STATE(2559), - [sym_preproc_define] = STATE(2559), - [sym_preproc_undef] = STATE(2559), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2561), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(4275), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435088,27 +435035,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2559] = { + [sym_property_pattern_clause] = STATE(2612), + [sym__variable_designation] = STATE(3286), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2559), + [sym_preproc_endregion] = STATE(2559), + [sym_preproc_line] = STATE(2559), + [sym_preproc_pragma] = STATE(2559), + [sym_preproc_nullable] = STATE(2559), + [sym_preproc_error] = STATE(2559), + [sym_preproc_warning] = STATE(2559), + [sym_preproc_define] = STATE(2559), + [sym_preproc_undef] = STATE(2559), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3929), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2560] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7679), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_property_pattern_clause] = STATE(2613), + [sym__variable_designation] = STATE(3391), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2560), [sym_preproc_endregion] = STATE(2560), [sym_preproc_line] = STATE(2560), @@ -435118,53 +435138,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2560), [sym_preproc_define] = STATE(2560), [sym_preproc_undef] = STATE(2560), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2546), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4277), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3931), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3933), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435177,26 +435212,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2561] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7699), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7659), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2561), [sym_preproc_endregion] = STATE(2561), [sym_preproc_line] = STATE(2561), @@ -435206,7 +435241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2561), [sym_preproc_define] = STATE(2561), [sym_preproc_undef] = STATE(2561), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -435219,7 +435254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435265,10 +435300,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2562] = { - [sym_parameter_list] = STATE(7560), - [sym__lambda_parameters] = STATE(7619), - [sym_identifier] = STATE(7348), - [sym__reserved_identifier] = STATE(2182), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2562), [sym_preproc_endregion] = STATE(2562), [sym_preproc_line] = STATE(2562), @@ -435278,101 +435328,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2562), [sym_preproc_define] = STATE(2562), [sym_preproc_undef] = STATE(2562), - [sym__identifier_token] = ACTIONS(3943), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3943), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3943), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3945), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2563] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7679), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5962), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7491), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2563), [sym_preproc_endregion] = STATE(2563), [sym_preproc_line] = STATE(2563), @@ -435382,20 +435417,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2563), [sym_preproc_define] = STATE(2563), [sym_preproc_undef] = STATE(2563), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2549), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(4251), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435441,11 +435476,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2564] = { - [sym_property_pattern_clause] = STATE(2595), - [sym__variable_designation] = STATE(3357), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7416), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2564), [sym_preproc_endregion] = STATE(2564), [sym_preproc_line] = STATE(2564), @@ -435455,68 +435505,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2564), [sym_preproc_define] = STATE(2564), [sym_preproc_undef] = STATE(2564), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3935), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3941), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435529,26 +435564,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2565] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7489), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7613), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2565), [sym_preproc_endregion] = STATE(2565), [sym_preproc_line] = STATE(2565), @@ -435558,20 +435593,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2565), [sym_preproc_define] = STATE(2565), [sym_preproc_undef] = STATE(2565), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2566), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2550), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4277), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435617,26 +435652,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2566] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7563), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7613), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2566), [sym_preproc_endregion] = STATE(2566), [sym_preproc_line] = STATE(2566), @@ -435646,7 +435681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2566), [sym_preproc_define] = STATE(2566), [sym_preproc_undef] = STATE(2566), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), @@ -435659,7 +435694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435705,25 +435740,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2567] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(4336), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_modifier] = STATE(3740), + [sym_variable_declaration] = STATE(7416), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5975), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2567), [sym_preproc_endregion] = STATE(2567), [sym_preproc_line] = STATE(2567), @@ -435733,109 +435769,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2567), [sym_preproc_define] = STATE(2567), [sym_preproc_undef] = STATE(2567), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2568] = { - [sym_modifier] = STATE(3870), - [sym_variable_declaration] = STATE(7489), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5963), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(2568), - [sym_preproc_endregion] = STATE(2568), - [sym_preproc_line] = STATE(2568), - [sym_preproc_pragma] = STATE(2568), - [sym_preproc_nullable] = STATE(2568), - [sym_preproc_error] = STATE(2568), - [sym_preproc_warning] = STATE(2568), - [sym_preproc_define] = STATE(2568), - [sym_preproc_undef] = STATE(2568), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2546), [sym__identifier_token] = ACTIONS(2993), [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_unsafe] = ACTIONS(645), [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(4279), [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_abstract] = ACTIONS(645), [anon_sym_async] = ACTIONS(645), [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3941), [anon_sym_fixed] = ACTIONS(645), [anon_sym_internal] = ACTIONS(645), [anon_sym_new] = ACTIONS(645), @@ -435880,12 +435827,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2568] = { + [sym_property_pattern_clause] = STATE(2607), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2568), + [sym_preproc_endregion] = STATE(2568), + [sym_preproc_line] = STATE(2568), + [sym_preproc_pragma] = STATE(2568), + [sym_preproc_nullable] = STATE(2568), + [sym_preproc_error] = STATE(2568), + [sym_preproc_warning] = STATE(2568), + [sym_preproc_define] = STATE(2568), + [sym_preproc_undef] = STATE(2568), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3929), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2569] = { - [sym_property_pattern_clause] = STATE(2666), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym__variable_designation] = STATE(4735), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2569), [sym_preproc_endregion] = STATE(2569), [sym_preproc_line] = STATE(2569), @@ -435895,67 +435929,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2569), [sym_preproc_define] = STATE(2569), [sym_preproc_undef] = STATE(2569), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435966,12 +436000,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3989), }, [2570] = { - [sym__variable_designation] = STATE(4818), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym__variable_designation] = STATE(4861), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2570), [sym_preproc_endregion] = STATE(2570), [sym_preproc_line] = STATE(2570), @@ -435984,50 +436019,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(3933), [anon_sym_join] = ACTIONS(4088), [anon_sym_on] = ACTIONS(4088), [anon_sym_equals] = ACTIONS(4088), @@ -436038,10 +436073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436052,13 +436087,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3933), + [sym_interpolation_close_brace] = ACTIONS(3931), }, [2571] = { [sym__variable_designation] = STATE(4868), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2571), [sym_preproc_endregion] = STATE(2571), [sym_preproc_line] = STATE(2571), @@ -436143,9 +436178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2572] = { [sym__variable_designation] = STATE(4871), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2572), [sym_preproc_endregion] = STATE(2572), [sym_preproc_line] = STATE(2572), @@ -436158,50 +436193,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3971), + [anon_sym_QMARK] = ACTIONS(4003), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3971), + [anon_sym_switch] = ACTIONS(4003), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3971), + [anon_sym_into] = ACTIONS(4003), [anon_sym_join] = ACTIONS(4088), [anon_sym_on] = ACTIONS(4088), [anon_sym_equals] = ACTIONS(4088), @@ -436212,10 +436247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436226,13 +436261,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3969), + [sym_interpolation_close_brace] = ACTIONS(4001), }, [2573] = { - [sym__variable_designation] = STATE(4856), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_property_pattern_clause] = STATE(2642), + [sym__variable_designation] = STATE(3832), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2573), [sym_preproc_endregion] = STATE(2573), [sym_preproc_line] = STATE(2573), @@ -436242,67 +436278,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2573), [sym_preproc_define] = STATE(2573), [sym_preproc_undef] = STATE(2573), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3933), + [anon_sym_descending] = ACTIONS(3933), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436313,14 +436349,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3973), }, [2574] = { - [sym_property_pattern_clause] = STATE(2642), - [sym__variable_designation] = STATE(3818), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym_property_pattern_clause] = STATE(2681), + [sym__variable_designation] = STATE(3820), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2574), [sym_preproc_endregion] = STATE(2574), [sym_preproc_line] = STATE(2574), @@ -436330,67 +436365,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2574), [sym_preproc_define] = STATE(2574), [sym_preproc_undef] = STATE(2574), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3923), - [anon_sym_descending] = ACTIONS(3923), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3929), + [anon_sym_descending] = ACTIONS(3929), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436403,11 +436438,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2575] = { - [sym_property_pattern_clause] = STATE(2651), - [sym__variable_designation] = STATE(3818), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym_property_pattern_clause] = STATE(2683), + [sym__variable_designation] = STATE(3832), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2575), [sym_preproc_endregion] = STATE(2575), [sym_preproc_line] = STATE(2575), @@ -436417,67 +436452,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2575), [sym_preproc_define] = STATE(2575), [sym_preproc_undef] = STATE(2575), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3923), - [anon_sym_descending] = ACTIONS(3923), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3933), + [anon_sym_descending] = ACTIONS(3933), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436490,25 +436525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2576] = { - [sym_modifier] = STATE(3870), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6168), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_type_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2576), [sym_preproc_endregion] = STATE(2576), [sym_preproc_line] = STATE(2576), @@ -436518,53 +436535,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2576), [sym_preproc_define] = STATE(2576), [sym_preproc_undef] = STATE(2576), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(645), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(645), - [anon_sym_static] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_async] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_file] = ACTIONS(4283), - [anon_sym_fixed] = ACTIONS(645), - [anon_sym_internal] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_override] = ACTIONS(645), - [anon_sym_partial] = ACTIONS(645), - [anon_sym_private] = ACTIONS(645), - [anon_sym_protected] = ACTIONS(645), - [anon_sym_public] = ACTIONS(645), - [anon_sym_readonly] = ACTIONS(645), - [anon_sym_required] = ACTIONS(645), - [anon_sym_sealed] = ACTIONS(645), - [anon_sym_virtual] = ACTIONS(645), - [anon_sym_volatile] = ACTIONS(645), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3814), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436577,10 +436612,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2577] = { - [sym__variable_designation] = STATE(4869), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_property_pattern_clause] = STATE(2628), + [sym__variable_designation] = STATE(3820), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2577), [sym_preproc_endregion] = STATE(2577), [sym_preproc_line] = STATE(2577), @@ -436590,67 +436626,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2577), [sym_preproc_define] = STATE(2577), [sym_preproc_undef] = STATE(2577), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3929), + [anon_sym_descending] = ACTIONS(3929), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436661,13 +436697,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3993), }, [2578] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_property_pattern_clause] = STATE(2632), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2578), [sym_preproc_endregion] = STATE(2578), [sym_preproc_line] = STATE(2578), @@ -436677,67 +436713,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2578), [sym_preproc_define] = STATE(2578), [sym_preproc_undef] = STATE(2578), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_COLON] = ACTIONS(4001), - [anon_sym_COMMA] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(4003), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436748,13 +436784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4001), }, [2579] = { - [sym__variable_designation] = STATE(4884), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym__variable_designation] = STATE(4819), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2579), [sym_preproc_endregion] = STATE(2579), [sym_preproc_line] = STATE(2579), @@ -436767,48 +436802,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_COLON] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3985), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(4088), [anon_sym_into] = ACTIONS(4088), [anon_sym_join] = ACTIONS(4088), @@ -436821,10 +436856,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436835,14 +436870,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3983), + [sym_interpolation_close_brace] = ACTIONS(3927), }, [2580] = { - [sym_property_pattern_clause] = STATE(2667), - [sym__variable_designation] = STATE(3926), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(4869), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2580), [sym_preproc_endregion] = STATE(2580), [sym_preproc_line] = STATE(2580), @@ -436852,67 +436886,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2580), [sym_preproc_define] = STATE(2580), [sym_preproc_undef] = STATE(2580), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3935), - [anon_sym_descending] = ACTIONS(3935), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_COMMA] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436923,13 +436957,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3981), }, [2581] = { - [sym_property_pattern_clause] = STATE(2660), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym_modifier] = STATE(3740), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6144), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(2581), [sym_preproc_endregion] = STATE(2581), [sym_preproc_line] = STATE(2581), @@ -436939,67 +436988,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2581), [sym_preproc_define] = STATE(2581), [sym_preproc_undef] = STATE(2581), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_in] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(4283), + [anon_sym_fixed] = ACTIONS(645), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(645), + [anon_sym_override] = ACTIONS(645), + [anon_sym_partial] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_readonly] = ACTIONS(645), + [anon_sym_required] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_virtual] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437012,10 +437047,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2582] = { - [sym__variable_designation] = STATE(4871), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym_property_pattern_clause] = STATE(2624), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2582), [sym_preproc_endregion] = STATE(2582), [sym_preproc_line] = STATE(2582), @@ -437025,67 +437061,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2582), [sym_preproc_define] = STATE(2582), [sym_preproc_undef] = STATE(2582), - [sym__identifier_token] = ACTIONS(4086), - [anon_sym_alias] = ACTIONS(4088), - [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(4088), - [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(4088), - [anon_sym_var] = ACTIONS(4088), - [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(4088), - [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(4088), - [anon_sym_join] = ACTIONS(4088), - [anon_sym_on] = ACTIONS(4088), - [anon_sym_equals] = ACTIONS(4088), - [anon_sym_let] = ACTIONS(4088), - [anon_sym_orderby] = ACTIONS(4088), - [anon_sym_ascending] = ACTIONS(4088), - [anon_sym_descending] = ACTIONS(4088), - [anon_sym_group] = ACTIONS(4088), - [anon_sym_by] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_in] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437096,13 +437132,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3969), }, [2583] = { - [sym__variable_designation] = STATE(4818), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym__variable_designation] = STATE(4819), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2583), [sym_preproc_endregion] = STATE(2583), [sym_preproc_line] = STATE(2583), @@ -437115,50 +437150,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(4088), [anon_sym_on] = ACTIONS(4088), [anon_sym_equals] = ACTIONS(4088), @@ -437169,10 +437204,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437183,14 +437218,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3933), + [sym_interpolation_close_brace] = ACTIONS(3927), }, [2584] = { - [sym_property_pattern_clause] = STATE(2623), - [sym__variable_designation] = STATE(3926), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(4861), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2584), [sym_preproc_endregion] = STATE(2584), [sym_preproc_line] = STATE(2584), @@ -437200,137 +437234,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2584), [sym_preproc_define] = STATE(2584), [sym_preproc_undef] = STATE(2584), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3935), - [anon_sym_descending] = ACTIONS(3935), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2585] = { - [sym__variable_designation] = STATE(4866), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2585), - [sym_preproc_endregion] = STATE(2585), - [sym_preproc_line] = STATE(2585), - [sym_preproc_pragma] = STATE(2585), - [sym_preproc_nullable] = STATE(2585), - [sym_preproc_error] = STATE(2585), - [sym_preproc_warning] = STATE(2585), - [sym_preproc_define] = STATE(2585), - [sym_preproc_undef] = STATE(2585), [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(4088), [anon_sym_into] = ACTIONS(4088), [anon_sym_join] = ACTIONS(4088), @@ -437343,10 +437291,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437357,22 +437305,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3921), + [sym_interpolation_close_brace] = ACTIONS(3931), }, - [2586] = { + [2585] = { [sym__variable_designation] = STATE(4868), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), - [sym_preproc_region] = STATE(2586), - [sym_preproc_endregion] = STATE(2586), - [sym_preproc_line] = STATE(2586), - [sym_preproc_pragma] = STATE(2586), - [sym_preproc_nullable] = STATE(2586), - [sym_preproc_error] = STATE(2586), - [sym_preproc_warning] = STATE(2586), - [sym_preproc_define] = STATE(2586), - [sym_preproc_undef] = STATE(2586), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), + [sym_preproc_region] = STATE(2585), + [sym_preproc_endregion] = STATE(2585), + [sym_preproc_line] = STATE(2585), + [sym_preproc_pragma] = STATE(2585), + [sym_preproc_nullable] = STATE(2585), + [sym_preproc_error] = STATE(2585), + [sym_preproc_warning] = STATE(2585), + [sym_preproc_define] = STATE(2585), + [sym_preproc_undef] = STATE(2585), [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), @@ -437446,11 +437394,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3997), }, + [2586] = { + [sym__variable_designation] = STATE(4871), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), + [sym_preproc_region] = STATE(2586), + [sym_preproc_endregion] = STATE(2586), + [sym_preproc_line] = STATE(2586), + [sym_preproc_pragma] = STATE(2586), + [sym_preproc_nullable] = STATE(2586), + [sym_preproc_error] = STATE(2586), + [sym_preproc_warning] = STATE(2586), + [sym_preproc_define] = STATE(2586), + [sym_preproc_undef] = STATE(2586), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4001), + }, [2587] = { - [sym__variable_designation] = STATE(4866), - [sym_parenthesized_variable_designation] = STATE(4813), - [sym_identifier] = STATE(4815), - [sym__reserved_identifier] = STATE(4300), + [sym__variable_designation] = STATE(4882), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2587), [sym_preproc_endregion] = STATE(2587), [sym_preproc_line] = STATE(2587), @@ -437463,50 +437498,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4086), [anon_sym_alias] = ACTIONS(4088), [anon_sym_global] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_COLON] = ACTIONS(3985), + [anon_sym_COMMA] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4281), [anon_sym_file] = ACTIONS(4088), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), [anon_sym_where] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3987), [anon_sym_notnull] = ACTIONS(4088), [anon_sym_unmanaged] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), [anon_sym_scoped] = ACTIONS(4088), [anon_sym_var] = ACTIONS(4088), [anon_sym_yield] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3987), [anon_sym_when] = ACTIONS(4088), [sym_discard] = ACTIONS(4092), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), [anon_sym_from] = ACTIONS(4088), - [anon_sym_into] = ACTIONS(3923), + [anon_sym_into] = ACTIONS(4088), [anon_sym_join] = ACTIONS(4088), [anon_sym_on] = ACTIONS(4088), [anon_sym_equals] = ACTIONS(4088), @@ -437517,10 +437552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4088), [anon_sym_by] = ACTIONS(4088), [anon_sym_select] = ACTIONS(4088), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437531,10 +437566,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3921), + [sym_interpolation_close_brace] = ACTIONS(3985), }, [2588] = { - [sym_type_argument_list] = STATE(2428), + [sym__variable_designation] = STATE(4856), + [sym_parenthesized_variable_designation] = STATE(4814), + [sym_identifier] = STATE(4816), + [sym__reserved_identifier] = STATE(4318), [sym_preproc_region] = STATE(2588), [sym_preproc_endregion] = STATE(2588), [sym_preproc_line] = STATE(2588), @@ -437544,71 +437582,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2588), [sym_preproc_define] = STATE(2588), [sym_preproc_undef] = STATE(2588), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(4074), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3810), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3975), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(3979), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(4088), + [anon_sym_into] = ACTIONS(4088), + [anon_sym_join] = ACTIONS(4088), + [anon_sym_on] = ACTIONS(4088), + [anon_sym_equals] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_orderby] = ACTIONS(4088), + [anon_sym_ascending] = ACTIONS(4088), + [anon_sym_descending] = ACTIONS(4088), + [anon_sym_group] = ACTIONS(4088), + [anon_sym_by] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437619,13 +437653,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3975), }, [2589] = { - [sym_property_pattern_clause] = STATE(2822), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2875), + [sym__variable_designation] = STATE(3286), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2589), [sym_preproc_endregion] = STATE(2589), [sym_preproc_line] = STATE(2589), @@ -437638,63 +437673,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3929), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3923), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437707,6 +437742,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2590] = { + [sym_property_pattern_clause] = STATE(2834), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2590), [sym_preproc_endregion] = STATE(2590), [sym_preproc_line] = STATE(2590), @@ -437716,71 +437756,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2590), [sym_preproc_define] = STATE(2590), [sym_preproc_undef] = STATE(2590), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_EQ_GT] = ACTIONS(4226), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2989), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437793,11 +437828,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2591] = { - [sym_property_pattern_clause] = STATE(2692), - [sym__variable_designation] = STATE(4182), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), + [sym_property_pattern_clause] = STATE(2835), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2591), [sym_preproc_endregion] = STATE(2591), [sym_preproc_line] = STATE(2591), @@ -437807,66 +437842,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2591), [sym_preproc_define] = STATE(2591), [sym_preproc_undef] = STATE(2591), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437879,10 +437914,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2592] = { - [sym__variable_designation] = STATE(3358), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2592), [sym_preproc_endregion] = STATE(2592), [sym_preproc_line] = STATE(2592), @@ -437892,67 +437923,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2592), [sym_preproc_define] = STATE(2592), [sym_preproc_undef] = STATE(2592), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3935), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_ref] = ACTIONS(3785), + [anon_sym_delegate] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_var] = ACTIONS(3785), + [sym_predefined_type] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_DOT_DOT] = ACTIONS(2991), + [anon_sym_and] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_DASH_GT] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437965,11 +438000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2593] = { - [sym_property_pattern_clause] = STATE(2696), - [sym__variable_designation] = STATE(4210), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), [sym_preproc_region] = STATE(2593), [sym_preproc_endregion] = STATE(2593), [sym_preproc_line] = STATE(2593), @@ -437979,66 +438009,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2593), [sym_preproc_define] = STATE(2593), [sym_preproc_undef] = STATE(2593), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(4184), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_RPAREN] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_EQ_GT] = ACTIONS(4184), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438051,10 +438086,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2594] = { - [sym__variable_designation] = STATE(3363), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2844), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2594), [sym_preproc_endregion] = STATE(2594), [sym_preproc_line] = STATE(2594), @@ -438067,52 +438103,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3923), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3929), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), @@ -438121,10 +438156,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438137,10 +438172,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2595] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2705), + [sym__variable_designation] = STATE(4217), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2595), [sym_preproc_endregion] = STATE(2595), [sym_preproc_line] = STATE(2595), @@ -438150,67 +438186,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2595), [sym_preproc_define] = STATE(2595), [sym_preproc_undef] = STATE(2595), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3999), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438223,10 +438258,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2596] = { - [sym__variable_designation] = STATE(3370), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2775), + [sym__variable_designation] = STATE(3554), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2596), [sym_preproc_endregion] = STATE(2596), [sym_preproc_line] = STATE(2596), @@ -438239,50 +438275,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3969), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3971), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3971), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -438291,12 +438326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3929), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438309,11 +438344,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2597] = { - [sym_property_pattern_clause] = STATE(2793), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2845), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2597), [sym_preproc_endregion] = STATE(2597), [sym_preproc_line] = STATE(2597), @@ -438326,52 +438361,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3935), + [anon_sym_on] = ACTIONS(3933), + [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), @@ -438379,10 +438414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438395,10 +438430,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2598] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2777), + [sym__variable_designation] = STATE(3533), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2598), [sym_preproc_endregion] = STATE(2598), [sym_preproc_line] = STATE(2598), @@ -438411,48 +438447,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COLON] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3933), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3935), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), @@ -438463,12 +438498,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3933), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438481,11 +438516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2599] = { - [sym_property_pattern_clause] = STATE(2737), - [sym__variable_designation] = STATE(3357), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_type_argument_list] = STATE(2627), [sym_preproc_region] = STATE(2599), [sym_preproc_endregion] = STATE(2599), [sym_preproc_line] = STATE(2599), @@ -438495,152 +438526,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2599), [sym_preproc_define] = STATE(2599), [sym_preproc_undef] = STATE(2599), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4285), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2600] = { + [sym_property_pattern_clause] = STATE(2862), + [sym__variable_designation] = STATE(3286), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2600), + [sym_preproc_endregion] = STATE(2600), + [sym_preproc_line] = STATE(2600), + [sym_preproc_pragma] = STATE(2600), + [sym_preproc_nullable] = STATE(2600), + [sym_preproc_error] = STATE(2600), + [sym_preproc_warning] = STATE(2600), + [sym_preproc_define] = STATE(2600), + [sym_preproc_undef] = STATE(2600), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3935), + [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3929), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2600] = { - [sym_type_argument_list] = STATE(2639), - [sym_preproc_region] = STATE(2600), - [sym_preproc_endregion] = STATE(2600), - [sym_preproc_line] = STATE(2600), - [sym_preproc_pragma] = STATE(2600), - [sym_preproc_nullable] = STATE(2600), - [sym_preproc_error] = STATE(2600), - [sym_preproc_warning] = STATE(2600), - [sym_preproc_define] = STATE(2600), - [sym_preproc_undef] = STATE(2600), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4285), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438653,11 +438688,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2601] = { - [sym_property_pattern_clause] = STATE(2749), - [sym__variable_designation] = STATE(3362), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2863), + [sym__variable_designation] = STATE(3391), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2601), [sym_preproc_endregion] = STATE(2601), [sym_preproc_line] = STATE(2601), @@ -438670,63 +438705,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3899), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), + [anon_sym_into] = ACTIONS(3933), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3923), + [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3933), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438739,11 +438774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2602] = { - [sym_property_pattern_clause] = STATE(2804), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_type_argument_list] = STATE(2810), [sym_preproc_region] = STATE(2602), [sym_preproc_endregion] = STATE(2602), [sym_preproc_line] = STATE(2602), @@ -438753,66 +438784,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2602), [sym_preproc_define] = STATE(2602), [sym_preproc_undef] = STATE(2602), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3923), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(4288), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3867), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438823,12 +438857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [2603] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2603), [sym_preproc_endregion] = STATE(2603), [sym_preproc_line] = STATE(2603), @@ -438838,153 +438869,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2603), [sym_preproc_define] = STATE(2603), [sym_preproc_undef] = STATE(2603), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3921), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3923), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2604] = { - [sym_preproc_region] = STATE(2604), - [sym_preproc_endregion] = STATE(2604), - [sym_preproc_line] = STATE(2604), - [sym_preproc_pragma] = STATE(2604), - [sym_preproc_nullable] = STATE(2604), - [sym_preproc_error] = STATE(2604), - [sym_preproc_warning] = STATE(2604), - [sym_preproc_define] = STATE(2604), - [sym_preproc_undef] = STATE(2604), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_EQ] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3664), - [anon_sym_where] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_when] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_PLUS_EQ] = ACTIONS(3664), - [anon_sym_DASH_EQ] = ACTIONS(3664), - [anon_sym_STAR_EQ] = ACTIONS(3664), - [anon_sym_SLASH_EQ] = ACTIONS(3664), - [anon_sym_PERCENT_EQ] = ACTIONS(3664), - [anon_sym_AMP_EQ] = ACTIONS(3664), - [anon_sym_CARET_EQ] = ACTIONS(3664), - [anon_sym_PIPE_EQ] = ACTIONS(3664), - [anon_sym_LT_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_RBRACK] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_RPAREN] = ACTIONS(4221), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_EQ_GT] = ACTIONS(4221), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4293), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4293), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2604] = { + [sym_preproc_region] = STATE(2604), + [sym_preproc_endregion] = STATE(2604), + [sym_preproc_line] = STATE(2604), + [sym_preproc_pragma] = STATE(2604), + [sym_preproc_nullable] = STATE(2604), + [sym_preproc_error] = STATE(2604), + [sym_preproc_warning] = STATE(2604), + [sym_preproc_define] = STATE(2604), + [sym_preproc_undef] = STATE(2604), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3459), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_when] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3459), + [anon_sym_equals] = ACTIONS(3459), + [anon_sym_by] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438997,11 +439032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2605] = { - [sym_property_pattern_clause] = STATE(2862), - [sym__variable_designation] = STATE(4210), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(2605), [sym_preproc_endregion] = STATE(2605), [sym_preproc_line] = STATE(2605), @@ -439011,66 +439041,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2605), [sym_preproc_define] = STATE(2605), [sym_preproc_undef] = STATE(2605), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_alias] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_event] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_ref] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_delegate] = ACTIONS(3255), + [anon_sym_record] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_file] = ACTIONS(3255), + [anon_sym_fixed] = ACTIONS(3255), + [anon_sym_internal] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_partial] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_required] = ACTIONS(3255), + [anon_sym_sealed] = ACTIONS(3255), + [anon_sym_virtual] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_where] = ACTIONS(3255), + [anon_sym_notnull] = ACTIONS(3255), + [anon_sym_unmanaged] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_implicit] = ACTIONS(3255), + [anon_sym_explicit] = ACTIONS(3255), + [anon_sym_scoped] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [sym_predefined_type] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_when] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_into] = ACTIONS(3255), + [anon_sym_join] = ACTIONS(3255), + [anon_sym_on] = ACTIONS(3255), + [anon_sym_equals] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_orderby] = ACTIONS(3255), + [anon_sym_ascending] = ACTIONS(3255), + [anon_sym_descending] = ACTIONS(3255), + [anon_sym_group] = ACTIONS(3255), + [anon_sym_by] = ACTIONS(3255), + [anon_sym_select] = ACTIONS(3255), + [aux_sym_preproc_if_token1] = ACTIONS(3257), + [aux_sym_preproc_if_token3] = ACTIONS(3257), + [aux_sym_preproc_else_token1] = ACTIONS(3257), + [aux_sym_preproc_elif_token1] = ACTIONS(3257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439083,10 +439118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2606] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2606), [sym_preproc_endregion] = STATE(2606), [sym_preproc_line] = STATE(2606), @@ -439099,6 +439134,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3931), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3933), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2607] = { + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2607), + [sym_preproc_endregion] = STATE(2607), + [sym_preproc_line] = STATE(2607), + [sym_preproc_pragma] = STATE(2607), + [sym_preproc_nullable] = STATE(2607), + [sym_preproc_error] = STATE(2607), + [sym_preproc_warning] = STATE(2607), + [sym_preproc_define] = STATE(2607), + [sym_preproc_undef] = STATE(2607), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), [anon_sym_LBRACK] = ACTIONS(3997), [anon_sym_COLON] = ACTIONS(3997), [anon_sym_LPAREN] = ACTIONS(3997), @@ -439134,7 +439255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3899), [anon_sym_switch] = ACTIONS(3999), [anon_sym_when] = ACTIONS(3999), - [sym_discard] = ACTIONS(3919), + [sym_discard] = ACTIONS(3913), [anon_sym_DOT_DOT] = ACTIONS(3997), [anon_sym_and] = ACTIONS(3999), [anon_sym_or] = ACTIONS(3999), @@ -439168,69 +439289,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2607] = { - [sym_property_pattern_clause] = STATE(2797), - [sym__variable_designation] = STATE(3357), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2607), - [sym_preproc_endregion] = STATE(2607), - [sym_preproc_line] = STATE(2607), - [sym_preproc_pragma] = STATE(2607), - [sym_preproc_nullable] = STATE(2607), - [sym_preproc_error] = STATE(2607), - [sym_preproc_warning] = STATE(2607), - [sym_preproc_define] = STATE(2607), - [sym_preproc_undef] = STATE(2607), + [2608] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2608), + [sym_preproc_endregion] = STATE(2608), + [sym_preproc_line] = STATE(2608), + [sym_preproc_pragma] = STATE(2608), + [sym_preproc_nullable] = STATE(2608), + [sym_preproc_error] = STATE(2608), + [sym_preproc_warning] = STATE(2608), + [sym_preproc_define] = STATE(2608), + [sym_preproc_undef] = STATE(2608), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(4003), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(4001), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(4003), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3935), + [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), @@ -439239,10 +439360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439254,69 +439375,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2608] = { - [sym_property_pattern_clause] = STATE(2801), - [sym__variable_designation] = STATE(3362), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2608), - [sym_preproc_endregion] = STATE(2608), - [sym_preproc_line] = STATE(2608), - [sym_preproc_pragma] = STATE(2608), - [sym_preproc_nullable] = STATE(2608), - [sym_preproc_error] = STATE(2608), - [sym_preproc_warning] = STATE(2608), - [sym_preproc_define] = STATE(2608), - [sym_preproc_undef] = STATE(2608), + [2609] = { + [sym__variable_designation] = STATE(3331), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2609), + [sym_preproc_endregion] = STATE(2609), + [sym_preproc_line] = STATE(2609), + [sym_preproc_pragma] = STATE(2609), + [sym_preproc_nullable] = STATE(2609), + [sym_preproc_error] = STATE(2609), + [sym_preproc_warning] = STATE(2609), + [sym_preproc_define] = STATE(2609), + [sym_preproc_undef] = STATE(2609), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3929), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3923), + [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), @@ -439325,10 +439446,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439340,81 +439461,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2609] = { - [sym_property_pattern_clause] = STATE(2826), - [sym__variable_designation] = STATE(4182), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2609), - [sym_preproc_endregion] = STATE(2609), - [sym_preproc_line] = STATE(2609), - [sym_preproc_pragma] = STATE(2609), - [sym_preproc_nullable] = STATE(2609), - [sym_preproc_error] = STATE(2609), - [sym_preproc_warning] = STATE(2609), - [sym_preproc_define] = STATE(2609), - [sym_preproc_undef] = STATE(2609), + [2610] = { + [sym_property_pattern_clause] = STATE(2699), + [sym__variable_designation] = STATE(4209), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2610), + [sym_preproc_endregion] = STATE(2610), + [sym_preproc_line] = STATE(2610), + [sym_preproc_pragma] = STATE(2610), + [sym_preproc_nullable] = STATE(2610), + [sym_preproc_error] = STATE(2610), + [sym_preproc_warning] = STATE(2610), + [sym_preproc_define] = STATE(2610), + [sym_preproc_undef] = STATE(2610), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3893), [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3893), [anon_sym_var] = ACTIONS(3893), [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3935), + [anon_sym_join] = ACTIONS(3929), [anon_sym_on] = ACTIONS(3893), [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), [anon_sym_ascending] = ACTIONS(3893), [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3935), + [anon_sym_group] = ACTIONS(3929), [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439426,67 +439547,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2610] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2610), - [sym_preproc_endregion] = STATE(2610), - [sym_preproc_line] = STATE(2610), - [sym_preproc_pragma] = STATE(2610), - [sym_preproc_nullable] = STATE(2610), - [sym_preproc_error] = STATE(2610), - [sym_preproc_warning] = STATE(2610), - [sym_preproc_define] = STATE(2610), - [sym_preproc_undef] = STATE(2610), + [2611] = { + [sym__variable_designation] = STATE(3268), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2611), + [sym_preproc_endregion] = STATE(2611), + [sym_preproc_line] = STATE(2611), + [sym_preproc_pragma] = STATE(2611), + [sym_preproc_nullable] = STATE(2611), + [sym_preproc_error] = STATE(2611), + [sym_preproc_warning] = STATE(2611), + [sym_preproc_define] = STATE(2611), + [sym_preproc_undef] = STATE(2611), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_EQ_GT] = ACTIONS(3969), + [anon_sym_EQ_GT] = ACTIONS(3931), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3971), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3933), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -439497,10 +439618,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439512,67 +439633,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2611] = { - [sym_property_pattern_clause] = STATE(2820), - [sym__variable_designation] = STATE(3357), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2611), - [sym_preproc_endregion] = STATE(2611), - [sym_preproc_line] = STATE(2611), - [sym_preproc_pragma] = STATE(2611), - [sym_preproc_nullable] = STATE(2611), - [sym_preproc_error] = STATE(2611), - [sym_preproc_warning] = STATE(2611), - [sym_preproc_define] = STATE(2611), - [sym_preproc_undef] = STATE(2611), + [2612] = { + [sym__variable_designation] = STATE(3282), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2612), + [sym_preproc_endregion] = STATE(2612), + [sym_preproc_line] = STATE(2612), + [sym_preproc_pragma] = STATE(2612), + [sym_preproc_nullable] = STATE(2612), + [sym_preproc_error] = STATE(2612), + [sym_preproc_warning] = STATE(2612), + [sym_preproc_define] = STATE(2612), + [sym_preproc_undef] = STATE(2612), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3999), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3997), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3999), [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), + [anon_sym_into] = ACTIONS(3999), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), [anon_sym_equals] = ACTIONS(3899), @@ -439581,97 +439702,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3935), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2612] = { - [sym_type_argument_list] = STATE(2819), - [sym_preproc_region] = STATE(2612), - [sym_preproc_endregion] = STATE(2612), - [sym_preproc_line] = STATE(2612), - [sym_preproc_pragma] = STATE(2612), - [sym_preproc_nullable] = STATE(2612), - [sym_preproc_error] = STATE(2612), - [sym_preproc_warning] = STATE(2612), - [sym_preproc_define] = STATE(2612), - [sym_preproc_undef] = STATE(2612), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439682,9 +439718,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [2613] = { + [sym__variable_designation] = STATE(3297), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2613), [sym_preproc_endregion] = STATE(2613), [sym_preproc_line] = STATE(2613), @@ -439694,71 +439733,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2613), [sym_preproc_define] = STATE(2613), [sym_preproc_undef] = STATE(2613), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_ref] = ACTIONS(3785), - [anon_sym_delegate] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_var] = ACTIONS(3785), - [sym_predefined_type] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_DOT_DOT] = ACTIONS(2983), - [anon_sym_and] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_QMARK_QMARK] = ACTIONS(2983), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2983), - [anon_sym_with] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(3787), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(4001), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(4003), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439780,71 +439815,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2614), [sym_preproc_define] = STATE(2614), [sym_preproc_undef] = STATE(2614), - [sym__identifier_token] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_alias] = ACTIONS(3339), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_event] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_ref] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_delegate] = ACTIONS(3339), - [anon_sym_record] = ACTIONS(3339), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_file] = ACTIONS(3339), - [anon_sym_fixed] = ACTIONS(3339), - [anon_sym_internal] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_partial] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_required] = ACTIONS(3339), - [anon_sym_sealed] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_where] = ACTIONS(3339), - [anon_sym_notnull] = ACTIONS(3339), - [anon_sym_unmanaged] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_implicit] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_scoped] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [sym_predefined_type] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_when] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_from] = ACTIONS(3339), - [anon_sym_into] = ACTIONS(3339), - [anon_sym_join] = ACTIONS(3339), - [anon_sym_on] = ACTIONS(3339), - [anon_sym_equals] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_orderby] = ACTIONS(3339), - [anon_sym_ascending] = ACTIONS(3339), - [anon_sym_descending] = ACTIONS(3339), - [anon_sym_group] = ACTIONS(3339), - [anon_sym_by] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [aux_sym_preproc_if_token1] = ACTIONS(3341), - [aux_sym_preproc_if_token3] = ACTIONS(3341), - [aux_sym_preproc_else_token1] = ACTIONS(3341), - [aux_sym_preproc_elif_token1] = ACTIONS(3341), + [sym__identifier_token] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_alias] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_event] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_ref] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_delegate] = ACTIONS(3263), + [anon_sym_record] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_file] = ACTIONS(3263), + [anon_sym_fixed] = ACTIONS(3263), + [anon_sym_internal] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_partial] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_sealed] = ACTIONS(3263), + [anon_sym_virtual] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_where] = ACTIONS(3263), + [anon_sym_notnull] = ACTIONS(3263), + [anon_sym_unmanaged] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_implicit] = ACTIONS(3263), + [anon_sym_explicit] = ACTIONS(3263), + [anon_sym_scoped] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [sym_predefined_type] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_when] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_into] = ACTIONS(3263), + [anon_sym_join] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_equals] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_orderby] = ACTIONS(3263), + [anon_sym_ascending] = ACTIONS(3263), + [anon_sym_descending] = ACTIONS(3263), + [anon_sym_group] = ACTIONS(3263), + [anon_sym_by] = ACTIONS(3263), + [anon_sym_select] = ACTIONS(3263), + [aux_sym_preproc_if_token1] = ACTIONS(3265), + [aux_sym_preproc_if_token3] = ACTIONS(3265), + [aux_sym_preproc_else_token1] = ACTIONS(3265), + [aux_sym_preproc_elif_token1] = ACTIONS(3265), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439857,6 +439892,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2615] = { + [sym_property_pattern_clause] = STATE(2876), + [sym__variable_designation] = STATE(3391), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2615), [sym_preproc_endregion] = STATE(2615), [sym_preproc_line] = STATE(2615), @@ -439866,71 +439906,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2615), [sym_preproc_define] = STATE(2615), [sym_preproc_undef] = STATE(2615), - [sym__identifier_token] = ACTIONS(3343), - [anon_sym_extern] = ACTIONS(3343), - [anon_sym_alias] = ACTIONS(3343), - [anon_sym_global] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_event] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_ref] = ACTIONS(3343), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_delegate] = ACTIONS(3343), - [anon_sym_record] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_file] = ACTIONS(3343), - [anon_sym_fixed] = ACTIONS(3343), - [anon_sym_internal] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_partial] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_sealed] = ACTIONS(3343), - [anon_sym_virtual] = ACTIONS(3343), - [anon_sym_volatile] = ACTIONS(3343), - [anon_sym_where] = ACTIONS(3343), - [anon_sym_notnull] = ACTIONS(3343), - [anon_sym_unmanaged] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_implicit] = ACTIONS(3343), - [anon_sym_explicit] = ACTIONS(3343), - [anon_sym_scoped] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [sym_predefined_type] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_when] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_into] = ACTIONS(3343), - [anon_sym_join] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_equals] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_orderby] = ACTIONS(3343), - [anon_sym_ascending] = ACTIONS(3343), - [anon_sym_descending] = ACTIONS(3343), - [anon_sym_group] = ACTIONS(3343), - [anon_sym_by] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [aux_sym_preproc_if_token1] = ACTIONS(3345), - [aux_sym_preproc_if_token3] = ACTIONS(3345), - [aux_sym_preproc_else_token1] = ACTIONS(3345), - [aux_sym_preproc_elif_token1] = ACTIONS(3345), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439952,71 +439987,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2616), [sym_preproc_define] = STATE(2616), [sym_preproc_undef] = STATE(2616), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_RBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4293), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4293), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3664), + [anon_sym_where] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_PLUS_EQ] = ACTIONS(3664), + [anon_sym_DASH_EQ] = ACTIONS(3664), + [anon_sym_STAR_EQ] = ACTIONS(3664), + [anon_sym_SLASH_EQ] = ACTIONS(3664), + [anon_sym_PERCENT_EQ] = ACTIONS(3664), + [anon_sym_AMP_EQ] = ACTIONS(3664), + [anon_sym_CARET_EQ] = ACTIONS(3664), + [anon_sym_PIPE_EQ] = ACTIONS(3664), + [anon_sym_LT_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440029,11 +440064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2617] = { - [sym_property_pattern_clause] = STATE(2884), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2617), [sym_preproc_endregion] = STATE(2617), [sym_preproc_line] = STATE(2617), @@ -440043,66 +440073,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2617), [sym_preproc_define] = STATE(2617), [sym_preproc_undef] = STATE(2617), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3935), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_alias] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_event] = ACTIONS(3251), + [anon_sym_namespace] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_ref] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_delegate] = ACTIONS(3251), + [anon_sym_record] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_file] = ACTIONS(3251), + [anon_sym_fixed] = ACTIONS(3251), + [anon_sym_internal] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_partial] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_required] = ACTIONS(3251), + [anon_sym_sealed] = ACTIONS(3251), + [anon_sym_virtual] = ACTIONS(3251), + [anon_sym_volatile] = ACTIONS(3251), + [anon_sym_where] = ACTIONS(3251), + [anon_sym_notnull] = ACTIONS(3251), + [anon_sym_unmanaged] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_implicit] = ACTIONS(3251), + [anon_sym_explicit] = ACTIONS(3251), + [anon_sym_scoped] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [sym_predefined_type] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_when] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_into] = ACTIONS(3251), + [anon_sym_join] = ACTIONS(3251), + [anon_sym_on] = ACTIONS(3251), + [anon_sym_equals] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_orderby] = ACTIONS(3251), + [anon_sym_ascending] = ACTIONS(3251), + [anon_sym_descending] = ACTIONS(3251), + [anon_sym_group] = ACTIONS(3251), + [anon_sym_by] = ACTIONS(3251), + [anon_sym_select] = ACTIONS(3251), + [aux_sym_preproc_if_token1] = ACTIONS(3253), + [aux_sym_preproc_if_token3] = ACTIONS(3253), + [aux_sym_preproc_else_token1] = ACTIONS(3253), + [aux_sym_preproc_elif_token1] = ACTIONS(3253), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440115,11 +440150,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2618] = { - [sym_property_pattern_clause] = STATE(2883), - [sym__variable_designation] = STATE(3504), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2880), + [sym__variable_designation] = STATE(3286), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2618), [sym_preproc_endregion] = STATE(2618), [sym_preproc_line] = STATE(2618), @@ -440132,63 +440167,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3929), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3935), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440201,11 +440236,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2619] = { - [sym_property_pattern_clause] = STATE(2840), - [sym__variable_designation] = STATE(3362), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2824), + [sym__variable_designation] = STATE(4209), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2619), [sym_preproc_endregion] = STATE(2619), [sym_preproc_line] = STATE(2619), @@ -440215,66 +440250,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2619), [sym_preproc_define] = STATE(2619), [sym_preproc_undef] = STATE(2619), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_LBRACE] = ACTIONS(3903), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3923), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440287,11 +440322,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2620] = { - [sym_property_pattern_clause] = STATE(2721), - [sym__variable_designation] = STATE(3421), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym_property_pattern_clause] = STATE(2881), + [sym__variable_designation] = STATE(3391), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2620), [sym_preproc_endregion] = STATE(2620), [sym_preproc_line] = STATE(2620), @@ -440304,51 +440339,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_LBRACE] = ACTIONS(3903), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3923), + [anon_sym_on] = ACTIONS(3933), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), @@ -440357,10 +440392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440373,6 +440408,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2621] = { + [sym_property_pattern_clause] = STATE(2825), + [sym__variable_designation] = STATE(4217), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2621), [sym_preproc_endregion] = STATE(2621), [sym_preproc_line] = STATE(2621), @@ -440382,71 +440422,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2621), [sym_preproc_define] = STATE(2621), [sym_preproc_undef] = STATE(2621), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_event] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_ref] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_delegate] = ACTIONS(3205), - [anon_sym_record] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_implicit] = ACTIONS(3205), - [anon_sym_explicit] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [sym_predefined_type] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token3] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440459,6 +440494,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2622] = { + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2622), [sym_preproc_endregion] = STATE(2622), [sym_preproc_line] = STATE(2622), @@ -440468,71 +440507,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2622), [sym_preproc_define] = STATE(2622), [sym_preproc_undef] = STATE(2622), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3459), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_when] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_EQ_GT] = ACTIONS(3927), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3929), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440545,10 +440580,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2623] = { - [sym__variable_designation] = STATE(3822), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2623), [sym_preproc_endregion] = STATE(2623), [sym_preproc_line] = STATE(2623), @@ -440558,66 +440589,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2623), [sym_preproc_define] = STATE(2623), [sym_preproc_undef] = STATE(2623), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3999), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3999), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3999), - [anon_sym_orderby] = ACTIONS(3999), - [anon_sym_ascending] = ACTIONS(3999), - [anon_sym_descending] = ACTIONS(3999), - [anon_sym_group] = ACTIONS(3999), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_EQ] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3674), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3674), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3676), + [anon_sym_PLUS_EQ] = ACTIONS(3676), + [anon_sym_DASH_EQ] = ACTIONS(3676), + [anon_sym_STAR_EQ] = ACTIONS(3676), + [anon_sym_SLASH_EQ] = ACTIONS(3676), + [anon_sym_PERCENT_EQ] = ACTIONS(3676), + [anon_sym_AMP_EQ] = ACTIONS(3676), + [anon_sym_CARET_EQ] = ACTIONS(3676), + [anon_sym_PIPE_EQ] = ACTIONS(3676), + [anon_sym_LT_LT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3674), + [anon_sym_into] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440630,6 +440665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2624] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2624), [sym_preproc_endregion] = STATE(2624), [sym_preproc_line] = STATE(2624), @@ -440639,70 +440678,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2624), [sym_preproc_define] = STATE(2624), [sym_preproc_undef] = STATE(2624), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_in] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440724,70 +440759,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2625), [sym_preproc_define] = STATE(2625), [sym_preproc_undef] = STATE(2625), - [sym__identifier_token] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(4013), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4013), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4013), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_EQ_GT] = ACTIONS(4190), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4190), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4190), + [anon_sym_on] = ACTIONS(4190), + [anon_sym_equals] = ACTIONS(4190), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), + [aux_sym_preproc_if_token3] = ACTIONS(4190), + [aux_sym_preproc_else_token1] = ACTIONS(4190), + [aux_sym_preproc_elif_token1] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440809,70 +440844,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2626), [sym_preproc_define] = STATE(2626), [sym_preproc_undef] = STATE(2626), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4216), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COMMA] = ACTIONS(4216), - [anon_sym_RBRACK] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_RBRACE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(4218), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PLUS_PLUS] = ACTIONS(4216), - [anon_sym_DASH_DASH] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_LT] = ACTIONS(4218), - [anon_sym_GT_GT] = ACTIONS(4218), - [anon_sym_GT_GT_GT] = ACTIONS(4218), - [anon_sym_EQ_EQ] = ACTIONS(4216), - [anon_sym_BANG_EQ] = ACTIONS(4216), - [anon_sym_GT_EQ] = ACTIONS(4216), - [anon_sym_LT_EQ] = ACTIONS(4216), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_EQ_GT] = ACTIONS(4216), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [anon_sym_DOT_DOT] = ACTIONS(4216), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_PLUS_EQ] = ACTIONS(4216), - [anon_sym_DASH_EQ] = ACTIONS(4216), - [anon_sym_STAR_EQ] = ACTIONS(4216), - [anon_sym_SLASH_EQ] = ACTIONS(4216), - [anon_sym_PERCENT_EQ] = ACTIONS(4216), - [anon_sym_AMP_EQ] = ACTIONS(4216), - [anon_sym_CARET_EQ] = ACTIONS(4216), - [anon_sym_PIPE_EQ] = ACTIONS(4216), - [anon_sym_LT_LT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_QMARK_QMARK] = ACTIONS(4218), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4216), - [anon_sym_equals] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4216), - [anon_sym_with] = ACTIONS(4216), - [aux_sym_preproc_if_token3] = ACTIONS(4216), - [aux_sym_preproc_else_token1] = ACTIONS(4216), - [aux_sym_preproc_elif_token1] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440894,70 +440929,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2627), [sym_preproc_define] = STATE(2627), [sym_preproc_undef] = STATE(2627), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3666), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3666), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_PLUS_EQ] = ACTIONS(3668), + [anon_sym_DASH_EQ] = ACTIONS(3668), + [anon_sym_STAR_EQ] = ACTIONS(3668), + [anon_sym_SLASH_EQ] = ACTIONS(3668), + [anon_sym_PERCENT_EQ] = ACTIONS(3668), + [anon_sym_AMP_EQ] = ACTIONS(3668), + [anon_sym_CARET_EQ] = ACTIONS(3668), + [anon_sym_PIPE_EQ] = ACTIONS(3668), + [anon_sym_LT_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3666), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440970,6 +441005,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2628] = { + [sym__variable_designation] = STATE(3836), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2628), [sym_preproc_endregion] = STATE(2628), [sym_preproc_line] = STATE(2628), @@ -440979,70 +441018,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2628), [sym_preproc_define] = STATE(2628), [sym_preproc_undef] = STATE(2628), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [sym_discard] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3999), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3999), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3999), + [anon_sym_orderby] = ACTIONS(3999), + [anon_sym_ascending] = ACTIONS(3999), + [anon_sym_descending] = ACTIONS(3999), + [anon_sym_group] = ACTIONS(3999), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3999), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441064,69 +441099,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2629), [sym_preproc_define] = STATE(2629), [sym_preproc_undef] = STATE(2629), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4300), + [anon_sym_GT] = ACTIONS(4300), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_SLASH] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4300), + [anon_sym_GT_GT] = ACTIONS(4300), + [anon_sym_GT_GT_GT] = ACTIONS(4300), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_QMARK_QMARK] = ACTIONS(4300), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [anon_sym_with] = ACTIONS(4297), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441137,13 +441173,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3628), }, [2630] = { - [sym__variable_designation] = STATE(3928), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3493), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2630), [sym_preproc_endregion] = STATE(2630), [sym_preproc_line] = STATE(2630), @@ -441153,66 +441188,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2630), [sym_preproc_define] = STATE(2630), [sym_preproc_undef] = STATE(2630), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3935), - [anon_sym_descending] = ACTIONS(3935), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_in] = ACTIONS(3979), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3979), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441234,69 +441269,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2631), [sym_preproc_define] = STATE(2631), [sym_preproc_undef] = STATE(2631), - [sym__identifier_token] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_global] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_file] = ACTIONS(4146), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_notnull] = ACTIONS(4146), - [anon_sym_unmanaged] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4148), - [anon_sym_EQ_EQ] = ACTIONS(4148), - [anon_sym_BANG_EQ] = ACTIONS(4148), - [anon_sym_GT_EQ] = ACTIONS(4148), - [anon_sym_LT_EQ] = ACTIONS(4148), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4150), - [anon_sym_var] = ACTIONS(4146), - [anon_sym_yield] = ACTIONS(4146), - [anon_sym_switch] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4146), - [sym_discard] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4148), - [anon_sym_from] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4146), - [anon_sym_join] = ACTIONS(4146), - [anon_sym_on] = ACTIONS(4146), - [anon_sym_equals] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_orderby] = ACTIONS(4146), - [anon_sym_ascending] = ACTIONS(4146), - [anon_sym_descending] = ACTIONS(4146), - [anon_sym_group] = ACTIONS(4146), - [anon_sym_by] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_in] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_EQ_GT] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_when] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_into] = ACTIONS(4172), + [anon_sym_on] = ACTIONS(4172), + [anon_sym_equals] = ACTIONS(4172), + [anon_sym_by] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), + [aux_sym_preproc_if_token3] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441307,13 +441343,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4148), }, [2632] = { - [sym__variable_designation] = STATE(3840), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2632), [sym_preproc_endregion] = STATE(2632), [sym_preproc_line] = STATE(2632), @@ -441323,66 +441358,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2632), [sym_preproc_define] = STATE(2632), [sym_preproc_undef] = STATE(2632), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_in] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441395,10 +441430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2633] = { - [sym__variable_designation] = STATE(3819), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2633), [sym_preproc_endregion] = STATE(2633), [sym_preproc_line] = STATE(2633), @@ -441408,66 +441439,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2633), [sym_preproc_define] = STATE(2633), [sym_preproc_undef] = STATE(2633), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3923), - [anon_sym_descending] = ACTIONS(3923), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3684), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_when] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_PLUS_EQ] = ACTIONS(3686), + [anon_sym_DASH_EQ] = ACTIONS(3686), + [anon_sym_STAR_EQ] = ACTIONS(3686), + [anon_sym_SLASH_EQ] = ACTIONS(3686), + [anon_sym_PERCENT_EQ] = ACTIONS(3686), + [anon_sym_AMP_EQ] = ACTIONS(3686), + [anon_sym_CARET_EQ] = ACTIONS(3686), + [anon_sym_PIPE_EQ] = ACTIONS(3686), + [anon_sym_LT_LT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3684), + [anon_sym_into] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441480,10 +441515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2634] = { - [sym__variable_designation] = STATE(3858), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym_type_argument_list] = STATE(2870), [sym_preproc_region] = STATE(2634), [sym_preproc_endregion] = STATE(2634), [sym_preproc_line] = STATE(2634), @@ -441493,66 +441525,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2634), [sym_preproc_define] = STATE(2634), [sym_preproc_undef] = STATE(2634), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441565,10 +441600,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2635] = { - [sym__variable_designation] = STATE(3819), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2635), [sym_preproc_endregion] = STATE(2635), [sym_preproc_line] = STATE(2635), @@ -441578,66 +441609,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2635), [sym_preproc_define] = STATE(2635), [sym_preproc_undef] = STATE(2635), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3923), - [anon_sym_descending] = ACTIONS(3923), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441659,261 +441694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2636), [sym_preproc_define] = STATE(2636), [sym_preproc_undef] = STATE(2636), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2637] = { - [sym_preproc_region] = STATE(2637), - [sym_preproc_endregion] = STATE(2637), - [sym_preproc_line] = STATE(2637), - [sym_preproc_pragma] = STATE(2637), - [sym_preproc_nullable] = STATE(2637), - [sym_preproc_error] = STATE(2637), - [sym_preproc_warning] = STATE(2637), - [sym_preproc_define] = STATE(2637), - [sym_preproc_undef] = STATE(2637), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3666), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3666), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3668), - [anon_sym_PLUS_EQ] = ACTIONS(3668), - [anon_sym_DASH_EQ] = ACTIONS(3668), - [anon_sym_STAR_EQ] = ACTIONS(3668), - [anon_sym_SLASH_EQ] = ACTIONS(3668), - [anon_sym_PERCENT_EQ] = ACTIONS(3668), - [anon_sym_AMP_EQ] = ACTIONS(3668), - [anon_sym_CARET_EQ] = ACTIONS(3668), - [anon_sym_PIPE_EQ] = ACTIONS(3668), - [anon_sym_LT_LT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3666), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2638] = { - [sym_preproc_region] = STATE(2638), - [sym_preproc_endregion] = STATE(2638), - [sym_preproc_line] = STATE(2638), - [sym_preproc_pragma] = STATE(2638), - [sym_preproc_nullable] = STATE(2638), - [sym_preproc_error] = STATE(2638), - [sym_preproc_warning] = STATE(2638), - [sym_preproc_define] = STATE(2638), - [sym_preproc_undef] = STATE(2638), - [sym__identifier_token] = ACTIONS(3662), - [anon_sym_alias] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_file] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3662), - [anon_sym_unmanaged] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2639] = { - [sym_preproc_region] = STATE(2639), - [sym_preproc_endregion] = STATE(2639), - [sym_preproc_line] = STATE(2639), - [sym_preproc_pragma] = STATE(2639), - [sym_preproc_nullable] = STATE(2639), - [sym_preproc_error] = STATE(2639), - [sym_preproc_warning] = STATE(2639), - [sym_preproc_define] = STATE(2639), - [sym_preproc_undef] = STATE(2639), [anon_sym_SEMI] = ACTIONS(3672), [anon_sym_EQ] = ACTIONS(3670), [anon_sym_LBRACK] = ACTIONS(3672), @@ -441989,11 +441769,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2637] = { + [sym_preproc_region] = STATE(2637), + [sym_preproc_endregion] = STATE(2637), + [sym_preproc_line] = STATE(2637), + [sym_preproc_pragma] = STATE(2637), + [sym_preproc_nullable] = STATE(2637), + [sym_preproc_error] = STATE(2637), + [sym_preproc_warning] = STATE(2637), + [sym_preproc_define] = STATE(2637), + [sym_preproc_undef] = STATE(2637), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2638] = { + [sym_preproc_region] = STATE(2638), + [sym_preproc_endregion] = STATE(2638), + [sym_preproc_line] = STATE(2638), + [sym_preproc_pragma] = STATE(2638), + [sym_preproc_nullable] = STATE(2638), + [sym_preproc_error] = STATE(2638), + [sym_preproc_warning] = STATE(2638), + [sym_preproc_define] = STATE(2638), + [sym_preproc_undef] = STATE(2638), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_LT] = ACTIONS(4170), + [anon_sym_GT_GT] = ACTIONS(4170), + [anon_sym_GT_GT_GT] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_EQ_GT] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_when] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4168), + [anon_sym_CARET_EQ] = ACTIONS(4168), + [anon_sym_PIPE_EQ] = ACTIONS(4168), + [anon_sym_LT_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_QMARK_QMARK] = ACTIONS(4170), + [anon_sym_on] = ACTIONS(4168), + [anon_sym_equals] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_with] = ACTIONS(4168), + [aux_sym_preproc_if_token3] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2639] = { + [sym_preproc_region] = STATE(2639), + [sym_preproc_endregion] = STATE(2639), + [sym_preproc_line] = STATE(2639), + [sym_preproc_pragma] = STATE(2639), + [sym_preproc_nullable] = STATE(2639), + [sym_preproc_error] = STATE(2639), + [sym_preproc_warning] = STATE(2639), + [sym_preproc_define] = STATE(2639), + [sym_preproc_undef] = STATE(2639), + [sym__identifier_token] = ACTIONS(4312), + [anon_sym_extern] = ACTIONS(4312), + [anon_sym_alias] = ACTIONS(4312), + [anon_sym_global] = ACTIONS(4312), + [anon_sym_using] = ACTIONS(4312), + [anon_sym_unsafe] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4314), + [anon_sym_static] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym_event] = ACTIONS(4312), + [anon_sym_namespace] = ACTIONS(4312), + [anon_sym_class] = ACTIONS(4312), + [anon_sym_ref] = ACTIONS(4312), + [anon_sym_struct] = ACTIONS(4312), + [anon_sym_enum] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4314), + [anon_sym_interface] = ACTIONS(4312), + [anon_sym_delegate] = ACTIONS(4312), + [anon_sym_record] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_async] = ACTIONS(4312), + [anon_sym_const] = ACTIONS(4312), + [anon_sym_file] = ACTIONS(4312), + [anon_sym_fixed] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_new] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_partial] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_required] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_virtual] = ACTIONS(4312), + [anon_sym_volatile] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_notnull] = ACTIONS(4312), + [anon_sym_unmanaged] = ACTIONS(4312), + [anon_sym_TILDE] = ACTIONS(4314), + [anon_sym_implicit] = ACTIONS(4312), + [anon_sym_explicit] = ACTIONS(4312), + [anon_sym_scoped] = ACTIONS(4312), + [anon_sym_var] = ACTIONS(4312), + [sym_predefined_type] = ACTIONS(4312), + [anon_sym_yield] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_from] = ACTIONS(4312), + [anon_sym_into] = ACTIONS(4312), + [anon_sym_join] = ACTIONS(4312), + [anon_sym_on] = ACTIONS(4312), + [anon_sym_equals] = ACTIONS(4312), + [anon_sym_let] = ACTIONS(4312), + [anon_sym_orderby] = ACTIONS(4312), + [anon_sym_ascending] = ACTIONS(4312), + [anon_sym_descending] = ACTIONS(4312), + [anon_sym_group] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_select] = ACTIONS(4312), + [aux_sym_preproc_if_token1] = ACTIONS(4314), + [aux_sym_preproc_if_token3] = ACTIONS(4314), + [aux_sym_preproc_else_token1] = ACTIONS(4314), + [aux_sym_preproc_elif_token1] = ACTIONS(4314), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2640] = { - [sym__variable_designation] = STATE(3803), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3842), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2640), [sym_preproc_endregion] = STATE(2640), [sym_preproc_line] = STATE(2640), @@ -442003,66 +442038,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2640), [sym_preproc_define] = STATE(2640), [sym_preproc_undef] = STATE(2640), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_COMMA] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442084,69 +442119,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2641), [sym_preproc_define] = STATE(2641), [sym_preproc_undef] = STATE(2641), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [sym_discard] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_RPAREN] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_LT] = ACTIONS(4170), + [anon_sym_GT_GT] = ACTIONS(4170), + [anon_sym_GT_GT_GT] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_EQ_GT] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_when] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4168), + [anon_sym_CARET_EQ] = ACTIONS(4168), + [anon_sym_PIPE_EQ] = ACTIONS(4168), + [anon_sym_LT_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_QMARK_QMARK] = ACTIONS(4170), + [anon_sym_into] = ACTIONS(4168), + [anon_sym_on] = ACTIONS(4168), + [anon_sym_equals] = ACTIONS(4168), + [anon_sym_by] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_with] = ACTIONS(4168), + [aux_sym_preproc_if_token3] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442157,13 +442193,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), }, [2642] = { - [sym__variable_designation] = STATE(3843), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3845), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2642), [sym_preproc_endregion] = STATE(2642), [sym_preproc_line] = STATE(2642), @@ -442173,66 +442208,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2642), [sym_preproc_define] = STATE(2642), [sym_preproc_undef] = STATE(2642), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(4003), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_orderby] = ACTIONS(3971), - [anon_sym_ascending] = ACTIONS(3971), - [anon_sym_descending] = ACTIONS(3971), - [anon_sym_group] = ACTIONS(3971), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_ascending] = ACTIONS(4003), + [anon_sym_descending] = ACTIONS(4003), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4003), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442254,70 +442289,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2643), [sym_preproc_define] = STATE(2643), [sym_preproc_undef] = STATE(2643), - [sym__identifier_token] = ACTIONS(4301), - [anon_sym_extern] = ACTIONS(4301), - [anon_sym_alias] = ACTIONS(4301), - [anon_sym_global] = ACTIONS(4301), - [anon_sym_using] = ACTIONS(4301), - [anon_sym_unsafe] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_static] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_event] = ACTIONS(4301), - [anon_sym_namespace] = ACTIONS(4301), - [anon_sym_class] = ACTIONS(4301), - [anon_sym_ref] = ACTIONS(4301), - [anon_sym_struct] = ACTIONS(4301), - [anon_sym_enum] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4303), - [anon_sym_interface] = ACTIONS(4301), - [anon_sym_delegate] = ACTIONS(4301), - [anon_sym_record] = ACTIONS(4301), - [anon_sym_abstract] = ACTIONS(4301), - [anon_sym_async] = ACTIONS(4301), - [anon_sym_const] = ACTIONS(4301), - [anon_sym_file] = ACTIONS(4301), - [anon_sym_fixed] = ACTIONS(4301), - [anon_sym_internal] = ACTIONS(4301), - [anon_sym_new] = ACTIONS(4301), - [anon_sym_override] = ACTIONS(4301), - [anon_sym_partial] = ACTIONS(4301), - [anon_sym_private] = ACTIONS(4301), - [anon_sym_protected] = ACTIONS(4301), - [anon_sym_public] = ACTIONS(4301), - [anon_sym_readonly] = ACTIONS(4301), - [anon_sym_required] = ACTIONS(4301), - [anon_sym_sealed] = ACTIONS(4301), - [anon_sym_virtual] = ACTIONS(4301), - [anon_sym_volatile] = ACTIONS(4301), - [anon_sym_where] = ACTIONS(4301), - [anon_sym_notnull] = ACTIONS(4301), - [anon_sym_unmanaged] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_implicit] = ACTIONS(4301), - [anon_sym_explicit] = ACTIONS(4301), - [anon_sym_scoped] = ACTIONS(4301), - [anon_sym_var] = ACTIONS(4301), - [sym_predefined_type] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_from] = ACTIONS(4301), - [anon_sym_into] = ACTIONS(4301), - [anon_sym_join] = ACTIONS(4301), - [anon_sym_on] = ACTIONS(4301), - [anon_sym_equals] = ACTIONS(4301), - [anon_sym_let] = ACTIONS(4301), - [anon_sym_orderby] = ACTIONS(4301), - [anon_sym_ascending] = ACTIONS(4301), - [anon_sym_descending] = ACTIONS(4301), - [anon_sym_group] = ACTIONS(4301), - [anon_sym_by] = ACTIONS(4301), - [anon_sym_select] = ACTIONS(4301), - [aux_sym_preproc_if_token1] = ACTIONS(4303), - [aux_sym_preproc_if_token3] = ACTIONS(4303), - [aux_sym_preproc_else_token1] = ACTIONS(4303), - [aux_sym_preproc_elif_token1] = ACTIONS(4303), + [sym__identifier_token] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4308), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(4026), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_is] = ACTIONS(4026), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4026), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442339,80 +442374,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2644), [sym_preproc_define] = STATE(2644), [sym_preproc_undef] = STATE(2644), - [sym__identifier_token] = ACTIONS(4305), - [anon_sym_extern] = ACTIONS(4305), - [anon_sym_alias] = ACTIONS(4305), - [anon_sym_global] = ACTIONS(4305), - [anon_sym_using] = ACTIONS(4305), - [anon_sym_unsafe] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4307), - [anon_sym_static] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_event] = ACTIONS(4305), - [anon_sym_namespace] = ACTIONS(4305), - [anon_sym_class] = ACTIONS(4305), - [anon_sym_ref] = ACTIONS(4305), - [anon_sym_struct] = ACTIONS(4305), - [anon_sym_enum] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(4309), - [anon_sym_interface] = ACTIONS(4305), - [anon_sym_delegate] = ACTIONS(4305), - [anon_sym_record] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_async] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(4305), - [anon_sym_file] = ACTIONS(4305), - [anon_sym_fixed] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_new] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_partial] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_readonly] = ACTIONS(4305), - [anon_sym_required] = ACTIONS(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_virtual] = ACTIONS(4305), - [anon_sym_volatile] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_notnull] = ACTIONS(4305), - [anon_sym_unmanaged] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4309), - [anon_sym_implicit] = ACTIONS(4305), - [anon_sym_explicit] = ACTIONS(4305), - [anon_sym_scoped] = ACTIONS(4305), - [anon_sym_var] = ACTIONS(4305), - [sym_predefined_type] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_from] = ACTIONS(4305), - [anon_sym_into] = ACTIONS(4305), - [anon_sym_join] = ACTIONS(4305), - [anon_sym_on] = ACTIONS(4305), - [anon_sym_equals] = ACTIONS(4305), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_orderby] = ACTIONS(4305), - [anon_sym_ascending] = ACTIONS(4305), - [anon_sym_descending] = ACTIONS(4305), - [anon_sym_group] = ACTIONS(4305), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_select] = ACTIONS(4305), - [aux_sym_preproc_if_token1] = ACTIONS(4309), - [aux_sym_preproc_if_token3] = ACTIONS(4309), - [aux_sym_preproc_else_token1] = ACTIONS(4309), - [aux_sym_preproc_elif_token1] = ACTIONS(4309), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4131), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4129), }, [2645] = { [sym_preproc_region] = STATE(2645), @@ -442424,70 +442459,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2645), [sym_preproc_define] = STATE(2645), [sym_preproc_undef] = STATE(2645), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_when] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3717), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3717), - [anon_sym_on] = ACTIONS(3717), - [anon_sym_equals] = ACTIONS(3717), - [anon_sym_by] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_switch] = ACTIONS(3709), + [anon_sym_when] = ACTIONS(3709), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3709), + [anon_sym_or] = ACTIONS(3709), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_into] = ACTIONS(3709), + [anon_sym_on] = ACTIONS(3709), + [anon_sym_equals] = ACTIONS(3709), + [anon_sym_by] = ACTIONS(3709), + [anon_sym_as] = ACTIONS(3709), + [anon_sym_is] = ACTIONS(3709), + [anon_sym_DASH_GT] = ACTIONS(3709), + [anon_sym_with] = ACTIONS(3709), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442499,80 +442534,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2646] = { - [sym_preproc_region] = STATE(2646), - [sym_preproc_endregion] = STATE(2646), - [sym_preproc_line] = STATE(2646), - [sym_preproc_pragma] = STATE(2646), - [sym_preproc_nullable] = STATE(2646), - [sym_preproc_error] = STATE(2646), - [sym_preproc_warning] = STATE(2646), - [sym_preproc_define] = STATE(2646), - [sym_preproc_undef] = STATE(2646), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3684), - [anon_sym_CARET] = ACTIONS(3684), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3684), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3684), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_when] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_PLUS_EQ] = ACTIONS(3686), - [anon_sym_DASH_EQ] = ACTIONS(3686), - [anon_sym_STAR_EQ] = ACTIONS(3686), - [anon_sym_SLASH_EQ] = ACTIONS(3686), - [anon_sym_PERCENT_EQ] = ACTIONS(3686), - [anon_sym_AMP_EQ] = ACTIONS(3686), - [anon_sym_CARET_EQ] = ACTIONS(3686), - [anon_sym_PIPE_EQ] = ACTIONS(3686), - [anon_sym_LT_LT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3684), - [anon_sym_into] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [2646] = { + [sym_preproc_region] = STATE(2646), + [sym_preproc_endregion] = STATE(2646), + [sym_preproc_line] = STATE(2646), + [sym_preproc_pragma] = STATE(2646), + [sym_preproc_nullable] = STATE(2646), + [sym_preproc_error] = STATE(2646), + [sym_preproc_warning] = STATE(2646), + [sym_preproc_define] = STATE(2646), + [sym_preproc_undef] = STATE(2646), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_into] = ACTIONS(4164), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442594,70 +442629,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2647), [sym_preproc_define] = STATE(2647), [sym_preproc_undef] = STATE(2647), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4216), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COMMA] = ACTIONS(4216), - [anon_sym_RBRACK] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(4216), - [anon_sym_RBRACE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PLUS_PLUS] = ACTIONS(4216), - [anon_sym_DASH_DASH] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_LT] = ACTIONS(4218), - [anon_sym_GT_GT] = ACTIONS(4218), - [anon_sym_GT_GT_GT] = ACTIONS(4218), - [anon_sym_EQ_EQ] = ACTIONS(4216), - [anon_sym_BANG_EQ] = ACTIONS(4216), - [anon_sym_GT_EQ] = ACTIONS(4216), - [anon_sym_LT_EQ] = ACTIONS(4216), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_EQ_GT] = ACTIONS(4216), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4216), - [anon_sym_DOT_DOT] = ACTIONS(4216), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_PLUS_EQ] = ACTIONS(4216), - [anon_sym_DASH_EQ] = ACTIONS(4216), - [anon_sym_STAR_EQ] = ACTIONS(4216), - [anon_sym_SLASH_EQ] = ACTIONS(4216), - [anon_sym_PERCENT_EQ] = ACTIONS(4216), - [anon_sym_AMP_EQ] = ACTIONS(4216), - [anon_sym_CARET_EQ] = ACTIONS(4216), - [anon_sym_PIPE_EQ] = ACTIONS(4216), - [anon_sym_LT_LT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_QMARK_QMARK] = ACTIONS(4218), - [anon_sym_on] = ACTIONS(4216), - [anon_sym_equals] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4216), - [anon_sym_with] = ACTIONS(4216), - [aux_sym_preproc_if_token3] = ACTIONS(4216), - [aux_sym_preproc_else_token1] = ACTIONS(4216), - [aux_sym_preproc_elif_token1] = ACTIONS(4216), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [sym_discard] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442668,6 +442702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), }, [2648] = { [sym_preproc_region] = STATE(2648), @@ -442679,70 +442714,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2648), [sym_preproc_define] = STATE(2648), [sym_preproc_undef] = STATE(2648), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_in] = ACTIONS(4186), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_when] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4188), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_in] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_EQ_GT] = ACTIONS(4225), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_when] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_into] = ACTIONS(4225), + [anon_sym_on] = ACTIONS(4225), + [anon_sym_equals] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [aux_sym_preproc_if_token3] = ACTIONS(4225), + [aux_sym_preproc_else_token1] = ACTIONS(4225), + [aux_sym_preproc_elif_token1] = ACTIONS(4225), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442755,10 +442790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2649] = { - [sym__variable_designation] = STATE(3407), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(2649), [sym_preproc_endregion] = STATE(2649), [sym_preproc_line] = STATE(2649), @@ -442768,66 +442799,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2649), [sym_preproc_define] = STATE(2649), [sym_preproc_undef] = STATE(2649), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_in] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(4318), + [anon_sym_extern] = ACTIONS(4318), + [anon_sym_alias] = ACTIONS(4318), + [anon_sym_global] = ACTIONS(4318), + [anon_sym_using] = ACTIONS(4318), + [anon_sym_unsafe] = ACTIONS(4318), + [anon_sym_EQ] = ACTIONS(4320), + [anon_sym_static] = ACTIONS(4318), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(4322), + [anon_sym_event] = ACTIONS(4318), + [anon_sym_namespace] = ACTIONS(4318), + [anon_sym_class] = ACTIONS(4318), + [anon_sym_ref] = ACTIONS(4318), + [anon_sym_struct] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4318), + [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_interface] = ACTIONS(4318), + [anon_sym_delegate] = ACTIONS(4318), + [anon_sym_record] = ACTIONS(4318), + [anon_sym_abstract] = ACTIONS(4318), + [anon_sym_async] = ACTIONS(4318), + [anon_sym_const] = ACTIONS(4318), + [anon_sym_file] = ACTIONS(4318), + [anon_sym_fixed] = ACTIONS(4318), + [anon_sym_internal] = ACTIONS(4318), + [anon_sym_new] = ACTIONS(4318), + [anon_sym_override] = ACTIONS(4318), + [anon_sym_partial] = ACTIONS(4318), + [anon_sym_private] = ACTIONS(4318), + [anon_sym_protected] = ACTIONS(4318), + [anon_sym_public] = ACTIONS(4318), + [anon_sym_readonly] = ACTIONS(4318), + [anon_sym_required] = ACTIONS(4318), + [anon_sym_sealed] = ACTIONS(4318), + [anon_sym_virtual] = ACTIONS(4318), + [anon_sym_volatile] = ACTIONS(4318), + [anon_sym_where] = ACTIONS(4318), + [anon_sym_notnull] = ACTIONS(4318), + [anon_sym_unmanaged] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(4322), + [anon_sym_implicit] = ACTIONS(4318), + [anon_sym_explicit] = ACTIONS(4318), + [anon_sym_scoped] = ACTIONS(4318), + [anon_sym_var] = ACTIONS(4318), + [sym_predefined_type] = ACTIONS(4318), + [anon_sym_yield] = ACTIONS(4318), + [anon_sym_when] = ACTIONS(4318), + [anon_sym_from] = ACTIONS(4318), + [anon_sym_into] = ACTIONS(4318), + [anon_sym_join] = ACTIONS(4318), + [anon_sym_on] = ACTIONS(4318), + [anon_sym_equals] = ACTIONS(4318), + [anon_sym_let] = ACTIONS(4318), + [anon_sym_orderby] = ACTIONS(4318), + [anon_sym_ascending] = ACTIONS(4318), + [anon_sym_descending] = ACTIONS(4318), + [anon_sym_group] = ACTIONS(4318), + [anon_sym_by] = ACTIONS(4318), + [anon_sym_select] = ACTIONS(4318), + [aux_sym_preproc_if_token1] = ACTIONS(4322), + [aux_sym_preproc_if_token3] = ACTIONS(4322), + [aux_sym_preproc_else_token1] = ACTIONS(4322), + [aux_sym_preproc_elif_token1] = ACTIONS(4322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442849,6 +442884,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2650), [sym_preproc_define] = STATE(2650), [sym_preproc_undef] = STATE(2650), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4324), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2651] = { + [sym_preproc_region] = STATE(2651), + [sym_preproc_endregion] = STATE(2651), + [sym_preproc_line] = STATE(2651), + [sym_preproc_pragma] = STATE(2651), + [sym_preproc_nullable] = STATE(2651), + [sym_preproc_error] = STATE(2651), + [sym_preproc_warning] = STATE(2651), + [sym_preproc_define] = STATE(2651), + [sym_preproc_undef] = STATE(2651), + [sym__identifier_token] = ACTIONS(4326), + [anon_sym_extern] = ACTIONS(4326), + [anon_sym_alias] = ACTIONS(4326), + [anon_sym_global] = ACTIONS(4326), + [anon_sym_using] = ACTIONS(4326), + [anon_sym_unsafe] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4328), + [anon_sym_static] = ACTIONS(4326), + [anon_sym_LBRACK] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_event] = ACTIONS(4326), + [anon_sym_namespace] = ACTIONS(4326), + [anon_sym_class] = ACTIONS(4326), + [anon_sym_ref] = ACTIONS(4326), + [anon_sym_struct] = ACTIONS(4326), + [anon_sym_enum] = ACTIONS(4326), + [anon_sym_RBRACE] = ACTIONS(4330), + [anon_sym_interface] = ACTIONS(4326), + [anon_sym_delegate] = ACTIONS(4326), + [anon_sym_record] = ACTIONS(4326), + [anon_sym_abstract] = ACTIONS(4326), + [anon_sym_async] = ACTIONS(4326), + [anon_sym_const] = ACTIONS(4326), + [anon_sym_file] = ACTIONS(4326), + [anon_sym_fixed] = ACTIONS(4326), + [anon_sym_internal] = ACTIONS(4326), + [anon_sym_new] = ACTIONS(4326), + [anon_sym_override] = ACTIONS(4326), + [anon_sym_partial] = ACTIONS(4326), + [anon_sym_private] = ACTIONS(4326), + [anon_sym_protected] = ACTIONS(4326), + [anon_sym_public] = ACTIONS(4326), + [anon_sym_readonly] = ACTIONS(4326), + [anon_sym_required] = ACTIONS(4326), + [anon_sym_sealed] = ACTIONS(4326), + [anon_sym_virtual] = ACTIONS(4326), + [anon_sym_volatile] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_notnull] = ACTIONS(4326), + [anon_sym_unmanaged] = ACTIONS(4326), + [anon_sym_TILDE] = ACTIONS(4330), + [anon_sym_implicit] = ACTIONS(4326), + [anon_sym_explicit] = ACTIONS(4326), + [anon_sym_scoped] = ACTIONS(4326), + [anon_sym_var] = ACTIONS(4326), + [sym_predefined_type] = ACTIONS(4326), + [anon_sym_yield] = ACTIONS(4326), + [anon_sym_when] = ACTIONS(4326), + [anon_sym_from] = ACTIONS(4326), + [anon_sym_into] = ACTIONS(4326), + [anon_sym_join] = ACTIONS(4326), + [anon_sym_on] = ACTIONS(4326), + [anon_sym_equals] = ACTIONS(4326), + [anon_sym_let] = ACTIONS(4326), + [anon_sym_orderby] = ACTIONS(4326), + [anon_sym_ascending] = ACTIONS(4326), + [anon_sym_descending] = ACTIONS(4326), + [anon_sym_group] = ACTIONS(4326), + [anon_sym_by] = ACTIONS(4326), + [anon_sym_select] = ACTIONS(4326), + [aux_sym_preproc_if_token1] = ACTIONS(4330), + [aux_sym_preproc_if_token3] = ACTIONS(4330), + [aux_sym_preproc_else_token1] = ACTIONS(4330), + [aux_sym_preproc_elif_token1] = ACTIONS(4330), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2652] = { + [sym_preproc_region] = STATE(2652), + [sym_preproc_endregion] = STATE(2652), + [sym_preproc_line] = STATE(2652), + [sym_preproc_pragma] = STATE(2652), + [sym_preproc_nullable] = STATE(2652), + [sym_preproc_error] = STATE(2652), + [sym_preproc_warning] = STATE(2652), + [sym_preproc_define] = STATE(2652), + [sym_preproc_undef] = STATE(2652), [sym__identifier_token] = ACTIONS(3662), [anon_sym_alias] = ACTIONS(3662), [anon_sym_global] = ACTIONS(3662), @@ -442924,178 +443129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3664), }, - [2651] = { - [sym__variable_designation] = STATE(3843), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), - [sym_preproc_region] = STATE(2651), - [sym_preproc_endregion] = STATE(2651), - [sym_preproc_line] = STATE(2651), - [sym_preproc_pragma] = STATE(2651), - [sym_preproc_nullable] = STATE(2651), - [sym_preproc_error] = STATE(2651), - [sym_preproc_warning] = STATE(2651), - [sym_preproc_define] = STATE(2651), - [sym_preproc_undef] = STATE(2651), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_orderby] = ACTIONS(3971), - [anon_sym_ascending] = ACTIONS(3971), - [anon_sym_descending] = ACTIONS(3971), - [anon_sym_group] = ACTIONS(3971), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2652] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), - [sym_preproc_region] = STATE(2652), - [sym_preproc_endregion] = STATE(2652), - [sym_preproc_line] = STATE(2652), - [sym_preproc_pragma] = STATE(2652), - [sym_preproc_nullable] = STATE(2652), - [sym_preproc_error] = STATE(2652), - [sym_preproc_warning] = STATE(2652), - [sym_preproc_define] = STATE(2652), - [sym_preproc_undef] = STATE(2652), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_in] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2653] = { - [sym_type_argument_list] = STATE(2772), [sym_preproc_region] = STATE(2653), [sym_preproc_endregion] = STATE(2653), [sym_preproc_line] = STATE(2653), @@ -443105,69 +443139,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2653), [sym_preproc_define] = STATE(2653), [sym_preproc_undef] = STATE(2653), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4192), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_EQ_GT] = ACTIONS(4186), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_when] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_into] = ACTIONS(4186), + [anon_sym_on] = ACTIONS(4186), + [anon_sym_equals] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), + [aux_sym_preproc_if_token3] = ACTIONS(4186), + [aux_sym_preproc_else_token1] = ACTIONS(4186), + [aux_sym_preproc_elif_token1] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443180,10 +443215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2654] = { - [sym__variable_designation] = STATE(3855), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3821), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2654), [sym_preproc_endregion] = STATE(2654), [sym_preproc_line] = STATE(2654), @@ -443193,66 +443228,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2654), [sym_preproc_define] = STATE(2654), [sym_preproc_undef] = STATE(2654), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_COMMA] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4003), - [anon_sym_when] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3929), + [anon_sym_descending] = ACTIONS(3929), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443274,70 +443309,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2655), [sym_preproc_define] = STATE(2655), [sym_preproc_undef] = STATE(2655), - [anon_sym_SEMI] = ACTIONS(4192), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_RBRACK] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_RPAREN] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_EQ_GT] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_when] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4192), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_into] = ACTIONS(4192), - [anon_sym_on] = ACTIONS(4192), - [anon_sym_equals] = ACTIONS(4192), - [anon_sym_by] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4192), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), - [aux_sym_preproc_if_token3] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_RBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_in] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_EQ_GT] = ACTIONS(4233), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_when] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4233), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_into] = ACTIONS(4233), + [anon_sym_on] = ACTIONS(4233), + [anon_sym_equals] = ACTIONS(4233), + [anon_sym_by] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4233), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [aux_sym_preproc_if_token3] = ACTIONS(4233), + [aux_sym_preproc_else_token1] = ACTIONS(4233), + [aux_sym_preproc_elif_token1] = ACTIONS(4233), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443359,80 +443394,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2656), [sym_preproc_define] = STATE(2656), [sym_preproc_undef] = STATE(2656), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4239), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_EQ_GT] = ACTIONS(4237), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_when] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_into] = ACTIONS(4237), - [anon_sym_on] = ACTIONS(4237), - [anon_sym_equals] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), - [aux_sym_preproc_if_token3] = ACTIONS(4237), - [aux_sym_preproc_else_token1] = ACTIONS(4237), - [aux_sym_preproc_elif_token1] = ACTIONS(4237), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4131), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4129), }, [2657] = { [sym_preproc_region] = STATE(2657), @@ -443444,70 +443479,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2657), [sym_preproc_define] = STATE(2657), [sym_preproc_undef] = STATE(2657), - [sym__identifier_token] = ACTIONS(4314), - [anon_sym_extern] = ACTIONS(4314), - [anon_sym_alias] = ACTIONS(4314), - [anon_sym_global] = ACTIONS(4314), - [anon_sym_using] = ACTIONS(4314), - [anon_sym_unsafe] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(4316), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_event] = ACTIONS(4314), - [anon_sym_namespace] = ACTIONS(4314), - [anon_sym_class] = ACTIONS(4314), - [anon_sym_ref] = ACTIONS(4314), - [anon_sym_struct] = ACTIONS(4314), - [anon_sym_enum] = ACTIONS(4314), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_interface] = ACTIONS(4314), - [anon_sym_delegate] = ACTIONS(4314), - [anon_sym_record] = ACTIONS(4314), - [anon_sym_abstract] = ACTIONS(4314), - [anon_sym_async] = ACTIONS(4314), - [anon_sym_const] = ACTIONS(4314), - [anon_sym_file] = ACTIONS(4314), - [anon_sym_fixed] = ACTIONS(4314), - [anon_sym_internal] = ACTIONS(4314), - [anon_sym_new] = ACTIONS(4314), - [anon_sym_override] = ACTIONS(4314), - [anon_sym_partial] = ACTIONS(4314), - [anon_sym_private] = ACTIONS(4314), - [anon_sym_protected] = ACTIONS(4314), - [anon_sym_public] = ACTIONS(4314), - [anon_sym_readonly] = ACTIONS(4314), - [anon_sym_required] = ACTIONS(4314), - [anon_sym_sealed] = ACTIONS(4314), - [anon_sym_virtual] = ACTIONS(4314), - [anon_sym_volatile] = ACTIONS(4314), - [anon_sym_where] = ACTIONS(4314), - [anon_sym_notnull] = ACTIONS(4314), - [anon_sym_unmanaged] = ACTIONS(4314), - [anon_sym_TILDE] = ACTIONS(4318), - [anon_sym_implicit] = ACTIONS(4314), - [anon_sym_explicit] = ACTIONS(4314), - [anon_sym_scoped] = ACTIONS(4314), - [anon_sym_var] = ACTIONS(4314), - [sym_predefined_type] = ACTIONS(4314), - [anon_sym_yield] = ACTIONS(4314), - [anon_sym_when] = ACTIONS(4314), - [anon_sym_from] = ACTIONS(4314), - [anon_sym_into] = ACTIONS(4314), - [anon_sym_join] = ACTIONS(4314), - [anon_sym_on] = ACTIONS(4314), - [anon_sym_equals] = ACTIONS(4314), - [anon_sym_let] = ACTIONS(4314), - [anon_sym_orderby] = ACTIONS(4314), - [anon_sym_ascending] = ACTIONS(4314), - [anon_sym_descending] = ACTIONS(4314), - [anon_sym_group] = ACTIONS(4314), - [anon_sym_by] = ACTIONS(4314), - [anon_sym_select] = ACTIONS(4314), - [aux_sym_preproc_if_token1] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(3633), + [anon_sym_alias] = ACTIONS(3633), + [anon_sym_global] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_file] = ACTIONS(3633), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_notnull] = ACTIONS(3633), + [anon_sym_unmanaged] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_scoped] = ACTIONS(3633), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3633), + [anon_sym_yield] = ACTIONS(3633), + [anon_sym_switch] = ACTIONS(3633), + [anon_sym_when] = ACTIONS(3633), + [sym_discard] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3633), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3633), + [anon_sym_into] = ACTIONS(3633), + [anon_sym_join] = ACTIONS(3633), + [anon_sym_on] = ACTIONS(3633), + [anon_sym_equals] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3633), + [anon_sym_orderby] = ACTIONS(3633), + [anon_sym_ascending] = ACTIONS(3633), + [anon_sym_descending] = ACTIONS(3633), + [anon_sym_group] = ACTIONS(3633), + [anon_sym_by] = ACTIONS(3633), + [anon_sym_select] = ACTIONS(3633), + [anon_sym_as] = ACTIONS(3633), + [anon_sym_is] = ACTIONS(3633), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3633), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443518,8 +443552,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3630), }, [2658] = { + [sym__variable_designation] = STATE(3827), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2658), [sym_preproc_endregion] = STATE(2658), [sym_preproc_line] = STATE(2658), @@ -443529,70 +443568,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2658), [sym_preproc_define] = STATE(2658), [sym_preproc_undef] = STATE(2658), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4190), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_when] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4184), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_into] = ACTIONS(4184), - [anon_sym_on] = ACTIONS(4184), - [anon_sym_equals] = ACTIONS(4184), - [anon_sym_by] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), - [aux_sym_preproc_if_token3] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3979), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443605,10 +443640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2659] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym__variable_designation] = STATE(3846), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2659), [sym_preproc_endregion] = STATE(2659), [sym_preproc_line] = STATE(2659), @@ -443618,66 +443653,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2659), [sym_preproc_define] = STATE(2659), [sym_preproc_undef] = STATE(2659), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_COMMA] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443690,10 +443725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2660] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(2660), [sym_preproc_endregion] = STATE(2660), [sym_preproc_line] = STATE(2660), @@ -443703,66 +443734,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2660), [sym_preproc_define] = STATE(2660), [sym_preproc_undef] = STATE(2660), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_in] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [sym_discard] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443775,6 +443810,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2661] = { + [sym__variable_designation] = STATE(3552), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2661), [sym_preproc_endregion] = STATE(2661), [sym_preproc_line] = STATE(2661), @@ -443784,69 +443823,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2661), [sym_preproc_define] = STATE(2661), [sym_preproc_undef] = STATE(2661), - [sym__identifier_token] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_global] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_file] = ACTIONS(4146), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_notnull] = ACTIONS(4146), - [anon_sym_unmanaged] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4148), - [anon_sym_EQ_EQ] = ACTIONS(4148), - [anon_sym_BANG_EQ] = ACTIONS(4148), - [anon_sym_GT_EQ] = ACTIONS(4148), - [anon_sym_LT_EQ] = ACTIONS(4148), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4150), - [anon_sym_var] = ACTIONS(4146), - [anon_sym_yield] = ACTIONS(4146), - [anon_sym_switch] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4146), - [sym_discard] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4148), - [anon_sym_from] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4146), - [anon_sym_join] = ACTIONS(4146), - [anon_sym_on] = ACTIONS(4146), - [anon_sym_equals] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_orderby] = ACTIONS(4146), - [anon_sym_ascending] = ACTIONS(4146), - [anon_sym_descending] = ACTIONS(4146), - [anon_sym_group] = ACTIONS(4146), - [anon_sym_by] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4146), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_in] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443857,7 +443893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4148), }, [2662] = { [sym_preproc_region] = STATE(2662), @@ -443869,70 +443904,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2662), [sym_preproc_define] = STATE(2662), [sym_preproc_undef] = STATE(2662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_EQ] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3662), + [anon_sym_alias] = ACTIONS(3662), + [anon_sym_global] = ACTIONS(3662), [anon_sym_LBRACK] = ACTIONS(3664), [anon_sym_COLON] = ACTIONS(3664), [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), [anon_sym_LPAREN] = ACTIONS(3664), [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3662), [anon_sym_LT] = ACTIONS(3662), [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3662), [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_notnull] = ACTIONS(3662), + [anon_sym_unmanaged] = ACTIONS(3662), [anon_sym_BANG] = ACTIONS(3662), [anon_sym_PLUS_PLUS] = ACTIONS(3664), [anon_sym_DASH_DASH] = ACTIONS(3664), [anon_sym_PLUS] = ACTIONS(3662), [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), [anon_sym_PIPE] = ACTIONS(3662), [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), [anon_sym_EQ_EQ] = ACTIONS(3664), [anon_sym_BANG_EQ] = ACTIONS(3664), [anon_sym_GT_EQ] = ACTIONS(3664), [anon_sym_LT_EQ] = ACTIONS(3664), [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_when] = ACTIONS(3664), + [anon_sym_scoped] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_when] = ACTIONS(3662), + [sym_discard] = ACTIONS(3662), [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_PLUS_EQ] = ACTIONS(3664), - [anon_sym_DASH_EQ] = ACTIONS(3664), - [anon_sym_STAR_EQ] = ACTIONS(3664), - [anon_sym_SLASH_EQ] = ACTIONS(3664), - [anon_sym_PERCENT_EQ] = ACTIONS(3664), - [anon_sym_AMP_EQ] = ACTIONS(3664), - [anon_sym_CARET_EQ] = ACTIONS(3664), - [anon_sym_PIPE_EQ] = ACTIONS(3664), - [anon_sym_LT_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3662), [anon_sym_AMP_AMP] = ACTIONS(3664), [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3662), + [anon_sym_join] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_equals] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_orderby] = ACTIONS(3662), + [anon_sym_ascending] = ACTIONS(3662), + [anon_sym_descending] = ACTIONS(3662), + [anon_sym_group] = ACTIONS(3662), + [anon_sym_by] = ACTIONS(3662), + [anon_sym_select] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_is] = ACTIONS(3662), [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443954,70 +443989,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2663), [sym_preproc_define] = STATE(2663), [sym_preproc_undef] = STATE(2663), - [sym__identifier_token] = ACTIONS(4320), - [anon_sym_extern] = ACTIONS(4320), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_using] = ACTIONS(4320), - [anon_sym_unsafe] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4322), - [anon_sym_static] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_event] = ACTIONS(4320), - [anon_sym_namespace] = ACTIONS(4320), - [anon_sym_class] = ACTIONS(4320), - [anon_sym_ref] = ACTIONS(4320), - [anon_sym_struct] = ACTIONS(4320), - [anon_sym_enum] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_interface] = ACTIONS(4320), - [anon_sym_delegate] = ACTIONS(4320), - [anon_sym_record] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_async] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_fixed] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_new] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_partial] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_readonly] = ACTIONS(4320), - [anon_sym_required] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_virtual] = ACTIONS(4320), - [anon_sym_volatile] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_TILDE] = ACTIONS(4324), - [anon_sym_implicit] = ACTIONS(4320), - [anon_sym_explicit] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_var] = ACTIONS(4320), - [sym_predefined_type] = ACTIONS(4320), - [anon_sym_yield] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_from] = ACTIONS(4320), - [anon_sym_into] = ACTIONS(4320), - [anon_sym_join] = ACTIONS(4320), - [anon_sym_on] = ACTIONS(4320), - [anon_sym_equals] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4320), - [anon_sym_orderby] = ACTIONS(4320), - [anon_sym_ascending] = ACTIONS(4320), - [anon_sym_descending] = ACTIONS(4320), - [anon_sym_group] = ACTIONS(4320), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_select] = ACTIONS(4320), - [aux_sym_preproc_if_token1] = ACTIONS(4324), - [aux_sym_preproc_if_token3] = ACTIONS(4324), - [aux_sym_preproc_else_token1] = ACTIONS(4324), - [aux_sym_preproc_elif_token1] = ACTIONS(4324), + [sym__identifier_token] = ACTIONS(4332), + [anon_sym_extern] = ACTIONS(4332), + [anon_sym_alias] = ACTIONS(4332), + [anon_sym_global] = ACTIONS(4332), + [anon_sym_using] = ACTIONS(4332), + [anon_sym_unsafe] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4334), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_event] = ACTIONS(4332), + [anon_sym_namespace] = ACTIONS(4332), + [anon_sym_class] = ACTIONS(4332), + [anon_sym_ref] = ACTIONS(4332), + [anon_sym_struct] = ACTIONS(4332), + [anon_sym_enum] = ACTIONS(4332), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_interface] = ACTIONS(4332), + [anon_sym_delegate] = ACTIONS(4332), + [anon_sym_record] = ACTIONS(4332), + [anon_sym_abstract] = ACTIONS(4332), + [anon_sym_async] = ACTIONS(4332), + [anon_sym_const] = ACTIONS(4332), + [anon_sym_file] = ACTIONS(4332), + [anon_sym_fixed] = ACTIONS(4332), + [anon_sym_internal] = ACTIONS(4332), + [anon_sym_new] = ACTIONS(4332), + [anon_sym_override] = ACTIONS(4332), + [anon_sym_partial] = ACTIONS(4332), + [anon_sym_private] = ACTIONS(4332), + [anon_sym_protected] = ACTIONS(4332), + [anon_sym_public] = ACTIONS(4332), + [anon_sym_readonly] = ACTIONS(4332), + [anon_sym_required] = ACTIONS(4332), + [anon_sym_sealed] = ACTIONS(4332), + [anon_sym_virtual] = ACTIONS(4332), + [anon_sym_volatile] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(4332), + [anon_sym_notnull] = ACTIONS(4332), + [anon_sym_unmanaged] = ACTIONS(4332), + [anon_sym_TILDE] = ACTIONS(4334), + [anon_sym_implicit] = ACTIONS(4332), + [anon_sym_explicit] = ACTIONS(4332), + [anon_sym_scoped] = ACTIONS(4332), + [anon_sym_var] = ACTIONS(4332), + [sym_predefined_type] = ACTIONS(4332), + [anon_sym_yield] = ACTIONS(4332), + [anon_sym_when] = ACTIONS(4332), + [anon_sym_from] = ACTIONS(4332), + [anon_sym_into] = ACTIONS(4332), + [anon_sym_join] = ACTIONS(4332), + [anon_sym_on] = ACTIONS(4332), + [anon_sym_equals] = ACTIONS(4332), + [anon_sym_let] = ACTIONS(4332), + [anon_sym_orderby] = ACTIONS(4332), + [anon_sym_ascending] = ACTIONS(4332), + [anon_sym_descending] = ACTIONS(4332), + [anon_sym_group] = ACTIONS(4332), + [anon_sym_by] = ACTIONS(4332), + [anon_sym_select] = ACTIONS(4332), + [aux_sym_preproc_if_token1] = ACTIONS(4334), + [aux_sym_preproc_if_token3] = ACTIONS(4334), + [aux_sym_preproc_else_token1] = ACTIONS(4334), + [aux_sym_preproc_elif_token1] = ACTIONS(4334), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444030,7 +444065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2664] = { - [sym_type_argument_list] = STATE(2819), [sym_preproc_region] = STATE(2664), [sym_preproc_endregion] = STATE(2664), [sym_preproc_line] = STATE(2664), @@ -444040,68 +444074,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2664), [sym_preproc_define] = STATE(2664), [sym_preproc_undef] = STATE(2664), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_EQ_GT] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_when] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4239), + [anon_sym_on] = ACTIONS(4239), + [anon_sym_equals] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), + [aux_sym_preproc_if_token3] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444112,7 +444148,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [2665] = { [sym_preproc_region] = STATE(2665), @@ -444124,70 +444159,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2665), [sym_preproc_define] = STATE(2665), [sym_preproc_undef] = STATE(2665), - [sym__identifier_token] = ACTIONS(4326), - [anon_sym_extern] = ACTIONS(4326), - [anon_sym_alias] = ACTIONS(4326), - [anon_sym_global] = ACTIONS(4326), - [anon_sym_using] = ACTIONS(4326), - [anon_sym_unsafe] = ACTIONS(4326), - [anon_sym_EQ] = ACTIONS(4328), - [anon_sym_static] = ACTIONS(4326), - [anon_sym_LBRACK] = ACTIONS(4328), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym_event] = ACTIONS(4326), - [anon_sym_namespace] = ACTIONS(4326), - [anon_sym_class] = ACTIONS(4326), - [anon_sym_ref] = ACTIONS(4326), - [anon_sym_struct] = ACTIONS(4326), - [anon_sym_enum] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4328), - [anon_sym_interface] = ACTIONS(4326), - [anon_sym_delegate] = ACTIONS(4326), - [anon_sym_record] = ACTIONS(4326), - [anon_sym_abstract] = ACTIONS(4326), - [anon_sym_async] = ACTIONS(4326), - [anon_sym_const] = ACTIONS(4326), - [anon_sym_file] = ACTIONS(4326), - [anon_sym_fixed] = ACTIONS(4326), - [anon_sym_internal] = ACTIONS(4326), - [anon_sym_new] = ACTIONS(4326), - [anon_sym_override] = ACTIONS(4326), - [anon_sym_partial] = ACTIONS(4326), - [anon_sym_private] = ACTIONS(4326), - [anon_sym_protected] = ACTIONS(4326), - [anon_sym_public] = ACTIONS(4326), - [anon_sym_readonly] = ACTIONS(4326), - [anon_sym_required] = ACTIONS(4326), - [anon_sym_sealed] = ACTIONS(4326), - [anon_sym_virtual] = ACTIONS(4326), - [anon_sym_volatile] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_notnull] = ACTIONS(4326), - [anon_sym_unmanaged] = ACTIONS(4326), - [anon_sym_TILDE] = ACTIONS(4328), - [anon_sym_implicit] = ACTIONS(4326), - [anon_sym_explicit] = ACTIONS(4326), - [anon_sym_scoped] = ACTIONS(4326), - [anon_sym_var] = ACTIONS(4326), - [sym_predefined_type] = ACTIONS(4326), - [anon_sym_yield] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_from] = ACTIONS(4326), - [anon_sym_into] = ACTIONS(4326), - [anon_sym_join] = ACTIONS(4326), - [anon_sym_on] = ACTIONS(4326), - [anon_sym_equals] = ACTIONS(4326), - [anon_sym_let] = ACTIONS(4326), - [anon_sym_orderby] = ACTIONS(4326), - [anon_sym_ascending] = ACTIONS(4326), - [anon_sym_descending] = ACTIONS(4326), - [anon_sym_group] = ACTIONS(4326), - [anon_sym_by] = ACTIONS(4326), - [anon_sym_select] = ACTIONS(4326), - [aux_sym_preproc_if_token1] = ACTIONS(4328), - [aux_sym_preproc_if_token3] = ACTIONS(4328), - [aux_sym_preproc_else_token1] = ACTIONS(4328), - [aux_sym_preproc_elif_token1] = ACTIONS(4328), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_PLUS_EQ] = ACTIONS(3664), + [anon_sym_DASH_EQ] = ACTIONS(3664), + [anon_sym_STAR_EQ] = ACTIONS(3664), + [anon_sym_SLASH_EQ] = ACTIONS(3664), + [anon_sym_PERCENT_EQ] = ACTIONS(3664), + [anon_sym_AMP_EQ] = ACTIONS(3664), + [anon_sym_CARET_EQ] = ACTIONS(3664), + [anon_sym_PIPE_EQ] = ACTIONS(3664), + [anon_sym_LT_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444200,10 +444235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2666] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym__variable_designation] = STATE(3470), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2666), [sym_preproc_endregion] = STATE(2666), [sym_preproc_line] = STATE(2666), @@ -444213,66 +444248,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2666), [sym_preproc_define] = STATE(2666), [sym_preproc_undef] = STATE(2666), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_in] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444285,10 +444320,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2667] = { - [sym__variable_designation] = STATE(3822), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), + [sym__variable_designation] = STATE(3848), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2667), [sym_preproc_endregion] = STATE(2667), [sym_preproc_line] = STATE(2667), @@ -444298,66 +444333,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2667), [sym_preproc_define] = STATE(2667), [sym_preproc_undef] = STATE(2667), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(4098), [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3999), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3999), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3999), - [anon_sym_orderby] = ACTIONS(3999), - [anon_sym_ascending] = ACTIONS(3999), - [anon_sym_descending] = ACTIONS(3999), - [anon_sym_group] = ACTIONS(3999), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444370,6 +444405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2668] = { + [sym__variable_designation] = STATE(3833), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2668), [sym_preproc_endregion] = STATE(2668), [sym_preproc_line] = STATE(2668), @@ -444379,70 +444418,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2668), [sym_preproc_define] = STATE(2668), [sym_preproc_undef] = STATE(2668), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3933), + [anon_sym_descending] = ACTIONS(3933), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444464,70 +444499,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2669), [sym_preproc_define] = STATE(2669), [sym_preproc_undef] = STATE(2669), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_RBRACK] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_EQ_GT] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_when] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4204), - [anon_sym_on] = ACTIONS(4204), - [anon_sym_equals] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), - [aux_sym_preproc_if_token3] = ACTIONS(4204), - [aux_sym_preproc_else_token1] = ACTIONS(4204), - [aux_sym_preproc_elif_token1] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4336), + [anon_sym_extern] = ACTIONS(4336), + [anon_sym_alias] = ACTIONS(4336), + [anon_sym_global] = ACTIONS(4336), + [anon_sym_using] = ACTIONS(4336), + [anon_sym_unsafe] = ACTIONS(4336), + [anon_sym_EQ] = ACTIONS(4338), + [anon_sym_static] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4340), + [anon_sym_event] = ACTIONS(4336), + [anon_sym_namespace] = ACTIONS(4336), + [anon_sym_class] = ACTIONS(4336), + [anon_sym_ref] = ACTIONS(4336), + [anon_sym_struct] = ACTIONS(4336), + [anon_sym_enum] = ACTIONS(4336), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_interface] = ACTIONS(4336), + [anon_sym_delegate] = ACTIONS(4336), + [anon_sym_record] = ACTIONS(4336), + [anon_sym_abstract] = ACTIONS(4336), + [anon_sym_async] = ACTIONS(4336), + [anon_sym_const] = ACTIONS(4336), + [anon_sym_file] = ACTIONS(4336), + [anon_sym_fixed] = ACTIONS(4336), + [anon_sym_internal] = ACTIONS(4336), + [anon_sym_new] = ACTIONS(4336), + [anon_sym_override] = ACTIONS(4336), + [anon_sym_partial] = ACTIONS(4336), + [anon_sym_private] = ACTIONS(4336), + [anon_sym_protected] = ACTIONS(4336), + [anon_sym_public] = ACTIONS(4336), + [anon_sym_readonly] = ACTIONS(4336), + [anon_sym_required] = ACTIONS(4336), + [anon_sym_sealed] = ACTIONS(4336), + [anon_sym_virtual] = ACTIONS(4336), + [anon_sym_volatile] = ACTIONS(4336), + [anon_sym_where] = ACTIONS(4336), + [anon_sym_notnull] = ACTIONS(4336), + [anon_sym_unmanaged] = ACTIONS(4336), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_implicit] = ACTIONS(4336), + [anon_sym_explicit] = ACTIONS(4336), + [anon_sym_scoped] = ACTIONS(4336), + [anon_sym_var] = ACTIONS(4336), + [sym_predefined_type] = ACTIONS(4336), + [anon_sym_yield] = ACTIONS(4336), + [anon_sym_when] = ACTIONS(4336), + [anon_sym_from] = ACTIONS(4336), + [anon_sym_into] = ACTIONS(4336), + [anon_sym_join] = ACTIONS(4336), + [anon_sym_on] = ACTIONS(4336), + [anon_sym_equals] = ACTIONS(4336), + [anon_sym_let] = ACTIONS(4336), + [anon_sym_orderby] = ACTIONS(4336), + [anon_sym_ascending] = ACTIONS(4336), + [anon_sym_descending] = ACTIONS(4336), + [anon_sym_group] = ACTIONS(4336), + [anon_sym_by] = ACTIONS(4336), + [anon_sym_select] = ACTIONS(4336), + [aux_sym_preproc_if_token1] = ACTIONS(4340), + [aux_sym_preproc_if_token3] = ACTIONS(4340), + [aux_sym_preproc_else_token1] = ACTIONS(4340), + [aux_sym_preproc_elif_token1] = ACTIONS(4340), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444549,70 +444584,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2670), [sym_preproc_define] = STATE(2670), [sym_preproc_undef] = STATE(2670), - [sym__identifier_token] = ACTIONS(4332), - [anon_sym_extern] = ACTIONS(4332), - [anon_sym_alias] = ACTIONS(4332), - [anon_sym_global] = ACTIONS(4332), - [anon_sym_using] = ACTIONS(4332), - [anon_sym_unsafe] = ACTIONS(4332), - [anon_sym_EQ] = ACTIONS(4334), - [anon_sym_static] = ACTIONS(4332), - [anon_sym_LBRACK] = ACTIONS(4336), - [anon_sym_LPAREN] = ACTIONS(4336), - [anon_sym_event] = ACTIONS(4332), - [anon_sym_namespace] = ACTIONS(4332), - [anon_sym_class] = ACTIONS(4332), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_struct] = ACTIONS(4332), - [anon_sym_enum] = ACTIONS(4332), - [anon_sym_RBRACE] = ACTIONS(4336), - [anon_sym_interface] = ACTIONS(4332), - [anon_sym_delegate] = ACTIONS(4332), - [anon_sym_record] = ACTIONS(4332), - [anon_sym_abstract] = ACTIONS(4332), - [anon_sym_async] = ACTIONS(4332), - [anon_sym_const] = ACTIONS(4332), - [anon_sym_file] = ACTIONS(4332), - [anon_sym_fixed] = ACTIONS(4332), - [anon_sym_internal] = ACTIONS(4332), - [anon_sym_new] = ACTIONS(4332), - [anon_sym_override] = ACTIONS(4332), - [anon_sym_partial] = ACTIONS(4332), - [anon_sym_private] = ACTIONS(4332), - [anon_sym_protected] = ACTIONS(4332), - [anon_sym_public] = ACTIONS(4332), - [anon_sym_readonly] = ACTIONS(4332), - [anon_sym_required] = ACTIONS(4332), - [anon_sym_sealed] = ACTIONS(4332), - [anon_sym_virtual] = ACTIONS(4332), - [anon_sym_volatile] = ACTIONS(4332), - [anon_sym_where] = ACTIONS(4332), - [anon_sym_notnull] = ACTIONS(4332), - [anon_sym_unmanaged] = ACTIONS(4332), - [anon_sym_TILDE] = ACTIONS(4336), - [anon_sym_implicit] = ACTIONS(4332), - [anon_sym_explicit] = ACTIONS(4332), - [anon_sym_scoped] = ACTIONS(4332), - [anon_sym_var] = ACTIONS(4332), - [sym_predefined_type] = ACTIONS(4332), - [anon_sym_yield] = ACTIONS(4332), - [anon_sym_when] = ACTIONS(4332), - [anon_sym_from] = ACTIONS(4332), - [anon_sym_into] = ACTIONS(4332), - [anon_sym_join] = ACTIONS(4332), - [anon_sym_on] = ACTIONS(4332), - [anon_sym_equals] = ACTIONS(4332), - [anon_sym_let] = ACTIONS(4332), - [anon_sym_orderby] = ACTIONS(4332), - [anon_sym_ascending] = ACTIONS(4332), - [anon_sym_descending] = ACTIONS(4332), - [anon_sym_group] = ACTIONS(4332), - [anon_sym_by] = ACTIONS(4332), - [anon_sym_select] = ACTIONS(4332), - [aux_sym_preproc_if_token1] = ACTIONS(4336), - [aux_sym_preproc_if_token3] = ACTIONS(4336), - [aux_sym_preproc_else_token1] = ACTIONS(4336), - [aux_sym_preproc_elif_token1] = ACTIONS(4336), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_RBRACK] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_in] = ACTIONS(4215), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_EQ_GT] = ACTIONS(4213), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_when] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_into] = ACTIONS(4213), + [anon_sym_on] = ACTIONS(4213), + [anon_sym_equals] = ACTIONS(4213), + [anon_sym_by] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4213), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [aux_sym_preproc_if_token3] = ACTIONS(4213), + [aux_sym_preproc_else_token1] = ACTIONS(4213), + [aux_sym_preproc_elif_token1] = ACTIONS(4213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444625,6 +444660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2671] = { + [sym__variable_designation] = STATE(3503), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2671), [sym_preproc_endregion] = STATE(2671), [sym_preproc_line] = STATE(2671), @@ -444634,70 +444673,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2671), [sym_preproc_define] = STATE(2671), [sym_preproc_undef] = STATE(2671), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4208), - [anon_sym_on] = ACTIONS(4208), - [anon_sym_equals] = ACTIONS(4208), - [anon_sym_by] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), - [aux_sym_preproc_if_token3] = ACTIONS(4208), - [aux_sym_preproc_else_token1] = ACTIONS(4208), - [aux_sym_preproc_elif_token1] = ACTIONS(4208), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444710,10 +444745,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2672] = { - [sym__variable_designation] = STATE(3529), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2672), [sym_preproc_endregion] = STATE(2672), [sym_preproc_line] = STATE(2672), @@ -444723,66 +444758,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2672), [sym_preproc_define] = STATE(2672), [sym_preproc_undef] = STATE(2672), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444795,10 +444830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2673] = { - [sym__variable_designation] = STATE(3430), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym_type_argument_list] = STATE(2810), [sym_preproc_region] = STATE(2673), [sym_preproc_endregion] = STATE(2673), [sym_preproc_line] = STATE(2673), @@ -444808,66 +444840,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2673), [sym_preproc_define] = STATE(2673), [sym_preproc_undef] = STATE(2673), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_in] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(4003), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(4288), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444878,6 +444912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [2674] = { [sym_preproc_region] = STATE(2674), @@ -444889,70 +444924,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2674), [sym_preproc_define] = STATE(2674), [sym_preproc_undef] = STATE(2674), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_in] = ACTIONS(4168), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_EQ_GT] = ACTIONS(4166), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_when] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_into] = ACTIONS(4166), - [anon_sym_on] = ACTIONS(4166), - [anon_sym_equals] = ACTIONS(4166), - [anon_sym_by] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), - [aux_sym_preproc_if_token3] = ACTIONS(4166), - [aux_sym_preproc_else_token1] = ACTIONS(4166), - [aux_sym_preproc_elif_token1] = ACTIONS(4166), + [sym__identifier_token] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym_alias] = ACTIONS(4342), + [anon_sym_global] = ACTIONS(4342), + [anon_sym_using] = ACTIONS(4342), + [anon_sym_unsafe] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_static] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_event] = ACTIONS(4342), + [anon_sym_namespace] = ACTIONS(4342), + [anon_sym_class] = ACTIONS(4342), + [anon_sym_ref] = ACTIONS(4342), + [anon_sym_struct] = ACTIONS(4342), + [anon_sym_enum] = ACTIONS(4342), + [anon_sym_RBRACE] = ACTIONS(4346), + [anon_sym_interface] = ACTIONS(4342), + [anon_sym_delegate] = ACTIONS(4342), + [anon_sym_record] = ACTIONS(4342), + [anon_sym_abstract] = ACTIONS(4342), + [anon_sym_async] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_file] = ACTIONS(4342), + [anon_sym_fixed] = ACTIONS(4342), + [anon_sym_internal] = ACTIONS(4342), + [anon_sym_new] = ACTIONS(4342), + [anon_sym_override] = ACTIONS(4342), + [anon_sym_partial] = ACTIONS(4342), + [anon_sym_private] = ACTIONS(4342), + [anon_sym_protected] = ACTIONS(4342), + [anon_sym_public] = ACTIONS(4342), + [anon_sym_readonly] = ACTIONS(4342), + [anon_sym_required] = ACTIONS(4342), + [anon_sym_sealed] = ACTIONS(4342), + [anon_sym_virtual] = ACTIONS(4342), + [anon_sym_volatile] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_notnull] = ACTIONS(4342), + [anon_sym_unmanaged] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4346), + [anon_sym_implicit] = ACTIONS(4342), + [anon_sym_explicit] = ACTIONS(4342), + [anon_sym_scoped] = ACTIONS(4342), + [anon_sym_var] = ACTIONS(4342), + [sym_predefined_type] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_from] = ACTIONS(4342), + [anon_sym_into] = ACTIONS(4342), + [anon_sym_join] = ACTIONS(4342), + [anon_sym_on] = ACTIONS(4342), + [anon_sym_equals] = ACTIONS(4342), + [anon_sym_let] = ACTIONS(4342), + [anon_sym_orderby] = ACTIONS(4342), + [anon_sym_ascending] = ACTIONS(4342), + [anon_sym_descending] = ACTIONS(4342), + [anon_sym_group] = ACTIONS(4342), + [anon_sym_by] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [aux_sym_preproc_if_token1] = ACTIONS(4346), + [aux_sym_preproc_if_token3] = ACTIONS(4346), + [aux_sym_preproc_else_token1] = ACTIONS(4346), + [aux_sym_preproc_elif_token1] = ACTIONS(4346), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444965,10 +445000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2675] = { - [sym__variable_designation] = STATE(3475), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3208), + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(2675), [sym_preproc_endregion] = STATE(2675), [sym_preproc_line] = STATE(2675), @@ -444978,66 +445013,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2675), [sym_preproc_define] = STATE(2675), [sym_preproc_undef] = STATE(2675), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), - [anon_sym_in] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(3814), - [anon_sym_var] = ACTIONS(3814), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_switch] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3814), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_in] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445050,6 +445085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2676] = { + [sym__variable_designation] = STATE(3821), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2676), [sym_preproc_endregion] = STATE(2676), [sym_preproc_line] = STATE(2676), @@ -445059,70 +445098,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2676), [sym_preproc_define] = STATE(2676), [sym_preproc_undef] = STATE(2676), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4338), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3929), + [anon_sym_descending] = ACTIONS(3929), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445144,70 +445179,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2677), [sym_preproc_define] = STATE(2677), [sym_preproc_undef] = STATE(2677), - [sym__identifier_token] = ACTIONS(4340), - [anon_sym_extern] = ACTIONS(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_global] = ACTIONS(4340), - [anon_sym_using] = ACTIONS(4340), - [anon_sym_unsafe] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_static] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4344), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym_event] = ACTIONS(4340), - [anon_sym_namespace] = ACTIONS(4340), - [anon_sym_class] = ACTIONS(4340), - [anon_sym_ref] = ACTIONS(4340), - [anon_sym_struct] = ACTIONS(4340), - [anon_sym_enum] = ACTIONS(4340), - [anon_sym_RBRACE] = ACTIONS(4344), - [anon_sym_interface] = ACTIONS(4340), - [anon_sym_delegate] = ACTIONS(4340), - [anon_sym_record] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_async] = ACTIONS(4340), - [anon_sym_const] = ACTIONS(4340), - [anon_sym_file] = ACTIONS(4340), - [anon_sym_fixed] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_new] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_partial] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_readonly] = ACTIONS(4340), - [anon_sym_required] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_virtual] = ACTIONS(4340), - [anon_sym_volatile] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_notnull] = ACTIONS(4340), - [anon_sym_unmanaged] = ACTIONS(4340), - [anon_sym_TILDE] = ACTIONS(4344), - [anon_sym_implicit] = ACTIONS(4340), - [anon_sym_explicit] = ACTIONS(4340), - [anon_sym_scoped] = ACTIONS(4340), - [anon_sym_var] = ACTIONS(4340), - [sym_predefined_type] = ACTIONS(4340), - [anon_sym_yield] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_from] = ACTIONS(4340), - [anon_sym_into] = ACTIONS(4340), - [anon_sym_join] = ACTIONS(4340), - [anon_sym_on] = ACTIONS(4340), - [anon_sym_equals] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_orderby] = ACTIONS(4340), - [anon_sym_ascending] = ACTIONS(4340), - [anon_sym_descending] = ACTIONS(4340), - [anon_sym_group] = ACTIONS(4340), - [anon_sym_by] = ACTIONS(4340), - [anon_sym_select] = ACTIONS(4340), - [aux_sym_preproc_if_token1] = ACTIONS(4344), - [aux_sym_preproc_if_token3] = ACTIONS(4344), - [aux_sym_preproc_else_token1] = ACTIONS(4344), - [aux_sym_preproc_elif_token1] = ACTIONS(4344), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_when] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3731), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3731), + [anon_sym_on] = ACTIONS(3731), + [anon_sym_equals] = ACTIONS(3731), + [anon_sym_by] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [aux_sym_preproc_if_token3] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3731), + [aux_sym_preproc_elif_token1] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445220,10 +445255,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2678] = { - [sym__variable_designation] = STATE(3928), - [sym_parenthesized_variable_designation] = STATE(3891), - [sym_identifier] = STATE(3914), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(2678), [sym_preproc_endregion] = STATE(2678), [sym_preproc_line] = STATE(2678), @@ -445233,66 +445264,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2678), [sym_preproc_define] = STATE(2678), [sym_preproc_undef] = STATE(2678), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_COMMA] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4243), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3935), - [anon_sym_descending] = ACTIONS(3935), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4348), + [anon_sym_alias] = ACTIONS(4348), + [anon_sym_global] = ACTIONS(4348), + [anon_sym_using] = ACTIONS(4348), + [anon_sym_unsafe] = ACTIONS(4348), + [anon_sym_EQ] = ACTIONS(4350), + [anon_sym_static] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_event] = ACTIONS(4348), + [anon_sym_namespace] = ACTIONS(4348), + [anon_sym_class] = ACTIONS(4348), + [anon_sym_ref] = ACTIONS(4348), + [anon_sym_struct] = ACTIONS(4348), + [anon_sym_enum] = ACTIONS(4348), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_interface] = ACTIONS(4348), + [anon_sym_delegate] = ACTIONS(4348), + [anon_sym_record] = ACTIONS(4348), + [anon_sym_abstract] = ACTIONS(4348), + [anon_sym_async] = ACTIONS(4348), + [anon_sym_const] = ACTIONS(4348), + [anon_sym_file] = ACTIONS(4348), + [anon_sym_fixed] = ACTIONS(4348), + [anon_sym_internal] = ACTIONS(4348), + [anon_sym_new] = ACTIONS(4348), + [anon_sym_override] = ACTIONS(4348), + [anon_sym_partial] = ACTIONS(4348), + [anon_sym_private] = ACTIONS(4348), + [anon_sym_protected] = ACTIONS(4348), + [anon_sym_public] = ACTIONS(4348), + [anon_sym_readonly] = ACTIONS(4348), + [anon_sym_required] = ACTIONS(4348), + [anon_sym_sealed] = ACTIONS(4348), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_volatile] = ACTIONS(4348), + [anon_sym_where] = ACTIONS(4348), + [anon_sym_notnull] = ACTIONS(4348), + [anon_sym_unmanaged] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4352), + [anon_sym_implicit] = ACTIONS(4348), + [anon_sym_explicit] = ACTIONS(4348), + [anon_sym_scoped] = ACTIONS(4348), + [anon_sym_var] = ACTIONS(4348), + [sym_predefined_type] = ACTIONS(4348), + [anon_sym_yield] = ACTIONS(4348), + [anon_sym_when] = ACTIONS(4348), + [anon_sym_from] = ACTIONS(4348), + [anon_sym_into] = ACTIONS(4348), + [anon_sym_join] = ACTIONS(4348), + [anon_sym_on] = ACTIONS(4348), + [anon_sym_equals] = ACTIONS(4348), + [anon_sym_let] = ACTIONS(4348), + [anon_sym_orderby] = ACTIONS(4348), + [anon_sym_ascending] = ACTIONS(4348), + [anon_sym_descending] = ACTIONS(4348), + [anon_sym_group] = ACTIONS(4348), + [anon_sym_by] = ACTIONS(4348), + [anon_sym_select] = ACTIONS(4348), + [aux_sym_preproc_if_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token3] = ACTIONS(4352), + [aux_sym_preproc_else_token1] = ACTIONS(4352), + [aux_sym_preproc_elif_token1] = ACTIONS(4352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445305,6 +445340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2679] = { + [sym__variable_designation] = STATE(3833), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2679), [sym_preproc_endregion] = STATE(2679), [sym_preproc_line] = STATE(2679), @@ -445314,70 +445353,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2679), [sym_preproc_define] = STATE(2679), [sym_preproc_undef] = STATE(2679), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4354), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4351), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4351), - [anon_sym_EQ_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(4348), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_QMARK_QMARK] = ACTIONS(4351), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4348), - [anon_sym_with] = ACTIONS(4348), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3933), + [anon_sym_descending] = ACTIONS(3933), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445399,70 +445434,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2680), [sym_preproc_define] = STATE(2680), [sym_preproc_undef] = STATE(2680), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_EQ] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3674), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3674), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3676), - [anon_sym_PLUS_EQ] = ACTIONS(3676), - [anon_sym_DASH_EQ] = ACTIONS(3676), - [anon_sym_STAR_EQ] = ACTIONS(3676), - [anon_sym_SLASH_EQ] = ACTIONS(3676), - [anon_sym_PERCENT_EQ] = ACTIONS(3676), - [anon_sym_AMP_EQ] = ACTIONS(3676), - [anon_sym_CARET_EQ] = ACTIONS(3676), - [anon_sym_PIPE_EQ] = ACTIONS(3676), - [anon_sym_LT_LT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3674), - [anon_sym_into] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4354), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445475,6 +445510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2681] = { + [sym__variable_designation] = STATE(3836), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(2681), [sym_preproc_endregion] = STATE(2681), [sym_preproc_line] = STATE(2681), @@ -445484,70 +445523,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2681), [sym_preproc_define] = STATE(2681), [sym_preproc_undef] = STATE(2681), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_in] = ACTIONS(4214), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_into] = ACTIONS(4212), - [anon_sym_on] = ACTIONS(4212), - [anon_sym_equals] = ACTIONS(4212), - [anon_sym_by] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3999), + [anon_sym_into] = ACTIONS(3999), + [anon_sym_join] = ACTIONS(3999), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(3999), + [anon_sym_orderby] = ACTIONS(3999), + [anon_sym_ascending] = ACTIONS(3999), + [anon_sym_descending] = ACTIONS(3999), + [anon_sym_group] = ACTIONS(3999), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(3999), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445569,176 +445604,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2682), [sym_preproc_define] = STATE(2682), [sym_preproc_undef] = STATE(2682), - [sym__identifier_token] = ACTIONS(4356), - [anon_sym_extern] = ACTIONS(4356), - [anon_sym_alias] = ACTIONS(4356), - [anon_sym_global] = ACTIONS(4356), - [anon_sym_using] = ACTIONS(4356), - [anon_sym_unsafe] = ACTIONS(4356), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_static] = ACTIONS(4356), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_event] = ACTIONS(4356), - [anon_sym_namespace] = ACTIONS(4356), - [anon_sym_class] = ACTIONS(4356), - [anon_sym_ref] = ACTIONS(4356), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_enum] = ACTIONS(4356), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_interface] = ACTIONS(4356), - [anon_sym_delegate] = ACTIONS(4356), - [anon_sym_record] = ACTIONS(4356), - [anon_sym_abstract] = ACTIONS(4356), - [anon_sym_async] = ACTIONS(4356), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_file] = ACTIONS(4356), - [anon_sym_fixed] = ACTIONS(4356), - [anon_sym_internal] = ACTIONS(4356), - [anon_sym_new] = ACTIONS(4356), - [anon_sym_override] = ACTIONS(4356), - [anon_sym_partial] = ACTIONS(4356), - [anon_sym_private] = ACTIONS(4356), - [anon_sym_protected] = ACTIONS(4356), - [anon_sym_public] = ACTIONS(4356), - [anon_sym_readonly] = ACTIONS(4356), - [anon_sym_required] = ACTIONS(4356), - [anon_sym_sealed] = ACTIONS(4356), - [anon_sym_virtual] = ACTIONS(4356), - [anon_sym_volatile] = ACTIONS(4356), - [anon_sym_where] = ACTIONS(4356), - [anon_sym_notnull] = ACTIONS(4356), - [anon_sym_unmanaged] = ACTIONS(4356), - [anon_sym_TILDE] = ACTIONS(4360), - [anon_sym_implicit] = ACTIONS(4356), - [anon_sym_explicit] = ACTIONS(4356), - [anon_sym_scoped] = ACTIONS(4356), - [anon_sym_var] = ACTIONS(4356), - [sym_predefined_type] = ACTIONS(4356), - [anon_sym_yield] = ACTIONS(4356), - [anon_sym_when] = ACTIONS(4356), - [anon_sym_from] = ACTIONS(4356), - [anon_sym_into] = ACTIONS(4356), - [anon_sym_join] = ACTIONS(4356), - [anon_sym_on] = ACTIONS(4356), - [anon_sym_equals] = ACTIONS(4356), - [anon_sym_let] = ACTIONS(4356), - [anon_sym_orderby] = ACTIONS(4356), - [anon_sym_ascending] = ACTIONS(4356), - [anon_sym_descending] = ACTIONS(4356), - [anon_sym_group] = ACTIONS(4356), - [anon_sym_by] = ACTIONS(4356), - [anon_sym_select] = ACTIONS(4356), - [aux_sym_preproc_if_token1] = ACTIONS(4360), - [aux_sym_preproc_if_token3] = ACTIONS(4360), - [aux_sym_preproc_else_token1] = ACTIONS(4360), - [aux_sym_preproc_elif_token1] = ACTIONS(4360), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2683] = { - [sym_preproc_region] = STATE(2683), - [sym_preproc_endregion] = STATE(2683), - [sym_preproc_line] = STATE(2683), - [sym_preproc_pragma] = STATE(2683), - [sym_preproc_nullable] = STATE(2683), - [sym_preproc_error] = STATE(2683), - [sym_preproc_warning] = STATE(2683), - [sym_preproc_define] = STATE(2683), - [sym_preproc_undef] = STATE(2683), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_RBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3723), - [anon_sym_QMARK] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3723), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_when] = ACTIONS(3731), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3731), - [anon_sym_or] = ACTIONS(3731), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_into] = ACTIONS(3731), - [anon_sym_on] = ACTIONS(3731), - [anon_sym_equals] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3731), - [anon_sym_DASH_GT] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), - [aux_sym_preproc_if_token3] = ACTIONS(3731), - [aux_sym_preproc_else_token1] = ACTIONS(3731), - [aux_sym_preproc_elif_token1] = ACTIONS(3731), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2684] = { - [sym_preproc_region] = STATE(2684), - [sym_preproc_endregion] = STATE(2684), - [sym_preproc_line] = STATE(2684), - [sym_preproc_pragma] = STATE(2684), - [sym_preproc_nullable] = STATE(2684), - [sym_preproc_error] = STATE(2684), - [sym_preproc_warning] = STATE(2684), - [sym_preproc_define] = STATE(2684), - [sym_preproc_undef] = STATE(2684), [anon_sym_SEMI] = ACTIONS(3459), [anon_sym_EQ] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), @@ -445814,6 +445679,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2683] = { + [sym__variable_designation] = STATE(3845), + [sym_parenthesized_variable_designation] = STATE(3802), + [sym_identifier] = STATE(3805), + [sym__reserved_identifier] = STATE(2374), + [sym_preproc_region] = STATE(2683), + [sym_preproc_endregion] = STATE(2683), + [sym_preproc_line] = STATE(2683), + [sym_preproc_pragma] = STATE(2683), + [sym_preproc_nullable] = STATE(2683), + [sym_preproc_error] = STATE(2683), + [sym_preproc_warning] = STATE(2683), + [sym_preproc_define] = STATE(2683), + [sym_preproc_undef] = STATE(2683), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_COMMA] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(4003), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(4098), + [sym_discard] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_ascending] = ACTIONS(4003), + [anon_sym_descending] = ACTIONS(4003), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4003), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2684] = { + [sym_preproc_region] = STATE(2684), + [sym_preproc_endregion] = STATE(2684), + [sym_preproc_line] = STATE(2684), + [sym_preproc_pragma] = STATE(2684), + [sym_preproc_nullable] = STATE(2684), + [sym_preproc_error] = STATE(2684), + [sym_preproc_warning] = STATE(2684), + [sym_preproc_define] = STATE(2684), + [sym_preproc_undef] = STATE(2684), + [sym__identifier_token] = ACTIONS(4356), + [anon_sym_extern] = ACTIONS(4356), + [anon_sym_alias] = ACTIONS(4356), + [anon_sym_global] = ACTIONS(4356), + [anon_sym_using] = ACTIONS(4356), + [anon_sym_unsafe] = ACTIONS(4356), + [anon_sym_EQ] = ACTIONS(4358), + [anon_sym_static] = ACTIONS(4356), + [anon_sym_LBRACK] = ACTIONS(4360), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_event] = ACTIONS(4356), + [anon_sym_namespace] = ACTIONS(4356), + [anon_sym_class] = ACTIONS(4356), + [anon_sym_ref] = ACTIONS(4356), + [anon_sym_struct] = ACTIONS(4356), + [anon_sym_enum] = ACTIONS(4356), + [anon_sym_RBRACE] = ACTIONS(4360), + [anon_sym_interface] = ACTIONS(4356), + [anon_sym_delegate] = ACTIONS(4356), + [anon_sym_record] = ACTIONS(4356), + [anon_sym_abstract] = ACTIONS(4356), + [anon_sym_async] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4356), + [anon_sym_file] = ACTIONS(4356), + [anon_sym_fixed] = ACTIONS(4356), + [anon_sym_internal] = ACTIONS(4356), + [anon_sym_new] = ACTIONS(4356), + [anon_sym_override] = ACTIONS(4356), + [anon_sym_partial] = ACTIONS(4356), + [anon_sym_private] = ACTIONS(4356), + [anon_sym_protected] = ACTIONS(4356), + [anon_sym_public] = ACTIONS(4356), + [anon_sym_readonly] = ACTIONS(4356), + [anon_sym_required] = ACTIONS(4356), + [anon_sym_sealed] = ACTIONS(4356), + [anon_sym_virtual] = ACTIONS(4356), + [anon_sym_volatile] = ACTIONS(4356), + [anon_sym_where] = ACTIONS(4356), + [anon_sym_notnull] = ACTIONS(4356), + [anon_sym_unmanaged] = ACTIONS(4356), + [anon_sym_TILDE] = ACTIONS(4360), + [anon_sym_implicit] = ACTIONS(4356), + [anon_sym_explicit] = ACTIONS(4356), + [anon_sym_scoped] = ACTIONS(4356), + [anon_sym_var] = ACTIONS(4356), + [sym_predefined_type] = ACTIONS(4356), + [anon_sym_yield] = ACTIONS(4356), + [anon_sym_when] = ACTIONS(4356), + [anon_sym_from] = ACTIONS(4356), + [anon_sym_into] = ACTIONS(4356), + [anon_sym_join] = ACTIONS(4356), + [anon_sym_on] = ACTIONS(4356), + [anon_sym_equals] = ACTIONS(4356), + [anon_sym_let] = ACTIONS(4356), + [anon_sym_orderby] = ACTIONS(4356), + [anon_sym_ascending] = ACTIONS(4356), + [anon_sym_descending] = ACTIONS(4356), + [anon_sym_group] = ACTIONS(4356), + [anon_sym_by] = ACTIONS(4356), + [anon_sym_select] = ACTIONS(4356), + [aux_sym_preproc_if_token1] = ACTIONS(4360), + [aux_sym_preproc_if_token3] = ACTIONS(4360), + [aux_sym_preproc_else_token1] = ACTIONS(4360), + [aux_sym_preproc_elif_token1] = ACTIONS(4360), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2685] = { [sym_preproc_region] = STATE(2685), [sym_preproc_endregion] = STATE(2685), @@ -445899,10 +445934,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2686] = { - [sym__variable_designation] = STATE(4183), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), [sym_preproc_region] = STATE(2686), [sym_preproc_endregion] = STATE(2686), [sym_preproc_line] = STATE(2686), @@ -445912,86 +445943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2686), [sym_preproc_define] = STATE(2686), [sym_preproc_undef] = STATE(2686), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2687] = { - [sym_preproc_region] = STATE(2687), - [sym_preproc_endregion] = STATE(2687), - [sym_preproc_line] = STATE(2687), - [sym_preproc_pragma] = STATE(2687), - [sym_preproc_nullable] = STATE(2687), - [sym_preproc_error] = STATE(2687), - [sym_preproc_warning] = STATE(2687), - [sym_preproc_define] = STATE(2687), - [sym_preproc_undef] = STATE(2687), [sym__identifier_token] = ACTIONS(4366), [anon_sym_extern] = ACTIONS(4366), [anon_sym_alias] = ACTIONS(4366), @@ -446066,268 +446017,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2688] = { - [sym_preproc_region] = STATE(2688), - [sym_preproc_endregion] = STATE(2688), - [sym_preproc_line] = STATE(2688), - [sym_preproc_pragma] = STATE(2688), - [sym_preproc_nullable] = STATE(2688), - [sym_preproc_error] = STATE(2688), - [sym_preproc_warning] = STATE(2688), - [sym_preproc_define] = STATE(2688), - [sym_preproc_undef] = STATE(2688), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), - }, - [2689] = { - [sym_preproc_region] = STATE(2689), - [sym_preproc_endregion] = STATE(2689), - [sym_preproc_line] = STATE(2689), - [sym_preproc_pragma] = STATE(2689), - [sym_preproc_nullable] = STATE(2689), - [sym_preproc_error] = STATE(2689), - [sym_preproc_warning] = STATE(2689), - [sym_preproc_define] = STATE(2689), - [sym_preproc_undef] = STATE(2689), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_in] = ACTIONS(4237), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_EQ_GT] = ACTIONS(4237), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_when] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_on] = ACTIONS(4237), - [anon_sym_equals] = ACTIONS(4237), - [anon_sym_by] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), - [aux_sym_preproc_if_token3] = ACTIONS(4237), - [aux_sym_preproc_else_token1] = ACTIONS(4237), - [aux_sym_preproc_elif_token1] = ACTIONS(4237), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2690] = { - [sym__variable_designation] = STATE(4218), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2690), - [sym_preproc_endregion] = STATE(2690), - [sym_preproc_line] = STATE(2690), - [sym_preproc_pragma] = STATE(2690), - [sym_preproc_nullable] = STATE(2690), - [sym_preproc_error] = STATE(2690), - [sym_preproc_warning] = STATE(2690), - [sym_preproc_define] = STATE(2690), - [sym_preproc_undef] = STATE(2690), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2691] = { - [sym_preproc_region] = STATE(2691), - [sym_preproc_endregion] = STATE(2691), - [sym_preproc_line] = STATE(2691), - [sym_preproc_pragma] = STATE(2691), - [sym_preproc_nullable] = STATE(2691), - [sym_preproc_error] = STATE(2691), - [sym_preproc_warning] = STATE(2691), - [sym_preproc_define] = STATE(2691), - [sym_preproc_undef] = STATE(2691), + [2687] = { + [sym_preproc_region] = STATE(2687), + [sym_preproc_endregion] = STATE(2687), + [sym_preproc_line] = STATE(2687), + [sym_preproc_pragma] = STATE(2687), + [sym_preproc_nullable] = STATE(2687), + [sym_preproc_error] = STATE(2687), + [sym_preproc_warning] = STATE(2687), + [sym_preproc_define] = STATE(2687), + [sym_preproc_undef] = STATE(2687), [sym__identifier_token] = ACTIONS(4370), [anon_sym_extern] = ACTIONS(4370), [anon_sym_alias] = ACTIONS(4370), @@ -446402,100 +446101,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2692] = { - [sym__variable_designation] = STATE(4171), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2692), - [sym_preproc_endregion] = STATE(2692), - [sym_preproc_line] = STATE(2692), - [sym_preproc_pragma] = STATE(2692), - [sym_preproc_nullable] = STATE(2692), - [sym_preproc_error] = STATE(2692), - [sym_preproc_warning] = STATE(2692), - [sym_preproc_define] = STATE(2692), - [sym_preproc_undef] = STATE(2692), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3999), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3999), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3999), - [anon_sym_orderby] = ACTIONS(3999), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3999), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2693] = { - [sym_preproc_region] = STATE(2693), - [sym_preproc_endregion] = STATE(2693), - [sym_preproc_line] = STATE(2693), - [sym_preproc_pragma] = STATE(2693), - [sym_preproc_nullable] = STATE(2693), - [sym_preproc_error] = STATE(2693), - [sym_preproc_warning] = STATE(2693), - [sym_preproc_define] = STATE(2693), - [sym_preproc_undef] = STATE(2693), + [2688] = { + [sym_preproc_region] = STATE(2688), + [sym_preproc_endregion] = STATE(2688), + [sym_preproc_line] = STATE(2688), + [sym_preproc_pragma] = STATE(2688), + [sym_preproc_nullable] = STATE(2688), + [sym_preproc_error] = STATE(2688), + [sym_preproc_warning] = STATE(2688), + [sym_preproc_define] = STATE(2688), + [sym_preproc_undef] = STATE(2688), [sym__identifier_token] = ACTIONS(4374), [anon_sym_extern] = ACTIONS(4374), [anon_sym_alias] = ACTIONS(4374), @@ -446570,100 +446185,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2694] = { - [sym_preproc_region] = STATE(2694), - [sym_preproc_endregion] = STATE(2694), - [sym_preproc_line] = STATE(2694), - [sym_preproc_pragma] = STATE(2694), - [sym_preproc_nullable] = STATE(2694), - [sym_preproc_error] = STATE(2694), - [sym_preproc_warning] = STATE(2694), - [sym_preproc_define] = STATE(2694), - [sym_preproc_undef] = STATE(2694), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [sym_discard] = ACTIONS(3461), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), - }, - [2695] = { - [sym_preproc_region] = STATE(2695), - [sym_preproc_endregion] = STATE(2695), - [sym_preproc_line] = STATE(2695), - [sym_preproc_pragma] = STATE(2695), - [sym_preproc_nullable] = STATE(2695), - [sym_preproc_error] = STATE(2695), - [sym_preproc_warning] = STATE(2695), - [sym_preproc_define] = STATE(2695), - [sym_preproc_undef] = STATE(2695), + [2689] = { + [sym_preproc_region] = STATE(2689), + [sym_preproc_endregion] = STATE(2689), + [sym_preproc_line] = STATE(2689), + [sym_preproc_pragma] = STATE(2689), + [sym_preproc_nullable] = STATE(2689), + [sym_preproc_error] = STATE(2689), + [sym_preproc_warning] = STATE(2689), + [sym_preproc_define] = STATE(2689), + [sym_preproc_undef] = STATE(2689), [sym__identifier_token] = ACTIONS(4378), [anon_sym_extern] = ACTIONS(4378), [anon_sym_alias] = ACTIONS(4378), @@ -446738,79 +446269,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2696] = { - [sym__variable_designation] = STATE(4193), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2696), - [sym_preproc_endregion] = STATE(2696), - [sym_preproc_line] = STATE(2696), - [sym_preproc_pragma] = STATE(2696), - [sym_preproc_nullable] = STATE(2696), - [sym_preproc_error] = STATE(2696), - [sym_preproc_warning] = STATE(2696), - [sym_preproc_define] = STATE(2696), - [sym_preproc_undef] = STATE(2696), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_orderby] = ACTIONS(3971), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3971), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [2690] = { + [sym_preproc_region] = STATE(2690), + [sym_preproc_endregion] = STATE(2690), + [sym_preproc_line] = STATE(2690), + [sym_preproc_pragma] = STATE(2690), + [sym_preproc_nullable] = STATE(2690), + [sym_preproc_error] = STATE(2690), + [sym_preproc_warning] = STATE(2690), + [sym_preproc_define] = STATE(2690), + [sym_preproc_undef] = STATE(2690), + [sym__identifier_token] = ACTIONS(3379), + [anon_sym_extern] = ACTIONS(3379), + [anon_sym_alias] = ACTIONS(3379), + [anon_sym_global] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_unsafe] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_event] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_ref] = ACTIONS(3379), + [anon_sym_struct] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_delegate] = ACTIONS(3379), + [anon_sym_record] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_file] = ACTIONS(3379), + [anon_sym_fixed] = ACTIONS(3379), + [anon_sym_internal] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_partial] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_required] = ACTIONS(3379), + [anon_sym_sealed] = ACTIONS(3379), + [anon_sym_virtual] = ACTIONS(3379), + [anon_sym_volatile] = ACTIONS(3379), + [anon_sym_where] = ACTIONS(3379), + [anon_sym_notnull] = ACTIONS(3379), + [anon_sym_unmanaged] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_implicit] = ACTIONS(3379), + [anon_sym_explicit] = ACTIONS(3379), + [anon_sym_scoped] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [sym_predefined_type] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_when] = ACTIONS(3379), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_into] = ACTIONS(3379), + [anon_sym_join] = ACTIONS(3379), + [anon_sym_on] = ACTIONS(3379), + [anon_sym_equals] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_orderby] = ACTIONS(3379), + [anon_sym_ascending] = ACTIONS(3379), + [anon_sym_descending] = ACTIONS(3379), + [anon_sym_group] = ACTIONS(3379), + [anon_sym_by] = ACTIONS(3379), + [anon_sym_select] = ACTIONS(3379), + [aux_sym_preproc_if_token1] = ACTIONS(3381), + [aux_sym_preproc_if_token3] = ACTIONS(3381), + [aux_sym_preproc_else_token1] = ACTIONS(3381), + [aux_sym_preproc_elif_token1] = ACTIONS(3381), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446822,16 +446353,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2697] = { - [sym_preproc_region] = STATE(2697), - [sym_preproc_endregion] = STATE(2697), - [sym_preproc_line] = STATE(2697), - [sym_preproc_pragma] = STATE(2697), - [sym_preproc_nullable] = STATE(2697), - [sym_preproc_error] = STATE(2697), - [sym_preproc_warning] = STATE(2697), - [sym_preproc_define] = STATE(2697), - [sym_preproc_undef] = STATE(2697), + [2691] = { + [sym__variable_designation] = STATE(4210), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2691), + [sym_preproc_endregion] = STATE(2691), + [sym_preproc_line] = STATE(2691), + [sym_preproc_pragma] = STATE(2691), + [sym_preproc_nullable] = STATE(2691), + [sym_preproc_error] = STATE(2691), + [sym_preproc_warning] = STATE(2691), + [sym_preproc_define] = STATE(2691), + [sym_preproc_undef] = STATE(2691), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2692] = { + [sym_preproc_region] = STATE(2692), + [sym_preproc_endregion] = STATE(2692), + [sym_preproc_line] = STATE(2692), + [sym_preproc_pragma] = STATE(2692), + [sym_preproc_nullable] = STATE(2692), + [sym_preproc_error] = STATE(2692), + [sym_preproc_warning] = STATE(2692), + [sym_preproc_define] = STATE(2692), + [sym_preproc_undef] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3684), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_when] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_PLUS_EQ] = ACTIONS(3686), + [anon_sym_DASH_EQ] = ACTIONS(3686), + [anon_sym_STAR_EQ] = ACTIONS(3686), + [anon_sym_SLASH_EQ] = ACTIONS(3686), + [anon_sym_PERCENT_EQ] = ACTIONS(3686), + [anon_sym_AMP_EQ] = ACTIONS(3686), + [anon_sym_CARET_EQ] = ACTIONS(3686), + [anon_sym_PIPE_EQ] = ACTIONS(3686), + [anon_sym_LT_LT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2693] = { + [sym_preproc_region] = STATE(2693), + [sym_preproc_endregion] = STATE(2693), + [sym_preproc_line] = STATE(2693), + [sym_preproc_pragma] = STATE(2693), + [sym_preproc_nullable] = STATE(2693), + [sym_preproc_error] = STATE(2693), + [sym_preproc_warning] = STATE(2693), + [sym_preproc_define] = STATE(2693), + [sym_preproc_undef] = STATE(2693), [sym__identifier_token] = ACTIONS(4382), [anon_sym_extern] = ACTIONS(4382), [anon_sym_alias] = ACTIONS(4382), @@ -446906,16 +446605,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2698] = { - [sym_preproc_region] = STATE(2698), - [sym_preproc_endregion] = STATE(2698), - [sym_preproc_line] = STATE(2698), - [sym_preproc_pragma] = STATE(2698), - [sym_preproc_nullable] = STATE(2698), - [sym_preproc_error] = STATE(2698), - [sym_preproc_warning] = STATE(2698), - [sym_preproc_define] = STATE(2698), - [sym_preproc_undef] = STATE(2698), + [2694] = { + [sym_preproc_region] = STATE(2694), + [sym_preproc_endregion] = STATE(2694), + [sym_preproc_line] = STATE(2694), + [sym_preproc_pragma] = STATE(2694), + [sym_preproc_nullable] = STATE(2694), + [sym_preproc_error] = STATE(2694), + [sym_preproc_warning] = STATE(2694), + [sym_preproc_define] = STATE(2694), + [sym_preproc_undef] = STATE(2694), [sym__identifier_token] = ACTIONS(4386), [anon_sym_extern] = ACTIONS(4386), [anon_sym_alias] = ACTIONS(4386), @@ -446990,100 +446689,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2699] = { - [sym_preproc_region] = STATE(2699), - [sym_preproc_endregion] = STATE(2699), - [sym_preproc_line] = STATE(2699), - [sym_preproc_pragma] = STATE(2699), - [sym_preproc_nullable] = STATE(2699), - [sym_preproc_error] = STATE(2699), - [sym_preproc_warning] = STATE(2699), - [sym_preproc_define] = STATE(2699), - [sym_preproc_undef] = STATE(2699), - [sym__identifier_token] = ACTIONS(3359), - [anon_sym_extern] = ACTIONS(3359), - [anon_sym_alias] = ACTIONS(3359), - [anon_sym_global] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_event] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_ref] = ACTIONS(3359), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_delegate] = ACTIONS(3359), - [anon_sym_record] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_file] = ACTIONS(3359), - [anon_sym_fixed] = ACTIONS(3359), - [anon_sym_internal] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_partial] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_required] = ACTIONS(3359), - [anon_sym_sealed] = ACTIONS(3359), - [anon_sym_virtual] = ACTIONS(3359), - [anon_sym_volatile] = ACTIONS(3359), - [anon_sym_where] = ACTIONS(3359), - [anon_sym_notnull] = ACTIONS(3359), - [anon_sym_unmanaged] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_implicit] = ACTIONS(3359), - [anon_sym_explicit] = ACTIONS(3359), - [anon_sym_scoped] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [sym_predefined_type] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_when] = ACTIONS(3359), - [anon_sym_from] = ACTIONS(3359), - [anon_sym_into] = ACTIONS(3359), - [anon_sym_join] = ACTIONS(3359), - [anon_sym_on] = ACTIONS(3359), - [anon_sym_equals] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_orderby] = ACTIONS(3359), - [anon_sym_ascending] = ACTIONS(3359), - [anon_sym_descending] = ACTIONS(3359), - [anon_sym_group] = ACTIONS(3359), - [anon_sym_by] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [aux_sym_preproc_if_token1] = ACTIONS(3361), - [aux_sym_preproc_if_token3] = ACTIONS(3361), - [aux_sym_preproc_else_token1] = ACTIONS(3361), - [aux_sym_preproc_elif_token1] = ACTIONS(3361), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2700] = { - [sym_preproc_region] = STATE(2700), - [sym_preproc_endregion] = STATE(2700), - [sym_preproc_line] = STATE(2700), - [sym_preproc_pragma] = STATE(2700), - [sym_preproc_nullable] = STATE(2700), - [sym_preproc_error] = STATE(2700), - [sym_preproc_warning] = STATE(2700), - [sym_preproc_define] = STATE(2700), - [sym_preproc_undef] = STATE(2700), + [2695] = { + [sym_preproc_region] = STATE(2695), + [sym_preproc_endregion] = STATE(2695), + [sym_preproc_line] = STATE(2695), + [sym_preproc_pragma] = STATE(2695), + [sym_preproc_nullable] = STATE(2695), + [sym_preproc_error] = STATE(2695), + [sym_preproc_warning] = STATE(2695), + [sym_preproc_define] = STATE(2695), + [sym_preproc_undef] = STATE(2695), [sym__identifier_token] = ACTIONS(4390), [anon_sym_extern] = ACTIONS(4390), [anon_sym_alias] = ACTIONS(4390), @@ -447158,79 +446773,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2701] = { - [sym__variable_designation] = STATE(4167), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2701), - [sym_preproc_endregion] = STATE(2701), - [sym_preproc_line] = STATE(2701), - [sym_preproc_pragma] = STATE(2701), - [sym_preproc_nullable] = STATE(2701), - [sym_preproc_error] = STATE(2701), - [sym_preproc_warning] = STATE(2701), - [sym_preproc_define] = STATE(2701), - [sym_preproc_undef] = STATE(2701), + [2696] = { + [sym_preproc_region] = STATE(2696), + [sym_preproc_endregion] = STATE(2696), + [sym_preproc_line] = STATE(2696), + [sym_preproc_pragma] = STATE(2696), + [sym_preproc_nullable] = STATE(2696), + [sym_preproc_error] = STATE(2696), + [sym_preproc_warning] = STATE(2696), + [sym_preproc_define] = STATE(2696), + [sym_preproc_undef] = STATE(2696), + [sym__identifier_token] = ACTIONS(4394), + [anon_sym_extern] = ACTIONS(4394), + [anon_sym_alias] = ACTIONS(4394), + [anon_sym_global] = ACTIONS(4394), + [anon_sym_using] = ACTIONS(4394), + [anon_sym_unsafe] = ACTIONS(4394), + [anon_sym_static] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_event] = ACTIONS(4394), + [anon_sym_namespace] = ACTIONS(4394), + [anon_sym_class] = ACTIONS(4394), + [anon_sym_ref] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_enum] = ACTIONS(4394), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_interface] = ACTIONS(4394), + [anon_sym_delegate] = ACTIONS(4394), + [anon_sym_record] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_async] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_file] = ACTIONS(4394), + [anon_sym_fixed] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_new] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_partial] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_readonly] = ACTIONS(4394), + [anon_sym_required] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_virtual] = ACTIONS(4394), + [anon_sym_volatile] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_notnull] = ACTIONS(4394), + [anon_sym_unmanaged] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4396), + [anon_sym_implicit] = ACTIONS(4394), + [anon_sym_explicit] = ACTIONS(4394), + [anon_sym_scoped] = ACTIONS(4394), + [anon_sym_var] = ACTIONS(4394), + [sym_predefined_type] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_from] = ACTIONS(4394), + [anon_sym_into] = ACTIONS(4394), + [anon_sym_join] = ACTIONS(4394), + [anon_sym_on] = ACTIONS(4394), + [anon_sym_equals] = ACTIONS(4394), + [anon_sym_let] = ACTIONS(4394), + [anon_sym_orderby] = ACTIONS(4394), + [anon_sym_ascending] = ACTIONS(4394), + [anon_sym_descending] = ACTIONS(4394), + [anon_sym_group] = ACTIONS(4394), + [anon_sym_by] = ACTIONS(4394), + [anon_sym_select] = ACTIONS(4394), + [aux_sym_preproc_if_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token3] = ACTIONS(4396), + [aux_sym_preproc_else_token1] = ACTIONS(4396), + [aux_sym_preproc_elif_token1] = ACTIONS(4396), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2697] = { + [sym__variable_designation] = STATE(4193), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2697), + [sym_preproc_endregion] = STATE(2697), + [sym_preproc_line] = STATE(2697), + [sym_preproc_pragma] = STATE(2697), + [sym_preproc_nullable] = STATE(2697), + [sym_preproc_error] = STATE(2697), + [sym_preproc_warning] = STATE(2697), + [sym_preproc_define] = STATE(2697), + [sym_preproc_undef] = STATE(2697), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3979), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2698] = { + [sym__variable_designation] = STATE(4219), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2698), + [sym_preproc_endregion] = STATE(2698), + [sym_preproc_line] = STATE(2698), + [sym_preproc_pragma] = STATE(2698), + [sym_preproc_nullable] = STATE(2698), + [sym_preproc_error] = STATE(2698), + [sym_preproc_warning] = STATE(2698), + [sym_preproc_define] = STATE(2698), + [sym_preproc_undef] = STATE(2698), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3893), [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3893), [anon_sym_var] = ACTIONS(3893), [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(4003), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3933), [anon_sym_on] = ACTIONS(3893), [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), [anon_sym_ascending] = ACTIONS(3893), [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3933), [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2699] = { + [sym__variable_designation] = STATE(4170), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), + [sym_preproc_region] = STATE(2699), + [sym_preproc_endregion] = STATE(2699), + [sym_preproc_line] = STATE(2699), + [sym_preproc_pragma] = STATE(2699), + [sym_preproc_nullable] = STATE(2699), + [sym_preproc_error] = STATE(2699), + [sym_preproc_warning] = STATE(2699), + [sym_preproc_define] = STATE(2699), + [sym_preproc_undef] = STATE(2699), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3999), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3999), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3999), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3999), + [anon_sym_orderby] = ACTIONS(3999), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3999), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3999), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2700] = { + [sym_preproc_region] = STATE(2700), + [sym_preproc_endregion] = STATE(2700), + [sym_preproc_line] = STATE(2700), + [sym_preproc_pragma] = STATE(2700), + [sym_preproc_nullable] = STATE(2700), + [sym_preproc_error] = STATE(2700), + [sym_preproc_warning] = STATE(2700), + [sym_preproc_define] = STATE(2700), + [sym_preproc_undef] = STATE(2700), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_when] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3672), + [anon_sym_PLUS_EQ] = ACTIONS(3672), + [anon_sym_DASH_EQ] = ACTIONS(3672), + [anon_sym_STAR_EQ] = ACTIONS(3672), + [anon_sym_SLASH_EQ] = ACTIONS(3672), + [anon_sym_PERCENT_EQ] = ACTIONS(3672), + [anon_sym_AMP_EQ] = ACTIONS(3672), + [anon_sym_CARET_EQ] = ACTIONS(3672), + [anon_sym_PIPE_EQ] = ACTIONS(3672), + [anon_sym_LT_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447242,6 +447193,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2701] = { + [sym_preproc_region] = STATE(2701), + [sym_preproc_endregion] = STATE(2701), + [sym_preproc_line] = STATE(2701), + [sym_preproc_pragma] = STATE(2701), + [sym_preproc_nullable] = STATE(2701), + [sym_preproc_error] = STATE(2701), + [sym_preproc_warning] = STATE(2701), + [sym_preproc_define] = STATE(2701), + [sym_preproc_undef] = STATE(2701), + [sym__identifier_token] = ACTIONS(4030), + [anon_sym_alias] = ACTIONS(4030), + [anon_sym_global] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_file] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_notnull] = ACTIONS(4030), + [anon_sym_unmanaged] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_scoped] = ACTIONS(4030), + [anon_sym_var] = ACTIONS(4030), + [anon_sym_yield] = ACTIONS(4030), + [anon_sym_switch] = ACTIONS(4030), + [anon_sym_when] = ACTIONS(4030), + [sym_discard] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4030), + [anon_sym_or] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_from] = ACTIONS(4030), + [anon_sym_into] = ACTIONS(4030), + [anon_sym_join] = ACTIONS(4030), + [anon_sym_on] = ACTIONS(4030), + [anon_sym_equals] = ACTIONS(4030), + [anon_sym_let] = ACTIONS(4030), + [anon_sym_orderby] = ACTIONS(4030), + [anon_sym_ascending] = ACTIONS(4030), + [anon_sym_descending] = ACTIONS(4030), + [anon_sym_group] = ACTIONS(4030), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_select] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4030), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4032), + }, [2702] = { [sym_preproc_region] = STATE(2702), [sym_preproc_endregion] = STATE(2702), @@ -447252,69 +447287,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2702), [sym_preproc_define] = STATE(2702), [sym_preproc_undef] = STATE(2702), - [sym__identifier_token] = ACTIONS(4396), - [anon_sym_extern] = ACTIONS(4396), - [anon_sym_alias] = ACTIONS(4396), - [anon_sym_global] = ACTIONS(4396), - [anon_sym_using] = ACTIONS(4396), - [anon_sym_unsafe] = ACTIONS(4396), - [anon_sym_static] = ACTIONS(4396), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_LPAREN] = ACTIONS(4398), - [anon_sym_event] = ACTIONS(4396), - [anon_sym_namespace] = ACTIONS(4396), - [anon_sym_class] = ACTIONS(4396), - [anon_sym_ref] = ACTIONS(4396), - [anon_sym_struct] = ACTIONS(4396), - [anon_sym_enum] = ACTIONS(4396), - [anon_sym_RBRACE] = ACTIONS(4398), - [anon_sym_interface] = ACTIONS(4396), - [anon_sym_delegate] = ACTIONS(4396), - [anon_sym_record] = ACTIONS(4396), - [anon_sym_abstract] = ACTIONS(4396), - [anon_sym_async] = ACTIONS(4396), - [anon_sym_const] = ACTIONS(4396), - [anon_sym_file] = ACTIONS(4396), - [anon_sym_fixed] = ACTIONS(4396), - [anon_sym_internal] = ACTIONS(4396), - [anon_sym_new] = ACTIONS(4396), - [anon_sym_override] = ACTIONS(4396), - [anon_sym_partial] = ACTIONS(4396), - [anon_sym_private] = ACTIONS(4396), - [anon_sym_protected] = ACTIONS(4396), - [anon_sym_public] = ACTIONS(4396), - [anon_sym_readonly] = ACTIONS(4396), - [anon_sym_required] = ACTIONS(4396), - [anon_sym_sealed] = ACTIONS(4396), - [anon_sym_virtual] = ACTIONS(4396), - [anon_sym_volatile] = ACTIONS(4396), - [anon_sym_where] = ACTIONS(4396), - [anon_sym_notnull] = ACTIONS(4396), - [anon_sym_unmanaged] = ACTIONS(4396), - [anon_sym_TILDE] = ACTIONS(4398), - [anon_sym_implicit] = ACTIONS(4396), - [anon_sym_explicit] = ACTIONS(4396), - [anon_sym_scoped] = ACTIONS(4396), - [anon_sym_var] = ACTIONS(4396), - [sym_predefined_type] = ACTIONS(4396), - [anon_sym_yield] = ACTIONS(4396), - [anon_sym_when] = ACTIONS(4396), - [anon_sym_from] = ACTIONS(4396), - [anon_sym_into] = ACTIONS(4396), - [anon_sym_join] = ACTIONS(4396), - [anon_sym_on] = ACTIONS(4396), - [anon_sym_equals] = ACTIONS(4396), - [anon_sym_let] = ACTIONS(4396), - [anon_sym_orderby] = ACTIONS(4396), - [anon_sym_ascending] = ACTIONS(4396), - [anon_sym_descending] = ACTIONS(4396), - [anon_sym_group] = ACTIONS(4396), - [anon_sym_by] = ACTIONS(4396), - [anon_sym_select] = ACTIONS(4396), - [aux_sym_preproc_if_token1] = ACTIONS(4398), - [aux_sym_preproc_if_token3] = ACTIONS(4398), - [aux_sym_preproc_else_token1] = ACTIONS(4398), - [aux_sym_preproc_elif_token1] = ACTIONS(4398), + [sym__identifier_token] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym_alias] = ACTIONS(3391), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_unsafe] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_event] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_ref] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_delegate] = ACTIONS(3391), + [anon_sym_record] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_file] = ACTIONS(3391), + [anon_sym_fixed] = ACTIONS(3391), + [anon_sym_internal] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_partial] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_required] = ACTIONS(3391), + [anon_sym_sealed] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_where] = ACTIONS(3391), + [anon_sym_notnull] = ACTIONS(3391), + [anon_sym_unmanaged] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_implicit] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_scoped] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [sym_predefined_type] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_when] = ACTIONS(3391), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_into] = ACTIONS(3391), + [anon_sym_join] = ACTIONS(3391), + [anon_sym_on] = ACTIONS(3391), + [anon_sym_equals] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_orderby] = ACTIONS(3391), + [anon_sym_ascending] = ACTIONS(3391), + [anon_sym_descending] = ACTIONS(3391), + [anon_sym_group] = ACTIONS(3391), + [anon_sym_by] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3393), + [aux_sym_preproc_if_token3] = ACTIONS(3393), + [aux_sym_preproc_else_token1] = ACTIONS(3393), + [aux_sym_preproc_elif_token1] = ACTIONS(3393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447495,6 +447530,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2705] = { + [sym__variable_designation] = STATE(4189), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2705), [sym_preproc_endregion] = STATE(2705), [sym_preproc_line] = STATE(2705), @@ -447504,6 +447543,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2705), [sym_preproc_define] = STATE(2705), [sym_preproc_undef] = STATE(2705), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(4003), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(4003), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2706] = { + [sym_preproc_region] = STATE(2706), + [sym_preproc_endregion] = STATE(2706), + [sym_preproc_line] = STATE(2706), + [sym_preproc_pragma] = STATE(2706), + [sym_preproc_nullable] = STATE(2706), + [sym_preproc_error] = STATE(2706), + [sym_preproc_warning] = STATE(2706), + [sym_preproc_define] = STATE(2706), + [sym_preproc_undef] = STATE(2706), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_EQ] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3674), + [anon_sym_CARET] = ACTIONS(3674), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3674), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3674), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3676), + [anon_sym_PLUS_EQ] = ACTIONS(3676), + [anon_sym_DASH_EQ] = ACTIONS(3676), + [anon_sym_STAR_EQ] = ACTIONS(3676), + [anon_sym_SLASH_EQ] = ACTIONS(3676), + [anon_sym_PERCENT_EQ] = ACTIONS(3676), + [anon_sym_AMP_EQ] = ACTIONS(3676), + [anon_sym_CARET_EQ] = ACTIONS(3676), + [anon_sym_PIPE_EQ] = ACTIONS(3676), + [anon_sym_LT_LT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2707] = { + [sym_preproc_region] = STATE(2707), + [sym_preproc_endregion] = STATE(2707), + [sym_preproc_line] = STATE(2707), + [sym_preproc_pragma] = STATE(2707), + [sym_preproc_nullable] = STATE(2707), + [sym_preproc_error] = STATE(2707), + [sym_preproc_warning] = STATE(2707), + [sym_preproc_define] = STATE(2707), + [sym_preproc_undef] = STATE(2707), + [sym__identifier_token] = ACTIONS(4048), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4048), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4048), + [anon_sym_or] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(4048), + [anon_sym_join] = ACTIONS(4048), + [anon_sym_on] = ACTIONS(4048), + [anon_sym_equals] = ACTIONS(4048), + [anon_sym_let] = ACTIONS(4048), + [anon_sym_orderby] = ACTIONS(4048), + [anon_sym_ascending] = ACTIONS(4048), + [anon_sym_descending] = ACTIONS(4048), + [anon_sym_group] = ACTIONS(4048), + [anon_sym_by] = ACTIONS(4048), + [anon_sym_select] = ACTIONS(4048), + [anon_sym_as] = ACTIONS(4048), + [anon_sym_is] = ACTIONS(4048), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4048), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4050), + }, + [2708] = { + [sym_preproc_region] = STATE(2708), + [sym_preproc_endregion] = STATE(2708), + [sym_preproc_line] = STATE(2708), + [sym_preproc_pragma] = STATE(2708), + [sym_preproc_nullable] = STATE(2708), + [sym_preproc_error] = STATE(2708), + [sym_preproc_warning] = STATE(2708), + [sym_preproc_define] = STATE(2708), + [sym_preproc_undef] = STATE(2708), [sym__identifier_token] = ACTIONS(4408), [anon_sym_extern] = ACTIONS(4408), [anon_sym_alias] = ACTIONS(4408), @@ -447578,100 +447865,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2706] = { - [sym_preproc_region] = STATE(2706), - [sym_preproc_endregion] = STATE(2706), - [sym_preproc_line] = STATE(2706), - [sym_preproc_pragma] = STATE(2706), - [sym_preproc_nullable] = STATE(2706), - [sym_preproc_error] = STATE(2706), - [sym_preproc_warning] = STATE(2706), - [sym_preproc_define] = STATE(2706), - [sym_preproc_undef] = STATE(2706), - [sym__identifier_token] = ACTIONS(4102), - [anon_sym_alias] = ACTIONS(4102), - [anon_sym_global] = ACTIONS(4102), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_COLON] = ACTIONS(4104), - [anon_sym_COMMA] = ACTIONS(4104), - [anon_sym_LPAREN] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4104), - [anon_sym_file] = ACTIONS(4102), - [anon_sym_LT] = ACTIONS(4102), - [anon_sym_GT] = ACTIONS(4102), - [anon_sym_where] = ACTIONS(4102), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_notnull] = ACTIONS(4102), - [anon_sym_unmanaged] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4104), - [anon_sym_DASH_DASH] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4102), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_CARET] = ACTIONS(4104), - [anon_sym_PIPE] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4102), - [anon_sym_LT_LT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(4102), - [anon_sym_GT_GT_GT] = ACTIONS(4104), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_GT_EQ] = ACTIONS(4104), - [anon_sym_LT_EQ] = ACTIONS(4104), - [anon_sym_DOT] = ACTIONS(4102), - [anon_sym_scoped] = ACTIONS(4102), - [anon_sym_var] = ACTIONS(4102), - [anon_sym_yield] = ACTIONS(4102), - [anon_sym_switch] = ACTIONS(4102), - [anon_sym_when] = ACTIONS(4102), - [sym_discard] = ACTIONS(4102), - [anon_sym_DOT_DOT] = ACTIONS(4104), - [anon_sym_and] = ACTIONS(4102), - [anon_sym_or] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4104), - [anon_sym_PIPE_PIPE] = ACTIONS(4104), - [anon_sym_QMARK_QMARK] = ACTIONS(4104), - [anon_sym_from] = ACTIONS(4102), - [anon_sym_into] = ACTIONS(4102), - [anon_sym_join] = ACTIONS(4102), - [anon_sym_on] = ACTIONS(4102), - [anon_sym_equals] = ACTIONS(4102), - [anon_sym_let] = ACTIONS(4102), - [anon_sym_orderby] = ACTIONS(4102), - [anon_sym_ascending] = ACTIONS(4102), - [anon_sym_descending] = ACTIONS(4102), - [anon_sym_group] = ACTIONS(4102), - [anon_sym_by] = ACTIONS(4102), - [anon_sym_select] = ACTIONS(4102), - [anon_sym_as] = ACTIONS(4102), - [anon_sym_is] = ACTIONS(4102), - [anon_sym_DASH_GT] = ACTIONS(4104), - [anon_sym_with] = ACTIONS(4102), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4104), - }, - [2707] = { - [sym_preproc_region] = STATE(2707), - [sym_preproc_endregion] = STATE(2707), - [sym_preproc_line] = STATE(2707), - [sym_preproc_pragma] = STATE(2707), - [sym_preproc_nullable] = STATE(2707), - [sym_preproc_error] = STATE(2707), - [sym_preproc_warning] = STATE(2707), - [sym_preproc_define] = STATE(2707), - [sym_preproc_undef] = STATE(2707), + [2709] = { + [sym_preproc_region] = STATE(2709), + [sym_preproc_endregion] = STATE(2709), + [sym_preproc_line] = STATE(2709), + [sym_preproc_pragma] = STATE(2709), + [sym_preproc_nullable] = STATE(2709), + [sym_preproc_error] = STATE(2709), + [sym_preproc_warning] = STATE(2709), + [sym_preproc_define] = STATE(2709), + [sym_preproc_undef] = STATE(2709), [sym__identifier_token] = ACTIONS(4412), [anon_sym_extern] = ACTIONS(4412), [anon_sym_alias] = ACTIONS(4412), @@ -447746,174 +447949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2708] = { - [sym_preproc_region] = STATE(2708), - [sym_preproc_endregion] = STATE(2708), - [sym_preproc_line] = STATE(2708), - [sym_preproc_pragma] = STATE(2708), - [sym_preproc_nullable] = STATE(2708), - [sym_preproc_error] = STATE(2708), - [sym_preproc_warning] = STATE(2708), - [sym_preproc_define] = STATE(2708), - [sym_preproc_undef] = STATE(2708), - [sym__identifier_token] = ACTIONS(4416), - [anon_sym_extern] = ACTIONS(4416), - [anon_sym_alias] = ACTIONS(4416), - [anon_sym_global] = ACTIONS(4416), - [anon_sym_using] = ACTIONS(4416), - [anon_sym_unsafe] = ACTIONS(4416), - [anon_sym_static] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4418), - [anon_sym_LPAREN] = ACTIONS(4418), - [anon_sym_event] = ACTIONS(4416), - [anon_sym_namespace] = ACTIONS(4416), - [anon_sym_class] = ACTIONS(4416), - [anon_sym_ref] = ACTIONS(4416), - [anon_sym_struct] = ACTIONS(4416), - [anon_sym_enum] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_interface] = ACTIONS(4416), - [anon_sym_delegate] = ACTIONS(4416), - [anon_sym_record] = ACTIONS(4416), - [anon_sym_abstract] = ACTIONS(4416), - [anon_sym_async] = ACTIONS(4416), - [anon_sym_const] = ACTIONS(4416), - [anon_sym_file] = ACTIONS(4416), - [anon_sym_fixed] = ACTIONS(4416), - [anon_sym_internal] = ACTIONS(4416), - [anon_sym_new] = ACTIONS(4416), - [anon_sym_override] = ACTIONS(4416), - [anon_sym_partial] = ACTIONS(4416), - [anon_sym_private] = ACTIONS(4416), - [anon_sym_protected] = ACTIONS(4416), - [anon_sym_public] = ACTIONS(4416), - [anon_sym_readonly] = ACTIONS(4416), - [anon_sym_required] = ACTIONS(4416), - [anon_sym_sealed] = ACTIONS(4416), - [anon_sym_virtual] = ACTIONS(4416), - [anon_sym_volatile] = ACTIONS(4416), - [anon_sym_where] = ACTIONS(4416), - [anon_sym_notnull] = ACTIONS(4416), - [anon_sym_unmanaged] = ACTIONS(4416), - [anon_sym_TILDE] = ACTIONS(4418), - [anon_sym_implicit] = ACTIONS(4416), - [anon_sym_explicit] = ACTIONS(4416), - [anon_sym_scoped] = ACTIONS(4416), - [anon_sym_var] = ACTIONS(4416), - [sym_predefined_type] = ACTIONS(4416), - [anon_sym_yield] = ACTIONS(4416), - [anon_sym_when] = ACTIONS(4416), - [anon_sym_from] = ACTIONS(4416), - [anon_sym_into] = ACTIONS(4416), - [anon_sym_join] = ACTIONS(4416), - [anon_sym_on] = ACTIONS(4416), - [anon_sym_equals] = ACTIONS(4416), - [anon_sym_let] = ACTIONS(4416), - [anon_sym_orderby] = ACTIONS(4416), - [anon_sym_ascending] = ACTIONS(4416), - [anon_sym_descending] = ACTIONS(4416), - [anon_sym_group] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4416), - [anon_sym_select] = ACTIONS(4416), - [aux_sym_preproc_if_token1] = ACTIONS(4418), - [aux_sym_preproc_if_token3] = ACTIONS(4418), - [aux_sym_preproc_else_token1] = ACTIONS(4418), - [aux_sym_preproc_elif_token1] = ACTIONS(4418), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2709] = { - [sym_preproc_region] = STATE(2709), - [sym_preproc_endregion] = STATE(2709), - [sym_preproc_line] = STATE(2709), - [sym_preproc_pragma] = STATE(2709), - [sym_preproc_nullable] = STATE(2709), - [sym_preproc_error] = STATE(2709), - [sym_preproc_warning] = STATE(2709), - [sym_preproc_define] = STATE(2709), - [sym_preproc_undef] = STATE(2709), - [sym__identifier_token] = ACTIONS(4420), - [anon_sym_extern] = ACTIONS(4420), - [anon_sym_alias] = ACTIONS(4420), - [anon_sym_global] = ACTIONS(4420), - [anon_sym_using] = ACTIONS(4420), - [anon_sym_unsafe] = ACTIONS(4420), - [anon_sym_static] = ACTIONS(4420), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_event] = ACTIONS(4420), - [anon_sym_namespace] = ACTIONS(4420), - [anon_sym_class] = ACTIONS(4420), - [anon_sym_ref] = ACTIONS(4420), - [anon_sym_struct] = ACTIONS(4420), - [anon_sym_enum] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_interface] = ACTIONS(4420), - [anon_sym_delegate] = ACTIONS(4420), - [anon_sym_record] = ACTIONS(4420), - [anon_sym_abstract] = ACTIONS(4420), - [anon_sym_async] = ACTIONS(4420), - [anon_sym_const] = ACTIONS(4420), - [anon_sym_file] = ACTIONS(4420), - [anon_sym_fixed] = ACTIONS(4420), - [anon_sym_internal] = ACTIONS(4420), - [anon_sym_new] = ACTIONS(4420), - [anon_sym_override] = ACTIONS(4420), - [anon_sym_partial] = ACTIONS(4420), - [anon_sym_private] = ACTIONS(4420), - [anon_sym_protected] = ACTIONS(4420), - [anon_sym_public] = ACTIONS(4420), - [anon_sym_readonly] = ACTIONS(4420), - [anon_sym_required] = ACTIONS(4420), - [anon_sym_sealed] = ACTIONS(4420), - [anon_sym_virtual] = ACTIONS(4420), - [anon_sym_volatile] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_notnull] = ACTIONS(4420), - [anon_sym_unmanaged] = ACTIONS(4420), - [anon_sym_TILDE] = ACTIONS(4422), - [anon_sym_implicit] = ACTIONS(4420), - [anon_sym_explicit] = ACTIONS(4420), - [anon_sym_scoped] = ACTIONS(4420), - [anon_sym_var] = ACTIONS(4420), - [sym_predefined_type] = ACTIONS(4420), - [anon_sym_yield] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_from] = ACTIONS(4420), - [anon_sym_into] = ACTIONS(4420), - [anon_sym_join] = ACTIONS(4420), - [anon_sym_on] = ACTIONS(4420), - [anon_sym_equals] = ACTIONS(4420), - [anon_sym_let] = ACTIONS(4420), - [anon_sym_orderby] = ACTIONS(4420), - [anon_sym_ascending] = ACTIONS(4420), - [anon_sym_descending] = ACTIONS(4420), - [anon_sym_group] = ACTIONS(4420), - [anon_sym_by] = ACTIONS(4420), - [anon_sym_select] = ACTIONS(4420), - [aux_sym_preproc_if_token1] = ACTIONS(4422), - [aux_sym_preproc_if_token3] = ACTIONS(4422), - [aux_sym_preproc_else_token1] = ACTIONS(4422), - [aux_sym_preproc_elif_token1] = ACTIONS(4422), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2710] = { [sym_preproc_region] = STATE(2710), [sym_preproc_endregion] = STATE(2710), @@ -447924,69 +447959,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2710), [sym_preproc_define] = STATE(2710), [sym_preproc_undef] = STATE(2710), - [sym__identifier_token] = ACTIONS(4424), - [anon_sym_extern] = ACTIONS(4424), - [anon_sym_alias] = ACTIONS(4424), - [anon_sym_global] = ACTIONS(4424), - [anon_sym_using] = ACTIONS(4424), - [anon_sym_unsafe] = ACTIONS(4424), - [anon_sym_static] = ACTIONS(4424), - [anon_sym_LBRACK] = ACTIONS(4426), - [anon_sym_LPAREN] = ACTIONS(4426), - [anon_sym_event] = ACTIONS(4424), - [anon_sym_namespace] = ACTIONS(4424), - [anon_sym_class] = ACTIONS(4424), - [anon_sym_ref] = ACTIONS(4424), - [anon_sym_struct] = ACTIONS(4424), - [anon_sym_enum] = ACTIONS(4424), - [anon_sym_RBRACE] = ACTIONS(4426), - [anon_sym_interface] = ACTIONS(4424), - [anon_sym_delegate] = ACTIONS(4424), - [anon_sym_record] = ACTIONS(4424), - [anon_sym_abstract] = ACTIONS(4424), - [anon_sym_async] = ACTIONS(4424), - [anon_sym_const] = ACTIONS(4424), - [anon_sym_file] = ACTIONS(4424), - [anon_sym_fixed] = ACTIONS(4424), - [anon_sym_internal] = ACTIONS(4424), - [anon_sym_new] = ACTIONS(4424), - [anon_sym_override] = ACTIONS(4424), - [anon_sym_partial] = ACTIONS(4424), - [anon_sym_private] = ACTIONS(4424), - [anon_sym_protected] = ACTIONS(4424), - [anon_sym_public] = ACTIONS(4424), - [anon_sym_readonly] = ACTIONS(4424), - [anon_sym_required] = ACTIONS(4424), - [anon_sym_sealed] = ACTIONS(4424), - [anon_sym_virtual] = ACTIONS(4424), - [anon_sym_volatile] = ACTIONS(4424), - [anon_sym_where] = ACTIONS(4424), - [anon_sym_notnull] = ACTIONS(4424), - [anon_sym_unmanaged] = ACTIONS(4424), - [anon_sym_TILDE] = ACTIONS(4426), - [anon_sym_implicit] = ACTIONS(4424), - [anon_sym_explicit] = ACTIONS(4424), - [anon_sym_scoped] = ACTIONS(4424), - [anon_sym_var] = ACTIONS(4424), - [sym_predefined_type] = ACTIONS(4424), - [anon_sym_yield] = ACTIONS(4424), - [anon_sym_when] = ACTIONS(4424), - [anon_sym_from] = ACTIONS(4424), - [anon_sym_into] = ACTIONS(4424), - [anon_sym_join] = ACTIONS(4424), - [anon_sym_on] = ACTIONS(4424), - [anon_sym_equals] = ACTIONS(4424), - [anon_sym_let] = ACTIONS(4424), - [anon_sym_orderby] = ACTIONS(4424), - [anon_sym_ascending] = ACTIONS(4424), - [anon_sym_descending] = ACTIONS(4424), - [anon_sym_group] = ACTIONS(4424), - [anon_sym_by] = ACTIONS(4424), - [anon_sym_select] = ACTIONS(4424), - [aux_sym_preproc_if_token1] = ACTIONS(4426), - [aux_sym_preproc_if_token3] = ACTIONS(4426), - [aux_sym_preproc_else_token1] = ACTIONS(4426), - [aux_sym_preproc_elif_token1] = ACTIONS(4426), + [sym__identifier_token] = ACTIONS(4052), + [anon_sym_alias] = ACTIONS(4052), + [anon_sym_global] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_COMMA] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_file] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4052), + [anon_sym_where] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_notnull] = ACTIONS(4052), + [anon_sym_unmanaged] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_scoped] = ACTIONS(4052), + [anon_sym_var] = ACTIONS(4052), + [anon_sym_yield] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_when] = ACTIONS(4052), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4052), + [anon_sym_or] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4054), + [anon_sym_QMARK_QMARK] = ACTIONS(4054), + [anon_sym_from] = ACTIONS(4052), + [anon_sym_into] = ACTIONS(4052), + [anon_sym_join] = ACTIONS(4052), + [anon_sym_on] = ACTIONS(4052), + [anon_sym_equals] = ACTIONS(4052), + [anon_sym_let] = ACTIONS(4052), + [anon_sym_orderby] = ACTIONS(4052), + [anon_sym_ascending] = ACTIONS(4052), + [anon_sym_descending] = ACTIONS(4052), + [anon_sym_group] = ACTIONS(4052), + [anon_sym_by] = ACTIONS(4052), + [anon_sym_select] = ACTIONS(4052), + [anon_sym_as] = ACTIONS(4052), + [anon_sym_is] = ACTIONS(4052), + [anon_sym_DASH_GT] = ACTIONS(4054), + [anon_sym_with] = ACTIONS(4052), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447997,6 +448031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4054), }, [2711] = { [sym_preproc_region] = STATE(2711), @@ -448008,69 +448043,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2711), [sym_preproc_define] = STATE(2711), [sym_preproc_undef] = STATE(2711), - [sym__identifier_token] = ACTIONS(4428), - [anon_sym_extern] = ACTIONS(4428), - [anon_sym_alias] = ACTIONS(4428), - [anon_sym_global] = ACTIONS(4428), - [anon_sym_using] = ACTIONS(4428), - [anon_sym_unsafe] = ACTIONS(4428), - [anon_sym_static] = ACTIONS(4428), - [anon_sym_LBRACK] = ACTIONS(4430), - [anon_sym_LPAREN] = ACTIONS(4430), - [anon_sym_event] = ACTIONS(4428), - [anon_sym_namespace] = ACTIONS(4428), - [anon_sym_class] = ACTIONS(4428), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_struct] = ACTIONS(4428), - [anon_sym_enum] = ACTIONS(4428), - [anon_sym_RBRACE] = ACTIONS(4430), - [anon_sym_interface] = ACTIONS(4428), - [anon_sym_delegate] = ACTIONS(4428), - [anon_sym_record] = ACTIONS(4428), - [anon_sym_abstract] = ACTIONS(4428), - [anon_sym_async] = ACTIONS(4428), - [anon_sym_const] = ACTIONS(4428), - [anon_sym_file] = ACTIONS(4428), - [anon_sym_fixed] = ACTIONS(4428), - [anon_sym_internal] = ACTIONS(4428), - [anon_sym_new] = ACTIONS(4428), - [anon_sym_override] = ACTIONS(4428), - [anon_sym_partial] = ACTIONS(4428), - [anon_sym_private] = ACTIONS(4428), - [anon_sym_protected] = ACTIONS(4428), - [anon_sym_public] = ACTIONS(4428), - [anon_sym_readonly] = ACTIONS(4428), - [anon_sym_required] = ACTIONS(4428), - [anon_sym_sealed] = ACTIONS(4428), - [anon_sym_virtual] = ACTIONS(4428), - [anon_sym_volatile] = ACTIONS(4428), - [anon_sym_where] = ACTIONS(4428), - [anon_sym_notnull] = ACTIONS(4428), - [anon_sym_unmanaged] = ACTIONS(4428), - [anon_sym_TILDE] = ACTIONS(4430), - [anon_sym_implicit] = ACTIONS(4428), - [anon_sym_explicit] = ACTIONS(4428), - [anon_sym_scoped] = ACTIONS(4428), - [anon_sym_var] = ACTIONS(4428), - [sym_predefined_type] = ACTIONS(4428), - [anon_sym_yield] = ACTIONS(4428), - [anon_sym_when] = ACTIONS(4428), - [anon_sym_from] = ACTIONS(4428), - [anon_sym_into] = ACTIONS(4428), - [anon_sym_join] = ACTIONS(4428), - [anon_sym_on] = ACTIONS(4428), - [anon_sym_equals] = ACTIONS(4428), - [anon_sym_let] = ACTIONS(4428), - [anon_sym_orderby] = ACTIONS(4428), - [anon_sym_ascending] = ACTIONS(4428), - [anon_sym_descending] = ACTIONS(4428), - [anon_sym_group] = ACTIONS(4428), - [anon_sym_by] = ACTIONS(4428), - [anon_sym_select] = ACTIONS(4428), - [aux_sym_preproc_if_token1] = ACTIONS(4430), - [aux_sym_preproc_if_token3] = ACTIONS(4430), - [aux_sym_preproc_else_token1] = ACTIONS(4430), - [aux_sym_preproc_elif_token1] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RBRACK] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3731), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_EQ_GT] = ACTIONS(3731), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_when] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3731), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3731), + [anon_sym_equals] = ACTIONS(3731), + [anon_sym_by] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), + [aux_sym_preproc_if_token3] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3731), + [aux_sym_preproc_elif_token1] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448092,69 +448127,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2712), [sym_preproc_define] = STATE(2712), [sym_preproc_undef] = STATE(2712), - [sym__identifier_token] = ACTIONS(4432), - [anon_sym_extern] = ACTIONS(4432), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_using] = ACTIONS(4432), - [anon_sym_unsafe] = ACTIONS(4432), - [anon_sym_static] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4434), - [anon_sym_LPAREN] = ACTIONS(4434), - [anon_sym_event] = ACTIONS(4432), - [anon_sym_namespace] = ACTIONS(4432), - [anon_sym_class] = ACTIONS(4432), - [anon_sym_ref] = ACTIONS(4432), - [anon_sym_struct] = ACTIONS(4432), - [anon_sym_enum] = ACTIONS(4432), - [anon_sym_RBRACE] = ACTIONS(4434), - [anon_sym_interface] = ACTIONS(4432), - [anon_sym_delegate] = ACTIONS(4432), - [anon_sym_record] = ACTIONS(4432), - [anon_sym_abstract] = ACTIONS(4432), - [anon_sym_async] = ACTIONS(4432), - [anon_sym_const] = ACTIONS(4432), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_fixed] = ACTIONS(4432), - [anon_sym_internal] = ACTIONS(4432), - [anon_sym_new] = ACTIONS(4432), - [anon_sym_override] = ACTIONS(4432), - [anon_sym_partial] = ACTIONS(4432), - [anon_sym_private] = ACTIONS(4432), - [anon_sym_protected] = ACTIONS(4432), - [anon_sym_public] = ACTIONS(4432), - [anon_sym_readonly] = ACTIONS(4432), - [anon_sym_required] = ACTIONS(4432), - [anon_sym_sealed] = ACTIONS(4432), - [anon_sym_virtual] = ACTIONS(4432), - [anon_sym_volatile] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_TILDE] = ACTIONS(4434), - [anon_sym_implicit] = ACTIONS(4432), - [anon_sym_explicit] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [sym_predefined_type] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [aux_sym_preproc_if_token1] = ACTIONS(4434), - [aux_sym_preproc_if_token3] = ACTIONS(4434), - [aux_sym_preproc_else_token1] = ACTIONS(4434), - [aux_sym_preproc_elif_token1] = ACTIONS(4434), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_RPAREN] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_EQ_GT] = ACTIONS(4190), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4190), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_on] = ACTIONS(4190), + [anon_sym_equals] = ACTIONS(4190), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), + [aux_sym_preproc_if_token3] = ACTIONS(4190), + [aux_sym_preproc_else_token1] = ACTIONS(4190), + [aux_sym_preproc_elif_token1] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448176,79 +448211,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2713), [sym_preproc_define] = STATE(2713), [sym_preproc_undef] = STATE(2713), - [sym__identifier_token] = ACTIONS(3684), - [anon_sym_alias] = ACTIONS(3684), - [anon_sym_global] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_file] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_where] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_notnull] = ACTIONS(3684), - [anon_sym_unmanaged] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_scoped] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_when] = ACTIONS(3684), - [sym_discard] = ACTIONS(3684), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3684), - [anon_sym_or] = ACTIONS(3684), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_into] = ACTIONS(3684), - [anon_sym_join] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_equals] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_orderby] = ACTIONS(3684), - [anon_sym_ascending] = ACTIONS(3684), - [anon_sym_descending] = ACTIONS(3684), - [anon_sym_group] = ACTIONS(3684), - [anon_sym_by] = ACTIONS(3684), - [anon_sym_select] = ACTIONS(3684), - [anon_sym_as] = ACTIONS(3684), - [anon_sym_is] = ACTIONS(3684), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3686), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4421), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, [2714] = { [sym_preproc_region] = STATE(2714), @@ -448260,79 +448295,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2714), [sym_preproc_define] = STATE(2714), [sym_preproc_undef] = STATE(2714), - [sym__identifier_token] = ACTIONS(4436), - [anon_sym_extern] = ACTIONS(4436), - [anon_sym_alias] = ACTIONS(4436), - [anon_sym_global] = ACTIONS(4436), - [anon_sym_using] = ACTIONS(4436), - [anon_sym_unsafe] = ACTIONS(4436), - [anon_sym_static] = ACTIONS(4436), - [anon_sym_LBRACK] = ACTIONS(4438), - [anon_sym_LPAREN] = ACTIONS(4438), - [anon_sym_event] = ACTIONS(4436), - [anon_sym_namespace] = ACTIONS(4436), - [anon_sym_class] = ACTIONS(4436), - [anon_sym_ref] = ACTIONS(4436), - [anon_sym_struct] = ACTIONS(4436), - [anon_sym_enum] = ACTIONS(4436), - [anon_sym_RBRACE] = ACTIONS(4438), - [anon_sym_interface] = ACTIONS(4436), - [anon_sym_delegate] = ACTIONS(4436), - [anon_sym_record] = ACTIONS(4436), - [anon_sym_abstract] = ACTIONS(4436), - [anon_sym_async] = ACTIONS(4436), - [anon_sym_const] = ACTIONS(4436), - [anon_sym_file] = ACTIONS(4436), - [anon_sym_fixed] = ACTIONS(4436), - [anon_sym_internal] = ACTIONS(4436), - [anon_sym_new] = ACTIONS(4436), - [anon_sym_override] = ACTIONS(4436), - [anon_sym_partial] = ACTIONS(4436), - [anon_sym_private] = ACTIONS(4436), - [anon_sym_protected] = ACTIONS(4436), - [anon_sym_public] = ACTIONS(4436), - [anon_sym_readonly] = ACTIONS(4436), - [anon_sym_required] = ACTIONS(4436), - [anon_sym_sealed] = ACTIONS(4436), - [anon_sym_virtual] = ACTIONS(4436), - [anon_sym_volatile] = ACTIONS(4436), - [anon_sym_where] = ACTIONS(4436), - [anon_sym_notnull] = ACTIONS(4436), - [anon_sym_unmanaged] = ACTIONS(4436), - [anon_sym_TILDE] = ACTIONS(4438), - [anon_sym_implicit] = ACTIONS(4436), - [anon_sym_explicit] = ACTIONS(4436), - [anon_sym_scoped] = ACTIONS(4436), - [anon_sym_var] = ACTIONS(4436), - [sym_predefined_type] = ACTIONS(4436), - [anon_sym_yield] = ACTIONS(4436), - [anon_sym_when] = ACTIONS(4436), - [anon_sym_from] = ACTIONS(4436), - [anon_sym_into] = ACTIONS(4436), - [anon_sym_join] = ACTIONS(4436), - [anon_sym_on] = ACTIONS(4436), - [anon_sym_equals] = ACTIONS(4436), - [anon_sym_let] = ACTIONS(4436), - [anon_sym_orderby] = ACTIONS(4436), - [anon_sym_ascending] = ACTIONS(4436), - [anon_sym_descending] = ACTIONS(4436), - [anon_sym_group] = ACTIONS(4436), - [anon_sym_by] = ACTIONS(4436), - [anon_sym_select] = ACTIONS(4436), - [aux_sym_preproc_if_token1] = ACTIONS(4438), - [aux_sym_preproc_if_token3] = ACTIONS(4438), - [aux_sym_preproc_else_token1] = ACTIONS(4438), - [aux_sym_preproc_elif_token1] = ACTIONS(4438), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_file] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_notnull] = ACTIONS(3711), + [anon_sym_unmanaged] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_scoped] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(3711), + [sym_discard] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_orderby] = ACTIONS(3711), + [anon_sym_ascending] = ACTIONS(3711), + [anon_sym_descending] = ACTIONS(3711), + [anon_sym_group] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3722), }, [2715] = { [sym_preproc_region] = STATE(2715), @@ -448344,79 +448379,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2715), [sym_preproc_define] = STATE(2715), [sym_preproc_undef] = STATE(2715), - [sym__identifier_token] = ACTIONS(4156), - [anon_sym_alias] = ACTIONS(4156), - [anon_sym_global] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_file] = ACTIONS(4156), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_notnull] = ACTIONS(4156), - [anon_sym_unmanaged] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_scoped] = ACTIONS(4156), - [anon_sym_var] = ACTIONS(4156), - [anon_sym_yield] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_when] = ACTIONS(4156), - [sym_discard] = ACTIONS(4156), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4156), - [anon_sym_or] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_from] = ACTIONS(4156), - [anon_sym_into] = ACTIONS(4156), - [anon_sym_join] = ACTIONS(4156), - [anon_sym_on] = ACTIONS(4156), - [anon_sym_equals] = ACTIONS(4156), - [anon_sym_let] = ACTIONS(4156), - [anon_sym_orderby] = ACTIONS(4156), - [anon_sym_ascending] = ACTIONS(4156), - [anon_sym_descending] = ACTIONS(4156), - [anon_sym_group] = ACTIONS(4156), - [anon_sym_by] = ACTIONS(4156), - [anon_sym_select] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_is] = ACTIONS(4156), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4156), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4158), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, [2716] = { [sym_preproc_region] = STATE(2716), @@ -448428,69 +448463,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2716), [sym_preproc_define] = STATE(2716), [sym_preproc_undef] = STATE(2716), - [sym__identifier_token] = ACTIONS(4440), - [anon_sym_extern] = ACTIONS(4440), - [anon_sym_alias] = ACTIONS(4440), - [anon_sym_global] = ACTIONS(4440), - [anon_sym_using] = ACTIONS(4440), - [anon_sym_unsafe] = ACTIONS(4440), - [anon_sym_static] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym_event] = ACTIONS(4440), - [anon_sym_namespace] = ACTIONS(4440), - [anon_sym_class] = ACTIONS(4440), - [anon_sym_ref] = ACTIONS(4440), - [anon_sym_struct] = ACTIONS(4440), - [anon_sym_enum] = ACTIONS(4440), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_interface] = ACTIONS(4440), - [anon_sym_delegate] = ACTIONS(4440), - [anon_sym_record] = ACTIONS(4440), - [anon_sym_abstract] = ACTIONS(4440), - [anon_sym_async] = ACTIONS(4440), - [anon_sym_const] = ACTIONS(4440), - [anon_sym_file] = ACTIONS(4440), - [anon_sym_fixed] = ACTIONS(4440), - [anon_sym_internal] = ACTIONS(4440), - [anon_sym_new] = ACTIONS(4440), - [anon_sym_override] = ACTIONS(4440), - [anon_sym_partial] = ACTIONS(4440), - [anon_sym_private] = ACTIONS(4440), - [anon_sym_protected] = ACTIONS(4440), - [anon_sym_public] = ACTIONS(4440), - [anon_sym_readonly] = ACTIONS(4440), - [anon_sym_required] = ACTIONS(4440), - [anon_sym_sealed] = ACTIONS(4440), - [anon_sym_virtual] = ACTIONS(4440), - [anon_sym_volatile] = ACTIONS(4440), - [anon_sym_where] = ACTIONS(4440), - [anon_sym_notnull] = ACTIONS(4440), - [anon_sym_unmanaged] = ACTIONS(4440), - [anon_sym_TILDE] = ACTIONS(4442), - [anon_sym_implicit] = ACTIONS(4440), - [anon_sym_explicit] = ACTIONS(4440), - [anon_sym_scoped] = ACTIONS(4440), - [anon_sym_var] = ACTIONS(4440), - [sym_predefined_type] = ACTIONS(4440), - [anon_sym_yield] = ACTIONS(4440), - [anon_sym_when] = ACTIONS(4440), - [anon_sym_from] = ACTIONS(4440), - [anon_sym_into] = ACTIONS(4440), - [anon_sym_join] = ACTIONS(4440), - [anon_sym_on] = ACTIONS(4440), - [anon_sym_equals] = ACTIONS(4440), - [anon_sym_let] = ACTIONS(4440), - [anon_sym_orderby] = ACTIONS(4440), - [anon_sym_ascending] = ACTIONS(4440), - [anon_sym_descending] = ACTIONS(4440), - [anon_sym_group] = ACTIONS(4440), - [anon_sym_by] = ACTIONS(4440), - [anon_sym_select] = ACTIONS(4440), - [aux_sym_preproc_if_token1] = ACTIONS(4442), - [aux_sym_preproc_if_token3] = ACTIONS(4442), - [aux_sym_preproc_else_token1] = ACTIONS(4442), - [aux_sym_preproc_elif_token1] = ACTIONS(4442), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), + }, + [2717] = { + [sym_preproc_region] = STATE(2717), + [sym_preproc_endregion] = STATE(2717), + [sym_preproc_line] = STATE(2717), + [sym_preproc_pragma] = STATE(2717), + [sym_preproc_nullable] = STATE(2717), + [sym_preproc_error] = STATE(2717), + [sym_preproc_warning] = STATE(2717), + [sym_preproc_define] = STATE(2717), + [sym_preproc_undef] = STATE(2717), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), + }, + [2718] = { + [sym_preproc_region] = STATE(2718), + [sym_preproc_endregion] = STATE(2718), + [sym_preproc_line] = STATE(2718), + [sym_preproc_pragma] = STATE(2718), + [sym_preproc_nullable] = STATE(2718), + [sym_preproc_error] = STATE(2718), + [sym_preproc_warning] = STATE(2718), + [sym_preproc_define] = STATE(2718), + [sym_preproc_undef] = STATE(2718), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4300), + [anon_sym_GT] = ACTIONS(4300), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_SLASH] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4300), + [anon_sym_GT_GT] = ACTIONS(4300), + [anon_sym_GT_GT_GT] = ACTIONS(4300), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_QMARK_QMARK] = ACTIONS(4300), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [anon_sym_with] = ACTIONS(4297), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448502,79 +448705,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2717] = { - [sym_preproc_region] = STATE(2717), - [sym_preproc_endregion] = STATE(2717), - [sym_preproc_line] = STATE(2717), - [sym_preproc_pragma] = STATE(2717), - [sym_preproc_nullable] = STATE(2717), - [sym_preproc_error] = STATE(2717), - [sym_preproc_warning] = STATE(2717), - [sym_preproc_define] = STATE(2717), - [sym_preproc_undef] = STATE(2717), - [sym__identifier_token] = ACTIONS(4444), - [anon_sym_extern] = ACTIONS(4444), - [anon_sym_alias] = ACTIONS(4444), - [anon_sym_global] = ACTIONS(4444), - [anon_sym_using] = ACTIONS(4444), - [anon_sym_unsafe] = ACTIONS(4444), - [anon_sym_static] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_event] = ACTIONS(4444), - [anon_sym_namespace] = ACTIONS(4444), - [anon_sym_class] = ACTIONS(4444), - [anon_sym_ref] = ACTIONS(4444), - [anon_sym_struct] = ACTIONS(4444), - [anon_sym_enum] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_interface] = ACTIONS(4444), - [anon_sym_delegate] = ACTIONS(4444), - [anon_sym_record] = ACTIONS(4444), - [anon_sym_abstract] = ACTIONS(4444), - [anon_sym_async] = ACTIONS(4444), - [anon_sym_const] = ACTIONS(4444), - [anon_sym_file] = ACTIONS(4444), - [anon_sym_fixed] = ACTIONS(4444), - [anon_sym_internal] = ACTIONS(4444), - [anon_sym_new] = ACTIONS(4444), - [anon_sym_override] = ACTIONS(4444), - [anon_sym_partial] = ACTIONS(4444), - [anon_sym_private] = ACTIONS(4444), - [anon_sym_protected] = ACTIONS(4444), - [anon_sym_public] = ACTIONS(4444), - [anon_sym_readonly] = ACTIONS(4444), - [anon_sym_required] = ACTIONS(4444), - [anon_sym_sealed] = ACTIONS(4444), - [anon_sym_virtual] = ACTIONS(4444), - [anon_sym_volatile] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(4444), - [anon_sym_notnull] = ACTIONS(4444), - [anon_sym_unmanaged] = ACTIONS(4444), - [anon_sym_TILDE] = ACTIONS(4446), - [anon_sym_implicit] = ACTIONS(4444), - [anon_sym_explicit] = ACTIONS(4444), - [anon_sym_scoped] = ACTIONS(4444), - [anon_sym_var] = ACTIONS(4444), - [sym_predefined_type] = ACTIONS(4444), - [anon_sym_yield] = ACTIONS(4444), - [anon_sym_when] = ACTIONS(4444), - [anon_sym_from] = ACTIONS(4444), - [anon_sym_into] = ACTIONS(4444), - [anon_sym_join] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_let] = ACTIONS(4444), - [anon_sym_orderby] = ACTIONS(4444), - [anon_sym_ascending] = ACTIONS(4444), - [anon_sym_descending] = ACTIONS(4444), - [anon_sym_group] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4444), - [anon_sym_select] = ACTIONS(4444), - [aux_sym_preproc_if_token1] = ACTIONS(4446), - [aux_sym_preproc_if_token3] = ACTIONS(4446), - [aux_sym_preproc_else_token1] = ACTIONS(4446), - [aux_sym_preproc_elif_token1] = ACTIONS(4446), + [2719] = { + [sym_preproc_region] = STATE(2719), + [sym_preproc_endregion] = STATE(2719), + [sym_preproc_line] = STATE(2719), + [sym_preproc_pragma] = STATE(2719), + [sym_preproc_nullable] = STATE(2719), + [sym_preproc_error] = STATE(2719), + [sym_preproc_warning] = STATE(2719), + [sym_preproc_define] = STATE(2719), + [sym_preproc_undef] = STATE(2719), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), + }, + [2720] = { + [sym_preproc_region] = STATE(2720), + [sym_preproc_endregion] = STATE(2720), + [sym_preproc_line] = STATE(2720), + [sym_preproc_pragma] = STATE(2720), + [sym_preproc_nullable] = STATE(2720), + [sym_preproc_error] = STATE(2720), + [sym_preproc_warning] = STATE(2720), + [sym_preproc_define] = STATE(2720), + [sym_preproc_undef] = STATE(2720), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_in] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_EQ_GT] = ACTIONS(4225), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_when] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_on] = ACTIONS(4225), + [anon_sym_equals] = ACTIONS(4225), + [anon_sym_by] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [aux_sym_preproc_if_token3] = ACTIONS(4225), + [aux_sym_preproc_else_token1] = ACTIONS(4225), + [aux_sym_preproc_elif_token1] = ACTIONS(4225), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448586,16 +448873,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2718] = { - [sym_preproc_region] = STATE(2718), - [sym_preproc_endregion] = STATE(2718), - [sym_preproc_line] = STATE(2718), - [sym_preproc_pragma] = STATE(2718), - [sym_preproc_nullable] = STATE(2718), - [sym_preproc_error] = STATE(2718), - [sym_preproc_warning] = STATE(2718), - [sym_preproc_define] = STATE(2718), - [sym_preproc_undef] = STATE(2718), + [2721] = { + [sym_preproc_region] = STATE(2721), + [sym_preproc_endregion] = STATE(2721), + [sym_preproc_line] = STATE(2721), + [sym_preproc_pragma] = STATE(2721), + [sym_preproc_nullable] = STATE(2721), + [sym_preproc_error] = STATE(2721), + [sym_preproc_warning] = STATE(2721), + [sym_preproc_define] = STATE(2721), + [sym_preproc_undef] = STATE(2721), [sym__identifier_token] = ACTIONS(4142), [anon_sym_alias] = ACTIONS(4142), [anon_sym_global] = ACTIONS(4142), @@ -448670,263 +448957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(4144), }, - [2719] = { - [sym_preproc_region] = STATE(2719), - [sym_preproc_endregion] = STATE(2719), - [sym_preproc_line] = STATE(2719), - [sym_preproc_pragma] = STATE(2719), - [sym_preproc_nullable] = STATE(2719), - [sym_preproc_error] = STATE(2719), - [sym_preproc_warning] = STATE(2719), - [sym_preproc_define] = STATE(2719), - [sym_preproc_undef] = STATE(2719), - [sym__identifier_token] = ACTIONS(4448), - [anon_sym_extern] = ACTIONS(4448), - [anon_sym_alias] = ACTIONS(4448), - [anon_sym_global] = ACTIONS(4448), - [anon_sym_using] = ACTIONS(4448), - [anon_sym_unsafe] = ACTIONS(4448), - [anon_sym_static] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_event] = ACTIONS(4448), - [anon_sym_namespace] = ACTIONS(4448), - [anon_sym_class] = ACTIONS(4448), - [anon_sym_ref] = ACTIONS(4448), - [anon_sym_struct] = ACTIONS(4448), - [anon_sym_enum] = ACTIONS(4448), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_interface] = ACTIONS(4448), - [anon_sym_delegate] = ACTIONS(4448), - [anon_sym_record] = ACTIONS(4448), - [anon_sym_abstract] = ACTIONS(4448), - [anon_sym_async] = ACTIONS(4448), - [anon_sym_const] = ACTIONS(4448), - [anon_sym_file] = ACTIONS(4448), - [anon_sym_fixed] = ACTIONS(4448), - [anon_sym_internal] = ACTIONS(4448), - [anon_sym_new] = ACTIONS(4448), - [anon_sym_override] = ACTIONS(4448), - [anon_sym_partial] = ACTIONS(4448), - [anon_sym_private] = ACTIONS(4448), - [anon_sym_protected] = ACTIONS(4448), - [anon_sym_public] = ACTIONS(4448), - [anon_sym_readonly] = ACTIONS(4448), - [anon_sym_required] = ACTIONS(4448), - [anon_sym_sealed] = ACTIONS(4448), - [anon_sym_virtual] = ACTIONS(4448), - [anon_sym_volatile] = ACTIONS(4448), - [anon_sym_where] = ACTIONS(4448), - [anon_sym_notnull] = ACTIONS(4448), - [anon_sym_unmanaged] = ACTIONS(4448), - [anon_sym_TILDE] = ACTIONS(4450), - [anon_sym_implicit] = ACTIONS(4448), - [anon_sym_explicit] = ACTIONS(4448), - [anon_sym_scoped] = ACTIONS(4448), - [anon_sym_var] = ACTIONS(4448), - [sym_predefined_type] = ACTIONS(4448), - [anon_sym_yield] = ACTIONS(4448), - [anon_sym_when] = ACTIONS(4448), - [anon_sym_from] = ACTIONS(4448), - [anon_sym_into] = ACTIONS(4448), - [anon_sym_join] = ACTIONS(4448), - [anon_sym_on] = ACTIONS(4448), - [anon_sym_equals] = ACTIONS(4448), - [anon_sym_let] = ACTIONS(4448), - [anon_sym_orderby] = ACTIONS(4448), - [anon_sym_ascending] = ACTIONS(4448), - [anon_sym_descending] = ACTIONS(4448), - [anon_sym_group] = ACTIONS(4448), - [anon_sym_by] = ACTIONS(4448), - [anon_sym_select] = ACTIONS(4448), - [aux_sym_preproc_if_token1] = ACTIONS(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2720] = { - [sym_preproc_region] = STATE(2720), - [sym_preproc_endregion] = STATE(2720), - [sym_preproc_line] = STATE(2720), - [sym_preproc_pragma] = STATE(2720), - [sym_preproc_nullable] = STATE(2720), - [sym_preproc_error] = STATE(2720), - [sym_preproc_warning] = STATE(2720), - [sym_preproc_define] = STATE(2720), - [sym_preproc_undef] = STATE(2720), - [sym__identifier_token] = ACTIONS(4452), - [anon_sym_extern] = ACTIONS(4452), - [anon_sym_alias] = ACTIONS(4452), - [anon_sym_global] = ACTIONS(4452), - [anon_sym_using] = ACTIONS(4452), - [anon_sym_unsafe] = ACTIONS(4452), - [anon_sym_static] = ACTIONS(4452), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_event] = ACTIONS(4452), - [anon_sym_namespace] = ACTIONS(4452), - [anon_sym_class] = ACTIONS(4452), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_struct] = ACTIONS(4452), - [anon_sym_enum] = ACTIONS(4452), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_interface] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(4452), - [anon_sym_record] = ACTIONS(4452), - [anon_sym_abstract] = ACTIONS(4452), - [anon_sym_async] = ACTIONS(4452), - [anon_sym_const] = ACTIONS(4452), - [anon_sym_file] = ACTIONS(4452), - [anon_sym_fixed] = ACTIONS(4452), - [anon_sym_internal] = ACTIONS(4452), - [anon_sym_new] = ACTIONS(4452), - [anon_sym_override] = ACTIONS(4452), - [anon_sym_partial] = ACTIONS(4452), - [anon_sym_private] = ACTIONS(4452), - [anon_sym_protected] = ACTIONS(4452), - [anon_sym_public] = ACTIONS(4452), - [anon_sym_readonly] = ACTIONS(4452), - [anon_sym_required] = ACTIONS(4452), - [anon_sym_sealed] = ACTIONS(4452), - [anon_sym_virtual] = ACTIONS(4452), - [anon_sym_volatile] = ACTIONS(4452), - [anon_sym_where] = ACTIONS(4452), - [anon_sym_notnull] = ACTIONS(4452), - [anon_sym_unmanaged] = ACTIONS(4452), - [anon_sym_TILDE] = ACTIONS(4454), - [anon_sym_implicit] = ACTIONS(4452), - [anon_sym_explicit] = ACTIONS(4452), - [anon_sym_scoped] = ACTIONS(4452), - [anon_sym_var] = ACTIONS(4452), - [sym_predefined_type] = ACTIONS(4452), - [anon_sym_yield] = ACTIONS(4452), - [anon_sym_when] = ACTIONS(4452), - [anon_sym_from] = ACTIONS(4452), - [anon_sym_into] = ACTIONS(4452), - [anon_sym_join] = ACTIONS(4452), - [anon_sym_on] = ACTIONS(4452), - [anon_sym_equals] = ACTIONS(4452), - [anon_sym_let] = ACTIONS(4452), - [anon_sym_orderby] = ACTIONS(4452), - [anon_sym_ascending] = ACTIONS(4452), - [anon_sym_descending] = ACTIONS(4452), - [anon_sym_group] = ACTIONS(4452), - [anon_sym_by] = ACTIONS(4452), - [anon_sym_select] = ACTIONS(4452), - [aux_sym_preproc_if_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token3] = ACTIONS(4454), - [aux_sym_preproc_else_token1] = ACTIONS(4454), - [aux_sym_preproc_elif_token1] = ACTIONS(4454), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2721] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2721), - [sym_preproc_endregion] = STATE(2721), - [sym_preproc_line] = STATE(2721), - [sym_preproc_pragma] = STATE(2721), - [sym_preproc_nullable] = STATE(2721), - [sym_preproc_error] = STATE(2721), - [sym_preproc_warning] = STATE(2721), - [sym_preproc_define] = STATE(2721), - [sym_preproc_undef] = STATE(2721), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3971), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2722] = { - [sym__variable_designation] = STATE(3358), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2722), [sym_preproc_endregion] = STATE(2722), [sym_preproc_line] = STATE(2722), @@ -448936,65 +448967,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2722), [sym_preproc_define] = STATE(2722), [sym_preproc_undef] = STATE(2722), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3935), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4425), + [anon_sym_extern] = ACTIONS(4425), + [anon_sym_alias] = ACTIONS(4425), + [anon_sym_global] = ACTIONS(4425), + [anon_sym_using] = ACTIONS(4425), + [anon_sym_unsafe] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_LPAREN] = ACTIONS(4427), + [anon_sym_event] = ACTIONS(4425), + [anon_sym_namespace] = ACTIONS(4425), + [anon_sym_class] = ACTIONS(4425), + [anon_sym_ref] = ACTIONS(4425), + [anon_sym_struct] = ACTIONS(4425), + [anon_sym_enum] = ACTIONS(4425), + [anon_sym_RBRACE] = ACTIONS(4427), + [anon_sym_interface] = ACTIONS(4425), + [anon_sym_delegate] = ACTIONS(4425), + [anon_sym_record] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_async] = ACTIONS(4425), + [anon_sym_const] = ACTIONS(4425), + [anon_sym_file] = ACTIONS(4425), + [anon_sym_fixed] = ACTIONS(4425), + [anon_sym_internal] = ACTIONS(4425), + [anon_sym_new] = ACTIONS(4425), + [anon_sym_override] = ACTIONS(4425), + [anon_sym_partial] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_protected] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4425), + [anon_sym_required] = ACTIONS(4425), + [anon_sym_sealed] = ACTIONS(4425), + [anon_sym_virtual] = ACTIONS(4425), + [anon_sym_volatile] = ACTIONS(4425), + [anon_sym_where] = ACTIONS(4425), + [anon_sym_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_implicit] = ACTIONS(4425), + [anon_sym_explicit] = ACTIONS(4425), + [anon_sym_scoped] = ACTIONS(4425), + [anon_sym_var] = ACTIONS(4425), + [sym_predefined_type] = ACTIONS(4425), + [anon_sym_yield] = ACTIONS(4425), + [anon_sym_when] = ACTIONS(4425), + [anon_sym_from] = ACTIONS(4425), + [anon_sym_into] = ACTIONS(4425), + [anon_sym_join] = ACTIONS(4425), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_orderby] = ACTIONS(4425), + [anon_sym_ascending] = ACTIONS(4425), + [anon_sym_descending] = ACTIONS(4425), + [anon_sym_group] = ACTIONS(4425), + [anon_sym_by] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4425), + [aux_sym_preproc_if_token1] = ACTIONS(4427), + [aux_sym_preproc_if_token3] = ACTIONS(4427), + [aux_sym_preproc_else_token1] = ACTIONS(4427), + [aux_sym_preproc_elif_token1] = ACTIONS(4427), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449007,10 +449042,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2723] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2723), [sym_preproc_endregion] = STATE(2723), [sym_preproc_line] = STATE(2723), @@ -449020,65 +449051,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2723), [sym_preproc_define] = STATE(2723), [sym_preproc_undef] = STATE(2723), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3935), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4429), + [anon_sym_extern] = ACTIONS(4429), + [anon_sym_alias] = ACTIONS(4429), + [anon_sym_global] = ACTIONS(4429), + [anon_sym_using] = ACTIONS(4429), + [anon_sym_unsafe] = ACTIONS(4429), + [anon_sym_static] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_event] = ACTIONS(4429), + [anon_sym_namespace] = ACTIONS(4429), + [anon_sym_class] = ACTIONS(4429), + [anon_sym_ref] = ACTIONS(4429), + [anon_sym_struct] = ACTIONS(4429), + [anon_sym_enum] = ACTIONS(4429), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_interface] = ACTIONS(4429), + [anon_sym_delegate] = ACTIONS(4429), + [anon_sym_record] = ACTIONS(4429), + [anon_sym_abstract] = ACTIONS(4429), + [anon_sym_async] = ACTIONS(4429), + [anon_sym_const] = ACTIONS(4429), + [anon_sym_file] = ACTIONS(4429), + [anon_sym_fixed] = ACTIONS(4429), + [anon_sym_internal] = ACTIONS(4429), + [anon_sym_new] = ACTIONS(4429), + [anon_sym_override] = ACTIONS(4429), + [anon_sym_partial] = ACTIONS(4429), + [anon_sym_private] = ACTIONS(4429), + [anon_sym_protected] = ACTIONS(4429), + [anon_sym_public] = ACTIONS(4429), + [anon_sym_readonly] = ACTIONS(4429), + [anon_sym_required] = ACTIONS(4429), + [anon_sym_sealed] = ACTIONS(4429), + [anon_sym_virtual] = ACTIONS(4429), + [anon_sym_volatile] = ACTIONS(4429), + [anon_sym_where] = ACTIONS(4429), + [anon_sym_notnull] = ACTIONS(4429), + [anon_sym_unmanaged] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4431), + [anon_sym_implicit] = ACTIONS(4429), + [anon_sym_explicit] = ACTIONS(4429), + [anon_sym_scoped] = ACTIONS(4429), + [anon_sym_var] = ACTIONS(4429), + [sym_predefined_type] = ACTIONS(4429), + [anon_sym_yield] = ACTIONS(4429), + [anon_sym_when] = ACTIONS(4429), + [anon_sym_from] = ACTIONS(4429), + [anon_sym_into] = ACTIONS(4429), + [anon_sym_join] = ACTIONS(4429), + [anon_sym_on] = ACTIONS(4429), + [anon_sym_equals] = ACTIONS(4429), + [anon_sym_let] = ACTIONS(4429), + [anon_sym_orderby] = ACTIONS(4429), + [anon_sym_ascending] = ACTIONS(4429), + [anon_sym_descending] = ACTIONS(4429), + [anon_sym_group] = ACTIONS(4429), + [anon_sym_by] = ACTIONS(4429), + [anon_sym_select] = ACTIONS(4429), + [aux_sym_preproc_if_token1] = ACTIONS(4431), + [aux_sym_preproc_if_token3] = ACTIONS(4431), + [aux_sym_preproc_else_token1] = ACTIONS(4431), + [aux_sym_preproc_elif_token1] = ACTIONS(4431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449100,69 +449135,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2724), [sym_preproc_define] = STATE(2724), [sym_preproc_undef] = STATE(2724), - [sym__identifier_token] = ACTIONS(4456), - [anon_sym_extern] = ACTIONS(4456), - [anon_sym_alias] = ACTIONS(4456), - [anon_sym_global] = ACTIONS(4456), - [anon_sym_using] = ACTIONS(4456), - [anon_sym_unsafe] = ACTIONS(4456), - [anon_sym_static] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_event] = ACTIONS(4456), - [anon_sym_namespace] = ACTIONS(4456), - [anon_sym_class] = ACTIONS(4456), - [anon_sym_ref] = ACTIONS(4456), - [anon_sym_struct] = ACTIONS(4456), - [anon_sym_enum] = ACTIONS(4456), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_interface] = ACTIONS(4456), - [anon_sym_delegate] = ACTIONS(4456), - [anon_sym_record] = ACTIONS(4456), - [anon_sym_abstract] = ACTIONS(4456), - [anon_sym_async] = ACTIONS(4456), - [anon_sym_const] = ACTIONS(4456), - [anon_sym_file] = ACTIONS(4456), - [anon_sym_fixed] = ACTIONS(4456), - [anon_sym_internal] = ACTIONS(4456), - [anon_sym_new] = ACTIONS(4456), - [anon_sym_override] = ACTIONS(4456), - [anon_sym_partial] = ACTIONS(4456), - [anon_sym_private] = ACTIONS(4456), - [anon_sym_protected] = ACTIONS(4456), - [anon_sym_public] = ACTIONS(4456), - [anon_sym_readonly] = ACTIONS(4456), - [anon_sym_required] = ACTIONS(4456), - [anon_sym_sealed] = ACTIONS(4456), - [anon_sym_virtual] = ACTIONS(4456), - [anon_sym_volatile] = ACTIONS(4456), - [anon_sym_where] = ACTIONS(4456), - [anon_sym_notnull] = ACTIONS(4456), - [anon_sym_unmanaged] = ACTIONS(4456), - [anon_sym_TILDE] = ACTIONS(4458), - [anon_sym_implicit] = ACTIONS(4456), - [anon_sym_explicit] = ACTIONS(4456), - [anon_sym_scoped] = ACTIONS(4456), - [anon_sym_var] = ACTIONS(4456), - [sym_predefined_type] = ACTIONS(4456), - [anon_sym_yield] = ACTIONS(4456), - [anon_sym_when] = ACTIONS(4456), - [anon_sym_from] = ACTIONS(4456), - [anon_sym_into] = ACTIONS(4456), - [anon_sym_join] = ACTIONS(4456), - [anon_sym_on] = ACTIONS(4456), - [anon_sym_equals] = ACTIONS(4456), - [anon_sym_let] = ACTIONS(4456), - [anon_sym_orderby] = ACTIONS(4456), - [anon_sym_ascending] = ACTIONS(4456), - [anon_sym_descending] = ACTIONS(4456), - [anon_sym_group] = ACTIONS(4456), - [anon_sym_by] = ACTIONS(4456), - [anon_sym_select] = ACTIONS(4456), - [aux_sym_preproc_if_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token3] = ACTIONS(4458), - [aux_sym_preproc_else_token1] = ACTIONS(4458), - [aux_sym_preproc_elif_token1] = ACTIONS(4458), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_RBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_in] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_EQ_GT] = ACTIONS(4233), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_when] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4233), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_on] = ACTIONS(4233), + [anon_sym_equals] = ACTIONS(4233), + [anon_sym_by] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4233), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [aux_sym_preproc_if_token3] = ACTIONS(4233), + [aux_sym_preproc_else_token1] = ACTIONS(4233), + [aux_sym_preproc_elif_token1] = ACTIONS(4233), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449184,69 +449219,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2725), [sym_preproc_define] = STATE(2725), [sym_preproc_undef] = STATE(2725), - [sym__identifier_token] = ACTIONS(4460), - [anon_sym_extern] = ACTIONS(4460), - [anon_sym_alias] = ACTIONS(4460), - [anon_sym_global] = ACTIONS(4460), - [anon_sym_using] = ACTIONS(4460), - [anon_sym_unsafe] = ACTIONS(4460), - [anon_sym_static] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4462), - [anon_sym_event] = ACTIONS(4460), - [anon_sym_namespace] = ACTIONS(4460), - [anon_sym_class] = ACTIONS(4460), - [anon_sym_ref] = ACTIONS(4460), - [anon_sym_struct] = ACTIONS(4460), - [anon_sym_enum] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4462), - [anon_sym_interface] = ACTIONS(4460), - [anon_sym_delegate] = ACTIONS(4460), - [anon_sym_record] = ACTIONS(4460), - [anon_sym_abstract] = ACTIONS(4460), - [anon_sym_async] = ACTIONS(4460), - [anon_sym_const] = ACTIONS(4460), - [anon_sym_file] = ACTIONS(4460), - [anon_sym_fixed] = ACTIONS(4460), - [anon_sym_internal] = ACTIONS(4460), - [anon_sym_new] = ACTIONS(4460), - [anon_sym_override] = ACTIONS(4460), - [anon_sym_partial] = ACTIONS(4460), - [anon_sym_private] = ACTIONS(4460), - [anon_sym_protected] = ACTIONS(4460), - [anon_sym_public] = ACTIONS(4460), - [anon_sym_readonly] = ACTIONS(4460), - [anon_sym_required] = ACTIONS(4460), - [anon_sym_sealed] = ACTIONS(4460), - [anon_sym_virtual] = ACTIONS(4460), - [anon_sym_volatile] = ACTIONS(4460), - [anon_sym_where] = ACTIONS(4460), - [anon_sym_notnull] = ACTIONS(4460), - [anon_sym_unmanaged] = ACTIONS(4460), - [anon_sym_TILDE] = ACTIONS(4462), - [anon_sym_implicit] = ACTIONS(4460), - [anon_sym_explicit] = ACTIONS(4460), - [anon_sym_scoped] = ACTIONS(4460), - [anon_sym_var] = ACTIONS(4460), - [sym_predefined_type] = ACTIONS(4460), - [anon_sym_yield] = ACTIONS(4460), - [anon_sym_when] = ACTIONS(4460), - [anon_sym_from] = ACTIONS(4460), - [anon_sym_into] = ACTIONS(4460), - [anon_sym_join] = ACTIONS(4460), - [anon_sym_on] = ACTIONS(4460), - [anon_sym_equals] = ACTIONS(4460), - [anon_sym_let] = ACTIONS(4460), - [anon_sym_orderby] = ACTIONS(4460), - [anon_sym_ascending] = ACTIONS(4460), - [anon_sym_descending] = ACTIONS(4460), - [anon_sym_group] = ACTIONS(4460), - [anon_sym_by] = ACTIONS(4460), - [anon_sym_select] = ACTIONS(4460), - [aux_sym_preproc_if_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token3] = ACTIONS(4462), - [aux_sym_preproc_else_token1] = ACTIONS(4462), - [aux_sym_preproc_elif_token1] = ACTIONS(4462), + [sym__identifier_token] = ACTIONS(4433), + [anon_sym_extern] = ACTIONS(4433), + [anon_sym_alias] = ACTIONS(4433), + [anon_sym_global] = ACTIONS(4433), + [anon_sym_using] = ACTIONS(4433), + [anon_sym_unsafe] = ACTIONS(4433), + [anon_sym_static] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_event] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_class] = ACTIONS(4433), + [anon_sym_ref] = ACTIONS(4433), + [anon_sym_struct] = ACTIONS(4433), + [anon_sym_enum] = ACTIONS(4433), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_interface] = ACTIONS(4433), + [anon_sym_delegate] = ACTIONS(4433), + [anon_sym_record] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_async] = ACTIONS(4433), + [anon_sym_const] = ACTIONS(4433), + [anon_sym_file] = ACTIONS(4433), + [anon_sym_fixed] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_new] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_partial] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_readonly] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_virtual] = ACTIONS(4433), + [anon_sym_volatile] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_notnull] = ACTIONS(4433), + [anon_sym_unmanaged] = ACTIONS(4433), + [anon_sym_TILDE] = ACTIONS(4435), + [anon_sym_implicit] = ACTIONS(4433), + [anon_sym_explicit] = ACTIONS(4433), + [anon_sym_scoped] = ACTIONS(4433), + [anon_sym_var] = ACTIONS(4433), + [sym_predefined_type] = ACTIONS(4433), + [anon_sym_yield] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_into] = ACTIONS(4433), + [anon_sym_join] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_equals] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_orderby] = ACTIONS(4433), + [anon_sym_ascending] = ACTIONS(4433), + [anon_sym_descending] = ACTIONS(4433), + [anon_sym_group] = ACTIONS(4433), + [anon_sym_by] = ACTIONS(4433), + [anon_sym_select] = ACTIONS(4433), + [aux_sym_preproc_if_token1] = ACTIONS(4435), + [aux_sym_preproc_if_token3] = ACTIONS(4435), + [aux_sym_preproc_else_token1] = ACTIONS(4435), + [aux_sym_preproc_elif_token1] = ACTIONS(4435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449268,79 +449303,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2726), [sym_preproc_define] = STATE(2726), [sym_preproc_undef] = STATE(2726), - [sym__identifier_token] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_global] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_file] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_notnull] = ACTIONS(4043), - [anon_sym_unmanaged] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_scoped] = ACTIONS(4043), - [anon_sym_var] = ACTIONS(4043), - [anon_sym_yield] = ACTIONS(4043), - [anon_sym_switch] = ACTIONS(4043), - [anon_sym_when] = ACTIONS(4043), - [sym_discard] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4043), - [anon_sym_or] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_from] = ACTIONS(4043), - [anon_sym_into] = ACTIONS(4043), - [anon_sym_join] = ACTIONS(4043), - [anon_sym_on] = ACTIONS(4043), - [anon_sym_equals] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_orderby] = ACTIONS(4043), - [anon_sym_ascending] = ACTIONS(4043), - [anon_sym_descending] = ACTIONS(4043), - [anon_sym_group] = ACTIONS(4043), - [anon_sym_by] = ACTIONS(4043), - [anon_sym_select] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_is] = ACTIONS(4043), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4045), + [sym__identifier_token] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym_alias] = ACTIONS(4437), + [anon_sym_global] = ACTIONS(4437), + [anon_sym_using] = ACTIONS(4437), + [anon_sym_unsafe] = ACTIONS(4437), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4439), + [anon_sym_event] = ACTIONS(4437), + [anon_sym_namespace] = ACTIONS(4437), + [anon_sym_class] = ACTIONS(4437), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4439), + [anon_sym_interface] = ACTIONS(4437), + [anon_sym_delegate] = ACTIONS(4437), + [anon_sym_record] = ACTIONS(4437), + [anon_sym_abstract] = ACTIONS(4437), + [anon_sym_async] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_file] = ACTIONS(4437), + [anon_sym_fixed] = ACTIONS(4437), + [anon_sym_internal] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4437), + [anon_sym_override] = ACTIONS(4437), + [anon_sym_partial] = ACTIONS(4437), + [anon_sym_private] = ACTIONS(4437), + [anon_sym_protected] = ACTIONS(4437), + [anon_sym_public] = ACTIONS(4437), + [anon_sym_readonly] = ACTIONS(4437), + [anon_sym_required] = ACTIONS(4437), + [anon_sym_sealed] = ACTIONS(4437), + [anon_sym_virtual] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_where] = ACTIONS(4437), + [anon_sym_notnull] = ACTIONS(4437), + [anon_sym_unmanaged] = ACTIONS(4437), + [anon_sym_TILDE] = ACTIONS(4439), + [anon_sym_implicit] = ACTIONS(4437), + [anon_sym_explicit] = ACTIONS(4437), + [anon_sym_scoped] = ACTIONS(4437), + [anon_sym_var] = ACTIONS(4437), + [sym_predefined_type] = ACTIONS(4437), + [anon_sym_yield] = ACTIONS(4437), + [anon_sym_when] = ACTIONS(4437), + [anon_sym_from] = ACTIONS(4437), + [anon_sym_into] = ACTIONS(4437), + [anon_sym_join] = ACTIONS(4437), + [anon_sym_on] = ACTIONS(4437), + [anon_sym_equals] = ACTIONS(4437), + [anon_sym_let] = ACTIONS(4437), + [anon_sym_orderby] = ACTIONS(4437), + [anon_sym_ascending] = ACTIONS(4437), + [anon_sym_descending] = ACTIONS(4437), + [anon_sym_group] = ACTIONS(4437), + [anon_sym_by] = ACTIONS(4437), + [anon_sym_select] = ACTIONS(4437), + [aux_sym_preproc_if_token1] = ACTIONS(4439), + [aux_sym_preproc_if_token3] = ACTIONS(4439), + [aux_sym_preproc_else_token1] = ACTIONS(4439), + [aux_sym_preproc_elif_token1] = ACTIONS(4439), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2727] = { [sym_preproc_region] = STATE(2727), @@ -449352,79 +449387,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2727), [sym_preproc_define] = STATE(2727), [sym_preproc_undef] = STATE(2727), - [sym__identifier_token] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(4013), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4013), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4013), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4013), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_EQ_GT] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_when] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_on] = ACTIONS(4239), + [anon_sym_equals] = ACTIONS(4239), + [anon_sym_by] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), + [aux_sym_preproc_if_token3] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2728] = { [sym_preproc_region] = STATE(2728), @@ -449436,69 +449471,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2728), [sym_preproc_define] = STATE(2728), [sym_preproc_undef] = STATE(2728), - [sym__identifier_token] = ACTIONS(4464), - [anon_sym_extern] = ACTIONS(4464), - [anon_sym_alias] = ACTIONS(4464), - [anon_sym_global] = ACTIONS(4464), - [anon_sym_using] = ACTIONS(4464), - [anon_sym_unsafe] = ACTIONS(4464), - [anon_sym_static] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_event] = ACTIONS(4464), - [anon_sym_namespace] = ACTIONS(4464), - [anon_sym_class] = ACTIONS(4464), - [anon_sym_ref] = ACTIONS(4464), - [anon_sym_struct] = ACTIONS(4464), - [anon_sym_enum] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_interface] = ACTIONS(4464), - [anon_sym_delegate] = ACTIONS(4464), - [anon_sym_record] = ACTIONS(4464), - [anon_sym_abstract] = ACTIONS(4464), - [anon_sym_async] = ACTIONS(4464), - [anon_sym_const] = ACTIONS(4464), - [anon_sym_file] = ACTIONS(4464), - [anon_sym_fixed] = ACTIONS(4464), - [anon_sym_internal] = ACTIONS(4464), - [anon_sym_new] = ACTIONS(4464), - [anon_sym_override] = ACTIONS(4464), - [anon_sym_partial] = ACTIONS(4464), - [anon_sym_private] = ACTIONS(4464), - [anon_sym_protected] = ACTIONS(4464), - [anon_sym_public] = ACTIONS(4464), - [anon_sym_readonly] = ACTIONS(4464), - [anon_sym_required] = ACTIONS(4464), - [anon_sym_sealed] = ACTIONS(4464), - [anon_sym_virtual] = ACTIONS(4464), - [anon_sym_volatile] = ACTIONS(4464), - [anon_sym_where] = ACTIONS(4464), - [anon_sym_notnull] = ACTIONS(4464), - [anon_sym_unmanaged] = ACTIONS(4464), - [anon_sym_TILDE] = ACTIONS(4466), - [anon_sym_implicit] = ACTIONS(4464), - [anon_sym_explicit] = ACTIONS(4464), - [anon_sym_scoped] = ACTIONS(4464), - [anon_sym_var] = ACTIONS(4464), - [sym_predefined_type] = ACTIONS(4464), - [anon_sym_yield] = ACTIONS(4464), - [anon_sym_when] = ACTIONS(4464), - [anon_sym_from] = ACTIONS(4464), - [anon_sym_into] = ACTIONS(4464), - [anon_sym_join] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_let] = ACTIONS(4464), - [anon_sym_orderby] = ACTIONS(4464), - [anon_sym_ascending] = ACTIONS(4464), - [anon_sym_descending] = ACTIONS(4464), - [anon_sym_group] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4464), - [anon_sym_select] = ACTIONS(4464), - [aux_sym_preproc_if_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token3] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_RBRACK] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_in] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_EQ_GT] = ACTIONS(4213), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_when] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_on] = ACTIONS(4213), + [anon_sym_equals] = ACTIONS(4213), + [anon_sym_by] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4213), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [aux_sym_preproc_if_token3] = ACTIONS(4213), + [aux_sym_preproc_else_token1] = ACTIONS(4213), + [aux_sym_preproc_elif_token1] = ACTIONS(4213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449520,69 +449555,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2729), [sym_preproc_define] = STATE(2729), [sym_preproc_undef] = STATE(2729), - [sym__identifier_token] = ACTIONS(4468), - [anon_sym_extern] = ACTIONS(4468), - [anon_sym_alias] = ACTIONS(4468), - [anon_sym_global] = ACTIONS(4468), - [anon_sym_using] = ACTIONS(4468), - [anon_sym_unsafe] = ACTIONS(4468), - [anon_sym_static] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_event] = ACTIONS(4468), - [anon_sym_namespace] = ACTIONS(4468), - [anon_sym_class] = ACTIONS(4468), - [anon_sym_ref] = ACTIONS(4468), - [anon_sym_struct] = ACTIONS(4468), - [anon_sym_enum] = ACTIONS(4468), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_interface] = ACTIONS(4468), - [anon_sym_delegate] = ACTIONS(4468), - [anon_sym_record] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_async] = ACTIONS(4468), - [anon_sym_const] = ACTIONS(4468), - [anon_sym_file] = ACTIONS(4468), - [anon_sym_fixed] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_new] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_partial] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_readonly] = ACTIONS(4468), - [anon_sym_required] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_virtual] = ACTIONS(4468), - [anon_sym_volatile] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_notnull] = ACTIONS(4468), - [anon_sym_unmanaged] = ACTIONS(4468), - [anon_sym_TILDE] = ACTIONS(4470), - [anon_sym_implicit] = ACTIONS(4468), - [anon_sym_explicit] = ACTIONS(4468), - [anon_sym_scoped] = ACTIONS(4468), - [anon_sym_var] = ACTIONS(4468), - [sym_predefined_type] = ACTIONS(4468), - [anon_sym_yield] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_from] = ACTIONS(4468), - [anon_sym_into] = ACTIONS(4468), - [anon_sym_join] = ACTIONS(4468), - [anon_sym_on] = ACTIONS(4468), - [anon_sym_equals] = ACTIONS(4468), - [anon_sym_let] = ACTIONS(4468), - [anon_sym_orderby] = ACTIONS(4468), - [anon_sym_ascending] = ACTIONS(4468), - [anon_sym_descending] = ACTIONS(4468), - [anon_sym_group] = ACTIONS(4468), - [anon_sym_by] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [aux_sym_preproc_if_token1] = ACTIONS(4470), - [aux_sym_preproc_if_token3] = ACTIONS(4470), - [aux_sym_preproc_else_token1] = ACTIONS(4470), - [aux_sym_preproc_elif_token1] = ACTIONS(4470), + [sym__identifier_token] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_unsafe] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_event] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_ref] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_delegate] = ACTIONS(3165), + [anon_sym_record] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_file] = ACTIONS(3165), + [anon_sym_fixed] = ACTIONS(3165), + [anon_sym_internal] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_partial] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_required] = ACTIONS(3165), + [anon_sym_sealed] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_notnull] = ACTIONS(3165), + [anon_sym_unmanaged] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_implicit] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_scoped] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [sym_predefined_type] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_when] = ACTIONS(3165), + [anon_sym_from] = ACTIONS(3165), + [anon_sym_into] = ACTIONS(3165), + [anon_sym_join] = ACTIONS(3165), + [anon_sym_on] = ACTIONS(3165), + [anon_sym_equals] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_orderby] = ACTIONS(3165), + [anon_sym_ascending] = ACTIONS(3165), + [anon_sym_descending] = ACTIONS(3165), + [anon_sym_group] = ACTIONS(3165), + [anon_sym_by] = ACTIONS(3165), + [anon_sym_select] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449604,69 +449639,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2730), [sym_preproc_define] = STATE(2730), [sym_preproc_undef] = STATE(2730), - [sym__identifier_token] = ACTIONS(4472), - [anon_sym_extern] = ACTIONS(4472), - [anon_sym_alias] = ACTIONS(4472), - [anon_sym_global] = ACTIONS(4472), - [anon_sym_using] = ACTIONS(4472), - [anon_sym_unsafe] = ACTIONS(4472), - [anon_sym_static] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4474), - [anon_sym_LPAREN] = ACTIONS(4474), - [anon_sym_event] = ACTIONS(4472), - [anon_sym_namespace] = ACTIONS(4472), - [anon_sym_class] = ACTIONS(4472), - [anon_sym_ref] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_RBRACE] = ACTIONS(4474), - [anon_sym_interface] = ACTIONS(4472), - [anon_sym_delegate] = ACTIONS(4472), - [anon_sym_record] = ACTIONS(4472), - [anon_sym_abstract] = ACTIONS(4472), - [anon_sym_async] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_file] = ACTIONS(4472), - [anon_sym_fixed] = ACTIONS(4472), - [anon_sym_internal] = ACTIONS(4472), - [anon_sym_new] = ACTIONS(4472), - [anon_sym_override] = ACTIONS(4472), - [anon_sym_partial] = ACTIONS(4472), - [anon_sym_private] = ACTIONS(4472), - [anon_sym_protected] = ACTIONS(4472), - [anon_sym_public] = ACTIONS(4472), - [anon_sym_readonly] = ACTIONS(4472), - [anon_sym_required] = ACTIONS(4472), - [anon_sym_sealed] = ACTIONS(4472), - [anon_sym_virtual] = ACTIONS(4472), - [anon_sym_volatile] = ACTIONS(4472), - [anon_sym_where] = ACTIONS(4472), - [anon_sym_notnull] = ACTIONS(4472), - [anon_sym_unmanaged] = ACTIONS(4472), - [anon_sym_TILDE] = ACTIONS(4474), - [anon_sym_implicit] = ACTIONS(4472), - [anon_sym_explicit] = ACTIONS(4472), - [anon_sym_scoped] = ACTIONS(4472), - [anon_sym_var] = ACTIONS(4472), - [sym_predefined_type] = ACTIONS(4472), - [anon_sym_yield] = ACTIONS(4472), - [anon_sym_when] = ACTIONS(4472), - [anon_sym_from] = ACTIONS(4472), - [anon_sym_into] = ACTIONS(4472), - [anon_sym_join] = ACTIONS(4472), - [anon_sym_on] = ACTIONS(4472), - [anon_sym_equals] = ACTIONS(4472), - [anon_sym_let] = ACTIONS(4472), - [anon_sym_orderby] = ACTIONS(4472), - [anon_sym_ascending] = ACTIONS(4472), - [anon_sym_descending] = ACTIONS(4472), - [anon_sym_group] = ACTIONS(4472), - [anon_sym_by] = ACTIONS(4472), - [anon_sym_select] = ACTIONS(4472), - [aux_sym_preproc_if_token1] = ACTIONS(4474), - [aux_sym_preproc_if_token3] = ACTIONS(4474), - [aux_sym_preproc_else_token1] = ACTIONS(4474), - [aux_sym_preproc_elif_token1] = ACTIONS(4474), + [sym__identifier_token] = ACTIONS(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_unsafe] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_event] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_ref] = ACTIONS(3427), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_delegate] = ACTIONS(3427), + [anon_sym_record] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_file] = ACTIONS(3427), + [anon_sym_fixed] = ACTIONS(3427), + [anon_sym_internal] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_partial] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_required] = ACTIONS(3427), + [anon_sym_sealed] = ACTIONS(3427), + [anon_sym_virtual] = ACTIONS(3427), + [anon_sym_volatile] = ACTIONS(3427), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_notnull] = ACTIONS(3427), + [anon_sym_unmanaged] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_implicit] = ACTIONS(3427), + [anon_sym_explicit] = ACTIONS(3427), + [anon_sym_scoped] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [sym_predefined_type] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_into] = ACTIONS(3427), + [anon_sym_join] = ACTIONS(3427), + [anon_sym_on] = ACTIONS(3427), + [anon_sym_equals] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_orderby] = ACTIONS(3427), + [anon_sym_ascending] = ACTIONS(3427), + [anon_sym_descending] = ACTIONS(3427), + [anon_sym_group] = ACTIONS(3427), + [anon_sym_by] = ACTIONS(3427), + [anon_sym_select] = ACTIONS(3427), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token3] = ACTIONS(3429), + [aux_sym_preproc_else_token1] = ACTIONS(3429), + [aux_sym_preproc_elif_token1] = ACTIONS(3429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449688,69 +449723,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2731), [sym_preproc_define] = STATE(2731), [sym_preproc_undef] = STATE(2731), - [sym__identifier_token] = ACTIONS(4476), - [anon_sym_extern] = ACTIONS(4476), - [anon_sym_alias] = ACTIONS(4476), - [anon_sym_global] = ACTIONS(4476), - [anon_sym_using] = ACTIONS(4476), - [anon_sym_unsafe] = ACTIONS(4476), - [anon_sym_static] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4478), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_event] = ACTIONS(4476), - [anon_sym_namespace] = ACTIONS(4476), - [anon_sym_class] = ACTIONS(4476), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_RBRACE] = ACTIONS(4478), - [anon_sym_interface] = ACTIONS(4476), - [anon_sym_delegate] = ACTIONS(4476), - [anon_sym_record] = ACTIONS(4476), - [anon_sym_abstract] = ACTIONS(4476), - [anon_sym_async] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_file] = ACTIONS(4476), - [anon_sym_fixed] = ACTIONS(4476), - [anon_sym_internal] = ACTIONS(4476), - [anon_sym_new] = ACTIONS(4476), - [anon_sym_override] = ACTIONS(4476), - [anon_sym_partial] = ACTIONS(4476), - [anon_sym_private] = ACTIONS(4476), - [anon_sym_protected] = ACTIONS(4476), - [anon_sym_public] = ACTIONS(4476), - [anon_sym_readonly] = ACTIONS(4476), - [anon_sym_required] = ACTIONS(4476), - [anon_sym_sealed] = ACTIONS(4476), - [anon_sym_virtual] = ACTIONS(4476), - [anon_sym_volatile] = ACTIONS(4476), - [anon_sym_where] = ACTIONS(4476), - [anon_sym_notnull] = ACTIONS(4476), - [anon_sym_unmanaged] = ACTIONS(4476), - [anon_sym_TILDE] = ACTIONS(4478), - [anon_sym_implicit] = ACTIONS(4476), - [anon_sym_explicit] = ACTIONS(4476), - [anon_sym_scoped] = ACTIONS(4476), - [anon_sym_var] = ACTIONS(4476), - [sym_predefined_type] = ACTIONS(4476), - [anon_sym_yield] = ACTIONS(4476), - [anon_sym_when] = ACTIONS(4476), - [anon_sym_from] = ACTIONS(4476), - [anon_sym_into] = ACTIONS(4476), - [anon_sym_join] = ACTIONS(4476), - [anon_sym_on] = ACTIONS(4476), - [anon_sym_equals] = ACTIONS(4476), - [anon_sym_let] = ACTIONS(4476), - [anon_sym_orderby] = ACTIONS(4476), - [anon_sym_ascending] = ACTIONS(4476), - [anon_sym_descending] = ACTIONS(4476), - [anon_sym_group] = ACTIONS(4476), - [anon_sym_by] = ACTIONS(4476), - [anon_sym_select] = ACTIONS(4476), - [aux_sym_preproc_if_token1] = ACTIONS(4478), - [aux_sym_preproc_if_token3] = ACTIONS(4478), - [aux_sym_preproc_else_token1] = ACTIONS(4478), - [aux_sym_preproc_elif_token1] = ACTIONS(4478), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_extern] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_unsafe] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_event] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_ref] = ACTIONS(3431), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_delegate] = ACTIONS(3431), + [anon_sym_record] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_fixed] = ACTIONS(3431), + [anon_sym_internal] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_partial] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_required] = ACTIONS(3431), + [anon_sym_sealed] = ACTIONS(3431), + [anon_sym_virtual] = ACTIONS(3431), + [anon_sym_volatile] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_implicit] = ACTIONS(3431), + [anon_sym_explicit] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [sym_predefined_type] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3431), + [anon_sym_join] = ACTIONS(3431), + [anon_sym_on] = ACTIONS(3431), + [anon_sym_equals] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_orderby] = ACTIONS(3431), + [anon_sym_ascending] = ACTIONS(3431), + [anon_sym_descending] = ACTIONS(3431), + [anon_sym_group] = ACTIONS(3431), + [anon_sym_by] = ACTIONS(3431), + [anon_sym_select] = ACTIONS(3431), + [aux_sym_preproc_if_token1] = ACTIONS(3433), + [aux_sym_preproc_if_token3] = ACTIONS(3433), + [aux_sym_preproc_else_token1] = ACTIONS(3433), + [aux_sym_preproc_elif_token1] = ACTIONS(3433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449763,10 +449798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2732] = { - [sym__variable_designation] = STATE(4192), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(2732), [sym_preproc_endregion] = STATE(2732), [sym_preproc_line] = STATE(2732), @@ -449776,75 +449807,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2732), [sym_preproc_define] = STATE(2732), [sym_preproc_undef] = STATE(2732), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4106), + [anon_sym_alias] = ACTIONS(4106), + [anon_sym_global] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_notnull] = ACTIONS(4106), + [anon_sym_unmanaged] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_scoped] = ACTIONS(4106), + [anon_sym_var] = ACTIONS(4106), + [anon_sym_yield] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [sym_discard] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4106), + [anon_sym_or] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_from] = ACTIONS(4106), + [anon_sym_into] = ACTIONS(4106), + [anon_sym_join] = ACTIONS(4106), + [anon_sym_on] = ACTIONS(4106), + [anon_sym_equals] = ACTIONS(4106), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_orderby] = ACTIONS(4106), + [anon_sym_ascending] = ACTIONS(4106), + [anon_sym_descending] = ACTIONS(4106), + [anon_sym_group] = ACTIONS(4106), + [anon_sym_by] = ACTIONS(4106), + [anon_sym_select] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4106), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4108), }, [2733] = { [sym_preproc_region] = STATE(2733), @@ -449856,69 +449891,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2733), [sym_preproc_define] = STATE(2733), [sym_preproc_undef] = STATE(2733), - [sym__identifier_token] = ACTIONS(4480), - [anon_sym_extern] = ACTIONS(4480), - [anon_sym_alias] = ACTIONS(4480), - [anon_sym_global] = ACTIONS(4480), - [anon_sym_using] = ACTIONS(4480), - [anon_sym_unsafe] = ACTIONS(4480), - [anon_sym_static] = ACTIONS(4480), - [anon_sym_LBRACK] = ACTIONS(4482), - [anon_sym_LPAREN] = ACTIONS(4482), - [anon_sym_event] = ACTIONS(4480), - [anon_sym_namespace] = ACTIONS(4480), - [anon_sym_class] = ACTIONS(4480), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_enum] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4482), - [anon_sym_interface] = ACTIONS(4480), - [anon_sym_delegate] = ACTIONS(4480), - [anon_sym_record] = ACTIONS(4480), - [anon_sym_abstract] = ACTIONS(4480), - [anon_sym_async] = ACTIONS(4480), - [anon_sym_const] = ACTIONS(4480), - [anon_sym_file] = ACTIONS(4480), - [anon_sym_fixed] = ACTIONS(4480), - [anon_sym_internal] = ACTIONS(4480), - [anon_sym_new] = ACTIONS(4480), - [anon_sym_override] = ACTIONS(4480), - [anon_sym_partial] = ACTIONS(4480), - [anon_sym_private] = ACTIONS(4480), - [anon_sym_protected] = ACTIONS(4480), - [anon_sym_public] = ACTIONS(4480), - [anon_sym_readonly] = ACTIONS(4480), - [anon_sym_required] = ACTIONS(4480), - [anon_sym_sealed] = ACTIONS(4480), - [anon_sym_virtual] = ACTIONS(4480), - [anon_sym_volatile] = ACTIONS(4480), - [anon_sym_where] = ACTIONS(4480), - [anon_sym_notnull] = ACTIONS(4480), - [anon_sym_unmanaged] = ACTIONS(4480), - [anon_sym_TILDE] = ACTIONS(4482), - [anon_sym_implicit] = ACTIONS(4480), - [anon_sym_explicit] = ACTIONS(4480), - [anon_sym_scoped] = ACTIONS(4480), - [anon_sym_var] = ACTIONS(4480), - [sym_predefined_type] = ACTIONS(4480), - [anon_sym_yield] = ACTIONS(4480), - [anon_sym_when] = ACTIONS(4480), - [anon_sym_from] = ACTIONS(4480), - [anon_sym_into] = ACTIONS(4480), - [anon_sym_join] = ACTIONS(4480), - [anon_sym_on] = ACTIONS(4480), - [anon_sym_equals] = ACTIONS(4480), - [anon_sym_let] = ACTIONS(4480), - [anon_sym_orderby] = ACTIONS(4480), - [anon_sym_ascending] = ACTIONS(4480), - [anon_sym_descending] = ACTIONS(4480), - [anon_sym_group] = ACTIONS(4480), - [anon_sym_by] = ACTIONS(4480), - [anon_sym_select] = ACTIONS(4480), - [aux_sym_preproc_if_token1] = ACTIONS(4482), - [aux_sym_preproc_if_token3] = ACTIONS(4482), - [aux_sym_preproc_else_token1] = ACTIONS(4482), - [aux_sym_preproc_elif_token1] = ACTIONS(4482), + [sym__identifier_token] = ACTIONS(4441), + [anon_sym_extern] = ACTIONS(4441), + [anon_sym_alias] = ACTIONS(4441), + [anon_sym_global] = ACTIONS(4441), + [anon_sym_using] = ACTIONS(4441), + [anon_sym_unsafe] = ACTIONS(4441), + [anon_sym_static] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_LPAREN] = ACTIONS(4443), + [anon_sym_event] = ACTIONS(4441), + [anon_sym_namespace] = ACTIONS(4441), + [anon_sym_class] = ACTIONS(4441), + [anon_sym_ref] = ACTIONS(4441), + [anon_sym_struct] = ACTIONS(4441), + [anon_sym_enum] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4443), + [anon_sym_interface] = ACTIONS(4441), + [anon_sym_delegate] = ACTIONS(4441), + [anon_sym_record] = ACTIONS(4441), + [anon_sym_abstract] = ACTIONS(4441), + [anon_sym_async] = ACTIONS(4441), + [anon_sym_const] = ACTIONS(4441), + [anon_sym_file] = ACTIONS(4441), + [anon_sym_fixed] = ACTIONS(4441), + [anon_sym_internal] = ACTIONS(4441), + [anon_sym_new] = ACTIONS(4441), + [anon_sym_override] = ACTIONS(4441), + [anon_sym_partial] = ACTIONS(4441), + [anon_sym_private] = ACTIONS(4441), + [anon_sym_protected] = ACTIONS(4441), + [anon_sym_public] = ACTIONS(4441), + [anon_sym_readonly] = ACTIONS(4441), + [anon_sym_required] = ACTIONS(4441), + [anon_sym_sealed] = ACTIONS(4441), + [anon_sym_virtual] = ACTIONS(4441), + [anon_sym_volatile] = ACTIONS(4441), + [anon_sym_where] = ACTIONS(4441), + [anon_sym_notnull] = ACTIONS(4441), + [anon_sym_unmanaged] = ACTIONS(4441), + [anon_sym_TILDE] = ACTIONS(4443), + [anon_sym_implicit] = ACTIONS(4441), + [anon_sym_explicit] = ACTIONS(4441), + [anon_sym_scoped] = ACTIONS(4441), + [anon_sym_var] = ACTIONS(4441), + [sym_predefined_type] = ACTIONS(4441), + [anon_sym_yield] = ACTIONS(4441), + [anon_sym_when] = ACTIONS(4441), + [anon_sym_from] = ACTIONS(4441), + [anon_sym_into] = ACTIONS(4441), + [anon_sym_join] = ACTIONS(4441), + [anon_sym_on] = ACTIONS(4441), + [anon_sym_equals] = ACTIONS(4441), + [anon_sym_let] = ACTIONS(4441), + [anon_sym_orderby] = ACTIONS(4441), + [anon_sym_ascending] = ACTIONS(4441), + [anon_sym_descending] = ACTIONS(4441), + [anon_sym_group] = ACTIONS(4441), + [anon_sym_by] = ACTIONS(4441), + [anon_sym_select] = ACTIONS(4441), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token3] = ACTIONS(4443), + [aux_sym_preproc_else_token1] = ACTIONS(4443), + [aux_sym_preproc_elif_token1] = ACTIONS(4443), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449940,69 +449975,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2734), [sym_preproc_define] = STATE(2734), [sym_preproc_undef] = STATE(2734), - [sym__identifier_token] = ACTIONS(4484), - [anon_sym_extern] = ACTIONS(4484), - [anon_sym_alias] = ACTIONS(4484), - [anon_sym_global] = ACTIONS(4484), - [anon_sym_using] = ACTIONS(4484), - [anon_sym_unsafe] = ACTIONS(4484), - [anon_sym_static] = ACTIONS(4484), - [anon_sym_LBRACK] = ACTIONS(4486), - [anon_sym_LPAREN] = ACTIONS(4486), - [anon_sym_event] = ACTIONS(4484), - [anon_sym_namespace] = ACTIONS(4484), - [anon_sym_class] = ACTIONS(4484), - [anon_sym_ref] = ACTIONS(4484), - [anon_sym_struct] = ACTIONS(4484), - [anon_sym_enum] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4486), - [anon_sym_interface] = ACTIONS(4484), - [anon_sym_delegate] = ACTIONS(4484), - [anon_sym_record] = ACTIONS(4484), - [anon_sym_abstract] = ACTIONS(4484), - [anon_sym_async] = ACTIONS(4484), - [anon_sym_const] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4484), - [anon_sym_fixed] = ACTIONS(4484), - [anon_sym_internal] = ACTIONS(4484), - [anon_sym_new] = ACTIONS(4484), - [anon_sym_override] = ACTIONS(4484), - [anon_sym_partial] = ACTIONS(4484), - [anon_sym_private] = ACTIONS(4484), - [anon_sym_protected] = ACTIONS(4484), - [anon_sym_public] = ACTIONS(4484), - [anon_sym_readonly] = ACTIONS(4484), - [anon_sym_required] = ACTIONS(4484), - [anon_sym_sealed] = ACTIONS(4484), - [anon_sym_virtual] = ACTIONS(4484), - [anon_sym_volatile] = ACTIONS(4484), - [anon_sym_where] = ACTIONS(4484), - [anon_sym_notnull] = ACTIONS(4484), - [anon_sym_unmanaged] = ACTIONS(4484), - [anon_sym_TILDE] = ACTIONS(4486), - [anon_sym_implicit] = ACTIONS(4484), - [anon_sym_explicit] = ACTIONS(4484), - [anon_sym_scoped] = ACTIONS(4484), - [anon_sym_var] = ACTIONS(4484), - [sym_predefined_type] = ACTIONS(4484), - [anon_sym_yield] = ACTIONS(4484), - [anon_sym_when] = ACTIONS(4484), - [anon_sym_from] = ACTIONS(4484), - [anon_sym_into] = ACTIONS(4484), - [anon_sym_join] = ACTIONS(4484), - [anon_sym_on] = ACTIONS(4484), - [anon_sym_equals] = ACTIONS(4484), - [anon_sym_let] = ACTIONS(4484), - [anon_sym_orderby] = ACTIONS(4484), - [anon_sym_ascending] = ACTIONS(4484), - [anon_sym_descending] = ACTIONS(4484), - [anon_sym_group] = ACTIONS(4484), - [anon_sym_by] = ACTIONS(4484), - [anon_sym_select] = ACTIONS(4484), - [aux_sym_preproc_if_token1] = ACTIONS(4486), - [aux_sym_preproc_if_token3] = ACTIONS(4486), - [aux_sym_preproc_else_token1] = ACTIONS(4486), - [aux_sym_preproc_elif_token1] = ACTIONS(4486), + [sym__identifier_token] = ACTIONS(4445), + [anon_sym_extern] = ACTIONS(4445), + [anon_sym_alias] = ACTIONS(4445), + [anon_sym_global] = ACTIONS(4445), + [anon_sym_using] = ACTIONS(4445), + [anon_sym_unsafe] = ACTIONS(4445), + [anon_sym_static] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_event] = ACTIONS(4445), + [anon_sym_namespace] = ACTIONS(4445), + [anon_sym_class] = ACTIONS(4445), + [anon_sym_ref] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_interface] = ACTIONS(4445), + [anon_sym_delegate] = ACTIONS(4445), + [anon_sym_record] = ACTIONS(4445), + [anon_sym_abstract] = ACTIONS(4445), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_file] = ACTIONS(4445), + [anon_sym_fixed] = ACTIONS(4445), + [anon_sym_internal] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4445), + [anon_sym_override] = ACTIONS(4445), + [anon_sym_partial] = ACTIONS(4445), + [anon_sym_private] = ACTIONS(4445), + [anon_sym_protected] = ACTIONS(4445), + [anon_sym_public] = ACTIONS(4445), + [anon_sym_readonly] = ACTIONS(4445), + [anon_sym_required] = ACTIONS(4445), + [anon_sym_sealed] = ACTIONS(4445), + [anon_sym_virtual] = ACTIONS(4445), + [anon_sym_volatile] = ACTIONS(4445), + [anon_sym_where] = ACTIONS(4445), + [anon_sym_notnull] = ACTIONS(4445), + [anon_sym_unmanaged] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4447), + [anon_sym_implicit] = ACTIONS(4445), + [anon_sym_explicit] = ACTIONS(4445), + [anon_sym_scoped] = ACTIONS(4445), + [anon_sym_var] = ACTIONS(4445), + [sym_predefined_type] = ACTIONS(4445), + [anon_sym_yield] = ACTIONS(4445), + [anon_sym_when] = ACTIONS(4445), + [anon_sym_from] = ACTIONS(4445), + [anon_sym_into] = ACTIONS(4445), + [anon_sym_join] = ACTIONS(4445), + [anon_sym_on] = ACTIONS(4445), + [anon_sym_equals] = ACTIONS(4445), + [anon_sym_let] = ACTIONS(4445), + [anon_sym_orderby] = ACTIONS(4445), + [anon_sym_ascending] = ACTIONS(4445), + [anon_sym_descending] = ACTIONS(4445), + [anon_sym_group] = ACTIONS(4445), + [anon_sym_by] = ACTIONS(4445), + [anon_sym_select] = ACTIONS(4445), + [aux_sym_preproc_if_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token3] = ACTIONS(4447), + [aux_sym_preproc_else_token1] = ACTIONS(4447), + [aux_sym_preproc_elif_token1] = ACTIONS(4447), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450024,69 +450059,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2735), [sym_preproc_define] = STATE(2735), [sym_preproc_undef] = STATE(2735), - [sym__identifier_token] = ACTIONS(4488), - [anon_sym_extern] = ACTIONS(4488), - [anon_sym_alias] = ACTIONS(4488), - [anon_sym_global] = ACTIONS(4488), - [anon_sym_using] = ACTIONS(4488), - [anon_sym_unsafe] = ACTIONS(4488), - [anon_sym_static] = ACTIONS(4488), - [anon_sym_LBRACK] = ACTIONS(4490), - [anon_sym_LPAREN] = ACTIONS(4490), - [anon_sym_event] = ACTIONS(4488), - [anon_sym_namespace] = ACTIONS(4488), - [anon_sym_class] = ACTIONS(4488), - [anon_sym_ref] = ACTIONS(4488), - [anon_sym_struct] = ACTIONS(4488), - [anon_sym_enum] = ACTIONS(4488), - [anon_sym_RBRACE] = ACTIONS(4490), - [anon_sym_interface] = ACTIONS(4488), - [anon_sym_delegate] = ACTIONS(4488), - [anon_sym_record] = ACTIONS(4488), - [anon_sym_abstract] = ACTIONS(4488), - [anon_sym_async] = ACTIONS(4488), - [anon_sym_const] = ACTIONS(4488), - [anon_sym_file] = ACTIONS(4488), - [anon_sym_fixed] = ACTIONS(4488), - [anon_sym_internal] = ACTIONS(4488), - [anon_sym_new] = ACTIONS(4488), - [anon_sym_override] = ACTIONS(4488), - [anon_sym_partial] = ACTIONS(4488), - [anon_sym_private] = ACTIONS(4488), - [anon_sym_protected] = ACTIONS(4488), - [anon_sym_public] = ACTIONS(4488), - [anon_sym_readonly] = ACTIONS(4488), - [anon_sym_required] = ACTIONS(4488), - [anon_sym_sealed] = ACTIONS(4488), - [anon_sym_virtual] = ACTIONS(4488), - [anon_sym_volatile] = ACTIONS(4488), - [anon_sym_where] = ACTIONS(4488), - [anon_sym_notnull] = ACTIONS(4488), - [anon_sym_unmanaged] = ACTIONS(4488), - [anon_sym_TILDE] = ACTIONS(4490), - [anon_sym_implicit] = ACTIONS(4488), - [anon_sym_explicit] = ACTIONS(4488), - [anon_sym_scoped] = ACTIONS(4488), - [anon_sym_var] = ACTIONS(4488), - [sym_predefined_type] = ACTIONS(4488), - [anon_sym_yield] = ACTIONS(4488), - [anon_sym_when] = ACTIONS(4488), - [anon_sym_from] = ACTIONS(4488), - [anon_sym_into] = ACTIONS(4488), - [anon_sym_join] = ACTIONS(4488), - [anon_sym_on] = ACTIONS(4488), - [anon_sym_equals] = ACTIONS(4488), - [anon_sym_let] = ACTIONS(4488), - [anon_sym_orderby] = ACTIONS(4488), - [anon_sym_ascending] = ACTIONS(4488), - [anon_sym_descending] = ACTIONS(4488), - [anon_sym_group] = ACTIONS(4488), - [anon_sym_by] = ACTIONS(4488), - [anon_sym_select] = ACTIONS(4488), - [aux_sym_preproc_if_token1] = ACTIONS(4490), - [aux_sym_preproc_if_token3] = ACTIONS(4490), - [aux_sym_preproc_else_token1] = ACTIONS(4490), - [aux_sym_preproc_elif_token1] = ACTIONS(4490), + [sym__identifier_token] = ACTIONS(4449), + [anon_sym_extern] = ACTIONS(4449), + [anon_sym_alias] = ACTIONS(4449), + [anon_sym_global] = ACTIONS(4449), + [anon_sym_using] = ACTIONS(4449), + [anon_sym_unsafe] = ACTIONS(4449), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4451), + [anon_sym_event] = ACTIONS(4449), + [anon_sym_namespace] = ACTIONS(4449), + [anon_sym_class] = ACTIONS(4449), + [anon_sym_ref] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4451), + [anon_sym_interface] = ACTIONS(4449), + [anon_sym_delegate] = ACTIONS(4449), + [anon_sym_record] = ACTIONS(4449), + [anon_sym_abstract] = ACTIONS(4449), + [anon_sym_async] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_file] = ACTIONS(4449), + [anon_sym_fixed] = ACTIONS(4449), + [anon_sym_internal] = ACTIONS(4449), + [anon_sym_new] = ACTIONS(4449), + [anon_sym_override] = ACTIONS(4449), + [anon_sym_partial] = ACTIONS(4449), + [anon_sym_private] = ACTIONS(4449), + [anon_sym_protected] = ACTIONS(4449), + [anon_sym_public] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4449), + [anon_sym_required] = ACTIONS(4449), + [anon_sym_sealed] = ACTIONS(4449), + [anon_sym_virtual] = ACTIONS(4449), + [anon_sym_volatile] = ACTIONS(4449), + [anon_sym_where] = ACTIONS(4449), + [anon_sym_notnull] = ACTIONS(4449), + [anon_sym_unmanaged] = ACTIONS(4449), + [anon_sym_TILDE] = ACTIONS(4451), + [anon_sym_implicit] = ACTIONS(4449), + [anon_sym_explicit] = ACTIONS(4449), + [anon_sym_scoped] = ACTIONS(4449), + [anon_sym_var] = ACTIONS(4449), + [sym_predefined_type] = ACTIONS(4449), + [anon_sym_yield] = ACTIONS(4449), + [anon_sym_when] = ACTIONS(4449), + [anon_sym_from] = ACTIONS(4449), + [anon_sym_into] = ACTIONS(4449), + [anon_sym_join] = ACTIONS(4449), + [anon_sym_on] = ACTIONS(4449), + [anon_sym_equals] = ACTIONS(4449), + [anon_sym_let] = ACTIONS(4449), + [anon_sym_orderby] = ACTIONS(4449), + [anon_sym_ascending] = ACTIONS(4449), + [anon_sym_descending] = ACTIONS(4449), + [anon_sym_group] = ACTIONS(4449), + [anon_sym_by] = ACTIONS(4449), + [anon_sym_select] = ACTIONS(4449), + [aux_sym_preproc_if_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token3] = ACTIONS(4451), + [aux_sym_preproc_else_token1] = ACTIONS(4451), + [aux_sym_preproc_elif_token1] = ACTIONS(4451), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450099,10 +450134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2736] = { - [sym__variable_designation] = STATE(3363), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2736), [sym_preproc_endregion] = STATE(2736), [sym_preproc_line] = STATE(2736), @@ -450112,65 +450143,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2736), [sym_preproc_define] = STATE(2736), [sym_preproc_undef] = STATE(2736), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3923), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4453), + [anon_sym_extern] = ACTIONS(4453), + [anon_sym_alias] = ACTIONS(4453), + [anon_sym_global] = ACTIONS(4453), + [anon_sym_using] = ACTIONS(4453), + [anon_sym_unsafe] = ACTIONS(4453), + [anon_sym_static] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_event] = ACTIONS(4453), + [anon_sym_namespace] = ACTIONS(4453), + [anon_sym_class] = ACTIONS(4453), + [anon_sym_ref] = ACTIONS(4453), + [anon_sym_struct] = ACTIONS(4453), + [anon_sym_enum] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_interface] = ACTIONS(4453), + [anon_sym_delegate] = ACTIONS(4453), + [anon_sym_record] = ACTIONS(4453), + [anon_sym_abstract] = ACTIONS(4453), + [anon_sym_async] = ACTIONS(4453), + [anon_sym_const] = ACTIONS(4453), + [anon_sym_file] = ACTIONS(4453), + [anon_sym_fixed] = ACTIONS(4453), + [anon_sym_internal] = ACTIONS(4453), + [anon_sym_new] = ACTIONS(4453), + [anon_sym_override] = ACTIONS(4453), + [anon_sym_partial] = ACTIONS(4453), + [anon_sym_private] = ACTIONS(4453), + [anon_sym_protected] = ACTIONS(4453), + [anon_sym_public] = ACTIONS(4453), + [anon_sym_readonly] = ACTIONS(4453), + [anon_sym_required] = ACTIONS(4453), + [anon_sym_sealed] = ACTIONS(4453), + [anon_sym_virtual] = ACTIONS(4453), + [anon_sym_volatile] = ACTIONS(4453), + [anon_sym_where] = ACTIONS(4453), + [anon_sym_notnull] = ACTIONS(4453), + [anon_sym_unmanaged] = ACTIONS(4453), + [anon_sym_TILDE] = ACTIONS(4455), + [anon_sym_implicit] = ACTIONS(4453), + [anon_sym_explicit] = ACTIONS(4453), + [anon_sym_scoped] = ACTIONS(4453), + [anon_sym_var] = ACTIONS(4453), + [sym_predefined_type] = ACTIONS(4453), + [anon_sym_yield] = ACTIONS(4453), + [anon_sym_when] = ACTIONS(4453), + [anon_sym_from] = ACTIONS(4453), + [anon_sym_into] = ACTIONS(4453), + [anon_sym_join] = ACTIONS(4453), + [anon_sym_on] = ACTIONS(4453), + [anon_sym_equals] = ACTIONS(4453), + [anon_sym_let] = ACTIONS(4453), + [anon_sym_orderby] = ACTIONS(4453), + [anon_sym_ascending] = ACTIONS(4453), + [anon_sym_descending] = ACTIONS(4453), + [anon_sym_group] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_select] = ACTIONS(4453), + [aux_sym_preproc_if_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token3] = ACTIONS(4455), + [aux_sym_preproc_else_token1] = ACTIONS(4455), + [aux_sym_preproc_elif_token1] = ACTIONS(4455), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450183,10 +450218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2737] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2737), [sym_preproc_endregion] = STATE(2737), [sym_preproc_line] = STATE(2737), @@ -450196,65 +450227,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2737), [sym_preproc_define] = STATE(2737), [sym_preproc_undef] = STATE(2737), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3999), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [sym__identifier_token] = ACTIONS(4119), + [anon_sym_alias] = ACTIONS(4119), + [anon_sym_global] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_file] = ACTIONS(4119), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_where] = ACTIONS(4119), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_notnull] = ACTIONS(4119), + [anon_sym_unmanaged] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_scoped] = ACTIONS(4119), + [anon_sym_var] = ACTIONS(4119), + [anon_sym_yield] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_when] = ACTIONS(4119), + [sym_discard] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4119), + [anon_sym_or] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_from] = ACTIONS(4119), + [anon_sym_into] = ACTIONS(4119), + [anon_sym_join] = ACTIONS(4119), + [anon_sym_on] = ACTIONS(4119), + [anon_sym_equals] = ACTIONS(4119), + [anon_sym_let] = ACTIONS(4119), + [anon_sym_orderby] = ACTIONS(4119), + [anon_sym_ascending] = ACTIONS(4119), + [anon_sym_descending] = ACTIONS(4119), + [anon_sym_group] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4119), + [anon_sym_select] = ACTIONS(4119), + [anon_sym_as] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4119), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4119), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450265,6 +450299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4121), }, [2738] = { [sym_preproc_region] = STATE(2738), @@ -450276,69 +450311,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2738), [sym_preproc_define] = STATE(2738), [sym_preproc_undef] = STATE(2738), - [sym__identifier_token] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3431), - [anon_sym_alias] = ACTIONS(3431), - [anon_sym_global] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_event] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_ref] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_delegate] = ACTIONS(3431), - [anon_sym_record] = ACTIONS(3431), - [anon_sym_abstract] = ACTIONS(3431), - [anon_sym_async] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_file] = ACTIONS(3431), - [anon_sym_fixed] = ACTIONS(3431), - [anon_sym_internal] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_partial] = ACTIONS(3431), - [anon_sym_private] = ACTIONS(3431), - [anon_sym_protected] = ACTIONS(3431), - [anon_sym_public] = ACTIONS(3431), - [anon_sym_readonly] = ACTIONS(3431), - [anon_sym_required] = ACTIONS(3431), - [anon_sym_sealed] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3431), - [anon_sym_volatile] = ACTIONS(3431), - [anon_sym_where] = ACTIONS(3431), - [anon_sym_notnull] = ACTIONS(3431), - [anon_sym_unmanaged] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_implicit] = ACTIONS(3431), - [anon_sym_explicit] = ACTIONS(3431), - [anon_sym_scoped] = ACTIONS(3431), - [anon_sym_var] = ACTIONS(3431), - [sym_predefined_type] = ACTIONS(3431), - [anon_sym_yield] = ACTIONS(3431), - [anon_sym_when] = ACTIONS(3431), - [anon_sym_from] = ACTIONS(3431), - [anon_sym_into] = ACTIONS(3431), - [anon_sym_join] = ACTIONS(3431), - [anon_sym_on] = ACTIONS(3431), - [anon_sym_equals] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3431), - [anon_sym_orderby] = ACTIONS(3431), - [anon_sym_ascending] = ACTIONS(3431), - [anon_sym_descending] = ACTIONS(3431), - [anon_sym_group] = ACTIONS(3431), - [anon_sym_by] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token3] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), + [sym__identifier_token] = ACTIONS(3697), + [anon_sym_alias] = ACTIONS(3697), + [anon_sym_global] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_file] = ACTIONS(3697), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_where] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_notnull] = ACTIONS(3697), + [anon_sym_unmanaged] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_scoped] = ACTIONS(3697), + [anon_sym_var] = ACTIONS(3697), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_switch] = ACTIONS(3697), + [anon_sym_when] = ACTIONS(3697), + [sym_discard] = ACTIONS(3697), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3697), + [anon_sym_into] = ACTIONS(3697), + [anon_sym_join] = ACTIONS(3697), + [anon_sym_on] = ACTIONS(3697), + [anon_sym_equals] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_orderby] = ACTIONS(3697), + [anon_sym_ascending] = ACTIONS(3697), + [anon_sym_descending] = ACTIONS(3697), + [anon_sym_group] = ACTIONS(3697), + [anon_sym_by] = ACTIONS(3697), + [anon_sym_select] = ACTIONS(3697), + [anon_sym_as] = ACTIONS(3697), + [anon_sym_is] = ACTIONS(3697), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450349,6 +450383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3699), }, [2739] = { [sym_preproc_region] = STATE(2739), @@ -450360,69 +450395,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2739), [sym_preproc_define] = STATE(2739), [sym_preproc_undef] = STATE(2739), - [sym__identifier_token] = ACTIONS(4492), - [anon_sym_extern] = ACTIONS(4492), - [anon_sym_alias] = ACTIONS(4492), - [anon_sym_global] = ACTIONS(4492), - [anon_sym_using] = ACTIONS(4492), - [anon_sym_unsafe] = ACTIONS(4492), - [anon_sym_static] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4494), - [anon_sym_event] = ACTIONS(4492), - [anon_sym_namespace] = ACTIONS(4492), - [anon_sym_class] = ACTIONS(4492), - [anon_sym_ref] = ACTIONS(4492), - [anon_sym_struct] = ACTIONS(4492), - [anon_sym_enum] = ACTIONS(4492), - [anon_sym_RBRACE] = ACTIONS(4494), - [anon_sym_interface] = ACTIONS(4492), - [anon_sym_delegate] = ACTIONS(4492), - [anon_sym_record] = ACTIONS(4492), - [anon_sym_abstract] = ACTIONS(4492), - [anon_sym_async] = ACTIONS(4492), - [anon_sym_const] = ACTIONS(4492), - [anon_sym_file] = ACTIONS(4492), - [anon_sym_fixed] = ACTIONS(4492), - [anon_sym_internal] = ACTIONS(4492), - [anon_sym_new] = ACTIONS(4492), - [anon_sym_override] = ACTIONS(4492), - [anon_sym_partial] = ACTIONS(4492), - [anon_sym_private] = ACTIONS(4492), - [anon_sym_protected] = ACTIONS(4492), - [anon_sym_public] = ACTIONS(4492), - [anon_sym_readonly] = ACTIONS(4492), - [anon_sym_required] = ACTIONS(4492), - [anon_sym_sealed] = ACTIONS(4492), - [anon_sym_virtual] = ACTIONS(4492), - [anon_sym_volatile] = ACTIONS(4492), - [anon_sym_where] = ACTIONS(4492), - [anon_sym_notnull] = ACTIONS(4492), - [anon_sym_unmanaged] = ACTIONS(4492), - [anon_sym_TILDE] = ACTIONS(4494), - [anon_sym_implicit] = ACTIONS(4492), - [anon_sym_explicit] = ACTIONS(4492), - [anon_sym_scoped] = ACTIONS(4492), - [anon_sym_var] = ACTIONS(4492), - [sym_predefined_type] = ACTIONS(4492), - [anon_sym_yield] = ACTIONS(4492), - [anon_sym_when] = ACTIONS(4492), - [anon_sym_from] = ACTIONS(4492), - [anon_sym_into] = ACTIONS(4492), - [anon_sym_join] = ACTIONS(4492), - [anon_sym_on] = ACTIONS(4492), - [anon_sym_equals] = ACTIONS(4492), - [anon_sym_let] = ACTIONS(4492), - [anon_sym_orderby] = ACTIONS(4492), - [anon_sym_ascending] = ACTIONS(4492), - [anon_sym_descending] = ACTIONS(4492), - [anon_sym_group] = ACTIONS(4492), - [anon_sym_by] = ACTIONS(4492), - [anon_sym_select] = ACTIONS(4492), - [aux_sym_preproc_if_token1] = ACTIONS(4494), - [aux_sym_preproc_if_token3] = ACTIONS(4494), - [aux_sym_preproc_else_token1] = ACTIONS(4494), - [aux_sym_preproc_elif_token1] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450444,69 +450479,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2740), [sym_preproc_define] = STATE(2740), [sym_preproc_undef] = STATE(2740), - [sym__identifier_token] = ACTIONS(4496), - [anon_sym_extern] = ACTIONS(4496), - [anon_sym_alias] = ACTIONS(4496), - [anon_sym_global] = ACTIONS(4496), - [anon_sym_using] = ACTIONS(4496), - [anon_sym_unsafe] = ACTIONS(4496), - [anon_sym_static] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4498), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_event] = ACTIONS(4496), - [anon_sym_namespace] = ACTIONS(4496), - [anon_sym_class] = ACTIONS(4496), - [anon_sym_ref] = ACTIONS(4496), - [anon_sym_struct] = ACTIONS(4496), - [anon_sym_enum] = ACTIONS(4496), - [anon_sym_RBRACE] = ACTIONS(4498), - [anon_sym_interface] = ACTIONS(4496), - [anon_sym_delegate] = ACTIONS(4496), - [anon_sym_record] = ACTIONS(4496), - [anon_sym_abstract] = ACTIONS(4496), - [anon_sym_async] = ACTIONS(4496), - [anon_sym_const] = ACTIONS(4496), - [anon_sym_file] = ACTIONS(4496), - [anon_sym_fixed] = ACTIONS(4496), - [anon_sym_internal] = ACTIONS(4496), - [anon_sym_new] = ACTIONS(4496), - [anon_sym_override] = ACTIONS(4496), - [anon_sym_partial] = ACTIONS(4496), - [anon_sym_private] = ACTIONS(4496), - [anon_sym_protected] = ACTIONS(4496), - [anon_sym_public] = ACTIONS(4496), - [anon_sym_readonly] = ACTIONS(4496), - [anon_sym_required] = ACTIONS(4496), - [anon_sym_sealed] = ACTIONS(4496), - [anon_sym_virtual] = ACTIONS(4496), - [anon_sym_volatile] = ACTIONS(4496), - [anon_sym_where] = ACTIONS(4496), - [anon_sym_notnull] = ACTIONS(4496), - [anon_sym_unmanaged] = ACTIONS(4496), - [anon_sym_TILDE] = ACTIONS(4498), - [anon_sym_implicit] = ACTIONS(4496), - [anon_sym_explicit] = ACTIONS(4496), - [anon_sym_scoped] = ACTIONS(4496), - [anon_sym_var] = ACTIONS(4496), - [sym_predefined_type] = ACTIONS(4496), - [anon_sym_yield] = ACTIONS(4496), - [anon_sym_when] = ACTIONS(4496), - [anon_sym_from] = ACTIONS(4496), - [anon_sym_into] = ACTIONS(4496), - [anon_sym_join] = ACTIONS(4496), - [anon_sym_on] = ACTIONS(4496), - [anon_sym_equals] = ACTIONS(4496), - [anon_sym_let] = ACTIONS(4496), - [anon_sym_orderby] = ACTIONS(4496), - [anon_sym_ascending] = ACTIONS(4496), - [anon_sym_descending] = ACTIONS(4496), - [anon_sym_group] = ACTIONS(4496), - [anon_sym_by] = ACTIONS(4496), - [anon_sym_select] = ACTIONS(4496), - [aux_sym_preproc_if_token1] = ACTIONS(4498), - [aux_sym_preproc_if_token3] = ACTIONS(4498), - [aux_sym_preproc_else_token1] = ACTIONS(4498), - [aux_sym_preproc_elif_token1] = ACTIONS(4498), + [sym__identifier_token] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4457), + [anon_sym_alias] = ACTIONS(4457), + [anon_sym_global] = ACTIONS(4457), + [anon_sym_using] = ACTIONS(4457), + [anon_sym_unsafe] = ACTIONS(4457), + [anon_sym_static] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_event] = ACTIONS(4457), + [anon_sym_namespace] = ACTIONS(4457), + [anon_sym_class] = ACTIONS(4457), + [anon_sym_ref] = ACTIONS(4457), + [anon_sym_struct] = ACTIONS(4457), + [anon_sym_enum] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_interface] = ACTIONS(4457), + [anon_sym_delegate] = ACTIONS(4457), + [anon_sym_record] = ACTIONS(4457), + [anon_sym_abstract] = ACTIONS(4457), + [anon_sym_async] = ACTIONS(4457), + [anon_sym_const] = ACTIONS(4457), + [anon_sym_file] = ACTIONS(4457), + [anon_sym_fixed] = ACTIONS(4457), + [anon_sym_internal] = ACTIONS(4457), + [anon_sym_new] = ACTIONS(4457), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_partial] = ACTIONS(4457), + [anon_sym_private] = ACTIONS(4457), + [anon_sym_protected] = ACTIONS(4457), + [anon_sym_public] = ACTIONS(4457), + [anon_sym_readonly] = ACTIONS(4457), + [anon_sym_required] = ACTIONS(4457), + [anon_sym_sealed] = ACTIONS(4457), + [anon_sym_virtual] = ACTIONS(4457), + [anon_sym_volatile] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_notnull] = ACTIONS(4457), + [anon_sym_unmanaged] = ACTIONS(4457), + [anon_sym_TILDE] = ACTIONS(4459), + [anon_sym_implicit] = ACTIONS(4457), + [anon_sym_explicit] = ACTIONS(4457), + [anon_sym_scoped] = ACTIONS(4457), + [anon_sym_var] = ACTIONS(4457), + [sym_predefined_type] = ACTIONS(4457), + [anon_sym_yield] = ACTIONS(4457), + [anon_sym_when] = ACTIONS(4457), + [anon_sym_from] = ACTIONS(4457), + [anon_sym_into] = ACTIONS(4457), + [anon_sym_join] = ACTIONS(4457), + [anon_sym_on] = ACTIONS(4457), + [anon_sym_equals] = ACTIONS(4457), + [anon_sym_let] = ACTIONS(4457), + [anon_sym_orderby] = ACTIONS(4457), + [anon_sym_ascending] = ACTIONS(4457), + [anon_sym_descending] = ACTIONS(4457), + [anon_sym_group] = ACTIONS(4457), + [anon_sym_by] = ACTIONS(4457), + [anon_sym_select] = ACTIONS(4457), + [aux_sym_preproc_if_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token3] = ACTIONS(4459), + [aux_sym_preproc_else_token1] = ACTIONS(4459), + [aux_sym_preproc_elif_token1] = ACTIONS(4459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450528,69 +450563,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2741), [sym_preproc_define] = STATE(2741), [sym_preproc_undef] = STATE(2741), - [sym__identifier_token] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym_alias] = ACTIONS(4500), - [anon_sym_global] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_unsafe] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4502), - [anon_sym_LPAREN] = ACTIONS(4502), - [anon_sym_event] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_ref] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_RBRACE] = ACTIONS(4502), - [anon_sym_interface] = ACTIONS(4500), - [anon_sym_delegate] = ACTIONS(4500), - [anon_sym_record] = ACTIONS(4500), - [anon_sym_abstract] = ACTIONS(4500), - [anon_sym_async] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_file] = ACTIONS(4500), - [anon_sym_fixed] = ACTIONS(4500), - [anon_sym_internal] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_override] = ACTIONS(4500), - [anon_sym_partial] = ACTIONS(4500), - [anon_sym_private] = ACTIONS(4500), - [anon_sym_protected] = ACTIONS(4500), - [anon_sym_public] = ACTIONS(4500), - [anon_sym_readonly] = ACTIONS(4500), - [anon_sym_required] = ACTIONS(4500), - [anon_sym_sealed] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_where] = ACTIONS(4500), - [anon_sym_notnull] = ACTIONS(4500), - [anon_sym_unmanaged] = ACTIONS(4500), - [anon_sym_TILDE] = ACTIONS(4502), - [anon_sym_implicit] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_scoped] = ACTIONS(4500), - [anon_sym_var] = ACTIONS(4500), - [sym_predefined_type] = ACTIONS(4500), - [anon_sym_yield] = ACTIONS(4500), - [anon_sym_when] = ACTIONS(4500), - [anon_sym_from] = ACTIONS(4500), - [anon_sym_into] = ACTIONS(4500), - [anon_sym_join] = ACTIONS(4500), - [anon_sym_on] = ACTIONS(4500), - [anon_sym_equals] = ACTIONS(4500), - [anon_sym_let] = ACTIONS(4500), - [anon_sym_orderby] = ACTIONS(4500), - [anon_sym_ascending] = ACTIONS(4500), - [anon_sym_descending] = ACTIONS(4500), - [anon_sym_group] = ACTIONS(4500), - [anon_sym_by] = ACTIONS(4500), - [anon_sym_select] = ACTIONS(4500), - [aux_sym_preproc_if_token1] = ACTIONS(4502), - [aux_sym_preproc_if_token3] = ACTIONS(4502), - [aux_sym_preproc_else_token1] = ACTIONS(4502), - [aux_sym_preproc_elif_token1] = ACTIONS(4502), + [sym__identifier_token] = ACTIONS(4146), + [anon_sym_alias] = ACTIONS(4146), + [anon_sym_global] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_file] = ACTIONS(4146), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4146), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_notnull] = ACTIONS(4146), + [anon_sym_unmanaged] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_scoped] = ACTIONS(4146), + [anon_sym_var] = ACTIONS(4146), + [anon_sym_yield] = ACTIONS(4146), + [anon_sym_switch] = ACTIONS(4146), + [anon_sym_when] = ACTIONS(4146), + [sym_discard] = ACTIONS(4146), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4146), + [anon_sym_or] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4148), + [anon_sym_from] = ACTIONS(4146), + [anon_sym_into] = ACTIONS(4146), + [anon_sym_join] = ACTIONS(4146), + [anon_sym_on] = ACTIONS(4146), + [anon_sym_equals] = ACTIONS(4146), + [anon_sym_let] = ACTIONS(4146), + [anon_sym_orderby] = ACTIONS(4146), + [anon_sym_ascending] = ACTIONS(4146), + [anon_sym_descending] = ACTIONS(4146), + [anon_sym_group] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4146), + [anon_sym_select] = ACTIONS(4146), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4146), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4146), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450601,6 +450635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4148), }, [2742] = { [sym_preproc_region] = STATE(2742), @@ -450612,79 +450647,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2742), [sym_preproc_define] = STATE(2742), [sym_preproc_undef] = STATE(2742), - [sym__identifier_token] = ACTIONS(4504), - [anon_sym_extern] = ACTIONS(4504), - [anon_sym_alias] = ACTIONS(4504), - [anon_sym_global] = ACTIONS(4504), - [anon_sym_using] = ACTIONS(4504), - [anon_sym_unsafe] = ACTIONS(4504), - [anon_sym_static] = ACTIONS(4504), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_event] = ACTIONS(4504), - [anon_sym_namespace] = ACTIONS(4504), - [anon_sym_class] = ACTIONS(4504), - [anon_sym_ref] = ACTIONS(4504), - [anon_sym_struct] = ACTIONS(4504), - [anon_sym_enum] = ACTIONS(4504), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_interface] = ACTIONS(4504), - [anon_sym_delegate] = ACTIONS(4504), - [anon_sym_record] = ACTIONS(4504), - [anon_sym_abstract] = ACTIONS(4504), - [anon_sym_async] = ACTIONS(4504), - [anon_sym_const] = ACTIONS(4504), - [anon_sym_file] = ACTIONS(4504), - [anon_sym_fixed] = ACTIONS(4504), - [anon_sym_internal] = ACTIONS(4504), - [anon_sym_new] = ACTIONS(4504), - [anon_sym_override] = ACTIONS(4504), - [anon_sym_partial] = ACTIONS(4504), - [anon_sym_private] = ACTIONS(4504), - [anon_sym_protected] = ACTIONS(4504), - [anon_sym_public] = ACTIONS(4504), - [anon_sym_readonly] = ACTIONS(4504), - [anon_sym_required] = ACTIONS(4504), - [anon_sym_sealed] = ACTIONS(4504), - [anon_sym_virtual] = ACTIONS(4504), - [anon_sym_volatile] = ACTIONS(4504), - [anon_sym_where] = ACTIONS(4504), - [anon_sym_notnull] = ACTIONS(4504), - [anon_sym_unmanaged] = ACTIONS(4504), - [anon_sym_TILDE] = ACTIONS(4506), - [anon_sym_implicit] = ACTIONS(4504), - [anon_sym_explicit] = ACTIONS(4504), - [anon_sym_scoped] = ACTIONS(4504), - [anon_sym_var] = ACTIONS(4504), - [sym_predefined_type] = ACTIONS(4504), - [anon_sym_yield] = ACTIONS(4504), - [anon_sym_when] = ACTIONS(4504), - [anon_sym_from] = ACTIONS(4504), - [anon_sym_into] = ACTIONS(4504), - [anon_sym_join] = ACTIONS(4504), - [anon_sym_on] = ACTIONS(4504), - [anon_sym_equals] = ACTIONS(4504), - [anon_sym_let] = ACTIONS(4504), - [anon_sym_orderby] = ACTIONS(4504), - [anon_sym_ascending] = ACTIONS(4504), - [anon_sym_descending] = ACTIONS(4504), - [anon_sym_group] = ACTIONS(4504), - [anon_sym_by] = ACTIONS(4504), - [anon_sym_select] = ACTIONS(4504), - [aux_sym_preproc_if_token1] = ACTIONS(4506), - [aux_sym_preproc_if_token3] = ACTIONS(4506), - [aux_sym_preproc_else_token1] = ACTIONS(4506), - [aux_sym_preproc_elif_token1] = ACTIONS(4506), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4150), + [anon_sym_alias] = ACTIONS(4150), + [anon_sym_global] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_file] = ACTIONS(4150), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_notnull] = ACTIONS(4150), + [anon_sym_unmanaged] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_scoped] = ACTIONS(4150), + [anon_sym_var] = ACTIONS(4150), + [anon_sym_yield] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [sym_discard] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4150), + [anon_sym_or] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4150), + [anon_sym_into] = ACTIONS(4150), + [anon_sym_join] = ACTIONS(4150), + [anon_sym_on] = ACTIONS(4150), + [anon_sym_equals] = ACTIONS(4150), + [anon_sym_let] = ACTIONS(4150), + [anon_sym_orderby] = ACTIONS(4150), + [anon_sym_ascending] = ACTIONS(4150), + [anon_sym_descending] = ACTIONS(4150), + [anon_sym_group] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4150), + [anon_sym_select] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4150), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4152), }, [2743] = { [sym_preproc_region] = STATE(2743), @@ -450696,69 +450731,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2743), [sym_preproc_define] = STATE(2743), [sym_preproc_undef] = STATE(2743), - [sym__identifier_token] = ACTIONS(4508), - [anon_sym_extern] = ACTIONS(4508), - [anon_sym_alias] = ACTIONS(4508), - [anon_sym_global] = ACTIONS(4508), - [anon_sym_using] = ACTIONS(4508), - [anon_sym_unsafe] = ACTIONS(4508), - [anon_sym_static] = ACTIONS(4508), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_event] = ACTIONS(4508), - [anon_sym_namespace] = ACTIONS(4508), - [anon_sym_class] = ACTIONS(4508), - [anon_sym_ref] = ACTIONS(4508), - [anon_sym_struct] = ACTIONS(4508), - [anon_sym_enum] = ACTIONS(4508), - [anon_sym_RBRACE] = ACTIONS(4510), - [anon_sym_interface] = ACTIONS(4508), - [anon_sym_delegate] = ACTIONS(4508), - [anon_sym_record] = ACTIONS(4508), - [anon_sym_abstract] = ACTIONS(4508), - [anon_sym_async] = ACTIONS(4508), - [anon_sym_const] = ACTIONS(4508), - [anon_sym_file] = ACTIONS(4508), - [anon_sym_fixed] = ACTIONS(4508), - [anon_sym_internal] = ACTIONS(4508), - [anon_sym_new] = ACTIONS(4508), - [anon_sym_override] = ACTIONS(4508), - [anon_sym_partial] = ACTIONS(4508), - [anon_sym_private] = ACTIONS(4508), - [anon_sym_protected] = ACTIONS(4508), - [anon_sym_public] = ACTIONS(4508), - [anon_sym_readonly] = ACTIONS(4508), - [anon_sym_required] = ACTIONS(4508), - [anon_sym_sealed] = ACTIONS(4508), - [anon_sym_virtual] = ACTIONS(4508), - [anon_sym_volatile] = ACTIONS(4508), - [anon_sym_where] = ACTIONS(4508), - [anon_sym_notnull] = ACTIONS(4508), - [anon_sym_unmanaged] = ACTIONS(4508), - [anon_sym_TILDE] = ACTIONS(4510), - [anon_sym_implicit] = ACTIONS(4508), - [anon_sym_explicit] = ACTIONS(4508), - [anon_sym_scoped] = ACTIONS(4508), - [anon_sym_var] = ACTIONS(4508), - [sym_predefined_type] = ACTIONS(4508), - [anon_sym_yield] = ACTIONS(4508), - [anon_sym_when] = ACTIONS(4508), - [anon_sym_from] = ACTIONS(4508), - [anon_sym_into] = ACTIONS(4508), - [anon_sym_join] = ACTIONS(4508), - [anon_sym_on] = ACTIONS(4508), - [anon_sym_equals] = ACTIONS(4508), - [anon_sym_let] = ACTIONS(4508), - [anon_sym_orderby] = ACTIONS(4508), - [anon_sym_ascending] = ACTIONS(4508), - [anon_sym_descending] = ACTIONS(4508), - [anon_sym_group] = ACTIONS(4508), - [anon_sym_by] = ACTIONS(4508), - [anon_sym_select] = ACTIONS(4508), - [aux_sym_preproc_if_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token3] = ACTIONS(4510), - [aux_sym_preproc_else_token1] = ACTIONS(4510), - [aux_sym_preproc_elif_token1] = ACTIONS(4510), + [sym__identifier_token] = ACTIONS(4461), + [anon_sym_extern] = ACTIONS(4461), + [anon_sym_alias] = ACTIONS(4461), + [anon_sym_global] = ACTIONS(4461), + [anon_sym_using] = ACTIONS(4461), + [anon_sym_unsafe] = ACTIONS(4461), + [anon_sym_static] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_event] = ACTIONS(4461), + [anon_sym_namespace] = ACTIONS(4461), + [anon_sym_class] = ACTIONS(4461), + [anon_sym_ref] = ACTIONS(4461), + [anon_sym_struct] = ACTIONS(4461), + [anon_sym_enum] = ACTIONS(4461), + [anon_sym_RBRACE] = ACTIONS(4463), + [anon_sym_interface] = ACTIONS(4461), + [anon_sym_delegate] = ACTIONS(4461), + [anon_sym_record] = ACTIONS(4461), + [anon_sym_abstract] = ACTIONS(4461), + [anon_sym_async] = ACTIONS(4461), + [anon_sym_const] = ACTIONS(4461), + [anon_sym_file] = ACTIONS(4461), + [anon_sym_fixed] = ACTIONS(4461), + [anon_sym_internal] = ACTIONS(4461), + [anon_sym_new] = ACTIONS(4461), + [anon_sym_override] = ACTIONS(4461), + [anon_sym_partial] = ACTIONS(4461), + [anon_sym_private] = ACTIONS(4461), + [anon_sym_protected] = ACTIONS(4461), + [anon_sym_public] = ACTIONS(4461), + [anon_sym_readonly] = ACTIONS(4461), + [anon_sym_required] = ACTIONS(4461), + [anon_sym_sealed] = ACTIONS(4461), + [anon_sym_virtual] = ACTIONS(4461), + [anon_sym_volatile] = ACTIONS(4461), + [anon_sym_where] = ACTIONS(4461), + [anon_sym_notnull] = ACTIONS(4461), + [anon_sym_unmanaged] = ACTIONS(4461), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_implicit] = ACTIONS(4461), + [anon_sym_explicit] = ACTIONS(4461), + [anon_sym_scoped] = ACTIONS(4461), + [anon_sym_var] = ACTIONS(4461), + [sym_predefined_type] = ACTIONS(4461), + [anon_sym_yield] = ACTIONS(4461), + [anon_sym_when] = ACTIONS(4461), + [anon_sym_from] = ACTIONS(4461), + [anon_sym_into] = ACTIONS(4461), + [anon_sym_join] = ACTIONS(4461), + [anon_sym_on] = ACTIONS(4461), + [anon_sym_equals] = ACTIONS(4461), + [anon_sym_let] = ACTIONS(4461), + [anon_sym_orderby] = ACTIONS(4461), + [anon_sym_ascending] = ACTIONS(4461), + [anon_sym_descending] = ACTIONS(4461), + [anon_sym_group] = ACTIONS(4461), + [anon_sym_by] = ACTIONS(4461), + [anon_sym_select] = ACTIONS(4461), + [aux_sym_preproc_if_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token3] = ACTIONS(4463), + [aux_sym_preproc_else_token1] = ACTIONS(4463), + [aux_sym_preproc_elif_token1] = ACTIONS(4463), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450771,10 +450806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2744] = { - [sym__variable_designation] = STATE(3358), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2744), [sym_preproc_endregion] = STATE(2744), [sym_preproc_line] = STATE(2744), @@ -450784,65 +450815,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2744), [sym_preproc_define] = STATE(2744), [sym_preproc_undef] = STATE(2744), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3935), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4465), + [anon_sym_extern] = ACTIONS(4465), + [anon_sym_alias] = ACTIONS(4465), + [anon_sym_global] = ACTIONS(4465), + [anon_sym_using] = ACTIONS(4465), + [anon_sym_unsafe] = ACTIONS(4465), + [anon_sym_static] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_event] = ACTIONS(4465), + [anon_sym_namespace] = ACTIONS(4465), + [anon_sym_class] = ACTIONS(4465), + [anon_sym_ref] = ACTIONS(4465), + [anon_sym_struct] = ACTIONS(4465), + [anon_sym_enum] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_interface] = ACTIONS(4465), + [anon_sym_delegate] = ACTIONS(4465), + [anon_sym_record] = ACTIONS(4465), + [anon_sym_abstract] = ACTIONS(4465), + [anon_sym_async] = ACTIONS(4465), + [anon_sym_const] = ACTIONS(4465), + [anon_sym_file] = ACTIONS(4465), + [anon_sym_fixed] = ACTIONS(4465), + [anon_sym_internal] = ACTIONS(4465), + [anon_sym_new] = ACTIONS(4465), + [anon_sym_override] = ACTIONS(4465), + [anon_sym_partial] = ACTIONS(4465), + [anon_sym_private] = ACTIONS(4465), + [anon_sym_protected] = ACTIONS(4465), + [anon_sym_public] = ACTIONS(4465), + [anon_sym_readonly] = ACTIONS(4465), + [anon_sym_required] = ACTIONS(4465), + [anon_sym_sealed] = ACTIONS(4465), + [anon_sym_virtual] = ACTIONS(4465), + [anon_sym_volatile] = ACTIONS(4465), + [anon_sym_where] = ACTIONS(4465), + [anon_sym_notnull] = ACTIONS(4465), + [anon_sym_unmanaged] = ACTIONS(4465), + [anon_sym_TILDE] = ACTIONS(4467), + [anon_sym_implicit] = ACTIONS(4465), + [anon_sym_explicit] = ACTIONS(4465), + [anon_sym_scoped] = ACTIONS(4465), + [anon_sym_var] = ACTIONS(4465), + [sym_predefined_type] = ACTIONS(4465), + [anon_sym_yield] = ACTIONS(4465), + [anon_sym_when] = ACTIONS(4465), + [anon_sym_from] = ACTIONS(4465), + [anon_sym_into] = ACTIONS(4465), + [anon_sym_join] = ACTIONS(4465), + [anon_sym_on] = ACTIONS(4465), + [anon_sym_equals] = ACTIONS(4465), + [anon_sym_let] = ACTIONS(4465), + [anon_sym_orderby] = ACTIONS(4465), + [anon_sym_ascending] = ACTIONS(4465), + [anon_sym_descending] = ACTIONS(4465), + [anon_sym_group] = ACTIONS(4465), + [anon_sym_by] = ACTIONS(4465), + [anon_sym_select] = ACTIONS(4465), + [aux_sym_preproc_if_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token3] = ACTIONS(4467), + [aux_sym_preproc_else_token1] = ACTIONS(4467), + [aux_sym_preproc_elif_token1] = ACTIONS(4467), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450864,69 +450899,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2745), [sym_preproc_define] = STATE(2745), [sym_preproc_undef] = STATE(2745), - [sym__identifier_token] = ACTIONS(4512), - [anon_sym_extern] = ACTIONS(4512), - [anon_sym_alias] = ACTIONS(4512), - [anon_sym_global] = ACTIONS(4512), - [anon_sym_using] = ACTIONS(4512), - [anon_sym_unsafe] = ACTIONS(4512), - [anon_sym_static] = ACTIONS(4512), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_event] = ACTIONS(4512), - [anon_sym_namespace] = ACTIONS(4512), - [anon_sym_class] = ACTIONS(4512), - [anon_sym_ref] = ACTIONS(4512), - [anon_sym_struct] = ACTIONS(4512), - [anon_sym_enum] = ACTIONS(4512), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_interface] = ACTIONS(4512), - [anon_sym_delegate] = ACTIONS(4512), - [anon_sym_record] = ACTIONS(4512), - [anon_sym_abstract] = ACTIONS(4512), - [anon_sym_async] = ACTIONS(4512), - [anon_sym_const] = ACTIONS(4512), - [anon_sym_file] = ACTIONS(4512), - [anon_sym_fixed] = ACTIONS(4512), - [anon_sym_internal] = ACTIONS(4512), - [anon_sym_new] = ACTIONS(4512), - [anon_sym_override] = ACTIONS(4512), - [anon_sym_partial] = ACTIONS(4512), - [anon_sym_private] = ACTIONS(4512), - [anon_sym_protected] = ACTIONS(4512), - [anon_sym_public] = ACTIONS(4512), - [anon_sym_readonly] = ACTIONS(4512), - [anon_sym_required] = ACTIONS(4512), - [anon_sym_sealed] = ACTIONS(4512), - [anon_sym_virtual] = ACTIONS(4512), - [anon_sym_volatile] = ACTIONS(4512), - [anon_sym_where] = ACTIONS(4512), - [anon_sym_notnull] = ACTIONS(4512), - [anon_sym_unmanaged] = ACTIONS(4512), - [anon_sym_TILDE] = ACTIONS(4514), - [anon_sym_implicit] = ACTIONS(4512), - [anon_sym_explicit] = ACTIONS(4512), - [anon_sym_scoped] = ACTIONS(4512), - [anon_sym_var] = ACTIONS(4512), - [sym_predefined_type] = ACTIONS(4512), - [anon_sym_yield] = ACTIONS(4512), - [anon_sym_when] = ACTIONS(4512), - [anon_sym_from] = ACTIONS(4512), - [anon_sym_into] = ACTIONS(4512), - [anon_sym_join] = ACTIONS(4512), - [anon_sym_on] = ACTIONS(4512), - [anon_sym_equals] = ACTIONS(4512), - [anon_sym_let] = ACTIONS(4512), - [anon_sym_orderby] = ACTIONS(4512), - [anon_sym_ascending] = ACTIONS(4512), - [anon_sym_descending] = ACTIONS(4512), - [anon_sym_group] = ACTIONS(4512), - [anon_sym_by] = ACTIONS(4512), - [anon_sym_select] = ACTIONS(4512), - [aux_sym_preproc_if_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token3] = ACTIONS(4514), - [aux_sym_preproc_else_token1] = ACTIONS(4514), - [aux_sym_preproc_elif_token1] = ACTIONS(4514), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_in] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_EQ_GT] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_when] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_on] = ACTIONS(4172), + [anon_sym_equals] = ACTIONS(4172), + [anon_sym_by] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), + [aux_sym_preproc_if_token3] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450948,85 +450983,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2746), [sym_preproc_define] = STATE(2746), [sym_preproc_undef] = STATE(2746), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4521), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4154), + [anon_sym_alias] = ACTIONS(4154), + [anon_sym_global] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_file] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_where] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_notnull] = ACTIONS(4154), + [anon_sym_unmanaged] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_scoped] = ACTIONS(4154), + [anon_sym_var] = ACTIONS(4154), + [anon_sym_yield] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_when] = ACTIONS(4154), + [sym_discard] = ACTIONS(4154), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4154), + [anon_sym_or] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_from] = ACTIONS(4154), + [anon_sym_into] = ACTIONS(4154), + [anon_sym_join] = ACTIONS(4154), + [anon_sym_on] = ACTIONS(4154), + [anon_sym_equals] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4154), + [anon_sym_orderby] = ACTIONS(4154), + [anon_sym_ascending] = ACTIONS(4154), + [anon_sym_descending] = ACTIONS(4154), + [anon_sym_group] = ACTIONS(4154), + [anon_sym_by] = ACTIONS(4154), + [anon_sym_select] = ACTIONS(4154), + [anon_sym_as] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4154), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4154), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4156), }, [2747] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), + [sym__variable_designation] = STATE(4186), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2747), [sym_preproc_endregion] = STATE(2747), [sym_preproc_line] = STATE(2747), @@ -451036,65 +451071,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2747), [sym_preproc_define] = STATE(2747), [sym_preproc_undef] = STATE(2747), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3923), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451116,68 +451151,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2748), [sym_preproc_define] = STATE(2748), [sym_preproc_undef] = STATE(2748), - [sym__identifier_token] = ACTIONS(4098), - [anon_sym_alias] = ACTIONS(4098), - [anon_sym_global] = ACTIONS(4098), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_file] = ACTIONS(4098), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_where] = ACTIONS(4098), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_notnull] = ACTIONS(4098), - [anon_sym_unmanaged] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_scoped] = ACTIONS(4098), - [anon_sym_var] = ACTIONS(4098), - [anon_sym_yield] = ACTIONS(4098), - [anon_sym_switch] = ACTIONS(4098), - [anon_sym_when] = ACTIONS(4098), - [sym_discard] = ACTIONS(4098), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4098), - [anon_sym_or] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_from] = ACTIONS(4098), - [anon_sym_into] = ACTIONS(4098), - [anon_sym_join] = ACTIONS(4098), - [anon_sym_on] = ACTIONS(4098), - [anon_sym_equals] = ACTIONS(4098), - [anon_sym_let] = ACTIONS(4098), - [anon_sym_orderby] = ACTIONS(4098), - [anon_sym_ascending] = ACTIONS(4098), - [anon_sym_descending] = ACTIONS(4098), - [anon_sym_group] = ACTIONS(4098), - [anon_sym_by] = ACTIONS(4098), - [anon_sym_select] = ACTIONS(4098), - [anon_sym_as] = ACTIONS(4098), - [anon_sym_is] = ACTIONS(4098), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4098), + [sym__identifier_token] = ACTIONS(4102), + [anon_sym_alias] = ACTIONS(4102), + [anon_sym_global] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [anon_sym_COMMA] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_file] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4102), + [anon_sym_GT] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_notnull] = ACTIONS(4102), + [anon_sym_unmanaged] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_SLASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_CARET] = ACTIONS(4104), + [anon_sym_PIPE] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_LT_LT] = ACTIONS(4104), + [anon_sym_GT_GT] = ACTIONS(4102), + [anon_sym_GT_GT_GT] = ACTIONS(4104), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_GT_EQ] = ACTIONS(4104), + [anon_sym_LT_EQ] = ACTIONS(4104), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_scoped] = ACTIONS(4102), + [anon_sym_var] = ACTIONS(4102), + [anon_sym_yield] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [sym_discard] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [anon_sym_and] = ACTIONS(4102), + [anon_sym_or] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_PIPE_PIPE] = ACTIONS(4104), + [anon_sym_QMARK_QMARK] = ACTIONS(4104), + [anon_sym_from] = ACTIONS(4102), + [anon_sym_into] = ACTIONS(4102), + [anon_sym_join] = ACTIONS(4102), + [anon_sym_on] = ACTIONS(4102), + [anon_sym_equals] = ACTIONS(4102), + [anon_sym_let] = ACTIONS(4102), + [anon_sym_orderby] = ACTIONS(4102), + [anon_sym_ascending] = ACTIONS(4102), + [anon_sym_descending] = ACTIONS(4102), + [anon_sym_group] = ACTIONS(4102), + [anon_sym_by] = ACTIONS(4102), + [anon_sym_select] = ACTIONS(4102), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4104), + [anon_sym_with] = ACTIONS(4102), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451188,13 +451223,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4100), + [sym_interpolation_close_brace] = ACTIONS(4104), }, [2749] = { - [sym__variable_designation] = STATE(3370), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2749), [sym_preproc_endregion] = STATE(2749), [sym_preproc_line] = STATE(2749), @@ -451204,65 +451235,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2749), [sym_preproc_define] = STATE(2749), [sym_preproc_undef] = STATE(2749), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3971), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(4469), + [anon_sym_extern] = ACTIONS(4469), + [anon_sym_alias] = ACTIONS(4469), + [anon_sym_global] = ACTIONS(4469), + [anon_sym_using] = ACTIONS(4469), + [anon_sym_unsafe] = ACTIONS(4469), + [anon_sym_static] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4471), + [anon_sym_event] = ACTIONS(4469), + [anon_sym_namespace] = ACTIONS(4469), + [anon_sym_class] = ACTIONS(4469), + [anon_sym_ref] = ACTIONS(4469), + [anon_sym_struct] = ACTIONS(4469), + [anon_sym_enum] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4471), + [anon_sym_interface] = ACTIONS(4469), + [anon_sym_delegate] = ACTIONS(4469), + [anon_sym_record] = ACTIONS(4469), + [anon_sym_abstract] = ACTIONS(4469), + [anon_sym_async] = ACTIONS(4469), + [anon_sym_const] = ACTIONS(4469), + [anon_sym_file] = ACTIONS(4469), + [anon_sym_fixed] = ACTIONS(4469), + [anon_sym_internal] = ACTIONS(4469), + [anon_sym_new] = ACTIONS(4469), + [anon_sym_override] = ACTIONS(4469), + [anon_sym_partial] = ACTIONS(4469), + [anon_sym_private] = ACTIONS(4469), + [anon_sym_protected] = ACTIONS(4469), + [anon_sym_public] = ACTIONS(4469), + [anon_sym_readonly] = ACTIONS(4469), + [anon_sym_required] = ACTIONS(4469), + [anon_sym_sealed] = ACTIONS(4469), + [anon_sym_virtual] = ACTIONS(4469), + [anon_sym_volatile] = ACTIONS(4469), + [anon_sym_where] = ACTIONS(4469), + [anon_sym_notnull] = ACTIONS(4469), + [anon_sym_unmanaged] = ACTIONS(4469), + [anon_sym_TILDE] = ACTIONS(4471), + [anon_sym_implicit] = ACTIONS(4469), + [anon_sym_explicit] = ACTIONS(4469), + [anon_sym_scoped] = ACTIONS(4469), + [anon_sym_var] = ACTIONS(4469), + [sym_predefined_type] = ACTIONS(4469), + [anon_sym_yield] = ACTIONS(4469), + [anon_sym_when] = ACTIONS(4469), + [anon_sym_from] = ACTIONS(4469), + [anon_sym_into] = ACTIONS(4469), + [anon_sym_join] = ACTIONS(4469), + [anon_sym_on] = ACTIONS(4469), + [anon_sym_equals] = ACTIONS(4469), + [anon_sym_let] = ACTIONS(4469), + [anon_sym_orderby] = ACTIONS(4469), + [anon_sym_ascending] = ACTIONS(4469), + [anon_sym_descending] = ACTIONS(4469), + [anon_sym_group] = ACTIONS(4469), + [anon_sym_by] = ACTIONS(4469), + [anon_sym_select] = ACTIONS(4469), + [aux_sym_preproc_if_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token3] = ACTIONS(4471), + [aux_sym_preproc_else_token1] = ACTIONS(4471), + [aux_sym_preproc_elif_token1] = ACTIONS(4471), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451284,152 +451319,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2750), [sym_preproc_define] = STATE(2750), [sym_preproc_undef] = STATE(2750), - [sym__identifier_token] = ACTIONS(3719), - [anon_sym_alias] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_notnull] = ACTIONS(3719), - [anon_sym_unmanaged] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_scoped] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(3719), - [sym_discard] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_orderby] = ACTIONS(3719), - [anon_sym_ascending] = ACTIONS(3719), - [anon_sym_descending] = ACTIONS(3719), - [anon_sym_group] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3721), - }, - [2751] = { - [sym_preproc_region] = STATE(2751), - [sym_preproc_endregion] = STATE(2751), - [sym_preproc_line] = STATE(2751), - [sym_preproc_pragma] = STATE(2751), - [sym_preproc_nullable] = STATE(2751), - [sym_preproc_error] = STATE(2751), - [sym_preproc_warning] = STATE(2751), - [sym_preproc_define] = STATE(2751), - [sym_preproc_undef] = STATE(2751), - [sym__identifier_token] = ACTIONS(4052), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_COLON] = ACTIONS(4054), - [anon_sym_COMMA] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_SLASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4054), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_GT_GT_GT] = ACTIONS(4054), - [anon_sym_EQ_EQ] = ACTIONS(4054), - [anon_sym_BANG_EQ] = ACTIONS(4054), - [anon_sym_GT_EQ] = ACTIONS(4054), - [anon_sym_LT_EQ] = ACTIONS(4054), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(4052), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4052), - [anon_sym_DOT_DOT] = ACTIONS(4054), - [anon_sym_and] = ACTIONS(4052), - [anon_sym_or] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4054), - [anon_sym_QMARK_QMARK] = ACTIONS(4054), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(4052), - [anon_sym_join] = ACTIONS(4052), - [anon_sym_on] = ACTIONS(4052), - [anon_sym_equals] = ACTIONS(4052), - [anon_sym_let] = ACTIONS(4052), - [anon_sym_orderby] = ACTIONS(4052), - [anon_sym_ascending] = ACTIONS(4052), - [anon_sym_descending] = ACTIONS(4052), - [anon_sym_group] = ACTIONS(4052), - [anon_sym_by] = ACTIONS(4052), - [anon_sym_select] = ACTIONS(4052), - [anon_sym_as] = ACTIONS(4052), - [anon_sym_is] = ACTIONS(4052), - [anon_sym_DASH_GT] = ACTIONS(4054), - [anon_sym_with] = ACTIONS(4052), + [sym__identifier_token] = ACTIONS(4473), + [anon_sym_extern] = ACTIONS(4473), + [anon_sym_alias] = ACTIONS(4473), + [anon_sym_global] = ACTIONS(4473), + [anon_sym_using] = ACTIONS(4473), + [anon_sym_unsafe] = ACTIONS(4473), + [anon_sym_static] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4475), + [anon_sym_event] = ACTIONS(4473), + [anon_sym_namespace] = ACTIONS(4473), + [anon_sym_class] = ACTIONS(4473), + [anon_sym_ref] = ACTIONS(4473), + [anon_sym_struct] = ACTIONS(4473), + [anon_sym_enum] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4475), + [anon_sym_interface] = ACTIONS(4473), + [anon_sym_delegate] = ACTIONS(4473), + [anon_sym_record] = ACTIONS(4473), + [anon_sym_abstract] = ACTIONS(4473), + [anon_sym_async] = ACTIONS(4473), + [anon_sym_const] = ACTIONS(4473), + [anon_sym_file] = ACTIONS(4473), + [anon_sym_fixed] = ACTIONS(4473), + [anon_sym_internal] = ACTIONS(4473), + [anon_sym_new] = ACTIONS(4473), + [anon_sym_override] = ACTIONS(4473), + [anon_sym_partial] = ACTIONS(4473), + [anon_sym_private] = ACTIONS(4473), + [anon_sym_protected] = ACTIONS(4473), + [anon_sym_public] = ACTIONS(4473), + [anon_sym_readonly] = ACTIONS(4473), + [anon_sym_required] = ACTIONS(4473), + [anon_sym_sealed] = ACTIONS(4473), + [anon_sym_virtual] = ACTIONS(4473), + [anon_sym_volatile] = ACTIONS(4473), + [anon_sym_where] = ACTIONS(4473), + [anon_sym_notnull] = ACTIONS(4473), + [anon_sym_unmanaged] = ACTIONS(4473), + [anon_sym_TILDE] = ACTIONS(4475), + [anon_sym_implicit] = ACTIONS(4473), + [anon_sym_explicit] = ACTIONS(4473), + [anon_sym_scoped] = ACTIONS(4473), + [anon_sym_var] = ACTIONS(4473), + [sym_predefined_type] = ACTIONS(4473), + [anon_sym_yield] = ACTIONS(4473), + [anon_sym_when] = ACTIONS(4473), + [anon_sym_from] = ACTIONS(4473), + [anon_sym_into] = ACTIONS(4473), + [anon_sym_join] = ACTIONS(4473), + [anon_sym_on] = ACTIONS(4473), + [anon_sym_equals] = ACTIONS(4473), + [anon_sym_let] = ACTIONS(4473), + [anon_sym_orderby] = ACTIONS(4473), + [anon_sym_ascending] = ACTIONS(4473), + [anon_sym_descending] = ACTIONS(4473), + [anon_sym_group] = ACTIONS(4473), + [anon_sym_by] = ACTIONS(4473), + [anon_sym_select] = ACTIONS(4473), + [aux_sym_preproc_if_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token3] = ACTIONS(4475), + [aux_sym_preproc_else_token1] = ACTIONS(4475), + [aux_sym_preproc_elif_token1] = ACTIONS(4475), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2751] = { + [sym_preproc_region] = STATE(2751), + [sym_preproc_endregion] = STATE(2751), + [sym_preproc_line] = STATE(2751), + [sym_preproc_pragma] = STATE(2751), + [sym_preproc_nullable] = STATE(2751), + [sym_preproc_error] = STATE(2751), + [sym_preproc_warning] = STATE(2751), + [sym_preproc_define] = STATE(2751), + [sym_preproc_undef] = STATE(2751), + [sym__identifier_token] = ACTIONS(4477), + [anon_sym_extern] = ACTIONS(4477), + [anon_sym_alias] = ACTIONS(4477), + [anon_sym_global] = ACTIONS(4477), + [anon_sym_using] = ACTIONS(4477), + [anon_sym_unsafe] = ACTIONS(4477), + [anon_sym_static] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_event] = ACTIONS(4477), + [anon_sym_namespace] = ACTIONS(4477), + [anon_sym_class] = ACTIONS(4477), + [anon_sym_ref] = ACTIONS(4477), + [anon_sym_struct] = ACTIONS(4477), + [anon_sym_enum] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_interface] = ACTIONS(4477), + [anon_sym_delegate] = ACTIONS(4477), + [anon_sym_record] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_async] = ACTIONS(4477), + [anon_sym_const] = ACTIONS(4477), + [anon_sym_file] = ACTIONS(4477), + [anon_sym_fixed] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_new] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_partial] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_readonly] = ACTIONS(4477), + [anon_sym_required] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_virtual] = ACTIONS(4477), + [anon_sym_volatile] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_notnull] = ACTIONS(4477), + [anon_sym_unmanaged] = ACTIONS(4477), + [anon_sym_TILDE] = ACTIONS(4479), + [anon_sym_implicit] = ACTIONS(4477), + [anon_sym_explicit] = ACTIONS(4477), + [anon_sym_scoped] = ACTIONS(4477), + [anon_sym_var] = ACTIONS(4477), + [sym_predefined_type] = ACTIONS(4477), + [anon_sym_yield] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_from] = ACTIONS(4477), + [anon_sym_into] = ACTIONS(4477), + [anon_sym_join] = ACTIONS(4477), + [anon_sym_on] = ACTIONS(4477), + [anon_sym_equals] = ACTIONS(4477), + [anon_sym_let] = ACTIONS(4477), + [anon_sym_orderby] = ACTIONS(4477), + [anon_sym_ascending] = ACTIONS(4477), + [anon_sym_descending] = ACTIONS(4477), + [anon_sym_group] = ACTIONS(4477), + [anon_sym_by] = ACTIONS(4477), + [anon_sym_select] = ACTIONS(4477), + [aux_sym_preproc_if_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token3] = ACTIONS(4479), + [aux_sym_preproc_else_token1] = ACTIONS(4479), + [aux_sym_preproc_elif_token1] = ACTIONS(4479), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451440,7 +451476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4054), }, [2752] = { [sym_preproc_region] = STATE(2752), @@ -451452,69 +451487,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2752), [sym_preproc_define] = STATE(2752), [sym_preproc_undef] = STATE(2752), - [sym__identifier_token] = ACTIONS(4523), - [anon_sym_extern] = ACTIONS(4523), - [anon_sym_alias] = ACTIONS(4523), - [anon_sym_global] = ACTIONS(4523), - [anon_sym_using] = ACTIONS(4523), - [anon_sym_unsafe] = ACTIONS(4523), - [anon_sym_static] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4525), - [anon_sym_LPAREN] = ACTIONS(4525), - [anon_sym_event] = ACTIONS(4523), - [anon_sym_namespace] = ACTIONS(4523), - [anon_sym_class] = ACTIONS(4523), - [anon_sym_ref] = ACTIONS(4523), - [anon_sym_struct] = ACTIONS(4523), - [anon_sym_enum] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_interface] = ACTIONS(4523), - [anon_sym_delegate] = ACTIONS(4523), - [anon_sym_record] = ACTIONS(4523), - [anon_sym_abstract] = ACTIONS(4523), - [anon_sym_async] = ACTIONS(4523), - [anon_sym_const] = ACTIONS(4523), - [anon_sym_file] = ACTIONS(4523), - [anon_sym_fixed] = ACTIONS(4523), - [anon_sym_internal] = ACTIONS(4523), - [anon_sym_new] = ACTIONS(4523), - [anon_sym_override] = ACTIONS(4523), - [anon_sym_partial] = ACTIONS(4523), - [anon_sym_private] = ACTIONS(4523), - [anon_sym_protected] = ACTIONS(4523), - [anon_sym_public] = ACTIONS(4523), - [anon_sym_readonly] = ACTIONS(4523), - [anon_sym_required] = ACTIONS(4523), - [anon_sym_sealed] = ACTIONS(4523), - [anon_sym_virtual] = ACTIONS(4523), - [anon_sym_volatile] = ACTIONS(4523), - [anon_sym_where] = ACTIONS(4523), - [anon_sym_notnull] = ACTIONS(4523), - [anon_sym_unmanaged] = ACTIONS(4523), - [anon_sym_TILDE] = ACTIONS(4525), - [anon_sym_implicit] = ACTIONS(4523), - [anon_sym_explicit] = ACTIONS(4523), - [anon_sym_scoped] = ACTIONS(4523), - [anon_sym_var] = ACTIONS(4523), - [sym_predefined_type] = ACTIONS(4523), - [anon_sym_yield] = ACTIONS(4523), - [anon_sym_when] = ACTIONS(4523), - [anon_sym_from] = ACTIONS(4523), - [anon_sym_into] = ACTIONS(4523), - [anon_sym_join] = ACTIONS(4523), - [anon_sym_on] = ACTIONS(4523), - [anon_sym_equals] = ACTIONS(4523), - [anon_sym_let] = ACTIONS(4523), - [anon_sym_orderby] = ACTIONS(4523), - [anon_sym_ascending] = ACTIONS(4523), - [anon_sym_descending] = ACTIONS(4523), - [anon_sym_group] = ACTIONS(4523), - [anon_sym_by] = ACTIONS(4523), - [anon_sym_select] = ACTIONS(4523), - [aux_sym_preproc_if_token1] = ACTIONS(4525), - [aux_sym_preproc_if_token3] = ACTIONS(4525), - [aux_sym_preproc_else_token1] = ACTIONS(4525), - [aux_sym_preproc_elif_token1] = ACTIONS(4525), + [sym__identifier_token] = ACTIONS(3355), + [anon_sym_extern] = ACTIONS(3355), + [anon_sym_alias] = ACTIONS(3355), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_unsafe] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_event] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_ref] = ACTIONS(3355), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_delegate] = ACTIONS(3355), + [anon_sym_record] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_file] = ACTIONS(3355), + [anon_sym_fixed] = ACTIONS(3355), + [anon_sym_internal] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_partial] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_required] = ACTIONS(3355), + [anon_sym_sealed] = ACTIONS(3355), + [anon_sym_virtual] = ACTIONS(3355), + [anon_sym_volatile] = ACTIONS(3355), + [anon_sym_where] = ACTIONS(3355), + [anon_sym_notnull] = ACTIONS(3355), + [anon_sym_unmanaged] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_implicit] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(3355), + [anon_sym_scoped] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [sym_predefined_type] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_when] = ACTIONS(3355), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_into] = ACTIONS(3355), + [anon_sym_join] = ACTIONS(3355), + [anon_sym_on] = ACTIONS(3355), + [anon_sym_equals] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_orderby] = ACTIONS(3355), + [anon_sym_ascending] = ACTIONS(3355), + [anon_sym_descending] = ACTIONS(3355), + [anon_sym_group] = ACTIONS(3355), + [anon_sym_by] = ACTIONS(3355), + [anon_sym_select] = ACTIONS(3355), + [aux_sym_preproc_if_token1] = ACTIONS(3357), + [aux_sym_preproc_if_token3] = ACTIONS(3357), + [aux_sym_preproc_else_token1] = ACTIONS(3357), + [aux_sym_preproc_elif_token1] = ACTIONS(3357), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451527,6 +451562,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2753] = { + [sym__variable_designation] = STATE(4179), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2753), [sym_preproc_endregion] = STATE(2753), [sym_preproc_line] = STATE(2753), @@ -451536,69 +451575,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2753), [sym_preproc_define] = STATE(2753), [sym_preproc_undef] = STATE(2753), - [sym__identifier_token] = ACTIONS(4527), - [anon_sym_extern] = ACTIONS(4527), - [anon_sym_alias] = ACTIONS(4527), - [anon_sym_global] = ACTIONS(4527), - [anon_sym_using] = ACTIONS(4527), - [anon_sym_unsafe] = ACTIONS(4527), - [anon_sym_static] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_event] = ACTIONS(4527), - [anon_sym_namespace] = ACTIONS(4527), - [anon_sym_class] = ACTIONS(4527), - [anon_sym_ref] = ACTIONS(4527), - [anon_sym_struct] = ACTIONS(4527), - [anon_sym_enum] = ACTIONS(4527), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_interface] = ACTIONS(4527), - [anon_sym_delegate] = ACTIONS(4527), - [anon_sym_record] = ACTIONS(4527), - [anon_sym_abstract] = ACTIONS(4527), - [anon_sym_async] = ACTIONS(4527), - [anon_sym_const] = ACTIONS(4527), - [anon_sym_file] = ACTIONS(4527), - [anon_sym_fixed] = ACTIONS(4527), - [anon_sym_internal] = ACTIONS(4527), - [anon_sym_new] = ACTIONS(4527), - [anon_sym_override] = ACTIONS(4527), - [anon_sym_partial] = ACTIONS(4527), - [anon_sym_private] = ACTIONS(4527), - [anon_sym_protected] = ACTIONS(4527), - [anon_sym_public] = ACTIONS(4527), - [anon_sym_readonly] = ACTIONS(4527), - [anon_sym_required] = ACTIONS(4527), - [anon_sym_sealed] = ACTIONS(4527), - [anon_sym_virtual] = ACTIONS(4527), - [anon_sym_volatile] = ACTIONS(4527), - [anon_sym_where] = ACTIONS(4527), - [anon_sym_notnull] = ACTIONS(4527), - [anon_sym_unmanaged] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4529), - [anon_sym_implicit] = ACTIONS(4527), - [anon_sym_explicit] = ACTIONS(4527), - [anon_sym_scoped] = ACTIONS(4527), - [anon_sym_var] = ACTIONS(4527), - [sym_predefined_type] = ACTIONS(4527), - [anon_sym_yield] = ACTIONS(4527), - [anon_sym_when] = ACTIONS(4527), - [anon_sym_from] = ACTIONS(4527), - [anon_sym_into] = ACTIONS(4527), - [anon_sym_join] = ACTIONS(4527), - [anon_sym_on] = ACTIONS(4527), - [anon_sym_equals] = ACTIONS(4527), - [anon_sym_let] = ACTIONS(4527), - [anon_sym_orderby] = ACTIONS(4527), - [anon_sym_ascending] = ACTIONS(4527), - [anon_sym_descending] = ACTIONS(4527), - [anon_sym_group] = ACTIONS(4527), - [anon_sym_by] = ACTIONS(4527), - [anon_sym_select] = ACTIONS(4527), - [aux_sym_preproc_if_token1] = ACTIONS(4529), - [aux_sym_preproc_if_token3] = ACTIONS(4529), - [aux_sym_preproc_else_token1] = ACTIONS(4529), - [aux_sym_preproc_elif_token1] = ACTIONS(4529), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451620,69 +451655,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2754), [sym_preproc_define] = STATE(2754), [sym_preproc_undef] = STATE(2754), - [sym__identifier_token] = ACTIONS(4531), - [anon_sym_extern] = ACTIONS(4531), - [anon_sym_alias] = ACTIONS(4531), - [anon_sym_global] = ACTIONS(4531), - [anon_sym_using] = ACTIONS(4531), - [anon_sym_unsafe] = ACTIONS(4531), - [anon_sym_static] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_event] = ACTIONS(4531), - [anon_sym_namespace] = ACTIONS(4531), - [anon_sym_class] = ACTIONS(4531), - [anon_sym_ref] = ACTIONS(4531), - [anon_sym_struct] = ACTIONS(4531), - [anon_sym_enum] = ACTIONS(4531), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_interface] = ACTIONS(4531), - [anon_sym_delegate] = ACTIONS(4531), - [anon_sym_record] = ACTIONS(4531), - [anon_sym_abstract] = ACTIONS(4531), - [anon_sym_async] = ACTIONS(4531), - [anon_sym_const] = ACTIONS(4531), - [anon_sym_file] = ACTIONS(4531), - [anon_sym_fixed] = ACTIONS(4531), - [anon_sym_internal] = ACTIONS(4531), - [anon_sym_new] = ACTIONS(4531), - [anon_sym_override] = ACTIONS(4531), - [anon_sym_partial] = ACTIONS(4531), - [anon_sym_private] = ACTIONS(4531), - [anon_sym_protected] = ACTIONS(4531), - [anon_sym_public] = ACTIONS(4531), - [anon_sym_readonly] = ACTIONS(4531), - [anon_sym_required] = ACTIONS(4531), - [anon_sym_sealed] = ACTIONS(4531), - [anon_sym_virtual] = ACTIONS(4531), - [anon_sym_volatile] = ACTIONS(4531), - [anon_sym_where] = ACTIONS(4531), - [anon_sym_notnull] = ACTIONS(4531), - [anon_sym_unmanaged] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4533), - [anon_sym_implicit] = ACTIONS(4531), - [anon_sym_explicit] = ACTIONS(4531), - [anon_sym_scoped] = ACTIONS(4531), - [anon_sym_var] = ACTIONS(4531), - [sym_predefined_type] = ACTIONS(4531), - [anon_sym_yield] = ACTIONS(4531), - [anon_sym_when] = ACTIONS(4531), - [anon_sym_from] = ACTIONS(4531), - [anon_sym_into] = ACTIONS(4531), - [anon_sym_join] = ACTIONS(4531), - [anon_sym_on] = ACTIONS(4531), - [anon_sym_equals] = ACTIONS(4531), - [anon_sym_let] = ACTIONS(4531), - [anon_sym_orderby] = ACTIONS(4531), - [anon_sym_ascending] = ACTIONS(4531), - [anon_sym_descending] = ACTIONS(4531), - [anon_sym_group] = ACTIONS(4531), - [anon_sym_by] = ACTIONS(4531), - [anon_sym_select] = ACTIONS(4531), - [aux_sym_preproc_if_token1] = ACTIONS(4533), - [aux_sym_preproc_if_token3] = ACTIONS(4533), - [aux_sym_preproc_else_token1] = ACTIONS(4533), - [aux_sym_preproc_elif_token1] = ACTIONS(4533), + [sym__identifier_token] = ACTIONS(4481), + [anon_sym_extern] = ACTIONS(4481), + [anon_sym_alias] = ACTIONS(4481), + [anon_sym_global] = ACTIONS(4481), + [anon_sym_using] = ACTIONS(4481), + [anon_sym_unsafe] = ACTIONS(4481), + [anon_sym_static] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_event] = ACTIONS(4481), + [anon_sym_namespace] = ACTIONS(4481), + [anon_sym_class] = ACTIONS(4481), + [anon_sym_ref] = ACTIONS(4481), + [anon_sym_struct] = ACTIONS(4481), + [anon_sym_enum] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_interface] = ACTIONS(4481), + [anon_sym_delegate] = ACTIONS(4481), + [anon_sym_record] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_async] = ACTIONS(4481), + [anon_sym_const] = ACTIONS(4481), + [anon_sym_file] = ACTIONS(4481), + [anon_sym_fixed] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_partial] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_readonly] = ACTIONS(4481), + [anon_sym_required] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_virtual] = ACTIONS(4481), + [anon_sym_volatile] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_notnull] = ACTIONS(4481), + [anon_sym_unmanaged] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4483), + [anon_sym_implicit] = ACTIONS(4481), + [anon_sym_explicit] = ACTIONS(4481), + [anon_sym_scoped] = ACTIONS(4481), + [anon_sym_var] = ACTIONS(4481), + [sym_predefined_type] = ACTIONS(4481), + [anon_sym_yield] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_from] = ACTIONS(4481), + [anon_sym_into] = ACTIONS(4481), + [anon_sym_join] = ACTIONS(4481), + [anon_sym_on] = ACTIONS(4481), + [anon_sym_equals] = ACTIONS(4481), + [anon_sym_let] = ACTIONS(4481), + [anon_sym_orderby] = ACTIONS(4481), + [anon_sym_ascending] = ACTIONS(4481), + [anon_sym_descending] = ACTIONS(4481), + [anon_sym_group] = ACTIONS(4481), + [anon_sym_by] = ACTIONS(4481), + [anon_sym_select] = ACTIONS(4481), + [aux_sym_preproc_if_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token3] = ACTIONS(4483), + [aux_sym_preproc_else_token1] = ACTIONS(4483), + [aux_sym_preproc_elif_token1] = ACTIONS(4483), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451704,69 +451739,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2755), [sym_preproc_define] = STATE(2755), [sym_preproc_undef] = STATE(2755), - [sym__identifier_token] = ACTIONS(4535), - [anon_sym_extern] = ACTIONS(4535), - [anon_sym_alias] = ACTIONS(4535), - [anon_sym_global] = ACTIONS(4535), - [anon_sym_using] = ACTIONS(4535), - [anon_sym_unsafe] = ACTIONS(4535), - [anon_sym_static] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_event] = ACTIONS(4535), - [anon_sym_namespace] = ACTIONS(4535), - [anon_sym_class] = ACTIONS(4535), - [anon_sym_ref] = ACTIONS(4535), - [anon_sym_struct] = ACTIONS(4535), - [anon_sym_enum] = ACTIONS(4535), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_interface] = ACTIONS(4535), - [anon_sym_delegate] = ACTIONS(4535), - [anon_sym_record] = ACTIONS(4535), - [anon_sym_abstract] = ACTIONS(4535), - [anon_sym_async] = ACTIONS(4535), - [anon_sym_const] = ACTIONS(4535), - [anon_sym_file] = ACTIONS(4535), - [anon_sym_fixed] = ACTIONS(4535), - [anon_sym_internal] = ACTIONS(4535), - [anon_sym_new] = ACTIONS(4535), - [anon_sym_override] = ACTIONS(4535), - [anon_sym_partial] = ACTIONS(4535), - [anon_sym_private] = ACTIONS(4535), - [anon_sym_protected] = ACTIONS(4535), - [anon_sym_public] = ACTIONS(4535), - [anon_sym_readonly] = ACTIONS(4535), - [anon_sym_required] = ACTIONS(4535), - [anon_sym_sealed] = ACTIONS(4535), - [anon_sym_virtual] = ACTIONS(4535), - [anon_sym_volatile] = ACTIONS(4535), - [anon_sym_where] = ACTIONS(4535), - [anon_sym_notnull] = ACTIONS(4535), - [anon_sym_unmanaged] = ACTIONS(4535), - [anon_sym_TILDE] = ACTIONS(4537), - [anon_sym_implicit] = ACTIONS(4535), - [anon_sym_explicit] = ACTIONS(4535), - [anon_sym_scoped] = ACTIONS(4535), - [anon_sym_var] = ACTIONS(4535), - [sym_predefined_type] = ACTIONS(4535), - [anon_sym_yield] = ACTIONS(4535), - [anon_sym_when] = ACTIONS(4535), - [anon_sym_from] = ACTIONS(4535), - [anon_sym_into] = ACTIONS(4535), - [anon_sym_join] = ACTIONS(4535), - [anon_sym_on] = ACTIONS(4535), - [anon_sym_equals] = ACTIONS(4535), - [anon_sym_let] = ACTIONS(4535), - [anon_sym_orderby] = ACTIONS(4535), - [anon_sym_ascending] = ACTIONS(4535), - [anon_sym_descending] = ACTIONS(4535), - [anon_sym_group] = ACTIONS(4535), - [anon_sym_by] = ACTIONS(4535), - [anon_sym_select] = ACTIONS(4535), - [aux_sym_preproc_if_token1] = ACTIONS(4537), - [aux_sym_preproc_if_token3] = ACTIONS(4537), - [aux_sym_preproc_else_token1] = ACTIONS(4537), - [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [sym__identifier_token] = ACTIONS(4485), + [anon_sym_extern] = ACTIONS(4485), + [anon_sym_alias] = ACTIONS(4485), + [anon_sym_global] = ACTIONS(4485), + [anon_sym_using] = ACTIONS(4485), + [anon_sym_unsafe] = ACTIONS(4485), + [anon_sym_static] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_event] = ACTIONS(4485), + [anon_sym_namespace] = ACTIONS(4485), + [anon_sym_class] = ACTIONS(4485), + [anon_sym_ref] = ACTIONS(4485), + [anon_sym_struct] = ACTIONS(4485), + [anon_sym_enum] = ACTIONS(4485), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_interface] = ACTIONS(4485), + [anon_sym_delegate] = ACTIONS(4485), + [anon_sym_record] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_async] = ACTIONS(4485), + [anon_sym_const] = ACTIONS(4485), + [anon_sym_file] = ACTIONS(4485), + [anon_sym_fixed] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_new] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_partial] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_readonly] = ACTIONS(4485), + [anon_sym_required] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_virtual] = ACTIONS(4485), + [anon_sym_volatile] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_notnull] = ACTIONS(4485), + [anon_sym_unmanaged] = ACTIONS(4485), + [anon_sym_TILDE] = ACTIONS(4487), + [anon_sym_implicit] = ACTIONS(4485), + [anon_sym_explicit] = ACTIONS(4485), + [anon_sym_scoped] = ACTIONS(4485), + [anon_sym_var] = ACTIONS(4485), + [sym_predefined_type] = ACTIONS(4485), + [anon_sym_yield] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_from] = ACTIONS(4485), + [anon_sym_into] = ACTIONS(4485), + [anon_sym_join] = ACTIONS(4485), + [anon_sym_on] = ACTIONS(4485), + [anon_sym_equals] = ACTIONS(4485), + [anon_sym_let] = ACTIONS(4485), + [anon_sym_orderby] = ACTIONS(4485), + [anon_sym_ascending] = ACTIONS(4485), + [anon_sym_descending] = ACTIONS(4485), + [anon_sym_group] = ACTIONS(4485), + [anon_sym_by] = ACTIONS(4485), + [anon_sym_select] = ACTIONS(4485), + [aux_sym_preproc_if_token1] = ACTIONS(4487), + [aux_sym_preproc_if_token3] = ACTIONS(4487), + [aux_sym_preproc_else_token1] = ACTIONS(4487), + [aux_sym_preproc_elif_token1] = ACTIONS(4487), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451788,68 +451823,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2756), [sym_preproc_define] = STATE(2756), [sym_preproc_undef] = STATE(2756), - [sym__identifier_token] = ACTIONS(3662), - [anon_sym_alias] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_file] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3662), - [anon_sym_unmanaged] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(4489), + [anon_sym_extern] = ACTIONS(4489), + [anon_sym_alias] = ACTIONS(4489), + [anon_sym_global] = ACTIONS(4489), + [anon_sym_using] = ACTIONS(4489), + [anon_sym_unsafe] = ACTIONS(4489), + [anon_sym_static] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_event] = ACTIONS(4489), + [anon_sym_namespace] = ACTIONS(4489), + [anon_sym_class] = ACTIONS(4489), + [anon_sym_ref] = ACTIONS(4489), + [anon_sym_struct] = ACTIONS(4489), + [anon_sym_enum] = ACTIONS(4489), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_interface] = ACTIONS(4489), + [anon_sym_delegate] = ACTIONS(4489), + [anon_sym_record] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_async] = ACTIONS(4489), + [anon_sym_const] = ACTIONS(4489), + [anon_sym_file] = ACTIONS(4489), + [anon_sym_fixed] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_new] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_partial] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_readonly] = ACTIONS(4489), + [anon_sym_required] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_virtual] = ACTIONS(4489), + [anon_sym_volatile] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_notnull] = ACTIONS(4489), + [anon_sym_unmanaged] = ACTIONS(4489), + [anon_sym_TILDE] = ACTIONS(4491), + [anon_sym_implicit] = ACTIONS(4489), + [anon_sym_explicit] = ACTIONS(4489), + [anon_sym_scoped] = ACTIONS(4489), + [anon_sym_var] = ACTIONS(4489), + [sym_predefined_type] = ACTIONS(4489), + [anon_sym_yield] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_from] = ACTIONS(4489), + [anon_sym_into] = ACTIONS(4489), + [anon_sym_join] = ACTIONS(4489), + [anon_sym_on] = ACTIONS(4489), + [anon_sym_equals] = ACTIONS(4489), + [anon_sym_let] = ACTIONS(4489), + [anon_sym_orderby] = ACTIONS(4489), + [anon_sym_ascending] = ACTIONS(4489), + [anon_sym_descending] = ACTIONS(4489), + [anon_sym_group] = ACTIONS(4489), + [anon_sym_by] = ACTIONS(4489), + [anon_sym_select] = ACTIONS(4489), + [aux_sym_preproc_if_token1] = ACTIONS(4491), + [aux_sym_preproc_if_token3] = ACTIONS(4491), + [aux_sym_preproc_else_token1] = ACTIONS(4491), + [aux_sym_preproc_elif_token1] = ACTIONS(4491), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451860,7 +451896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3664), }, [2757] = { [sym_preproc_region] = STATE(2757), @@ -451872,69 +451907,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2757), [sym_preproc_define] = STATE(2757), [sym_preproc_undef] = STATE(2757), - [sym__identifier_token] = ACTIONS(4539), - [anon_sym_extern] = ACTIONS(4539), - [anon_sym_alias] = ACTIONS(4539), - [anon_sym_global] = ACTIONS(4539), - [anon_sym_using] = ACTIONS(4539), - [anon_sym_unsafe] = ACTIONS(4539), - [anon_sym_static] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_event] = ACTIONS(4539), - [anon_sym_namespace] = ACTIONS(4539), - [anon_sym_class] = ACTIONS(4539), - [anon_sym_ref] = ACTIONS(4539), - [anon_sym_struct] = ACTIONS(4539), - [anon_sym_enum] = ACTIONS(4539), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_interface] = ACTIONS(4539), - [anon_sym_delegate] = ACTIONS(4539), - [anon_sym_record] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_async] = ACTIONS(4539), - [anon_sym_const] = ACTIONS(4539), - [anon_sym_file] = ACTIONS(4539), - [anon_sym_fixed] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_new] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_partial] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_readonly] = ACTIONS(4539), - [anon_sym_required] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_virtual] = ACTIONS(4539), - [anon_sym_volatile] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_notnull] = ACTIONS(4539), - [anon_sym_unmanaged] = ACTIONS(4539), - [anon_sym_TILDE] = ACTIONS(4541), - [anon_sym_implicit] = ACTIONS(4539), - [anon_sym_explicit] = ACTIONS(4539), - [anon_sym_scoped] = ACTIONS(4539), - [anon_sym_var] = ACTIONS(4539), - [sym_predefined_type] = ACTIONS(4539), - [anon_sym_yield] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_from] = ACTIONS(4539), - [anon_sym_into] = ACTIONS(4539), - [anon_sym_join] = ACTIONS(4539), - [anon_sym_on] = ACTIONS(4539), - [anon_sym_equals] = ACTIONS(4539), - [anon_sym_let] = ACTIONS(4539), - [anon_sym_orderby] = ACTIONS(4539), - [anon_sym_ascending] = ACTIONS(4539), - [anon_sym_descending] = ACTIONS(4539), - [anon_sym_group] = ACTIONS(4539), - [anon_sym_by] = ACTIONS(4539), - [anon_sym_select] = ACTIONS(4539), - [aux_sym_preproc_if_token1] = ACTIONS(4541), - [aux_sym_preproc_if_token3] = ACTIONS(4541), - [aux_sym_preproc_else_token1] = ACTIONS(4541), - [aux_sym_preproc_elif_token1] = ACTIONS(4541), + [sym__identifier_token] = ACTIONS(4493), + [anon_sym_extern] = ACTIONS(4493), + [anon_sym_alias] = ACTIONS(4493), + [anon_sym_global] = ACTIONS(4493), + [anon_sym_using] = ACTIONS(4493), + [anon_sym_unsafe] = ACTIONS(4493), + [anon_sym_static] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_event] = ACTIONS(4493), + [anon_sym_namespace] = ACTIONS(4493), + [anon_sym_class] = ACTIONS(4493), + [anon_sym_ref] = ACTIONS(4493), + [anon_sym_struct] = ACTIONS(4493), + [anon_sym_enum] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_interface] = ACTIONS(4493), + [anon_sym_delegate] = ACTIONS(4493), + [anon_sym_record] = ACTIONS(4493), + [anon_sym_abstract] = ACTIONS(4493), + [anon_sym_async] = ACTIONS(4493), + [anon_sym_const] = ACTIONS(4493), + [anon_sym_file] = ACTIONS(4493), + [anon_sym_fixed] = ACTIONS(4493), + [anon_sym_internal] = ACTIONS(4493), + [anon_sym_new] = ACTIONS(4493), + [anon_sym_override] = ACTIONS(4493), + [anon_sym_partial] = ACTIONS(4493), + [anon_sym_private] = ACTIONS(4493), + [anon_sym_protected] = ACTIONS(4493), + [anon_sym_public] = ACTIONS(4493), + [anon_sym_readonly] = ACTIONS(4493), + [anon_sym_required] = ACTIONS(4493), + [anon_sym_sealed] = ACTIONS(4493), + [anon_sym_virtual] = ACTIONS(4493), + [anon_sym_volatile] = ACTIONS(4493), + [anon_sym_where] = ACTIONS(4493), + [anon_sym_notnull] = ACTIONS(4493), + [anon_sym_unmanaged] = ACTIONS(4493), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_implicit] = ACTIONS(4493), + [anon_sym_explicit] = ACTIONS(4493), + [anon_sym_scoped] = ACTIONS(4493), + [anon_sym_var] = ACTIONS(4493), + [sym_predefined_type] = ACTIONS(4493), + [anon_sym_yield] = ACTIONS(4493), + [anon_sym_when] = ACTIONS(4493), + [anon_sym_from] = ACTIONS(4493), + [anon_sym_into] = ACTIONS(4493), + [anon_sym_join] = ACTIONS(4493), + [anon_sym_on] = ACTIONS(4493), + [anon_sym_equals] = ACTIONS(4493), + [anon_sym_let] = ACTIONS(4493), + [anon_sym_orderby] = ACTIONS(4493), + [anon_sym_ascending] = ACTIONS(4493), + [anon_sym_descending] = ACTIONS(4493), + [anon_sym_group] = ACTIONS(4493), + [anon_sym_by] = ACTIONS(4493), + [anon_sym_select] = ACTIONS(4493), + [aux_sym_preproc_if_token1] = ACTIONS(4495), + [aux_sym_preproc_if_token3] = ACTIONS(4495), + [aux_sym_preproc_else_token1] = ACTIONS(4495), + [aux_sym_preproc_elif_token1] = ACTIONS(4495), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451956,69 +451991,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2758), [sym_preproc_define] = STATE(2758), [sym_preproc_undef] = STATE(2758), - [sym__identifier_token] = ACTIONS(4543), - [anon_sym_extern] = ACTIONS(4543), - [anon_sym_alias] = ACTIONS(4543), - [anon_sym_global] = ACTIONS(4543), - [anon_sym_using] = ACTIONS(4543), - [anon_sym_unsafe] = ACTIONS(4543), - [anon_sym_static] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4545), - [anon_sym_LPAREN] = ACTIONS(4545), - [anon_sym_event] = ACTIONS(4543), - [anon_sym_namespace] = ACTIONS(4543), - [anon_sym_class] = ACTIONS(4543), - [anon_sym_ref] = ACTIONS(4543), - [anon_sym_struct] = ACTIONS(4543), - [anon_sym_enum] = ACTIONS(4543), - [anon_sym_RBRACE] = ACTIONS(4545), - [anon_sym_interface] = ACTIONS(4543), - [anon_sym_delegate] = ACTIONS(4543), - [anon_sym_record] = ACTIONS(4543), - [anon_sym_abstract] = ACTIONS(4543), - [anon_sym_async] = ACTIONS(4543), - [anon_sym_const] = ACTIONS(4543), - [anon_sym_file] = ACTIONS(4543), - [anon_sym_fixed] = ACTIONS(4543), - [anon_sym_internal] = ACTIONS(4543), - [anon_sym_new] = ACTIONS(4543), - [anon_sym_override] = ACTIONS(4543), - [anon_sym_partial] = ACTIONS(4543), - [anon_sym_private] = ACTIONS(4543), - [anon_sym_protected] = ACTIONS(4543), - [anon_sym_public] = ACTIONS(4543), - [anon_sym_readonly] = ACTIONS(4543), - [anon_sym_required] = ACTIONS(4543), - [anon_sym_sealed] = ACTIONS(4543), - [anon_sym_virtual] = ACTIONS(4543), - [anon_sym_volatile] = ACTIONS(4543), - [anon_sym_where] = ACTIONS(4543), - [anon_sym_notnull] = ACTIONS(4543), - [anon_sym_unmanaged] = ACTIONS(4543), - [anon_sym_TILDE] = ACTIONS(4545), - [anon_sym_implicit] = ACTIONS(4543), - [anon_sym_explicit] = ACTIONS(4543), - [anon_sym_scoped] = ACTIONS(4543), - [anon_sym_var] = ACTIONS(4543), - [sym_predefined_type] = ACTIONS(4543), - [anon_sym_yield] = ACTIONS(4543), - [anon_sym_when] = ACTIONS(4543), - [anon_sym_from] = ACTIONS(4543), - [anon_sym_into] = ACTIONS(4543), - [anon_sym_join] = ACTIONS(4543), - [anon_sym_on] = ACTIONS(4543), - [anon_sym_equals] = ACTIONS(4543), - [anon_sym_let] = ACTIONS(4543), - [anon_sym_orderby] = ACTIONS(4543), - [anon_sym_ascending] = ACTIONS(4543), - [anon_sym_descending] = ACTIONS(4543), - [anon_sym_group] = ACTIONS(4543), - [anon_sym_by] = ACTIONS(4543), - [anon_sym_select] = ACTIONS(4543), - [aux_sym_preproc_if_token1] = ACTIONS(4545), - [aux_sym_preproc_if_token3] = ACTIONS(4545), - [aux_sym_preproc_else_token1] = ACTIONS(4545), - [aux_sym_preproc_elif_token1] = ACTIONS(4545), + [sym__identifier_token] = ACTIONS(4497), + [anon_sym_extern] = ACTIONS(4497), + [anon_sym_alias] = ACTIONS(4497), + [anon_sym_global] = ACTIONS(4497), + [anon_sym_using] = ACTIONS(4497), + [anon_sym_unsafe] = ACTIONS(4497), + [anon_sym_static] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_event] = ACTIONS(4497), + [anon_sym_namespace] = ACTIONS(4497), + [anon_sym_class] = ACTIONS(4497), + [anon_sym_ref] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_interface] = ACTIONS(4497), + [anon_sym_delegate] = ACTIONS(4497), + [anon_sym_record] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_async] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_file] = ACTIONS(4497), + [anon_sym_fixed] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_new] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_partial] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_readonly] = ACTIONS(4497), + [anon_sym_required] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_virtual] = ACTIONS(4497), + [anon_sym_volatile] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_notnull] = ACTIONS(4497), + [anon_sym_unmanaged] = ACTIONS(4497), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_implicit] = ACTIONS(4497), + [anon_sym_explicit] = ACTIONS(4497), + [anon_sym_scoped] = ACTIONS(4497), + [anon_sym_var] = ACTIONS(4497), + [sym_predefined_type] = ACTIONS(4497), + [anon_sym_yield] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_from] = ACTIONS(4497), + [anon_sym_into] = ACTIONS(4497), + [anon_sym_join] = ACTIONS(4497), + [anon_sym_on] = ACTIONS(4497), + [anon_sym_equals] = ACTIONS(4497), + [anon_sym_let] = ACTIONS(4497), + [anon_sym_orderby] = ACTIONS(4497), + [anon_sym_ascending] = ACTIONS(4497), + [anon_sym_descending] = ACTIONS(4497), + [anon_sym_group] = ACTIONS(4497), + [anon_sym_by] = ACTIONS(4497), + [anon_sym_select] = ACTIONS(4497), + [aux_sym_preproc_if_token1] = ACTIONS(4499), + [aux_sym_preproc_if_token3] = ACTIONS(4499), + [aux_sym_preproc_else_token1] = ACTIONS(4499), + [aux_sym_preproc_elif_token1] = ACTIONS(4499), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452040,79 +452075,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2759), [sym_preproc_define] = STATE(2759), [sym_preproc_undef] = STATE(2759), - [sym__identifier_token] = ACTIONS(4547), - [anon_sym_extern] = ACTIONS(4547), - [anon_sym_alias] = ACTIONS(4547), - [anon_sym_global] = ACTIONS(4547), - [anon_sym_using] = ACTIONS(4547), - [anon_sym_unsafe] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_event] = ACTIONS(4547), - [anon_sym_namespace] = ACTIONS(4547), - [anon_sym_class] = ACTIONS(4547), - [anon_sym_ref] = ACTIONS(4547), - [anon_sym_struct] = ACTIONS(4547), - [anon_sym_enum] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4549), - [anon_sym_interface] = ACTIONS(4547), - [anon_sym_delegate] = ACTIONS(4547), - [anon_sym_record] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_async] = ACTIONS(4547), - [anon_sym_const] = ACTIONS(4547), - [anon_sym_file] = ACTIONS(4547), - [anon_sym_fixed] = ACTIONS(4547), - [anon_sym_internal] = ACTIONS(4547), - [anon_sym_new] = ACTIONS(4547), - [anon_sym_override] = ACTIONS(4547), - [anon_sym_partial] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_protected] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_readonly] = ACTIONS(4547), - [anon_sym_required] = ACTIONS(4547), - [anon_sym_sealed] = ACTIONS(4547), - [anon_sym_virtual] = ACTIONS(4547), - [anon_sym_volatile] = ACTIONS(4547), - [anon_sym_where] = ACTIONS(4547), - [anon_sym_notnull] = ACTIONS(4547), - [anon_sym_unmanaged] = ACTIONS(4547), - [anon_sym_TILDE] = ACTIONS(4549), - [anon_sym_implicit] = ACTIONS(4547), - [anon_sym_explicit] = ACTIONS(4547), - [anon_sym_scoped] = ACTIONS(4547), - [anon_sym_var] = ACTIONS(4547), - [sym_predefined_type] = ACTIONS(4547), - [anon_sym_yield] = ACTIONS(4547), - [anon_sym_when] = ACTIONS(4547), - [anon_sym_from] = ACTIONS(4547), - [anon_sym_into] = ACTIONS(4547), - [anon_sym_join] = ACTIONS(4547), - [anon_sym_on] = ACTIONS(4547), - [anon_sym_equals] = ACTIONS(4547), - [anon_sym_let] = ACTIONS(4547), - [anon_sym_orderby] = ACTIONS(4547), - [anon_sym_ascending] = ACTIONS(4547), - [anon_sym_descending] = ACTIONS(4547), - [anon_sym_group] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4547), - [anon_sym_select] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4549), - [aux_sym_preproc_if_token3] = ACTIONS(4549), - [aux_sym_preproc_else_token1] = ACTIONS(4549), - [aux_sym_preproc_elif_token1] = ACTIONS(4549), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4123), + [anon_sym_alias] = ACTIONS(4123), + [anon_sym_global] = ACTIONS(4123), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4125), + [anon_sym_file] = ACTIONS(4123), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(4123), + [anon_sym_QMARK] = ACTIONS(4123), + [anon_sym_notnull] = ACTIONS(4123), + [anon_sym_unmanaged] = ACTIONS(4123), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4123), + [anon_sym_AMP] = ACTIONS(4123), + [anon_sym_LT_LT] = ACTIONS(4125), + [anon_sym_GT_GT] = ACTIONS(4123), + [anon_sym_GT_GT_GT] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_scoped] = ACTIONS(4123), + [anon_sym_var] = ACTIONS(4123), + [anon_sym_yield] = ACTIONS(4123), + [anon_sym_switch] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [sym_discard] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_and] = ACTIONS(4123), + [anon_sym_or] = ACTIONS(4123), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_QMARK_QMARK] = ACTIONS(4125), + [anon_sym_from] = ACTIONS(4123), + [anon_sym_into] = ACTIONS(4123), + [anon_sym_join] = ACTIONS(4123), + [anon_sym_on] = ACTIONS(4123), + [anon_sym_equals] = ACTIONS(4123), + [anon_sym_let] = ACTIONS(4123), + [anon_sym_orderby] = ACTIONS(4123), + [anon_sym_ascending] = ACTIONS(4123), + [anon_sym_descending] = ACTIONS(4123), + [anon_sym_group] = ACTIONS(4123), + [anon_sym_by] = ACTIONS(4123), + [anon_sym_select] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4125), + [anon_sym_with] = ACTIONS(4123), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4125), }, [2760] = { [sym_preproc_region] = STATE(2760), @@ -452124,69 +452159,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2760), [sym_preproc_define] = STATE(2760), [sym_preproc_undef] = STATE(2760), - [sym__identifier_token] = ACTIONS(4551), - [anon_sym_extern] = ACTIONS(4551), - [anon_sym_alias] = ACTIONS(4551), - [anon_sym_global] = ACTIONS(4551), - [anon_sym_using] = ACTIONS(4551), - [anon_sym_unsafe] = ACTIONS(4551), - [anon_sym_static] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_LPAREN] = ACTIONS(4553), - [anon_sym_event] = ACTIONS(4551), - [anon_sym_namespace] = ACTIONS(4551), - [anon_sym_class] = ACTIONS(4551), - [anon_sym_ref] = ACTIONS(4551), - [anon_sym_struct] = ACTIONS(4551), - [anon_sym_enum] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4553), - [anon_sym_interface] = ACTIONS(4551), - [anon_sym_delegate] = ACTIONS(4551), - [anon_sym_record] = ACTIONS(4551), - [anon_sym_abstract] = ACTIONS(4551), - [anon_sym_async] = ACTIONS(4551), - [anon_sym_const] = ACTIONS(4551), - [anon_sym_file] = ACTIONS(4551), - [anon_sym_fixed] = ACTIONS(4551), - [anon_sym_internal] = ACTIONS(4551), - [anon_sym_new] = ACTIONS(4551), - [anon_sym_override] = ACTIONS(4551), - [anon_sym_partial] = ACTIONS(4551), - [anon_sym_private] = ACTIONS(4551), - [anon_sym_protected] = ACTIONS(4551), - [anon_sym_public] = ACTIONS(4551), - [anon_sym_readonly] = ACTIONS(4551), - [anon_sym_required] = ACTIONS(4551), - [anon_sym_sealed] = ACTIONS(4551), - [anon_sym_virtual] = ACTIONS(4551), - [anon_sym_volatile] = ACTIONS(4551), - [anon_sym_where] = ACTIONS(4551), - [anon_sym_notnull] = ACTIONS(4551), - [anon_sym_unmanaged] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4553), - [anon_sym_implicit] = ACTIONS(4551), - [anon_sym_explicit] = ACTIONS(4551), - [anon_sym_scoped] = ACTIONS(4551), - [anon_sym_var] = ACTIONS(4551), - [sym_predefined_type] = ACTIONS(4551), - [anon_sym_yield] = ACTIONS(4551), - [anon_sym_when] = ACTIONS(4551), - [anon_sym_from] = ACTIONS(4551), - [anon_sym_into] = ACTIONS(4551), - [anon_sym_join] = ACTIONS(4551), - [anon_sym_on] = ACTIONS(4551), - [anon_sym_equals] = ACTIONS(4551), - [anon_sym_let] = ACTIONS(4551), - [anon_sym_orderby] = ACTIONS(4551), - [anon_sym_ascending] = ACTIONS(4551), - [anon_sym_descending] = ACTIONS(4551), - [anon_sym_group] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4551), - [anon_sym_select] = ACTIONS(4551), - [aux_sym_preproc_if_token1] = ACTIONS(4553), - [aux_sym_preproc_if_token3] = ACTIONS(4553), - [aux_sym_preproc_else_token1] = ACTIONS(4553), - [aux_sym_preproc_elif_token1] = ACTIONS(4553), + [sym__identifier_token] = ACTIONS(4501), + [anon_sym_extern] = ACTIONS(4501), + [anon_sym_alias] = ACTIONS(4501), + [anon_sym_global] = ACTIONS(4501), + [anon_sym_using] = ACTIONS(4501), + [anon_sym_unsafe] = ACTIONS(4501), + [anon_sym_static] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_event] = ACTIONS(4501), + [anon_sym_namespace] = ACTIONS(4501), + [anon_sym_class] = ACTIONS(4501), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_struct] = ACTIONS(4501), + [anon_sym_enum] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4503), + [anon_sym_interface] = ACTIONS(4501), + [anon_sym_delegate] = ACTIONS(4501), + [anon_sym_record] = ACTIONS(4501), + [anon_sym_abstract] = ACTIONS(4501), + [anon_sym_async] = ACTIONS(4501), + [anon_sym_const] = ACTIONS(4501), + [anon_sym_file] = ACTIONS(4501), + [anon_sym_fixed] = ACTIONS(4501), + [anon_sym_internal] = ACTIONS(4501), + [anon_sym_new] = ACTIONS(4501), + [anon_sym_override] = ACTIONS(4501), + [anon_sym_partial] = ACTIONS(4501), + [anon_sym_private] = ACTIONS(4501), + [anon_sym_protected] = ACTIONS(4501), + [anon_sym_public] = ACTIONS(4501), + [anon_sym_readonly] = ACTIONS(4501), + [anon_sym_required] = ACTIONS(4501), + [anon_sym_sealed] = ACTIONS(4501), + [anon_sym_virtual] = ACTIONS(4501), + [anon_sym_volatile] = ACTIONS(4501), + [anon_sym_where] = ACTIONS(4501), + [anon_sym_notnull] = ACTIONS(4501), + [anon_sym_unmanaged] = ACTIONS(4501), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_implicit] = ACTIONS(4501), + [anon_sym_explicit] = ACTIONS(4501), + [anon_sym_scoped] = ACTIONS(4501), + [anon_sym_var] = ACTIONS(4501), + [sym_predefined_type] = ACTIONS(4501), + [anon_sym_yield] = ACTIONS(4501), + [anon_sym_when] = ACTIONS(4501), + [anon_sym_from] = ACTIONS(4501), + [anon_sym_into] = ACTIONS(4501), + [anon_sym_join] = ACTIONS(4501), + [anon_sym_on] = ACTIONS(4501), + [anon_sym_equals] = ACTIONS(4501), + [anon_sym_let] = ACTIONS(4501), + [anon_sym_orderby] = ACTIONS(4501), + [anon_sym_ascending] = ACTIONS(4501), + [anon_sym_descending] = ACTIONS(4501), + [anon_sym_group] = ACTIONS(4501), + [anon_sym_by] = ACTIONS(4501), + [anon_sym_select] = ACTIONS(4501), + [aux_sym_preproc_if_token1] = ACTIONS(4503), + [aux_sym_preproc_if_token3] = ACTIONS(4503), + [aux_sym_preproc_else_token1] = ACTIONS(4503), + [aux_sym_preproc_elif_token1] = ACTIONS(4503), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452208,69 +452243,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2761), [sym_preproc_define] = STATE(2761), [sym_preproc_undef] = STATE(2761), - [sym__identifier_token] = ACTIONS(4555), - [anon_sym_extern] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4555), - [anon_sym_global] = ACTIONS(4555), - [anon_sym_using] = ACTIONS(4555), - [anon_sym_unsafe] = ACTIONS(4555), - [anon_sym_static] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4557), - [anon_sym_LPAREN] = ACTIONS(4557), - [anon_sym_event] = ACTIONS(4555), - [anon_sym_namespace] = ACTIONS(4555), - [anon_sym_class] = ACTIONS(4555), - [anon_sym_ref] = ACTIONS(4555), - [anon_sym_struct] = ACTIONS(4555), - [anon_sym_enum] = ACTIONS(4555), - [anon_sym_RBRACE] = ACTIONS(4557), - [anon_sym_interface] = ACTIONS(4555), - [anon_sym_delegate] = ACTIONS(4555), - [anon_sym_record] = ACTIONS(4555), - [anon_sym_abstract] = ACTIONS(4555), - [anon_sym_async] = ACTIONS(4555), - [anon_sym_const] = ACTIONS(4555), - [anon_sym_file] = ACTIONS(4555), - [anon_sym_fixed] = ACTIONS(4555), - [anon_sym_internal] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_override] = ACTIONS(4555), - [anon_sym_partial] = ACTIONS(4555), - [anon_sym_private] = ACTIONS(4555), - [anon_sym_protected] = ACTIONS(4555), - [anon_sym_public] = ACTIONS(4555), - [anon_sym_readonly] = ACTIONS(4555), - [anon_sym_required] = ACTIONS(4555), - [anon_sym_sealed] = ACTIONS(4555), - [anon_sym_virtual] = ACTIONS(4555), - [anon_sym_volatile] = ACTIONS(4555), - [anon_sym_where] = ACTIONS(4555), - [anon_sym_notnull] = ACTIONS(4555), - [anon_sym_unmanaged] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4557), - [anon_sym_implicit] = ACTIONS(4555), - [anon_sym_explicit] = ACTIONS(4555), - [anon_sym_scoped] = ACTIONS(4555), - [anon_sym_var] = ACTIONS(4555), - [sym_predefined_type] = ACTIONS(4555), - [anon_sym_yield] = ACTIONS(4555), - [anon_sym_when] = ACTIONS(4555), - [anon_sym_from] = ACTIONS(4555), - [anon_sym_into] = ACTIONS(4555), - [anon_sym_join] = ACTIONS(4555), - [anon_sym_on] = ACTIONS(4555), - [anon_sym_equals] = ACTIONS(4555), - [anon_sym_let] = ACTIONS(4555), - [anon_sym_orderby] = ACTIONS(4555), - [anon_sym_ascending] = ACTIONS(4555), - [anon_sym_descending] = ACTIONS(4555), - [anon_sym_group] = ACTIONS(4555), - [anon_sym_by] = ACTIONS(4555), - [anon_sym_select] = ACTIONS(4555), - [aux_sym_preproc_if_token1] = ACTIONS(4557), - [aux_sym_preproc_if_token3] = ACTIONS(4557), - [aux_sym_preproc_else_token1] = ACTIONS(4557), - [aux_sym_preproc_elif_token1] = ACTIONS(4557), + [sym__identifier_token] = ACTIONS(4505), + [anon_sym_extern] = ACTIONS(4505), + [anon_sym_alias] = ACTIONS(4505), + [anon_sym_global] = ACTIONS(4505), + [anon_sym_using] = ACTIONS(4505), + [anon_sym_unsafe] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_event] = ACTIONS(4505), + [anon_sym_namespace] = ACTIONS(4505), + [anon_sym_class] = ACTIONS(4505), + [anon_sym_ref] = ACTIONS(4505), + [anon_sym_struct] = ACTIONS(4505), + [anon_sym_enum] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_interface] = ACTIONS(4505), + [anon_sym_delegate] = ACTIONS(4505), + [anon_sym_record] = ACTIONS(4505), + [anon_sym_abstract] = ACTIONS(4505), + [anon_sym_async] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4505), + [anon_sym_file] = ACTIONS(4505), + [anon_sym_fixed] = ACTIONS(4505), + [anon_sym_internal] = ACTIONS(4505), + [anon_sym_new] = ACTIONS(4505), + [anon_sym_override] = ACTIONS(4505), + [anon_sym_partial] = ACTIONS(4505), + [anon_sym_private] = ACTIONS(4505), + [anon_sym_protected] = ACTIONS(4505), + [anon_sym_public] = ACTIONS(4505), + [anon_sym_readonly] = ACTIONS(4505), + [anon_sym_required] = ACTIONS(4505), + [anon_sym_sealed] = ACTIONS(4505), + [anon_sym_virtual] = ACTIONS(4505), + [anon_sym_volatile] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_notnull] = ACTIONS(4505), + [anon_sym_unmanaged] = ACTIONS(4505), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_implicit] = ACTIONS(4505), + [anon_sym_explicit] = ACTIONS(4505), + [anon_sym_scoped] = ACTIONS(4505), + [anon_sym_var] = ACTIONS(4505), + [sym_predefined_type] = ACTIONS(4505), + [anon_sym_yield] = ACTIONS(4505), + [anon_sym_when] = ACTIONS(4505), + [anon_sym_from] = ACTIONS(4505), + [anon_sym_into] = ACTIONS(4505), + [anon_sym_join] = ACTIONS(4505), + [anon_sym_on] = ACTIONS(4505), + [anon_sym_equals] = ACTIONS(4505), + [anon_sym_let] = ACTIONS(4505), + [anon_sym_orderby] = ACTIONS(4505), + [anon_sym_ascending] = ACTIONS(4505), + [anon_sym_descending] = ACTIONS(4505), + [anon_sym_group] = ACTIONS(4505), + [anon_sym_by] = ACTIONS(4505), + [anon_sym_select] = ACTIONS(4505), + [aux_sym_preproc_if_token1] = ACTIONS(4507), + [aux_sym_preproc_if_token3] = ACTIONS(4507), + [aux_sym_preproc_else_token1] = ACTIONS(4507), + [aux_sym_preproc_elif_token1] = ACTIONS(4507), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452292,69 +452327,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2762), [sym_preproc_define] = STATE(2762), [sym_preproc_undef] = STATE(2762), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_EQ_GT] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_on] = ACTIONS(4212), - [anon_sym_equals] = ACTIONS(4212), - [anon_sym_by] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), - [aux_sym_preproc_if_token3] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [sym__identifier_token] = ACTIONS(4509), + [anon_sym_extern] = ACTIONS(4509), + [anon_sym_alias] = ACTIONS(4509), + [anon_sym_global] = ACTIONS(4509), + [anon_sym_using] = ACTIONS(4509), + [anon_sym_unsafe] = ACTIONS(4509), + [anon_sym_static] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_event] = ACTIONS(4509), + [anon_sym_namespace] = ACTIONS(4509), + [anon_sym_class] = ACTIONS(4509), + [anon_sym_ref] = ACTIONS(4509), + [anon_sym_struct] = ACTIONS(4509), + [anon_sym_enum] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4511), + [anon_sym_interface] = ACTIONS(4509), + [anon_sym_delegate] = ACTIONS(4509), + [anon_sym_record] = ACTIONS(4509), + [anon_sym_abstract] = ACTIONS(4509), + [anon_sym_async] = ACTIONS(4509), + [anon_sym_const] = ACTIONS(4509), + [anon_sym_file] = ACTIONS(4509), + [anon_sym_fixed] = ACTIONS(4509), + [anon_sym_internal] = ACTIONS(4509), + [anon_sym_new] = ACTIONS(4509), + [anon_sym_override] = ACTIONS(4509), + [anon_sym_partial] = ACTIONS(4509), + [anon_sym_private] = ACTIONS(4509), + [anon_sym_protected] = ACTIONS(4509), + [anon_sym_public] = ACTIONS(4509), + [anon_sym_readonly] = ACTIONS(4509), + [anon_sym_required] = ACTIONS(4509), + [anon_sym_sealed] = ACTIONS(4509), + [anon_sym_virtual] = ACTIONS(4509), + [anon_sym_volatile] = ACTIONS(4509), + [anon_sym_where] = ACTIONS(4509), + [anon_sym_notnull] = ACTIONS(4509), + [anon_sym_unmanaged] = ACTIONS(4509), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_implicit] = ACTIONS(4509), + [anon_sym_explicit] = ACTIONS(4509), + [anon_sym_scoped] = ACTIONS(4509), + [anon_sym_var] = ACTIONS(4509), + [sym_predefined_type] = ACTIONS(4509), + [anon_sym_yield] = ACTIONS(4509), + [anon_sym_when] = ACTIONS(4509), + [anon_sym_from] = ACTIONS(4509), + [anon_sym_into] = ACTIONS(4509), + [anon_sym_join] = ACTIONS(4509), + [anon_sym_on] = ACTIONS(4509), + [anon_sym_equals] = ACTIONS(4509), + [anon_sym_let] = ACTIONS(4509), + [anon_sym_orderby] = ACTIONS(4509), + [anon_sym_ascending] = ACTIONS(4509), + [anon_sym_descending] = ACTIONS(4509), + [anon_sym_group] = ACTIONS(4509), + [anon_sym_by] = ACTIONS(4509), + [anon_sym_select] = ACTIONS(4509), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token3] = ACTIONS(4511), + [aux_sym_preproc_else_token1] = ACTIONS(4511), + [aux_sym_preproc_elif_token1] = ACTIONS(4511), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452376,69 +452411,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2763), [sym_preproc_define] = STATE(2763), [sym_preproc_undef] = STATE(2763), - [sym__identifier_token] = ACTIONS(4559), - [anon_sym_extern] = ACTIONS(4559), - [anon_sym_alias] = ACTIONS(4559), - [anon_sym_global] = ACTIONS(4559), - [anon_sym_using] = ACTIONS(4559), - [anon_sym_unsafe] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_event] = ACTIONS(4559), - [anon_sym_namespace] = ACTIONS(4559), - [anon_sym_class] = ACTIONS(4559), - [anon_sym_ref] = ACTIONS(4559), - [anon_sym_struct] = ACTIONS(4559), - [anon_sym_enum] = ACTIONS(4559), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_interface] = ACTIONS(4559), - [anon_sym_delegate] = ACTIONS(4559), - [anon_sym_record] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_async] = ACTIONS(4559), - [anon_sym_const] = ACTIONS(4559), - [anon_sym_file] = ACTIONS(4559), - [anon_sym_fixed] = ACTIONS(4559), - [anon_sym_internal] = ACTIONS(4559), - [anon_sym_new] = ACTIONS(4559), - [anon_sym_override] = ACTIONS(4559), - [anon_sym_partial] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_readonly] = ACTIONS(4559), - [anon_sym_required] = ACTIONS(4559), - [anon_sym_sealed] = ACTIONS(4559), - [anon_sym_virtual] = ACTIONS(4559), - [anon_sym_volatile] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_notnull] = ACTIONS(4559), - [anon_sym_unmanaged] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4561), - [anon_sym_implicit] = ACTIONS(4559), - [anon_sym_explicit] = ACTIONS(4559), - [anon_sym_scoped] = ACTIONS(4559), - [anon_sym_var] = ACTIONS(4559), - [sym_predefined_type] = ACTIONS(4559), - [anon_sym_yield] = ACTIONS(4559), - [anon_sym_when] = ACTIONS(4559), - [anon_sym_from] = ACTIONS(4559), - [anon_sym_into] = ACTIONS(4559), - [anon_sym_join] = ACTIONS(4559), - [anon_sym_on] = ACTIONS(4559), - [anon_sym_equals] = ACTIONS(4559), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_orderby] = ACTIONS(4559), - [anon_sym_ascending] = ACTIONS(4559), - [anon_sym_descending] = ACTIONS(4559), - [anon_sym_group] = ACTIONS(4559), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_select] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4561), - [aux_sym_preproc_if_token3] = ACTIONS(4561), - [aux_sym_preproc_else_token1] = ACTIONS(4561), - [aux_sym_preproc_elif_token1] = ACTIONS(4561), + [sym__identifier_token] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_alias] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_unsafe] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_event] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_ref] = ACTIONS(3359), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_delegate] = ACTIONS(3359), + [anon_sym_record] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_file] = ACTIONS(3359), + [anon_sym_fixed] = ACTIONS(3359), + [anon_sym_internal] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_partial] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_required] = ACTIONS(3359), + [anon_sym_sealed] = ACTIONS(3359), + [anon_sym_virtual] = ACTIONS(3359), + [anon_sym_volatile] = ACTIONS(3359), + [anon_sym_where] = ACTIONS(3359), + [anon_sym_notnull] = ACTIONS(3359), + [anon_sym_unmanaged] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_implicit] = ACTIONS(3359), + [anon_sym_explicit] = ACTIONS(3359), + [anon_sym_scoped] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [sym_predefined_type] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_when] = ACTIONS(3359), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_into] = ACTIONS(3359), + [anon_sym_join] = ACTIONS(3359), + [anon_sym_on] = ACTIONS(3359), + [anon_sym_equals] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_orderby] = ACTIONS(3359), + [anon_sym_ascending] = ACTIONS(3359), + [anon_sym_descending] = ACTIONS(3359), + [anon_sym_group] = ACTIONS(3359), + [anon_sym_by] = ACTIONS(3359), + [anon_sym_select] = ACTIONS(3359), + [aux_sym_preproc_if_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token3] = ACTIONS(3361), + [aux_sym_preproc_else_token1] = ACTIONS(3361), + [aux_sym_preproc_elif_token1] = ACTIONS(3361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452451,6 +452486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2764] = { + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2764), [sym_preproc_endregion] = STATE(2764), [sym_preproc_line] = STATE(2764), @@ -452460,69 +452499,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2764), [sym_preproc_define] = STATE(2764), [sym_preproc_undef] = STATE(2764), - [sym__identifier_token] = ACTIONS(4563), - [anon_sym_extern] = ACTIONS(4563), - [anon_sym_alias] = ACTIONS(4563), - [anon_sym_global] = ACTIONS(4563), - [anon_sym_using] = ACTIONS(4563), - [anon_sym_unsafe] = ACTIONS(4563), - [anon_sym_static] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4565), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_event] = ACTIONS(4563), - [anon_sym_namespace] = ACTIONS(4563), - [anon_sym_class] = ACTIONS(4563), - [anon_sym_ref] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4563), - [anon_sym_enum] = ACTIONS(4563), - [anon_sym_RBRACE] = ACTIONS(4565), - [anon_sym_interface] = ACTIONS(4563), - [anon_sym_delegate] = ACTIONS(4563), - [anon_sym_record] = ACTIONS(4563), - [anon_sym_abstract] = ACTIONS(4563), - [anon_sym_async] = ACTIONS(4563), - [anon_sym_const] = ACTIONS(4563), - [anon_sym_file] = ACTIONS(4563), - [anon_sym_fixed] = ACTIONS(4563), - [anon_sym_internal] = ACTIONS(4563), - [anon_sym_new] = ACTIONS(4563), - [anon_sym_override] = ACTIONS(4563), - [anon_sym_partial] = ACTIONS(4563), - [anon_sym_private] = ACTIONS(4563), - [anon_sym_protected] = ACTIONS(4563), - [anon_sym_public] = ACTIONS(4563), - [anon_sym_readonly] = ACTIONS(4563), - [anon_sym_required] = ACTIONS(4563), - [anon_sym_sealed] = ACTIONS(4563), - [anon_sym_virtual] = ACTIONS(4563), - [anon_sym_volatile] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(4563), - [anon_sym_notnull] = ACTIONS(4563), - [anon_sym_unmanaged] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4565), - [anon_sym_implicit] = ACTIONS(4563), - [anon_sym_explicit] = ACTIONS(4563), - [anon_sym_scoped] = ACTIONS(4563), - [anon_sym_var] = ACTIONS(4563), - [sym_predefined_type] = ACTIONS(4563), - [anon_sym_yield] = ACTIONS(4563), - [anon_sym_when] = ACTIONS(4563), - [anon_sym_from] = ACTIONS(4563), - [anon_sym_into] = ACTIONS(4563), - [anon_sym_join] = ACTIONS(4563), - [anon_sym_on] = ACTIONS(4563), - [anon_sym_equals] = ACTIONS(4563), - [anon_sym_let] = ACTIONS(4563), - [anon_sym_orderby] = ACTIONS(4563), - [anon_sym_ascending] = ACTIONS(4563), - [anon_sym_descending] = ACTIONS(4563), - [anon_sym_group] = ACTIONS(4563), - [anon_sym_by] = ACTIONS(4563), - [anon_sym_select] = ACTIONS(4563), - [aux_sym_preproc_if_token1] = ACTIONS(4565), - [aux_sym_preproc_if_token3] = ACTIONS(4565), - [aux_sym_preproc_else_token1] = ACTIONS(4565), - [aux_sym_preproc_elif_token1] = ACTIONS(4565), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452544,69 +452579,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2765), [sym_preproc_define] = STATE(2765), [sym_preproc_undef] = STATE(2765), - [sym__identifier_token] = ACTIONS(4567), - [anon_sym_extern] = ACTIONS(4567), - [anon_sym_alias] = ACTIONS(4567), - [anon_sym_global] = ACTIONS(4567), - [anon_sym_using] = ACTIONS(4567), - [anon_sym_unsafe] = ACTIONS(4567), - [anon_sym_static] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_event] = ACTIONS(4567), - [anon_sym_namespace] = ACTIONS(4567), - [anon_sym_class] = ACTIONS(4567), - [anon_sym_ref] = ACTIONS(4567), - [anon_sym_struct] = ACTIONS(4567), - [anon_sym_enum] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4569), - [anon_sym_interface] = ACTIONS(4567), - [anon_sym_delegate] = ACTIONS(4567), - [anon_sym_record] = ACTIONS(4567), - [anon_sym_abstract] = ACTIONS(4567), - [anon_sym_async] = ACTIONS(4567), - [anon_sym_const] = ACTIONS(4567), - [anon_sym_file] = ACTIONS(4567), - [anon_sym_fixed] = ACTIONS(4567), - [anon_sym_internal] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_override] = ACTIONS(4567), - [anon_sym_partial] = ACTIONS(4567), - [anon_sym_private] = ACTIONS(4567), - [anon_sym_protected] = ACTIONS(4567), - [anon_sym_public] = ACTIONS(4567), - [anon_sym_readonly] = ACTIONS(4567), - [anon_sym_required] = ACTIONS(4567), - [anon_sym_sealed] = ACTIONS(4567), - [anon_sym_virtual] = ACTIONS(4567), - [anon_sym_volatile] = ACTIONS(4567), - [anon_sym_where] = ACTIONS(4567), - [anon_sym_notnull] = ACTIONS(4567), - [anon_sym_unmanaged] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4569), - [anon_sym_implicit] = ACTIONS(4567), - [anon_sym_explicit] = ACTIONS(4567), - [anon_sym_scoped] = ACTIONS(4567), - [anon_sym_var] = ACTIONS(4567), - [sym_predefined_type] = ACTIONS(4567), - [anon_sym_yield] = ACTIONS(4567), - [anon_sym_when] = ACTIONS(4567), - [anon_sym_from] = ACTIONS(4567), - [anon_sym_into] = ACTIONS(4567), - [anon_sym_join] = ACTIONS(4567), - [anon_sym_on] = ACTIONS(4567), - [anon_sym_equals] = ACTIONS(4567), - [anon_sym_let] = ACTIONS(4567), - [anon_sym_orderby] = ACTIONS(4567), - [anon_sym_ascending] = ACTIONS(4567), - [anon_sym_descending] = ACTIONS(4567), - [anon_sym_group] = ACTIONS(4567), - [anon_sym_by] = ACTIONS(4567), - [anon_sym_select] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4569), - [aux_sym_preproc_if_token3] = ACTIONS(4569), - [aux_sym_preproc_else_token1] = ACTIONS(4569), - [aux_sym_preproc_elif_token1] = ACTIONS(4569), + [sym__identifier_token] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_alias] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_event] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_ref] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_delegate] = ACTIONS(3367), + [anon_sym_record] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_file] = ACTIONS(3367), + [anon_sym_fixed] = ACTIONS(3367), + [anon_sym_internal] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_partial] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_required] = ACTIONS(3367), + [anon_sym_sealed] = ACTIONS(3367), + [anon_sym_virtual] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [anon_sym_where] = ACTIONS(3367), + [anon_sym_notnull] = ACTIONS(3367), + [anon_sym_unmanaged] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_implicit] = ACTIONS(3367), + [anon_sym_explicit] = ACTIONS(3367), + [anon_sym_scoped] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [sym_predefined_type] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3367), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_into] = ACTIONS(3367), + [anon_sym_join] = ACTIONS(3367), + [anon_sym_on] = ACTIONS(3367), + [anon_sym_equals] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_orderby] = ACTIONS(3367), + [anon_sym_ascending] = ACTIONS(3367), + [anon_sym_descending] = ACTIONS(3367), + [anon_sym_group] = ACTIONS(3367), + [anon_sym_by] = ACTIONS(3367), + [anon_sym_select] = ACTIONS(3367), + [aux_sym_preproc_if_token1] = ACTIONS(3369), + [aux_sym_preproc_if_token3] = ACTIONS(3369), + [aux_sym_preproc_else_token1] = ACTIONS(3369), + [aux_sym_preproc_elif_token1] = ACTIONS(3369), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452628,69 +452663,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2766), [sym_preproc_define] = STATE(2766), [sym_preproc_undef] = STATE(2766), - [sym__identifier_token] = ACTIONS(4571), - [anon_sym_extern] = ACTIONS(4571), - [anon_sym_alias] = ACTIONS(4571), - [anon_sym_global] = ACTIONS(4571), - [anon_sym_using] = ACTIONS(4571), - [anon_sym_unsafe] = ACTIONS(4571), - [anon_sym_static] = ACTIONS(4571), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_event] = ACTIONS(4571), - [anon_sym_namespace] = ACTIONS(4571), - [anon_sym_class] = ACTIONS(4571), - [anon_sym_ref] = ACTIONS(4571), - [anon_sym_struct] = ACTIONS(4571), - [anon_sym_enum] = ACTIONS(4571), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_interface] = ACTIONS(4571), - [anon_sym_delegate] = ACTIONS(4571), - [anon_sym_record] = ACTIONS(4571), - [anon_sym_abstract] = ACTIONS(4571), - [anon_sym_async] = ACTIONS(4571), - [anon_sym_const] = ACTIONS(4571), - [anon_sym_file] = ACTIONS(4571), - [anon_sym_fixed] = ACTIONS(4571), - [anon_sym_internal] = ACTIONS(4571), - [anon_sym_new] = ACTIONS(4571), - [anon_sym_override] = ACTIONS(4571), - [anon_sym_partial] = ACTIONS(4571), - [anon_sym_private] = ACTIONS(4571), - [anon_sym_protected] = ACTIONS(4571), - [anon_sym_public] = ACTIONS(4571), - [anon_sym_readonly] = ACTIONS(4571), - [anon_sym_required] = ACTIONS(4571), - [anon_sym_sealed] = ACTIONS(4571), - [anon_sym_virtual] = ACTIONS(4571), - [anon_sym_volatile] = ACTIONS(4571), - [anon_sym_where] = ACTIONS(4571), - [anon_sym_notnull] = ACTIONS(4571), - [anon_sym_unmanaged] = ACTIONS(4571), - [anon_sym_TILDE] = ACTIONS(4573), - [anon_sym_implicit] = ACTIONS(4571), - [anon_sym_explicit] = ACTIONS(4571), - [anon_sym_scoped] = ACTIONS(4571), - [anon_sym_var] = ACTIONS(4571), - [sym_predefined_type] = ACTIONS(4571), - [anon_sym_yield] = ACTIONS(4571), - [anon_sym_when] = ACTIONS(4571), - [anon_sym_from] = ACTIONS(4571), - [anon_sym_into] = ACTIONS(4571), - [anon_sym_join] = ACTIONS(4571), - [anon_sym_on] = ACTIONS(4571), - [anon_sym_equals] = ACTIONS(4571), - [anon_sym_let] = ACTIONS(4571), - [anon_sym_orderby] = ACTIONS(4571), - [anon_sym_ascending] = ACTIONS(4571), - [anon_sym_descending] = ACTIONS(4571), - [anon_sym_group] = ACTIONS(4571), - [anon_sym_by] = ACTIONS(4571), - [anon_sym_select] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4573), - [aux_sym_preproc_if_token3] = ACTIONS(4573), - [aux_sym_preproc_else_token1] = ACTIONS(4573), - [aux_sym_preproc_elif_token1] = ACTIONS(4573), + [sym__identifier_token] = ACTIONS(3423), + [anon_sym_extern] = ACTIONS(3423), + [anon_sym_alias] = ACTIONS(3423), + [anon_sym_global] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_unsafe] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_event] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_ref] = ACTIONS(3423), + [anon_sym_struct] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_delegate] = ACTIONS(3423), + [anon_sym_record] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_file] = ACTIONS(3423), + [anon_sym_fixed] = ACTIONS(3423), + [anon_sym_internal] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_partial] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_required] = ACTIONS(3423), + [anon_sym_sealed] = ACTIONS(3423), + [anon_sym_virtual] = ACTIONS(3423), + [anon_sym_volatile] = ACTIONS(3423), + [anon_sym_where] = ACTIONS(3423), + [anon_sym_notnull] = ACTIONS(3423), + [anon_sym_unmanaged] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_implicit] = ACTIONS(3423), + [anon_sym_explicit] = ACTIONS(3423), + [anon_sym_scoped] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [sym_predefined_type] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_when] = ACTIONS(3423), + [anon_sym_from] = ACTIONS(3423), + [anon_sym_into] = ACTIONS(3423), + [anon_sym_join] = ACTIONS(3423), + [anon_sym_on] = ACTIONS(3423), + [anon_sym_equals] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_orderby] = ACTIONS(3423), + [anon_sym_ascending] = ACTIONS(3423), + [anon_sym_descending] = ACTIONS(3423), + [anon_sym_group] = ACTIONS(3423), + [anon_sym_by] = ACTIONS(3423), + [anon_sym_select] = ACTIONS(3423), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token3] = ACTIONS(3425), + [aux_sym_preproc_else_token1] = ACTIONS(3425), + [aux_sym_preproc_elif_token1] = ACTIONS(3425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452712,69 +452747,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2767), [sym_preproc_define] = STATE(2767), [sym_preproc_undef] = STATE(2767), - [sym__identifier_token] = ACTIONS(4575), - [anon_sym_extern] = ACTIONS(4575), - [anon_sym_alias] = ACTIONS(4575), - [anon_sym_global] = ACTIONS(4575), - [anon_sym_using] = ACTIONS(4575), - [anon_sym_unsafe] = ACTIONS(4575), - [anon_sym_static] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_event] = ACTIONS(4575), - [anon_sym_namespace] = ACTIONS(4575), - [anon_sym_class] = ACTIONS(4575), - [anon_sym_ref] = ACTIONS(4575), - [anon_sym_struct] = ACTIONS(4575), - [anon_sym_enum] = ACTIONS(4575), - [anon_sym_RBRACE] = ACTIONS(4577), - [anon_sym_interface] = ACTIONS(4575), - [anon_sym_delegate] = ACTIONS(4575), - [anon_sym_record] = ACTIONS(4575), - [anon_sym_abstract] = ACTIONS(4575), - [anon_sym_async] = ACTIONS(4575), - [anon_sym_const] = ACTIONS(4575), - [anon_sym_file] = ACTIONS(4575), - [anon_sym_fixed] = ACTIONS(4575), - [anon_sym_internal] = ACTIONS(4575), - [anon_sym_new] = ACTIONS(4575), - [anon_sym_override] = ACTIONS(4575), - [anon_sym_partial] = ACTIONS(4575), - [anon_sym_private] = ACTIONS(4575), - [anon_sym_protected] = ACTIONS(4575), - [anon_sym_public] = ACTIONS(4575), - [anon_sym_readonly] = ACTIONS(4575), - [anon_sym_required] = ACTIONS(4575), - [anon_sym_sealed] = ACTIONS(4575), - [anon_sym_virtual] = ACTIONS(4575), - [anon_sym_volatile] = ACTIONS(4575), - [anon_sym_where] = ACTIONS(4575), - [anon_sym_notnull] = ACTIONS(4575), - [anon_sym_unmanaged] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4577), - [anon_sym_implicit] = ACTIONS(4575), - [anon_sym_explicit] = ACTIONS(4575), - [anon_sym_scoped] = ACTIONS(4575), - [anon_sym_var] = ACTIONS(4575), - [sym_predefined_type] = ACTIONS(4575), - [anon_sym_yield] = ACTIONS(4575), - [anon_sym_when] = ACTIONS(4575), - [anon_sym_from] = ACTIONS(4575), - [anon_sym_into] = ACTIONS(4575), - [anon_sym_join] = ACTIONS(4575), - [anon_sym_on] = ACTIONS(4575), - [anon_sym_equals] = ACTIONS(4575), - [anon_sym_let] = ACTIONS(4575), - [anon_sym_orderby] = ACTIONS(4575), - [anon_sym_ascending] = ACTIONS(4575), - [anon_sym_descending] = ACTIONS(4575), - [anon_sym_group] = ACTIONS(4575), - [anon_sym_by] = ACTIONS(4575), - [anon_sym_select] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4577), - [aux_sym_preproc_if_token3] = ACTIONS(4577), - [aux_sym_preproc_else_token1] = ACTIONS(4577), - [aux_sym_preproc_elif_token1] = ACTIONS(4577), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4186), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_EQ_GT] = ACTIONS(4186), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_when] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_on] = ACTIONS(4186), + [anon_sym_equals] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), + [aux_sym_preproc_if_token3] = ACTIONS(4186), + [aux_sym_preproc_else_token1] = ACTIONS(4186), + [aux_sym_preproc_elif_token1] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452796,69 +452831,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2768), [sym_preproc_define] = STATE(2768), [sym_preproc_undef] = STATE(2768), - [sym__identifier_token] = ACTIONS(4579), - [anon_sym_extern] = ACTIONS(4579), - [anon_sym_alias] = ACTIONS(4579), - [anon_sym_global] = ACTIONS(4579), - [anon_sym_using] = ACTIONS(4579), - [anon_sym_unsafe] = ACTIONS(4579), - [anon_sym_static] = ACTIONS(4579), - [anon_sym_LBRACK] = ACTIONS(4581), - [anon_sym_LPAREN] = ACTIONS(4581), - [anon_sym_event] = ACTIONS(4579), - [anon_sym_namespace] = ACTIONS(4579), - [anon_sym_class] = ACTIONS(4579), - [anon_sym_ref] = ACTIONS(4579), - [anon_sym_struct] = ACTIONS(4579), - [anon_sym_enum] = ACTIONS(4579), - [anon_sym_RBRACE] = ACTIONS(4581), - [anon_sym_interface] = ACTIONS(4579), - [anon_sym_delegate] = ACTIONS(4579), - [anon_sym_record] = ACTIONS(4579), - [anon_sym_abstract] = ACTIONS(4579), - [anon_sym_async] = ACTIONS(4579), - [anon_sym_const] = ACTIONS(4579), - [anon_sym_file] = ACTIONS(4579), - [anon_sym_fixed] = ACTIONS(4579), - [anon_sym_internal] = ACTIONS(4579), - [anon_sym_new] = ACTIONS(4579), - [anon_sym_override] = ACTIONS(4579), - [anon_sym_partial] = ACTIONS(4579), - [anon_sym_private] = ACTIONS(4579), - [anon_sym_protected] = ACTIONS(4579), - [anon_sym_public] = ACTIONS(4579), - [anon_sym_readonly] = ACTIONS(4579), - [anon_sym_required] = ACTIONS(4579), - [anon_sym_sealed] = ACTIONS(4579), - [anon_sym_virtual] = ACTIONS(4579), - [anon_sym_volatile] = ACTIONS(4579), - [anon_sym_where] = ACTIONS(4579), - [anon_sym_notnull] = ACTIONS(4579), - [anon_sym_unmanaged] = ACTIONS(4579), - [anon_sym_TILDE] = ACTIONS(4581), - [anon_sym_implicit] = ACTIONS(4579), - [anon_sym_explicit] = ACTIONS(4579), - [anon_sym_scoped] = ACTIONS(4579), - [anon_sym_var] = ACTIONS(4579), - [sym_predefined_type] = ACTIONS(4579), - [anon_sym_yield] = ACTIONS(4579), - [anon_sym_when] = ACTIONS(4579), - [anon_sym_from] = ACTIONS(4579), - [anon_sym_into] = ACTIONS(4579), - [anon_sym_join] = ACTIONS(4579), - [anon_sym_on] = ACTIONS(4579), - [anon_sym_equals] = ACTIONS(4579), - [anon_sym_let] = ACTIONS(4579), - [anon_sym_orderby] = ACTIONS(4579), - [anon_sym_ascending] = ACTIONS(4579), - [anon_sym_descending] = ACTIONS(4579), - [anon_sym_group] = ACTIONS(4579), - [anon_sym_by] = ACTIONS(4579), - [anon_sym_select] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4581), - [aux_sym_preproc_if_token3] = ACTIONS(4581), - [aux_sym_preproc_else_token1] = ACTIONS(4581), - [aux_sym_preproc_elif_token1] = ACTIONS(4581), + [sym__identifier_token] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(3375), + [anon_sym_alias] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_event] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_ref] = ACTIONS(3375), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_delegate] = ACTIONS(3375), + [anon_sym_record] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_file] = ACTIONS(3375), + [anon_sym_fixed] = ACTIONS(3375), + [anon_sym_internal] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_partial] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_required] = ACTIONS(3375), + [anon_sym_sealed] = ACTIONS(3375), + [anon_sym_virtual] = ACTIONS(3375), + [anon_sym_volatile] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_notnull] = ACTIONS(3375), + [anon_sym_unmanaged] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_implicit] = ACTIONS(3375), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_scoped] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [sym_predefined_type] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_when] = ACTIONS(3375), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_into] = ACTIONS(3375), + [anon_sym_join] = ACTIONS(3375), + [anon_sym_on] = ACTIONS(3375), + [anon_sym_equals] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_orderby] = ACTIONS(3375), + [anon_sym_ascending] = ACTIONS(3375), + [anon_sym_descending] = ACTIONS(3375), + [anon_sym_group] = ACTIONS(3375), + [anon_sym_by] = ACTIONS(3375), + [anon_sym_select] = ACTIONS(3375), + [aux_sym_preproc_if_token1] = ACTIONS(3377), + [aux_sym_preproc_if_token3] = ACTIONS(3377), + [aux_sym_preproc_else_token1] = ACTIONS(3377), + [aux_sym_preproc_elif_token1] = ACTIONS(3377), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452880,69 +452915,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2769), [sym_preproc_define] = STATE(2769), [sym_preproc_undef] = STATE(2769), - [sym__identifier_token] = ACTIONS(4583), - [anon_sym_extern] = ACTIONS(4583), - [anon_sym_alias] = ACTIONS(4583), - [anon_sym_global] = ACTIONS(4583), - [anon_sym_using] = ACTIONS(4583), - [anon_sym_unsafe] = ACTIONS(4583), - [anon_sym_static] = ACTIONS(4583), - [anon_sym_LBRACK] = ACTIONS(4585), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_event] = ACTIONS(4583), - [anon_sym_namespace] = ACTIONS(4583), - [anon_sym_class] = ACTIONS(4583), - [anon_sym_ref] = ACTIONS(4583), - [anon_sym_struct] = ACTIONS(4583), - [anon_sym_enum] = ACTIONS(4583), - [anon_sym_RBRACE] = ACTIONS(4585), - [anon_sym_interface] = ACTIONS(4583), - [anon_sym_delegate] = ACTIONS(4583), - [anon_sym_record] = ACTIONS(4583), - [anon_sym_abstract] = ACTIONS(4583), - [anon_sym_async] = ACTIONS(4583), - [anon_sym_const] = ACTIONS(4583), - [anon_sym_file] = ACTIONS(4583), - [anon_sym_fixed] = ACTIONS(4583), - [anon_sym_internal] = ACTIONS(4583), - [anon_sym_new] = ACTIONS(4583), - [anon_sym_override] = ACTIONS(4583), - [anon_sym_partial] = ACTIONS(4583), - [anon_sym_private] = ACTIONS(4583), - [anon_sym_protected] = ACTIONS(4583), - [anon_sym_public] = ACTIONS(4583), - [anon_sym_readonly] = ACTIONS(4583), - [anon_sym_required] = ACTIONS(4583), - [anon_sym_sealed] = ACTIONS(4583), - [anon_sym_virtual] = ACTIONS(4583), - [anon_sym_volatile] = ACTIONS(4583), - [anon_sym_where] = ACTIONS(4583), - [anon_sym_notnull] = ACTIONS(4583), - [anon_sym_unmanaged] = ACTIONS(4583), - [anon_sym_TILDE] = ACTIONS(4585), - [anon_sym_implicit] = ACTIONS(4583), - [anon_sym_explicit] = ACTIONS(4583), - [anon_sym_scoped] = ACTIONS(4583), - [anon_sym_var] = ACTIONS(4583), - [sym_predefined_type] = ACTIONS(4583), - [anon_sym_yield] = ACTIONS(4583), - [anon_sym_when] = ACTIONS(4583), - [anon_sym_from] = ACTIONS(4583), - [anon_sym_into] = ACTIONS(4583), - [anon_sym_join] = ACTIONS(4583), - [anon_sym_on] = ACTIONS(4583), - [anon_sym_equals] = ACTIONS(4583), - [anon_sym_let] = ACTIONS(4583), - [anon_sym_orderby] = ACTIONS(4583), - [anon_sym_ascending] = ACTIONS(4583), - [anon_sym_descending] = ACTIONS(4583), - [anon_sym_group] = ACTIONS(4583), - [anon_sym_by] = ACTIONS(4583), - [anon_sym_select] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4585), - [aux_sym_preproc_if_token3] = ACTIONS(4585), - [aux_sym_preproc_else_token1] = ACTIONS(4585), - [aux_sym_preproc_elif_token1] = ACTIONS(4585), + [sym__identifier_token] = ACTIONS(3387), + [anon_sym_extern] = ACTIONS(3387), + [anon_sym_alias] = ACTIONS(3387), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_unsafe] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_event] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_ref] = ACTIONS(3387), + [anon_sym_struct] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_delegate] = ACTIONS(3387), + [anon_sym_record] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_file] = ACTIONS(3387), + [anon_sym_fixed] = ACTIONS(3387), + [anon_sym_internal] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_partial] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_required] = ACTIONS(3387), + [anon_sym_sealed] = ACTIONS(3387), + [anon_sym_virtual] = ACTIONS(3387), + [anon_sym_volatile] = ACTIONS(3387), + [anon_sym_where] = ACTIONS(3387), + [anon_sym_notnull] = ACTIONS(3387), + [anon_sym_unmanaged] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_implicit] = ACTIONS(3387), + [anon_sym_explicit] = ACTIONS(3387), + [anon_sym_scoped] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [sym_predefined_type] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_when] = ACTIONS(3387), + [anon_sym_from] = ACTIONS(3387), + [anon_sym_into] = ACTIONS(3387), + [anon_sym_join] = ACTIONS(3387), + [anon_sym_on] = ACTIONS(3387), + [anon_sym_equals] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_orderby] = ACTIONS(3387), + [anon_sym_ascending] = ACTIONS(3387), + [anon_sym_descending] = ACTIONS(3387), + [anon_sym_group] = ACTIONS(3387), + [anon_sym_by] = ACTIONS(3387), + [anon_sym_select] = ACTIONS(3387), + [aux_sym_preproc_if_token1] = ACTIONS(3389), + [aux_sym_preproc_if_token3] = ACTIONS(3389), + [aux_sym_preproc_else_token1] = ACTIONS(3389), + [aux_sym_preproc_elif_token1] = ACTIONS(3389), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452964,68 +452999,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2770), [sym_preproc_define] = STATE(2770), [sym_preproc_undef] = STATE(2770), - [sym__identifier_token] = ACTIONS(3666), - [anon_sym_alias] = ACTIONS(3666), - [anon_sym_global] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_file] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_where] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_notnull] = ACTIONS(3666), - [anon_sym_unmanaged] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_scoped] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_when] = ACTIONS(3666), - [sym_discard] = ACTIONS(3666), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3666), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_into] = ACTIONS(3666), - [anon_sym_join] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_equals] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_orderby] = ACTIONS(3666), - [anon_sym_ascending] = ACTIONS(3666), - [anon_sym_descending] = ACTIONS(3666), - [anon_sym_group] = ACTIONS(3666), - [anon_sym_by] = ACTIONS(3666), - [anon_sym_select] = ACTIONS(3666), - [anon_sym_as] = ACTIONS(3666), - [anon_sym_is] = ACTIONS(3666), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3666), + [sym__identifier_token] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_unsafe] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_event] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_ref] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_delegate] = ACTIONS(3395), + [anon_sym_record] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_file] = ACTIONS(3395), + [anon_sym_fixed] = ACTIONS(3395), + [anon_sym_internal] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_partial] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_required] = ACTIONS(3395), + [anon_sym_sealed] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_notnull] = ACTIONS(3395), + [anon_sym_unmanaged] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_implicit] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_scoped] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [sym_predefined_type] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_when] = ACTIONS(3395), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_into] = ACTIONS(3395), + [anon_sym_join] = ACTIONS(3395), + [anon_sym_on] = ACTIONS(3395), + [anon_sym_equals] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_orderby] = ACTIONS(3395), + [anon_sym_ascending] = ACTIONS(3395), + [anon_sym_descending] = ACTIONS(3395), + [anon_sym_group] = ACTIONS(3395), + [anon_sym_by] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3397), + [aux_sym_preproc_if_token3] = ACTIONS(3397), + [aux_sym_preproc_else_token1] = ACTIONS(3397), + [aux_sym_preproc_elif_token1] = ACTIONS(3397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453036,9 +453072,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3668), }, [2771] = { + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2771), [sym_preproc_endregion] = STATE(2771), [sym_preproc_line] = STATE(2771), @@ -453048,69 +453087,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2771), [sym_preproc_define] = STATE(2771), [sym_preproc_undef] = STATE(2771), - [sym__identifier_token] = ACTIONS(4587), - [anon_sym_extern] = ACTIONS(4587), - [anon_sym_alias] = ACTIONS(4587), - [anon_sym_global] = ACTIONS(4587), - [anon_sym_using] = ACTIONS(4587), - [anon_sym_unsafe] = ACTIONS(4587), - [anon_sym_static] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_event] = ACTIONS(4587), - [anon_sym_namespace] = ACTIONS(4587), - [anon_sym_class] = ACTIONS(4587), - [anon_sym_ref] = ACTIONS(4587), - [anon_sym_struct] = ACTIONS(4587), - [anon_sym_enum] = ACTIONS(4587), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_interface] = ACTIONS(4587), - [anon_sym_delegate] = ACTIONS(4587), - [anon_sym_record] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_async] = ACTIONS(4587), - [anon_sym_const] = ACTIONS(4587), - [anon_sym_file] = ACTIONS(4587), - [anon_sym_fixed] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_new] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_partial] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_readonly] = ACTIONS(4587), - [anon_sym_required] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_virtual] = ACTIONS(4587), - [anon_sym_volatile] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_notnull] = ACTIONS(4587), - [anon_sym_unmanaged] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4589), - [anon_sym_implicit] = ACTIONS(4587), - [anon_sym_explicit] = ACTIONS(4587), - [anon_sym_scoped] = ACTIONS(4587), - [anon_sym_var] = ACTIONS(4587), - [sym_predefined_type] = ACTIONS(4587), - [anon_sym_yield] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_from] = ACTIONS(4587), - [anon_sym_into] = ACTIONS(4587), - [anon_sym_join] = ACTIONS(4587), - [anon_sym_on] = ACTIONS(4587), - [anon_sym_equals] = ACTIONS(4587), - [anon_sym_let] = ACTIONS(4587), - [anon_sym_orderby] = ACTIONS(4587), - [anon_sym_ascending] = ACTIONS(4587), - [anon_sym_descending] = ACTIONS(4587), - [anon_sym_group] = ACTIONS(4587), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_select] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4589), - [aux_sym_preproc_if_token3] = ACTIONS(4589), - [aux_sym_preproc_else_token1] = ACTIONS(4589), - [aux_sym_preproc_elif_token1] = ACTIONS(4589), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3929), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453132,69 +453167,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2772), [sym_preproc_define] = STATE(2772), [sym_preproc_undef] = STATE(2772), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3672), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_when] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3672), - [anon_sym_PLUS_EQ] = ACTIONS(3672), - [anon_sym_DASH_EQ] = ACTIONS(3672), - [anon_sym_STAR_EQ] = ACTIONS(3672), - [anon_sym_SLASH_EQ] = ACTIONS(3672), - [anon_sym_PERCENT_EQ] = ACTIONS(3672), - [anon_sym_AMP_EQ] = ACTIONS(3672), - [anon_sym_CARET_EQ] = ACTIONS(3672), - [anon_sym_PIPE_EQ] = ACTIONS(3672), - [anon_sym_LT_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [sym__identifier_token] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym_alias] = ACTIONS(3399), + [anon_sym_global] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_unsafe] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_event] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_ref] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_delegate] = ACTIONS(3399), + [anon_sym_record] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_file] = ACTIONS(3399), + [anon_sym_fixed] = ACTIONS(3399), + [anon_sym_internal] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_partial] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_required] = ACTIONS(3399), + [anon_sym_sealed] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_where] = ACTIONS(3399), + [anon_sym_notnull] = ACTIONS(3399), + [anon_sym_unmanaged] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_implicit] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_scoped] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [sym_predefined_type] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_when] = ACTIONS(3399), + [anon_sym_from] = ACTIONS(3399), + [anon_sym_into] = ACTIONS(3399), + [anon_sym_join] = ACTIONS(3399), + [anon_sym_on] = ACTIONS(3399), + [anon_sym_equals] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_orderby] = ACTIONS(3399), + [anon_sym_ascending] = ACTIONS(3399), + [anon_sym_descending] = ACTIONS(3399), + [anon_sym_group] = ACTIONS(3399), + [anon_sym_by] = ACTIONS(3399), + [anon_sym_select] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3401), + [aux_sym_preproc_if_token3] = ACTIONS(3401), + [aux_sym_preproc_else_token1] = ACTIONS(3401), + [aux_sym_preproc_elif_token1] = ACTIONS(3401), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453216,69 +453251,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2773), [sym_preproc_define] = STATE(2773), [sym_preproc_undef] = STATE(2773), - [sym__identifier_token] = ACTIONS(4591), - [anon_sym_extern] = ACTIONS(4591), - [anon_sym_alias] = ACTIONS(4591), - [anon_sym_global] = ACTIONS(4591), - [anon_sym_using] = ACTIONS(4591), - [anon_sym_unsafe] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_event] = ACTIONS(4591), - [anon_sym_namespace] = ACTIONS(4591), - [anon_sym_class] = ACTIONS(4591), - [anon_sym_ref] = ACTIONS(4591), - [anon_sym_struct] = ACTIONS(4591), - [anon_sym_enum] = ACTIONS(4591), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_interface] = ACTIONS(4591), - [anon_sym_delegate] = ACTIONS(4591), - [anon_sym_record] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_async] = ACTIONS(4591), - [anon_sym_const] = ACTIONS(4591), - [anon_sym_file] = ACTIONS(4591), - [anon_sym_fixed] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_new] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_partial] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_readonly] = ACTIONS(4591), - [anon_sym_required] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_virtual] = ACTIONS(4591), - [anon_sym_volatile] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_notnull] = ACTIONS(4591), - [anon_sym_unmanaged] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4593), - [anon_sym_implicit] = ACTIONS(4591), - [anon_sym_explicit] = ACTIONS(4591), - [anon_sym_scoped] = ACTIONS(4591), - [anon_sym_var] = ACTIONS(4591), - [sym_predefined_type] = ACTIONS(4591), - [anon_sym_yield] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_from] = ACTIONS(4591), - [anon_sym_into] = ACTIONS(4591), - [anon_sym_join] = ACTIONS(4591), - [anon_sym_on] = ACTIONS(4591), - [anon_sym_equals] = ACTIONS(4591), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_orderby] = ACTIONS(4591), - [anon_sym_ascending] = ACTIONS(4591), - [anon_sym_descending] = ACTIONS(4591), - [anon_sym_group] = ACTIONS(4591), - [anon_sym_by] = ACTIONS(4591), - [anon_sym_select] = ACTIONS(4591), - [aux_sym_preproc_if_token1] = ACTIONS(4593), - [aux_sym_preproc_if_token3] = ACTIONS(4593), - [aux_sym_preproc_else_token1] = ACTIONS(4593), - [aux_sym_preproc_elif_token1] = ACTIONS(4593), + [sym__identifier_token] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym_alias] = ACTIONS(3443), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_unsafe] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_event] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_ref] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_delegate] = ACTIONS(3443), + [anon_sym_record] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_file] = ACTIONS(3443), + [anon_sym_fixed] = ACTIONS(3443), + [anon_sym_internal] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_partial] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_required] = ACTIONS(3443), + [anon_sym_sealed] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_where] = ACTIONS(3443), + [anon_sym_notnull] = ACTIONS(3443), + [anon_sym_unmanaged] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_implicit] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_scoped] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [sym_predefined_type] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_when] = ACTIONS(3443), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_into] = ACTIONS(3443), + [anon_sym_join] = ACTIONS(3443), + [anon_sym_on] = ACTIONS(3443), + [anon_sym_equals] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_orderby] = ACTIONS(3443), + [anon_sym_ascending] = ACTIONS(3443), + [anon_sym_descending] = ACTIONS(3443), + [anon_sym_group] = ACTIONS(3443), + [anon_sym_by] = ACTIONS(3443), + [anon_sym_select] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3445), + [aux_sym_preproc_if_token3] = ACTIONS(3445), + [aux_sym_preproc_else_token1] = ACTIONS(3445), + [aux_sym_preproc_elif_token1] = ACTIONS(3445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453287,82 +453322,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2774] = { - [sym_preproc_region] = STATE(2774), - [sym_preproc_endregion] = STATE(2774), - [sym_preproc_line] = STATE(2774), - [sym_preproc_pragma] = STATE(2774), - [sym_preproc_nullable] = STATE(2774), - [sym_preproc_error] = STATE(2774), - [sym_preproc_warning] = STATE(2774), - [sym_preproc_define] = STATE(2774), - [sym_preproc_undef] = STATE(2774), - [sym__identifier_token] = ACTIONS(4595), - [anon_sym_extern] = ACTIONS(4595), - [anon_sym_alias] = ACTIONS(4595), - [anon_sym_global] = ACTIONS(4595), - [anon_sym_using] = ACTIONS(4595), - [anon_sym_unsafe] = ACTIONS(4595), - [anon_sym_static] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_event] = ACTIONS(4595), - [anon_sym_namespace] = ACTIONS(4595), - [anon_sym_class] = ACTIONS(4595), - [anon_sym_ref] = ACTIONS(4595), - [anon_sym_struct] = ACTIONS(4595), - [anon_sym_enum] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_interface] = ACTIONS(4595), - [anon_sym_delegate] = ACTIONS(4595), - [anon_sym_record] = ACTIONS(4595), - [anon_sym_abstract] = ACTIONS(4595), - [anon_sym_async] = ACTIONS(4595), - [anon_sym_const] = ACTIONS(4595), - [anon_sym_file] = ACTIONS(4595), - [anon_sym_fixed] = ACTIONS(4595), - [anon_sym_internal] = ACTIONS(4595), - [anon_sym_new] = ACTIONS(4595), - [anon_sym_override] = ACTIONS(4595), - [anon_sym_partial] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4595), - [anon_sym_protected] = ACTIONS(4595), - [anon_sym_public] = ACTIONS(4595), - [anon_sym_readonly] = ACTIONS(4595), - [anon_sym_required] = ACTIONS(4595), - [anon_sym_sealed] = ACTIONS(4595), - [anon_sym_virtual] = ACTIONS(4595), - [anon_sym_volatile] = ACTIONS(4595), - [anon_sym_where] = ACTIONS(4595), - [anon_sym_notnull] = ACTIONS(4595), - [anon_sym_unmanaged] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4597), - [anon_sym_implicit] = ACTIONS(4595), - [anon_sym_explicit] = ACTIONS(4595), - [anon_sym_scoped] = ACTIONS(4595), - [anon_sym_var] = ACTIONS(4595), - [sym_predefined_type] = ACTIONS(4595), - [anon_sym_yield] = ACTIONS(4595), - [anon_sym_when] = ACTIONS(4595), - [anon_sym_from] = ACTIONS(4595), - [anon_sym_into] = ACTIONS(4595), - [anon_sym_join] = ACTIONS(4595), - [anon_sym_on] = ACTIONS(4595), - [anon_sym_equals] = ACTIONS(4595), - [anon_sym_let] = ACTIONS(4595), - [anon_sym_orderby] = ACTIONS(4595), - [anon_sym_ascending] = ACTIONS(4595), - [anon_sym_descending] = ACTIONS(4595), - [anon_sym_group] = ACTIONS(4595), - [anon_sym_by] = ACTIONS(4595), - [anon_sym_select] = ACTIONS(4595), - [aux_sym_preproc_if_token1] = ACTIONS(4597), - [aux_sym_preproc_if_token3] = ACTIONS(4597), - [aux_sym_preproc_else_token1] = ACTIONS(4597), - [aux_sym_preproc_elif_token1] = ACTIONS(4597), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2774] = { + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2774), + [sym_preproc_endregion] = STATE(2774), + [sym_preproc_line] = STATE(2774), + [sym_preproc_pragma] = STATE(2774), + [sym_preproc_nullable] = STATE(2774), + [sym_preproc_error] = STATE(2774), + [sym_preproc_warning] = STATE(2774), + [sym_preproc_define] = STATE(2774), + [sym_preproc_undef] = STATE(2774), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3933), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453375,6 +453410,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2775] = { + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2775), [sym_preproc_endregion] = STATE(2775), [sym_preproc_line] = STATE(2775), @@ -453384,69 +453423,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2775), [sym_preproc_define] = STATE(2775), [sym_preproc_undef] = STATE(2775), - [sym__identifier_token] = ACTIONS(4599), - [anon_sym_extern] = ACTIONS(4599), - [anon_sym_alias] = ACTIONS(4599), - [anon_sym_global] = ACTIONS(4599), - [anon_sym_using] = ACTIONS(4599), - [anon_sym_unsafe] = ACTIONS(4599), - [anon_sym_static] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_LPAREN] = ACTIONS(4601), - [anon_sym_event] = ACTIONS(4599), - [anon_sym_namespace] = ACTIONS(4599), - [anon_sym_class] = ACTIONS(4599), - [anon_sym_ref] = ACTIONS(4599), - [anon_sym_struct] = ACTIONS(4599), - [anon_sym_enum] = ACTIONS(4599), - [anon_sym_RBRACE] = ACTIONS(4601), - [anon_sym_interface] = ACTIONS(4599), - [anon_sym_delegate] = ACTIONS(4599), - [anon_sym_record] = ACTIONS(4599), - [anon_sym_abstract] = ACTIONS(4599), - [anon_sym_async] = ACTIONS(4599), - [anon_sym_const] = ACTIONS(4599), - [anon_sym_file] = ACTIONS(4599), - [anon_sym_fixed] = ACTIONS(4599), - [anon_sym_internal] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_override] = ACTIONS(4599), - [anon_sym_partial] = ACTIONS(4599), - [anon_sym_private] = ACTIONS(4599), - [anon_sym_protected] = ACTIONS(4599), - [anon_sym_public] = ACTIONS(4599), - [anon_sym_readonly] = ACTIONS(4599), - [anon_sym_required] = ACTIONS(4599), - [anon_sym_sealed] = ACTIONS(4599), - [anon_sym_virtual] = ACTIONS(4599), - [anon_sym_volatile] = ACTIONS(4599), - [anon_sym_where] = ACTIONS(4599), - [anon_sym_notnull] = ACTIONS(4599), - [anon_sym_unmanaged] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4601), - [anon_sym_implicit] = ACTIONS(4599), - [anon_sym_explicit] = ACTIONS(4599), - [anon_sym_scoped] = ACTIONS(4599), - [anon_sym_var] = ACTIONS(4599), - [sym_predefined_type] = ACTIONS(4599), - [anon_sym_yield] = ACTIONS(4599), - [anon_sym_when] = ACTIONS(4599), - [anon_sym_from] = ACTIONS(4599), - [anon_sym_into] = ACTIONS(4599), - [anon_sym_join] = ACTIONS(4599), - [anon_sym_on] = ACTIONS(4599), - [anon_sym_equals] = ACTIONS(4599), - [anon_sym_let] = ACTIONS(4599), - [anon_sym_orderby] = ACTIONS(4599), - [anon_sym_ascending] = ACTIONS(4599), - [anon_sym_descending] = ACTIONS(4599), - [anon_sym_group] = ACTIONS(4599), - [anon_sym_by] = ACTIONS(4599), - [anon_sym_select] = ACTIONS(4599), - [aux_sym_preproc_if_token1] = ACTIONS(4601), - [aux_sym_preproc_if_token3] = ACTIONS(4601), - [aux_sym_preproc_else_token1] = ACTIONS(4601), - [aux_sym_preproc_elif_token1] = ACTIONS(4601), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3999), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453468,69 +453503,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2776), [sym_preproc_define] = STATE(2776), [sym_preproc_undef] = STATE(2776), - [sym__identifier_token] = ACTIONS(4603), - [anon_sym_extern] = ACTIONS(4603), - [anon_sym_alias] = ACTIONS(4603), - [anon_sym_global] = ACTIONS(4603), - [anon_sym_using] = ACTIONS(4603), - [anon_sym_unsafe] = ACTIONS(4603), - [anon_sym_static] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_event] = ACTIONS(4603), - [anon_sym_namespace] = ACTIONS(4603), - [anon_sym_class] = ACTIONS(4603), - [anon_sym_ref] = ACTIONS(4603), - [anon_sym_struct] = ACTIONS(4603), - [anon_sym_enum] = ACTIONS(4603), - [anon_sym_RBRACE] = ACTIONS(4605), - [anon_sym_interface] = ACTIONS(4603), - [anon_sym_delegate] = ACTIONS(4603), - [anon_sym_record] = ACTIONS(4603), - [anon_sym_abstract] = ACTIONS(4603), - [anon_sym_async] = ACTIONS(4603), - [anon_sym_const] = ACTIONS(4603), - [anon_sym_file] = ACTIONS(4603), - [anon_sym_fixed] = ACTIONS(4603), - [anon_sym_internal] = ACTIONS(4603), - [anon_sym_new] = ACTIONS(4603), - [anon_sym_override] = ACTIONS(4603), - [anon_sym_partial] = ACTIONS(4603), - [anon_sym_private] = ACTIONS(4603), - [anon_sym_protected] = ACTIONS(4603), - [anon_sym_public] = ACTIONS(4603), - [anon_sym_readonly] = ACTIONS(4603), - [anon_sym_required] = ACTIONS(4603), - [anon_sym_sealed] = ACTIONS(4603), - [anon_sym_virtual] = ACTIONS(4603), - [anon_sym_volatile] = ACTIONS(4603), - [anon_sym_where] = ACTIONS(4603), - [anon_sym_notnull] = ACTIONS(4603), - [anon_sym_unmanaged] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4605), - [anon_sym_implicit] = ACTIONS(4603), - [anon_sym_explicit] = ACTIONS(4603), - [anon_sym_scoped] = ACTIONS(4603), - [anon_sym_var] = ACTIONS(4603), - [sym_predefined_type] = ACTIONS(4603), - [anon_sym_yield] = ACTIONS(4603), - [anon_sym_when] = ACTIONS(4603), - [anon_sym_from] = ACTIONS(4603), - [anon_sym_into] = ACTIONS(4603), - [anon_sym_join] = ACTIONS(4603), - [anon_sym_on] = ACTIONS(4603), - [anon_sym_equals] = ACTIONS(4603), - [anon_sym_let] = ACTIONS(4603), - [anon_sym_orderby] = ACTIONS(4603), - [anon_sym_ascending] = ACTIONS(4603), - [anon_sym_descending] = ACTIONS(4603), - [anon_sym_group] = ACTIONS(4603), - [anon_sym_by] = ACTIONS(4603), - [anon_sym_select] = ACTIONS(4603), - [aux_sym_preproc_if_token1] = ACTIONS(4605), - [aux_sym_preproc_if_token3] = ACTIONS(4605), - [aux_sym_preproc_else_token1] = ACTIONS(4605), - [aux_sym_preproc_elif_token1] = ACTIONS(4605), + [sym__identifier_token] = ACTIONS(4513), + [anon_sym_extern] = ACTIONS(4513), + [anon_sym_alias] = ACTIONS(4513), + [anon_sym_global] = ACTIONS(4513), + [anon_sym_using] = ACTIONS(4513), + [anon_sym_unsafe] = ACTIONS(4513), + [anon_sym_static] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_event] = ACTIONS(4513), + [anon_sym_namespace] = ACTIONS(4513), + [anon_sym_class] = ACTIONS(4513), + [anon_sym_ref] = ACTIONS(4513), + [anon_sym_struct] = ACTIONS(4513), + [anon_sym_enum] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_interface] = ACTIONS(4513), + [anon_sym_delegate] = ACTIONS(4513), + [anon_sym_record] = ACTIONS(4513), + [anon_sym_abstract] = ACTIONS(4513), + [anon_sym_async] = ACTIONS(4513), + [anon_sym_const] = ACTIONS(4513), + [anon_sym_file] = ACTIONS(4513), + [anon_sym_fixed] = ACTIONS(4513), + [anon_sym_internal] = ACTIONS(4513), + [anon_sym_new] = ACTIONS(4513), + [anon_sym_override] = ACTIONS(4513), + [anon_sym_partial] = ACTIONS(4513), + [anon_sym_private] = ACTIONS(4513), + [anon_sym_protected] = ACTIONS(4513), + [anon_sym_public] = ACTIONS(4513), + [anon_sym_readonly] = ACTIONS(4513), + [anon_sym_required] = ACTIONS(4513), + [anon_sym_sealed] = ACTIONS(4513), + [anon_sym_virtual] = ACTIONS(4513), + [anon_sym_volatile] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_notnull] = ACTIONS(4513), + [anon_sym_unmanaged] = ACTIONS(4513), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_implicit] = ACTIONS(4513), + [anon_sym_explicit] = ACTIONS(4513), + [anon_sym_scoped] = ACTIONS(4513), + [anon_sym_var] = ACTIONS(4513), + [sym_predefined_type] = ACTIONS(4513), + [anon_sym_yield] = ACTIONS(4513), + [anon_sym_when] = ACTIONS(4513), + [anon_sym_from] = ACTIONS(4513), + [anon_sym_into] = ACTIONS(4513), + [anon_sym_join] = ACTIONS(4513), + [anon_sym_on] = ACTIONS(4513), + [anon_sym_equals] = ACTIONS(4513), + [anon_sym_let] = ACTIONS(4513), + [anon_sym_orderby] = ACTIONS(4513), + [anon_sym_ascending] = ACTIONS(4513), + [anon_sym_descending] = ACTIONS(4513), + [anon_sym_group] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4513), + [anon_sym_select] = ACTIONS(4513), + [aux_sym_preproc_if_token1] = ACTIONS(4515), + [aux_sym_preproc_if_token3] = ACTIONS(4515), + [aux_sym_preproc_else_token1] = ACTIONS(4515), + [aux_sym_preproc_elif_token1] = ACTIONS(4515), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453543,6 +453578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2777] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2777), [sym_preproc_endregion] = STATE(2777), [sym_preproc_line] = STATE(2777), @@ -453552,69 +453591,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2777), [sym_preproc_define] = STATE(2777), [sym_preproc_undef] = STATE(2777), - [sym__identifier_token] = ACTIONS(4607), - [anon_sym_extern] = ACTIONS(4607), - [anon_sym_alias] = ACTIONS(4607), - [anon_sym_global] = ACTIONS(4607), - [anon_sym_using] = ACTIONS(4607), - [anon_sym_unsafe] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4609), - [anon_sym_event] = ACTIONS(4607), - [anon_sym_namespace] = ACTIONS(4607), - [anon_sym_class] = ACTIONS(4607), - [anon_sym_ref] = ACTIONS(4607), - [anon_sym_struct] = ACTIONS(4607), - [anon_sym_enum] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4609), - [anon_sym_interface] = ACTIONS(4607), - [anon_sym_delegate] = ACTIONS(4607), - [anon_sym_record] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_async] = ACTIONS(4607), - [anon_sym_const] = ACTIONS(4607), - [anon_sym_file] = ACTIONS(4607), - [anon_sym_fixed] = ACTIONS(4607), - [anon_sym_internal] = ACTIONS(4607), - [anon_sym_new] = ACTIONS(4607), - [anon_sym_override] = ACTIONS(4607), - [anon_sym_partial] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_protected] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_readonly] = ACTIONS(4607), - [anon_sym_required] = ACTIONS(4607), - [anon_sym_sealed] = ACTIONS(4607), - [anon_sym_virtual] = ACTIONS(4607), - [anon_sym_volatile] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(4607), - [anon_sym_notnull] = ACTIONS(4607), - [anon_sym_unmanaged] = ACTIONS(4607), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_implicit] = ACTIONS(4607), - [anon_sym_explicit] = ACTIONS(4607), - [anon_sym_scoped] = ACTIONS(4607), - [anon_sym_var] = ACTIONS(4607), - [sym_predefined_type] = ACTIONS(4607), - [anon_sym_yield] = ACTIONS(4607), - [anon_sym_when] = ACTIONS(4607), - [anon_sym_from] = ACTIONS(4607), - [anon_sym_into] = ACTIONS(4607), - [anon_sym_join] = ACTIONS(4607), - [anon_sym_on] = ACTIONS(4607), - [anon_sym_equals] = ACTIONS(4607), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_orderby] = ACTIONS(4607), - [anon_sym_ascending] = ACTIONS(4607), - [anon_sym_descending] = ACTIONS(4607), - [anon_sym_group] = ACTIONS(4607), - [anon_sym_by] = ACTIONS(4607), - [anon_sym_select] = ACTIONS(4607), - [aux_sym_preproc_if_token1] = ACTIONS(4609), - [aux_sym_preproc_if_token3] = ACTIONS(4609), - [aux_sym_preproc_else_token1] = ACTIONS(4609), - [aux_sym_preproc_elif_token1] = ACTIONS(4609), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(4003), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453636,79 +453671,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2778), [sym_preproc_define] = STATE(2778), [sym_preproc_undef] = STATE(2778), - [sym__identifier_token] = ACTIONS(4611), - [anon_sym_extern] = ACTIONS(4611), - [anon_sym_alias] = ACTIONS(4611), - [anon_sym_global] = ACTIONS(4611), - [anon_sym_using] = ACTIONS(4611), - [anon_sym_unsafe] = ACTIONS(4611), - [anon_sym_static] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_event] = ACTIONS(4611), - [anon_sym_namespace] = ACTIONS(4611), - [anon_sym_class] = ACTIONS(4611), - [anon_sym_ref] = ACTIONS(4611), - [anon_sym_struct] = ACTIONS(4611), - [anon_sym_enum] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_interface] = ACTIONS(4611), - [anon_sym_delegate] = ACTIONS(4611), - [anon_sym_record] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_async] = ACTIONS(4611), - [anon_sym_const] = ACTIONS(4611), - [anon_sym_file] = ACTIONS(4611), - [anon_sym_fixed] = ACTIONS(4611), - [anon_sym_internal] = ACTIONS(4611), - [anon_sym_new] = ACTIONS(4611), - [anon_sym_override] = ACTIONS(4611), - [anon_sym_partial] = ACTIONS(4611), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_public] = ACTIONS(4611), - [anon_sym_readonly] = ACTIONS(4611), - [anon_sym_required] = ACTIONS(4611), - [anon_sym_sealed] = ACTIONS(4611), - [anon_sym_virtual] = ACTIONS(4611), - [anon_sym_volatile] = ACTIONS(4611), - [anon_sym_where] = ACTIONS(4611), - [anon_sym_notnull] = ACTIONS(4611), - [anon_sym_unmanaged] = ACTIONS(4611), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_implicit] = ACTIONS(4611), - [anon_sym_explicit] = ACTIONS(4611), - [anon_sym_scoped] = ACTIONS(4611), - [anon_sym_var] = ACTIONS(4611), - [sym_predefined_type] = ACTIONS(4611), - [anon_sym_yield] = ACTIONS(4611), - [anon_sym_when] = ACTIONS(4611), - [anon_sym_from] = ACTIONS(4611), - [anon_sym_into] = ACTIONS(4611), - [anon_sym_join] = ACTIONS(4611), - [anon_sym_on] = ACTIONS(4611), - [anon_sym_equals] = ACTIONS(4611), - [anon_sym_let] = ACTIONS(4611), - [anon_sym_orderby] = ACTIONS(4611), - [anon_sym_ascending] = ACTIONS(4611), - [anon_sym_descending] = ACTIONS(4611), - [anon_sym_group] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4611), - [anon_sym_select] = ACTIONS(4611), - [aux_sym_preproc_if_token1] = ACTIONS(4613), - [aux_sym_preproc_if_token3] = ACTIONS(4613), - [aux_sym_preproc_else_token1] = ACTIONS(4613), - [aux_sym_preproc_elif_token1] = ACTIONS(4613), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4421), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, [2779] = { [sym_preproc_region] = STATE(2779), @@ -453720,69 +453755,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2779), [sym_preproc_define] = STATE(2779), [sym_preproc_undef] = STATE(2779), - [sym__identifier_token] = ACTIONS(4615), - [anon_sym_extern] = ACTIONS(4615), - [anon_sym_alias] = ACTIONS(4615), - [anon_sym_global] = ACTIONS(4615), - [anon_sym_using] = ACTIONS(4615), - [anon_sym_unsafe] = ACTIONS(4615), - [anon_sym_static] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym_event] = ACTIONS(4615), - [anon_sym_namespace] = ACTIONS(4615), - [anon_sym_class] = ACTIONS(4615), - [anon_sym_ref] = ACTIONS(4615), - [anon_sym_struct] = ACTIONS(4615), - [anon_sym_enum] = ACTIONS(4615), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_interface] = ACTIONS(4615), - [anon_sym_delegate] = ACTIONS(4615), - [anon_sym_record] = ACTIONS(4615), - [anon_sym_abstract] = ACTIONS(4615), - [anon_sym_async] = ACTIONS(4615), - [anon_sym_const] = ACTIONS(4615), - [anon_sym_file] = ACTIONS(4615), - [anon_sym_fixed] = ACTIONS(4615), - [anon_sym_internal] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_override] = ACTIONS(4615), - [anon_sym_partial] = ACTIONS(4615), - [anon_sym_private] = ACTIONS(4615), - [anon_sym_protected] = ACTIONS(4615), - [anon_sym_public] = ACTIONS(4615), - [anon_sym_readonly] = ACTIONS(4615), - [anon_sym_required] = ACTIONS(4615), - [anon_sym_sealed] = ACTIONS(4615), - [anon_sym_virtual] = ACTIONS(4615), - [anon_sym_volatile] = ACTIONS(4615), - [anon_sym_where] = ACTIONS(4615), - [anon_sym_notnull] = ACTIONS(4615), - [anon_sym_unmanaged] = ACTIONS(4615), - [anon_sym_TILDE] = ACTIONS(4617), - [anon_sym_implicit] = ACTIONS(4615), - [anon_sym_explicit] = ACTIONS(4615), - [anon_sym_scoped] = ACTIONS(4615), - [anon_sym_var] = ACTIONS(4615), - [sym_predefined_type] = ACTIONS(4615), - [anon_sym_yield] = ACTIONS(4615), - [anon_sym_when] = ACTIONS(4615), - [anon_sym_from] = ACTIONS(4615), - [anon_sym_into] = ACTIONS(4615), - [anon_sym_join] = ACTIONS(4615), - [anon_sym_on] = ACTIONS(4615), - [anon_sym_equals] = ACTIONS(4615), - [anon_sym_let] = ACTIONS(4615), - [anon_sym_orderby] = ACTIONS(4615), - [anon_sym_ascending] = ACTIONS(4615), - [anon_sym_descending] = ACTIONS(4615), - [anon_sym_group] = ACTIONS(4615), - [anon_sym_by] = ACTIONS(4615), - [anon_sym_select] = ACTIONS(4615), - [aux_sym_preproc_if_token1] = ACTIONS(4617), - [aux_sym_preproc_if_token3] = ACTIONS(4617), - [aux_sym_preproc_else_token1] = ACTIONS(4617), - [aux_sym_preproc_elif_token1] = ACTIONS(4617), + [sym__identifier_token] = ACTIONS(4519), + [anon_sym_extern] = ACTIONS(4519), + [anon_sym_alias] = ACTIONS(4519), + [anon_sym_global] = ACTIONS(4519), + [anon_sym_using] = ACTIONS(4519), + [anon_sym_unsafe] = ACTIONS(4519), + [anon_sym_static] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_event] = ACTIONS(4519), + [anon_sym_namespace] = ACTIONS(4519), + [anon_sym_class] = ACTIONS(4519), + [anon_sym_ref] = ACTIONS(4519), + [anon_sym_struct] = ACTIONS(4519), + [anon_sym_enum] = ACTIONS(4519), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_interface] = ACTIONS(4519), + [anon_sym_delegate] = ACTIONS(4519), + [anon_sym_record] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_async] = ACTIONS(4519), + [anon_sym_const] = ACTIONS(4519), + [anon_sym_file] = ACTIONS(4519), + [anon_sym_fixed] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_new] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_partial] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_readonly] = ACTIONS(4519), + [anon_sym_required] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_virtual] = ACTIONS(4519), + [anon_sym_volatile] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_notnull] = ACTIONS(4519), + [anon_sym_unmanaged] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4521), + [anon_sym_implicit] = ACTIONS(4519), + [anon_sym_explicit] = ACTIONS(4519), + [anon_sym_scoped] = ACTIONS(4519), + [anon_sym_var] = ACTIONS(4519), + [sym_predefined_type] = ACTIONS(4519), + [anon_sym_yield] = ACTIONS(4519), + [anon_sym_when] = ACTIONS(4519), + [anon_sym_from] = ACTIONS(4519), + [anon_sym_into] = ACTIONS(4519), + [anon_sym_join] = ACTIONS(4519), + [anon_sym_on] = ACTIONS(4519), + [anon_sym_equals] = ACTIONS(4519), + [anon_sym_let] = ACTIONS(4519), + [anon_sym_orderby] = ACTIONS(4519), + [anon_sym_ascending] = ACTIONS(4519), + [anon_sym_descending] = ACTIONS(4519), + [anon_sym_group] = ACTIONS(4519), + [anon_sym_by] = ACTIONS(4519), + [anon_sym_select] = ACTIONS(4519), + [aux_sym_preproc_if_token1] = ACTIONS(4521), + [aux_sym_preproc_if_token3] = ACTIONS(4521), + [aux_sym_preproc_else_token1] = ACTIONS(4521), + [aux_sym_preproc_elif_token1] = ACTIONS(4521), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453804,69 +453839,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2780), [sym_preproc_define] = STATE(2780), [sym_preproc_undef] = STATE(2780), - [sym__identifier_token] = ACTIONS(4619), - [anon_sym_extern] = ACTIONS(4619), - [anon_sym_alias] = ACTIONS(4619), - [anon_sym_global] = ACTIONS(4619), - [anon_sym_using] = ACTIONS(4619), - [anon_sym_unsafe] = ACTIONS(4619), - [anon_sym_static] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_event] = ACTIONS(4619), - [anon_sym_namespace] = ACTIONS(4619), - [anon_sym_class] = ACTIONS(4619), - [anon_sym_ref] = ACTIONS(4619), - [anon_sym_struct] = ACTIONS(4619), - [anon_sym_enum] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_interface] = ACTIONS(4619), - [anon_sym_delegate] = ACTIONS(4619), - [anon_sym_record] = ACTIONS(4619), - [anon_sym_abstract] = ACTIONS(4619), - [anon_sym_async] = ACTIONS(4619), - [anon_sym_const] = ACTIONS(4619), - [anon_sym_file] = ACTIONS(4619), - [anon_sym_fixed] = ACTIONS(4619), - [anon_sym_internal] = ACTIONS(4619), - [anon_sym_new] = ACTIONS(4619), - [anon_sym_override] = ACTIONS(4619), - [anon_sym_partial] = ACTIONS(4619), - [anon_sym_private] = ACTIONS(4619), - [anon_sym_protected] = ACTIONS(4619), - [anon_sym_public] = ACTIONS(4619), - [anon_sym_readonly] = ACTIONS(4619), - [anon_sym_required] = ACTIONS(4619), - [anon_sym_sealed] = ACTIONS(4619), - [anon_sym_virtual] = ACTIONS(4619), - [anon_sym_volatile] = ACTIONS(4619), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_notnull] = ACTIONS(4619), - [anon_sym_unmanaged] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4621), - [anon_sym_implicit] = ACTIONS(4619), - [anon_sym_explicit] = ACTIONS(4619), - [anon_sym_scoped] = ACTIONS(4619), - [anon_sym_var] = ACTIONS(4619), - [sym_predefined_type] = ACTIONS(4619), - [anon_sym_yield] = ACTIONS(4619), - [anon_sym_when] = ACTIONS(4619), - [anon_sym_from] = ACTIONS(4619), - [anon_sym_into] = ACTIONS(4619), - [anon_sym_join] = ACTIONS(4619), - [anon_sym_on] = ACTIONS(4619), - [anon_sym_equals] = ACTIONS(4619), - [anon_sym_let] = ACTIONS(4619), - [anon_sym_orderby] = ACTIONS(4619), - [anon_sym_ascending] = ACTIONS(4619), - [anon_sym_descending] = ACTIONS(4619), - [anon_sym_group] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4619), - [anon_sym_select] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4621), - [aux_sym_preproc_if_token3] = ACTIONS(4621), - [aux_sym_preproc_else_token1] = ACTIONS(4621), - [aux_sym_preproc_elif_token1] = ACTIONS(4621), + [sym__identifier_token] = ACTIONS(4523), + [anon_sym_extern] = ACTIONS(4523), + [anon_sym_alias] = ACTIONS(4523), + [anon_sym_global] = ACTIONS(4523), + [anon_sym_using] = ACTIONS(4523), + [anon_sym_unsafe] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_event] = ACTIONS(4523), + [anon_sym_namespace] = ACTIONS(4523), + [anon_sym_class] = ACTIONS(4523), + [anon_sym_ref] = ACTIONS(4523), + [anon_sym_struct] = ACTIONS(4523), + [anon_sym_enum] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_interface] = ACTIONS(4523), + [anon_sym_delegate] = ACTIONS(4523), + [anon_sym_record] = ACTIONS(4523), + [anon_sym_abstract] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_file] = ACTIONS(4523), + [anon_sym_fixed] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_new] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_partial] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_protected] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_readonly] = ACTIONS(4523), + [anon_sym_required] = ACTIONS(4523), + [anon_sym_sealed] = ACTIONS(4523), + [anon_sym_virtual] = ACTIONS(4523), + [anon_sym_volatile] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_notnull] = ACTIONS(4523), + [anon_sym_unmanaged] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_implicit] = ACTIONS(4523), + [anon_sym_explicit] = ACTIONS(4523), + [anon_sym_scoped] = ACTIONS(4523), + [anon_sym_var] = ACTIONS(4523), + [sym_predefined_type] = ACTIONS(4523), + [anon_sym_yield] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4523), + [anon_sym_from] = ACTIONS(4523), + [anon_sym_into] = ACTIONS(4523), + [anon_sym_join] = ACTIONS(4523), + [anon_sym_on] = ACTIONS(4523), + [anon_sym_equals] = ACTIONS(4523), + [anon_sym_let] = ACTIONS(4523), + [anon_sym_orderby] = ACTIONS(4523), + [anon_sym_ascending] = ACTIONS(4523), + [anon_sym_descending] = ACTIONS(4523), + [anon_sym_group] = ACTIONS(4523), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_select] = ACTIONS(4523), + [aux_sym_preproc_if_token1] = ACTIONS(4525), + [aux_sym_preproc_if_token3] = ACTIONS(4525), + [aux_sym_preproc_else_token1] = ACTIONS(4525), + [aux_sym_preproc_elif_token1] = ACTIONS(4525), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453888,69 +453923,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2781), [sym_preproc_define] = STATE(2781), [sym_preproc_undef] = STATE(2781), - [sym__identifier_token] = ACTIONS(4623), - [anon_sym_extern] = ACTIONS(4623), - [anon_sym_alias] = ACTIONS(4623), - [anon_sym_global] = ACTIONS(4623), - [anon_sym_using] = ACTIONS(4623), - [anon_sym_unsafe] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_event] = ACTIONS(4623), - [anon_sym_namespace] = ACTIONS(4623), - [anon_sym_class] = ACTIONS(4623), - [anon_sym_ref] = ACTIONS(4623), - [anon_sym_struct] = ACTIONS(4623), - [anon_sym_enum] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4625), - [anon_sym_interface] = ACTIONS(4623), - [anon_sym_delegate] = ACTIONS(4623), - [anon_sym_record] = ACTIONS(4623), - [anon_sym_abstract] = ACTIONS(4623), - [anon_sym_async] = ACTIONS(4623), - [anon_sym_const] = ACTIONS(4623), - [anon_sym_file] = ACTIONS(4623), - [anon_sym_fixed] = ACTIONS(4623), - [anon_sym_internal] = ACTIONS(4623), - [anon_sym_new] = ACTIONS(4623), - [anon_sym_override] = ACTIONS(4623), - [anon_sym_partial] = ACTIONS(4623), - [anon_sym_private] = ACTIONS(4623), - [anon_sym_protected] = ACTIONS(4623), - [anon_sym_public] = ACTIONS(4623), - [anon_sym_readonly] = ACTIONS(4623), - [anon_sym_required] = ACTIONS(4623), - [anon_sym_sealed] = ACTIONS(4623), - [anon_sym_virtual] = ACTIONS(4623), - [anon_sym_volatile] = ACTIONS(4623), - [anon_sym_where] = ACTIONS(4623), - [anon_sym_notnull] = ACTIONS(4623), - [anon_sym_unmanaged] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_implicit] = ACTIONS(4623), - [anon_sym_explicit] = ACTIONS(4623), - [anon_sym_scoped] = ACTIONS(4623), - [anon_sym_var] = ACTIONS(4623), - [sym_predefined_type] = ACTIONS(4623), - [anon_sym_yield] = ACTIONS(4623), - [anon_sym_when] = ACTIONS(4623), - [anon_sym_from] = ACTIONS(4623), - [anon_sym_into] = ACTIONS(4623), - [anon_sym_join] = ACTIONS(4623), - [anon_sym_on] = ACTIONS(4623), - [anon_sym_equals] = ACTIONS(4623), - [anon_sym_let] = ACTIONS(4623), - [anon_sym_orderby] = ACTIONS(4623), - [anon_sym_ascending] = ACTIONS(4623), - [anon_sym_descending] = ACTIONS(4623), - [anon_sym_group] = ACTIONS(4623), - [anon_sym_by] = ACTIONS(4623), - [anon_sym_select] = ACTIONS(4623), - [aux_sym_preproc_if_token1] = ACTIONS(4625), - [aux_sym_preproc_if_token3] = ACTIONS(4625), - [aux_sym_preproc_else_token1] = ACTIONS(4625), - [aux_sym_preproc_elif_token1] = ACTIONS(4625), + [sym__identifier_token] = ACTIONS(4527), + [anon_sym_extern] = ACTIONS(4527), + [anon_sym_alias] = ACTIONS(4527), + [anon_sym_global] = ACTIONS(4527), + [anon_sym_using] = ACTIONS(4527), + [anon_sym_unsafe] = ACTIONS(4527), + [anon_sym_static] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_event] = ACTIONS(4527), + [anon_sym_namespace] = ACTIONS(4527), + [anon_sym_class] = ACTIONS(4527), + [anon_sym_ref] = ACTIONS(4527), + [anon_sym_struct] = ACTIONS(4527), + [anon_sym_enum] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_interface] = ACTIONS(4527), + [anon_sym_delegate] = ACTIONS(4527), + [anon_sym_record] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_file] = ACTIONS(4527), + [anon_sym_fixed] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_new] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_partial] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_readonly] = ACTIONS(4527), + [anon_sym_required] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_virtual] = ACTIONS(4527), + [anon_sym_volatile] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_notnull] = ACTIONS(4527), + [anon_sym_unmanaged] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_implicit] = ACTIONS(4527), + [anon_sym_explicit] = ACTIONS(4527), + [anon_sym_scoped] = ACTIONS(4527), + [anon_sym_var] = ACTIONS(4527), + [sym_predefined_type] = ACTIONS(4527), + [anon_sym_yield] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_from] = ACTIONS(4527), + [anon_sym_into] = ACTIONS(4527), + [anon_sym_join] = ACTIONS(4527), + [anon_sym_on] = ACTIONS(4527), + [anon_sym_equals] = ACTIONS(4527), + [anon_sym_let] = ACTIONS(4527), + [anon_sym_orderby] = ACTIONS(4527), + [anon_sym_ascending] = ACTIONS(4527), + [anon_sym_descending] = ACTIONS(4527), + [anon_sym_group] = ACTIONS(4527), + [anon_sym_by] = ACTIONS(4527), + [anon_sym_select] = ACTIONS(4527), + [aux_sym_preproc_if_token1] = ACTIONS(4529), + [aux_sym_preproc_if_token3] = ACTIONS(4529), + [aux_sym_preproc_else_token1] = ACTIONS(4529), + [aux_sym_preproc_elif_token1] = ACTIONS(4529), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453963,6 +453998,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2782] = { + [sym__variable_designation] = STATE(4186), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2782), [sym_preproc_endregion] = STATE(2782), [sym_preproc_line] = STATE(2782), @@ -453972,69 +454011,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2782), [sym_preproc_define] = STATE(2782), [sym_preproc_undef] = STATE(2782), - [sym__identifier_token] = ACTIONS(4627), - [anon_sym_extern] = ACTIONS(4627), - [anon_sym_alias] = ACTIONS(4627), - [anon_sym_global] = ACTIONS(4627), - [anon_sym_using] = ACTIONS(4627), - [anon_sym_unsafe] = ACTIONS(4627), - [anon_sym_static] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4629), - [anon_sym_event] = ACTIONS(4627), - [anon_sym_namespace] = ACTIONS(4627), - [anon_sym_class] = ACTIONS(4627), - [anon_sym_ref] = ACTIONS(4627), - [anon_sym_struct] = ACTIONS(4627), - [anon_sym_enum] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4629), - [anon_sym_interface] = ACTIONS(4627), - [anon_sym_delegate] = ACTIONS(4627), - [anon_sym_record] = ACTIONS(4627), - [anon_sym_abstract] = ACTIONS(4627), - [anon_sym_async] = ACTIONS(4627), - [anon_sym_const] = ACTIONS(4627), - [anon_sym_file] = ACTIONS(4627), - [anon_sym_fixed] = ACTIONS(4627), - [anon_sym_internal] = ACTIONS(4627), - [anon_sym_new] = ACTIONS(4627), - [anon_sym_override] = ACTIONS(4627), - [anon_sym_partial] = ACTIONS(4627), - [anon_sym_private] = ACTIONS(4627), - [anon_sym_protected] = ACTIONS(4627), - [anon_sym_public] = ACTIONS(4627), - [anon_sym_readonly] = ACTIONS(4627), - [anon_sym_required] = ACTIONS(4627), - [anon_sym_sealed] = ACTIONS(4627), - [anon_sym_virtual] = ACTIONS(4627), - [anon_sym_volatile] = ACTIONS(4627), - [anon_sym_where] = ACTIONS(4627), - [anon_sym_notnull] = ACTIONS(4627), - [anon_sym_unmanaged] = ACTIONS(4627), - [anon_sym_TILDE] = ACTIONS(4629), - [anon_sym_implicit] = ACTIONS(4627), - [anon_sym_explicit] = ACTIONS(4627), - [anon_sym_scoped] = ACTIONS(4627), - [anon_sym_var] = ACTIONS(4627), - [sym_predefined_type] = ACTIONS(4627), - [anon_sym_yield] = ACTIONS(4627), - [anon_sym_when] = ACTIONS(4627), - [anon_sym_from] = ACTIONS(4627), - [anon_sym_into] = ACTIONS(4627), - [anon_sym_join] = ACTIONS(4627), - [anon_sym_on] = ACTIONS(4627), - [anon_sym_equals] = ACTIONS(4627), - [anon_sym_let] = ACTIONS(4627), - [anon_sym_orderby] = ACTIONS(4627), - [anon_sym_ascending] = ACTIONS(4627), - [anon_sym_descending] = ACTIONS(4627), - [anon_sym_group] = ACTIONS(4627), - [anon_sym_by] = ACTIONS(4627), - [anon_sym_select] = ACTIONS(4627), - [aux_sym_preproc_if_token1] = ACTIONS(4629), - [aux_sym_preproc_if_token3] = ACTIONS(4629), - [aux_sym_preproc_else_token1] = ACTIONS(4629), - [aux_sym_preproc_elif_token1] = ACTIONS(4629), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_PIPE] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_GT_GT_GT] = ACTIONS(3981), + [anon_sym_EQ_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3981), + [anon_sym_GT_EQ] = ACTIONS(3981), + [anon_sym_LT_EQ] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3983), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_and] = ACTIONS(3983), + [anon_sym_or] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3981), + [anon_sym_PIPE_PIPE] = ACTIONS(3981), + [anon_sym_QMARK_QMARK] = ACTIONS(3981), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3983), + [anon_sym_is] = ACTIONS(3983), + [anon_sym_DASH_GT] = ACTIONS(3981), + [anon_sym_with] = ACTIONS(3983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454056,69 +454091,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2783), [sym_preproc_define] = STATE(2783), [sym_preproc_undef] = STATE(2783), - [sym__identifier_token] = ACTIONS(4631), - [anon_sym_extern] = ACTIONS(4631), - [anon_sym_alias] = ACTIONS(4631), - [anon_sym_global] = ACTIONS(4631), - [anon_sym_using] = ACTIONS(4631), - [anon_sym_unsafe] = ACTIONS(4631), - [anon_sym_static] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4633), - [anon_sym_event] = ACTIONS(4631), - [anon_sym_namespace] = ACTIONS(4631), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_ref] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4631), - [anon_sym_enum] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4633), - [anon_sym_interface] = ACTIONS(4631), - [anon_sym_delegate] = ACTIONS(4631), - [anon_sym_record] = ACTIONS(4631), - [anon_sym_abstract] = ACTIONS(4631), - [anon_sym_async] = ACTIONS(4631), - [anon_sym_const] = ACTIONS(4631), - [anon_sym_file] = ACTIONS(4631), - [anon_sym_fixed] = ACTIONS(4631), - [anon_sym_internal] = ACTIONS(4631), - [anon_sym_new] = ACTIONS(4631), - [anon_sym_override] = ACTIONS(4631), - [anon_sym_partial] = ACTIONS(4631), - [anon_sym_private] = ACTIONS(4631), - [anon_sym_protected] = ACTIONS(4631), - [anon_sym_public] = ACTIONS(4631), - [anon_sym_readonly] = ACTIONS(4631), - [anon_sym_required] = ACTIONS(4631), - [anon_sym_sealed] = ACTIONS(4631), - [anon_sym_virtual] = ACTIONS(4631), - [anon_sym_volatile] = ACTIONS(4631), - [anon_sym_where] = ACTIONS(4631), - [anon_sym_notnull] = ACTIONS(4631), - [anon_sym_unmanaged] = ACTIONS(4631), - [anon_sym_TILDE] = ACTIONS(4633), - [anon_sym_implicit] = ACTIONS(4631), - [anon_sym_explicit] = ACTIONS(4631), - [anon_sym_scoped] = ACTIONS(4631), - [anon_sym_var] = ACTIONS(4631), - [sym_predefined_type] = ACTIONS(4631), - [anon_sym_yield] = ACTIONS(4631), - [anon_sym_when] = ACTIONS(4631), - [anon_sym_from] = ACTIONS(4631), - [anon_sym_into] = ACTIONS(4631), - [anon_sym_join] = ACTIONS(4631), - [anon_sym_on] = ACTIONS(4631), - [anon_sym_equals] = ACTIONS(4631), - [anon_sym_let] = ACTIONS(4631), - [anon_sym_orderby] = ACTIONS(4631), - [anon_sym_ascending] = ACTIONS(4631), - [anon_sym_descending] = ACTIONS(4631), - [anon_sym_group] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4631), - [anon_sym_select] = ACTIONS(4631), - [aux_sym_preproc_if_token1] = ACTIONS(4633), - [aux_sym_preproc_if_token3] = ACTIONS(4633), - [aux_sym_preproc_else_token1] = ACTIONS(4633), - [aux_sym_preproc_elif_token1] = ACTIONS(4633), + [sym__identifier_token] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym_alias] = ACTIONS(4531), + [anon_sym_global] = ACTIONS(4531), + [anon_sym_using] = ACTIONS(4531), + [anon_sym_unsafe] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_event] = ACTIONS(4531), + [anon_sym_namespace] = ACTIONS(4531), + [anon_sym_class] = ACTIONS(4531), + [anon_sym_ref] = ACTIONS(4531), + [anon_sym_struct] = ACTIONS(4531), + [anon_sym_enum] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_interface] = ACTIONS(4531), + [anon_sym_delegate] = ACTIONS(4531), + [anon_sym_record] = ACTIONS(4531), + [anon_sym_abstract] = ACTIONS(4531), + [anon_sym_async] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_file] = ACTIONS(4531), + [anon_sym_fixed] = ACTIONS(4531), + [anon_sym_internal] = ACTIONS(4531), + [anon_sym_new] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_partial] = ACTIONS(4531), + [anon_sym_private] = ACTIONS(4531), + [anon_sym_protected] = ACTIONS(4531), + [anon_sym_public] = ACTIONS(4531), + [anon_sym_readonly] = ACTIONS(4531), + [anon_sym_required] = ACTIONS(4531), + [anon_sym_sealed] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_where] = ACTIONS(4531), + [anon_sym_notnull] = ACTIONS(4531), + [anon_sym_unmanaged] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_implicit] = ACTIONS(4531), + [anon_sym_explicit] = ACTIONS(4531), + [anon_sym_scoped] = ACTIONS(4531), + [anon_sym_var] = ACTIONS(4531), + [sym_predefined_type] = ACTIONS(4531), + [anon_sym_yield] = ACTIONS(4531), + [anon_sym_when] = ACTIONS(4531), + [anon_sym_from] = ACTIONS(4531), + [anon_sym_into] = ACTIONS(4531), + [anon_sym_join] = ACTIONS(4531), + [anon_sym_on] = ACTIONS(4531), + [anon_sym_equals] = ACTIONS(4531), + [anon_sym_let] = ACTIONS(4531), + [anon_sym_orderby] = ACTIONS(4531), + [anon_sym_ascending] = ACTIONS(4531), + [anon_sym_descending] = ACTIONS(4531), + [anon_sym_group] = ACTIONS(4531), + [anon_sym_by] = ACTIONS(4531), + [anon_sym_select] = ACTIONS(4531), + [aux_sym_preproc_if_token1] = ACTIONS(4533), + [aux_sym_preproc_if_token3] = ACTIONS(4533), + [aux_sym_preproc_else_token1] = ACTIONS(4533), + [aux_sym_preproc_elif_token1] = ACTIONS(4533), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454140,69 +454175,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2784), [sym_preproc_define] = STATE(2784), [sym_preproc_undef] = STATE(2784), - [sym__identifier_token] = ACTIONS(4635), - [anon_sym_extern] = ACTIONS(4635), - [anon_sym_alias] = ACTIONS(4635), - [anon_sym_global] = ACTIONS(4635), - [anon_sym_using] = ACTIONS(4635), - [anon_sym_unsafe] = ACTIONS(4635), - [anon_sym_static] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_event] = ACTIONS(4635), - [anon_sym_namespace] = ACTIONS(4635), - [anon_sym_class] = ACTIONS(4635), - [anon_sym_ref] = ACTIONS(4635), - [anon_sym_struct] = ACTIONS(4635), - [anon_sym_enum] = ACTIONS(4635), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_interface] = ACTIONS(4635), - [anon_sym_delegate] = ACTIONS(4635), - [anon_sym_record] = ACTIONS(4635), - [anon_sym_abstract] = ACTIONS(4635), - [anon_sym_async] = ACTIONS(4635), - [anon_sym_const] = ACTIONS(4635), - [anon_sym_file] = ACTIONS(4635), - [anon_sym_fixed] = ACTIONS(4635), - [anon_sym_internal] = ACTIONS(4635), - [anon_sym_new] = ACTIONS(4635), - [anon_sym_override] = ACTIONS(4635), - [anon_sym_partial] = ACTIONS(4635), - [anon_sym_private] = ACTIONS(4635), - [anon_sym_protected] = ACTIONS(4635), - [anon_sym_public] = ACTIONS(4635), - [anon_sym_readonly] = ACTIONS(4635), - [anon_sym_required] = ACTIONS(4635), - [anon_sym_sealed] = ACTIONS(4635), - [anon_sym_virtual] = ACTIONS(4635), - [anon_sym_volatile] = ACTIONS(4635), - [anon_sym_where] = ACTIONS(4635), - [anon_sym_notnull] = ACTIONS(4635), - [anon_sym_unmanaged] = ACTIONS(4635), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_implicit] = ACTIONS(4635), - [anon_sym_explicit] = ACTIONS(4635), - [anon_sym_scoped] = ACTIONS(4635), - [anon_sym_var] = ACTIONS(4635), - [sym_predefined_type] = ACTIONS(4635), - [anon_sym_yield] = ACTIONS(4635), - [anon_sym_when] = ACTIONS(4635), - [anon_sym_from] = ACTIONS(4635), - [anon_sym_into] = ACTIONS(4635), - [anon_sym_join] = ACTIONS(4635), - [anon_sym_on] = ACTIONS(4635), - [anon_sym_equals] = ACTIONS(4635), - [anon_sym_let] = ACTIONS(4635), - [anon_sym_orderby] = ACTIONS(4635), - [anon_sym_ascending] = ACTIONS(4635), - [anon_sym_descending] = ACTIONS(4635), - [anon_sym_group] = ACTIONS(4635), - [anon_sym_by] = ACTIONS(4635), - [anon_sym_select] = ACTIONS(4635), - [aux_sym_preproc_if_token1] = ACTIONS(4637), - [aux_sym_preproc_if_token3] = ACTIONS(4637), - [aux_sym_preproc_else_token1] = ACTIONS(4637), - [aux_sym_preproc_elif_token1] = ACTIONS(4637), + [sym__identifier_token] = ACTIONS(4535), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym_alias] = ACTIONS(4535), + [anon_sym_global] = ACTIONS(4535), + [anon_sym_using] = ACTIONS(4535), + [anon_sym_unsafe] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_event] = ACTIONS(4535), + [anon_sym_namespace] = ACTIONS(4535), + [anon_sym_class] = ACTIONS(4535), + [anon_sym_ref] = ACTIONS(4535), + [anon_sym_struct] = ACTIONS(4535), + [anon_sym_enum] = ACTIONS(4535), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_interface] = ACTIONS(4535), + [anon_sym_delegate] = ACTIONS(4535), + [anon_sym_record] = ACTIONS(4535), + [anon_sym_abstract] = ACTIONS(4535), + [anon_sym_async] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_file] = ACTIONS(4535), + [anon_sym_fixed] = ACTIONS(4535), + [anon_sym_internal] = ACTIONS(4535), + [anon_sym_new] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_partial] = ACTIONS(4535), + [anon_sym_private] = ACTIONS(4535), + [anon_sym_protected] = ACTIONS(4535), + [anon_sym_public] = ACTIONS(4535), + [anon_sym_readonly] = ACTIONS(4535), + [anon_sym_required] = ACTIONS(4535), + [anon_sym_sealed] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_where] = ACTIONS(4535), + [anon_sym_notnull] = ACTIONS(4535), + [anon_sym_unmanaged] = ACTIONS(4535), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_implicit] = ACTIONS(4535), + [anon_sym_explicit] = ACTIONS(4535), + [anon_sym_scoped] = ACTIONS(4535), + [anon_sym_var] = ACTIONS(4535), + [sym_predefined_type] = ACTIONS(4535), + [anon_sym_yield] = ACTIONS(4535), + [anon_sym_when] = ACTIONS(4535), + [anon_sym_from] = ACTIONS(4535), + [anon_sym_into] = ACTIONS(4535), + [anon_sym_join] = ACTIONS(4535), + [anon_sym_on] = ACTIONS(4535), + [anon_sym_equals] = ACTIONS(4535), + [anon_sym_let] = ACTIONS(4535), + [anon_sym_orderby] = ACTIONS(4535), + [anon_sym_ascending] = ACTIONS(4535), + [anon_sym_descending] = ACTIONS(4535), + [anon_sym_group] = ACTIONS(4535), + [anon_sym_by] = ACTIONS(4535), + [anon_sym_select] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token3] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454224,79 +454259,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2785), [sym_preproc_define] = STATE(2785), [sym_preproc_undef] = STATE(2785), - [sym__identifier_token] = ACTIONS(4094), - [anon_sym_alias] = ACTIONS(4094), - [anon_sym_global] = ACTIONS(4094), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_file] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4094), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_notnull] = ACTIONS(4094), - [anon_sym_unmanaged] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_scoped] = ACTIONS(4094), - [anon_sym_var] = ACTIONS(4094), - [anon_sym_yield] = ACTIONS(4094), - [anon_sym_switch] = ACTIONS(4094), - [anon_sym_when] = ACTIONS(4094), - [sym_discard] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4094), - [anon_sym_or] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_from] = ACTIONS(4094), - [anon_sym_into] = ACTIONS(4094), - [anon_sym_join] = ACTIONS(4094), - [anon_sym_on] = ACTIONS(4094), - [anon_sym_equals] = ACTIONS(4094), - [anon_sym_let] = ACTIONS(4094), - [anon_sym_orderby] = ACTIONS(4094), - [anon_sym_ascending] = ACTIONS(4094), - [anon_sym_descending] = ACTIONS(4094), - [anon_sym_group] = ACTIONS(4094), - [anon_sym_by] = ACTIONS(4094), - [anon_sym_select] = ACTIONS(4094), - [anon_sym_as] = ACTIONS(4094), - [anon_sym_is] = ACTIONS(4094), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4094), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4096), + [sym__identifier_token] = ACTIONS(4539), + [anon_sym_extern] = ACTIONS(4539), + [anon_sym_alias] = ACTIONS(4539), + [anon_sym_global] = ACTIONS(4539), + [anon_sym_using] = ACTIONS(4539), + [anon_sym_unsafe] = ACTIONS(4539), + [anon_sym_static] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_event] = ACTIONS(4539), + [anon_sym_namespace] = ACTIONS(4539), + [anon_sym_class] = ACTIONS(4539), + [anon_sym_ref] = ACTIONS(4539), + [anon_sym_struct] = ACTIONS(4539), + [anon_sym_enum] = ACTIONS(4539), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_interface] = ACTIONS(4539), + [anon_sym_delegate] = ACTIONS(4539), + [anon_sym_record] = ACTIONS(4539), + [anon_sym_abstract] = ACTIONS(4539), + [anon_sym_async] = ACTIONS(4539), + [anon_sym_const] = ACTIONS(4539), + [anon_sym_file] = ACTIONS(4539), + [anon_sym_fixed] = ACTIONS(4539), + [anon_sym_internal] = ACTIONS(4539), + [anon_sym_new] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_partial] = ACTIONS(4539), + [anon_sym_private] = ACTIONS(4539), + [anon_sym_protected] = ACTIONS(4539), + [anon_sym_public] = ACTIONS(4539), + [anon_sym_readonly] = ACTIONS(4539), + [anon_sym_required] = ACTIONS(4539), + [anon_sym_sealed] = ACTIONS(4539), + [anon_sym_virtual] = ACTIONS(4539), + [anon_sym_volatile] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(4539), + [anon_sym_notnull] = ACTIONS(4539), + [anon_sym_unmanaged] = ACTIONS(4539), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_implicit] = ACTIONS(4539), + [anon_sym_explicit] = ACTIONS(4539), + [anon_sym_scoped] = ACTIONS(4539), + [anon_sym_var] = ACTIONS(4539), + [sym_predefined_type] = ACTIONS(4539), + [anon_sym_yield] = ACTIONS(4539), + [anon_sym_when] = ACTIONS(4539), + [anon_sym_from] = ACTIONS(4539), + [anon_sym_into] = ACTIONS(4539), + [anon_sym_join] = ACTIONS(4539), + [anon_sym_on] = ACTIONS(4539), + [anon_sym_equals] = ACTIONS(4539), + [anon_sym_let] = ACTIONS(4539), + [anon_sym_orderby] = ACTIONS(4539), + [anon_sym_ascending] = ACTIONS(4539), + [anon_sym_descending] = ACTIONS(4539), + [anon_sym_group] = ACTIONS(4539), + [anon_sym_by] = ACTIONS(4539), + [anon_sym_select] = ACTIONS(4539), + [aux_sym_preproc_if_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token3] = ACTIONS(4541), + [aux_sym_preproc_else_token1] = ACTIONS(4541), + [aux_sym_preproc_elif_token1] = ACTIONS(4541), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2786] = { [sym_preproc_region] = STATE(2786), @@ -454308,69 +454343,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2786), [sym_preproc_define] = STATE(2786), [sym_preproc_undef] = STATE(2786), - [sym__identifier_token] = ACTIONS(4639), - [anon_sym_extern] = ACTIONS(4639), - [anon_sym_alias] = ACTIONS(4639), - [anon_sym_global] = ACTIONS(4639), - [anon_sym_using] = ACTIONS(4639), - [anon_sym_unsafe] = ACTIONS(4639), - [anon_sym_static] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_event] = ACTIONS(4639), - [anon_sym_namespace] = ACTIONS(4639), - [anon_sym_class] = ACTIONS(4639), - [anon_sym_ref] = ACTIONS(4639), - [anon_sym_struct] = ACTIONS(4639), - [anon_sym_enum] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4641), - [anon_sym_interface] = ACTIONS(4639), - [anon_sym_delegate] = ACTIONS(4639), - [anon_sym_record] = ACTIONS(4639), - [anon_sym_abstract] = ACTIONS(4639), - [anon_sym_async] = ACTIONS(4639), - [anon_sym_const] = ACTIONS(4639), - [anon_sym_file] = ACTIONS(4639), - [anon_sym_fixed] = ACTIONS(4639), - [anon_sym_internal] = ACTIONS(4639), - [anon_sym_new] = ACTIONS(4639), - [anon_sym_override] = ACTIONS(4639), - [anon_sym_partial] = ACTIONS(4639), - [anon_sym_private] = ACTIONS(4639), - [anon_sym_protected] = ACTIONS(4639), - [anon_sym_public] = ACTIONS(4639), - [anon_sym_readonly] = ACTIONS(4639), - [anon_sym_required] = ACTIONS(4639), - [anon_sym_sealed] = ACTIONS(4639), - [anon_sym_virtual] = ACTIONS(4639), - [anon_sym_volatile] = ACTIONS(4639), - [anon_sym_where] = ACTIONS(4639), - [anon_sym_notnull] = ACTIONS(4639), - [anon_sym_unmanaged] = ACTIONS(4639), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_implicit] = ACTIONS(4639), - [anon_sym_explicit] = ACTIONS(4639), - [anon_sym_scoped] = ACTIONS(4639), - [anon_sym_var] = ACTIONS(4639), - [sym_predefined_type] = ACTIONS(4639), - [anon_sym_yield] = ACTIONS(4639), - [anon_sym_when] = ACTIONS(4639), - [anon_sym_from] = ACTIONS(4639), - [anon_sym_into] = ACTIONS(4639), - [anon_sym_join] = ACTIONS(4639), - [anon_sym_on] = ACTIONS(4639), - [anon_sym_equals] = ACTIONS(4639), - [anon_sym_let] = ACTIONS(4639), - [anon_sym_orderby] = ACTIONS(4639), - [anon_sym_ascending] = ACTIONS(4639), - [anon_sym_descending] = ACTIONS(4639), - [anon_sym_group] = ACTIONS(4639), - [anon_sym_by] = ACTIONS(4639), - [anon_sym_select] = ACTIONS(4639), - [aux_sym_preproc_if_token1] = ACTIONS(4641), - [aux_sym_preproc_if_token3] = ACTIONS(4641), - [aux_sym_preproc_else_token1] = ACTIONS(4641), - [aux_sym_preproc_elif_token1] = ACTIONS(4641), + [sym__identifier_token] = ACTIONS(4543), + [anon_sym_extern] = ACTIONS(4543), + [anon_sym_alias] = ACTIONS(4543), + [anon_sym_global] = ACTIONS(4543), + [anon_sym_using] = ACTIONS(4543), + [anon_sym_unsafe] = ACTIONS(4543), + [anon_sym_static] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_event] = ACTIONS(4543), + [anon_sym_namespace] = ACTIONS(4543), + [anon_sym_class] = ACTIONS(4543), + [anon_sym_ref] = ACTIONS(4543), + [anon_sym_struct] = ACTIONS(4543), + [anon_sym_enum] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_interface] = ACTIONS(4543), + [anon_sym_delegate] = ACTIONS(4543), + [anon_sym_record] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_async] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4543), + [anon_sym_file] = ACTIONS(4543), + [anon_sym_fixed] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_new] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_partial] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_readonly] = ACTIONS(4543), + [anon_sym_required] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_virtual] = ACTIONS(4543), + [anon_sym_volatile] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_notnull] = ACTIONS(4543), + [anon_sym_unmanaged] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_implicit] = ACTIONS(4543), + [anon_sym_explicit] = ACTIONS(4543), + [anon_sym_scoped] = ACTIONS(4543), + [anon_sym_var] = ACTIONS(4543), + [sym_predefined_type] = ACTIONS(4543), + [anon_sym_yield] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_from] = ACTIONS(4543), + [anon_sym_into] = ACTIONS(4543), + [anon_sym_join] = ACTIONS(4543), + [anon_sym_on] = ACTIONS(4543), + [anon_sym_equals] = ACTIONS(4543), + [anon_sym_let] = ACTIONS(4543), + [anon_sym_orderby] = ACTIONS(4543), + [anon_sym_ascending] = ACTIONS(4543), + [anon_sym_descending] = ACTIONS(4543), + [anon_sym_group] = ACTIONS(4543), + [anon_sym_by] = ACTIONS(4543), + [anon_sym_select] = ACTIONS(4543), + [aux_sym_preproc_if_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token3] = ACTIONS(4545), + [aux_sym_preproc_else_token1] = ACTIONS(4545), + [aux_sym_preproc_elif_token1] = ACTIONS(4545), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454392,69 +454427,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2787), [sym_preproc_define] = STATE(2787), [sym_preproc_undef] = STATE(2787), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3668), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3666), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3666), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3668), - [anon_sym_PLUS_EQ] = ACTIONS(3668), - [anon_sym_DASH_EQ] = ACTIONS(3668), - [anon_sym_STAR_EQ] = ACTIONS(3668), - [anon_sym_SLASH_EQ] = ACTIONS(3668), - [anon_sym_PERCENT_EQ] = ACTIONS(3668), - [anon_sym_AMP_EQ] = ACTIONS(3668), - [anon_sym_CARET_EQ] = ACTIONS(3668), - [anon_sym_PIPE_EQ] = ACTIONS(3668), - [anon_sym_LT_LT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [sym__identifier_token] = ACTIONS(4547), + [anon_sym_extern] = ACTIONS(4547), + [anon_sym_alias] = ACTIONS(4547), + [anon_sym_global] = ACTIONS(4547), + [anon_sym_using] = ACTIONS(4547), + [anon_sym_unsafe] = ACTIONS(4547), + [anon_sym_static] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_event] = ACTIONS(4547), + [anon_sym_namespace] = ACTIONS(4547), + [anon_sym_class] = ACTIONS(4547), + [anon_sym_ref] = ACTIONS(4547), + [anon_sym_struct] = ACTIONS(4547), + [anon_sym_enum] = ACTIONS(4547), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_interface] = ACTIONS(4547), + [anon_sym_delegate] = ACTIONS(4547), + [anon_sym_record] = ACTIONS(4547), + [anon_sym_abstract] = ACTIONS(4547), + [anon_sym_async] = ACTIONS(4547), + [anon_sym_const] = ACTIONS(4547), + [anon_sym_file] = ACTIONS(4547), + [anon_sym_fixed] = ACTIONS(4547), + [anon_sym_internal] = ACTIONS(4547), + [anon_sym_new] = ACTIONS(4547), + [anon_sym_override] = ACTIONS(4547), + [anon_sym_partial] = ACTIONS(4547), + [anon_sym_private] = ACTIONS(4547), + [anon_sym_protected] = ACTIONS(4547), + [anon_sym_public] = ACTIONS(4547), + [anon_sym_readonly] = ACTIONS(4547), + [anon_sym_required] = ACTIONS(4547), + [anon_sym_sealed] = ACTIONS(4547), + [anon_sym_virtual] = ACTIONS(4547), + [anon_sym_volatile] = ACTIONS(4547), + [anon_sym_where] = ACTIONS(4547), + [anon_sym_notnull] = ACTIONS(4547), + [anon_sym_unmanaged] = ACTIONS(4547), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_implicit] = ACTIONS(4547), + [anon_sym_explicit] = ACTIONS(4547), + [anon_sym_scoped] = ACTIONS(4547), + [anon_sym_var] = ACTIONS(4547), + [sym_predefined_type] = ACTIONS(4547), + [anon_sym_yield] = ACTIONS(4547), + [anon_sym_when] = ACTIONS(4547), + [anon_sym_from] = ACTIONS(4547), + [anon_sym_into] = ACTIONS(4547), + [anon_sym_join] = ACTIONS(4547), + [anon_sym_on] = ACTIONS(4547), + [anon_sym_equals] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4547), + [anon_sym_orderby] = ACTIONS(4547), + [anon_sym_ascending] = ACTIONS(4547), + [anon_sym_descending] = ACTIONS(4547), + [anon_sym_group] = ACTIONS(4547), + [anon_sym_by] = ACTIONS(4547), + [anon_sym_select] = ACTIONS(4547), + [aux_sym_preproc_if_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token3] = ACTIONS(4549), + [aux_sym_preproc_else_token1] = ACTIONS(4549), + [aux_sym_preproc_elif_token1] = ACTIONS(4549), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454467,10 +454502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2788] = { - [sym__variable_designation] = STATE(3358), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2788), [sym_preproc_endregion] = STATE(2788), [sym_preproc_line] = STATE(2788), @@ -454480,65 +454511,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2788), [sym_preproc_define] = STATE(2788), [sym_preproc_undef] = STATE(2788), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3935), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3935), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4551), + [anon_sym_extern] = ACTIONS(4551), + [anon_sym_alias] = ACTIONS(4551), + [anon_sym_global] = ACTIONS(4551), + [anon_sym_using] = ACTIONS(4551), + [anon_sym_unsafe] = ACTIONS(4551), + [anon_sym_static] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_event] = ACTIONS(4551), + [anon_sym_namespace] = ACTIONS(4551), + [anon_sym_class] = ACTIONS(4551), + [anon_sym_ref] = ACTIONS(4551), + [anon_sym_struct] = ACTIONS(4551), + [anon_sym_enum] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_interface] = ACTIONS(4551), + [anon_sym_delegate] = ACTIONS(4551), + [anon_sym_record] = ACTIONS(4551), + [anon_sym_abstract] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4551), + [anon_sym_file] = ACTIONS(4551), + [anon_sym_fixed] = ACTIONS(4551), + [anon_sym_internal] = ACTIONS(4551), + [anon_sym_new] = ACTIONS(4551), + [anon_sym_override] = ACTIONS(4551), + [anon_sym_partial] = ACTIONS(4551), + [anon_sym_private] = ACTIONS(4551), + [anon_sym_protected] = ACTIONS(4551), + [anon_sym_public] = ACTIONS(4551), + [anon_sym_readonly] = ACTIONS(4551), + [anon_sym_required] = ACTIONS(4551), + [anon_sym_sealed] = ACTIONS(4551), + [anon_sym_virtual] = ACTIONS(4551), + [anon_sym_volatile] = ACTIONS(4551), + [anon_sym_where] = ACTIONS(4551), + [anon_sym_notnull] = ACTIONS(4551), + [anon_sym_unmanaged] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_implicit] = ACTIONS(4551), + [anon_sym_explicit] = ACTIONS(4551), + [anon_sym_scoped] = ACTIONS(4551), + [anon_sym_var] = ACTIONS(4551), + [sym_predefined_type] = ACTIONS(4551), + [anon_sym_yield] = ACTIONS(4551), + [anon_sym_when] = ACTIONS(4551), + [anon_sym_from] = ACTIONS(4551), + [anon_sym_into] = ACTIONS(4551), + [anon_sym_join] = ACTIONS(4551), + [anon_sym_on] = ACTIONS(4551), + [anon_sym_equals] = ACTIONS(4551), + [anon_sym_let] = ACTIONS(4551), + [anon_sym_orderby] = ACTIONS(4551), + [anon_sym_ascending] = ACTIONS(4551), + [anon_sym_descending] = ACTIONS(4551), + [anon_sym_group] = ACTIONS(4551), + [anon_sym_by] = ACTIONS(4551), + [anon_sym_select] = ACTIONS(4551), + [aux_sym_preproc_if_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token3] = ACTIONS(4553), + [aux_sym_preproc_else_token1] = ACTIONS(4553), + [aux_sym_preproc_elif_token1] = ACTIONS(4553), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454551,10 +454586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2789] = { - [sym__variable_designation] = STATE(4199), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(2789), [sym_preproc_endregion] = STATE(2789), [sym_preproc_line] = STATE(2789), @@ -454564,65 +454595,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2789), [sym_preproc_define] = STATE(2789), [sym_preproc_undef] = STATE(2789), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(4555), + [anon_sym_extern] = ACTIONS(4555), + [anon_sym_alias] = ACTIONS(4555), + [anon_sym_global] = ACTIONS(4555), + [anon_sym_using] = ACTIONS(4555), + [anon_sym_unsafe] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_LPAREN] = ACTIONS(4557), + [anon_sym_event] = ACTIONS(4555), + [anon_sym_namespace] = ACTIONS(4555), + [anon_sym_class] = ACTIONS(4555), + [anon_sym_ref] = ACTIONS(4555), + [anon_sym_struct] = ACTIONS(4555), + [anon_sym_enum] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_interface] = ACTIONS(4555), + [anon_sym_delegate] = ACTIONS(4555), + [anon_sym_record] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_async] = ACTIONS(4555), + [anon_sym_const] = ACTIONS(4555), + [anon_sym_file] = ACTIONS(4555), + [anon_sym_fixed] = ACTIONS(4555), + [anon_sym_internal] = ACTIONS(4555), + [anon_sym_new] = ACTIONS(4555), + [anon_sym_override] = ACTIONS(4555), + [anon_sym_partial] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_protected] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_readonly] = ACTIONS(4555), + [anon_sym_required] = ACTIONS(4555), + [anon_sym_sealed] = ACTIONS(4555), + [anon_sym_virtual] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_where] = ACTIONS(4555), + [anon_sym_notnull] = ACTIONS(4555), + [anon_sym_unmanaged] = ACTIONS(4555), + [anon_sym_TILDE] = ACTIONS(4557), + [anon_sym_implicit] = ACTIONS(4555), + [anon_sym_explicit] = ACTIONS(4555), + [anon_sym_scoped] = ACTIONS(4555), + [anon_sym_var] = ACTIONS(4555), + [sym_predefined_type] = ACTIONS(4555), + [anon_sym_yield] = ACTIONS(4555), + [anon_sym_when] = ACTIONS(4555), + [anon_sym_from] = ACTIONS(4555), + [anon_sym_into] = ACTIONS(4555), + [anon_sym_join] = ACTIONS(4555), + [anon_sym_on] = ACTIONS(4555), + [anon_sym_equals] = ACTIONS(4555), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_orderby] = ACTIONS(4555), + [anon_sym_ascending] = ACTIONS(4555), + [anon_sym_descending] = ACTIONS(4555), + [anon_sym_group] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4555), + [anon_sym_select] = ACTIONS(4555), + [aux_sym_preproc_if_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token3] = ACTIONS(4557), + [aux_sym_preproc_else_token1] = ACTIONS(4557), + [aux_sym_preproc_elif_token1] = ACTIONS(4557), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454644,68 +454679,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2790), [sym_preproc_define] = STATE(2790), [sym_preproc_undef] = STATE(2790), - [sym__identifier_token] = ACTIONS(3680), - [anon_sym_alias] = ACTIONS(3680), - [anon_sym_global] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_file] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_notnull] = ACTIONS(3680), - [anon_sym_unmanaged] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_scoped] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_when] = ACTIONS(3680), - [sym_discard] = ACTIONS(3680), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3680), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3680), - [anon_sym_join] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_equals] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_orderby] = ACTIONS(3680), - [anon_sym_ascending] = ACTIONS(3680), - [anon_sym_descending] = ACTIONS(3680), - [anon_sym_group] = ACTIONS(3680), - [anon_sym_by] = ACTIONS(3680), - [anon_sym_select] = ACTIONS(3680), - [anon_sym_as] = ACTIONS(3680), - [anon_sym_is] = ACTIONS(3680), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3680), + [sym__identifier_token] = ACTIONS(4559), + [anon_sym_extern] = ACTIONS(4559), + [anon_sym_alias] = ACTIONS(4559), + [anon_sym_global] = ACTIONS(4559), + [anon_sym_using] = ACTIONS(4559), + [anon_sym_unsafe] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_event] = ACTIONS(4559), + [anon_sym_namespace] = ACTIONS(4559), + [anon_sym_class] = ACTIONS(4559), + [anon_sym_ref] = ACTIONS(4559), + [anon_sym_struct] = ACTIONS(4559), + [anon_sym_enum] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_interface] = ACTIONS(4559), + [anon_sym_delegate] = ACTIONS(4559), + [anon_sym_record] = ACTIONS(4559), + [anon_sym_abstract] = ACTIONS(4559), + [anon_sym_async] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_file] = ACTIONS(4559), + [anon_sym_fixed] = ACTIONS(4559), + [anon_sym_internal] = ACTIONS(4559), + [anon_sym_new] = ACTIONS(4559), + [anon_sym_override] = ACTIONS(4559), + [anon_sym_partial] = ACTIONS(4559), + [anon_sym_private] = ACTIONS(4559), + [anon_sym_protected] = ACTIONS(4559), + [anon_sym_public] = ACTIONS(4559), + [anon_sym_readonly] = ACTIONS(4559), + [anon_sym_required] = ACTIONS(4559), + [anon_sym_sealed] = ACTIONS(4559), + [anon_sym_virtual] = ACTIONS(4559), + [anon_sym_volatile] = ACTIONS(4559), + [anon_sym_where] = ACTIONS(4559), + [anon_sym_notnull] = ACTIONS(4559), + [anon_sym_unmanaged] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4561), + [anon_sym_implicit] = ACTIONS(4559), + [anon_sym_explicit] = ACTIONS(4559), + [anon_sym_scoped] = ACTIONS(4559), + [anon_sym_var] = ACTIONS(4559), + [sym_predefined_type] = ACTIONS(4559), + [anon_sym_yield] = ACTIONS(4559), + [anon_sym_when] = ACTIONS(4559), + [anon_sym_from] = ACTIONS(4559), + [anon_sym_into] = ACTIONS(4559), + [anon_sym_join] = ACTIONS(4559), + [anon_sym_on] = ACTIONS(4559), + [anon_sym_equals] = ACTIONS(4559), + [anon_sym_let] = ACTIONS(4559), + [anon_sym_orderby] = ACTIONS(4559), + [anon_sym_ascending] = ACTIONS(4559), + [anon_sym_descending] = ACTIONS(4559), + [anon_sym_group] = ACTIONS(4559), + [anon_sym_by] = ACTIONS(4559), + [anon_sym_select] = ACTIONS(4559), + [aux_sym_preproc_if_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token3] = ACTIONS(4561), + [aux_sym_preproc_else_token1] = ACTIONS(4561), + [aux_sym_preproc_elif_token1] = ACTIONS(4561), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454716,7 +454752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [2791] = { [sym_preproc_region] = STATE(2791), @@ -454728,69 +454763,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2791), [sym_preproc_define] = STATE(2791), [sym_preproc_undef] = STATE(2791), - [sym__identifier_token] = ACTIONS(4643), - [anon_sym_extern] = ACTIONS(4643), - [anon_sym_alias] = ACTIONS(4643), - [anon_sym_global] = ACTIONS(4643), - [anon_sym_using] = ACTIONS(4643), - [anon_sym_unsafe] = ACTIONS(4643), - [anon_sym_static] = ACTIONS(4643), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4645), - [anon_sym_event] = ACTIONS(4643), - [anon_sym_namespace] = ACTIONS(4643), - [anon_sym_class] = ACTIONS(4643), - [anon_sym_ref] = ACTIONS(4643), - [anon_sym_struct] = ACTIONS(4643), - [anon_sym_enum] = ACTIONS(4643), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_interface] = ACTIONS(4643), - [anon_sym_delegate] = ACTIONS(4643), - [anon_sym_record] = ACTIONS(4643), - [anon_sym_abstract] = ACTIONS(4643), - [anon_sym_async] = ACTIONS(4643), - [anon_sym_const] = ACTIONS(4643), - [anon_sym_file] = ACTIONS(4643), - [anon_sym_fixed] = ACTIONS(4643), - [anon_sym_internal] = ACTIONS(4643), - [anon_sym_new] = ACTIONS(4643), - [anon_sym_override] = ACTIONS(4643), - [anon_sym_partial] = ACTIONS(4643), - [anon_sym_private] = ACTIONS(4643), - [anon_sym_protected] = ACTIONS(4643), - [anon_sym_public] = ACTIONS(4643), - [anon_sym_readonly] = ACTIONS(4643), - [anon_sym_required] = ACTIONS(4643), - [anon_sym_sealed] = ACTIONS(4643), - [anon_sym_virtual] = ACTIONS(4643), - [anon_sym_volatile] = ACTIONS(4643), - [anon_sym_where] = ACTIONS(4643), - [anon_sym_notnull] = ACTIONS(4643), - [anon_sym_unmanaged] = ACTIONS(4643), - [anon_sym_TILDE] = ACTIONS(4645), - [anon_sym_implicit] = ACTIONS(4643), - [anon_sym_explicit] = ACTIONS(4643), - [anon_sym_scoped] = ACTIONS(4643), - [anon_sym_var] = ACTIONS(4643), - [sym_predefined_type] = ACTIONS(4643), - [anon_sym_yield] = ACTIONS(4643), - [anon_sym_when] = ACTIONS(4643), - [anon_sym_from] = ACTIONS(4643), - [anon_sym_into] = ACTIONS(4643), - [anon_sym_join] = ACTIONS(4643), - [anon_sym_on] = ACTIONS(4643), - [anon_sym_equals] = ACTIONS(4643), - [anon_sym_let] = ACTIONS(4643), - [anon_sym_orderby] = ACTIONS(4643), - [anon_sym_ascending] = ACTIONS(4643), - [anon_sym_descending] = ACTIONS(4643), - [anon_sym_group] = ACTIONS(4643), - [anon_sym_by] = ACTIONS(4643), - [anon_sym_select] = ACTIONS(4643), - [aux_sym_preproc_if_token1] = ACTIONS(4645), - [aux_sym_preproc_if_token3] = ACTIONS(4645), - [aux_sym_preproc_else_token1] = ACTIONS(4645), - [aux_sym_preproc_elif_token1] = ACTIONS(4645), + [sym__identifier_token] = ACTIONS(4563), + [anon_sym_extern] = ACTIONS(4563), + [anon_sym_alias] = ACTIONS(4563), + [anon_sym_global] = ACTIONS(4563), + [anon_sym_using] = ACTIONS(4563), + [anon_sym_unsafe] = ACTIONS(4563), + [anon_sym_static] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_event] = ACTIONS(4563), + [anon_sym_namespace] = ACTIONS(4563), + [anon_sym_class] = ACTIONS(4563), + [anon_sym_ref] = ACTIONS(4563), + [anon_sym_struct] = ACTIONS(4563), + [anon_sym_enum] = ACTIONS(4563), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_interface] = ACTIONS(4563), + [anon_sym_delegate] = ACTIONS(4563), + [anon_sym_record] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_const] = ACTIONS(4563), + [anon_sym_file] = ACTIONS(4563), + [anon_sym_fixed] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_partial] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_readonly] = ACTIONS(4563), + [anon_sym_required] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_virtual] = ACTIONS(4563), + [anon_sym_volatile] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_notnull] = ACTIONS(4563), + [anon_sym_unmanaged] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4565), + [anon_sym_implicit] = ACTIONS(4563), + [anon_sym_explicit] = ACTIONS(4563), + [anon_sym_scoped] = ACTIONS(4563), + [anon_sym_var] = ACTIONS(4563), + [sym_predefined_type] = ACTIONS(4563), + [anon_sym_yield] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_from] = ACTIONS(4563), + [anon_sym_into] = ACTIONS(4563), + [anon_sym_join] = ACTIONS(4563), + [anon_sym_on] = ACTIONS(4563), + [anon_sym_equals] = ACTIONS(4563), + [anon_sym_let] = ACTIONS(4563), + [anon_sym_orderby] = ACTIONS(4563), + [anon_sym_ascending] = ACTIONS(4563), + [anon_sym_descending] = ACTIONS(4563), + [anon_sym_group] = ACTIONS(4563), + [anon_sym_by] = ACTIONS(4563), + [anon_sym_select] = ACTIONS(4563), + [aux_sym_preproc_if_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token3] = ACTIONS(4565), + [aux_sym_preproc_else_token1] = ACTIONS(4565), + [aux_sym_preproc_elif_token1] = ACTIONS(4565), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454812,85 +454847,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2792), [sym_preproc_define] = STATE(2792), [sym_preproc_undef] = STATE(2792), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4647), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4521), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4567), + [anon_sym_extern] = ACTIONS(4567), + [anon_sym_alias] = ACTIONS(4567), + [anon_sym_global] = ACTIONS(4567), + [anon_sym_using] = ACTIONS(4567), + [anon_sym_unsafe] = ACTIONS(4567), + [anon_sym_static] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_event] = ACTIONS(4567), + [anon_sym_namespace] = ACTIONS(4567), + [anon_sym_class] = ACTIONS(4567), + [anon_sym_ref] = ACTIONS(4567), + [anon_sym_struct] = ACTIONS(4567), + [anon_sym_enum] = ACTIONS(4567), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_interface] = ACTIONS(4567), + [anon_sym_delegate] = ACTIONS(4567), + [anon_sym_record] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_async] = ACTIONS(4567), + [anon_sym_const] = ACTIONS(4567), + [anon_sym_file] = ACTIONS(4567), + [anon_sym_fixed] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_new] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_partial] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_readonly] = ACTIONS(4567), + [anon_sym_required] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_virtual] = ACTIONS(4567), + [anon_sym_volatile] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_notnull] = ACTIONS(4567), + [anon_sym_unmanaged] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4569), + [anon_sym_implicit] = ACTIONS(4567), + [anon_sym_explicit] = ACTIONS(4567), + [anon_sym_scoped] = ACTIONS(4567), + [anon_sym_var] = ACTIONS(4567), + [sym_predefined_type] = ACTIONS(4567), + [anon_sym_yield] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_from] = ACTIONS(4567), + [anon_sym_into] = ACTIONS(4567), + [anon_sym_join] = ACTIONS(4567), + [anon_sym_on] = ACTIONS(4567), + [anon_sym_equals] = ACTIONS(4567), + [anon_sym_let] = ACTIONS(4567), + [anon_sym_orderby] = ACTIONS(4567), + [anon_sym_ascending] = ACTIONS(4567), + [anon_sym_descending] = ACTIONS(4567), + [anon_sym_group] = ACTIONS(4567), + [anon_sym_by] = ACTIONS(4567), + [anon_sym_select] = ACTIONS(4567), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token3] = ACTIONS(4569), + [aux_sym_preproc_else_token1] = ACTIONS(4569), + [aux_sym_preproc_elif_token1] = ACTIONS(4569), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2793] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2793), [sym_preproc_endregion] = STATE(2793), [sym_preproc_line] = STATE(2793), @@ -454900,65 +454931,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2793), [sym_preproc_define] = STATE(2793), [sym_preproc_undef] = STATE(2793), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3999), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [sym__identifier_token] = ACTIONS(4571), + [anon_sym_extern] = ACTIONS(4571), + [anon_sym_alias] = ACTIONS(4571), + [anon_sym_global] = ACTIONS(4571), + [anon_sym_using] = ACTIONS(4571), + [anon_sym_unsafe] = ACTIONS(4571), + [anon_sym_static] = ACTIONS(4571), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_event] = ACTIONS(4571), + [anon_sym_namespace] = ACTIONS(4571), + [anon_sym_class] = ACTIONS(4571), + [anon_sym_ref] = ACTIONS(4571), + [anon_sym_struct] = ACTIONS(4571), + [anon_sym_enum] = ACTIONS(4571), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_interface] = ACTIONS(4571), + [anon_sym_delegate] = ACTIONS(4571), + [anon_sym_record] = ACTIONS(4571), + [anon_sym_abstract] = ACTIONS(4571), + [anon_sym_async] = ACTIONS(4571), + [anon_sym_const] = ACTIONS(4571), + [anon_sym_file] = ACTIONS(4571), + [anon_sym_fixed] = ACTIONS(4571), + [anon_sym_internal] = ACTIONS(4571), + [anon_sym_new] = ACTIONS(4571), + [anon_sym_override] = ACTIONS(4571), + [anon_sym_partial] = ACTIONS(4571), + [anon_sym_private] = ACTIONS(4571), + [anon_sym_protected] = ACTIONS(4571), + [anon_sym_public] = ACTIONS(4571), + [anon_sym_readonly] = ACTIONS(4571), + [anon_sym_required] = ACTIONS(4571), + [anon_sym_sealed] = ACTIONS(4571), + [anon_sym_virtual] = ACTIONS(4571), + [anon_sym_volatile] = ACTIONS(4571), + [anon_sym_where] = ACTIONS(4571), + [anon_sym_notnull] = ACTIONS(4571), + [anon_sym_unmanaged] = ACTIONS(4571), + [anon_sym_TILDE] = ACTIONS(4573), + [anon_sym_implicit] = ACTIONS(4571), + [anon_sym_explicit] = ACTIONS(4571), + [anon_sym_scoped] = ACTIONS(4571), + [anon_sym_var] = ACTIONS(4571), + [sym_predefined_type] = ACTIONS(4571), + [anon_sym_yield] = ACTIONS(4571), + [anon_sym_when] = ACTIONS(4571), + [anon_sym_from] = ACTIONS(4571), + [anon_sym_into] = ACTIONS(4571), + [anon_sym_join] = ACTIONS(4571), + [anon_sym_on] = ACTIONS(4571), + [anon_sym_equals] = ACTIONS(4571), + [anon_sym_let] = ACTIONS(4571), + [anon_sym_orderby] = ACTIONS(4571), + [anon_sym_ascending] = ACTIONS(4571), + [anon_sym_descending] = ACTIONS(4571), + [anon_sym_group] = ACTIONS(4571), + [anon_sym_by] = ACTIONS(4571), + [anon_sym_select] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4573), + [aux_sym_preproc_if_token3] = ACTIONS(4573), + [aux_sym_preproc_else_token1] = ACTIONS(4573), + [aux_sym_preproc_elif_token1] = ACTIONS(4573), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454980,69 +455015,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2794), [sym_preproc_define] = STATE(2794), [sym_preproc_undef] = STATE(2794), - [sym__identifier_token] = ACTIONS(4649), - [anon_sym_extern] = ACTIONS(4649), - [anon_sym_alias] = ACTIONS(4649), - [anon_sym_global] = ACTIONS(4649), - [anon_sym_using] = ACTIONS(4649), - [anon_sym_unsafe] = ACTIONS(4649), - [anon_sym_static] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_event] = ACTIONS(4649), - [anon_sym_namespace] = ACTIONS(4649), - [anon_sym_class] = ACTIONS(4649), - [anon_sym_ref] = ACTIONS(4649), - [anon_sym_struct] = ACTIONS(4649), - [anon_sym_enum] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_interface] = ACTIONS(4649), - [anon_sym_delegate] = ACTIONS(4649), - [anon_sym_record] = ACTIONS(4649), - [anon_sym_abstract] = ACTIONS(4649), - [anon_sym_async] = ACTIONS(4649), - [anon_sym_const] = ACTIONS(4649), - [anon_sym_file] = ACTIONS(4649), - [anon_sym_fixed] = ACTIONS(4649), - [anon_sym_internal] = ACTIONS(4649), - [anon_sym_new] = ACTIONS(4649), - [anon_sym_override] = ACTIONS(4649), - [anon_sym_partial] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4649), - [anon_sym_public] = ACTIONS(4649), - [anon_sym_readonly] = ACTIONS(4649), - [anon_sym_required] = ACTIONS(4649), - [anon_sym_sealed] = ACTIONS(4649), - [anon_sym_virtual] = ACTIONS(4649), - [anon_sym_volatile] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4649), - [anon_sym_notnull] = ACTIONS(4649), - [anon_sym_unmanaged] = ACTIONS(4649), - [anon_sym_TILDE] = ACTIONS(4651), - [anon_sym_implicit] = ACTIONS(4649), - [anon_sym_explicit] = ACTIONS(4649), - [anon_sym_scoped] = ACTIONS(4649), - [anon_sym_var] = ACTIONS(4649), - [sym_predefined_type] = ACTIONS(4649), - [anon_sym_yield] = ACTIONS(4649), - [anon_sym_when] = ACTIONS(4649), - [anon_sym_from] = ACTIONS(4649), - [anon_sym_into] = ACTIONS(4649), - [anon_sym_join] = ACTIONS(4649), - [anon_sym_on] = ACTIONS(4649), - [anon_sym_equals] = ACTIONS(4649), - [anon_sym_let] = ACTIONS(4649), - [anon_sym_orderby] = ACTIONS(4649), - [anon_sym_ascending] = ACTIONS(4649), - [anon_sym_descending] = ACTIONS(4649), - [anon_sym_group] = ACTIONS(4649), - [anon_sym_by] = ACTIONS(4649), - [anon_sym_select] = ACTIONS(4649), - [aux_sym_preproc_if_token1] = ACTIONS(4651), - [aux_sym_preproc_if_token3] = ACTIONS(4651), - [aux_sym_preproc_else_token1] = ACTIONS(4651), - [aux_sym_preproc_elif_token1] = ACTIONS(4651), + [sym__identifier_token] = ACTIONS(4575), + [anon_sym_extern] = ACTIONS(4575), + [anon_sym_alias] = ACTIONS(4575), + [anon_sym_global] = ACTIONS(4575), + [anon_sym_using] = ACTIONS(4575), + [anon_sym_unsafe] = ACTIONS(4575), + [anon_sym_static] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_LPAREN] = ACTIONS(4577), + [anon_sym_event] = ACTIONS(4575), + [anon_sym_namespace] = ACTIONS(4575), + [anon_sym_class] = ACTIONS(4575), + [anon_sym_ref] = ACTIONS(4575), + [anon_sym_struct] = ACTIONS(4575), + [anon_sym_enum] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4577), + [anon_sym_interface] = ACTIONS(4575), + [anon_sym_delegate] = ACTIONS(4575), + [anon_sym_record] = ACTIONS(4575), + [anon_sym_abstract] = ACTIONS(4575), + [anon_sym_async] = ACTIONS(4575), + [anon_sym_const] = ACTIONS(4575), + [anon_sym_file] = ACTIONS(4575), + [anon_sym_fixed] = ACTIONS(4575), + [anon_sym_internal] = ACTIONS(4575), + [anon_sym_new] = ACTIONS(4575), + [anon_sym_override] = ACTIONS(4575), + [anon_sym_partial] = ACTIONS(4575), + [anon_sym_private] = ACTIONS(4575), + [anon_sym_protected] = ACTIONS(4575), + [anon_sym_public] = ACTIONS(4575), + [anon_sym_readonly] = ACTIONS(4575), + [anon_sym_required] = ACTIONS(4575), + [anon_sym_sealed] = ACTIONS(4575), + [anon_sym_virtual] = ACTIONS(4575), + [anon_sym_volatile] = ACTIONS(4575), + [anon_sym_where] = ACTIONS(4575), + [anon_sym_notnull] = ACTIONS(4575), + [anon_sym_unmanaged] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4577), + [anon_sym_implicit] = ACTIONS(4575), + [anon_sym_explicit] = ACTIONS(4575), + [anon_sym_scoped] = ACTIONS(4575), + [anon_sym_var] = ACTIONS(4575), + [sym_predefined_type] = ACTIONS(4575), + [anon_sym_yield] = ACTIONS(4575), + [anon_sym_when] = ACTIONS(4575), + [anon_sym_from] = ACTIONS(4575), + [anon_sym_into] = ACTIONS(4575), + [anon_sym_join] = ACTIONS(4575), + [anon_sym_on] = ACTIONS(4575), + [anon_sym_equals] = ACTIONS(4575), + [anon_sym_let] = ACTIONS(4575), + [anon_sym_orderby] = ACTIONS(4575), + [anon_sym_ascending] = ACTIONS(4575), + [anon_sym_descending] = ACTIONS(4575), + [anon_sym_group] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4575), + [anon_sym_select] = ACTIONS(4575), + [aux_sym_preproc_if_token1] = ACTIONS(4577), + [aux_sym_preproc_if_token3] = ACTIONS(4577), + [aux_sym_preproc_else_token1] = ACTIONS(4577), + [aux_sym_preproc_elif_token1] = ACTIONS(4577), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455064,69 +455099,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2795), [sym_preproc_define] = STATE(2795), [sym_preproc_undef] = STATE(2795), - [sym__identifier_token] = ACTIONS(4653), - [anon_sym_extern] = ACTIONS(4653), - [anon_sym_alias] = ACTIONS(4653), - [anon_sym_global] = ACTIONS(4653), - [anon_sym_using] = ACTIONS(4653), - [anon_sym_unsafe] = ACTIONS(4653), - [anon_sym_static] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_event] = ACTIONS(4653), - [anon_sym_namespace] = ACTIONS(4653), - [anon_sym_class] = ACTIONS(4653), - [anon_sym_ref] = ACTIONS(4653), - [anon_sym_struct] = ACTIONS(4653), - [anon_sym_enum] = ACTIONS(4653), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_interface] = ACTIONS(4653), - [anon_sym_delegate] = ACTIONS(4653), - [anon_sym_record] = ACTIONS(4653), - [anon_sym_abstract] = ACTIONS(4653), - [anon_sym_async] = ACTIONS(4653), - [anon_sym_const] = ACTIONS(4653), - [anon_sym_file] = ACTIONS(4653), - [anon_sym_fixed] = ACTIONS(4653), - [anon_sym_internal] = ACTIONS(4653), - [anon_sym_new] = ACTIONS(4653), - [anon_sym_override] = ACTIONS(4653), - [anon_sym_partial] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4653), - [anon_sym_public] = ACTIONS(4653), - [anon_sym_readonly] = ACTIONS(4653), - [anon_sym_required] = ACTIONS(4653), - [anon_sym_sealed] = ACTIONS(4653), - [anon_sym_virtual] = ACTIONS(4653), - [anon_sym_volatile] = ACTIONS(4653), - [anon_sym_where] = ACTIONS(4653), - [anon_sym_notnull] = ACTIONS(4653), - [anon_sym_unmanaged] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4655), - [anon_sym_implicit] = ACTIONS(4653), - [anon_sym_explicit] = ACTIONS(4653), - [anon_sym_scoped] = ACTIONS(4653), - [anon_sym_var] = ACTIONS(4653), - [sym_predefined_type] = ACTIONS(4653), - [anon_sym_yield] = ACTIONS(4653), - [anon_sym_when] = ACTIONS(4653), - [anon_sym_from] = ACTIONS(4653), - [anon_sym_into] = ACTIONS(4653), - [anon_sym_join] = ACTIONS(4653), - [anon_sym_on] = ACTIONS(4653), - [anon_sym_equals] = ACTIONS(4653), - [anon_sym_let] = ACTIONS(4653), - [anon_sym_orderby] = ACTIONS(4653), - [anon_sym_ascending] = ACTIONS(4653), - [anon_sym_descending] = ACTIONS(4653), - [anon_sym_group] = ACTIONS(4653), - [anon_sym_by] = ACTIONS(4653), - [anon_sym_select] = ACTIONS(4653), - [aux_sym_preproc_if_token1] = ACTIONS(4655), - [aux_sym_preproc_if_token3] = ACTIONS(4655), - [aux_sym_preproc_else_token1] = ACTIONS(4655), - [aux_sym_preproc_elif_token1] = ACTIONS(4655), + [sym__identifier_token] = ACTIONS(4579), + [anon_sym_extern] = ACTIONS(4579), + [anon_sym_alias] = ACTIONS(4579), + [anon_sym_global] = ACTIONS(4579), + [anon_sym_using] = ACTIONS(4579), + [anon_sym_unsafe] = ACTIONS(4579), + [anon_sym_static] = ACTIONS(4579), + [anon_sym_LBRACK] = ACTIONS(4581), + [anon_sym_LPAREN] = ACTIONS(4581), + [anon_sym_event] = ACTIONS(4579), + [anon_sym_namespace] = ACTIONS(4579), + [anon_sym_class] = ACTIONS(4579), + [anon_sym_ref] = ACTIONS(4579), + [anon_sym_struct] = ACTIONS(4579), + [anon_sym_enum] = ACTIONS(4579), + [anon_sym_RBRACE] = ACTIONS(4581), + [anon_sym_interface] = ACTIONS(4579), + [anon_sym_delegate] = ACTIONS(4579), + [anon_sym_record] = ACTIONS(4579), + [anon_sym_abstract] = ACTIONS(4579), + [anon_sym_async] = ACTIONS(4579), + [anon_sym_const] = ACTIONS(4579), + [anon_sym_file] = ACTIONS(4579), + [anon_sym_fixed] = ACTIONS(4579), + [anon_sym_internal] = ACTIONS(4579), + [anon_sym_new] = ACTIONS(4579), + [anon_sym_override] = ACTIONS(4579), + [anon_sym_partial] = ACTIONS(4579), + [anon_sym_private] = ACTIONS(4579), + [anon_sym_protected] = ACTIONS(4579), + [anon_sym_public] = ACTIONS(4579), + [anon_sym_readonly] = ACTIONS(4579), + [anon_sym_required] = ACTIONS(4579), + [anon_sym_sealed] = ACTIONS(4579), + [anon_sym_virtual] = ACTIONS(4579), + [anon_sym_volatile] = ACTIONS(4579), + [anon_sym_where] = ACTIONS(4579), + [anon_sym_notnull] = ACTIONS(4579), + [anon_sym_unmanaged] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4581), + [anon_sym_implicit] = ACTIONS(4579), + [anon_sym_explicit] = ACTIONS(4579), + [anon_sym_scoped] = ACTIONS(4579), + [anon_sym_var] = ACTIONS(4579), + [sym_predefined_type] = ACTIONS(4579), + [anon_sym_yield] = ACTIONS(4579), + [anon_sym_when] = ACTIONS(4579), + [anon_sym_from] = ACTIONS(4579), + [anon_sym_into] = ACTIONS(4579), + [anon_sym_join] = ACTIONS(4579), + [anon_sym_on] = ACTIONS(4579), + [anon_sym_equals] = ACTIONS(4579), + [anon_sym_let] = ACTIONS(4579), + [anon_sym_orderby] = ACTIONS(4579), + [anon_sym_ascending] = ACTIONS(4579), + [anon_sym_descending] = ACTIONS(4579), + [anon_sym_group] = ACTIONS(4579), + [anon_sym_by] = ACTIONS(4579), + [anon_sym_select] = ACTIONS(4579), + [aux_sym_preproc_if_token1] = ACTIONS(4581), + [aux_sym_preproc_if_token3] = ACTIONS(4581), + [aux_sym_preproc_else_token1] = ACTIONS(4581), + [aux_sym_preproc_elif_token1] = ACTIONS(4581), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455139,10 +455174,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2796] = { - [sym__variable_designation] = STATE(3363), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2796), [sym_preproc_endregion] = STATE(2796), [sym_preproc_line] = STATE(2796), @@ -455152,65 +455183,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2796), [sym_preproc_define] = STATE(2796), [sym_preproc_undef] = STATE(2796), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3923), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4583), + [anon_sym_alias] = ACTIONS(4583), + [anon_sym_global] = ACTIONS(4583), + [anon_sym_using] = ACTIONS(4583), + [anon_sym_unsafe] = ACTIONS(4583), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_event] = ACTIONS(4583), + [anon_sym_namespace] = ACTIONS(4583), + [anon_sym_class] = ACTIONS(4583), + [anon_sym_ref] = ACTIONS(4583), + [anon_sym_struct] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_interface] = ACTIONS(4583), + [anon_sym_delegate] = ACTIONS(4583), + [anon_sym_record] = ACTIONS(4583), + [anon_sym_abstract] = ACTIONS(4583), + [anon_sym_async] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_file] = ACTIONS(4583), + [anon_sym_fixed] = ACTIONS(4583), + [anon_sym_internal] = ACTIONS(4583), + [anon_sym_new] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_partial] = ACTIONS(4583), + [anon_sym_private] = ACTIONS(4583), + [anon_sym_protected] = ACTIONS(4583), + [anon_sym_public] = ACTIONS(4583), + [anon_sym_readonly] = ACTIONS(4583), + [anon_sym_required] = ACTIONS(4583), + [anon_sym_sealed] = ACTIONS(4583), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_volatile] = ACTIONS(4583), + [anon_sym_where] = ACTIONS(4583), + [anon_sym_notnull] = ACTIONS(4583), + [anon_sym_unmanaged] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_implicit] = ACTIONS(4583), + [anon_sym_explicit] = ACTIONS(4583), + [anon_sym_scoped] = ACTIONS(4583), + [anon_sym_var] = ACTIONS(4583), + [sym_predefined_type] = ACTIONS(4583), + [anon_sym_yield] = ACTIONS(4583), + [anon_sym_when] = ACTIONS(4583), + [anon_sym_from] = ACTIONS(4583), + [anon_sym_into] = ACTIONS(4583), + [anon_sym_join] = ACTIONS(4583), + [anon_sym_on] = ACTIONS(4583), + [anon_sym_equals] = ACTIONS(4583), + [anon_sym_let] = ACTIONS(4583), + [anon_sym_orderby] = ACTIONS(4583), + [anon_sym_ascending] = ACTIONS(4583), + [anon_sym_descending] = ACTIONS(4583), + [anon_sym_group] = ACTIONS(4583), + [anon_sym_by] = ACTIONS(4583), + [anon_sym_select] = ACTIONS(4583), + [aux_sym_preproc_if_token1] = ACTIONS(4585), + [aux_sym_preproc_if_token3] = ACTIONS(4585), + [aux_sym_preproc_else_token1] = ACTIONS(4585), + [aux_sym_preproc_elif_token1] = ACTIONS(4585), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455223,10 +455258,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2797] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2797), [sym_preproc_endregion] = STATE(2797), [sym_preproc_line] = STATE(2797), @@ -455236,65 +455267,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2797), [sym_preproc_define] = STATE(2797), [sym_preproc_undef] = STATE(2797), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3999), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [sym__identifier_token] = ACTIONS(4587), + [anon_sym_extern] = ACTIONS(4587), + [anon_sym_alias] = ACTIONS(4587), + [anon_sym_global] = ACTIONS(4587), + [anon_sym_using] = ACTIONS(4587), + [anon_sym_unsafe] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_event] = ACTIONS(4587), + [anon_sym_namespace] = ACTIONS(4587), + [anon_sym_class] = ACTIONS(4587), + [anon_sym_ref] = ACTIONS(4587), + [anon_sym_struct] = ACTIONS(4587), + [anon_sym_enum] = ACTIONS(4587), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_interface] = ACTIONS(4587), + [anon_sym_delegate] = ACTIONS(4587), + [anon_sym_record] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_async] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_file] = ACTIONS(4587), + [anon_sym_fixed] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_new] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_partial] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_readonly] = ACTIONS(4587), + [anon_sym_required] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_virtual] = ACTIONS(4587), + [anon_sym_volatile] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_notnull] = ACTIONS(4587), + [anon_sym_unmanaged] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4589), + [anon_sym_implicit] = ACTIONS(4587), + [anon_sym_explicit] = ACTIONS(4587), + [anon_sym_scoped] = ACTIONS(4587), + [anon_sym_var] = ACTIONS(4587), + [sym_predefined_type] = ACTIONS(4587), + [anon_sym_yield] = ACTIONS(4587), + [anon_sym_when] = ACTIONS(4587), + [anon_sym_from] = ACTIONS(4587), + [anon_sym_into] = ACTIONS(4587), + [anon_sym_join] = ACTIONS(4587), + [anon_sym_on] = ACTIONS(4587), + [anon_sym_equals] = ACTIONS(4587), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_orderby] = ACTIONS(4587), + [anon_sym_ascending] = ACTIONS(4587), + [anon_sym_descending] = ACTIONS(4587), + [anon_sym_group] = ACTIONS(4587), + [anon_sym_by] = ACTIONS(4587), + [anon_sym_select] = ACTIONS(4587), + [aux_sym_preproc_if_token1] = ACTIONS(4589), + [aux_sym_preproc_if_token3] = ACTIONS(4589), + [aux_sym_preproc_else_token1] = ACTIONS(4589), + [aux_sym_preproc_elif_token1] = ACTIONS(4589), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455307,6 +455342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2798] = { + [sym__variable_designation] = STATE(4193), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(2798), [sym_preproc_endregion] = STATE(2798), [sym_preproc_line] = STATE(2798), @@ -455316,79 +455355,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2798), [sym_preproc_define] = STATE(2798), [sym_preproc_undef] = STATE(2798), - [sym__identifier_token] = ACTIONS(4017), - [anon_sym_alias] = ACTIONS(4017), - [anon_sym_global] = ACTIONS(4017), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_file] = ACTIONS(4017), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_where] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_notnull] = ACTIONS(4017), - [anon_sym_unmanaged] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_scoped] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_yield] = ACTIONS(4017), - [anon_sym_switch] = ACTIONS(4017), - [anon_sym_when] = ACTIONS(4017), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4017), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4017), - [anon_sym_into] = ACTIONS(4017), - [anon_sym_join] = ACTIONS(4017), - [anon_sym_on] = ACTIONS(4017), - [anon_sym_equals] = ACTIONS(4017), - [anon_sym_let] = ACTIONS(4017), - [anon_sym_orderby] = ACTIONS(4017), - [anon_sym_ascending] = ACTIONS(4017), - [anon_sym_descending] = ACTIONS(4017), - [anon_sym_group] = ACTIONS(4017), - [anon_sym_by] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_as] = ACTIONS(4017), - [anon_sym_is] = ACTIONS(4017), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4017), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4019), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_GT_GT_GT] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3979), + [anon_sym_scoped] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3893), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_switch] = ACTIONS(3979), + [anon_sym_when] = ACTIONS(3893), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_and] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_QMARK_QMARK] = ACTIONS(3975), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_as] = ACTIONS(3979), + [anon_sym_is] = ACTIONS(3979), + [anon_sym_DASH_GT] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2799] = { [sym_preproc_region] = STATE(2799), @@ -455400,69 +455435,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2799), [sym_preproc_define] = STATE(2799), [sym_preproc_undef] = STATE(2799), - [sym__identifier_token] = ACTIONS(4657), - [anon_sym_extern] = ACTIONS(4657), - [anon_sym_alias] = ACTIONS(4657), - [anon_sym_global] = ACTIONS(4657), - [anon_sym_using] = ACTIONS(4657), - [anon_sym_unsafe] = ACTIONS(4657), - [anon_sym_static] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_event] = ACTIONS(4657), - [anon_sym_namespace] = ACTIONS(4657), - [anon_sym_class] = ACTIONS(4657), - [anon_sym_ref] = ACTIONS(4657), - [anon_sym_struct] = ACTIONS(4657), - [anon_sym_enum] = ACTIONS(4657), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_interface] = ACTIONS(4657), - [anon_sym_delegate] = ACTIONS(4657), - [anon_sym_record] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_async] = ACTIONS(4657), - [anon_sym_const] = ACTIONS(4657), - [anon_sym_file] = ACTIONS(4657), - [anon_sym_fixed] = ACTIONS(4657), - [anon_sym_internal] = ACTIONS(4657), - [anon_sym_new] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_partial] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4657), - [anon_sym_public] = ACTIONS(4657), - [anon_sym_readonly] = ACTIONS(4657), - [anon_sym_required] = ACTIONS(4657), - [anon_sym_sealed] = ACTIONS(4657), - [anon_sym_virtual] = ACTIONS(4657), - [anon_sym_volatile] = ACTIONS(4657), - [anon_sym_where] = ACTIONS(4657), - [anon_sym_notnull] = ACTIONS(4657), - [anon_sym_unmanaged] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4659), - [anon_sym_implicit] = ACTIONS(4657), - [anon_sym_explicit] = ACTIONS(4657), - [anon_sym_scoped] = ACTIONS(4657), - [anon_sym_var] = ACTIONS(4657), - [sym_predefined_type] = ACTIONS(4657), - [anon_sym_yield] = ACTIONS(4657), - [anon_sym_when] = ACTIONS(4657), - [anon_sym_from] = ACTIONS(4657), - [anon_sym_into] = ACTIONS(4657), - [anon_sym_join] = ACTIONS(4657), - [anon_sym_on] = ACTIONS(4657), - [anon_sym_equals] = ACTIONS(4657), - [anon_sym_let] = ACTIONS(4657), - [anon_sym_orderby] = ACTIONS(4657), - [anon_sym_ascending] = ACTIONS(4657), - [anon_sym_descending] = ACTIONS(4657), - [anon_sym_group] = ACTIONS(4657), - [anon_sym_by] = ACTIONS(4657), - [anon_sym_select] = ACTIONS(4657), - [aux_sym_preproc_if_token1] = ACTIONS(4659), - [aux_sym_preproc_if_token3] = ACTIONS(4659), - [aux_sym_preproc_else_token1] = ACTIONS(4659), - [aux_sym_preproc_elif_token1] = ACTIONS(4659), + [sym__identifier_token] = ACTIONS(4591), + [anon_sym_extern] = ACTIONS(4591), + [anon_sym_alias] = ACTIONS(4591), + [anon_sym_global] = ACTIONS(4591), + [anon_sym_using] = ACTIONS(4591), + [anon_sym_unsafe] = ACTIONS(4591), + [anon_sym_static] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_event] = ACTIONS(4591), + [anon_sym_namespace] = ACTIONS(4591), + [anon_sym_class] = ACTIONS(4591), + [anon_sym_ref] = ACTIONS(4591), + [anon_sym_struct] = ACTIONS(4591), + [anon_sym_enum] = ACTIONS(4591), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_interface] = ACTIONS(4591), + [anon_sym_delegate] = ACTIONS(4591), + [anon_sym_record] = ACTIONS(4591), + [anon_sym_abstract] = ACTIONS(4591), + [anon_sym_async] = ACTIONS(4591), + [anon_sym_const] = ACTIONS(4591), + [anon_sym_file] = ACTIONS(4591), + [anon_sym_fixed] = ACTIONS(4591), + [anon_sym_internal] = ACTIONS(4591), + [anon_sym_new] = ACTIONS(4591), + [anon_sym_override] = ACTIONS(4591), + [anon_sym_partial] = ACTIONS(4591), + [anon_sym_private] = ACTIONS(4591), + [anon_sym_protected] = ACTIONS(4591), + [anon_sym_public] = ACTIONS(4591), + [anon_sym_readonly] = ACTIONS(4591), + [anon_sym_required] = ACTIONS(4591), + [anon_sym_sealed] = ACTIONS(4591), + [anon_sym_virtual] = ACTIONS(4591), + [anon_sym_volatile] = ACTIONS(4591), + [anon_sym_where] = ACTIONS(4591), + [anon_sym_notnull] = ACTIONS(4591), + [anon_sym_unmanaged] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4593), + [anon_sym_implicit] = ACTIONS(4591), + [anon_sym_explicit] = ACTIONS(4591), + [anon_sym_scoped] = ACTIONS(4591), + [anon_sym_var] = ACTIONS(4591), + [sym_predefined_type] = ACTIONS(4591), + [anon_sym_yield] = ACTIONS(4591), + [anon_sym_when] = ACTIONS(4591), + [anon_sym_from] = ACTIONS(4591), + [anon_sym_into] = ACTIONS(4591), + [anon_sym_join] = ACTIONS(4591), + [anon_sym_on] = ACTIONS(4591), + [anon_sym_equals] = ACTIONS(4591), + [anon_sym_let] = ACTIONS(4591), + [anon_sym_orderby] = ACTIONS(4591), + [anon_sym_ascending] = ACTIONS(4591), + [anon_sym_descending] = ACTIONS(4591), + [anon_sym_group] = ACTIONS(4591), + [anon_sym_by] = ACTIONS(4591), + [anon_sym_select] = ACTIONS(4591), + [aux_sym_preproc_if_token1] = ACTIONS(4593), + [aux_sym_preproc_if_token3] = ACTIONS(4593), + [aux_sym_preproc_else_token1] = ACTIONS(4593), + [aux_sym_preproc_elif_token1] = ACTIONS(4593), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455484,69 +455519,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2800), [sym_preproc_define] = STATE(2800), [sym_preproc_undef] = STATE(2800), - [anon_sym_SEMI] = ACTIONS(4192), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_RBRACK] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_RPAREN] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_EQ_GT] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_when] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4192), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_on] = ACTIONS(4192), - [anon_sym_equals] = ACTIONS(4192), - [anon_sym_by] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4192), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), - [aux_sym_preproc_if_token3] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [sym__identifier_token] = ACTIONS(4595), + [anon_sym_extern] = ACTIONS(4595), + [anon_sym_alias] = ACTIONS(4595), + [anon_sym_global] = ACTIONS(4595), + [anon_sym_using] = ACTIONS(4595), + [anon_sym_unsafe] = ACTIONS(4595), + [anon_sym_static] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4597), + [anon_sym_event] = ACTIONS(4595), + [anon_sym_namespace] = ACTIONS(4595), + [anon_sym_class] = ACTIONS(4595), + [anon_sym_ref] = ACTIONS(4595), + [anon_sym_struct] = ACTIONS(4595), + [anon_sym_enum] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_interface] = ACTIONS(4595), + [anon_sym_delegate] = ACTIONS(4595), + [anon_sym_record] = ACTIONS(4595), + [anon_sym_abstract] = ACTIONS(4595), + [anon_sym_async] = ACTIONS(4595), + [anon_sym_const] = ACTIONS(4595), + [anon_sym_file] = ACTIONS(4595), + [anon_sym_fixed] = ACTIONS(4595), + [anon_sym_internal] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_override] = ACTIONS(4595), + [anon_sym_partial] = ACTIONS(4595), + [anon_sym_private] = ACTIONS(4595), + [anon_sym_protected] = ACTIONS(4595), + [anon_sym_public] = ACTIONS(4595), + [anon_sym_readonly] = ACTIONS(4595), + [anon_sym_required] = ACTIONS(4595), + [anon_sym_sealed] = ACTIONS(4595), + [anon_sym_virtual] = ACTIONS(4595), + [anon_sym_volatile] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(4595), + [anon_sym_notnull] = ACTIONS(4595), + [anon_sym_unmanaged] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4597), + [anon_sym_implicit] = ACTIONS(4595), + [anon_sym_explicit] = ACTIONS(4595), + [anon_sym_scoped] = ACTIONS(4595), + [anon_sym_var] = ACTIONS(4595), + [sym_predefined_type] = ACTIONS(4595), + [anon_sym_yield] = ACTIONS(4595), + [anon_sym_when] = ACTIONS(4595), + [anon_sym_from] = ACTIONS(4595), + [anon_sym_into] = ACTIONS(4595), + [anon_sym_join] = ACTIONS(4595), + [anon_sym_on] = ACTIONS(4595), + [anon_sym_equals] = ACTIONS(4595), + [anon_sym_let] = ACTIONS(4595), + [anon_sym_orderby] = ACTIONS(4595), + [anon_sym_ascending] = ACTIONS(4595), + [anon_sym_descending] = ACTIONS(4595), + [anon_sym_group] = ACTIONS(4595), + [anon_sym_by] = ACTIONS(4595), + [anon_sym_select] = ACTIONS(4595), + [aux_sym_preproc_if_token1] = ACTIONS(4597), + [aux_sym_preproc_if_token3] = ACTIONS(4597), + [aux_sym_preproc_else_token1] = ACTIONS(4597), + [aux_sym_preproc_elif_token1] = ACTIONS(4597), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455559,10 +455594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2801] = { - [sym__variable_designation] = STATE(3370), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2801), [sym_preproc_endregion] = STATE(2801), [sym_preproc_line] = STATE(2801), @@ -455572,65 +455603,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2801), [sym_preproc_define] = STATE(2801), [sym_preproc_undef] = STATE(2801), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3971), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(4599), + [anon_sym_extern] = ACTIONS(4599), + [anon_sym_alias] = ACTIONS(4599), + [anon_sym_global] = ACTIONS(4599), + [anon_sym_using] = ACTIONS(4599), + [anon_sym_unsafe] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_event] = ACTIONS(4599), + [anon_sym_namespace] = ACTIONS(4599), + [anon_sym_class] = ACTIONS(4599), + [anon_sym_ref] = ACTIONS(4599), + [anon_sym_struct] = ACTIONS(4599), + [anon_sym_enum] = ACTIONS(4599), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_interface] = ACTIONS(4599), + [anon_sym_delegate] = ACTIONS(4599), + [anon_sym_record] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_async] = ACTIONS(4599), + [anon_sym_const] = ACTIONS(4599), + [anon_sym_file] = ACTIONS(4599), + [anon_sym_fixed] = ACTIONS(4599), + [anon_sym_internal] = ACTIONS(4599), + [anon_sym_new] = ACTIONS(4599), + [anon_sym_override] = ACTIONS(4599), + [anon_sym_partial] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_protected] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_readonly] = ACTIONS(4599), + [anon_sym_required] = ACTIONS(4599), + [anon_sym_sealed] = ACTIONS(4599), + [anon_sym_virtual] = ACTIONS(4599), + [anon_sym_volatile] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_notnull] = ACTIONS(4599), + [anon_sym_unmanaged] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_implicit] = ACTIONS(4599), + [anon_sym_explicit] = ACTIONS(4599), + [anon_sym_scoped] = ACTIONS(4599), + [anon_sym_var] = ACTIONS(4599), + [sym_predefined_type] = ACTIONS(4599), + [anon_sym_yield] = ACTIONS(4599), + [anon_sym_when] = ACTIONS(4599), + [anon_sym_from] = ACTIONS(4599), + [anon_sym_into] = ACTIONS(4599), + [anon_sym_join] = ACTIONS(4599), + [anon_sym_on] = ACTIONS(4599), + [anon_sym_equals] = ACTIONS(4599), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_orderby] = ACTIONS(4599), + [anon_sym_ascending] = ACTIONS(4599), + [anon_sym_descending] = ACTIONS(4599), + [anon_sym_group] = ACTIONS(4599), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_select] = ACTIONS(4599), + [aux_sym_preproc_if_token1] = ACTIONS(4601), + [aux_sym_preproc_if_token3] = ACTIONS(4601), + [aux_sym_preproc_else_token1] = ACTIONS(4601), + [aux_sym_preproc_elif_token1] = ACTIONS(4601), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455643,6 +455678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2802] = { + [sym__variable_designation] = STATE(4179), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2802), [sym_preproc_endregion] = STATE(2802), [sym_preproc_line] = STATE(2802), @@ -455652,79 +455691,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2802), [sym_preproc_define] = STATE(2802), [sym_preproc_undef] = STATE(2802), - [sym__identifier_token] = ACTIONS(4005), - [anon_sym_alias] = ACTIONS(4005), - [anon_sym_global] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_file] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_notnull] = ACTIONS(4005), - [anon_sym_unmanaged] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_scoped] = ACTIONS(4005), - [anon_sym_var] = ACTIONS(4005), - [anon_sym_yield] = ACTIONS(4005), - [anon_sym_switch] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [sym_discard] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4005), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4005), - [anon_sym_into] = ACTIONS(4005), - [anon_sym_join] = ACTIONS(4005), - [anon_sym_on] = ACTIONS(4005), - [anon_sym_equals] = ACTIONS(4005), - [anon_sym_let] = ACTIONS(4005), - [anon_sym_orderby] = ACTIONS(4005), - [anon_sym_ascending] = ACTIONS(4005), - [anon_sym_descending] = ACTIONS(4005), - [anon_sym_group] = ACTIONS(4005), - [anon_sym_by] = ACTIONS(4005), - [anon_sym_select] = ACTIONS(4005), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4005), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4007), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3987), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_LT_LT] = ACTIONS(3985), + [anon_sym_GT_GT] = ACTIONS(3987), + [anon_sym_GT_GT_GT] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3987), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3987), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3985), + [anon_sym_and] = ACTIONS(3987), + [anon_sym_or] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_QMARK_QMARK] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3987), + [anon_sym_is] = ACTIONS(3987), + [anon_sym_DASH_GT] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3987), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2803] = { [sym_preproc_region] = STATE(2803), @@ -455736,85 +455771,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2803), [sym_preproc_define] = STATE(2803), [sym_preproc_undef] = STATE(2803), - [sym__identifier_token] = ACTIONS(4160), - [anon_sym_alias] = ACTIONS(4160), - [anon_sym_global] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_file] = ACTIONS(4160), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_where] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_notnull] = ACTIONS(4160), - [anon_sym_unmanaged] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_scoped] = ACTIONS(4160), - [anon_sym_var] = ACTIONS(4160), - [anon_sym_yield] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_when] = ACTIONS(4160), - [sym_discard] = ACTIONS(4160), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4160), - [anon_sym_or] = ACTIONS(4160), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_from] = ACTIONS(4160), - [anon_sym_into] = ACTIONS(4160), - [anon_sym_join] = ACTIONS(4160), - [anon_sym_on] = ACTIONS(4160), - [anon_sym_equals] = ACTIONS(4160), - [anon_sym_let] = ACTIONS(4160), - [anon_sym_orderby] = ACTIONS(4160), - [anon_sym_ascending] = ACTIONS(4160), - [anon_sym_descending] = ACTIONS(4160), - [anon_sym_group] = ACTIONS(4160), - [anon_sym_by] = ACTIONS(4160), - [anon_sym_select] = ACTIONS(4160), - [anon_sym_as] = ACTIONS(4160), - [anon_sym_is] = ACTIONS(4160), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4160), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4162), + [sym__identifier_token] = ACTIONS(4603), + [anon_sym_extern] = ACTIONS(4603), + [anon_sym_alias] = ACTIONS(4603), + [anon_sym_global] = ACTIONS(4603), + [anon_sym_using] = ACTIONS(4603), + [anon_sym_unsafe] = ACTIONS(4603), + [anon_sym_static] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_event] = ACTIONS(4603), + [anon_sym_namespace] = ACTIONS(4603), + [anon_sym_class] = ACTIONS(4603), + [anon_sym_ref] = ACTIONS(4603), + [anon_sym_struct] = ACTIONS(4603), + [anon_sym_enum] = ACTIONS(4603), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_interface] = ACTIONS(4603), + [anon_sym_delegate] = ACTIONS(4603), + [anon_sym_record] = ACTIONS(4603), + [anon_sym_abstract] = ACTIONS(4603), + [anon_sym_async] = ACTIONS(4603), + [anon_sym_const] = ACTIONS(4603), + [anon_sym_file] = ACTIONS(4603), + [anon_sym_fixed] = ACTIONS(4603), + [anon_sym_internal] = ACTIONS(4603), + [anon_sym_new] = ACTIONS(4603), + [anon_sym_override] = ACTIONS(4603), + [anon_sym_partial] = ACTIONS(4603), + [anon_sym_private] = ACTIONS(4603), + [anon_sym_protected] = ACTIONS(4603), + [anon_sym_public] = ACTIONS(4603), + [anon_sym_readonly] = ACTIONS(4603), + [anon_sym_required] = ACTIONS(4603), + [anon_sym_sealed] = ACTIONS(4603), + [anon_sym_virtual] = ACTIONS(4603), + [anon_sym_volatile] = ACTIONS(4603), + [anon_sym_where] = ACTIONS(4603), + [anon_sym_notnull] = ACTIONS(4603), + [anon_sym_unmanaged] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4605), + [anon_sym_implicit] = ACTIONS(4603), + [anon_sym_explicit] = ACTIONS(4603), + [anon_sym_scoped] = ACTIONS(4603), + [anon_sym_var] = ACTIONS(4603), + [sym_predefined_type] = ACTIONS(4603), + [anon_sym_yield] = ACTIONS(4603), + [anon_sym_when] = ACTIONS(4603), + [anon_sym_from] = ACTIONS(4603), + [anon_sym_into] = ACTIONS(4603), + [anon_sym_join] = ACTIONS(4603), + [anon_sym_on] = ACTIONS(4603), + [anon_sym_equals] = ACTIONS(4603), + [anon_sym_let] = ACTIONS(4603), + [anon_sym_orderby] = ACTIONS(4603), + [anon_sym_ascending] = ACTIONS(4603), + [anon_sym_descending] = ACTIONS(4603), + [anon_sym_group] = ACTIONS(4603), + [anon_sym_by] = ACTIONS(4603), + [anon_sym_select] = ACTIONS(4603), + [aux_sym_preproc_if_token1] = ACTIONS(4605), + [aux_sym_preproc_if_token3] = ACTIONS(4605), + [aux_sym_preproc_else_token1] = ACTIONS(4605), + [aux_sym_preproc_elif_token1] = ACTIONS(4605), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2804] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2804), [sym_preproc_endregion] = STATE(2804), [sym_preproc_line] = STATE(2804), @@ -455824,65 +455855,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2804), [sym_preproc_define] = STATE(2804), [sym_preproc_undef] = STATE(2804), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3971), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(4607), + [anon_sym_extern] = ACTIONS(4607), + [anon_sym_alias] = ACTIONS(4607), + [anon_sym_global] = ACTIONS(4607), + [anon_sym_using] = ACTIONS(4607), + [anon_sym_unsafe] = ACTIONS(4607), + [anon_sym_static] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_event] = ACTIONS(4607), + [anon_sym_namespace] = ACTIONS(4607), + [anon_sym_class] = ACTIONS(4607), + [anon_sym_ref] = ACTIONS(4607), + [anon_sym_struct] = ACTIONS(4607), + [anon_sym_enum] = ACTIONS(4607), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_interface] = ACTIONS(4607), + [anon_sym_delegate] = ACTIONS(4607), + [anon_sym_record] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_async] = ACTIONS(4607), + [anon_sym_const] = ACTIONS(4607), + [anon_sym_file] = ACTIONS(4607), + [anon_sym_fixed] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_partial] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_readonly] = ACTIONS(4607), + [anon_sym_required] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_virtual] = ACTIONS(4607), + [anon_sym_volatile] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_notnull] = ACTIONS(4607), + [anon_sym_unmanaged] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4609), + [anon_sym_implicit] = ACTIONS(4607), + [anon_sym_explicit] = ACTIONS(4607), + [anon_sym_scoped] = ACTIONS(4607), + [anon_sym_var] = ACTIONS(4607), + [sym_predefined_type] = ACTIONS(4607), + [anon_sym_yield] = ACTIONS(4607), + [anon_sym_when] = ACTIONS(4607), + [anon_sym_from] = ACTIONS(4607), + [anon_sym_into] = ACTIONS(4607), + [anon_sym_join] = ACTIONS(4607), + [anon_sym_on] = ACTIONS(4607), + [anon_sym_equals] = ACTIONS(4607), + [anon_sym_let] = ACTIONS(4607), + [anon_sym_orderby] = ACTIONS(4607), + [anon_sym_ascending] = ACTIONS(4607), + [anon_sym_descending] = ACTIONS(4607), + [anon_sym_group] = ACTIONS(4607), + [anon_sym_by] = ACTIONS(4607), + [anon_sym_select] = ACTIONS(4607), + [aux_sym_preproc_if_token1] = ACTIONS(4609), + [aux_sym_preproc_if_token3] = ACTIONS(4609), + [aux_sym_preproc_else_token1] = ACTIONS(4609), + [aux_sym_preproc_elif_token1] = ACTIONS(4609), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455904,69 +455939,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2805), [sym_preproc_define] = STATE(2805), [sym_preproc_undef] = STATE(2805), - [sym__identifier_token] = ACTIONS(3351), - [anon_sym_extern] = ACTIONS(3351), - [anon_sym_alias] = ACTIONS(3351), - [anon_sym_global] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_event] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_ref] = ACTIONS(3351), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_delegate] = ACTIONS(3351), - [anon_sym_record] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_file] = ACTIONS(3351), - [anon_sym_fixed] = ACTIONS(3351), - [anon_sym_internal] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_partial] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_required] = ACTIONS(3351), - [anon_sym_sealed] = ACTIONS(3351), - [anon_sym_virtual] = ACTIONS(3351), - [anon_sym_volatile] = ACTIONS(3351), - [anon_sym_where] = ACTIONS(3351), - [anon_sym_notnull] = ACTIONS(3351), - [anon_sym_unmanaged] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_implicit] = ACTIONS(3351), - [anon_sym_explicit] = ACTIONS(3351), - [anon_sym_scoped] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [sym_predefined_type] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_when] = ACTIONS(3351), - [anon_sym_from] = ACTIONS(3351), - [anon_sym_into] = ACTIONS(3351), - [anon_sym_join] = ACTIONS(3351), - [anon_sym_on] = ACTIONS(3351), - [anon_sym_equals] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_orderby] = ACTIONS(3351), - [anon_sym_ascending] = ACTIONS(3351), - [anon_sym_descending] = ACTIONS(3351), - [anon_sym_group] = ACTIONS(3351), - [anon_sym_by] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [aux_sym_preproc_if_token1] = ACTIONS(3353), - [aux_sym_preproc_if_token3] = ACTIONS(3353), - [aux_sym_preproc_else_token1] = ACTIONS(3353), - [aux_sym_preproc_elif_token1] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3709), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_EQ_GT] = ACTIONS(3709), + [anon_sym_switch] = ACTIONS(3709), + [anon_sym_when] = ACTIONS(3709), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3709), + [anon_sym_or] = ACTIONS(3709), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_on] = ACTIONS(3709), + [anon_sym_equals] = ACTIONS(3709), + [anon_sym_by] = ACTIONS(3709), + [anon_sym_as] = ACTIONS(3709), + [anon_sym_is] = ACTIONS(3709), + [anon_sym_DASH_GT] = ACTIONS(3709), + [anon_sym_with] = ACTIONS(3709), + [aux_sym_preproc_if_token3] = ACTIONS(3709), + [aux_sym_preproc_else_token1] = ACTIONS(3709), + [aux_sym_preproc_elif_token1] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455979,6 +456014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2806] = { + [sym__variable_designation] = STATE(4215), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(2806), [sym_preproc_endregion] = STATE(2806), [sym_preproc_line] = STATE(2806), @@ -455988,69 +456027,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2806), [sym_preproc_define] = STATE(2806), [sym_preproc_undef] = STATE(2806), - [sym__identifier_token] = ACTIONS(4661), - [anon_sym_extern] = ACTIONS(4661), - [anon_sym_alias] = ACTIONS(4661), - [anon_sym_global] = ACTIONS(4661), - [anon_sym_using] = ACTIONS(4661), - [anon_sym_unsafe] = ACTIONS(4661), - [anon_sym_static] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_event] = ACTIONS(4661), - [anon_sym_namespace] = ACTIONS(4661), - [anon_sym_class] = ACTIONS(4661), - [anon_sym_ref] = ACTIONS(4661), - [anon_sym_struct] = ACTIONS(4661), - [anon_sym_enum] = ACTIONS(4661), - [anon_sym_RBRACE] = ACTIONS(4663), - [anon_sym_interface] = ACTIONS(4661), - [anon_sym_delegate] = ACTIONS(4661), - [anon_sym_record] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_async] = ACTIONS(4661), - [anon_sym_const] = ACTIONS(4661), - [anon_sym_file] = ACTIONS(4661), - [anon_sym_fixed] = ACTIONS(4661), - [anon_sym_internal] = ACTIONS(4661), - [anon_sym_new] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_partial] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4661), - [anon_sym_readonly] = ACTIONS(4661), - [anon_sym_required] = ACTIONS(4661), - [anon_sym_sealed] = ACTIONS(4661), - [anon_sym_virtual] = ACTIONS(4661), - [anon_sym_volatile] = ACTIONS(4661), - [anon_sym_where] = ACTIONS(4661), - [anon_sym_notnull] = ACTIONS(4661), - [anon_sym_unmanaged] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4663), - [anon_sym_implicit] = ACTIONS(4661), - [anon_sym_explicit] = ACTIONS(4661), - [anon_sym_scoped] = ACTIONS(4661), - [anon_sym_var] = ACTIONS(4661), - [sym_predefined_type] = ACTIONS(4661), - [anon_sym_yield] = ACTIONS(4661), - [anon_sym_when] = ACTIONS(4661), - [anon_sym_from] = ACTIONS(4661), - [anon_sym_into] = ACTIONS(4661), - [anon_sym_join] = ACTIONS(4661), - [anon_sym_on] = ACTIONS(4661), - [anon_sym_equals] = ACTIONS(4661), - [anon_sym_let] = ACTIONS(4661), - [anon_sym_orderby] = ACTIONS(4661), - [anon_sym_ascending] = ACTIONS(4661), - [anon_sym_descending] = ACTIONS(4661), - [anon_sym_group] = ACTIONS(4661), - [anon_sym_by] = ACTIONS(4661), - [anon_sym_select] = ACTIONS(4661), - [aux_sym_preproc_if_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token3] = ACTIONS(4663), - [aux_sym_preproc_else_token1] = ACTIONS(4663), - [aux_sym_preproc_elif_token1] = ACTIONS(4663), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(3991), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_PIPE] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_LT_LT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_GT_GT_GT] = ACTIONS(3989), + [anon_sym_EQ_EQ] = ACTIONS(3989), + [anon_sym_BANG_EQ] = ACTIONS(3989), + [anon_sym_GT_EQ] = ACTIONS(3989), + [anon_sym_LT_EQ] = ACTIONS(3989), + [anon_sym_DOT] = ACTIONS(3991), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_and] = ACTIONS(3991), + [anon_sym_or] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3989), + [anon_sym_PIPE_PIPE] = ACTIONS(3989), + [anon_sym_QMARK_QMARK] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), + [anon_sym_as] = ACTIONS(3991), + [anon_sym_is] = ACTIONS(3991), + [anon_sym_DASH_GT] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456063,10 +456098,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2807] = { - [sym__variable_designation] = STATE(4183), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(2807), [sym_preproc_endregion] = STATE(2807), [sym_preproc_line] = STATE(2807), @@ -456076,65 +456107,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2807), [sym_preproc_define] = STATE(2807), [sym_preproc_undef] = STATE(2807), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3935), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3935), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_orderby] = ACTIONS(3935), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3935), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [sym__identifier_token] = ACTIONS(4611), + [anon_sym_extern] = ACTIONS(4611), + [anon_sym_alias] = ACTIONS(4611), + [anon_sym_global] = ACTIONS(4611), + [anon_sym_using] = ACTIONS(4611), + [anon_sym_unsafe] = ACTIONS(4611), + [anon_sym_static] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_event] = ACTIONS(4611), + [anon_sym_namespace] = ACTIONS(4611), + [anon_sym_class] = ACTIONS(4611), + [anon_sym_ref] = ACTIONS(4611), + [anon_sym_struct] = ACTIONS(4611), + [anon_sym_enum] = ACTIONS(4611), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_interface] = ACTIONS(4611), + [anon_sym_delegate] = ACTIONS(4611), + [anon_sym_record] = ACTIONS(4611), + [anon_sym_abstract] = ACTIONS(4611), + [anon_sym_async] = ACTIONS(4611), + [anon_sym_const] = ACTIONS(4611), + [anon_sym_file] = ACTIONS(4611), + [anon_sym_fixed] = ACTIONS(4611), + [anon_sym_internal] = ACTIONS(4611), + [anon_sym_new] = ACTIONS(4611), + [anon_sym_override] = ACTIONS(4611), + [anon_sym_partial] = ACTIONS(4611), + [anon_sym_private] = ACTIONS(4611), + [anon_sym_protected] = ACTIONS(4611), + [anon_sym_public] = ACTIONS(4611), + [anon_sym_readonly] = ACTIONS(4611), + [anon_sym_required] = ACTIONS(4611), + [anon_sym_sealed] = ACTIONS(4611), + [anon_sym_virtual] = ACTIONS(4611), + [anon_sym_volatile] = ACTIONS(4611), + [anon_sym_where] = ACTIONS(4611), + [anon_sym_notnull] = ACTIONS(4611), + [anon_sym_unmanaged] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4613), + [anon_sym_implicit] = ACTIONS(4611), + [anon_sym_explicit] = ACTIONS(4611), + [anon_sym_scoped] = ACTIONS(4611), + [anon_sym_var] = ACTIONS(4611), + [sym_predefined_type] = ACTIONS(4611), + [anon_sym_yield] = ACTIONS(4611), + [anon_sym_when] = ACTIONS(4611), + [anon_sym_from] = ACTIONS(4611), + [anon_sym_into] = ACTIONS(4611), + [anon_sym_join] = ACTIONS(4611), + [anon_sym_on] = ACTIONS(4611), + [anon_sym_equals] = ACTIONS(4611), + [anon_sym_let] = ACTIONS(4611), + [anon_sym_orderby] = ACTIONS(4611), + [anon_sym_ascending] = ACTIONS(4611), + [anon_sym_descending] = ACTIONS(4611), + [anon_sym_group] = ACTIONS(4611), + [anon_sym_by] = ACTIONS(4611), + [anon_sym_select] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4613), + [aux_sym_preproc_if_token3] = ACTIONS(4613), + [aux_sym_preproc_else_token1] = ACTIONS(4613), + [aux_sym_preproc_elif_token1] = ACTIONS(4613), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456156,69 +456191,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2808), [sym_preproc_define] = STATE(2808), [sym_preproc_undef] = STATE(2808), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_event] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_record] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_implicit] = ACTIONS(3383), - [anon_sym_explicit] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_if_token3] = ACTIONS(3385), - [aux_sym_preproc_else_token1] = ACTIONS(3385), - [aux_sym_preproc_elif_token1] = ACTIONS(3385), + [sym__identifier_token] = ACTIONS(4615), + [anon_sym_extern] = ACTIONS(4615), + [anon_sym_alias] = ACTIONS(4615), + [anon_sym_global] = ACTIONS(4615), + [anon_sym_using] = ACTIONS(4615), + [anon_sym_unsafe] = ACTIONS(4615), + [anon_sym_static] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4617), + [anon_sym_event] = ACTIONS(4615), + [anon_sym_namespace] = ACTIONS(4615), + [anon_sym_class] = ACTIONS(4615), + [anon_sym_ref] = ACTIONS(4615), + [anon_sym_struct] = ACTIONS(4615), + [anon_sym_enum] = ACTIONS(4615), + [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_interface] = ACTIONS(4615), + [anon_sym_delegate] = ACTIONS(4615), + [anon_sym_record] = ACTIONS(4615), + [anon_sym_abstract] = ACTIONS(4615), + [anon_sym_async] = ACTIONS(4615), + [anon_sym_const] = ACTIONS(4615), + [anon_sym_file] = ACTIONS(4615), + [anon_sym_fixed] = ACTIONS(4615), + [anon_sym_internal] = ACTIONS(4615), + [anon_sym_new] = ACTIONS(4615), + [anon_sym_override] = ACTIONS(4615), + [anon_sym_partial] = ACTIONS(4615), + [anon_sym_private] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4615), + [anon_sym_public] = ACTIONS(4615), + [anon_sym_readonly] = ACTIONS(4615), + [anon_sym_required] = ACTIONS(4615), + [anon_sym_sealed] = ACTIONS(4615), + [anon_sym_virtual] = ACTIONS(4615), + [anon_sym_volatile] = ACTIONS(4615), + [anon_sym_where] = ACTIONS(4615), + [anon_sym_notnull] = ACTIONS(4615), + [anon_sym_unmanaged] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4617), + [anon_sym_implicit] = ACTIONS(4615), + [anon_sym_explicit] = ACTIONS(4615), + [anon_sym_scoped] = ACTIONS(4615), + [anon_sym_var] = ACTIONS(4615), + [sym_predefined_type] = ACTIONS(4615), + [anon_sym_yield] = ACTIONS(4615), + [anon_sym_when] = ACTIONS(4615), + [anon_sym_from] = ACTIONS(4615), + [anon_sym_into] = ACTIONS(4615), + [anon_sym_join] = ACTIONS(4615), + [anon_sym_on] = ACTIONS(4615), + [anon_sym_equals] = ACTIONS(4615), + [anon_sym_let] = ACTIONS(4615), + [anon_sym_orderby] = ACTIONS(4615), + [anon_sym_ascending] = ACTIONS(4615), + [anon_sym_descending] = ACTIONS(4615), + [anon_sym_group] = ACTIONS(4615), + [anon_sym_by] = ACTIONS(4615), + [anon_sym_select] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4617), + [aux_sym_preproc_if_token3] = ACTIONS(4617), + [aux_sym_preproc_else_token1] = ACTIONS(4617), + [aux_sym_preproc_elif_token1] = ACTIONS(4617), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456240,68 +456275,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2809), [sym_preproc_define] = STATE(2809), [sym_preproc_undef] = STATE(2809), - [sym__identifier_token] = ACTIONS(3674), - [anon_sym_alias] = ACTIONS(3674), - [anon_sym_global] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_file] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_notnull] = ACTIONS(3674), - [anon_sym_unmanaged] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_scoped] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_when] = ACTIONS(3674), - [sym_discard] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3674), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_into] = ACTIONS(3674), - [anon_sym_join] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_equals] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_orderby] = ACTIONS(3674), - [anon_sym_ascending] = ACTIONS(3674), - [anon_sym_descending] = ACTIONS(3674), - [anon_sym_group] = ACTIONS(3674), - [anon_sym_by] = ACTIONS(3674), - [anon_sym_select] = ACTIONS(3674), - [anon_sym_as] = ACTIONS(3674), - [anon_sym_is] = ACTIONS(3674), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3674), + [sym__identifier_token] = ACTIONS(3678), + [anon_sym_alias] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_file] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_notnull] = ACTIONS(3678), + [anon_sym_unmanaged] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_scoped] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [sym_discard] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_join] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_orderby] = ACTIONS(3678), + [anon_sym_ascending] = ACTIONS(3678), + [anon_sym_descending] = ACTIONS(3678), + [anon_sym_group] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_select] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456312,7 +456347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3676), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [2810] = { [sym_preproc_region] = STATE(2810), @@ -456324,79 +456359,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2810), [sym_preproc_define] = STATE(2810), [sym_preproc_undef] = STATE(2810), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(3666), + [anon_sym_alias] = ACTIONS(3666), + [anon_sym_global] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_file] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_where] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_notnull] = ACTIONS(3666), + [anon_sym_unmanaged] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_scoped] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_when] = ACTIONS(3666), + [sym_discard] = ACTIONS(3666), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3666), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_into] = ACTIONS(3666), + [anon_sym_join] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_equals] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_orderby] = ACTIONS(3666), + [anon_sym_ascending] = ACTIONS(3666), + [anon_sym_descending] = ACTIONS(3666), + [anon_sym_group] = ACTIONS(3666), + [anon_sym_by] = ACTIONS(3666), + [anon_sym_select] = ACTIONS(3666), + [anon_sym_as] = ACTIONS(3666), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3666), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3668), }, [2811] = { [sym_preproc_region] = STATE(2811), @@ -456408,85 +456443,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2811), [sym_preproc_define] = STATE(2811), [sym_preproc_undef] = STATE(2811), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_RBRACK] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_when] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3717), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3717), - [anon_sym_equals] = ACTIONS(3717), - [anon_sym_by] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), - [aux_sym_preproc_if_token3] = ACTIONS(3717), - [aux_sym_preproc_else_token1] = ACTIONS(3717), - [aux_sym_preproc_elif_token1] = ACTIONS(3717), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, [2812] = { - [sym__variable_designation] = STATE(3363), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2812), [sym_preproc_endregion] = STATE(2812), [sym_preproc_line] = STATE(2812), @@ -456496,65 +456527,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2812), [sym_preproc_define] = STATE(2812), [sym_preproc_undef] = STATE(2812), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3923), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3923), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [sym__identifier_token] = ACTIONS(4619), + [anon_sym_extern] = ACTIONS(4619), + [anon_sym_alias] = ACTIONS(4619), + [anon_sym_global] = ACTIONS(4619), + [anon_sym_using] = ACTIONS(4619), + [anon_sym_unsafe] = ACTIONS(4619), + [anon_sym_static] = ACTIONS(4619), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_event] = ACTIONS(4619), + [anon_sym_namespace] = ACTIONS(4619), + [anon_sym_class] = ACTIONS(4619), + [anon_sym_ref] = ACTIONS(4619), + [anon_sym_struct] = ACTIONS(4619), + [anon_sym_enum] = ACTIONS(4619), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_interface] = ACTIONS(4619), + [anon_sym_delegate] = ACTIONS(4619), + [anon_sym_record] = ACTIONS(4619), + [anon_sym_abstract] = ACTIONS(4619), + [anon_sym_async] = ACTIONS(4619), + [anon_sym_const] = ACTIONS(4619), + [anon_sym_file] = ACTIONS(4619), + [anon_sym_fixed] = ACTIONS(4619), + [anon_sym_internal] = ACTIONS(4619), + [anon_sym_new] = ACTIONS(4619), + [anon_sym_override] = ACTIONS(4619), + [anon_sym_partial] = ACTIONS(4619), + [anon_sym_private] = ACTIONS(4619), + [anon_sym_protected] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4619), + [anon_sym_readonly] = ACTIONS(4619), + [anon_sym_required] = ACTIONS(4619), + [anon_sym_sealed] = ACTIONS(4619), + [anon_sym_virtual] = ACTIONS(4619), + [anon_sym_volatile] = ACTIONS(4619), + [anon_sym_where] = ACTIONS(4619), + [anon_sym_notnull] = ACTIONS(4619), + [anon_sym_unmanaged] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4621), + [anon_sym_implicit] = ACTIONS(4619), + [anon_sym_explicit] = ACTIONS(4619), + [anon_sym_scoped] = ACTIONS(4619), + [anon_sym_var] = ACTIONS(4619), + [sym_predefined_type] = ACTIONS(4619), + [anon_sym_yield] = ACTIONS(4619), + [anon_sym_when] = ACTIONS(4619), + [anon_sym_from] = ACTIONS(4619), + [anon_sym_into] = ACTIONS(4619), + [anon_sym_join] = ACTIONS(4619), + [anon_sym_on] = ACTIONS(4619), + [anon_sym_equals] = ACTIONS(4619), + [anon_sym_let] = ACTIONS(4619), + [anon_sym_orderby] = ACTIONS(4619), + [anon_sym_ascending] = ACTIONS(4619), + [anon_sym_descending] = ACTIONS(4619), + [anon_sym_group] = ACTIONS(4619), + [anon_sym_by] = ACTIONS(4619), + [anon_sym_select] = ACTIONS(4619), + [aux_sym_preproc_if_token1] = ACTIONS(4621), + [aux_sym_preproc_if_token3] = ACTIONS(4621), + [aux_sym_preproc_else_token1] = ACTIONS(4621), + [aux_sym_preproc_elif_token1] = ACTIONS(4621), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456576,69 +456611,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2813), [sym_preproc_define] = STATE(2813), [sym_preproc_undef] = STATE(2813), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3684), + [sym__identifier_token] = ACTIONS(3684), + [anon_sym_alias] = ACTIONS(3684), + [anon_sym_global] = ACTIONS(3684), [anon_sym_LBRACK] = ACTIONS(3686), [anon_sym_COLON] = ACTIONS(3686), [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_file] = ACTIONS(3684), [anon_sym_LT] = ACTIONS(3684), [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), + [anon_sym_where] = ACTIONS(3684), [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_notnull] = ACTIONS(3684), + [anon_sym_unmanaged] = ACTIONS(3684), [anon_sym_BANG] = ACTIONS(3684), [anon_sym_PLUS_PLUS] = ACTIONS(3686), [anon_sym_DASH_DASH] = ACTIONS(3686), [anon_sym_PLUS] = ACTIONS(3684), [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3684), - [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), [anon_sym_PIPE] = ACTIONS(3684), [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3686), [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3686), [anon_sym_EQ_EQ] = ACTIONS(3686), [anon_sym_BANG_EQ] = ACTIONS(3686), [anon_sym_GT_EQ] = ACTIONS(3686), [anon_sym_LT_EQ] = ACTIONS(3686), [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_when] = ACTIONS(3686), + [anon_sym_scoped] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_when] = ACTIONS(3684), + [sym_discard] = ACTIONS(3684), [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_PLUS_EQ] = ACTIONS(3686), - [anon_sym_DASH_EQ] = ACTIONS(3686), - [anon_sym_STAR_EQ] = ACTIONS(3686), - [anon_sym_SLASH_EQ] = ACTIONS(3686), - [anon_sym_PERCENT_EQ] = ACTIONS(3686), - [anon_sym_AMP_EQ] = ACTIONS(3686), - [anon_sym_CARET_EQ] = ACTIONS(3686), - [anon_sym_PIPE_EQ] = ACTIONS(3686), - [anon_sym_LT_LT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3684), + [anon_sym_or] = ACTIONS(3684), [anon_sym_AMP_AMP] = ACTIONS(3686), [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_into] = ACTIONS(3684), + [anon_sym_join] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_equals] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_orderby] = ACTIONS(3684), + [anon_sym_ascending] = ACTIONS(3684), + [anon_sym_descending] = ACTIONS(3684), + [anon_sym_group] = ACTIONS(3684), + [anon_sym_by] = ACTIONS(3684), + [anon_sym_select] = ACTIONS(3684), + [anon_sym_as] = ACTIONS(3684), + [anon_sym_is] = ACTIONS(3684), [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3684), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456649,6 +456683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3686), }, [2814] = { [sym_preproc_region] = STATE(2814), @@ -456660,79 +456695,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2814), [sym_preproc_define] = STATE(2814), [sym_preproc_undef] = STATE(2814), - [sym__identifier_token] = ACTIONS(4025), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4025), - [anon_sym_or] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4025), - [anon_sym_is] = ACTIONS(4025), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4025), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4027), + [sym__identifier_token] = ACTIONS(4623), + [anon_sym_extern] = ACTIONS(4623), + [anon_sym_alias] = ACTIONS(4623), + [anon_sym_global] = ACTIONS(4623), + [anon_sym_using] = ACTIONS(4623), + [anon_sym_unsafe] = ACTIONS(4623), + [anon_sym_static] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_event] = ACTIONS(4623), + [anon_sym_namespace] = ACTIONS(4623), + [anon_sym_class] = ACTIONS(4623), + [anon_sym_ref] = ACTIONS(4623), + [anon_sym_struct] = ACTIONS(4623), + [anon_sym_enum] = ACTIONS(4623), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_interface] = ACTIONS(4623), + [anon_sym_delegate] = ACTIONS(4623), + [anon_sym_record] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_async] = ACTIONS(4623), + [anon_sym_const] = ACTIONS(4623), + [anon_sym_file] = ACTIONS(4623), + [anon_sym_fixed] = ACTIONS(4623), + [anon_sym_internal] = ACTIONS(4623), + [anon_sym_new] = ACTIONS(4623), + [anon_sym_override] = ACTIONS(4623), + [anon_sym_partial] = ACTIONS(4623), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_public] = ACTIONS(4623), + [anon_sym_readonly] = ACTIONS(4623), + [anon_sym_required] = ACTIONS(4623), + [anon_sym_sealed] = ACTIONS(4623), + [anon_sym_virtual] = ACTIONS(4623), + [anon_sym_volatile] = ACTIONS(4623), + [anon_sym_where] = ACTIONS(4623), + [anon_sym_notnull] = ACTIONS(4623), + [anon_sym_unmanaged] = ACTIONS(4623), + [anon_sym_TILDE] = ACTIONS(4625), + [anon_sym_implicit] = ACTIONS(4623), + [anon_sym_explicit] = ACTIONS(4623), + [anon_sym_scoped] = ACTIONS(4623), + [anon_sym_var] = ACTIONS(4623), + [sym_predefined_type] = ACTIONS(4623), + [anon_sym_yield] = ACTIONS(4623), + [anon_sym_when] = ACTIONS(4623), + [anon_sym_from] = ACTIONS(4623), + [anon_sym_into] = ACTIONS(4623), + [anon_sym_join] = ACTIONS(4623), + [anon_sym_on] = ACTIONS(4623), + [anon_sym_equals] = ACTIONS(4623), + [anon_sym_let] = ACTIONS(4623), + [anon_sym_orderby] = ACTIONS(4623), + [anon_sym_ascending] = ACTIONS(4623), + [anon_sym_descending] = ACTIONS(4623), + [anon_sym_group] = ACTIONS(4623), + [anon_sym_by] = ACTIONS(4623), + [anon_sym_select] = ACTIONS(4623), + [aux_sym_preproc_if_token1] = ACTIONS(4625), + [aux_sym_preproc_if_token3] = ACTIONS(4625), + [aux_sym_preproc_else_token1] = ACTIONS(4625), + [aux_sym_preproc_elif_token1] = ACTIONS(4625), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2815] = { [sym_preproc_region] = STATE(2815), @@ -456744,69 +456779,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2815), [sym_preproc_define] = STATE(2815), [sym_preproc_undef] = STATE(2815), - [sym__identifier_token] = ACTIONS(3355), - [anon_sym_extern] = ACTIONS(3355), - [anon_sym_alias] = ACTIONS(3355), - [anon_sym_global] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_event] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_ref] = ACTIONS(3355), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_delegate] = ACTIONS(3355), - [anon_sym_record] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_file] = ACTIONS(3355), - [anon_sym_fixed] = ACTIONS(3355), - [anon_sym_internal] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_partial] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_required] = ACTIONS(3355), - [anon_sym_sealed] = ACTIONS(3355), - [anon_sym_virtual] = ACTIONS(3355), - [anon_sym_volatile] = ACTIONS(3355), - [anon_sym_where] = ACTIONS(3355), - [anon_sym_notnull] = ACTIONS(3355), - [anon_sym_unmanaged] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_implicit] = ACTIONS(3355), - [anon_sym_explicit] = ACTIONS(3355), - [anon_sym_scoped] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [sym_predefined_type] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_when] = ACTIONS(3355), - [anon_sym_from] = ACTIONS(3355), - [anon_sym_into] = ACTIONS(3355), - [anon_sym_join] = ACTIONS(3355), - [anon_sym_on] = ACTIONS(3355), - [anon_sym_equals] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_orderby] = ACTIONS(3355), - [anon_sym_ascending] = ACTIONS(3355), - [anon_sym_descending] = ACTIONS(3355), - [anon_sym_group] = ACTIONS(3355), - [anon_sym_by] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [aux_sym_preproc_if_token1] = ACTIONS(3357), - [aux_sym_preproc_if_token3] = ACTIONS(3357), - [aux_sym_preproc_else_token1] = ACTIONS(3357), - [aux_sym_preproc_elif_token1] = ACTIONS(3357), + [sym__identifier_token] = ACTIONS(4627), + [anon_sym_extern] = ACTIONS(4627), + [anon_sym_alias] = ACTIONS(4627), + [anon_sym_global] = ACTIONS(4627), + [anon_sym_using] = ACTIONS(4627), + [anon_sym_unsafe] = ACTIONS(4627), + [anon_sym_static] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [anon_sym_event] = ACTIONS(4627), + [anon_sym_namespace] = ACTIONS(4627), + [anon_sym_class] = ACTIONS(4627), + [anon_sym_ref] = ACTIONS(4627), + [anon_sym_struct] = ACTIONS(4627), + [anon_sym_enum] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_interface] = ACTIONS(4627), + [anon_sym_delegate] = ACTIONS(4627), + [anon_sym_record] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_async] = ACTIONS(4627), + [anon_sym_const] = ACTIONS(4627), + [anon_sym_file] = ACTIONS(4627), + [anon_sym_fixed] = ACTIONS(4627), + [anon_sym_internal] = ACTIONS(4627), + [anon_sym_new] = ACTIONS(4627), + [anon_sym_override] = ACTIONS(4627), + [anon_sym_partial] = ACTIONS(4627), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_public] = ACTIONS(4627), + [anon_sym_readonly] = ACTIONS(4627), + [anon_sym_required] = ACTIONS(4627), + [anon_sym_sealed] = ACTIONS(4627), + [anon_sym_virtual] = ACTIONS(4627), + [anon_sym_volatile] = ACTIONS(4627), + [anon_sym_where] = ACTIONS(4627), + [anon_sym_notnull] = ACTIONS(4627), + [anon_sym_unmanaged] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4629), + [anon_sym_implicit] = ACTIONS(4627), + [anon_sym_explicit] = ACTIONS(4627), + [anon_sym_scoped] = ACTIONS(4627), + [anon_sym_var] = ACTIONS(4627), + [sym_predefined_type] = ACTIONS(4627), + [anon_sym_yield] = ACTIONS(4627), + [anon_sym_when] = ACTIONS(4627), + [anon_sym_from] = ACTIONS(4627), + [anon_sym_into] = ACTIONS(4627), + [anon_sym_join] = ACTIONS(4627), + [anon_sym_on] = ACTIONS(4627), + [anon_sym_equals] = ACTIONS(4627), + [anon_sym_let] = ACTIONS(4627), + [anon_sym_orderby] = ACTIONS(4627), + [anon_sym_ascending] = ACTIONS(4627), + [anon_sym_descending] = ACTIONS(4627), + [anon_sym_group] = ACTIONS(4627), + [anon_sym_by] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), + [aux_sym_preproc_if_token1] = ACTIONS(4629), + [aux_sym_preproc_if_token3] = ACTIONS(4629), + [aux_sym_preproc_else_token1] = ACTIONS(4629), + [aux_sym_preproc_elif_token1] = ACTIONS(4629), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456828,258 +456863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2816), [sym_preproc_define] = STATE(2816), [sym_preproc_undef] = STATE(2816), - [anon_sym_SEMI] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_RBRACK] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_in] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3723), - [anon_sym_EQ_GT] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_when] = ACTIONS(3731), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3731), - [anon_sym_or] = ACTIONS(3731), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_on] = ACTIONS(3731), - [anon_sym_equals] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3731), - [anon_sym_DASH_GT] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), - [aux_sym_preproc_if_token3] = ACTIONS(3731), - [aux_sym_preproc_else_token1] = ACTIONS(3731), - [aux_sym_preproc_elif_token1] = ACTIONS(3731), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2817] = { - [sym_preproc_region] = STATE(2817), - [sym_preproc_endregion] = STATE(2817), - [sym_preproc_line] = STATE(2817), - [sym_preproc_pragma] = STATE(2817), - [sym_preproc_nullable] = STATE(2817), - [sym_preproc_error] = STATE(2817), - [sym_preproc_warning] = STATE(2817), - [sym_preproc_define] = STATE(2817), - [sym_preproc_undef] = STATE(2817), - [sym__identifier_token] = ACTIONS(4021), - [anon_sym_alias] = ACTIONS(4021), - [anon_sym_global] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_file] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_where] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_notnull] = ACTIONS(4021), - [anon_sym_unmanaged] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_scoped] = ACTIONS(4021), - [anon_sym_var] = ACTIONS(4021), - [anon_sym_yield] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_when] = ACTIONS(4021), - [sym_discard] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4021), - [anon_sym_into] = ACTIONS(4021), - [anon_sym_join] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_let] = ACTIONS(4021), - [anon_sym_orderby] = ACTIONS(4021), - [anon_sym_ascending] = ACTIONS(4021), - [anon_sym_descending] = ACTIONS(4021), - [anon_sym_group] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_select] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4023), - }, - [2818] = { - [sym_preproc_region] = STATE(2818), - [sym_preproc_endregion] = STATE(2818), - [sym_preproc_line] = STATE(2818), - [sym_preproc_pragma] = STATE(2818), - [sym_preproc_nullable] = STATE(2818), - [sym_preproc_error] = STATE(2818), - [sym_preproc_warning] = STATE(2818), - [sym_preproc_define] = STATE(2818), - [sym_preproc_undef] = STATE(2818), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_in] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_when] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4188), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2819] = { - [sym_preproc_region] = STATE(2819), - [sym_preproc_endregion] = STATE(2819), - [sym_preproc_line] = STATE(2819), - [sym_preproc_pragma] = STATE(2819), - [sym_preproc_nullable] = STATE(2819), - [sym_preproc_error] = STATE(2819), - [sym_preproc_warning] = STATE(2819), - [sym_preproc_define] = STATE(2819), - [sym_preproc_undef] = STATE(2819), [sym__identifier_token] = ACTIONS(3670), [anon_sym_alias] = ACTIONS(3670), [anon_sym_global] = ACTIONS(3670), @@ -457154,79 +456937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3672), }, - [2820] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2820), - [sym_preproc_endregion] = STATE(2820), - [sym_preproc_line] = STATE(2820), - [sym_preproc_pragma] = STATE(2820), - [sym_preproc_nullable] = STATE(2820), - [sym_preproc_error] = STATE(2820), - [sym_preproc_warning] = STATE(2820), - [sym_preproc_define] = STATE(2820), - [sym_preproc_undef] = STATE(2820), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3999), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3999), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), + [2817] = { + [sym_preproc_region] = STATE(2817), + [sym_preproc_endregion] = STATE(2817), + [sym_preproc_line] = STATE(2817), + [sym_preproc_pragma] = STATE(2817), + [sym_preproc_nullable] = STATE(2817), + [sym_preproc_error] = STATE(2817), + [sym_preproc_warning] = STATE(2817), + [sym_preproc_define] = STATE(2817), + [sym_preproc_undef] = STATE(2817), + [sym__identifier_token] = ACTIONS(3674), + [anon_sym_alias] = ACTIONS(3674), + [anon_sym_global] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_file] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_where] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_notnull] = ACTIONS(3674), + [anon_sym_unmanaged] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_scoped] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_when] = ACTIONS(3674), + [sym_discard] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3674), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_into] = ACTIONS(3674), + [anon_sym_join] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_equals] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_orderby] = ACTIONS(3674), + [anon_sym_ascending] = ACTIONS(3674), + [anon_sym_descending] = ACTIONS(3674), + [anon_sym_group] = ACTIONS(3674), + [anon_sym_by] = ACTIONS(3674), + [anon_sym_select] = ACTIONS(3674), + [anon_sym_as] = ACTIONS(3674), + [anon_sym_is] = ACTIONS(3674), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3674), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457237,80 +457019,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3676), }, - [2821] = { - [sym_preproc_region] = STATE(2821), - [sym_preproc_endregion] = STATE(2821), - [sym_preproc_line] = STATE(2821), - [sym_preproc_pragma] = STATE(2821), - [sym_preproc_nullable] = STATE(2821), - [sym_preproc_error] = STATE(2821), - [sym_preproc_warning] = STATE(2821), - [sym_preproc_define] = STATE(2821), - [sym_preproc_undef] = STATE(2821), - [sym__identifier_token] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym_alias] = ACTIONS(3427), - [anon_sym_global] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_event] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_ref] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_delegate] = ACTIONS(3427), - [anon_sym_record] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_file] = ACTIONS(3427), - [anon_sym_fixed] = ACTIONS(3427), - [anon_sym_internal] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_partial] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_required] = ACTIONS(3427), - [anon_sym_sealed] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_where] = ACTIONS(3427), - [anon_sym_notnull] = ACTIONS(3427), - [anon_sym_unmanaged] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_implicit] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_scoped] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [sym_predefined_type] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_when] = ACTIONS(3427), - [anon_sym_from] = ACTIONS(3427), - [anon_sym_into] = ACTIONS(3427), - [anon_sym_join] = ACTIONS(3427), - [anon_sym_on] = ACTIONS(3427), - [anon_sym_equals] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_orderby] = ACTIONS(3427), - [anon_sym_ascending] = ACTIONS(3427), - [anon_sym_descending] = ACTIONS(3427), - [anon_sym_group] = ACTIONS(3427), - [anon_sym_by] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [aux_sym_preproc_if_token1] = ACTIONS(3429), - [aux_sym_preproc_if_token3] = ACTIONS(3429), - [aux_sym_preproc_else_token1] = ACTIONS(3429), - [aux_sym_preproc_elif_token1] = ACTIONS(3429), + [2818] = { + [sym_preproc_region] = STATE(2818), + [sym_preproc_endregion] = STATE(2818), + [sym_preproc_line] = STATE(2818), + [sym_preproc_pragma] = STATE(2818), + [sym_preproc_nullable] = STATE(2818), + [sym_preproc_error] = STATE(2818), + [sym_preproc_warning] = STATE(2818), + [sym_preproc_define] = STATE(2818), + [sym_preproc_undef] = STATE(2818), + [sym__identifier_token] = ACTIONS(4631), + [anon_sym_extern] = ACTIONS(4631), + [anon_sym_alias] = ACTIONS(4631), + [anon_sym_global] = ACTIONS(4631), + [anon_sym_using] = ACTIONS(4631), + [anon_sym_unsafe] = ACTIONS(4631), + [anon_sym_static] = ACTIONS(4631), + [anon_sym_LBRACK] = ACTIONS(4633), + [anon_sym_LPAREN] = ACTIONS(4633), + [anon_sym_event] = ACTIONS(4631), + [anon_sym_namespace] = ACTIONS(4631), + [anon_sym_class] = ACTIONS(4631), + [anon_sym_ref] = ACTIONS(4631), + [anon_sym_struct] = ACTIONS(4631), + [anon_sym_enum] = ACTIONS(4631), + [anon_sym_RBRACE] = ACTIONS(4633), + [anon_sym_interface] = ACTIONS(4631), + [anon_sym_delegate] = ACTIONS(4631), + [anon_sym_record] = ACTIONS(4631), + [anon_sym_abstract] = ACTIONS(4631), + [anon_sym_async] = ACTIONS(4631), + [anon_sym_const] = ACTIONS(4631), + [anon_sym_file] = ACTIONS(4631), + [anon_sym_fixed] = ACTIONS(4631), + [anon_sym_internal] = ACTIONS(4631), + [anon_sym_new] = ACTIONS(4631), + [anon_sym_override] = ACTIONS(4631), + [anon_sym_partial] = ACTIONS(4631), + [anon_sym_private] = ACTIONS(4631), + [anon_sym_protected] = ACTIONS(4631), + [anon_sym_public] = ACTIONS(4631), + [anon_sym_readonly] = ACTIONS(4631), + [anon_sym_required] = ACTIONS(4631), + [anon_sym_sealed] = ACTIONS(4631), + [anon_sym_virtual] = ACTIONS(4631), + [anon_sym_volatile] = ACTIONS(4631), + [anon_sym_where] = ACTIONS(4631), + [anon_sym_notnull] = ACTIONS(4631), + [anon_sym_unmanaged] = ACTIONS(4631), + [anon_sym_TILDE] = ACTIONS(4633), + [anon_sym_implicit] = ACTIONS(4631), + [anon_sym_explicit] = ACTIONS(4631), + [anon_sym_scoped] = ACTIONS(4631), + [anon_sym_var] = ACTIONS(4631), + [sym_predefined_type] = ACTIONS(4631), + [anon_sym_yield] = ACTIONS(4631), + [anon_sym_when] = ACTIONS(4631), + [anon_sym_from] = ACTIONS(4631), + [anon_sym_into] = ACTIONS(4631), + [anon_sym_join] = ACTIONS(4631), + [anon_sym_on] = ACTIONS(4631), + [anon_sym_equals] = ACTIONS(4631), + [anon_sym_let] = ACTIONS(4631), + [anon_sym_orderby] = ACTIONS(4631), + [anon_sym_ascending] = ACTIONS(4631), + [anon_sym_descending] = ACTIONS(4631), + [anon_sym_group] = ACTIONS(4631), + [anon_sym_by] = ACTIONS(4631), + [anon_sym_select] = ACTIONS(4631), + [aux_sym_preproc_if_token1] = ACTIONS(4633), + [aux_sym_preproc_if_token3] = ACTIONS(4633), + [aux_sym_preproc_else_token1] = ACTIONS(4633), + [aux_sym_preproc_elif_token1] = ACTIONS(4633), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2819] = { + [sym_preproc_region] = STATE(2819), + [sym_preproc_endregion] = STATE(2819), + [sym_preproc_line] = STATE(2819), + [sym_preproc_pragma] = STATE(2819), + [sym_preproc_nullable] = STATE(2819), + [sym_preproc_error] = STATE(2819), + [sym_preproc_warning] = STATE(2819), + [sym_preproc_define] = STATE(2819), + [sym_preproc_undef] = STATE(2819), + [sym__identifier_token] = ACTIONS(4635), + [anon_sym_extern] = ACTIONS(4635), + [anon_sym_alias] = ACTIONS(4635), + [anon_sym_global] = ACTIONS(4635), + [anon_sym_using] = ACTIONS(4635), + [anon_sym_unsafe] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_event] = ACTIONS(4635), + [anon_sym_namespace] = ACTIONS(4635), + [anon_sym_class] = ACTIONS(4635), + [anon_sym_ref] = ACTIONS(4635), + [anon_sym_struct] = ACTIONS(4635), + [anon_sym_enum] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_interface] = ACTIONS(4635), + [anon_sym_delegate] = ACTIONS(4635), + [anon_sym_record] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_async] = ACTIONS(4635), + [anon_sym_const] = ACTIONS(4635), + [anon_sym_file] = ACTIONS(4635), + [anon_sym_fixed] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_new] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_partial] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_readonly] = ACTIONS(4635), + [anon_sym_required] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_virtual] = ACTIONS(4635), + [anon_sym_volatile] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_notnull] = ACTIONS(4635), + [anon_sym_unmanaged] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4637), + [anon_sym_implicit] = ACTIONS(4635), + [anon_sym_explicit] = ACTIONS(4635), + [anon_sym_scoped] = ACTIONS(4635), + [anon_sym_var] = ACTIONS(4635), + [sym_predefined_type] = ACTIONS(4635), + [anon_sym_yield] = ACTIONS(4635), + [anon_sym_when] = ACTIONS(4635), + [anon_sym_from] = ACTIONS(4635), + [anon_sym_into] = ACTIONS(4635), + [anon_sym_join] = ACTIONS(4635), + [anon_sym_on] = ACTIONS(4635), + [anon_sym_equals] = ACTIONS(4635), + [anon_sym_let] = ACTIONS(4635), + [anon_sym_orderby] = ACTIONS(4635), + [anon_sym_ascending] = ACTIONS(4635), + [anon_sym_descending] = ACTIONS(4635), + [anon_sym_group] = ACTIONS(4635), + [anon_sym_by] = ACTIONS(4635), + [anon_sym_select] = ACTIONS(4635), + [aux_sym_preproc_if_token1] = ACTIONS(4637), + [aux_sym_preproc_if_token3] = ACTIONS(4637), + [aux_sym_preproc_else_token1] = ACTIONS(4637), + [aux_sym_preproc_elif_token1] = ACTIONS(4637), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2820] = { + [sym__variable_designation] = STATE(4210), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2820), + [sym_preproc_endregion] = STATE(2820), + [sym_preproc_line] = STATE(2820), + [sym_preproc_pragma] = STATE(2820), + [sym_preproc_nullable] = STATE(2820), + [sym_preproc_error] = STATE(2820), + [sym_preproc_warning] = STATE(2820), + [sym_preproc_define] = STATE(2820), + [sym_preproc_undef] = STATE(2820), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3929), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3929), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_orderby] = ACTIONS(3929), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3929), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2821] = { + [sym__variable_designation] = STATE(4219), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2821), + [sym_preproc_endregion] = STATE(2821), + [sym_preproc_line] = STATE(2821), + [sym_preproc_pragma] = STATE(2821), + [sym_preproc_nullable] = STATE(2821), + [sym_preproc_error] = STATE(2821), + [sym_preproc_warning] = STATE(2821), + [sym_preproc_define] = STATE(2821), + [sym_preproc_undef] = STATE(2821), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3933), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3933), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_orderby] = ACTIONS(3933), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3933), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457323,10 +457358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2822] = { - [sym__variable_designation] = STATE(3542), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2822), [sym_preproc_endregion] = STATE(2822), [sym_preproc_line] = STATE(2822), @@ -457336,65 +457367,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2822), [sym_preproc_define] = STATE(2822), [sym_preproc_undef] = STATE(2822), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3971), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [sym__identifier_token] = ACTIONS(4639), + [anon_sym_extern] = ACTIONS(4639), + [anon_sym_alias] = ACTIONS(4639), + [anon_sym_global] = ACTIONS(4639), + [anon_sym_using] = ACTIONS(4639), + [anon_sym_unsafe] = ACTIONS(4639), + [anon_sym_static] = ACTIONS(4639), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_LPAREN] = ACTIONS(4641), + [anon_sym_event] = ACTIONS(4639), + [anon_sym_namespace] = ACTIONS(4639), + [anon_sym_class] = ACTIONS(4639), + [anon_sym_ref] = ACTIONS(4639), + [anon_sym_struct] = ACTIONS(4639), + [anon_sym_enum] = ACTIONS(4639), + [anon_sym_RBRACE] = ACTIONS(4641), + [anon_sym_interface] = ACTIONS(4639), + [anon_sym_delegate] = ACTIONS(4639), + [anon_sym_record] = ACTIONS(4639), + [anon_sym_abstract] = ACTIONS(4639), + [anon_sym_async] = ACTIONS(4639), + [anon_sym_const] = ACTIONS(4639), + [anon_sym_file] = ACTIONS(4639), + [anon_sym_fixed] = ACTIONS(4639), + [anon_sym_internal] = ACTIONS(4639), + [anon_sym_new] = ACTIONS(4639), + [anon_sym_override] = ACTIONS(4639), + [anon_sym_partial] = ACTIONS(4639), + [anon_sym_private] = ACTIONS(4639), + [anon_sym_protected] = ACTIONS(4639), + [anon_sym_public] = ACTIONS(4639), + [anon_sym_readonly] = ACTIONS(4639), + [anon_sym_required] = ACTIONS(4639), + [anon_sym_sealed] = ACTIONS(4639), + [anon_sym_virtual] = ACTIONS(4639), + [anon_sym_volatile] = ACTIONS(4639), + [anon_sym_where] = ACTIONS(4639), + [anon_sym_notnull] = ACTIONS(4639), + [anon_sym_unmanaged] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4641), + [anon_sym_implicit] = ACTIONS(4639), + [anon_sym_explicit] = ACTIONS(4639), + [anon_sym_scoped] = ACTIONS(4639), + [anon_sym_var] = ACTIONS(4639), + [sym_predefined_type] = ACTIONS(4639), + [anon_sym_yield] = ACTIONS(4639), + [anon_sym_when] = ACTIONS(4639), + [anon_sym_from] = ACTIONS(4639), + [anon_sym_into] = ACTIONS(4639), + [anon_sym_join] = ACTIONS(4639), + [anon_sym_on] = ACTIONS(4639), + [anon_sym_equals] = ACTIONS(4639), + [anon_sym_let] = ACTIONS(4639), + [anon_sym_orderby] = ACTIONS(4639), + [anon_sym_ascending] = ACTIONS(4639), + [anon_sym_descending] = ACTIONS(4639), + [anon_sym_group] = ACTIONS(4639), + [anon_sym_by] = ACTIONS(4639), + [anon_sym_select] = ACTIONS(4639), + [aux_sym_preproc_if_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token3] = ACTIONS(4641), + [aux_sym_preproc_else_token1] = ACTIONS(4641), + [aux_sym_preproc_elif_token1] = ACTIONS(4641), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457416,153 +457451,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2823), [sym_preproc_define] = STATE(2823), [sym_preproc_undef] = STATE(2823), - [sym__identifier_token] = ACTIONS(3943), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3943), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3943), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3943), - [anon_sym_into] = ACTIONS(3943), - [anon_sym_join] = ACTIONS(3943), - [anon_sym_on] = ACTIONS(3943), - [anon_sym_equals] = ACTIONS(3943), - [anon_sym_let] = ACTIONS(3943), - [anon_sym_orderby] = ACTIONS(3943), - [anon_sym_ascending] = ACTIONS(3943), - [anon_sym_descending] = ACTIONS(3943), - [anon_sym_group] = ACTIONS(3943), - [anon_sym_by] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3943), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3945), - }, - [2824] = { - [sym_preproc_region] = STATE(2824), - [sym_preproc_endregion] = STATE(2824), - [sym_preproc_line] = STATE(2824), - [sym_preproc_pragma] = STATE(2824), - [sym_preproc_nullable] = STATE(2824), - [sym_preproc_error] = STATE(2824), - [sym_preproc_warning] = STATE(2824), - [sym_preproc_define] = STATE(2824), - [sym_preproc_undef] = STATE(2824), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4351), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4351), - [anon_sym_EQ_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(4348), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_QMARK_QMARK] = ACTIONS(4351), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4348), - [anon_sym_with] = ACTIONS(4348), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [sym__identifier_token] = ACTIONS(4643), + [anon_sym_extern] = ACTIONS(4643), + [anon_sym_alias] = ACTIONS(4643), + [anon_sym_global] = ACTIONS(4643), + [anon_sym_using] = ACTIONS(4643), + [anon_sym_unsafe] = ACTIONS(4643), + [anon_sym_static] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(4645), + [anon_sym_event] = ACTIONS(4643), + [anon_sym_namespace] = ACTIONS(4643), + [anon_sym_class] = ACTIONS(4643), + [anon_sym_ref] = ACTIONS(4643), + [anon_sym_struct] = ACTIONS(4643), + [anon_sym_enum] = ACTIONS(4643), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_interface] = ACTIONS(4643), + [anon_sym_delegate] = ACTIONS(4643), + [anon_sym_record] = ACTIONS(4643), + [anon_sym_abstract] = ACTIONS(4643), + [anon_sym_async] = ACTIONS(4643), + [anon_sym_const] = ACTIONS(4643), + [anon_sym_file] = ACTIONS(4643), + [anon_sym_fixed] = ACTIONS(4643), + [anon_sym_internal] = ACTIONS(4643), + [anon_sym_new] = ACTIONS(4643), + [anon_sym_override] = ACTIONS(4643), + [anon_sym_partial] = ACTIONS(4643), + [anon_sym_private] = ACTIONS(4643), + [anon_sym_protected] = ACTIONS(4643), + [anon_sym_public] = ACTIONS(4643), + [anon_sym_readonly] = ACTIONS(4643), + [anon_sym_required] = ACTIONS(4643), + [anon_sym_sealed] = ACTIONS(4643), + [anon_sym_virtual] = ACTIONS(4643), + [anon_sym_volatile] = ACTIONS(4643), + [anon_sym_where] = ACTIONS(4643), + [anon_sym_notnull] = ACTIONS(4643), + [anon_sym_unmanaged] = ACTIONS(4643), + [anon_sym_TILDE] = ACTIONS(4645), + [anon_sym_implicit] = ACTIONS(4643), + [anon_sym_explicit] = ACTIONS(4643), + [anon_sym_scoped] = ACTIONS(4643), + [anon_sym_var] = ACTIONS(4643), + [sym_predefined_type] = ACTIONS(4643), + [anon_sym_yield] = ACTIONS(4643), + [anon_sym_when] = ACTIONS(4643), + [anon_sym_from] = ACTIONS(4643), + [anon_sym_into] = ACTIONS(4643), + [anon_sym_join] = ACTIONS(4643), + [anon_sym_on] = ACTIONS(4643), + [anon_sym_equals] = ACTIONS(4643), + [anon_sym_let] = ACTIONS(4643), + [anon_sym_orderby] = ACTIONS(4643), + [anon_sym_ascending] = ACTIONS(4643), + [anon_sym_descending] = ACTIONS(4643), + [anon_sym_group] = ACTIONS(4643), + [anon_sym_by] = ACTIONS(4643), + [anon_sym_select] = ACTIONS(4643), + [aux_sym_preproc_if_token1] = ACTIONS(4645), + [aux_sym_preproc_if_token3] = ACTIONS(4645), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457574,116 +457525,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2825] = { - [sym_preproc_region] = STATE(2825), - [sym_preproc_endregion] = STATE(2825), - [sym_preproc_line] = STATE(2825), - [sym_preproc_pragma] = STATE(2825), - [sym_preproc_nullable] = STATE(2825), - [sym_preproc_error] = STATE(2825), - [sym_preproc_warning] = STATE(2825), - [sym_preproc_define] = STATE(2825), - [sym_preproc_undef] = STATE(2825), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4521), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), - }, - [2826] = { - [sym__variable_designation] = STATE(4171), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2826), - [sym_preproc_endregion] = STATE(2826), - [sym_preproc_line] = STATE(2826), - [sym_preproc_pragma] = STATE(2826), - [sym_preproc_nullable] = STATE(2826), - [sym_preproc_error] = STATE(2826), - [sym_preproc_warning] = STATE(2826), - [sym_preproc_define] = STATE(2826), - [sym_preproc_undef] = STATE(2826), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), + [2824] = { + [sym__variable_designation] = STATE(4170), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2824), + [sym_preproc_endregion] = STATE(2824), + [sym_preproc_line] = STATE(2824), + [sym_preproc_pragma] = STATE(2824), + [sym_preproc_nullable] = STATE(2824), + [sym_preproc_error] = STATE(2824), + [sym_preproc_warning] = STATE(2824), + [sym_preproc_define] = STATE(2824), + [sym_preproc_undef] = STATE(2824), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), [anon_sym_LBRACK] = ACTIONS(3997), [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3871), [anon_sym_LT] = ACTIONS(3999), [anon_sym_GT] = ACTIONS(3999), [anon_sym_where] = ACTIONS(3999), [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), [anon_sym_BANG] = ACTIONS(3999), [anon_sym_PLUS_PLUS] = ACTIONS(3997), [anon_sym_DASH_DASH] = ACTIONS(3997), @@ -457703,12 +457570,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3997), [anon_sym_LT_EQ] = ACTIONS(3997), [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), [anon_sym_DOT_DOT] = ACTIONS(3997), [anon_sym_and] = ACTIONS(3999), [anon_sym_or] = ACTIONS(3999), @@ -457716,16 +457583,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(3997), [anon_sym_QMARK_QMARK] = ACTIONS(3997), [anon_sym_from] = ACTIONS(3999), - [anon_sym_into] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3999), [anon_sym_join] = ACTIONS(3999), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), [anon_sym_let] = ACTIONS(3999), [anon_sym_orderby] = ACTIONS(3999), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), [anon_sym_group] = ACTIONS(3999), - [anon_sym_by] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3871), [anon_sym_select] = ACTIONS(3999), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), @@ -457742,6 +457609,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2825] = { + [sym__variable_designation] = STATE(4189), + [sym_parenthesized_variable_designation] = STATE(4201), + [sym_identifier] = STATE(4205), + [sym__reserved_identifier] = STATE(2952), + [sym_preproc_region] = STATE(2825), + [sym_preproc_endregion] = STATE(2825), + [sym_preproc_line] = STATE(2825), + [sym_preproc_pragma] = STATE(2825), + [sym_preproc_nullable] = STATE(2825), + [sym_preproc_error] = STATE(2825), + [sym_preproc_warning] = STATE(2825), + [sym_preproc_define] = STATE(2825), + [sym_preproc_undef] = STATE(2825), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(4003), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3871), + [anon_sym_var] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3871), + [sym_discard] = ACTIONS(4245), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(4003), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(4003), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(4003), + [anon_sym_orderby] = ACTIONS(4003), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(4003), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(4003), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2826] = { + [sym_preproc_region] = STATE(2826), + [sym_preproc_endregion] = STATE(2826), + [sym_preproc_line] = STATE(2826), + [sym_preproc_pragma] = STATE(2826), + [sym_preproc_nullable] = STATE(2826), + [sym_preproc_error] = STATE(2826), + [sym_preproc_warning] = STATE(2826), + [sym_preproc_define] = STATE(2826), + [sym_preproc_undef] = STATE(2826), + [sym__identifier_token] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_alias] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_unsafe] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_event] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_ref] = ACTIONS(3371), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_delegate] = ACTIONS(3371), + [anon_sym_record] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_file] = ACTIONS(3371), + [anon_sym_fixed] = ACTIONS(3371), + [anon_sym_internal] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_partial] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_required] = ACTIONS(3371), + [anon_sym_sealed] = ACTIONS(3371), + [anon_sym_virtual] = ACTIONS(3371), + [anon_sym_volatile] = ACTIONS(3371), + [anon_sym_where] = ACTIONS(3371), + [anon_sym_notnull] = ACTIONS(3371), + [anon_sym_unmanaged] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_implicit] = ACTIONS(3371), + [anon_sym_explicit] = ACTIONS(3371), + [anon_sym_scoped] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [sym_predefined_type] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_when] = ACTIONS(3371), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_into] = ACTIONS(3371), + [anon_sym_join] = ACTIONS(3371), + [anon_sym_on] = ACTIONS(3371), + [anon_sym_equals] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_orderby] = ACTIONS(3371), + [anon_sym_ascending] = ACTIONS(3371), + [anon_sym_descending] = ACTIONS(3371), + [anon_sym_group] = ACTIONS(3371), + [anon_sym_by] = ACTIONS(3371), + [anon_sym_select] = ACTIONS(3371), + [aux_sym_preproc_if_token1] = ACTIONS(3373), + [aux_sym_preproc_if_token3] = ACTIONS(3373), + [aux_sym_preproc_else_token1] = ACTIONS(3373), + [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2827] = { [sym_preproc_region] = STATE(2827), [sym_preproc_endregion] = STATE(2827), @@ -457752,69 +457787,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2827), [sym_preproc_define] = STATE(2827), [sym_preproc_undef] = STATE(2827), - [anon_sym_SEMI] = ACTIONS(4204), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_RBRACK] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_EQ_GT] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_when] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_on] = ACTIONS(4204), - [anon_sym_equals] = ACTIONS(4204), - [anon_sym_by] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), - [aux_sym_preproc_if_token3] = ACTIONS(4204), - [aux_sym_preproc_else_token1] = ACTIONS(4204), - [aux_sym_preproc_elif_token1] = ACTIONS(4204), + [sym__identifier_token] = ACTIONS(4647), + [anon_sym_extern] = ACTIONS(4647), + [anon_sym_alias] = ACTIONS(4647), + [anon_sym_global] = ACTIONS(4647), + [anon_sym_using] = ACTIONS(4647), + [anon_sym_unsafe] = ACTIONS(4647), + [anon_sym_static] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_LPAREN] = ACTIONS(4649), + [anon_sym_event] = ACTIONS(4647), + [anon_sym_namespace] = ACTIONS(4647), + [anon_sym_class] = ACTIONS(4647), + [anon_sym_ref] = ACTIONS(4647), + [anon_sym_struct] = ACTIONS(4647), + [anon_sym_enum] = ACTIONS(4647), + [anon_sym_RBRACE] = ACTIONS(4649), + [anon_sym_interface] = ACTIONS(4647), + [anon_sym_delegate] = ACTIONS(4647), + [anon_sym_record] = ACTIONS(4647), + [anon_sym_abstract] = ACTIONS(4647), + [anon_sym_async] = ACTIONS(4647), + [anon_sym_const] = ACTIONS(4647), + [anon_sym_file] = ACTIONS(4647), + [anon_sym_fixed] = ACTIONS(4647), + [anon_sym_internal] = ACTIONS(4647), + [anon_sym_new] = ACTIONS(4647), + [anon_sym_override] = ACTIONS(4647), + [anon_sym_partial] = ACTIONS(4647), + [anon_sym_private] = ACTIONS(4647), + [anon_sym_protected] = ACTIONS(4647), + [anon_sym_public] = ACTIONS(4647), + [anon_sym_readonly] = ACTIONS(4647), + [anon_sym_required] = ACTIONS(4647), + [anon_sym_sealed] = ACTIONS(4647), + [anon_sym_virtual] = ACTIONS(4647), + [anon_sym_volatile] = ACTIONS(4647), + [anon_sym_where] = ACTIONS(4647), + [anon_sym_notnull] = ACTIONS(4647), + [anon_sym_unmanaged] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4649), + [anon_sym_implicit] = ACTIONS(4647), + [anon_sym_explicit] = ACTIONS(4647), + [anon_sym_scoped] = ACTIONS(4647), + [anon_sym_var] = ACTIONS(4647), + [sym_predefined_type] = ACTIONS(4647), + [anon_sym_yield] = ACTIONS(4647), + [anon_sym_when] = ACTIONS(4647), + [anon_sym_from] = ACTIONS(4647), + [anon_sym_into] = ACTIONS(4647), + [anon_sym_join] = ACTIONS(4647), + [anon_sym_on] = ACTIONS(4647), + [anon_sym_equals] = ACTIONS(4647), + [anon_sym_let] = ACTIONS(4647), + [anon_sym_orderby] = ACTIONS(4647), + [anon_sym_ascending] = ACTIONS(4647), + [anon_sym_descending] = ACTIONS(4647), + [anon_sym_group] = ACTIONS(4647), + [anon_sym_by] = ACTIONS(4647), + [anon_sym_select] = ACTIONS(4647), + [aux_sym_preproc_if_token1] = ACTIONS(4649), + [aux_sym_preproc_if_token3] = ACTIONS(4649), + [aux_sym_preproc_else_token1] = ACTIONS(4649), + [aux_sym_preproc_elif_token1] = ACTIONS(4649), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457836,79 +457871,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2828), [sym_preproc_define] = STATE(2828), [sym_preproc_undef] = STATE(2828), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4651), + [anon_sym_extern] = ACTIONS(4651), + [anon_sym_alias] = ACTIONS(4651), + [anon_sym_global] = ACTIONS(4651), + [anon_sym_using] = ACTIONS(4651), + [anon_sym_unsafe] = ACTIONS(4651), + [anon_sym_static] = ACTIONS(4651), + [anon_sym_LBRACK] = ACTIONS(4653), + [anon_sym_LPAREN] = ACTIONS(4653), + [anon_sym_event] = ACTIONS(4651), + [anon_sym_namespace] = ACTIONS(4651), + [anon_sym_class] = ACTIONS(4651), + [anon_sym_ref] = ACTIONS(4651), + [anon_sym_struct] = ACTIONS(4651), + [anon_sym_enum] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(4653), + [anon_sym_interface] = ACTIONS(4651), + [anon_sym_delegate] = ACTIONS(4651), + [anon_sym_record] = ACTIONS(4651), + [anon_sym_abstract] = ACTIONS(4651), + [anon_sym_async] = ACTIONS(4651), + [anon_sym_const] = ACTIONS(4651), + [anon_sym_file] = ACTIONS(4651), + [anon_sym_fixed] = ACTIONS(4651), + [anon_sym_internal] = ACTIONS(4651), + [anon_sym_new] = ACTIONS(4651), + [anon_sym_override] = ACTIONS(4651), + [anon_sym_partial] = ACTIONS(4651), + [anon_sym_private] = ACTIONS(4651), + [anon_sym_protected] = ACTIONS(4651), + [anon_sym_public] = ACTIONS(4651), + [anon_sym_readonly] = ACTIONS(4651), + [anon_sym_required] = ACTIONS(4651), + [anon_sym_sealed] = ACTIONS(4651), + [anon_sym_virtual] = ACTIONS(4651), + [anon_sym_volatile] = ACTIONS(4651), + [anon_sym_where] = ACTIONS(4651), + [anon_sym_notnull] = ACTIONS(4651), + [anon_sym_unmanaged] = ACTIONS(4651), + [anon_sym_TILDE] = ACTIONS(4653), + [anon_sym_implicit] = ACTIONS(4651), + [anon_sym_explicit] = ACTIONS(4651), + [anon_sym_scoped] = ACTIONS(4651), + [anon_sym_var] = ACTIONS(4651), + [sym_predefined_type] = ACTIONS(4651), + [anon_sym_yield] = ACTIONS(4651), + [anon_sym_when] = ACTIONS(4651), + [anon_sym_from] = ACTIONS(4651), + [anon_sym_into] = ACTIONS(4651), + [anon_sym_join] = ACTIONS(4651), + [anon_sym_on] = ACTIONS(4651), + [anon_sym_equals] = ACTIONS(4651), + [anon_sym_let] = ACTIONS(4651), + [anon_sym_orderby] = ACTIONS(4651), + [anon_sym_ascending] = ACTIONS(4651), + [anon_sym_descending] = ACTIONS(4651), + [anon_sym_group] = ACTIONS(4651), + [anon_sym_by] = ACTIONS(4651), + [anon_sym_select] = ACTIONS(4651), + [aux_sym_preproc_if_token1] = ACTIONS(4653), + [aux_sym_preproc_if_token3] = ACTIONS(4653), + [aux_sym_preproc_else_token1] = ACTIONS(4653), + [aux_sym_preproc_elif_token1] = ACTIONS(4653), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2829] = { [sym_preproc_region] = STATE(2829), @@ -457920,81 +457955,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2829), [sym_preproc_define] = STATE(2829), [sym_preproc_undef] = STATE(2829), - [sym__identifier_token] = ACTIONS(4029), - [anon_sym_alias] = ACTIONS(4029), - [anon_sym_global] = ACTIONS(4029), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_file] = ACTIONS(4029), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_notnull] = ACTIONS(4029), - [anon_sym_unmanaged] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_scoped] = ACTIONS(4029), - [anon_sym_var] = ACTIONS(4029), - [anon_sym_yield] = ACTIONS(4029), - [anon_sym_switch] = ACTIONS(4029), - [anon_sym_when] = ACTIONS(4029), - [sym_discard] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4029), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4029), - [anon_sym_into] = ACTIONS(4029), - [anon_sym_join] = ACTIONS(4029), - [anon_sym_on] = ACTIONS(4029), - [anon_sym_equals] = ACTIONS(4029), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_orderby] = ACTIONS(4029), - [anon_sym_ascending] = ACTIONS(4029), - [anon_sym_descending] = ACTIONS(4029), - [anon_sym_group] = ACTIONS(4029), - [anon_sym_by] = ACTIONS(4029), - [anon_sym_select] = ACTIONS(4029), - [anon_sym_as] = ACTIONS(4029), - [anon_sym_is] = ACTIONS(4029), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4029), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4031), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4655), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, [2830] = { + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2830), [sym_preproc_endregion] = STATE(2830), [sym_preproc_line] = STATE(2830), @@ -458004,69 +458043,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2830), [sym_preproc_define] = STATE(2830), [sym_preproc_undef] = STATE(2830), - [sym__identifier_token] = ACTIONS(4667), - [anon_sym_extern] = ACTIONS(4667), - [anon_sym_alias] = ACTIONS(4667), - [anon_sym_global] = ACTIONS(4667), - [anon_sym_using] = ACTIONS(4667), - [anon_sym_unsafe] = ACTIONS(4667), - [anon_sym_static] = ACTIONS(4667), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_event] = ACTIONS(4667), - [anon_sym_namespace] = ACTIONS(4667), - [anon_sym_class] = ACTIONS(4667), - [anon_sym_ref] = ACTIONS(4667), - [anon_sym_struct] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(4667), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_interface] = ACTIONS(4667), - [anon_sym_delegate] = ACTIONS(4667), - [anon_sym_record] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_async] = ACTIONS(4667), - [anon_sym_const] = ACTIONS(4667), - [anon_sym_file] = ACTIONS(4667), - [anon_sym_fixed] = ACTIONS(4667), - [anon_sym_internal] = ACTIONS(4667), - [anon_sym_new] = ACTIONS(4667), - [anon_sym_override] = ACTIONS(4667), - [anon_sym_partial] = ACTIONS(4667), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_public] = ACTIONS(4667), - [anon_sym_readonly] = ACTIONS(4667), - [anon_sym_required] = ACTIONS(4667), - [anon_sym_sealed] = ACTIONS(4667), - [anon_sym_virtual] = ACTIONS(4667), - [anon_sym_volatile] = ACTIONS(4667), - [anon_sym_where] = ACTIONS(4667), - [anon_sym_notnull] = ACTIONS(4667), - [anon_sym_unmanaged] = ACTIONS(4667), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_implicit] = ACTIONS(4667), - [anon_sym_explicit] = ACTIONS(4667), - [anon_sym_scoped] = ACTIONS(4667), - [anon_sym_var] = ACTIONS(4667), - [sym_predefined_type] = ACTIONS(4667), - [anon_sym_yield] = ACTIONS(4667), - [anon_sym_when] = ACTIONS(4667), - [anon_sym_from] = ACTIONS(4667), - [anon_sym_into] = ACTIONS(4667), - [anon_sym_join] = ACTIONS(4667), - [anon_sym_on] = ACTIONS(4667), - [anon_sym_equals] = ACTIONS(4667), - [anon_sym_let] = ACTIONS(4667), - [anon_sym_orderby] = ACTIONS(4667), - [anon_sym_ascending] = ACTIONS(4667), - [anon_sym_descending] = ACTIONS(4667), - [anon_sym_group] = ACTIONS(4667), - [anon_sym_by] = ACTIONS(4667), - [anon_sym_select] = ACTIONS(4667), - [aux_sym_preproc_if_token1] = ACTIONS(4669), - [aux_sym_preproc_if_token3] = ACTIONS(4669), - [aux_sym_preproc_else_token1] = ACTIONS(4669), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458079,6 +458114,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2831] = { + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), [sym_preproc_region] = STATE(2831), [sym_preproc_endregion] = STATE(2831), [sym_preproc_line] = STATE(2831), @@ -458088,825 +458127,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2831), [sym_preproc_define] = STATE(2831), [sym_preproc_undef] = STATE(2831), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_scoped] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3697), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3697), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3697), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3708), - }, - [2832] = { - [sym_preproc_region] = STATE(2832), - [sym_preproc_endregion] = STATE(2832), - [sym_preproc_line] = STATE(2832), - [sym_preproc_pragma] = STATE(2832), - [sym_preproc_nullable] = STATE(2832), - [sym_preproc_error] = STATE(2832), - [sym_preproc_warning] = STATE(2832), - [sym_preproc_define] = STATE(2832), - [sym_preproc_undef] = STATE(2832), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), - }, - [2833] = { - [sym_preproc_region] = STATE(2833), - [sym_preproc_endregion] = STATE(2833), - [sym_preproc_line] = STATE(2833), - [sym_preproc_pragma] = STATE(2833), - [sym_preproc_nullable] = STATE(2833), - [sym_preproc_error] = STATE(2833), - [sym_preproc_warning] = STATE(2833), - [sym_preproc_define] = STATE(2833), - [sym_preproc_undef] = STATE(2833), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), - }, - [2834] = { - [sym_preproc_region] = STATE(2834), - [sym_preproc_endregion] = STATE(2834), - [sym_preproc_line] = STATE(2834), - [sym_preproc_pragma] = STATE(2834), - [sym_preproc_nullable] = STATE(2834), - [sym_preproc_error] = STATE(2834), - [sym_preproc_warning] = STATE(2834), - [sym_preproc_define] = STATE(2834), - [sym_preproc_undef] = STATE(2834), - [sym__identifier_token] = ACTIONS(4673), - [anon_sym_extern] = ACTIONS(4673), - [anon_sym_alias] = ACTIONS(4673), - [anon_sym_global] = ACTIONS(4673), - [anon_sym_using] = ACTIONS(4673), - [anon_sym_unsafe] = ACTIONS(4673), - [anon_sym_static] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_event] = ACTIONS(4673), - [anon_sym_namespace] = ACTIONS(4673), - [anon_sym_class] = ACTIONS(4673), - [anon_sym_ref] = ACTIONS(4673), - [anon_sym_struct] = ACTIONS(4673), - [anon_sym_enum] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4675), - [anon_sym_interface] = ACTIONS(4673), - [anon_sym_delegate] = ACTIONS(4673), - [anon_sym_record] = ACTIONS(4673), - [anon_sym_abstract] = ACTIONS(4673), - [anon_sym_async] = ACTIONS(4673), - [anon_sym_const] = ACTIONS(4673), - [anon_sym_file] = ACTIONS(4673), - [anon_sym_fixed] = ACTIONS(4673), - [anon_sym_internal] = ACTIONS(4673), - [anon_sym_new] = ACTIONS(4673), - [anon_sym_override] = ACTIONS(4673), - [anon_sym_partial] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4673), - [anon_sym_public] = ACTIONS(4673), - [anon_sym_readonly] = ACTIONS(4673), - [anon_sym_required] = ACTIONS(4673), - [anon_sym_sealed] = ACTIONS(4673), - [anon_sym_virtual] = ACTIONS(4673), - [anon_sym_volatile] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4673), - [anon_sym_notnull] = ACTIONS(4673), - [anon_sym_unmanaged] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4675), - [anon_sym_implicit] = ACTIONS(4673), - [anon_sym_explicit] = ACTIONS(4673), - [anon_sym_scoped] = ACTIONS(4673), - [anon_sym_var] = ACTIONS(4673), - [sym_predefined_type] = ACTIONS(4673), - [anon_sym_yield] = ACTIONS(4673), - [anon_sym_when] = ACTIONS(4673), - [anon_sym_from] = ACTIONS(4673), - [anon_sym_into] = ACTIONS(4673), - [anon_sym_join] = ACTIONS(4673), - [anon_sym_on] = ACTIONS(4673), - [anon_sym_equals] = ACTIONS(4673), - [anon_sym_let] = ACTIONS(4673), - [anon_sym_orderby] = ACTIONS(4673), - [anon_sym_ascending] = ACTIONS(4673), - [anon_sym_descending] = ACTIONS(4673), - [anon_sym_group] = ACTIONS(4673), - [anon_sym_by] = ACTIONS(4673), - [anon_sym_select] = ACTIONS(4673), - [aux_sym_preproc_if_token1] = ACTIONS(4675), - [aux_sym_preproc_if_token3] = ACTIONS(4675), - [aux_sym_preproc_else_token1] = ACTIONS(4675), - [aux_sym_preproc_elif_token1] = ACTIONS(4675), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2835] = { - [sym__variable_designation] = STATE(4211), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2835), - [sym_preproc_endregion] = STATE(2835), - [sym_preproc_line] = STATE(2835), - [sym_preproc_pragma] = STATE(2835), - [sym_preproc_nullable] = STATE(2835), - [sym_preproc_error] = STATE(2835), - [sym_preproc_warning] = STATE(2835), - [sym_preproc_define] = STATE(2835), - [sym_preproc_undef] = STATE(2835), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2836] = { - [sym_preproc_region] = STATE(2836), - [sym_preproc_endregion] = STATE(2836), - [sym_preproc_line] = STATE(2836), - [sym_preproc_pragma] = STATE(2836), - [sym_preproc_nullable] = STATE(2836), - [sym_preproc_error] = STATE(2836), - [sym_preproc_warning] = STATE(2836), - [sym_preproc_define] = STATE(2836), - [sym_preproc_undef] = STATE(2836), - [sym__identifier_token] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(4013), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4013), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4013), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_is] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4013), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4015), - }, - [2837] = { - [sym_preproc_region] = STATE(2837), - [sym_preproc_endregion] = STATE(2837), - [sym_preproc_line] = STATE(2837), - [sym_preproc_pragma] = STATE(2837), - [sym_preproc_nullable] = STATE(2837), - [sym_preproc_error] = STATE(2837), - [sym_preproc_warning] = STATE(2837), - [sym_preproc_define] = STATE(2837), - [sym_preproc_undef] = STATE(2837), - [sym__identifier_token] = ACTIONS(4138), - [anon_sym_alias] = ACTIONS(4138), - [anon_sym_global] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_COLON] = ACTIONS(4140), - [anon_sym_COMMA] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4140), - [anon_sym_file] = ACTIONS(4138), - [anon_sym_LT] = ACTIONS(4138), - [anon_sym_GT] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_QMARK] = ACTIONS(4138), - [anon_sym_notnull] = ACTIONS(4138), - [anon_sym_unmanaged] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_SLASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4140), - [anon_sym_PIPE] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_LT_LT] = ACTIONS(4140), - [anon_sym_GT_GT] = ACTIONS(4138), - [anon_sym_GT_GT_GT] = ACTIONS(4140), - [anon_sym_EQ_EQ] = ACTIONS(4140), - [anon_sym_BANG_EQ] = ACTIONS(4140), - [anon_sym_GT_EQ] = ACTIONS(4140), - [anon_sym_LT_EQ] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_scoped] = ACTIONS(4138), - [anon_sym_var] = ACTIONS(4138), - [anon_sym_yield] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_when] = ACTIONS(4138), - [sym_discard] = ACTIONS(4138), - [anon_sym_DOT_DOT] = ACTIONS(4140), - [anon_sym_and] = ACTIONS(4138), - [anon_sym_or] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4140), - [anon_sym_PIPE_PIPE] = ACTIONS(4140), - [anon_sym_QMARK_QMARK] = ACTIONS(4140), - [anon_sym_from] = ACTIONS(4138), - [anon_sym_into] = ACTIONS(4138), - [anon_sym_join] = ACTIONS(4138), - [anon_sym_on] = ACTIONS(4138), - [anon_sym_equals] = ACTIONS(4138), - [anon_sym_let] = ACTIONS(4138), - [anon_sym_orderby] = ACTIONS(4138), - [anon_sym_ascending] = ACTIONS(4138), - [anon_sym_descending] = ACTIONS(4138), - [anon_sym_group] = ACTIONS(4138), - [anon_sym_by] = ACTIONS(4138), - [anon_sym_select] = ACTIONS(4138), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_is] = ACTIONS(4138), - [anon_sym_DASH_GT] = ACTIONS(4140), - [anon_sym_with] = ACTIONS(4138), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4140), - }, - [2838] = { - [sym_preproc_region] = STATE(2838), - [sym_preproc_endregion] = STATE(2838), - [sym_preproc_line] = STATE(2838), - [sym_preproc_pragma] = STATE(2838), - [sym_preproc_nullable] = STATE(2838), - [sym_preproc_error] = STATE(2838), - [sym_preproc_warning] = STATE(2838), - [sym_preproc_define] = STATE(2838), - [sym_preproc_undef] = STATE(2838), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_EQ] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3674), - [anon_sym_CARET] = ACTIONS(3674), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3674), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3674), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3676), - [anon_sym_PLUS_EQ] = ACTIONS(3676), - [anon_sym_DASH_EQ] = ACTIONS(3676), - [anon_sym_STAR_EQ] = ACTIONS(3676), - [anon_sym_SLASH_EQ] = ACTIONS(3676), - [anon_sym_PERCENT_EQ] = ACTIONS(3676), - [anon_sym_AMP_EQ] = ACTIONS(3676), - [anon_sym_CARET_EQ] = ACTIONS(3676), - [anon_sym_PIPE_EQ] = ACTIONS(3676), - [anon_sym_LT_LT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3676), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2839] = { - [sym_preproc_region] = STATE(2839), - [sym_preproc_endregion] = STATE(2839), - [sym_preproc_line] = STATE(2839), - [sym_preproc_pragma] = STATE(2839), - [sym_preproc_nullable] = STATE(2839), - [sym_preproc_error] = STATE(2839), - [sym_preproc_warning] = STATE(2839), - [sym_preproc_define] = STATE(2839), - [sym_preproc_undef] = STATE(2839), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_event] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_implicit] = ACTIONS(3379), - [anon_sym_explicit] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2840] = { - [sym__variable_designation] = STATE(3370), - [sym_parenthesized_variable_designation] = STATE(3352), - [sym_identifier] = STATE(3354), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2840), - [sym_preproc_endregion] = STATE(2840), - [sym_preproc_line] = STATE(2840), - [sym_preproc_pragma] = STATE(2840), - [sym_preproc_nullable] = STATE(2840), - [sym_preproc_error] = STATE(2840), - [sym_preproc_warning] = STATE(2840), - [sym_preproc_define] = STATE(2840), - [sym_preproc_undef] = STATE(2840), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3971), + [anon_sym_QMARK] = ACTIONS(3933), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3971), + [anon_sym_switch] = ACTIONS(3933), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3971), + [anon_sym_into] = ACTIONS(3899), [anon_sym_join] = ACTIONS(3899), [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3933), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), [anon_sym_ascending] = ACTIONS(3899), [anon_sym_descending] = ACTIONS(3899), [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3971), + [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458918,79 +458197,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2841] = { - [sym_preproc_region] = STATE(2841), - [sym_preproc_endregion] = STATE(2841), - [sym_preproc_line] = STATE(2841), - [sym_preproc_pragma] = STATE(2841), - [sym_preproc_nullable] = STATE(2841), - [sym_preproc_error] = STATE(2841), - [sym_preproc_warning] = STATE(2841), - [sym_preproc_define] = STATE(2841), - [sym_preproc_undef] = STATE(2841), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4208), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_when] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4208), - [anon_sym_equals] = ACTIONS(4208), - [anon_sym_by] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), - [aux_sym_preproc_if_token3] = ACTIONS(4208), - [aux_sym_preproc_else_token1] = ACTIONS(4208), - [aux_sym_preproc_elif_token1] = ACTIONS(4208), + [2832] = { + [sym_preproc_region] = STATE(2832), + [sym_preproc_endregion] = STATE(2832), + [sym_preproc_line] = STATE(2832), + [sym_preproc_pragma] = STATE(2832), + [sym_preproc_nullable] = STATE(2832), + [sym_preproc_error] = STATE(2832), + [sym_preproc_warning] = STATE(2832), + [sym_preproc_define] = STATE(2832), + [sym_preproc_undef] = STATE(2832), + [sym__identifier_token] = ACTIONS(4657), + [anon_sym_extern] = ACTIONS(4657), + [anon_sym_alias] = ACTIONS(4657), + [anon_sym_global] = ACTIONS(4657), + [anon_sym_using] = ACTIONS(4657), + [anon_sym_unsafe] = ACTIONS(4657), + [anon_sym_static] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_event] = ACTIONS(4657), + [anon_sym_namespace] = ACTIONS(4657), + [anon_sym_class] = ACTIONS(4657), + [anon_sym_ref] = ACTIONS(4657), + [anon_sym_struct] = ACTIONS(4657), + [anon_sym_enum] = ACTIONS(4657), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_interface] = ACTIONS(4657), + [anon_sym_delegate] = ACTIONS(4657), + [anon_sym_record] = ACTIONS(4657), + [anon_sym_abstract] = ACTIONS(4657), + [anon_sym_async] = ACTIONS(4657), + [anon_sym_const] = ACTIONS(4657), + [anon_sym_file] = ACTIONS(4657), + [anon_sym_fixed] = ACTIONS(4657), + [anon_sym_internal] = ACTIONS(4657), + [anon_sym_new] = ACTIONS(4657), + [anon_sym_override] = ACTIONS(4657), + [anon_sym_partial] = ACTIONS(4657), + [anon_sym_private] = ACTIONS(4657), + [anon_sym_protected] = ACTIONS(4657), + [anon_sym_public] = ACTIONS(4657), + [anon_sym_readonly] = ACTIONS(4657), + [anon_sym_required] = ACTIONS(4657), + [anon_sym_sealed] = ACTIONS(4657), + [anon_sym_virtual] = ACTIONS(4657), + [anon_sym_volatile] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_notnull] = ACTIONS(4657), + [anon_sym_unmanaged] = ACTIONS(4657), + [anon_sym_TILDE] = ACTIONS(4659), + [anon_sym_implicit] = ACTIONS(4657), + [anon_sym_explicit] = ACTIONS(4657), + [anon_sym_scoped] = ACTIONS(4657), + [anon_sym_var] = ACTIONS(4657), + [sym_predefined_type] = ACTIONS(4657), + [anon_sym_yield] = ACTIONS(4657), + [anon_sym_when] = ACTIONS(4657), + [anon_sym_from] = ACTIONS(4657), + [anon_sym_into] = ACTIONS(4657), + [anon_sym_join] = ACTIONS(4657), + [anon_sym_on] = ACTIONS(4657), + [anon_sym_equals] = ACTIONS(4657), + [anon_sym_let] = ACTIONS(4657), + [anon_sym_orderby] = ACTIONS(4657), + [anon_sym_ascending] = ACTIONS(4657), + [anon_sym_descending] = ACTIONS(4657), + [anon_sym_group] = ACTIONS(4657), + [anon_sym_by] = ACTIONS(4657), + [anon_sym_select] = ACTIONS(4657), + [aux_sym_preproc_if_token1] = ACTIONS(4659), + [aux_sym_preproc_if_token3] = ACTIONS(4659), + [aux_sym_preproc_else_token1] = ACTIONS(4659), + [aux_sym_preproc_elif_token1] = ACTIONS(4659), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459002,79 +458281,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2842] = { - [sym_preproc_region] = STATE(2842), - [sym_preproc_endregion] = STATE(2842), - [sym_preproc_line] = STATE(2842), - [sym_preproc_pragma] = STATE(2842), - [sym_preproc_nullable] = STATE(2842), - [sym_preproc_error] = STATE(2842), - [sym_preproc_warning] = STATE(2842), - [sym_preproc_define] = STATE(2842), - [sym_preproc_undef] = STATE(2842), - [sym__identifier_token] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym_alias] = ACTIONS(3435), - [anon_sym_global] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_event] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_ref] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_delegate] = ACTIONS(3435), - [anon_sym_record] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_file] = ACTIONS(3435), - [anon_sym_fixed] = ACTIONS(3435), - [anon_sym_internal] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_partial] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_required] = ACTIONS(3435), - [anon_sym_sealed] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_where] = ACTIONS(3435), - [anon_sym_notnull] = ACTIONS(3435), - [anon_sym_unmanaged] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_implicit] = ACTIONS(3435), - [anon_sym_explicit] = ACTIONS(3435), - [anon_sym_scoped] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [sym_predefined_type] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3435), - [anon_sym_from] = ACTIONS(3435), - [anon_sym_into] = ACTIONS(3435), - [anon_sym_join] = ACTIONS(3435), - [anon_sym_on] = ACTIONS(3435), - [anon_sym_equals] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_orderby] = ACTIONS(3435), - [anon_sym_ascending] = ACTIONS(3435), - [anon_sym_descending] = ACTIONS(3435), - [anon_sym_group] = ACTIONS(3435), - [anon_sym_by] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_if_token3] = ACTIONS(3437), - [aux_sym_preproc_else_token1] = ACTIONS(3437), - [aux_sym_preproc_elif_token1] = ACTIONS(3437), + [2833] = { + [sym_preproc_region] = STATE(2833), + [sym_preproc_endregion] = STATE(2833), + [sym_preproc_line] = STATE(2833), + [sym_preproc_pragma] = STATE(2833), + [sym_preproc_nullable] = STATE(2833), + [sym_preproc_error] = STATE(2833), + [sym_preproc_warning] = STATE(2833), + [sym_preproc_define] = STATE(2833), + [sym_preproc_undef] = STATE(2833), + [sym__identifier_token] = ACTIONS(4661), + [anon_sym_extern] = ACTIONS(4661), + [anon_sym_alias] = ACTIONS(4661), + [anon_sym_global] = ACTIONS(4661), + [anon_sym_using] = ACTIONS(4661), + [anon_sym_unsafe] = ACTIONS(4661), + [anon_sym_static] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_event] = ACTIONS(4661), + [anon_sym_namespace] = ACTIONS(4661), + [anon_sym_class] = ACTIONS(4661), + [anon_sym_ref] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(4661), + [anon_sym_enum] = ACTIONS(4661), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_interface] = ACTIONS(4661), + [anon_sym_delegate] = ACTIONS(4661), + [anon_sym_record] = ACTIONS(4661), + [anon_sym_abstract] = ACTIONS(4661), + [anon_sym_async] = ACTIONS(4661), + [anon_sym_const] = ACTIONS(4661), + [anon_sym_file] = ACTIONS(4661), + [anon_sym_fixed] = ACTIONS(4661), + [anon_sym_internal] = ACTIONS(4661), + [anon_sym_new] = ACTIONS(4661), + [anon_sym_override] = ACTIONS(4661), + [anon_sym_partial] = ACTIONS(4661), + [anon_sym_private] = ACTIONS(4661), + [anon_sym_protected] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4661), + [anon_sym_readonly] = ACTIONS(4661), + [anon_sym_required] = ACTIONS(4661), + [anon_sym_sealed] = ACTIONS(4661), + [anon_sym_virtual] = ACTIONS(4661), + [anon_sym_volatile] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_notnull] = ACTIONS(4661), + [anon_sym_unmanaged] = ACTIONS(4661), + [anon_sym_TILDE] = ACTIONS(4663), + [anon_sym_implicit] = ACTIONS(4661), + [anon_sym_explicit] = ACTIONS(4661), + [anon_sym_scoped] = ACTIONS(4661), + [anon_sym_var] = ACTIONS(4661), + [sym_predefined_type] = ACTIONS(4661), + [anon_sym_yield] = ACTIONS(4661), + [anon_sym_when] = ACTIONS(4661), + [anon_sym_from] = ACTIONS(4661), + [anon_sym_into] = ACTIONS(4661), + [anon_sym_join] = ACTIONS(4661), + [anon_sym_on] = ACTIONS(4661), + [anon_sym_equals] = ACTIONS(4661), + [anon_sym_let] = ACTIONS(4661), + [anon_sym_orderby] = ACTIONS(4661), + [anon_sym_ascending] = ACTIONS(4661), + [anon_sym_descending] = ACTIONS(4661), + [anon_sym_group] = ACTIONS(4661), + [anon_sym_by] = ACTIONS(4661), + [anon_sym_select] = ACTIONS(4661), + [aux_sym_preproc_if_token1] = ACTIONS(4663), + [aux_sym_preproc_if_token3] = ACTIONS(4663), + [aux_sym_preproc_else_token1] = ACTIONS(4663), + [aux_sym_preproc_elif_token1] = ACTIONS(4663), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459086,79 +458365,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2843] = { - [sym__variable_designation] = STATE(4199), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2843), - [sym_preproc_endregion] = STATE(2843), - [sym_preproc_line] = STATE(2843), - [sym_preproc_pragma] = STATE(2843), - [sym_preproc_nullable] = STATE(2843), - [sym_preproc_error] = STATE(2843), - [sym_preproc_warning] = STATE(2843), - [sym_preproc_define] = STATE(2843), - [sym_preproc_undef] = STATE(2843), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3977), - [anon_sym_GT] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3977), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3977), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3977), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3977), - [anon_sym_GT_GT_GT] = ACTIONS(3973), - [anon_sym_EQ_EQ] = ACTIONS(3973), - [anon_sym_BANG_EQ] = ACTIONS(3973), - [anon_sym_GT_EQ] = ACTIONS(3973), - [anon_sym_LT_EQ] = ACTIONS(3973), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3977), + [2834] = { + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2834), + [sym_preproc_endregion] = STATE(2834), + [sym_preproc_line] = STATE(2834), + [sym_preproc_pragma] = STATE(2834), + [sym_preproc_nullable] = STATE(2834), + [sym_preproc_error] = STATE(2834), + [sym_preproc_warning] = STATE(2834), + [sym_preproc_define] = STATE(2834), + [sym_preproc_undef] = STATE(2834), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3999), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459170,79 +458449,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2844] = { - [sym_preproc_region] = STATE(2844), - [sym_preproc_endregion] = STATE(2844), - [sym_preproc_line] = STATE(2844), - [sym_preproc_pragma] = STATE(2844), - [sym_preproc_nullable] = STATE(2844), - [sym_preproc_error] = STATE(2844), - [sym_preproc_warning] = STATE(2844), - [sym_preproc_define] = STATE(2844), - [sym_preproc_undef] = STATE(2844), - [sym__identifier_token] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [anon_sym_alias] = ACTIONS(3399), - [anon_sym_global] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_event] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_ref] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_delegate] = ACTIONS(3399), - [anon_sym_record] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_file] = ACTIONS(3399), - [anon_sym_fixed] = ACTIONS(3399), - [anon_sym_internal] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_partial] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_required] = ACTIONS(3399), - [anon_sym_sealed] = ACTIONS(3399), - [anon_sym_virtual] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_where] = ACTIONS(3399), - [anon_sym_notnull] = ACTIONS(3399), - [anon_sym_unmanaged] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_implicit] = ACTIONS(3399), - [anon_sym_explicit] = ACTIONS(3399), - [anon_sym_scoped] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [sym_predefined_type] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_when] = ACTIONS(3399), - [anon_sym_from] = ACTIONS(3399), - [anon_sym_into] = ACTIONS(3399), - [anon_sym_join] = ACTIONS(3399), - [anon_sym_on] = ACTIONS(3399), - [anon_sym_equals] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_orderby] = ACTIONS(3399), - [anon_sym_ascending] = ACTIONS(3399), - [anon_sym_descending] = ACTIONS(3399), - [anon_sym_group] = ACTIONS(3399), - [anon_sym_by] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [aux_sym_preproc_if_token1] = ACTIONS(3401), - [aux_sym_preproc_if_token3] = ACTIONS(3401), - [aux_sym_preproc_else_token1] = ACTIONS(3401), - [aux_sym_preproc_elif_token1] = ACTIONS(3401), + [2835] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2835), + [sym_preproc_endregion] = STATE(2835), + [sym_preproc_line] = STATE(2835), + [sym_preproc_pragma] = STATE(2835), + [sym_preproc_nullable] = STATE(2835), + [sym_preproc_error] = STATE(2835), + [sym_preproc_warning] = STATE(2835), + [sym_preproc_define] = STATE(2835), + [sym_preproc_undef] = STATE(2835), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(4003), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459254,79 +458533,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2845] = { - [sym_preproc_region] = STATE(2845), - [sym_preproc_endregion] = STATE(2845), - [sym_preproc_line] = STATE(2845), - [sym_preproc_pragma] = STATE(2845), - [sym_preproc_nullable] = STATE(2845), - [sym_preproc_error] = STATE(2845), - [sym_preproc_warning] = STATE(2845), - [sym_preproc_define] = STATE(2845), - [sym_preproc_undef] = STATE(2845), - [sym__identifier_token] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3403), - [anon_sym_alias] = ACTIONS(3403), - [anon_sym_global] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_event] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_ref] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_delegate] = ACTIONS(3403), - [anon_sym_record] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_file] = ACTIONS(3403), - [anon_sym_fixed] = ACTIONS(3403), - [anon_sym_internal] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_partial] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_required] = ACTIONS(3403), - [anon_sym_sealed] = ACTIONS(3403), - [anon_sym_virtual] = ACTIONS(3403), - [anon_sym_volatile] = ACTIONS(3403), - [anon_sym_where] = ACTIONS(3403), - [anon_sym_notnull] = ACTIONS(3403), - [anon_sym_unmanaged] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_implicit] = ACTIONS(3403), - [anon_sym_explicit] = ACTIONS(3403), - [anon_sym_scoped] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [sym_predefined_type] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_when] = ACTIONS(3403), - [anon_sym_from] = ACTIONS(3403), - [anon_sym_into] = ACTIONS(3403), - [anon_sym_join] = ACTIONS(3403), - [anon_sym_on] = ACTIONS(3403), - [anon_sym_equals] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_orderby] = ACTIONS(3403), - [anon_sym_ascending] = ACTIONS(3403), - [anon_sym_descending] = ACTIONS(3403), - [anon_sym_group] = ACTIONS(3403), - [anon_sym_by] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [aux_sym_preproc_if_token1] = ACTIONS(3405), - [aux_sym_preproc_if_token3] = ACTIONS(3405), - [aux_sym_preproc_else_token1] = ACTIONS(3405), - [aux_sym_preproc_elif_token1] = ACTIONS(3405), + [2836] = { + [sym_preproc_region] = STATE(2836), + [sym_preproc_endregion] = STATE(2836), + [sym_preproc_line] = STATE(2836), + [sym_preproc_pragma] = STATE(2836), + [sym_preproc_nullable] = STATE(2836), + [sym_preproc_error] = STATE(2836), + [sym_preproc_warning] = STATE(2836), + [sym_preproc_define] = STATE(2836), + [sym_preproc_undef] = STATE(2836), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = ACTIONS(4665), + [anon_sym_using] = ACTIONS(4665), + [anon_sym_unsafe] = ACTIONS(4665), + [anon_sym_static] = ACTIONS(4665), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_event] = ACTIONS(4665), + [anon_sym_namespace] = ACTIONS(4665), + [anon_sym_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_interface] = ACTIONS(4665), + [anon_sym_delegate] = ACTIONS(4665), + [anon_sym_record] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_async] = ACTIONS(4665), + [anon_sym_const] = ACTIONS(4665), + [anon_sym_file] = ACTIONS(4665), + [anon_sym_fixed] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_new] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_partial] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_readonly] = ACTIONS(4665), + [anon_sym_required] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_virtual] = ACTIONS(4665), + [anon_sym_volatile] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_notnull] = ACTIONS(4665), + [anon_sym_unmanaged] = ACTIONS(4665), + [anon_sym_TILDE] = ACTIONS(4667), + [anon_sym_implicit] = ACTIONS(4665), + [anon_sym_explicit] = ACTIONS(4665), + [anon_sym_scoped] = ACTIONS(4665), + [anon_sym_var] = ACTIONS(4665), + [sym_predefined_type] = ACTIONS(4665), + [anon_sym_yield] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_from] = ACTIONS(4665), + [anon_sym_into] = ACTIONS(4665), + [anon_sym_join] = ACTIONS(4665), + [anon_sym_on] = ACTIONS(4665), + [anon_sym_equals] = ACTIONS(4665), + [anon_sym_let] = ACTIONS(4665), + [anon_sym_orderby] = ACTIONS(4665), + [anon_sym_ascending] = ACTIONS(4665), + [anon_sym_descending] = ACTIONS(4665), + [anon_sym_group] = ACTIONS(4665), + [anon_sym_by] = ACTIONS(4665), + [anon_sym_select] = ACTIONS(4665), + [aux_sym_preproc_if_token1] = ACTIONS(4667), + [aux_sym_preproc_if_token3] = ACTIONS(4667), + [aux_sym_preproc_else_token1] = ACTIONS(4667), + [aux_sym_preproc_elif_token1] = ACTIONS(4667), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459338,79 +458617,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2846] = { - [sym_preproc_region] = STATE(2846), - [sym_preproc_endregion] = STATE(2846), - [sym_preproc_line] = STATE(2846), - [sym_preproc_pragma] = STATE(2846), - [sym_preproc_nullable] = STATE(2846), - [sym_preproc_error] = STATE(2846), - [sym_preproc_warning] = STATE(2846), - [sym_preproc_define] = STATE(2846), - [sym_preproc_undef] = STATE(2846), - [sym__identifier_token] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3407), - [anon_sym_alias] = ACTIONS(3407), - [anon_sym_global] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_event] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_ref] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_delegate] = ACTIONS(3407), - [anon_sym_record] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_file] = ACTIONS(3407), - [anon_sym_fixed] = ACTIONS(3407), - [anon_sym_internal] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_partial] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_required] = ACTIONS(3407), - [anon_sym_sealed] = ACTIONS(3407), - [anon_sym_virtual] = ACTIONS(3407), - [anon_sym_volatile] = ACTIONS(3407), - [anon_sym_where] = ACTIONS(3407), - [anon_sym_notnull] = ACTIONS(3407), - [anon_sym_unmanaged] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_implicit] = ACTIONS(3407), - [anon_sym_explicit] = ACTIONS(3407), - [anon_sym_scoped] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [sym_predefined_type] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_when] = ACTIONS(3407), - [anon_sym_from] = ACTIONS(3407), - [anon_sym_into] = ACTIONS(3407), - [anon_sym_join] = ACTIONS(3407), - [anon_sym_on] = ACTIONS(3407), - [anon_sym_equals] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_orderby] = ACTIONS(3407), - [anon_sym_ascending] = ACTIONS(3407), - [anon_sym_descending] = ACTIONS(3407), - [anon_sym_group] = ACTIONS(3407), - [anon_sym_by] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [aux_sym_preproc_if_token1] = ACTIONS(3409), - [aux_sym_preproc_if_token3] = ACTIONS(3409), - [aux_sym_preproc_else_token1] = ACTIONS(3409), - [aux_sym_preproc_elif_token1] = ACTIONS(3409), + [2837] = { + [sym_preproc_region] = STATE(2837), + [sym_preproc_endregion] = STATE(2837), + [sym_preproc_line] = STATE(2837), + [sym_preproc_pragma] = STATE(2837), + [sym_preproc_nullable] = STATE(2837), + [sym_preproc_error] = STATE(2837), + [sym_preproc_warning] = STATE(2837), + [sym_preproc_define] = STATE(2837), + [sym_preproc_undef] = STATE(2837), + [sym__identifier_token] = ACTIONS(4669), + [anon_sym_extern] = ACTIONS(4669), + [anon_sym_alias] = ACTIONS(4669), + [anon_sym_global] = ACTIONS(4669), + [anon_sym_using] = ACTIONS(4669), + [anon_sym_unsafe] = ACTIONS(4669), + [anon_sym_static] = ACTIONS(4669), + [anon_sym_LBRACK] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym_event] = ACTIONS(4669), + [anon_sym_namespace] = ACTIONS(4669), + [anon_sym_class] = ACTIONS(4669), + [anon_sym_ref] = ACTIONS(4669), + [anon_sym_struct] = ACTIONS(4669), + [anon_sym_enum] = ACTIONS(4669), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_interface] = ACTIONS(4669), + [anon_sym_delegate] = ACTIONS(4669), + [anon_sym_record] = ACTIONS(4669), + [anon_sym_abstract] = ACTIONS(4669), + [anon_sym_async] = ACTIONS(4669), + [anon_sym_const] = ACTIONS(4669), + [anon_sym_file] = ACTIONS(4669), + [anon_sym_fixed] = ACTIONS(4669), + [anon_sym_internal] = ACTIONS(4669), + [anon_sym_new] = ACTIONS(4669), + [anon_sym_override] = ACTIONS(4669), + [anon_sym_partial] = ACTIONS(4669), + [anon_sym_private] = ACTIONS(4669), + [anon_sym_protected] = ACTIONS(4669), + [anon_sym_public] = ACTIONS(4669), + [anon_sym_readonly] = ACTIONS(4669), + [anon_sym_required] = ACTIONS(4669), + [anon_sym_sealed] = ACTIONS(4669), + [anon_sym_virtual] = ACTIONS(4669), + [anon_sym_volatile] = ACTIONS(4669), + [anon_sym_where] = ACTIONS(4669), + [anon_sym_notnull] = ACTIONS(4669), + [anon_sym_unmanaged] = ACTIONS(4669), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_implicit] = ACTIONS(4669), + [anon_sym_explicit] = ACTIONS(4669), + [anon_sym_scoped] = ACTIONS(4669), + [anon_sym_var] = ACTIONS(4669), + [sym_predefined_type] = ACTIONS(4669), + [anon_sym_yield] = ACTIONS(4669), + [anon_sym_when] = ACTIONS(4669), + [anon_sym_from] = ACTIONS(4669), + [anon_sym_into] = ACTIONS(4669), + [anon_sym_join] = ACTIONS(4669), + [anon_sym_on] = ACTIONS(4669), + [anon_sym_equals] = ACTIONS(4669), + [anon_sym_let] = ACTIONS(4669), + [anon_sym_orderby] = ACTIONS(4669), + [anon_sym_ascending] = ACTIONS(4669), + [anon_sym_descending] = ACTIONS(4669), + [anon_sym_group] = ACTIONS(4669), + [anon_sym_by] = ACTIONS(4669), + [anon_sym_select] = ACTIONS(4669), + [aux_sym_preproc_if_token1] = ACTIONS(4671), + [aux_sym_preproc_if_token3] = ACTIONS(4671), + [aux_sym_preproc_else_token1] = ACTIONS(4671), + [aux_sym_preproc_elif_token1] = ACTIONS(4671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459422,79 +458701,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2847] = { - [sym_preproc_region] = STATE(2847), - [sym_preproc_endregion] = STATE(2847), - [sym_preproc_line] = STATE(2847), - [sym_preproc_pragma] = STATE(2847), - [sym_preproc_nullable] = STATE(2847), - [sym_preproc_error] = STATE(2847), - [sym_preproc_warning] = STATE(2847), - [sym_preproc_define] = STATE(2847), - [sym_preproc_undef] = STATE(2847), - [sym__identifier_token] = ACTIONS(3411), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym_alias] = ACTIONS(3411), - [anon_sym_global] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_event] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_ref] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_delegate] = ACTIONS(3411), - [anon_sym_record] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_file] = ACTIONS(3411), - [anon_sym_fixed] = ACTIONS(3411), - [anon_sym_internal] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_partial] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_required] = ACTIONS(3411), - [anon_sym_sealed] = ACTIONS(3411), - [anon_sym_virtual] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [anon_sym_where] = ACTIONS(3411), - [anon_sym_notnull] = ACTIONS(3411), - [anon_sym_unmanaged] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_implicit] = ACTIONS(3411), - [anon_sym_explicit] = ACTIONS(3411), - [anon_sym_scoped] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [sym_predefined_type] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_when] = ACTIONS(3411), - [anon_sym_from] = ACTIONS(3411), - [anon_sym_into] = ACTIONS(3411), - [anon_sym_join] = ACTIONS(3411), - [anon_sym_on] = ACTIONS(3411), - [anon_sym_equals] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_orderby] = ACTIONS(3411), - [anon_sym_ascending] = ACTIONS(3411), - [anon_sym_descending] = ACTIONS(3411), - [anon_sym_group] = ACTIONS(3411), - [anon_sym_by] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [aux_sym_preproc_if_token1] = ACTIONS(3413), - [aux_sym_preproc_if_token3] = ACTIONS(3413), - [aux_sym_preproc_else_token1] = ACTIONS(3413), - [aux_sym_preproc_elif_token1] = ACTIONS(3413), + [2838] = { + [sym_preproc_region] = STATE(2838), + [sym_preproc_endregion] = STATE(2838), + [sym_preproc_line] = STATE(2838), + [sym_preproc_pragma] = STATE(2838), + [sym_preproc_nullable] = STATE(2838), + [sym_preproc_error] = STATE(2838), + [sym_preproc_warning] = STATE(2838), + [sym_preproc_define] = STATE(2838), + [sym_preproc_undef] = STATE(2838), + [sym__identifier_token] = ACTIONS(3491), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_event] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3491), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3491), + [anon_sym_unmanaged] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_implicit] = ACTIONS(3494), + [anon_sym_explicit] = ACTIONS(3494), + [anon_sym_this] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3491), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3491), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_when] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_into] = ACTIONS(3491), + [anon_sym_join] = ACTIONS(3491), + [anon_sym_on] = ACTIONS(3491), + [anon_sym_equals] = ACTIONS(3491), + [anon_sym_let] = ACTIONS(3491), + [anon_sym_orderby] = ACTIONS(3491), + [anon_sym_ascending] = ACTIONS(3491), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459506,79 +458785,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2848] = { - [sym_preproc_region] = STATE(2848), - [sym_preproc_endregion] = STATE(2848), - [sym_preproc_line] = STATE(2848), - [sym_preproc_pragma] = STATE(2848), - [sym_preproc_nullable] = STATE(2848), - [sym_preproc_error] = STATE(2848), - [sym_preproc_warning] = STATE(2848), - [sym_preproc_define] = STATE(2848), - [sym_preproc_undef] = STATE(2848), - [sym__identifier_token] = ACTIONS(3415), - [anon_sym_extern] = ACTIONS(3415), - [anon_sym_alias] = ACTIONS(3415), - [anon_sym_global] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_event] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_ref] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_delegate] = ACTIONS(3415), - [anon_sym_record] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_file] = ACTIONS(3415), - [anon_sym_fixed] = ACTIONS(3415), - [anon_sym_internal] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_partial] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_required] = ACTIONS(3415), - [anon_sym_sealed] = ACTIONS(3415), - [anon_sym_virtual] = ACTIONS(3415), - [anon_sym_volatile] = ACTIONS(3415), - [anon_sym_where] = ACTIONS(3415), - [anon_sym_notnull] = ACTIONS(3415), - [anon_sym_unmanaged] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_implicit] = ACTIONS(3415), - [anon_sym_explicit] = ACTIONS(3415), - [anon_sym_scoped] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [sym_predefined_type] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_when] = ACTIONS(3415), - [anon_sym_from] = ACTIONS(3415), - [anon_sym_into] = ACTIONS(3415), - [anon_sym_join] = ACTIONS(3415), - [anon_sym_on] = ACTIONS(3415), - [anon_sym_equals] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_orderby] = ACTIONS(3415), - [anon_sym_ascending] = ACTIONS(3415), - [anon_sym_descending] = ACTIONS(3415), - [anon_sym_group] = ACTIONS(3415), - [anon_sym_by] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [aux_sym_preproc_if_token1] = ACTIONS(3417), - [aux_sym_preproc_if_token3] = ACTIONS(3417), - [aux_sym_preproc_else_token1] = ACTIONS(3417), - [aux_sym_preproc_elif_token1] = ACTIONS(3417), + [2839] = { + [sym_preproc_region] = STATE(2839), + [sym_preproc_endregion] = STATE(2839), + [sym_preproc_line] = STATE(2839), + [sym_preproc_pragma] = STATE(2839), + [sym_preproc_nullable] = STATE(2839), + [sym_preproc_error] = STATE(2839), + [sym_preproc_warning] = STATE(2839), + [sym_preproc_define] = STATE(2839), + [sym_preproc_undef] = STATE(2839), + [sym__identifier_token] = ACTIONS(4673), + [anon_sym_extern] = ACTIONS(4673), + [anon_sym_alias] = ACTIONS(4673), + [anon_sym_global] = ACTIONS(4673), + [anon_sym_using] = ACTIONS(4673), + [anon_sym_unsafe] = ACTIONS(4673), + [anon_sym_static] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_event] = ACTIONS(4673), + [anon_sym_namespace] = ACTIONS(4673), + [anon_sym_class] = ACTIONS(4673), + [anon_sym_ref] = ACTIONS(4673), + [anon_sym_struct] = ACTIONS(4673), + [anon_sym_enum] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4675), + [anon_sym_interface] = ACTIONS(4673), + [anon_sym_delegate] = ACTIONS(4673), + [anon_sym_record] = ACTIONS(4673), + [anon_sym_abstract] = ACTIONS(4673), + [anon_sym_async] = ACTIONS(4673), + [anon_sym_const] = ACTIONS(4673), + [anon_sym_file] = ACTIONS(4673), + [anon_sym_fixed] = ACTIONS(4673), + [anon_sym_internal] = ACTIONS(4673), + [anon_sym_new] = ACTIONS(4673), + [anon_sym_override] = ACTIONS(4673), + [anon_sym_partial] = ACTIONS(4673), + [anon_sym_private] = ACTIONS(4673), + [anon_sym_protected] = ACTIONS(4673), + [anon_sym_public] = ACTIONS(4673), + [anon_sym_readonly] = ACTIONS(4673), + [anon_sym_required] = ACTIONS(4673), + [anon_sym_sealed] = ACTIONS(4673), + [anon_sym_virtual] = ACTIONS(4673), + [anon_sym_volatile] = ACTIONS(4673), + [anon_sym_where] = ACTIONS(4673), + [anon_sym_notnull] = ACTIONS(4673), + [anon_sym_unmanaged] = ACTIONS(4673), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_implicit] = ACTIONS(4673), + [anon_sym_explicit] = ACTIONS(4673), + [anon_sym_scoped] = ACTIONS(4673), + [anon_sym_var] = ACTIONS(4673), + [sym_predefined_type] = ACTIONS(4673), + [anon_sym_yield] = ACTIONS(4673), + [anon_sym_when] = ACTIONS(4673), + [anon_sym_from] = ACTIONS(4673), + [anon_sym_into] = ACTIONS(4673), + [anon_sym_join] = ACTIONS(4673), + [anon_sym_on] = ACTIONS(4673), + [anon_sym_equals] = ACTIONS(4673), + [anon_sym_let] = ACTIONS(4673), + [anon_sym_orderby] = ACTIONS(4673), + [anon_sym_ascending] = ACTIONS(4673), + [anon_sym_descending] = ACTIONS(4673), + [anon_sym_group] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4673), + [anon_sym_select] = ACTIONS(4673), + [aux_sym_preproc_if_token1] = ACTIONS(4675), + [aux_sym_preproc_if_token3] = ACTIONS(4675), + [aux_sym_preproc_else_token1] = ACTIONS(4675), + [aux_sym_preproc_elif_token1] = ACTIONS(4675), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459590,79 +458869,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2849] = { - [sym_preproc_region] = STATE(2849), - [sym_preproc_endregion] = STATE(2849), - [sym_preproc_line] = STATE(2849), - [sym_preproc_pragma] = STATE(2849), - [sym_preproc_nullable] = STATE(2849), - [sym_preproc_error] = STATE(2849), - [sym_preproc_warning] = STATE(2849), - [sym_preproc_define] = STATE(2849), - [sym_preproc_undef] = STATE(2849), - [sym__identifier_token] = ACTIONS(3419), - [anon_sym_extern] = ACTIONS(3419), - [anon_sym_alias] = ACTIONS(3419), - [anon_sym_global] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_event] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_ref] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_delegate] = ACTIONS(3419), - [anon_sym_record] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_file] = ACTIONS(3419), - [anon_sym_fixed] = ACTIONS(3419), - [anon_sym_internal] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_partial] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_required] = ACTIONS(3419), - [anon_sym_sealed] = ACTIONS(3419), - [anon_sym_virtual] = ACTIONS(3419), - [anon_sym_volatile] = ACTIONS(3419), - [anon_sym_where] = ACTIONS(3419), - [anon_sym_notnull] = ACTIONS(3419), - [anon_sym_unmanaged] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_implicit] = ACTIONS(3419), - [anon_sym_explicit] = ACTIONS(3419), - [anon_sym_scoped] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [sym_predefined_type] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_when] = ACTIONS(3419), - [anon_sym_from] = ACTIONS(3419), - [anon_sym_into] = ACTIONS(3419), - [anon_sym_join] = ACTIONS(3419), - [anon_sym_on] = ACTIONS(3419), - [anon_sym_equals] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_orderby] = ACTIONS(3419), - [anon_sym_ascending] = ACTIONS(3419), - [anon_sym_descending] = ACTIONS(3419), - [anon_sym_group] = ACTIONS(3419), - [anon_sym_by] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [aux_sym_preproc_if_token1] = ACTIONS(3421), - [aux_sym_preproc_if_token3] = ACTIONS(3421), - [aux_sym_preproc_else_token1] = ACTIONS(3421), - [aux_sym_preproc_elif_token1] = ACTIONS(3421), + [2840] = { + [sym_preproc_region] = STATE(2840), + [sym_preproc_endregion] = STATE(2840), + [sym_preproc_line] = STATE(2840), + [sym_preproc_pragma] = STATE(2840), + [sym_preproc_nullable] = STATE(2840), + [sym_preproc_error] = STATE(2840), + [sym_preproc_warning] = STATE(2840), + [sym_preproc_define] = STATE(2840), + [sym_preproc_undef] = STATE(2840), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4677), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4421), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459673,80 +458951,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), }, - [2850] = { - [sym_preproc_region] = STATE(2850), - [sym_preproc_endregion] = STATE(2850), - [sym_preproc_line] = STATE(2850), - [sym_preproc_pragma] = STATE(2850), - [sym_preproc_nullable] = STATE(2850), - [sym_preproc_error] = STATE(2850), - [sym_preproc_warning] = STATE(2850), - [sym_preproc_define] = STATE(2850), - [sym_preproc_undef] = STATE(2850), - [sym__identifier_token] = ACTIONS(3423), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym_alias] = ACTIONS(3423), - [anon_sym_global] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_event] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_ref] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_delegate] = ACTIONS(3423), - [anon_sym_record] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_file] = ACTIONS(3423), - [anon_sym_fixed] = ACTIONS(3423), - [anon_sym_internal] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_partial] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_required] = ACTIONS(3423), - [anon_sym_sealed] = ACTIONS(3423), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_where] = ACTIONS(3423), - [anon_sym_notnull] = ACTIONS(3423), - [anon_sym_unmanaged] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_implicit] = ACTIONS(3423), - [anon_sym_explicit] = ACTIONS(3423), - [anon_sym_scoped] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [sym_predefined_type] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_when] = ACTIONS(3423), - [anon_sym_from] = ACTIONS(3423), - [anon_sym_into] = ACTIONS(3423), - [anon_sym_join] = ACTIONS(3423), - [anon_sym_on] = ACTIONS(3423), - [anon_sym_equals] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_orderby] = ACTIONS(3423), - [anon_sym_ascending] = ACTIONS(3423), - [anon_sym_descending] = ACTIONS(3423), - [anon_sym_group] = ACTIONS(3423), - [anon_sym_by] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [aux_sym_preproc_if_token1] = ACTIONS(3425), - [aux_sym_preproc_if_token3] = ACTIONS(3425), - [aux_sym_preproc_else_token1] = ACTIONS(3425), - [aux_sym_preproc_elif_token1] = ACTIONS(3425), + [2841] = { + [sym__variable_designation] = STATE(3555), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2841), + [sym_preproc_endregion] = STATE(2841), + [sym_preproc_line] = STATE(2841), + [sym_preproc_pragma] = STATE(2841), + [sym_preproc_nullable] = STATE(2841), + [sym_preproc_error] = STATE(2841), + [sym_preproc_warning] = STATE(2841), + [sym_preproc_define] = STATE(2841), + [sym_preproc_undef] = STATE(2841), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3929), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459758,16 +459037,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2851] = { - [sym_preproc_region] = STATE(2851), - [sym_preproc_endregion] = STATE(2851), - [sym_preproc_line] = STATE(2851), - [sym_preproc_pragma] = STATE(2851), - [sym_preproc_nullable] = STATE(2851), - [sym_preproc_error] = STATE(2851), - [sym_preproc_warning] = STATE(2851), - [sym_preproc_define] = STATE(2851), - [sym_preproc_undef] = STATE(2851), + [2842] = { + [sym_preproc_region] = STATE(2842), + [sym_preproc_endregion] = STATE(2842), + [sym_preproc_line] = STATE(2842), + [sym_preproc_pragma] = STATE(2842), + [sym_preproc_nullable] = STATE(2842), + [sym_preproc_error] = STATE(2842), + [sym_preproc_warning] = STATE(2842), + [sym_preproc_define] = STATE(2842), + [sym_preproc_undef] = STATE(2842), [sym__identifier_token] = ACTIONS(4679), [anon_sym_extern] = ACTIONS(4679), [anon_sym_alias] = ACTIONS(4679), @@ -459842,79 +459121,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2852] = { - [sym_preproc_region] = STATE(2852), - [sym_preproc_endregion] = STATE(2852), - [sym_preproc_line] = STATE(2852), - [sym_preproc_pragma] = STATE(2852), - [sym_preproc_nullable] = STATE(2852), - [sym_preproc_error] = STATE(2852), - [sym_preproc_warning] = STATE(2852), - [sym_preproc_define] = STATE(2852), - [sym_preproc_undef] = STATE(2852), - [sym__identifier_token] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3439), - [anon_sym_alias] = ACTIONS(3439), - [anon_sym_global] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_unsafe] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_event] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_class] = ACTIONS(3439), - [anon_sym_ref] = ACTIONS(3439), - [anon_sym_struct] = ACTIONS(3439), - [anon_sym_enum] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3439), - [anon_sym_delegate] = ACTIONS(3439), - [anon_sym_record] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_file] = ACTIONS(3439), - [anon_sym_fixed] = ACTIONS(3439), - [anon_sym_internal] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_partial] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_required] = ACTIONS(3439), - [anon_sym_sealed] = ACTIONS(3439), - [anon_sym_virtual] = ACTIONS(3439), - [anon_sym_volatile] = ACTIONS(3439), - [anon_sym_where] = ACTIONS(3439), - [anon_sym_notnull] = ACTIONS(3439), - [anon_sym_unmanaged] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_implicit] = ACTIONS(3439), - [anon_sym_explicit] = ACTIONS(3439), - [anon_sym_scoped] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [sym_predefined_type] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_when] = ACTIONS(3439), - [anon_sym_from] = ACTIONS(3439), - [anon_sym_into] = ACTIONS(3439), - [anon_sym_join] = ACTIONS(3439), - [anon_sym_on] = ACTIONS(3439), - [anon_sym_equals] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_orderby] = ACTIONS(3439), - [anon_sym_ascending] = ACTIONS(3439), - [anon_sym_descending] = ACTIONS(3439), - [anon_sym_group] = ACTIONS(3439), - [anon_sym_by] = ACTIONS(3439), - [anon_sym_select] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token3] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), + [2843] = { + [sym__variable_designation] = STATE(3534), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2843), + [sym_preproc_endregion] = STATE(2843), + [sym_preproc_line] = STATE(2843), + [sym_preproc_pragma] = STATE(2843), + [sym_preproc_nullable] = STATE(2843), + [sym_preproc_error] = STATE(2843), + [sym_preproc_warning] = STATE(2843), + [sym_preproc_define] = STATE(2843), + [sym_preproc_undef] = STATE(2843), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3933), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2844] = { + [sym__variable_designation] = STATE(3536), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2844), + [sym_preproc_endregion] = STATE(2844), + [sym_preproc_line] = STATE(2844), + [sym_preproc_pragma] = STATE(2844), + [sym_preproc_nullable] = STATE(2844), + [sym_preproc_error] = STATE(2844), + [sym_preproc_warning] = STATE(2844), + [sym_preproc_define] = STATE(2844), + [sym_preproc_undef] = STATE(2844), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3999), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459926,79 +459289,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2853] = { - [sym__variable_designation] = STATE(4218), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2853), - [sym_preproc_endregion] = STATE(2853), - [sym_preproc_line] = STATE(2853), - [sym_preproc_pragma] = STATE(2853), - [sym_preproc_nullable] = STATE(2853), - [sym_preproc_error] = STATE(2853), - [sym_preproc_warning] = STATE(2853), - [sym_preproc_define] = STATE(2853), - [sym_preproc_undef] = STATE(2853), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3923), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3923), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3923), - [anon_sym_orderby] = ACTIONS(3923), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3923), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [2845] = { + [sym__variable_designation] = STATE(3403), + [sym_parenthesized_variable_designation] = STATE(3545), + [sym_identifier] = STATE(3547), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2845), + [sym_preproc_endregion] = STATE(2845), + [sym_preproc_line] = STATE(2845), + [sym_preproc_pragma] = STATE(2845), + [sym_preproc_nullable] = STATE(2845), + [sym_preproc_error] = STATE(2845), + [sym_preproc_warning] = STATE(2845), + [sym_preproc_define] = STATE(2845), + [sym_preproc_undef] = STATE(2845), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3913), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3899), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(4003), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460010,79 +459373,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2854] = { - [sym_preproc_region] = STATE(2854), - [sym_preproc_endregion] = STATE(2854), - [sym_preproc_line] = STATE(2854), - [sym_preproc_pragma] = STATE(2854), - [sym_preproc_nullable] = STATE(2854), - [sym_preproc_error] = STATE(2854), - [sym_preproc_warning] = STATE(2854), - [sym_preproc_define] = STATE(2854), - [sym_preproc_undef] = STATE(2854), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), + [2846] = { + [sym_preproc_region] = STATE(2846), + [sym_preproc_endregion] = STATE(2846), + [sym_preproc_line] = STATE(2846), + [sym_preproc_pragma] = STATE(2846), + [sym_preproc_nullable] = STATE(2846), + [sym_preproc_error] = STATE(2846), + [sym_preproc_warning] = STATE(2846), + [sym_preproc_define] = STATE(2846), + [sym_preproc_undef] = STATE(2846), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_global] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_event] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3461), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_implicit] = ACTIONS(3494), - [anon_sym_explicit] = ACTIONS(3494), - [anon_sym_this] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [sym_discard] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_is] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460093,80 +459455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), }, - [2855] = { - [sym_preproc_region] = STATE(2855), - [sym_preproc_endregion] = STATE(2855), - [sym_preproc_line] = STATE(2855), - [sym_preproc_pragma] = STATE(2855), - [sym_preproc_nullable] = STATE(2855), - [sym_preproc_error] = STATE(2855), - [sym_preproc_warning] = STATE(2855), - [sym_preproc_define] = STATE(2855), - [sym_preproc_undef] = STATE(2855), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_event] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_delegate] = ACTIONS(2985), - [anon_sym_record] = ACTIONS(2985), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_implicit] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [sym_predefined_type] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [2847] = { + [sym_preproc_region] = STATE(2847), + [sym_preproc_endregion] = STATE(2847), + [sym_preproc_line] = STATE(2847), + [sym_preproc_pragma] = STATE(2847), + [sym_preproc_nullable] = STATE(2847), + [sym_preproc_error] = STATE(2847), + [sym_preproc_warning] = STATE(2847), + [sym_preproc_define] = STATE(2847), + [sym_preproc_undef] = STATE(2847), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460178,79 +459541,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2856] = { - [sym_preproc_region] = STATE(2856), - [sym_preproc_endregion] = STATE(2856), - [sym_preproc_line] = STATE(2856), - [sym_preproc_pragma] = STATE(2856), - [sym_preproc_nullable] = STATE(2856), - [sym_preproc_error] = STATE(2856), - [sym_preproc_warning] = STATE(2856), - [sym_preproc_define] = STATE(2856), - [sym_preproc_undef] = STATE(2856), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_when] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4184), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_on] = ACTIONS(4184), - [anon_sym_equals] = ACTIONS(4184), - [anon_sym_by] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), - [aux_sym_preproc_if_token3] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [2848] = { + [sym_preproc_region] = STATE(2848), + [sym_preproc_endregion] = STATE(2848), + [sym_preproc_line] = STATE(2848), + [sym_preproc_pragma] = STATE(2848), + [sym_preproc_nullable] = STATE(2848), + [sym_preproc_error] = STATE(2848), + [sym_preproc_warning] = STATE(2848), + [sym_preproc_define] = STATE(2848), + [sym_preproc_undef] = STATE(2848), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4022), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4024), + }, + [2849] = { + [sym_preproc_region] = STATE(2849), + [sym_preproc_endregion] = STATE(2849), + [sym_preproc_line] = STATE(2849), + [sym_preproc_pragma] = STATE(2849), + [sym_preproc_nullable] = STATE(2849), + [sym_preproc_error] = STATE(2849), + [sym_preproc_warning] = STATE(2849), + [sym_preproc_define] = STATE(2849), + [sym_preproc_undef] = STATE(2849), + [sym__identifier_token] = ACTIONS(3662), + [anon_sym_alias] = ACTIONS(3662), + [anon_sym_global] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_notnull] = ACTIONS(3662), + [anon_sym_unmanaged] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_scoped] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_when] = ACTIONS(3662), + [sym_discard] = ACTIONS(3662), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3662), + [anon_sym_join] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_equals] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_orderby] = ACTIONS(3662), + [anon_sym_ascending] = ACTIONS(3662), + [anon_sym_descending] = ACTIONS(3662), + [anon_sym_group] = ACTIONS(3662), + [anon_sym_by] = ACTIONS(3662), + [anon_sym_select] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3662), + [anon_sym_is] = ACTIONS(3662), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3662), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460261,80 +459707,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3664), }, - [2857] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2857), - [sym_preproc_endregion] = STATE(2857), - [sym_preproc_line] = STATE(2857), - [sym_preproc_pragma] = STATE(2857), - [sym_preproc_nullable] = STATE(2857), - [sym_preproc_error] = STATE(2857), - [sym_preproc_warning] = STATE(2857), - [sym_preproc_define] = STATE(2857), - [sym_preproc_undef] = STATE(2857), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3935), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), + [2850] = { + [sym_preproc_region] = STATE(2850), + [sym_preproc_endregion] = STATE(2850), + [sym_preproc_line] = STATE(2850), + [sym_preproc_pragma] = STATE(2850), + [sym_preproc_nullable] = STATE(2850), + [sym_preproc_error] = STATE(2850), + [sym_preproc_warning] = STATE(2850), + [sym_preproc_define] = STATE(2850), + [sym_preproc_undef] = STATE(2850), + [sym__identifier_token] = ACTIONS(3383), + [anon_sym_extern] = ACTIONS(3383), + [anon_sym_alias] = ACTIONS(3383), + [anon_sym_global] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_unsafe] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_event] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_ref] = ACTIONS(3383), + [anon_sym_struct] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_delegate] = ACTIONS(3383), + [anon_sym_record] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_file] = ACTIONS(3383), + [anon_sym_fixed] = ACTIONS(3383), + [anon_sym_internal] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_partial] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_required] = ACTIONS(3383), + [anon_sym_sealed] = ACTIONS(3383), + [anon_sym_virtual] = ACTIONS(3383), + [anon_sym_volatile] = ACTIONS(3383), + [anon_sym_where] = ACTIONS(3383), + [anon_sym_notnull] = ACTIONS(3383), + [anon_sym_unmanaged] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_implicit] = ACTIONS(3383), + [anon_sym_explicit] = ACTIONS(3383), + [anon_sym_scoped] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [sym_predefined_type] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_when] = ACTIONS(3383), + [anon_sym_from] = ACTIONS(3383), + [anon_sym_into] = ACTIONS(3383), + [anon_sym_join] = ACTIONS(3383), + [anon_sym_on] = ACTIONS(3383), + [anon_sym_equals] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_orderby] = ACTIONS(3383), + [anon_sym_ascending] = ACTIONS(3383), + [anon_sym_descending] = ACTIONS(3383), + [anon_sym_group] = ACTIONS(3383), + [anon_sym_by] = ACTIONS(3383), + [anon_sym_select] = ACTIONS(3383), + [aux_sym_preproc_if_token1] = ACTIONS(3385), + [aux_sym_preproc_if_token3] = ACTIONS(3385), + [aux_sym_preproc_else_token1] = ACTIONS(3385), + [aux_sym_preproc_elif_token1] = ACTIONS(3385), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460346,16 +459793,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2858] = { - [sym_preproc_region] = STATE(2858), - [sym_preproc_endregion] = STATE(2858), - [sym_preproc_line] = STATE(2858), - [sym_preproc_pragma] = STATE(2858), - [sym_preproc_nullable] = STATE(2858), - [sym_preproc_error] = STATE(2858), - [sym_preproc_warning] = STATE(2858), - [sym_preproc_define] = STATE(2858), - [sym_preproc_undef] = STATE(2858), + [2851] = { + [sym_preproc_region] = STATE(2851), + [sym_preproc_endregion] = STATE(2851), + [sym_preproc_line] = STATE(2851), + [sym_preproc_pragma] = STATE(2851), + [sym_preproc_nullable] = STATE(2851), + [sym_preproc_error] = STATE(2851), + [sym_preproc_warning] = STATE(2851), + [sym_preproc_define] = STATE(2851), + [sym_preproc_undef] = STATE(2851), [sym__identifier_token] = ACTIONS(4683), [anon_sym_extern] = ACTIONS(4683), [anon_sym_alias] = ACTIONS(4683), @@ -460430,352 +459877,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2859] = { - [sym__variable_designation] = STATE(4211), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2859), - [sym_preproc_endregion] = STATE(2859), - [sym_preproc_line] = STATE(2859), - [sym_preproc_pragma] = STATE(2859), - [sym_preproc_nullable] = STATE(2859), - [sym_preproc_error] = STATE(2859), - [sym_preproc_warning] = STATE(2859), - [sym_preproc_define] = STATE(2859), - [sym_preproc_undef] = STATE(2859), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_GT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_SLASH] = ACTIONS(3995), - [anon_sym_PERCENT] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(3993), - [anon_sym_PIPE] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3995), - [anon_sym_GT_GT_GT] = ACTIONS(3993), - [anon_sym_EQ_EQ] = ACTIONS(3993), - [anon_sym_BANG_EQ] = ACTIONS(3993), - [anon_sym_GT_EQ] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3993), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3995), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_and] = ACTIONS(3995), - [anon_sym_or] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3993), - [anon_sym_PIPE_PIPE] = ACTIONS(3993), - [anon_sym_QMARK_QMARK] = ACTIONS(3993), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(3993), - [anon_sym_with] = ACTIONS(3995), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2860] = { - [sym__variable_designation] = STATE(4167), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2860), - [sym_preproc_endregion] = STATE(2860), - [sym_preproc_line] = STATE(2860), - [sym_preproc_pragma] = STATE(2860), - [sym_preproc_nullable] = STATE(2860), - [sym_preproc_error] = STATE(2860), - [sym_preproc_warning] = STATE(2860), - [sym_preproc_define] = STATE(2860), - [sym_preproc_undef] = STATE(2860), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(4003), - [anon_sym_GT] = ACTIONS(4003), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_PLUS_PLUS] = ACTIONS(4001), - [anon_sym_DASH_DASH] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(4003), - [anon_sym_PERCENT] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_PIPE] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_LT] = ACTIONS(4001), - [anon_sym_GT_GT] = ACTIONS(4003), - [anon_sym_GT_GT_GT] = ACTIONS(4001), - [anon_sym_EQ_EQ] = ACTIONS(4001), - [anon_sym_BANG_EQ] = ACTIONS(4001), - [anon_sym_GT_EQ] = ACTIONS(4001), - [anon_sym_LT_EQ] = ACTIONS(4001), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(4003), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4001), - [anon_sym_and] = ACTIONS(4003), - [anon_sym_or] = ACTIONS(4003), - [anon_sym_AMP_AMP] = ACTIONS(4001), - [anon_sym_PIPE_PIPE] = ACTIONS(4001), - [anon_sym_QMARK_QMARK] = ACTIONS(4001), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(4003), - [anon_sym_is] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(4001), - [anon_sym_with] = ACTIONS(4003), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2861] = { - [sym__variable_designation] = STATE(4192), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2934), - [sym_preproc_region] = STATE(2861), - [sym_preproc_endregion] = STATE(2861), - [sym_preproc_line] = STATE(2861), - [sym_preproc_pragma] = STATE(2861), - [sym_preproc_nullable] = STATE(2861), - [sym_preproc_error] = STATE(2861), - [sym_preproc_warning] = STATE(2861), - [sym_preproc_define] = STATE(2861), - [sym_preproc_undef] = STATE(2861), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_LT] = ACTIONS(3985), - [anon_sym_GT] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_QMARK] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_BANG] = ACTIONS(3985), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3985), - [anon_sym_DASH] = ACTIONS(3985), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_SLASH] = ACTIONS(3985), - [anon_sym_PERCENT] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3985), - [anon_sym_AMP] = ACTIONS(3985), - [anon_sym_LT_LT] = ACTIONS(3983), - [anon_sym_GT_GT] = ACTIONS(3985), - [anon_sym_GT_GT_GT] = ACTIONS(3983), - [anon_sym_EQ_EQ] = ACTIONS(3983), - [anon_sym_BANG_EQ] = ACTIONS(3983), - [anon_sym_GT_EQ] = ACTIONS(3983), - [anon_sym_LT_EQ] = ACTIONS(3983), - [anon_sym_DOT] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(3844), - [anon_sym_var] = ACTIONS(3844), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_switch] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3844), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3983), - [anon_sym_and] = ACTIONS(3985), - [anon_sym_or] = ACTIONS(3985), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_PIPE_PIPE] = ACTIONS(3983), - [anon_sym_QMARK_QMARK] = ACTIONS(3983), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), - [anon_sym_as] = ACTIONS(3985), - [anon_sym_is] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(3983), - [anon_sym_with] = ACTIONS(3985), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2862] = { - [sym__variable_designation] = STATE(4193), - [sym_parenthesized_variable_designation] = STATE(4188), - [sym_identifier] = STATE(4196), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(2862), - [sym_preproc_endregion] = STATE(2862), - [sym_preproc_line] = STATE(2862), - [sym_preproc_pragma] = STATE(2862), - [sym_preproc_nullable] = STATE(2862), - [sym_preproc_error] = STATE(2862), - [sym_preproc_warning] = STATE(2862), - [sym_preproc_define] = STATE(2862), - [sym_preproc_undef] = STATE(2862), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3969), - [anon_sym_DASH_DASH] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(3969), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3969), - [anon_sym_GT_GT] = ACTIONS(3971), - [anon_sym_GT_GT_GT] = ACTIONS(3969), - [anon_sym_EQ_EQ] = ACTIONS(3969), - [anon_sym_BANG_EQ] = ACTIONS(3969), - [anon_sym_GT_EQ] = ACTIONS(3969), - [anon_sym_LT_EQ] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3893), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3893), - [sym_discard] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(3969), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3969), - [anon_sym_PIPE_PIPE] = ACTIONS(3969), - [anon_sym_QMARK_QMARK] = ACTIONS(3969), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3971), - [anon_sym_orderby] = ACTIONS(3971), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3971), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3969), - [anon_sym_with] = ACTIONS(3971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2863] = { - [sym_preproc_region] = STATE(2863), - [sym_preproc_endregion] = STATE(2863), - [sym_preproc_line] = STATE(2863), - [sym_preproc_pragma] = STATE(2863), - [sym_preproc_nullable] = STATE(2863), - [sym_preproc_error] = STATE(2863), - [sym_preproc_warning] = STATE(2863), - [sym_preproc_define] = STATE(2863), - [sym_preproc_undef] = STATE(2863), + [2852] = { + [sym_preproc_region] = STATE(2852), + [sym_preproc_endregion] = STATE(2852), + [sym_preproc_line] = STATE(2852), + [sym_preproc_pragma] = STATE(2852), + [sym_preproc_nullable] = STATE(2852), + [sym_preproc_error] = STATE(2852), + [sym_preproc_warning] = STATE(2852), + [sym_preproc_define] = STATE(2852), + [sym_preproc_undef] = STATE(2852), [sym__identifier_token] = ACTIONS(4687), [anon_sym_extern] = ACTIONS(4687), [anon_sym_alias] = ACTIONS(4687), @@ -460850,16 +459961,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2864] = { - [sym_preproc_region] = STATE(2864), - [sym_preproc_endregion] = STATE(2864), - [sym_preproc_line] = STATE(2864), - [sym_preproc_pragma] = STATE(2864), - [sym_preproc_nullable] = STATE(2864), - [sym_preproc_error] = STATE(2864), - [sym_preproc_warning] = STATE(2864), - [sym_preproc_define] = STATE(2864), - [sym_preproc_undef] = STATE(2864), + [2853] = { + [sym_preproc_region] = STATE(2853), + [sym_preproc_endregion] = STATE(2853), + [sym_preproc_line] = STATE(2853), + [sym_preproc_pragma] = STATE(2853), + [sym_preproc_nullable] = STATE(2853), + [sym_preproc_error] = STATE(2853), + [sym_preproc_warning] = STATE(2853), + [sym_preproc_define] = STATE(2853), + [sym_preproc_undef] = STATE(2853), [sym__identifier_token] = ACTIONS(4691), [anon_sym_extern] = ACTIONS(4691), [anon_sym_alias] = ACTIONS(4691), @@ -460934,78 +460045,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2865] = { - [sym_preproc_region] = STATE(2865), - [sym_preproc_endregion] = STATE(2865), - [sym_preproc_line] = STATE(2865), - [sym_preproc_pragma] = STATE(2865), - [sym_preproc_nullable] = STATE(2865), - [sym_preproc_error] = STATE(2865), - [sym_preproc_warning] = STATE(2865), - [sym_preproc_define] = STATE(2865), - [sym_preproc_undef] = STATE(2865), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4056), + [2854] = { + [sym_preproc_region] = STATE(2854), + [sym_preproc_endregion] = STATE(2854), + [sym_preproc_line] = STATE(2854), + [sym_preproc_pragma] = STATE(2854), + [sym_preproc_nullable] = STATE(2854), + [sym_preproc_error] = STATE(2854), + [sym_preproc_warning] = STATE(2854), + [sym_preproc_define] = STATE(2854), + [sym_preproc_undef] = STATE(2854), + [sym__identifier_token] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym_alias] = ACTIONS(3403), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_unsafe] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_event] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_ref] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_delegate] = ACTIONS(3403), + [anon_sym_record] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_file] = ACTIONS(3403), + [anon_sym_fixed] = ACTIONS(3403), + [anon_sym_internal] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_partial] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_required] = ACTIONS(3403), + [anon_sym_sealed] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_where] = ACTIONS(3403), + [anon_sym_notnull] = ACTIONS(3403), + [anon_sym_unmanaged] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_implicit] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_scoped] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [sym_predefined_type] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_when] = ACTIONS(3403), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_into] = ACTIONS(3403), + [anon_sym_join] = ACTIONS(3403), + [anon_sym_on] = ACTIONS(3403), + [anon_sym_equals] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_orderby] = ACTIONS(3403), + [anon_sym_ascending] = ACTIONS(3403), + [anon_sym_descending] = ACTIONS(3403), + [anon_sym_group] = ACTIONS(3403), + [anon_sym_by] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3405), + [aux_sym_preproc_if_token3] = ACTIONS(3405), + [aux_sym_preproc_else_token1] = ACTIONS(3405), + [aux_sym_preproc_elif_token1] = ACTIONS(3405), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2855] = { + [sym_preproc_region] = STATE(2855), + [sym_preproc_endregion] = STATE(2855), + [sym_preproc_line] = STATE(2855), + [sym_preproc_pragma] = STATE(2855), + [sym_preproc_nullable] = STATE(2855), + [sym_preproc_error] = STATE(2855), + [sym_preproc_warning] = STATE(2855), + [sym_preproc_define] = STATE(2855), + [sym_preproc_undef] = STATE(2855), + [sym__identifier_token] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(4026), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_is] = ACTIONS(4026), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4026), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4028), + }, + [2856] = { + [sym_preproc_region] = STATE(2856), + [sym_preproc_endregion] = STATE(2856), + [sym_preproc_line] = STATE(2856), + [sym_preproc_pragma] = STATE(2856), + [sym_preproc_nullable] = STATE(2856), + [sym_preproc_error] = STATE(2856), + [sym_preproc_warning] = STATE(2856), + [sym_preproc_define] = STATE(2856), + [sym_preproc_undef] = STATE(2856), + [sym__identifier_token] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_global] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_file] = ACTIONS(4026), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_notnull] = ACTIONS(4026), + [anon_sym_unmanaged] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_scoped] = ACTIONS(4026), + [anon_sym_var] = ACTIONS(4026), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_when] = ACTIONS(4026), + [sym_discard] = ACTIONS(4026), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4026), + [anon_sym_into] = ACTIONS(4026), + [anon_sym_join] = ACTIONS(4026), + [anon_sym_on] = ACTIONS(4026), + [anon_sym_equals] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_orderby] = ACTIONS(4026), + [anon_sym_ascending] = ACTIONS(4026), + [anon_sym_descending] = ACTIONS(4026), + [anon_sym_group] = ACTIONS(4026), + [anon_sym_by] = ACTIONS(4026), + [anon_sym_select] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_is] = ACTIONS(4026), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4026), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4028), + }, + [2857] = { + [sym_preproc_region] = STATE(2857), + [sym_preproc_endregion] = STATE(2857), + [sym_preproc_line] = STATE(2857), + [sym_preproc_pragma] = STATE(2857), + [sym_preproc_nullable] = STATE(2857), + [sym_preproc_error] = STATE(2857), + [sym_preproc_warning] = STATE(2857), + [sym_preproc_define] = STATE(2857), + [sym_preproc_undef] = STATE(2857), + [sym__identifier_token] = ACTIONS(4034), + [anon_sym_alias] = ACTIONS(4034), + [anon_sym_global] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_file] = ACTIONS(4034), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_where] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_notnull] = ACTIONS(4034), + [anon_sym_unmanaged] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_scoped] = ACTIONS(4034), + [anon_sym_var] = ACTIONS(4034), + [anon_sym_yield] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_when] = ACTIONS(4034), + [sym_discard] = ACTIONS(4034), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4034), + [anon_sym_or] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_from] = ACTIONS(4034), + [anon_sym_into] = ACTIONS(4034), + [anon_sym_join] = ACTIONS(4034), + [anon_sym_on] = ACTIONS(4034), + [anon_sym_equals] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4034), + [anon_sym_orderby] = ACTIONS(4034), + [anon_sym_ascending] = ACTIONS(4034), + [anon_sym_descending] = ACTIONS(4034), + [anon_sym_group] = ACTIONS(4034), + [anon_sym_by] = ACTIONS(4034), + [anon_sym_select] = ACTIONS(4034), + [anon_sym_as] = ACTIONS(4034), + [anon_sym_is] = ACTIONS(4034), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4034), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4036), + }, + [2858] = { + [sym__variable_designation] = STATE(3331), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2858), + [sym_preproc_endregion] = STATE(2858), + [sym_preproc_line] = STATE(2858), + [sym_preproc_pragma] = STATE(2858), + [sym_preproc_nullable] = STATE(2858), + [sym_preproc_error] = STATE(2858), + [sym_preproc_warning] = STATE(2858), + [sym_preproc_define] = STATE(2858), + [sym_preproc_undef] = STATE(2858), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3929), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2859] = { + [sym_preproc_region] = STATE(2859), + [sym_preproc_endregion] = STATE(2859), + [sym_preproc_line] = STATE(2859), + [sym_preproc_pragma] = STATE(2859), + [sym_preproc_nullable] = STATE(2859), + [sym_preproc_error] = STATE(2859), + [sym_preproc_warning] = STATE(2859), + [sym_preproc_define] = STATE(2859), + [sym_preproc_undef] = STATE(2859), + [sym__identifier_token] = ACTIONS(4038), + [anon_sym_alias] = ACTIONS(4038), + [anon_sym_global] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_file] = ACTIONS(4038), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_where] = ACTIONS(4038), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_notnull] = ACTIONS(4038), + [anon_sym_unmanaged] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_scoped] = ACTIONS(4038), + [anon_sym_var] = ACTIONS(4038), + [anon_sym_yield] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_when] = ACTIONS(4038), + [sym_discard] = ACTIONS(4038), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4038), + [anon_sym_or] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_from] = ACTIONS(4038), + [anon_sym_into] = ACTIONS(4038), + [anon_sym_join] = ACTIONS(4038), + [anon_sym_on] = ACTIONS(4038), + [anon_sym_equals] = ACTIONS(4038), + [anon_sym_let] = ACTIONS(4038), + [anon_sym_orderby] = ACTIONS(4038), + [anon_sym_ascending] = ACTIONS(4038), + [anon_sym_descending] = ACTIONS(4038), + [anon_sym_group] = ACTIONS(4038), + [anon_sym_by] = ACTIONS(4038), + [anon_sym_select] = ACTIONS(4038), + [anon_sym_as] = ACTIONS(4038), + [anon_sym_is] = ACTIONS(4038), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4038), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4040), + }, + [2860] = { + [sym_preproc_region] = STATE(2860), + [sym_preproc_endregion] = STATE(2860), + [sym_preproc_line] = STATE(2860), + [sym_preproc_pragma] = STATE(2860), + [sym_preproc_nullable] = STATE(2860), + [sym_preproc_error] = STATE(2860), + [sym_preproc_warning] = STATE(2860), + [sym_preproc_define] = STATE(2860), + [sym_preproc_undef] = STATE(2860), + [sym__identifier_token] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym_alias] = ACTIONS(3415), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_unsafe] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_event] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_ref] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_delegate] = ACTIONS(3415), + [anon_sym_record] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_file] = ACTIONS(3415), + [anon_sym_fixed] = ACTIONS(3415), + [anon_sym_internal] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_partial] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_required] = ACTIONS(3415), + [anon_sym_sealed] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_where] = ACTIONS(3415), + [anon_sym_notnull] = ACTIONS(3415), + [anon_sym_unmanaged] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_implicit] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_scoped] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [sym_predefined_type] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_into] = ACTIONS(3415), + [anon_sym_join] = ACTIONS(3415), + [anon_sym_on] = ACTIONS(3415), + [anon_sym_equals] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_orderby] = ACTIONS(3415), + [anon_sym_ascending] = ACTIONS(3415), + [anon_sym_descending] = ACTIONS(3415), + [anon_sym_group] = ACTIONS(3415), + [anon_sym_by] = ACTIONS(3415), + [anon_sym_select] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3417), + [aux_sym_preproc_if_token3] = ACTIONS(3417), + [aux_sym_preproc_else_token1] = ACTIONS(3417), + [aux_sym_preproc_elif_token1] = ACTIONS(3417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461016,81 +460632,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), }, - [2866] = { - [sym_preproc_region] = STATE(2866), - [sym_preproc_endregion] = STATE(2866), - [sym_preproc_line] = STATE(2866), - [sym_preproc_pragma] = STATE(2866), - [sym_preproc_nullable] = STATE(2866), - [sym_preproc_error] = STATE(2866), - [sym_preproc_warning] = STATE(2866), - [sym_preproc_define] = STATE(2866), - [sym_preproc_undef] = STATE(2866), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [2861] = { + [sym__variable_designation] = STATE(3268), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2861), + [sym_preproc_endregion] = STATE(2861), + [sym_preproc_line] = STATE(2861), + [sym_preproc_pragma] = STATE(2861), + [sym_preproc_nullable] = STATE(2861), + [sym_preproc_error] = STATE(2861), + [sym_preproc_warning] = STATE(2861), + [sym_preproc_define] = STATE(2861), + [sym_preproc_undef] = STATE(2861), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3933), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461102,79 +460717,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2867] = { - [sym_preproc_region] = STATE(2867), - [sym_preproc_endregion] = STATE(2867), - [sym_preproc_line] = STATE(2867), - [sym_preproc_pragma] = STATE(2867), - [sym_preproc_nullable] = STATE(2867), - [sym_preproc_error] = STATE(2867), - [sym_preproc_warning] = STATE(2867), - [sym_preproc_define] = STATE(2867), - [sym_preproc_undef] = STATE(2867), - [sym__identifier_token] = ACTIONS(3443), - [anon_sym_extern] = ACTIONS(3443), - [anon_sym_alias] = ACTIONS(3443), - [anon_sym_global] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_unsafe] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_event] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_class] = ACTIONS(3443), - [anon_sym_ref] = ACTIONS(3443), - [anon_sym_struct] = ACTIONS(3443), - [anon_sym_enum] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3443), - [anon_sym_delegate] = ACTIONS(3443), - [anon_sym_record] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_file] = ACTIONS(3443), - [anon_sym_fixed] = ACTIONS(3443), - [anon_sym_internal] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_partial] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_required] = ACTIONS(3443), - [anon_sym_sealed] = ACTIONS(3443), - [anon_sym_virtual] = ACTIONS(3443), - [anon_sym_volatile] = ACTIONS(3443), - [anon_sym_where] = ACTIONS(3443), - [anon_sym_notnull] = ACTIONS(3443), - [anon_sym_unmanaged] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_implicit] = ACTIONS(3443), - [anon_sym_explicit] = ACTIONS(3443), - [anon_sym_scoped] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [sym_predefined_type] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_when] = ACTIONS(3443), - [anon_sym_from] = ACTIONS(3443), - [anon_sym_into] = ACTIONS(3443), - [anon_sym_join] = ACTIONS(3443), - [anon_sym_on] = ACTIONS(3443), - [anon_sym_equals] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_orderby] = ACTIONS(3443), - [anon_sym_ascending] = ACTIONS(3443), - [anon_sym_descending] = ACTIONS(3443), - [anon_sym_group] = ACTIONS(3443), - [anon_sym_by] = ACTIONS(3443), - [anon_sym_select] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [2862] = { + [sym__variable_designation] = STATE(3282), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2862), + [sym_preproc_endregion] = STATE(2862), + [sym_preproc_line] = STATE(2862), + [sym_preproc_pragma] = STATE(2862), + [sym_preproc_nullable] = STATE(2862), + [sym_preproc_error] = STATE(2862), + [sym_preproc_warning] = STATE(2862), + [sym_preproc_define] = STATE(2862), + [sym_preproc_undef] = STATE(2862), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3999), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3999), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461186,79 +460801,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2868] = { - [sym_preproc_region] = STATE(2868), - [sym_preproc_endregion] = STATE(2868), - [sym_preproc_line] = STATE(2868), - [sym_preproc_pragma] = STATE(2868), - [sym_preproc_nullable] = STATE(2868), - [sym_preproc_error] = STATE(2868), - [sym_preproc_warning] = STATE(2868), - [sym_preproc_define] = STATE(2868), - [sym_preproc_undef] = STATE(2868), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_in] = ACTIONS(4166), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_EQ_GT] = ACTIONS(4166), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_when] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_on] = ACTIONS(4166), - [anon_sym_equals] = ACTIONS(4166), - [anon_sym_by] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), - [aux_sym_preproc_if_token3] = ACTIONS(4166), - [aux_sym_preproc_else_token1] = ACTIONS(4166), - [aux_sym_preproc_elif_token1] = ACTIONS(4166), + [2863] = { + [sym__variable_designation] = STATE(3297), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2863), + [sym_preproc_endregion] = STATE(2863), + [sym_preproc_line] = STATE(2863), + [sym_preproc_pragma] = STATE(2863), + [sym_preproc_nullable] = STATE(2863), + [sym_preproc_error] = STATE(2863), + [sym_preproc_warning] = STATE(2863), + [sym_preproc_define] = STATE(2863), + [sym_preproc_undef] = STATE(2863), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(4003), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461270,100 +460885,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2869] = { - [sym_preproc_region] = STATE(2869), - [sym_preproc_endregion] = STATE(2869), - [sym_preproc_line] = STATE(2869), - [sym_preproc_pragma] = STATE(2869), - [sym_preproc_nullable] = STATE(2869), - [sym_preproc_error] = STATE(2869), - [sym_preproc_warning] = STATE(2869), - [sym_preproc_define] = STATE(2869), - [sym_preproc_undef] = STATE(2869), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4516), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4058), - }, - [2870] = { - [sym_preproc_region] = STATE(2870), - [sym_preproc_endregion] = STATE(2870), - [sym_preproc_line] = STATE(2870), - [sym_preproc_pragma] = STATE(2870), - [sym_preproc_nullable] = STATE(2870), - [sym_preproc_error] = STATE(2870), - [sym_preproc_warning] = STATE(2870), - [sym_preproc_define] = STATE(2870), - [sym_preproc_undef] = STATE(2870), + [2864] = { + [sym_preproc_region] = STATE(2864), + [sym_preproc_endregion] = STATE(2864), + [sym_preproc_line] = STATE(2864), + [sym_preproc_pragma] = STATE(2864), + [sym_preproc_nullable] = STATE(2864), + [sym_preproc_error] = STATE(2864), + [sym_preproc_warning] = STATE(2864), + [sym_preproc_define] = STATE(2864), + [sym_preproc_undef] = STATE(2864), [sym__identifier_token] = ACTIONS(4695), [anon_sym_extern] = ACTIONS(4695), [anon_sym_alias] = ACTIONS(4695), @@ -461438,100 +460969,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2871] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2871), - [sym_preproc_endregion] = STATE(2871), - [sym_preproc_line] = STATE(2871), - [sym_preproc_pragma] = STATE(2871), - [sym_preproc_nullable] = STATE(2871), - [sym_preproc_error] = STATE(2871), - [sym_preproc_warning] = STATE(2871), - [sym_preproc_define] = STATE(2871), - [sym_preproc_undef] = STATE(2871), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3935), - [anon_sym_GT] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_PIPE] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_LT] = ACTIONS(3933), - [anon_sym_GT_GT] = ACTIONS(3935), - [anon_sym_GT_GT_GT] = ACTIONS(3933), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [anon_sym_and] = ACTIONS(3935), - [anon_sym_or] = ACTIONS(3935), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_QMARK_QMARK] = ACTIONS(3933), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3935), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(3933), - [anon_sym_with] = ACTIONS(3935), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [2865] = { + [sym_preproc_region] = STATE(2865), + [sym_preproc_endregion] = STATE(2865), + [sym_preproc_line] = STATE(2865), + [sym_preproc_pragma] = STATE(2865), + [sym_preproc_nullable] = STATE(2865), + [sym_preproc_error] = STATE(2865), + [sym_preproc_warning] = STATE(2865), + [sym_preproc_define] = STATE(2865), + [sym_preproc_undef] = STATE(2865), + [sym__identifier_token] = ACTIONS(4018), + [anon_sym_alias] = ACTIONS(4018), + [anon_sym_global] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_file] = ACTIONS(4018), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_where] = ACTIONS(4018), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_notnull] = ACTIONS(4018), + [anon_sym_unmanaged] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_scoped] = ACTIONS(4018), + [anon_sym_var] = ACTIONS(4018), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_switch] = ACTIONS(4018), + [anon_sym_when] = ACTIONS(4018), + [sym_discard] = ACTIONS(4018), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_or] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4018), + [anon_sym_into] = ACTIONS(4018), + [anon_sym_join] = ACTIONS(4018), + [anon_sym_on] = ACTIONS(4018), + [anon_sym_equals] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_orderby] = ACTIONS(4018), + [anon_sym_ascending] = ACTIONS(4018), + [anon_sym_descending] = ACTIONS(4018), + [anon_sym_group] = ACTIONS(4018), + [anon_sym_by] = ACTIONS(4018), + [anon_sym_select] = ACTIONS(4018), + [anon_sym_as] = ACTIONS(4018), + [anon_sym_is] = ACTIONS(4018), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4018), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4020), }, - [2872] = { - [sym_preproc_region] = STATE(2872), - [sym_preproc_endregion] = STATE(2872), - [sym_preproc_line] = STATE(2872), - [sym_preproc_pragma] = STATE(2872), - [sym_preproc_nullable] = STATE(2872), - [sym_preproc_error] = STATE(2872), - [sym_preproc_warning] = STATE(2872), - [sym_preproc_define] = STATE(2872), - [sym_preproc_undef] = STATE(2872), + [2866] = { + [sym_preproc_region] = STATE(2866), + [sym_preproc_endregion] = STATE(2866), + [sym_preproc_line] = STATE(2866), + [sym_preproc_pragma] = STATE(2866), + [sym_preproc_nullable] = STATE(2866), + [sym_preproc_error] = STATE(2866), + [sym_preproc_warning] = STATE(2866), + [sym_preproc_define] = STATE(2866), + [sym_preproc_undef] = STATE(2866), [sym__identifier_token] = ACTIONS(4699), [anon_sym_extern] = ACTIONS(4699), [anon_sym_alias] = ACTIONS(4699), @@ -461606,16 +461137,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2873] = { - [sym_preproc_region] = STATE(2873), - [sym_preproc_endregion] = STATE(2873), - [sym_preproc_line] = STATE(2873), - [sym_preproc_pragma] = STATE(2873), - [sym_preproc_nullable] = STATE(2873), - [sym_preproc_error] = STATE(2873), - [sym_preproc_warning] = STATE(2873), - [sym_preproc_define] = STATE(2873), - [sym_preproc_undef] = STATE(2873), + [2867] = { + [sym_preproc_region] = STATE(2867), + [sym_preproc_endregion] = STATE(2867), + [sym_preproc_line] = STATE(2867), + [sym_preproc_pragma] = STATE(2867), + [sym_preproc_nullable] = STATE(2867), + [sym_preproc_error] = STATE(2867), + [sym_preproc_warning] = STATE(2867), + [sym_preproc_define] = STATE(2867), + [sym_preproc_undef] = STATE(2867), [sym__identifier_token] = ACTIONS(4703), [anon_sym_extern] = ACTIONS(4703), [anon_sym_alias] = ACTIONS(4703), @@ -461690,100 +461221,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2874] = { - [sym_preproc_region] = STATE(2874), - [sym_preproc_endregion] = STATE(2874), - [sym_preproc_line] = STATE(2874), - [sym_preproc_pragma] = STATE(2874), - [sym_preproc_nullable] = STATE(2874), - [sym_preproc_error] = STATE(2874), - [sym_preproc_warning] = STATE(2874), - [sym_preproc_define] = STATE(2874), - [sym_preproc_undef] = STATE(2874), - [sym__identifier_token] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_alias] = ACTIONS(3150), - [anon_sym_global] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_unsafe] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_event] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_ref] = ACTIONS(3150), - [anon_sym_struct] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_delegate] = ACTIONS(3150), - [anon_sym_record] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_file] = ACTIONS(3150), - [anon_sym_fixed] = ACTIONS(3150), - [anon_sym_internal] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_partial] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_required] = ACTIONS(3150), - [anon_sym_sealed] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3150), - [anon_sym_notnull] = ACTIONS(3150), - [anon_sym_unmanaged] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_implicit] = ACTIONS(3150), - [anon_sym_explicit] = ACTIONS(3150), - [anon_sym_scoped] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [sym_predefined_type] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_when] = ACTIONS(3150), - [anon_sym_from] = ACTIONS(3150), - [anon_sym_into] = ACTIONS(3150), - [anon_sym_join] = ACTIONS(3150), - [anon_sym_on] = ACTIONS(3150), - [anon_sym_equals] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_orderby] = ACTIONS(3150), - [anon_sym_ascending] = ACTIONS(3150), - [anon_sym_descending] = ACTIONS(3150), - [anon_sym_group] = ACTIONS(3150), - [anon_sym_by] = ACTIONS(3150), - [anon_sym_select] = ACTIONS(3150), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2875] = { - [sym_preproc_region] = STATE(2875), - [sym_preproc_endregion] = STATE(2875), - [sym_preproc_line] = STATE(2875), - [sym_preproc_pragma] = STATE(2875), - [sym_preproc_nullable] = STATE(2875), - [sym_preproc_error] = STATE(2875), - [sym_preproc_warning] = STATE(2875), - [sym_preproc_define] = STATE(2875), - [sym_preproc_undef] = STATE(2875), + [2868] = { + [sym_preproc_region] = STATE(2868), + [sym_preproc_endregion] = STATE(2868), + [sym_preproc_line] = STATE(2868), + [sym_preproc_pragma] = STATE(2868), + [sym_preproc_nullable] = STATE(2868), + [sym_preproc_error] = STATE(2868), + [sym_preproc_warning] = STATE(2868), + [sym_preproc_define] = STATE(2868), + [sym_preproc_undef] = STATE(2868), [sym__identifier_token] = ACTIONS(4707), [anon_sym_extern] = ACTIONS(4707), [anon_sym_alias] = ACTIONS(4707), @@ -461858,67 +461305,823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2876] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2876), - [sym_preproc_endregion] = STATE(2876), - [sym_preproc_line] = STATE(2876), - [sym_preproc_pragma] = STATE(2876), - [sym_preproc_nullable] = STATE(2876), - [sym_preproc_error] = STATE(2876), - [sym_preproc_warning] = STATE(2876), - [sym_preproc_define] = STATE(2876), - [sym_preproc_undef] = STATE(2876), + [2869] = { + [sym_preproc_region] = STATE(2869), + [sym_preproc_endregion] = STATE(2869), + [sym_preproc_line] = STATE(2869), + [sym_preproc_pragma] = STATE(2869), + [sym_preproc_nullable] = STATE(2869), + [sym_preproc_error] = STATE(2869), + [sym_preproc_warning] = STATE(2869), + [sym_preproc_define] = STATE(2869), + [sym_preproc_undef] = STATE(2869), + [sym__identifier_token] = ACTIONS(4711), + [anon_sym_extern] = ACTIONS(4711), + [anon_sym_alias] = ACTIONS(4711), + [anon_sym_global] = ACTIONS(4711), + [anon_sym_using] = ACTIONS(4711), + [anon_sym_unsafe] = ACTIONS(4711), + [anon_sym_static] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4713), + [anon_sym_event] = ACTIONS(4711), + [anon_sym_namespace] = ACTIONS(4711), + [anon_sym_class] = ACTIONS(4711), + [anon_sym_ref] = ACTIONS(4711), + [anon_sym_struct] = ACTIONS(4711), + [anon_sym_enum] = ACTIONS(4711), + [anon_sym_RBRACE] = ACTIONS(4713), + [anon_sym_interface] = ACTIONS(4711), + [anon_sym_delegate] = ACTIONS(4711), + [anon_sym_record] = ACTIONS(4711), + [anon_sym_abstract] = ACTIONS(4711), + [anon_sym_async] = ACTIONS(4711), + [anon_sym_const] = ACTIONS(4711), + [anon_sym_file] = ACTIONS(4711), + [anon_sym_fixed] = ACTIONS(4711), + [anon_sym_internal] = ACTIONS(4711), + [anon_sym_new] = ACTIONS(4711), + [anon_sym_override] = ACTIONS(4711), + [anon_sym_partial] = ACTIONS(4711), + [anon_sym_private] = ACTIONS(4711), + [anon_sym_protected] = ACTIONS(4711), + [anon_sym_public] = ACTIONS(4711), + [anon_sym_readonly] = ACTIONS(4711), + [anon_sym_required] = ACTIONS(4711), + [anon_sym_sealed] = ACTIONS(4711), + [anon_sym_virtual] = ACTIONS(4711), + [anon_sym_volatile] = ACTIONS(4711), + [anon_sym_where] = ACTIONS(4711), + [anon_sym_notnull] = ACTIONS(4711), + [anon_sym_unmanaged] = ACTIONS(4711), + [anon_sym_TILDE] = ACTIONS(4713), + [anon_sym_implicit] = ACTIONS(4711), + [anon_sym_explicit] = ACTIONS(4711), + [anon_sym_scoped] = ACTIONS(4711), + [anon_sym_var] = ACTIONS(4711), + [sym_predefined_type] = ACTIONS(4711), + [anon_sym_yield] = ACTIONS(4711), + [anon_sym_when] = ACTIONS(4711), + [anon_sym_from] = ACTIONS(4711), + [anon_sym_into] = ACTIONS(4711), + [anon_sym_join] = ACTIONS(4711), + [anon_sym_on] = ACTIONS(4711), + [anon_sym_equals] = ACTIONS(4711), + [anon_sym_let] = ACTIONS(4711), + [anon_sym_orderby] = ACTIONS(4711), + [anon_sym_ascending] = ACTIONS(4711), + [anon_sym_descending] = ACTIONS(4711), + [anon_sym_group] = ACTIONS(4711), + [anon_sym_by] = ACTIONS(4711), + [anon_sym_select] = ACTIONS(4711), + [aux_sym_preproc_if_token1] = ACTIONS(4713), + [aux_sym_preproc_if_token3] = ACTIONS(4713), + [aux_sym_preproc_else_token1] = ACTIONS(4713), + [aux_sym_preproc_elif_token1] = ACTIONS(4713), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2870] = { + [sym_preproc_region] = STATE(2870), + [sym_preproc_endregion] = STATE(2870), + [sym_preproc_line] = STATE(2870), + [sym_preproc_pragma] = STATE(2870), + [sym_preproc_nullable] = STATE(2870), + [sym_preproc_error] = STATE(2870), + [sym_preproc_warning] = STATE(2870), + [sym_preproc_define] = STATE(2870), + [sym_preproc_undef] = STATE(2870), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3666), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3666), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_PLUS_EQ] = ACTIONS(3668), + [anon_sym_DASH_EQ] = ACTIONS(3668), + [anon_sym_STAR_EQ] = ACTIONS(3668), + [anon_sym_SLASH_EQ] = ACTIONS(3668), + [anon_sym_PERCENT_EQ] = ACTIONS(3668), + [anon_sym_AMP_EQ] = ACTIONS(3668), + [anon_sym_CARET_EQ] = ACTIONS(3668), + [anon_sym_PIPE_EQ] = ACTIONS(3668), + [anon_sym_LT_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2871] = { + [sym_preproc_region] = STATE(2871), + [sym_preproc_endregion] = STATE(2871), + [sym_preproc_line] = STATE(2871), + [sym_preproc_pragma] = STATE(2871), + [sym_preproc_nullable] = STATE(2871), + [sym_preproc_error] = STATE(2871), + [sym_preproc_warning] = STATE(2871), + [sym_preproc_define] = STATE(2871), + [sym_preproc_undef] = STATE(2871), + [sym__identifier_token] = ACTIONS(3947), + [anon_sym_alias] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_file] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3947), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_notnull] = ACTIONS(3947), + [anon_sym_unmanaged] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_scoped] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_switch] = ACTIONS(3947), + [anon_sym_when] = ACTIONS(3947), + [sym_discard] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_into] = ACTIONS(3947), + [anon_sym_join] = ACTIONS(3947), + [anon_sym_on] = ACTIONS(3947), + [anon_sym_equals] = ACTIONS(3947), + [anon_sym_let] = ACTIONS(3947), + [anon_sym_orderby] = ACTIONS(3947), + [anon_sym_ascending] = ACTIONS(3947), + [anon_sym_descending] = ACTIONS(3947), + [anon_sym_group] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3947), + [anon_sym_select] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3947), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3947), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3949), + }, + [2872] = { + [sym_preproc_region] = STATE(2872), + [sym_preproc_endregion] = STATE(2872), + [sym_preproc_line] = STATE(2872), + [sym_preproc_pragma] = STATE(2872), + [sym_preproc_nullable] = STATE(2872), + [sym_preproc_error] = STATE(2872), + [sym_preproc_warning] = STATE(2872), + [sym_preproc_define] = STATE(2872), + [sym_preproc_undef] = STATE(2872), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_event] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_delegate] = ACTIONS(2977), + [anon_sym_record] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_implicit] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [sym_predefined_type] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2873] = { + [sym__variable_designation] = STATE(3331), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2873), + [sym_preproc_endregion] = STATE(2873), + [sym_preproc_line] = STATE(2873), + [sym_preproc_pragma] = STATE(2873), + [sym_preproc_nullable] = STATE(2873), + [sym_preproc_error] = STATE(2873), + [sym_preproc_warning] = STATE(2873), + [sym_preproc_define] = STATE(2873), + [sym_preproc_undef] = STATE(2873), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3929), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2874] = { + [sym__variable_designation] = STATE(3268), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2874), + [sym_preproc_endregion] = STATE(2874), + [sym_preproc_line] = STATE(2874), + [sym_preproc_pragma] = STATE(2874), + [sym_preproc_nullable] = STATE(2874), + [sym_preproc_error] = STATE(2874), + [sym_preproc_warning] = STATE(2874), + [sym_preproc_define] = STATE(2874), + [sym_preproc_undef] = STATE(2874), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2875] = { + [sym__variable_designation] = STATE(3282), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2875), + [sym_preproc_endregion] = STATE(2875), + [sym_preproc_line] = STATE(2875), + [sym_preproc_pragma] = STATE(2875), + [sym_preproc_nullable] = STATE(2875), + [sym_preproc_error] = STATE(2875), + [sym_preproc_warning] = STATE(2875), + [sym_preproc_define] = STATE(2875), + [sym_preproc_undef] = STATE(2875), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3999), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(3999), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2876] = { + [sym__variable_designation] = STATE(3297), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2876), + [sym_preproc_endregion] = STATE(2876), + [sym_preproc_line] = STATE(2876), + [sym_preproc_pragma] = STATE(2876), + [sym_preproc_nullable] = STATE(2876), + [sym_preproc_error] = STATE(2876), + [sym_preproc_warning] = STATE(2876), + [sym_preproc_define] = STATE(2876), + [sym_preproc_undef] = STATE(2876), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3899), + [anon_sym_equals] = ACTIONS(4003), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2877] = { + [sym_preproc_region] = STATE(2877), + [sym_preproc_endregion] = STATE(2877), + [sym_preproc_line] = STATE(2877), + [sym_preproc_pragma] = STATE(2877), + [sym_preproc_nullable] = STATE(2877), + [sym_preproc_error] = STATE(2877), + [sym_preproc_warning] = STATE(2877), + [sym_preproc_define] = STATE(2877), + [sym_preproc_undef] = STATE(2877), + [sym__identifier_token] = ACTIONS(4042), + [anon_sym_alias] = ACTIONS(4042), + [anon_sym_global] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_file] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_where] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_notnull] = ACTIONS(4042), + [anon_sym_unmanaged] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_scoped] = ACTIONS(4042), + [anon_sym_var] = ACTIONS(4042), + [anon_sym_yield] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_when] = ACTIONS(4042), + [sym_discard] = ACTIONS(4042), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4042), + [anon_sym_or] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_from] = ACTIONS(4042), + [anon_sym_into] = ACTIONS(4042), + [anon_sym_join] = ACTIONS(4042), + [anon_sym_on] = ACTIONS(4042), + [anon_sym_equals] = ACTIONS(4042), + [anon_sym_let] = ACTIONS(4042), + [anon_sym_orderby] = ACTIONS(4042), + [anon_sym_ascending] = ACTIONS(4042), + [anon_sym_descending] = ACTIONS(4042), + [anon_sym_group] = ACTIONS(4042), + [anon_sym_by] = ACTIONS(4042), + [anon_sym_select] = ACTIONS(4042), + [anon_sym_as] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(4042), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4042), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4044), + }, + [2878] = { + [sym__variable_designation] = STATE(3331), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2878), + [sym_preproc_endregion] = STATE(2878), + [sym_preproc_line] = STATE(2878), + [sym_preproc_pragma] = STATE(2878), + [sym_preproc_nullable] = STATE(2878), + [sym_preproc_error] = STATE(2878), + [sym_preproc_warning] = STATE(2878), + [sym_preproc_define] = STATE(2878), + [sym_preproc_undef] = STATE(2878), [sym__identifier_token] = ACTIONS(3897), [anon_sym_alias] = ACTIONS(3899), [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3927), [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3929), + [anon_sym_GT] = ACTIONS(3929), [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), + [anon_sym_QMARK] = ACTIONS(3929), [anon_sym_notnull] = ACTIONS(3899), [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_PIPE] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_GT_GT_GT] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3929), [anon_sym_scoped] = ACTIONS(3899), [anon_sym_var] = ACTIONS(3899), [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), + [anon_sym_switch] = ACTIONS(3929), [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3929), + [anon_sym_or] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_QMARK_QMARK] = ACTIONS(3927), [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3929), [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3923), + [anon_sym_on] = ACTIONS(3929), [anon_sym_equals] = ACTIONS(3899), [anon_sym_let] = ACTIONS(3899), [anon_sym_orderby] = ACTIONS(3899), @@ -461927,10 +462130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3899), [anon_sym_by] = ACTIONS(3899), [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461942,79 +462145,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2877] = { - [sym_preproc_region] = STATE(2877), - [sym_preproc_endregion] = STATE(2877), - [sym_preproc_line] = STATE(2877), - [sym_preproc_pragma] = STATE(2877), - [sym_preproc_nullable] = STATE(2877), - [sym_preproc_error] = STATE(2877), - [sym_preproc_warning] = STATE(2877), - [sym_preproc_define] = STATE(2877), - [sym_preproc_undef] = STATE(2877), - [sym__identifier_token] = ACTIONS(4711), - [anon_sym_extern] = ACTIONS(4711), - [anon_sym_alias] = ACTIONS(4711), - [anon_sym_global] = ACTIONS(4711), - [anon_sym_using] = ACTIONS(4711), - [anon_sym_unsafe] = ACTIONS(4711), - [anon_sym_static] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4713), - [anon_sym_LPAREN] = ACTIONS(4713), - [anon_sym_event] = ACTIONS(4711), - [anon_sym_namespace] = ACTIONS(4711), - [anon_sym_class] = ACTIONS(4711), - [anon_sym_ref] = ACTIONS(4711), - [anon_sym_struct] = ACTIONS(4711), - [anon_sym_enum] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(4713), - [anon_sym_interface] = ACTIONS(4711), - [anon_sym_delegate] = ACTIONS(4711), - [anon_sym_record] = ACTIONS(4711), - [anon_sym_abstract] = ACTIONS(4711), - [anon_sym_async] = ACTIONS(4711), - [anon_sym_const] = ACTIONS(4711), - [anon_sym_file] = ACTIONS(4711), - [anon_sym_fixed] = ACTIONS(4711), - [anon_sym_internal] = ACTIONS(4711), - [anon_sym_new] = ACTIONS(4711), - [anon_sym_override] = ACTIONS(4711), - [anon_sym_partial] = ACTIONS(4711), - [anon_sym_private] = ACTIONS(4711), - [anon_sym_protected] = ACTIONS(4711), - [anon_sym_public] = ACTIONS(4711), - [anon_sym_readonly] = ACTIONS(4711), - [anon_sym_required] = ACTIONS(4711), - [anon_sym_sealed] = ACTIONS(4711), - [anon_sym_virtual] = ACTIONS(4711), - [anon_sym_volatile] = ACTIONS(4711), - [anon_sym_where] = ACTIONS(4711), - [anon_sym_notnull] = ACTIONS(4711), - [anon_sym_unmanaged] = ACTIONS(4711), - [anon_sym_TILDE] = ACTIONS(4713), - [anon_sym_implicit] = ACTIONS(4711), - [anon_sym_explicit] = ACTIONS(4711), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_var] = ACTIONS(4711), - [sym_predefined_type] = ACTIONS(4711), - [anon_sym_yield] = ACTIONS(4711), - [anon_sym_when] = ACTIONS(4711), - [anon_sym_from] = ACTIONS(4711), - [anon_sym_into] = ACTIONS(4711), - [anon_sym_join] = ACTIONS(4711), - [anon_sym_on] = ACTIONS(4711), - [anon_sym_equals] = ACTIONS(4711), - [anon_sym_let] = ACTIONS(4711), - [anon_sym_orderby] = ACTIONS(4711), - [anon_sym_ascending] = ACTIONS(4711), - [anon_sym_descending] = ACTIONS(4711), - [anon_sym_group] = ACTIONS(4711), - [anon_sym_by] = ACTIONS(4711), - [anon_sym_select] = ACTIONS(4711), - [aux_sym_preproc_if_token1] = ACTIONS(4713), - [aux_sym_preproc_if_token3] = ACTIONS(4713), - [aux_sym_preproc_else_token1] = ACTIONS(4713), - [aux_sym_preproc_elif_token1] = ACTIONS(4713), + [2879] = { + [sym__variable_designation] = STATE(3268), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2879), + [sym_preproc_endregion] = STATE(2879), + [sym_preproc_line] = STATE(2879), + [sym_preproc_pragma] = STATE(2879), + [sym_preproc_nullable] = STATE(2879), + [sym_preproc_error] = STATE(2879), + [sym_preproc_warning] = STATE(2879), + [sym_preproc_define] = STATE(2879), + [sym_preproc_undef] = STATE(2879), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3931), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3933), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_CARET] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_GT_GT_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3933), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_and] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3931), + [anon_sym_PIPE_PIPE] = ACTIONS(3931), + [anon_sym_QMARK_QMARK] = ACTIONS(3931), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3933), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3933), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_is] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462026,16 +462229,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2878] = { - [sym_preproc_region] = STATE(2878), - [sym_preproc_endregion] = STATE(2878), - [sym_preproc_line] = STATE(2878), - [sym_preproc_pragma] = STATE(2878), - [sym_preproc_nullable] = STATE(2878), - [sym_preproc_error] = STATE(2878), - [sym_preproc_warning] = STATE(2878), - [sym_preproc_define] = STATE(2878), - [sym_preproc_undef] = STATE(2878), + [2880] = { + [sym__variable_designation] = STATE(3282), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2880), + [sym_preproc_endregion] = STATE(2880), + [sym_preproc_line] = STATE(2880), + [sym_preproc_pragma] = STATE(2880), + [sym_preproc_nullable] = STATE(2880), + [sym_preproc_error] = STATE(2880), + [sym_preproc_warning] = STATE(2880), + [sym_preproc_define] = STATE(2880), + [sym_preproc_undef] = STATE(2880), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3999), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_LT_LT] = ACTIONS(3997), + [anon_sym_GT_GT] = ACTIONS(3999), + [anon_sym_GT_GT_GT] = ACTIONS(3997), + [anon_sym_EQ_EQ] = ACTIONS(3997), + [anon_sym_BANG_EQ] = ACTIONS(3997), + [anon_sym_GT_EQ] = ACTIONS(3997), + [anon_sym_LT_EQ] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3997), + [anon_sym_and] = ACTIONS(3999), + [anon_sym_or] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3997), + [anon_sym_PIPE_PIPE] = ACTIONS(3997), + [anon_sym_QMARK_QMARK] = ACTIONS(3997), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(3999), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(3999), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(3999), + [anon_sym_is] = ACTIONS(3999), + [anon_sym_DASH_GT] = ACTIONS(3997), + [anon_sym_with] = ACTIONS(3999), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2881] = { + [sym__variable_designation] = STATE(3297), + [sym_parenthesized_variable_designation] = STATE(3381), + [sym_identifier] = STATE(3341), + [sym__reserved_identifier] = STATE(3241), + [sym_preproc_region] = STATE(2881), + [sym_preproc_endregion] = STATE(2881), + [sym_preproc_line] = STATE(2881), + [sym_preproc_pragma] = STATE(2881), + [sym_preproc_nullable] = STATE(2881), + [sym_preproc_error] = STATE(2881), + [sym_preproc_warning] = STATE(2881), + [sym_preproc_define] = STATE(2881), + [sym_preproc_undef] = STATE(2881), + [sym__identifier_token] = ACTIONS(3897), + [anon_sym_alias] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_file] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_where] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_notnull] = ACTIONS(3899), + [anon_sym_unmanaged] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4001), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_GT_GT_GT] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [anon_sym_GT_EQ] = ACTIONS(4001), + [anon_sym_LT_EQ] = ACTIONS(4001), + [anon_sym_DOT] = ACTIONS(4003), + [anon_sym_scoped] = ACTIONS(3899), + [anon_sym_var] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_switch] = ACTIONS(4003), + [anon_sym_when] = ACTIONS(3899), + [sym_discard] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(4001), + [anon_sym_and] = ACTIONS(4003), + [anon_sym_or] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_QMARK_QMARK] = ACTIONS(4001), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_into] = ACTIONS(4003), + [anon_sym_join] = ACTIONS(3899), + [anon_sym_on] = ACTIONS(4003), + [anon_sym_equals] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_orderby] = ACTIONS(3899), + [anon_sym_ascending] = ACTIONS(3899), + [anon_sym_descending] = ACTIONS(3899), + [anon_sym_group] = ACTIONS(3899), + [anon_sym_by] = ACTIONS(3899), + [anon_sym_select] = ACTIONS(3899), + [anon_sym_as] = ACTIONS(4003), + [anon_sym_is] = ACTIONS(4003), + [anon_sym_DASH_GT] = ACTIONS(4001), + [anon_sym_with] = ACTIONS(4003), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2882] = { + [sym_preproc_region] = STATE(2882), + [sym_preproc_endregion] = STATE(2882), + [sym_preproc_line] = STATE(2882), + [sym_preproc_pragma] = STATE(2882), + [sym_preproc_nullable] = STATE(2882), + [sym_preproc_error] = STATE(2882), + [sym_preproc_warning] = STATE(2882), + [sym_preproc_define] = STATE(2882), + [sym_preproc_undef] = STATE(2882), [sym__identifier_token] = ACTIONS(4715), [anon_sym_extern] = ACTIONS(4715), [anon_sym_alias] = ACTIONS(4715), @@ -462110,16 +462481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2879] = { - [sym_preproc_region] = STATE(2879), - [sym_preproc_endregion] = STATE(2879), - [sym_preproc_line] = STATE(2879), - [sym_preproc_pragma] = STATE(2879), - [sym_preproc_nullable] = STATE(2879), - [sym_preproc_error] = STATE(2879), - [sym_preproc_warning] = STATE(2879), - [sym_preproc_define] = STATE(2879), - [sym_preproc_undef] = STATE(2879), + [2883] = { + [sym_preproc_region] = STATE(2883), + [sym_preproc_endregion] = STATE(2883), + [sym_preproc_line] = STATE(2883), + [sym_preproc_pragma] = STATE(2883), + [sym_preproc_nullable] = STATE(2883), + [sym_preproc_error] = STATE(2883), + [sym_preproc_warning] = STATE(2883), + [sym_preproc_define] = STATE(2883), + [sym_preproc_undef] = STATE(2883), [sym__identifier_token] = ACTIONS(4719), [anon_sym_extern] = ACTIONS(4719), [anon_sym_alias] = ACTIONS(4719), @@ -462194,16 +462565,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2880] = { - [sym_preproc_region] = STATE(2880), - [sym_preproc_endregion] = STATE(2880), - [sym_preproc_line] = STATE(2880), - [sym_preproc_pragma] = STATE(2880), - [sym_preproc_nullable] = STATE(2880), - [sym_preproc_error] = STATE(2880), - [sym_preproc_warning] = STATE(2880), - [sym_preproc_define] = STATE(2880), - [sym_preproc_undef] = STATE(2880), + [2884] = { + [sym_preproc_region] = STATE(2884), + [sym_preproc_endregion] = STATE(2884), + [sym_preproc_line] = STATE(2884), + [sym_preproc_pragma] = STATE(2884), + [sym_preproc_nullable] = STATE(2884), + [sym_preproc_error] = STATE(2884), + [sym_preproc_warning] = STATE(2884), + [sym_preproc_define] = STATE(2884), + [sym_preproc_undef] = STATE(2884), [sym__identifier_token] = ACTIONS(4723), [anon_sym_extern] = ACTIONS(4723), [anon_sym_alias] = ACTIONS(4723), @@ -462278,100 +462649,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2881] = { - [sym__variable_designation] = STATE(3431), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2881), - [sym_preproc_endregion] = STATE(2881), - [sym_preproc_line] = STATE(2881), - [sym_preproc_pragma] = STATE(2881), - [sym_preproc_nullable] = STATE(2881), - [sym_preproc_error] = STATE(2881), - [sym_preproc_warning] = STATE(2881), - [sym_preproc_define] = STATE(2881), - [sym_preproc_undef] = STATE(2881), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3923), - [anon_sym_GT] = ACTIONS(3923), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_PIPE] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3923), - [anon_sym_GT_GT_GT] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3921), - [anon_sym_BANG_EQ] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3921), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3923), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3923), - [anon_sym_or] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3921), - [anon_sym_QMARK_QMARK] = ACTIONS(3921), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3923), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3923), - [anon_sym_is] = ACTIONS(3923), - [anon_sym_DASH_GT] = ACTIONS(3921), - [anon_sym_with] = ACTIONS(3923), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2882] = { - [sym_preproc_region] = STATE(2882), - [sym_preproc_endregion] = STATE(2882), - [sym_preproc_line] = STATE(2882), - [sym_preproc_pragma] = STATE(2882), - [sym_preproc_nullable] = STATE(2882), - [sym_preproc_error] = STATE(2882), - [sym_preproc_warning] = STATE(2882), - [sym_preproc_define] = STATE(2882), - [sym_preproc_undef] = STATE(2882), + [2885] = { + [sym_preproc_region] = STATE(2885), + [sym_preproc_endregion] = STATE(2885), + [sym_preproc_line] = STATE(2885), + [sym_preproc_pragma] = STATE(2885), + [sym_preproc_nullable] = STATE(2885), + [sym_preproc_error] = STATE(2885), + [sym_preproc_warning] = STATE(2885), + [sym_preproc_define] = STATE(2885), + [sym_preproc_undef] = STATE(2885), [sym__identifier_token] = ACTIONS(4727), [anon_sym_extern] = ACTIONS(4727), [anon_sym_alias] = ACTIONS(4727), @@ -462446,259 +462733,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2883] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2883), - [sym_preproc_endregion] = STATE(2883), - [sym_preproc_line] = STATE(2883), - [sym_preproc_pragma] = STATE(2883), - [sym_preproc_nullable] = STATE(2883), - [sym_preproc_error] = STATE(2883), - [sym_preproc_warning] = STATE(2883), - [sym_preproc_define] = STATE(2883), - [sym_preproc_undef] = STATE(2883), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3999), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2884] = { - [sym__variable_designation] = STATE(3435), - [sym_parenthesized_variable_designation] = STATE(3477), - [sym_identifier] = STATE(3480), - [sym__reserved_identifier] = STATE(3205), - [sym_preproc_region] = STATE(2884), - [sym_preproc_endregion] = STATE(2884), - [sym_preproc_line] = STATE(2884), - [sym_preproc_pragma] = STATE(2884), - [sym_preproc_nullable] = STATE(2884), - [sym_preproc_error] = STATE(2884), - [sym_preproc_warning] = STATE(2884), - [sym_preproc_define] = STATE(2884), - [sym_preproc_undef] = STATE(2884), - [sym__identifier_token] = ACTIONS(3897), - [anon_sym_alias] = ACTIONS(3899), - [anon_sym_global] = ACTIONS(3899), - [anon_sym_LBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_notnull] = ACTIONS(3899), - [anon_sym_unmanaged] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_PLUS_PLUS] = ACTIONS(3997), - [anon_sym_DASH_DASH] = ACTIONS(3997), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_SLASH] = ACTIONS(3999), - [anon_sym_PERCENT] = ACTIONS(3997), - [anon_sym_CARET] = ACTIONS(3997), - [anon_sym_PIPE] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_LT] = ACTIONS(3997), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_GT_GT_GT] = ACTIONS(3997), - [anon_sym_EQ_EQ] = ACTIONS(3997), - [anon_sym_BANG_EQ] = ACTIONS(3997), - [anon_sym_GT_EQ] = ACTIONS(3997), - [anon_sym_LT_EQ] = ACTIONS(3997), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_scoped] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3899), - [anon_sym_yield] = ACTIONS(3899), - [anon_sym_switch] = ACTIONS(3999), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_and] = ACTIONS(3999), - [anon_sym_or] = ACTIONS(3999), - [anon_sym_AMP_AMP] = ACTIONS(3997), - [anon_sym_PIPE_PIPE] = ACTIONS(3997), - [anon_sym_QMARK_QMARK] = ACTIONS(3997), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3999), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3999), - [anon_sym_is] = ACTIONS(3999), - [anon_sym_DASH_GT] = ACTIONS(3997), - [anon_sym_with] = ACTIONS(3999), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2885] = { - [sym_preproc_region] = STATE(2885), - [sym_preproc_endregion] = STATE(2885), - [sym_preproc_line] = STATE(2885), - [sym_preproc_pragma] = STATE(2885), - [sym_preproc_nullable] = STATE(2885), - [sym_preproc_error] = STATE(2885), - [sym_preproc_warning] = STATE(2885), - [sym_preproc_define] = STATE(2885), - [sym_preproc_undef] = STATE(2885), - [sym__identifier_token] = ACTIONS(4119), - [anon_sym_alias] = ACTIONS(4119), - [anon_sym_global] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_file] = ACTIONS(4119), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_where] = ACTIONS(4119), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_notnull] = ACTIONS(4119), - [anon_sym_unmanaged] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_scoped] = ACTIONS(4119), - [anon_sym_var] = ACTIONS(4119), - [anon_sym_yield] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_when] = ACTIONS(4119), - [sym_discard] = ACTIONS(4119), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4119), - [anon_sym_or] = ACTIONS(4119), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_from] = ACTIONS(4119), - [anon_sym_into] = ACTIONS(4119), - [anon_sym_join] = ACTIONS(4119), - [anon_sym_on] = ACTIONS(4119), - [anon_sym_equals] = ACTIONS(4119), - [anon_sym_let] = ACTIONS(4119), - [anon_sym_orderby] = ACTIONS(4119), - [anon_sym_ascending] = ACTIONS(4119), - [anon_sym_descending] = ACTIONS(4119), - [anon_sym_group] = ACTIONS(4119), - [anon_sym_by] = ACTIONS(4119), - [anon_sym_select] = ACTIONS(4119), - [anon_sym_as] = ACTIONS(4119), - [anon_sym_is] = ACTIONS(4119), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4119), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4121), - }, [2886] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym_tuple_pattern] = STATE(7084), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6181), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5778), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2886), [sym_preproc_endregion] = STATE(2886), [sym_preproc_line] = STATE(2886), @@ -462708,221 +462767,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2886), [sym_preproc_define] = STATE(2886), [sym_preproc_undef] = STATE(2886), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_QMARK_QMARK] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4222), - }, - [2887] = { - [sym_preproc_region] = STATE(2887), - [sym_preproc_endregion] = STATE(2887), - [sym_preproc_line] = STATE(2887), - [sym_preproc_pragma] = STATE(2887), - [sym_preproc_nullable] = STATE(2887), - [sym_preproc_error] = STATE(2887), - [sym_preproc_warning] = STATE(2887), - [sym_preproc_define] = STATE(2887), - [sym_preproc_undef] = STATE(2887), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_COLON] = ACTIONS(4226), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_QMARK_QMARK] = ACTIONS(4226), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4226), - [anon_sym_with] = ACTIONS(4224), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4226), - }, - [2888] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5972), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5747), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), - [sym_preproc_region] = STATE(2888), - [sym_preproc_endregion] = STATE(2888), - [sym_preproc_line] = STATE(2888), - [sym_preproc_pragma] = STATE(2888), - [sym_preproc_nullable] = STATE(2888), - [sym_preproc_error] = STATE(2888), - [sym_preproc_warning] = STATE(2888), - [sym_preproc_define] = STATE(2888), - [sym_preproc_undef] = STATE(2888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4534), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3550), - [aux_sym__lambda_expression_init_repeat1] = STATE(3528), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3012), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(4733), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(4735), [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4735), - [anon_sym_params] = ACTIONS(4737), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(1139), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), + [sym_discard] = ACTIONS(4739), [anon_sym_from] = ACTIONS(2997), [anon_sym_into] = ACTIONS(2997), [anon_sym_join] = ACTIONS(2997), @@ -462935,7 +462804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(2997), [anon_sym_by] = ACTIONS(2997), [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462947,77 +462816,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2889] = { - [sym_preproc_region] = STATE(2889), - [sym_preproc_endregion] = STATE(2889), - [sym_preproc_line] = STATE(2889), - [sym_preproc_pragma] = STATE(2889), - [sym_preproc_nullable] = STATE(2889), - [sym_preproc_error] = STATE(2889), - [sym_preproc_warning] = STATE(2889), - [sym_preproc_define] = STATE(2889), - [sym_preproc_undef] = STATE(2889), - [sym__identifier_token] = ACTIONS(4170), - [anon_sym_alias] = ACTIONS(4170), - [anon_sym_global] = ACTIONS(4170), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_COLON] = ACTIONS(4172), - [anon_sym_COMMA] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_file] = ACTIONS(4170), - [anon_sym_LT] = ACTIONS(4170), - [anon_sym_GT] = ACTIONS(4170), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_QMARK] = ACTIONS(4170), - [anon_sym_notnull] = ACTIONS(4170), - [anon_sym_unmanaged] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_SLASH] = ACTIONS(4170), - [anon_sym_PERCENT] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4170), - [anon_sym_LT_LT] = ACTIONS(4172), - [anon_sym_GT_GT] = ACTIONS(4170), - [anon_sym_GT_GT_GT] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [anon_sym_GT_EQ] = ACTIONS(4172), - [anon_sym_LT_EQ] = ACTIONS(4172), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_scoped] = ACTIONS(4170), - [anon_sym_var] = ACTIONS(4170), - [anon_sym_yield] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4170), - [anon_sym_when] = ACTIONS(4170), - [sym_discard] = ACTIONS(4170), - [anon_sym_DOT_DOT] = ACTIONS(4172), - [anon_sym_and] = ACTIONS(4170), - [anon_sym_or] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_QMARK_QMARK] = ACTIONS(4172), - [anon_sym_from] = ACTIONS(4170), - [anon_sym_into] = ACTIONS(4170), - [anon_sym_join] = ACTIONS(4170), - [anon_sym_on] = ACTIONS(4170), - [anon_sym_equals] = ACTIONS(4170), - [anon_sym_let] = ACTIONS(4170), - [anon_sym_orderby] = ACTIONS(4170), - [anon_sym_ascending] = ACTIONS(4170), - [anon_sym_descending] = ACTIONS(4170), - [anon_sym_group] = ACTIONS(4170), - [anon_sym_by] = ACTIONS(4170), - [anon_sym_select] = ACTIONS(4170), - [anon_sym_as] = ACTIONS(4170), - [anon_sym_is] = ACTIONS(4170), - [anon_sym_DASH_GT] = ACTIONS(4172), - [anon_sym_with] = ACTIONS(4170), + [2887] = { + [sym_preproc_region] = STATE(2887), + [sym_preproc_endregion] = STATE(2887), + [sym_preproc_line] = STATE(2887), + [sym_preproc_pragma] = STATE(2887), + [sym_preproc_nullable] = STATE(2887), + [sym_preproc_error] = STATE(2887), + [sym_preproc_warning] = STATE(2887), + [sym_preproc_define] = STATE(2887), + [sym_preproc_undef] = STATE(2887), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), + [anon_sym_PIPE] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4184), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_GT_GT_GT] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4184), + [anon_sym_LT_EQ] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4184), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4184), + [anon_sym_QMARK_QMARK] = ACTIONS(4184), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4184), + [anon_sym_with] = ACTIONS(4182), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463028,33 +462897,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4172), + [sym_interpolation_close_brace] = ACTIONS(4184), + }, + [2888] = { + [sym_preproc_else_in_attribute_list] = STATE(7433), + [sym_preproc_elif_in_attribute_list] = STATE(7433), + [sym_preproc_region] = STATE(2888), + [sym_preproc_endregion] = STATE(2888), + [sym_preproc_line] = STATE(2888), + [sym_preproc_pragma] = STATE(2888), + [sym_preproc_nullable] = STATE(2888), + [sym_preproc_error] = STATE(2888), + [sym_preproc_warning] = STATE(2888), + [sym_preproc_define] = STATE(2888), + [sym_preproc_undef] = STATE(2888), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_event] = ACTIONS(4743), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_record] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4745), + [anon_sym_implicit] = ACTIONS(4743), + [anon_sym_explicit] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), + [aux_sym_preproc_if_token3] = ACTIONS(4747), + [aux_sym_preproc_else_token1] = ACTIONS(4749), + [aux_sym_preproc_elif_token1] = ACTIONS(4751), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2889] = { + [sym_preproc_region] = STATE(2889), + [sym_preproc_endregion] = STATE(2889), + [sym_preproc_line] = STATE(2889), + [sym_preproc_pragma] = STATE(2889), + [sym_preproc_nullable] = STATE(2889), + [sym_preproc_error] = STATE(2889), + [sym_preproc_warning] = STATE(2889), + [sym_preproc_define] = STATE(2889), + [sym_preproc_undef] = STATE(2889), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_LT_LT] = ACTIONS(4221), + [anon_sym_GT_GT] = ACTIONS(4219), + [anon_sym_GT_GT_GT] = ACTIONS(4221), + [anon_sym_EQ_EQ] = ACTIONS(4221), + [anon_sym_BANG_EQ] = ACTIONS(4221), + [anon_sym_GT_EQ] = ACTIONS(4221), + [anon_sym_LT_EQ] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4221), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_PIPE_PIPE] = ACTIONS(4221), + [anon_sym_QMARK_QMARK] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4219), + [anon_sym_is] = ACTIONS(4219), + [anon_sym_DASH_GT] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4221), }, [2890] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym_tuple_pattern] = STATE(7097), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6184), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5760), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(2890), [sym_preproc_endregion] = STATE(2890), [sym_preproc_line] = STATE(2890), @@ -463064,44 +463075,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2890), [sym_preproc_define] = STATE(2890), [sym_preproc_undef] = STATE(2890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [sym_discard] = ACTIONS(4745), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), + [anon_sym_PIPE] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_LT_LT] = ACTIONS(4184), + [anon_sym_GT_GT] = ACTIONS(4182), + [anon_sym_GT_GT_GT] = ACTIONS(4184), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_GT_EQ] = ACTIONS(4184), + [anon_sym_LT_EQ] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4184), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4184), + [anon_sym_PIPE_PIPE] = ACTIONS(4184), + [anon_sym_QMARK_QMARK] = ACTIONS(4184), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4184), + [anon_sym_with] = ACTIONS(4182), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463112,6 +463146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4184), }, [2891] = { [sym_preproc_region] = STATE(2891), @@ -463123,80 +463158,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2891), [sym_preproc_define] = STATE(2891), [sym_preproc_undef] = STATE(2891), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_COLON] = ACTIONS(4226), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_PIPE] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4224), - [anon_sym_GT_GT_GT] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_QMARK_QMARK] = ACTIONS(4226), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4226), - [anon_sym_with] = ACTIONS(4224), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4226), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_LT_LT] = ACTIONS(4221), + [anon_sym_GT_GT] = ACTIONS(4219), + [anon_sym_GT_GT_GT] = ACTIONS(4221), + [anon_sym_EQ_EQ] = ACTIONS(4221), + [anon_sym_BANG_EQ] = ACTIONS(4221), + [anon_sym_GT_EQ] = ACTIONS(4221), + [anon_sym_LT_EQ] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4221), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_PIPE_PIPE] = ACTIONS(4221), + [anon_sym_QMARK_QMARK] = ACTIONS(4221), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4219), + [anon_sym_is] = ACTIONS(4219), + [anon_sym_DASH_GT] = ACTIONS(4221), + [anon_sym_with] = ACTIONS(4219), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4221), }, [2892] = { + [sym_preproc_else_in_attribute_list] = STATE(7655), + [sym_preproc_elif_in_attribute_list] = STATE(7655), [sym_preproc_region] = STATE(2892), [sym_preproc_endregion] = STATE(2892), [sym_preproc_line] = STATE(2892), @@ -463206,82 +463243,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2892), [sym_preproc_define] = STATE(2892), [sym_preproc_undef] = STATE(2892), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_SLASH] = ACTIONS(4220), - [anon_sym_PERCENT] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_PIPE] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_GT_GT_GT] = ACTIONS(4222), - [anon_sym_EQ_EQ] = ACTIONS(4222), - [anon_sym_BANG_EQ] = ACTIONS(4222), - [anon_sym_GT_EQ] = ACTIONS(4222), - [anon_sym_LT_EQ] = ACTIONS(4222), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4220), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4222), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_QMARK_QMARK] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4220), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4222), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_event] = ACTIONS(4743), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_record] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4745), + [anon_sym_implicit] = ACTIONS(4743), + [anon_sym_explicit] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), + [aux_sym_preproc_if_token3] = ACTIONS(4753), + [aux_sym_preproc_else_token1] = ACTIONS(4749), + [aux_sym_preproc_elif_token1] = ACTIONS(4751), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2893] = { - [sym_preproc_else_in_attribute_list] = STATE(7546), - [sym_preproc_elif_in_attribute_list] = STATE(7546), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5970), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5742), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2893), [sym_preproc_endregion] = STATE(2893), [sym_preproc_line] = STATE(2893), @@ -463291,66 +463347,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2893), [sym_preproc_define] = STATE(2893), [sym_preproc_undef] = STATE(2893), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_event] = ACTIONS(4747), - [anon_sym_class] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_struct] = ACTIONS(4747), - [anon_sym_enum] = ACTIONS(4747), - [anon_sym_interface] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_record] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4749), - [anon_sym_implicit] = ACTIONS(4747), - [anon_sym_explicit] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), - [aux_sym_preproc_if_token3] = ACTIONS(4751), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4755), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4439), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3430), + [aux_sym__lambda_expression_init_repeat1] = STATE(3463), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4755), + [anon_sym_params] = ACTIONS(4757), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463372,82 +463407,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2894), [sym_preproc_define] = STATE(2894), [sym_preproc_undef] = STATE(2894), - [sym__identifier_token] = ACTIONS(4200), - [anon_sym_alias] = ACTIONS(4200), - [anon_sym_global] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_file] = ACTIONS(4200), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_QMARK] = ACTIONS(4200), - [anon_sym_notnull] = ACTIONS(4200), - [anon_sym_unmanaged] = ACTIONS(4200), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_CARET] = ACTIONS(4202), - [anon_sym_PIPE] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_LT_LT] = ACTIONS(4202), - [anon_sym_GT_GT] = ACTIONS(4200), - [anon_sym_GT_GT_GT] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_scoped] = ACTIONS(4200), - [anon_sym_var] = ACTIONS(4200), - [anon_sym_yield] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [sym_discard] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_and] = ACTIONS(4200), - [anon_sym_or] = ACTIONS(4200), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_QMARK_QMARK] = ACTIONS(4202), - [anon_sym_from] = ACTIONS(4200), - [anon_sym_into] = ACTIONS(4200), - [anon_sym_join] = ACTIONS(4200), - [anon_sym_on] = ACTIONS(4200), - [anon_sym_equals] = ACTIONS(4200), - [anon_sym_let] = ACTIONS(4200), - [anon_sym_orderby] = ACTIONS(4200), - [anon_sym_ascending] = ACTIONS(4200), - [anon_sym_descending] = ACTIONS(4200), - [anon_sym_group] = ACTIONS(4200), - [anon_sym_by] = ACTIONS(4200), - [anon_sym_select] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [anon_sym_with] = ACTIONS(4200), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4202), + [sym__identifier_token] = ACTIONS(4176), + [anon_sym_alias] = ACTIONS(4176), + [anon_sym_global] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4178), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_COMMA] = ACTIONS(4178), + [anon_sym_LPAREN] = ACTIONS(4178), + [anon_sym_file] = ACTIONS(4176), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4176), + [anon_sym_notnull] = ACTIONS(4176), + [anon_sym_unmanaged] = ACTIONS(4176), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_PIPE] = ACTIONS(4176), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_LT_LT] = ACTIONS(4178), + [anon_sym_GT_GT] = ACTIONS(4176), + [anon_sym_GT_GT_GT] = ACTIONS(4178), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_scoped] = ACTIONS(4176), + [anon_sym_var] = ACTIONS(4176), + [anon_sym_yield] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [sym_discard] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_and] = ACTIONS(4176), + [anon_sym_or] = ACTIONS(4176), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_PIPE_PIPE] = ACTIONS(4178), + [anon_sym_QMARK_QMARK] = ACTIONS(4178), + [anon_sym_from] = ACTIONS(4176), + [anon_sym_into] = ACTIONS(4176), + [anon_sym_join] = ACTIONS(4176), + [anon_sym_on] = ACTIONS(4176), + [anon_sym_equals] = ACTIONS(4176), + [anon_sym_let] = ACTIONS(4176), + [anon_sym_orderby] = ACTIONS(4176), + [anon_sym_ascending] = ACTIONS(4176), + [anon_sym_descending] = ACTIONS(4176), + [anon_sym_group] = ACTIONS(4176), + [anon_sym_by] = ACTIONS(4176), + [anon_sym_select] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4178), + [anon_sym_with] = ACTIONS(4176), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4178), }, [2895] = { - [sym_preproc_else_in_attribute_list] = STATE(7419), - [sym_preproc_elif_in_attribute_list] = STATE(7419), [sym_preproc_region] = STATE(2895), [sym_preproc_endregion] = STATE(2895), [sym_preproc_line] = STATE(2895), @@ -463457,66 +463490,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2895), [sym_preproc_define] = STATE(2895), [sym_preproc_undef] = STATE(2895), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_event] = ACTIONS(4747), - [anon_sym_class] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_struct] = ACTIONS(4747), - [anon_sym_enum] = ACTIONS(4747), - [anon_sym_interface] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_record] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4749), - [anon_sym_implicit] = ACTIONS(4747), - [anon_sym_explicit] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), - [aux_sym_preproc_if_token3] = ACTIONS(4757), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4755), + [sym__identifier_token] = ACTIONS(4198), + [anon_sym_alias] = ACTIONS(4198), + [anon_sym_global] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_COMMA] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4200), + [anon_sym_file] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4198), + [anon_sym_GT] = ACTIONS(4198), + [anon_sym_where] = ACTIONS(4198), + [anon_sym_QMARK] = ACTIONS(4198), + [anon_sym_notnull] = ACTIONS(4198), + [anon_sym_unmanaged] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_CARET] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_LT_LT] = ACTIONS(4200), + [anon_sym_GT_GT] = ACTIONS(4198), + [anon_sym_GT_GT_GT] = ACTIONS(4200), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_GT_EQ] = ACTIONS(4200), + [anon_sym_LT_EQ] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_scoped] = ACTIONS(4198), + [anon_sym_var] = ACTIONS(4198), + [anon_sym_yield] = ACTIONS(4198), + [anon_sym_switch] = ACTIONS(4198), + [anon_sym_when] = ACTIONS(4198), + [sym_discard] = ACTIONS(4198), + [anon_sym_DOT_DOT] = ACTIONS(4200), + [anon_sym_and] = ACTIONS(4198), + [anon_sym_or] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4200), + [anon_sym_PIPE_PIPE] = ACTIONS(4200), + [anon_sym_QMARK_QMARK] = ACTIONS(4200), + [anon_sym_from] = ACTIONS(4198), + [anon_sym_into] = ACTIONS(4198), + [anon_sym_join] = ACTIONS(4198), + [anon_sym_on] = ACTIONS(4198), + [anon_sym_equals] = ACTIONS(4198), + [anon_sym_let] = ACTIONS(4198), + [anon_sym_orderby] = ACTIONS(4198), + [anon_sym_ascending] = ACTIONS(4198), + [anon_sym_descending] = ACTIONS(4198), + [anon_sym_group] = ACTIONS(4198), + [anon_sym_by] = ACTIONS(4198), + [anon_sym_select] = ACTIONS(4198), + [anon_sym_as] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4200), + [anon_sym_with] = ACTIONS(4198), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463527,6 +463561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4200), }, [2896] = { [sym_preproc_region] = STATE(2896), @@ -463538,67 +463573,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2896), [sym_preproc_define] = STATE(2896), [sym_preproc_undef] = STATE(2896), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), [anon_sym_DOT] = ACTIONS(4759), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463620,67 +463655,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2897), [sym_preproc_define] = STATE(2897), [sym_preproc_undef] = STATE(2897), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463702,67 +463737,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2898), [sym_preproc_define] = STATE(2898), [sym_preproc_undef] = STATE(2898), - [sym__identifier_token] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_global] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_file] = ACTIONS(4146), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_notnull] = ACTIONS(4146), - [anon_sym_unmanaged] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4148), - [anon_sym_EQ_EQ] = ACTIONS(4148), - [anon_sym_BANG_EQ] = ACTIONS(4148), - [anon_sym_GT_EQ] = ACTIONS(4148), - [anon_sym_LT_EQ] = ACTIONS(4148), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4148), - [anon_sym_var] = ACTIONS(4146), - [anon_sym_yield] = ACTIONS(4146), - [anon_sym_switch] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4146), - [sym_discard] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4148), - [anon_sym_from] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4146), - [anon_sym_join] = ACTIONS(4146), - [anon_sym_on] = ACTIONS(4146), - [anon_sym_equals] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_orderby] = ACTIONS(4146), - [anon_sym_ascending] = ACTIONS(4146), - [anon_sym_descending] = ACTIONS(4146), - [anon_sym_group] = ACTIONS(4146), - [anon_sym_by] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4146), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4129), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463784,67 +463819,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2899), [sym_preproc_define] = STATE(2899), [sym_preproc_undef] = STATE(2899), - [sym__identifier_token] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_global] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_file] = ACTIONS(4146), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_notnull] = ACTIONS(4146), - [anon_sym_unmanaged] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4148), - [anon_sym_EQ_EQ] = ACTIONS(4148), - [anon_sym_BANG_EQ] = ACTIONS(4148), - [anon_sym_GT_EQ] = ACTIONS(4148), - [anon_sym_LT_EQ] = ACTIONS(4148), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_scoped] = ACTIONS(4146), - [anon_sym_EQ_GT] = ACTIONS(4148), - [anon_sym_var] = ACTIONS(4146), - [anon_sym_yield] = ACTIONS(4146), - [anon_sym_switch] = ACTIONS(4146), - [anon_sym_when] = ACTIONS(4146), - [sym_discard] = ACTIONS(4146), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4146), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4148), - [anon_sym_from] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4146), - [anon_sym_join] = ACTIONS(4146), - [anon_sym_on] = ACTIONS(4146), - [anon_sym_equals] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_orderby] = ACTIONS(4146), - [anon_sym_ascending] = ACTIONS(4146), - [anon_sym_descending] = ACTIONS(4146), - [anon_sym_group] = ACTIONS(4146), - [anon_sym_by] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4146), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4146), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4765), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463857,6 +463892,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2900] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6121), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_identifier] = STATE(5800), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2900), [sym_preproc_endregion] = STATE(2900), [sym_preproc_line] = STATE(2900), @@ -463866,67 +463925,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2900), [sym_preproc_define] = STATE(2900), [sym_preproc_undef] = STATE(2900), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3012), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463939,9 +463974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2901] = { - [sym_attribute_list] = STATE(3062), - [sym__attribute_list] = STATE(2999), - [sym_preproc_if_in_attribute_list] = STATE(3062), [sym_preproc_region] = STATE(2901), [sym_preproc_endregion] = STATE(2901), [sym_preproc_line] = STATE(2901), @@ -463951,64 +463983,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2901), [sym_preproc_define] = STATE(2901), [sym_preproc_undef] = STATE(2901), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2901), - [sym__identifier_token] = ACTIONS(4767), - [anon_sym_extern] = ACTIONS(4767), - [anon_sym_alias] = ACTIONS(4767), - [anon_sym_global] = ACTIONS(4767), - [anon_sym_unsafe] = ACTIONS(4767), - [anon_sym_static] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4772), - [anon_sym_event] = ACTIONS(4767), - [anon_sym_class] = ACTIONS(4767), - [anon_sym_ref] = ACTIONS(4767), - [anon_sym_struct] = ACTIONS(4767), - [anon_sym_enum] = ACTIONS(4767), - [anon_sym_interface] = ACTIONS(4767), - [anon_sym_delegate] = ACTIONS(4767), - [anon_sym_record] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_async] = ACTIONS(4767), - [anon_sym_const] = ACTIONS(4767), - [anon_sym_file] = ACTIONS(4767), - [anon_sym_fixed] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_new] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_partial] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_readonly] = ACTIONS(4767), - [anon_sym_required] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_virtual] = ACTIONS(4767), - [anon_sym_volatile] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_notnull] = ACTIONS(4767), - [anon_sym_unmanaged] = ACTIONS(4767), - [anon_sym_TILDE] = ACTIONS(4772), - [anon_sym_implicit] = ACTIONS(4767), - [anon_sym_explicit] = ACTIONS(4767), - [anon_sym_scoped] = ACTIONS(4767), - [anon_sym_var] = ACTIONS(4767), - [sym_predefined_type] = ACTIONS(4767), - [anon_sym_yield] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_from] = ACTIONS(4767), - [anon_sym_into] = ACTIONS(4767), - [anon_sym_join] = ACTIONS(4767), - [anon_sym_on] = ACTIONS(4767), - [anon_sym_equals] = ACTIONS(4767), - [anon_sym_let] = ACTIONS(4767), - [anon_sym_orderby] = ACTIONS(4767), - [anon_sym_ascending] = ACTIONS(4767), - [anon_sym_descending] = ACTIONS(4767), - [anon_sym_group] = ACTIONS(4767), - [anon_sym_by] = ACTIONS(4767), - [anon_sym_select] = ACTIONS(4767), - [aux_sym_preproc_if_token1] = ACTIONS(4774), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4769), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464021,6 +464056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2902] = { + [sym_attribute_list] = STATE(3038), + [sym__attribute_list] = STATE(3045), + [sym_preproc_if_in_attribute_list] = STATE(3038), [sym_preproc_region] = STATE(2902), [sym_preproc_endregion] = STATE(2902), [sym_preproc_line] = STATE(2902), @@ -464030,67 +464068,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2902), [sym_preproc_define] = STATE(2902), [sym_preproc_undef] = STATE(2902), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2902), + [sym__identifier_token] = ACTIONS(4771), + [anon_sym_extern] = ACTIONS(4771), + [anon_sym_alias] = ACTIONS(4771), + [anon_sym_global] = ACTIONS(4771), + [anon_sym_unsafe] = ACTIONS(4771), + [anon_sym_static] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4773), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_event] = ACTIONS(4771), + [anon_sym_class] = ACTIONS(4771), + [anon_sym_ref] = ACTIONS(4771), + [anon_sym_struct] = ACTIONS(4771), + [anon_sym_enum] = ACTIONS(4771), + [anon_sym_interface] = ACTIONS(4771), + [anon_sym_delegate] = ACTIONS(4771), + [anon_sym_record] = ACTIONS(4771), + [anon_sym_abstract] = ACTIONS(4771), + [anon_sym_async] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_file] = ACTIONS(4771), + [anon_sym_fixed] = ACTIONS(4771), + [anon_sym_internal] = ACTIONS(4771), + [anon_sym_new] = ACTIONS(4771), + [anon_sym_override] = ACTIONS(4771), + [anon_sym_partial] = ACTIONS(4771), + [anon_sym_private] = ACTIONS(4771), + [anon_sym_protected] = ACTIONS(4771), + [anon_sym_public] = ACTIONS(4771), + [anon_sym_readonly] = ACTIONS(4771), + [anon_sym_required] = ACTIONS(4771), + [anon_sym_sealed] = ACTIONS(4771), + [anon_sym_virtual] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_where] = ACTIONS(4771), + [anon_sym_notnull] = ACTIONS(4771), + [anon_sym_unmanaged] = ACTIONS(4771), + [anon_sym_TILDE] = ACTIONS(4776), + [anon_sym_implicit] = ACTIONS(4771), + [anon_sym_explicit] = ACTIONS(4771), + [anon_sym_scoped] = ACTIONS(4771), + [anon_sym_var] = ACTIONS(4771), + [sym_predefined_type] = ACTIONS(4771), + [anon_sym_yield] = ACTIONS(4771), + [anon_sym_when] = ACTIONS(4771), + [anon_sym_from] = ACTIONS(4771), + [anon_sym_into] = ACTIONS(4771), + [anon_sym_join] = ACTIONS(4771), + [anon_sym_on] = ACTIONS(4771), + [anon_sym_equals] = ACTIONS(4771), + [anon_sym_let] = ACTIONS(4771), + [anon_sym_orderby] = ACTIONS(4771), + [anon_sym_ascending] = ACTIONS(4771), + [anon_sym_descending] = ACTIONS(4771), + [anon_sym_group] = ACTIONS(4771), + [anon_sym_by] = ACTIONS(4771), + [anon_sym_select] = ACTIONS(4771), + [aux_sym_preproc_if_token1] = ACTIONS(4778), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464112,67 +464147,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2903), [sym_preproc_define] = STATE(2903), [sym_preproc_undef] = STATE(2903), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4127), + [anon_sym_alias] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_file] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_QMARK] = ACTIONS(4127), + [anon_sym_notnull] = ACTIONS(4127), + [anon_sym_unmanaged] = ACTIONS(4127), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_LT_LT] = ACTIONS(4129), + [anon_sym_GT_GT] = ACTIONS(4127), + [anon_sym_GT_GT_GT] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_scoped] = ACTIONS(4127), + [anon_sym_EQ_GT] = ACTIONS(4129), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_switch] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [sym_discard] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_and] = ACTIONS(4127), + [anon_sym_or] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_QMARK_QMARK] = ACTIONS(4129), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_into] = ACTIONS(4127), + [anon_sym_join] = ACTIONS(4127), + [anon_sym_on] = ACTIONS(4127), + [anon_sym_equals] = ACTIONS(4127), + [anon_sym_let] = ACTIONS(4127), + [anon_sym_orderby] = ACTIONS(4127), + [anon_sym_ascending] = ACTIONS(4127), + [anon_sym_descending] = ACTIONS(4127), + [anon_sym_group] = ACTIONS(4127), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_select] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [anon_sym_with] = ACTIONS(4127), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464194,67 +464229,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2904), [sym_preproc_define] = STATE(2904), [sym_preproc_undef] = STATE(2904), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), [anon_sym_DOT] = ACTIONS(4781), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464267,30 +464302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2905] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6119), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_identifier] = STATE(5788), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(2905), [sym_preproc_endregion] = STATE(2905), [sym_preproc_line] = STATE(2905), @@ -464300,43 +464311,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2905), [sym_preproc_define] = STATE(2905), [sym_preproc_undef] = STATE(2905), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464358,67 +464393,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2906), [sym_preproc_define] = STATE(2906), [sym_preproc_undef] = STATE(2906), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), [anon_sym_DOT] = ACTIONS(4785), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464431,13 +464466,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2907] = { - [sym_attribute_list] = STATE(3565), - [sym__attribute_list] = STATE(3562), - [sym_modifier] = STATE(3702), - [sym_accessor_declaration] = STATE(3484), - [sym_identifier] = STATE(6491), + [sym_attribute_list] = STATE(3570), + [sym__attribute_list] = STATE(3569), + [sym_modifier] = STATE(3734), + [sym_accessor_declaration] = STATE(3551), + [sym_identifier] = STATE(6456), [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_attribute_list] = STATE(3565), + [sym_preproc_if_in_attribute_list] = STATE(3570), [sym_preproc_region] = STATE(2907), [sym_preproc_endregion] = STATE(2907), [sym_preproc_line] = STATE(2907), @@ -464447,9 +464482,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2907), [sym_preproc_define] = STATE(2907), [sym_preproc_undef] = STATE(2907), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3056), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3314), - [aux_sym_accessor_list_repeat1] = STATE(2917), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3053), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3272), + [aux_sym_accessor_list_repeat1] = STATE(2928), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(4787), [anon_sym_alias] = ACTIONS(29), @@ -464521,66 +464556,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2908), [sym_preproc_define] = STATE(2908), [sym_preproc_undef] = STATE(2908), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_where] = ACTIONS(4208), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4210), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_from] = ACTIONS(4208), - [anon_sym_into] = ACTIONS(4208), - [anon_sym_join] = ACTIONS(4208), - [anon_sym_let] = ACTIONS(4208), - [anon_sym_orderby] = ACTIONS(4208), - [anon_sym_ascending] = ACTIONS(4208), - [anon_sym_descending] = ACTIONS(4208), - [anon_sym_group] = ACTIONS(4208), - [anon_sym_select] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4799), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464602,66 +464637,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2909), [sym_preproc_define] = STATE(2909), [sym_preproc_undef] = STATE(2909), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464683,66 +464718,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2910), [sym_preproc_define] = STATE(2910), [sym_preproc_undef] = STATE(2910), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2987), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_while] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_catch] = ACTIONS(2987), - [anon_sym_finally] = ACTIONS(2987), - [anon_sym_else] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4805), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464764,66 +464799,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2911), [sym_preproc_define] = STATE(2911), [sym_preproc_undef] = STATE(2911), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_catch] = ACTIONS(2979), + [anon_sym_finally] = ACTIONS(2979), + [anon_sym_else] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464845,66 +464880,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2912), [sym_preproc_define] = STATE(2912), [sym_preproc_undef] = STATE(2912), - [sym__identifier_token] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_global] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_file] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_notnull] = ACTIONS(4224), - [anon_sym_unmanaged] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_scoped] = ACTIONS(4224), - [anon_sym_var] = ACTIONS(4224), - [anon_sym_yield] = ACTIONS(4224), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_when] = ACTIONS(4224), - [sym_discard] = ACTIONS(4224), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(4224), - [anon_sym_or] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(4224), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4224), - [anon_sym_equals] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4224), - [anon_sym_descending] = ACTIONS(4224), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_where] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4174), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_from] = ACTIONS(4172), + [anon_sym_into] = ACTIONS(4172), + [anon_sym_join] = ACTIONS(4172), + [anon_sym_let] = ACTIONS(4172), + [anon_sym_orderby] = ACTIONS(4172), + [anon_sym_ascending] = ACTIONS(4172), + [anon_sym_descending] = ACTIONS(4172), + [anon_sym_group] = ACTIONS(4172), + [anon_sym_select] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4174), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464926,66 +464961,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2913), [sym_preproc_define] = STATE(2913), [sym_preproc_undef] = STATE(2913), - [sym__identifier_token] = ACTIONS(4805), - [anon_sym_extern] = ACTIONS(4805), - [anon_sym_alias] = ACTIONS(4805), - [anon_sym_global] = ACTIONS(4805), - [anon_sym_unsafe] = ACTIONS(4805), - [anon_sym_static] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_event] = ACTIONS(4805), - [anon_sym_class] = ACTIONS(4805), - [anon_sym_ref] = ACTIONS(4805), - [anon_sym_struct] = ACTIONS(4805), - [anon_sym_enum] = ACTIONS(4805), - [anon_sym_interface] = ACTIONS(4805), - [anon_sym_delegate] = ACTIONS(4805), - [anon_sym_record] = ACTIONS(4805), - [anon_sym_abstract] = ACTIONS(4805), - [anon_sym_async] = ACTIONS(4805), - [anon_sym_const] = ACTIONS(4805), - [anon_sym_file] = ACTIONS(4805), - [anon_sym_fixed] = ACTIONS(4805), - [anon_sym_internal] = ACTIONS(4805), - [anon_sym_new] = ACTIONS(4805), - [anon_sym_override] = ACTIONS(4805), - [anon_sym_partial] = ACTIONS(4805), - [anon_sym_private] = ACTIONS(4805), - [anon_sym_protected] = ACTIONS(4805), - [anon_sym_public] = ACTIONS(4805), - [anon_sym_readonly] = ACTIONS(4805), - [anon_sym_required] = ACTIONS(4805), - [anon_sym_sealed] = ACTIONS(4805), - [anon_sym_virtual] = ACTIONS(4805), - [anon_sym_volatile] = ACTIONS(4805), - [anon_sym_where] = ACTIONS(4805), - [anon_sym_notnull] = ACTIONS(4805), - [anon_sym_unmanaged] = ACTIONS(4805), - [anon_sym_TILDE] = ACTIONS(4807), - [anon_sym_implicit] = ACTIONS(4805), - [anon_sym_explicit] = ACTIONS(4805), - [anon_sym_scoped] = ACTIONS(4805), - [anon_sym_var] = ACTIONS(4805), - [sym_predefined_type] = ACTIONS(4805), - [anon_sym_yield] = ACTIONS(4805), - [anon_sym_when] = ACTIONS(4805), - [anon_sym_from] = ACTIONS(4805), - [anon_sym_into] = ACTIONS(4805), - [anon_sym_join] = ACTIONS(4805), - [anon_sym_on] = ACTIONS(4805), - [anon_sym_equals] = ACTIONS(4805), - [anon_sym_let] = ACTIONS(4805), - [anon_sym_orderby] = ACTIONS(4805), - [anon_sym_ascending] = ACTIONS(4805), - [anon_sym_descending] = ACTIONS(4805), - [anon_sym_group] = ACTIONS(4805), - [anon_sym_by] = ACTIONS(4805), - [anon_sym_select] = ACTIONS(4805), - [aux_sym_preproc_if_token1] = ACTIONS(4807), - [aux_sym_preproc_if_token3] = ACTIONS(4807), - [aux_sym_preproc_else_token1] = ACTIONS(4807), - [aux_sym_preproc_elif_token1] = ACTIONS(4807), + [sym__identifier_token] = ACTIONS(4807), + [anon_sym_extern] = ACTIONS(4807), + [anon_sym_alias] = ACTIONS(4807), + [anon_sym_global] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(4809), + [anon_sym_event] = ACTIONS(4807), + [anon_sym_class] = ACTIONS(4807), + [anon_sym_ref] = ACTIONS(4807), + [anon_sym_struct] = ACTIONS(4807), + [anon_sym_enum] = ACTIONS(4807), + [anon_sym_interface] = ACTIONS(4807), + [anon_sym_delegate] = ACTIONS(4807), + [anon_sym_record] = ACTIONS(4807), + [anon_sym_abstract] = ACTIONS(4807), + [anon_sym_async] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4807), + [anon_sym_file] = ACTIONS(4807), + [anon_sym_fixed] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_new] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_partial] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_protected] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_readonly] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_sealed] = ACTIONS(4807), + [anon_sym_virtual] = ACTIONS(4807), + [anon_sym_volatile] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4807), + [anon_sym_notnull] = ACTIONS(4807), + [anon_sym_unmanaged] = ACTIONS(4807), + [anon_sym_TILDE] = ACTIONS(4809), + [anon_sym_implicit] = ACTIONS(4807), + [anon_sym_explicit] = ACTIONS(4807), + [anon_sym_scoped] = ACTIONS(4807), + [anon_sym_var] = ACTIONS(4807), + [sym_predefined_type] = ACTIONS(4807), + [anon_sym_yield] = ACTIONS(4807), + [anon_sym_when] = ACTIONS(4807), + [anon_sym_from] = ACTIONS(4807), + [anon_sym_into] = ACTIONS(4807), + [anon_sym_join] = ACTIONS(4807), + [anon_sym_on] = ACTIONS(4807), + [anon_sym_equals] = ACTIONS(4807), + [anon_sym_let] = ACTIONS(4807), + [anon_sym_orderby] = ACTIONS(4807), + [anon_sym_ascending] = ACTIONS(4807), + [anon_sym_descending] = ACTIONS(4807), + [anon_sym_group] = ACTIONS(4807), + [anon_sym_by] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [aux_sym_preproc_if_token1] = ACTIONS(4809), + [aux_sym_preproc_if_token3] = ACTIONS(4809), + [aux_sym_preproc_else_token1] = ACTIONS(4809), + [aux_sym_preproc_elif_token1] = ACTIONS(4809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465007,66 +465042,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2914), [sym_preproc_define] = STATE(2914), [sym_preproc_undef] = STATE(2914), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = ACTIONS(4214), - [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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_from] = ACTIONS(4212), - [anon_sym_into] = ACTIONS(4212), - [anon_sym_join] = ACTIONS(4212), - [anon_sym_let] = ACTIONS(4212), - [anon_sym_orderby] = ACTIONS(4212), - [anon_sym_ascending] = ACTIONS(4212), - [anon_sym_descending] = ACTIONS(4212), - [anon_sym_group] = ACTIONS(4212), - [anon_sym_select] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4214), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_from] = ACTIONS(4164), + [anon_sym_into] = ACTIONS(4164), + [anon_sym_join] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_orderby] = ACTIONS(4164), + [anon_sym_ascending] = ACTIONS(4164), + [anon_sym_descending] = ACTIONS(4164), + [anon_sym_group] = ACTIONS(4164), + [anon_sym_select] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465079,6 +465114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2915] = { + [sym_argument_list] = STATE(2949), + [sym_initializer_expression] = STATE(3100), [sym_preproc_region] = STATE(2915), [sym_preproc_endregion] = STATE(2915), [sym_preproc_line] = STATE(2915), @@ -465088,66 +465125,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2915), [sym_preproc_define] = STATE(2915), [sym_preproc_undef] = STATE(2915), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_in] = ACTIONS(4815), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_GT_GT_GT] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4811), + [anon_sym_from] = ACTIONS(4811), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_join] = ACTIONS(4811), + [anon_sym_on] = ACTIONS(4811), + [anon_sym_equals] = ACTIONS(4811), + [anon_sym_let] = ACTIONS(4811), + [anon_sym_orderby] = ACTIONS(4811), + [anon_sym_group] = ACTIONS(4811), + [anon_sym_by] = ACTIONS(4811), + [anon_sym_select] = ACTIONS(4811), + [anon_sym_as] = ACTIONS(4811), + [anon_sym_is] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [anon_sym_with] = ACTIONS(4811), + [aux_sym_preproc_if_token3] = ACTIONS(4811), + [aux_sym_preproc_else_token1] = ACTIONS(4811), + [aux_sym_preproc_elif_token1] = ACTIONS(4811), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465169,66 +465204,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2916), [sym_preproc_define] = STATE(2916), [sym_preproc_undef] = STATE(2916), - [sym__identifier_token] = ACTIONS(4811), - [anon_sym_extern] = ACTIONS(4811), - [anon_sym_alias] = ACTIONS(4811), - [anon_sym_global] = ACTIONS(4811), - [anon_sym_unsafe] = ACTIONS(4811), - [anon_sym_static] = ACTIONS(4811), - [anon_sym_LBRACK] = ACTIONS(4813), - [anon_sym_LPAREN] = ACTIONS(4813), - [anon_sym_event] = ACTIONS(4811), - [anon_sym_class] = ACTIONS(4811), - [anon_sym_ref] = ACTIONS(4811), - [anon_sym_struct] = ACTIONS(4811), - [anon_sym_enum] = ACTIONS(4811), - [anon_sym_interface] = ACTIONS(4811), - [anon_sym_delegate] = ACTIONS(4811), - [anon_sym_record] = ACTIONS(4811), - [anon_sym_abstract] = ACTIONS(4811), - [anon_sym_async] = ACTIONS(4811), - [anon_sym_const] = ACTIONS(4811), - [anon_sym_file] = ACTIONS(4811), - [anon_sym_fixed] = ACTIONS(4811), - [anon_sym_internal] = ACTIONS(4811), - [anon_sym_new] = ACTIONS(4811), - [anon_sym_override] = ACTIONS(4811), - [anon_sym_partial] = ACTIONS(4811), - [anon_sym_private] = ACTIONS(4811), - [anon_sym_protected] = ACTIONS(4811), - [anon_sym_public] = ACTIONS(4811), - [anon_sym_readonly] = ACTIONS(4811), - [anon_sym_required] = ACTIONS(4811), - [anon_sym_sealed] = ACTIONS(4811), - [anon_sym_virtual] = ACTIONS(4811), - [anon_sym_volatile] = ACTIONS(4811), - [anon_sym_where] = ACTIONS(4811), - [anon_sym_notnull] = ACTIONS(4811), - [anon_sym_unmanaged] = ACTIONS(4811), - [anon_sym_TILDE] = ACTIONS(4813), - [anon_sym_implicit] = ACTIONS(4811), - [anon_sym_explicit] = ACTIONS(4811), - [anon_sym_scoped] = ACTIONS(4811), - [anon_sym_var] = ACTIONS(4811), - [sym_predefined_type] = ACTIONS(4811), - [anon_sym_yield] = ACTIONS(4811), - [anon_sym_when] = ACTIONS(4811), - [anon_sym_from] = ACTIONS(4811), - [anon_sym_into] = ACTIONS(4811), - [anon_sym_join] = ACTIONS(4811), - [anon_sym_on] = ACTIONS(4811), - [anon_sym_equals] = ACTIONS(4811), - [anon_sym_let] = ACTIONS(4811), - [anon_sym_orderby] = ACTIONS(4811), - [anon_sym_ascending] = ACTIONS(4811), - [anon_sym_descending] = ACTIONS(4811), - [anon_sym_group] = ACTIONS(4811), - [anon_sym_by] = ACTIONS(4811), - [anon_sym_select] = ACTIONS(4811), - [aux_sym_preproc_if_token1] = ACTIONS(4813), - [aux_sym_preproc_if_token3] = ACTIONS(4813), - [aux_sym_preproc_else_token1] = ACTIONS(4813), - [aux_sym_preproc_elif_token1] = ACTIONS(4813), + [sym__identifier_token] = ACTIONS(4219), + [anon_sym_alias] = ACTIONS(4219), + [anon_sym_global] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_file] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_where] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_notnull] = ACTIONS(4219), + [anon_sym_unmanaged] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_scoped] = ACTIONS(4219), + [anon_sym_var] = ACTIONS(4219), + [anon_sym_yield] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_when] = ACTIONS(4219), + [sym_discard] = ACTIONS(4219), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4219), + [anon_sym_or] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4219), + [anon_sym_into] = ACTIONS(4219), + [anon_sym_join] = ACTIONS(4219), + [anon_sym_on] = ACTIONS(4219), + [anon_sym_equals] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(4219), + [anon_sym_orderby] = ACTIONS(4219), + [anon_sym_ascending] = ACTIONS(4219), + [anon_sym_descending] = ACTIONS(4219), + [anon_sym_group] = ACTIONS(4219), + [anon_sym_by] = ACTIONS(4219), + [anon_sym_select] = ACTIONS(4219), + [anon_sym_as] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4293), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4293), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465241,13 +465276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2917] = { - [sym_attribute_list] = STATE(3565), - [sym__attribute_list] = STATE(3562), - [sym_modifier] = STATE(3702), - [sym_accessor_declaration] = STATE(3484), - [sym_identifier] = STATE(6491), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_attribute_list] = STATE(3565), [sym_preproc_region] = STATE(2917), [sym_preproc_endregion] = STATE(2917), [sym_preproc_line] = STATE(2917), @@ -465257,59 +465285,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2917), [sym_preproc_define] = STATE(2917), [sym_preproc_undef] = STATE(2917), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3056), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3314), - [aux_sym_accessor_list_repeat1] = STATE(2917), - [sym__identifier_token] = ACTIONS(4815), - [anon_sym_extern] = ACTIONS(4818), - [anon_sym_alias] = ACTIONS(4821), - [anon_sym_global] = ACTIONS(4821), - [anon_sym_unsafe] = ACTIONS(4818), - [anon_sym_static] = ACTIONS(4818), - [anon_sym_LBRACK] = ACTIONS(4824), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_abstract] = ACTIONS(4818), - [anon_sym_async] = ACTIONS(4818), - [anon_sym_const] = ACTIONS(4818), - [anon_sym_file] = ACTIONS(4829), - [anon_sym_fixed] = ACTIONS(4818), - [anon_sym_internal] = ACTIONS(4818), - [anon_sym_new] = ACTIONS(4818), - [anon_sym_override] = ACTIONS(4818), - [anon_sym_partial] = ACTIONS(4818), - [anon_sym_private] = ACTIONS(4818), - [anon_sym_protected] = ACTIONS(4818), - [anon_sym_public] = ACTIONS(4818), - [anon_sym_readonly] = ACTIONS(4818), - [anon_sym_required] = ACTIONS(4818), - [anon_sym_sealed] = ACTIONS(4818), - [anon_sym_virtual] = ACTIONS(4818), - [anon_sym_volatile] = ACTIONS(4818), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_notnull] = ACTIONS(4821), - [anon_sym_unmanaged] = ACTIONS(4821), - [anon_sym_get] = ACTIONS(4832), - [anon_sym_set] = ACTIONS(4832), - [anon_sym_add] = ACTIONS(4832), - [anon_sym_remove] = ACTIONS(4832), - [anon_sym_init] = ACTIONS(4832), - [anon_sym_scoped] = ACTIONS(4821), - [anon_sym_var] = ACTIONS(4821), - [anon_sym_yield] = ACTIONS(4821), - [anon_sym_when] = ACTIONS(4821), - [anon_sym_from] = ACTIONS(4821), - [anon_sym_into] = ACTIONS(4821), - [anon_sym_join] = ACTIONS(4821), - [anon_sym_on] = ACTIONS(4821), - [anon_sym_equals] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_orderby] = ACTIONS(4821), - [anon_sym_ascending] = ACTIONS(4821), - [anon_sym_descending] = ACTIONS(4821), - [anon_sym_group] = ACTIONS(4821), - [anon_sym_by] = ACTIONS(4821), - [anon_sym_select] = ACTIONS(4821), - [aux_sym_preproc_if_token1] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = ACTIONS(4241), + [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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_from] = ACTIONS(4239), + [anon_sym_into] = ACTIONS(4239), + [anon_sym_join] = ACTIONS(4239), + [anon_sym_let] = ACTIONS(4239), + [anon_sym_orderby] = ACTIONS(4239), + [anon_sym_ascending] = ACTIONS(4239), + [anon_sym_descending] = ACTIONS(4239), + [anon_sym_group] = ACTIONS(4239), + [anon_sym_select] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465322,29 +465357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2918] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter] = STATE(7056), - [sym__parameter_array] = STATE(7065), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6184), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5762), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(2918), [sym_preproc_endregion] = STATE(2918), [sym_preproc_line] = STATE(2918), @@ -465354,43 +465366,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2918), [sym_preproc_define] = STATE(2918), [sym_preproc_undef] = STATE(2918), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [sym__identifier_token] = ACTIONS(4182), + [anon_sym_alias] = ACTIONS(4182), + [anon_sym_global] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_file] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_notnull] = ACTIONS(4182), + [anon_sym_unmanaged] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_scoped] = ACTIONS(4182), + [anon_sym_var] = ACTIONS(4182), + [anon_sym_yield] = ACTIONS(4182), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_when] = ACTIONS(4182), + [sym_discard] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(4182), + [anon_sym_or] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(4182), + [anon_sym_into] = ACTIONS(4182), + [anon_sym_join] = ACTIONS(4182), + [anon_sym_on] = ACTIONS(4182), + [anon_sym_equals] = ACTIONS(4182), + [anon_sym_let] = ACTIONS(4182), + [anon_sym_orderby] = ACTIONS(4182), + [anon_sym_ascending] = ACTIONS(4182), + [anon_sym_descending] = ACTIONS(4182), + [anon_sym_group] = ACTIONS(4182), + [anon_sym_by] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465412,66 +465447,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2919), [sym_preproc_define] = STATE(2919), [sym_preproc_undef] = STATE(2919), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4817), + [anon_sym_extern] = ACTIONS(4817), + [anon_sym_alias] = ACTIONS(4817), + [anon_sym_global] = ACTIONS(4817), + [anon_sym_unsafe] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4819), + [anon_sym_event] = ACTIONS(4817), + [anon_sym_class] = ACTIONS(4817), + [anon_sym_ref] = ACTIONS(4817), + [anon_sym_struct] = ACTIONS(4817), + [anon_sym_enum] = ACTIONS(4817), + [anon_sym_interface] = ACTIONS(4817), + [anon_sym_delegate] = ACTIONS(4817), + [anon_sym_record] = ACTIONS(4817), + [anon_sym_abstract] = ACTIONS(4817), + [anon_sym_async] = ACTIONS(4817), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_file] = ACTIONS(4817), + [anon_sym_fixed] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_new] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_partial] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_protected] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_readonly] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_sealed] = ACTIONS(4817), + [anon_sym_virtual] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_where] = ACTIONS(4817), + [anon_sym_notnull] = ACTIONS(4817), + [anon_sym_unmanaged] = ACTIONS(4817), + [anon_sym_TILDE] = ACTIONS(4819), + [anon_sym_implicit] = ACTIONS(4817), + [anon_sym_explicit] = ACTIONS(4817), + [anon_sym_scoped] = ACTIONS(4817), + [anon_sym_var] = ACTIONS(4817), + [sym_predefined_type] = ACTIONS(4817), + [anon_sym_yield] = ACTIONS(4817), + [anon_sym_when] = ACTIONS(4817), + [anon_sym_from] = ACTIONS(4817), + [anon_sym_into] = ACTIONS(4817), + [anon_sym_join] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_let] = ACTIONS(4817), + [anon_sym_orderby] = ACTIONS(4817), + [anon_sym_ascending] = ACTIONS(4817), + [anon_sym_descending] = ACTIONS(4817), + [anon_sym_group] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_select] = ACTIONS(4817), + [aux_sym_preproc_if_token1] = ACTIONS(4819), + [aux_sym_preproc_if_token3] = ACTIONS(4819), + [aux_sym_preproc_else_token1] = ACTIONS(4819), + [aux_sym_preproc_elif_token1] = ACTIONS(4819), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465493,66 +465528,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2920), [sym_preproc_define] = STATE(2920), [sym_preproc_undef] = STATE(2920), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4821), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465565,6 +465600,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2921] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter] = STATE(6893), + [sym__parameter_array] = STATE(6838), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6181), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5765), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2921), [sym_preproc_endregion] = STATE(2921), [sym_preproc_line] = STATE(2921), @@ -465574,66 +465632,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2921), [sym_preproc_define] = STATE(2921), [sym_preproc_undef] = STATE(2921), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4842), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4056), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3012), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465646,8 +465681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2922] = { - [sym_argument_list] = STATE(2937), - [sym_initializer_expression] = STATE(3083), [sym_preproc_region] = STATE(2922), [sym_preproc_endregion] = STATE(2922), [sym_preproc_line] = STATE(2922), @@ -465657,64 +465690,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2922), [sym_preproc_define] = STATE(2922), [sym_preproc_undef] = STATE(2922), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_COMMA] = ACTIONS(4844), - [anon_sym_RBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_in] = ACTIONS(4848), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4848), - [anon_sym_PLUS_PLUS] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_GT_GT_GT] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_EQ_GT] = ACTIONS(4844), - [anon_sym_switch] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_QMARK_QMARK] = ACTIONS(4844), - [anon_sym_from] = ACTIONS(4844), - [anon_sym_into] = ACTIONS(4844), - [anon_sym_join] = ACTIONS(4844), - [anon_sym_on] = ACTIONS(4844), - [anon_sym_equals] = ACTIONS(4844), - [anon_sym_let] = ACTIONS(4844), - [anon_sym_orderby] = ACTIONS(4844), - [anon_sym_group] = ACTIONS(4844), - [anon_sym_by] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [aux_sym_preproc_if_token3] = ACTIONS(4844), - [aux_sym_preproc_else_token1] = ACTIONS(4844), - [aux_sym_preproc_elif_token1] = ACTIONS(4844), + [sym__identifier_token] = ACTIONS(4823), + [anon_sym_extern] = ACTIONS(4823), + [anon_sym_alias] = ACTIONS(4823), + [anon_sym_global] = ACTIONS(4823), + [anon_sym_unsafe] = ACTIONS(4823), + [anon_sym_static] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4825), + [anon_sym_event] = ACTIONS(4823), + [anon_sym_class] = ACTIONS(4823), + [anon_sym_ref] = ACTIONS(4823), + [anon_sym_struct] = ACTIONS(4823), + [anon_sym_enum] = ACTIONS(4823), + [anon_sym_interface] = ACTIONS(4823), + [anon_sym_delegate] = ACTIONS(4823), + [anon_sym_record] = ACTIONS(4823), + [anon_sym_abstract] = ACTIONS(4823), + [anon_sym_async] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_file] = ACTIONS(4823), + [anon_sym_fixed] = ACTIONS(4823), + [anon_sym_internal] = ACTIONS(4823), + [anon_sym_new] = ACTIONS(4823), + [anon_sym_override] = ACTIONS(4823), + [anon_sym_partial] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(4823), + [anon_sym_protected] = ACTIONS(4823), + [anon_sym_public] = ACTIONS(4823), + [anon_sym_readonly] = ACTIONS(4823), + [anon_sym_required] = ACTIONS(4823), + [anon_sym_sealed] = ACTIONS(4823), + [anon_sym_virtual] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_where] = ACTIONS(4823), + [anon_sym_notnull] = ACTIONS(4823), + [anon_sym_unmanaged] = ACTIONS(4823), + [anon_sym_TILDE] = ACTIONS(4825), + [anon_sym_implicit] = ACTIONS(4823), + [anon_sym_explicit] = ACTIONS(4823), + [anon_sym_scoped] = ACTIONS(4823), + [anon_sym_var] = ACTIONS(4823), + [sym_predefined_type] = ACTIONS(4823), + [anon_sym_yield] = ACTIONS(4823), + [anon_sym_when] = ACTIONS(4823), + [anon_sym_from] = ACTIONS(4823), + [anon_sym_into] = ACTIONS(4823), + [anon_sym_join] = ACTIONS(4823), + [anon_sym_on] = ACTIONS(4823), + [anon_sym_equals] = ACTIONS(4823), + [anon_sym_let] = ACTIONS(4823), + [anon_sym_orderby] = ACTIONS(4823), + [anon_sym_ascending] = ACTIONS(4823), + [anon_sym_descending] = ACTIONS(4823), + [anon_sym_group] = ACTIONS(4823), + [anon_sym_by] = ACTIONS(4823), + [anon_sym_select] = ACTIONS(4823), + [aux_sym_preproc_if_token1] = ACTIONS(4825), + [aux_sym_preproc_if_token3] = ACTIONS(4825), + [aux_sym_preproc_else_token1] = ACTIONS(4825), + [aux_sym_preproc_elif_token1] = ACTIONS(4825), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465727,29 +465762,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2923] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter] = STATE(6812), - [sym__parameter_array] = STATE(6813), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6184), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5762), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(2923), [sym_preproc_endregion] = STATE(2923), [sym_preproc_line] = STATE(2923), @@ -465759,43 +465771,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2923), [sym_preproc_define] = STATE(2923), [sym_preproc_undef] = STATE(2923), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_RBRACK] = ACTIONS(4850), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4827), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465817,66 +465852,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2924), [sym_preproc_define] = STATE(2924), [sym_preproc_undef] = STATE(2924), - [sym__identifier_token] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym_alias] = ACTIONS(4852), - [anon_sym_global] = ACTIONS(4852), - [anon_sym_unsafe] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_event] = ACTIONS(4852), - [anon_sym_class] = ACTIONS(4852), - [anon_sym_ref] = ACTIONS(4852), - [anon_sym_struct] = ACTIONS(4852), - [anon_sym_enum] = ACTIONS(4852), - [anon_sym_interface] = ACTIONS(4852), - [anon_sym_delegate] = ACTIONS(4852), - [anon_sym_record] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_async] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_file] = ACTIONS(4852), - [anon_sym_fixed] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_new] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_partial] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_readonly] = ACTIONS(4852), - [anon_sym_required] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_notnull] = ACTIONS(4852), - [anon_sym_unmanaged] = ACTIONS(4852), - [anon_sym_TILDE] = ACTIONS(4854), - [anon_sym_implicit] = ACTIONS(4852), - [anon_sym_explicit] = ACTIONS(4852), - [anon_sym_scoped] = ACTIONS(4852), - [anon_sym_var] = ACTIONS(4852), - [sym_predefined_type] = ACTIONS(4852), - [anon_sym_yield] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_from] = ACTIONS(4852), - [anon_sym_into] = ACTIONS(4852), - [anon_sym_join] = ACTIONS(4852), - [anon_sym_on] = ACTIONS(4852), - [anon_sym_equals] = ACTIONS(4852), - [anon_sym_let] = ACTIONS(4852), - [anon_sym_orderby] = ACTIONS(4852), - [anon_sym_ascending] = ACTIONS(4852), - [anon_sym_descending] = ACTIONS(4852), - [anon_sym_group] = ACTIONS(4852), - [anon_sym_by] = ACTIONS(4852), - [anon_sym_select] = ACTIONS(4852), - [aux_sym_preproc_if_token1] = ACTIONS(4854), - [aux_sym_preproc_if_token3] = ACTIONS(4854), - [aux_sym_preproc_else_token1] = ACTIONS(4854), - [aux_sym_preproc_elif_token1] = ACTIONS(4854), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465889,6 +465924,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2925] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter] = STATE(6859), + [sym__parameter_array] = STATE(6861), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6181), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5765), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2925), [sym_preproc_endregion] = STATE(2925), [sym_preproc_line] = STATE(2925), @@ -465898,66 +465956,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2925), [sym_preproc_define] = STATE(2925), [sym_preproc_undef] = STATE(2925), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(3150), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_catch] = ACTIONS(3152), - [anon_sym_finally] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_and] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_from] = ACTIONS(3152), - [anon_sym_join] = ACTIONS(3152), - [anon_sym_on] = ACTIONS(3152), - [anon_sym_equals] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_orderby] = ACTIONS(3152), - [anon_sym_group] = ACTIONS(3152), - [anon_sym_by] = ACTIONS(3152), - [anon_sym_select] = ACTIONS(3152), - [anon_sym_as] = ACTIONS(3152), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3012), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465979,66 +466014,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2926), [sym_preproc_define] = STATE(2926), [sym_preproc_undef] = STATE(2926), - [sym__identifier_token] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_global] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_file] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_notnull] = ACTIONS(4220), - [anon_sym_unmanaged] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_scoped] = ACTIONS(4220), - [anon_sym_var] = ACTIONS(4220), - [anon_sym_yield] = ACTIONS(4220), - [anon_sym_switch] = ACTIONS(4293), - [anon_sym_when] = ACTIONS(4220), - [sym_discard] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4220), - [anon_sym_or] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_from] = ACTIONS(4220), - [anon_sym_into] = ACTIONS(4220), - [anon_sym_join] = ACTIONS(4220), - [anon_sym_on] = ACTIONS(4220), - [anon_sym_equals] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_orderby] = ACTIONS(4220), - [anon_sym_ascending] = ACTIONS(4220), - [anon_sym_descending] = ACTIONS(4220), - [anon_sym_group] = ACTIONS(4220), - [anon_sym_by] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4293), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4293), + [sym__identifier_token] = ACTIONS(4833), + [anon_sym_extern] = ACTIONS(4833), + [anon_sym_alias] = ACTIONS(4833), + [anon_sym_global] = ACTIONS(4833), + [anon_sym_unsafe] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_event] = ACTIONS(4833), + [anon_sym_class] = ACTIONS(4833), + [anon_sym_ref] = ACTIONS(4833), + [anon_sym_struct] = ACTIONS(4833), + [anon_sym_enum] = ACTIONS(4833), + [anon_sym_interface] = ACTIONS(4833), + [anon_sym_delegate] = ACTIONS(4833), + [anon_sym_record] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_async] = ACTIONS(4833), + [anon_sym_const] = ACTIONS(4833), + [anon_sym_file] = ACTIONS(4833), + [anon_sym_fixed] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_new] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_partial] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_readonly] = ACTIONS(4833), + [anon_sym_required] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_virtual] = ACTIONS(4833), + [anon_sym_volatile] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_notnull] = ACTIONS(4833), + [anon_sym_unmanaged] = ACTIONS(4833), + [anon_sym_TILDE] = ACTIONS(4835), + [anon_sym_implicit] = ACTIONS(4833), + [anon_sym_explicit] = ACTIONS(4833), + [anon_sym_scoped] = ACTIONS(4833), + [anon_sym_var] = ACTIONS(4833), + [sym_predefined_type] = ACTIONS(4833), + [anon_sym_yield] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_from] = ACTIONS(4833), + [anon_sym_into] = ACTIONS(4833), + [anon_sym_join] = ACTIONS(4833), + [anon_sym_on] = ACTIONS(4833), + [anon_sym_equals] = ACTIONS(4833), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_orderby] = ACTIONS(4833), + [anon_sym_ascending] = ACTIONS(4833), + [anon_sym_descending] = ACTIONS(4833), + [anon_sym_group] = ACTIONS(4833), + [anon_sym_by] = ACTIONS(4833), + [anon_sym_select] = ACTIONS(4833), + [aux_sym_preproc_if_token1] = ACTIONS(4835), + [aux_sym_preproc_if_token3] = ACTIONS(4835), + [aux_sym_preproc_else_token1] = ACTIONS(4835), + [aux_sym_preproc_elif_token1] = ACTIONS(4835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466060,66 +466095,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2927), [sym_preproc_define] = STATE(2927), [sym_preproc_undef] = STATE(2927), - [sym__identifier_token] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_alias] = ACTIONS(4856), - [anon_sym_global] = ACTIONS(4856), - [anon_sym_unsafe] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_event] = ACTIONS(4856), - [anon_sym_class] = ACTIONS(4856), - [anon_sym_ref] = ACTIONS(4856), - [anon_sym_struct] = ACTIONS(4856), - [anon_sym_enum] = ACTIONS(4856), - [anon_sym_interface] = ACTIONS(4856), - [anon_sym_delegate] = ACTIONS(4856), - [anon_sym_record] = ACTIONS(4856), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_async] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_file] = ACTIONS(4856), - [anon_sym_fixed] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_partial] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_readonly] = ACTIONS(4856), - [anon_sym_required] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_notnull] = ACTIONS(4856), - [anon_sym_unmanaged] = ACTIONS(4856), - [anon_sym_TILDE] = ACTIONS(4858), - [anon_sym_implicit] = ACTIONS(4856), - [anon_sym_explicit] = ACTIONS(4856), - [anon_sym_scoped] = ACTIONS(4856), - [anon_sym_var] = ACTIONS(4856), - [sym_predefined_type] = ACTIONS(4856), - [anon_sym_yield] = ACTIONS(4856), - [anon_sym_when] = ACTIONS(4856), - [anon_sym_from] = ACTIONS(4856), - [anon_sym_into] = ACTIONS(4856), - [anon_sym_join] = ACTIONS(4856), - [anon_sym_on] = ACTIONS(4856), - [anon_sym_equals] = ACTIONS(4856), - [anon_sym_let] = ACTIONS(4856), - [anon_sym_orderby] = ACTIONS(4856), - [anon_sym_ascending] = ACTIONS(4856), - [anon_sym_descending] = ACTIONS(4856), - [anon_sym_group] = ACTIONS(4856), - [anon_sym_by] = ACTIONS(4856), - [anon_sym_select] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4858), - [aux_sym_preproc_if_token3] = ACTIONS(4858), - [aux_sym_preproc_else_token1] = ACTIONS(4858), - [aux_sym_preproc_elif_token1] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_RPAREN] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_catch] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_and] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_join] = ACTIONS(3167), + [anon_sym_on] = ACTIONS(3167), + [anon_sym_equals] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_orderby] = ACTIONS(3167), + [anon_sym_group] = ACTIONS(3167), + [anon_sym_by] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466132,6 +466167,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2928] = { + [sym_attribute_list] = STATE(3570), + [sym__attribute_list] = STATE(3569), + [sym_modifier] = STATE(3734), + [sym_accessor_declaration] = STATE(3551), + [sym_identifier] = STATE(6456), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_attribute_list] = STATE(3570), [sym_preproc_region] = STATE(2928), [sym_preproc_endregion] = STATE(2928), [sym_preproc_line] = STATE(2928), @@ -466141,66 +466183,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2928), [sym_preproc_define] = STATE(2928), [sym_preproc_undef] = STATE(2928), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4194), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_from] = ACTIONS(4192), - [anon_sym_into] = ACTIONS(4192), - [anon_sym_join] = ACTIONS(4192), - [anon_sym_let] = ACTIONS(4192), - [anon_sym_orderby] = ACTIONS(4192), - [anon_sym_ascending] = ACTIONS(4192), - [anon_sym_descending] = ACTIONS(4192), - [anon_sym_group] = ACTIONS(4192), - [anon_sym_select] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3053), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3272), + [aux_sym_accessor_list_repeat1] = STATE(2930), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4787), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_static] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_abstract] = ACTIONS(4787), + [anon_sym_async] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_file] = ACTIONS(4793), + [anon_sym_fixed] = ACTIONS(4787), + [anon_sym_internal] = ACTIONS(4787), + [anon_sym_new] = ACTIONS(4787), + [anon_sym_override] = ACTIONS(4787), + [anon_sym_partial] = ACTIONS(4787), + [anon_sym_private] = ACTIONS(4787), + [anon_sym_protected] = ACTIONS(4787), + [anon_sym_public] = ACTIONS(4787), + [anon_sym_readonly] = ACTIONS(4787), + [anon_sym_required] = ACTIONS(4787), + [anon_sym_sealed] = ACTIONS(4787), + [anon_sym_virtual] = ACTIONS(4787), + [anon_sym_volatile] = ACTIONS(4787), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(4795), + [anon_sym_set] = ACTIONS(4795), + [anon_sym_add] = ACTIONS(4795), + [anon_sym_remove] = ACTIONS(4795), + [anon_sym_init] = ACTIONS(4795), + [anon_sym_scoped] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_when] = ACTIONS(29), + [anon_sym_from] = ACTIONS(29), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [aux_sym_preproc_if_token1] = ACTIONS(4797), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466222,66 +466257,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2929), [sym_preproc_define] = STATE(2929), [sym_preproc_undef] = STATE(2929), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_from] = ACTIONS(4184), - [anon_sym_into] = ACTIONS(4184), - [anon_sym_join] = ACTIONS(4184), - [anon_sym_let] = ACTIONS(4184), - [anon_sym_orderby] = ACTIONS(4184), - [anon_sym_ascending] = ACTIONS(4184), - [anon_sym_descending] = ACTIONS(4184), - [anon_sym_group] = ACTIONS(4184), - [anon_sym_select] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466294,6 +466329,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2930] = { + [sym_attribute_list] = STATE(3570), + [sym__attribute_list] = STATE(3569), + [sym_modifier] = STATE(3734), + [sym_accessor_declaration] = STATE(3551), + [sym_identifier] = STATE(6456), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_attribute_list] = STATE(3570), [sym_preproc_region] = STATE(2930), [sym_preproc_endregion] = STATE(2930), [sym_preproc_line] = STATE(2930), @@ -466303,66 +466345,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2930), [sym_preproc_define] = STATE(2930), [sym_preproc_undef] = STATE(2930), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4056), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3053), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3272), + [aux_sym_accessor_list_repeat1] = STATE(2930), + [sym__identifier_token] = ACTIONS(4841), + [anon_sym_extern] = ACTIONS(4844), + [anon_sym_alias] = ACTIONS(4847), + [anon_sym_global] = ACTIONS(4847), + [anon_sym_unsafe] = ACTIONS(4844), + [anon_sym_static] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_abstract] = ACTIONS(4844), + [anon_sym_async] = ACTIONS(4844), + [anon_sym_const] = ACTIONS(4844), + [anon_sym_file] = ACTIONS(4855), + [anon_sym_fixed] = ACTIONS(4844), + [anon_sym_internal] = ACTIONS(4844), + [anon_sym_new] = ACTIONS(4844), + [anon_sym_override] = ACTIONS(4844), + [anon_sym_partial] = ACTIONS(4844), + [anon_sym_private] = ACTIONS(4844), + [anon_sym_protected] = ACTIONS(4844), + [anon_sym_public] = ACTIONS(4844), + [anon_sym_readonly] = ACTIONS(4844), + [anon_sym_required] = ACTIONS(4844), + [anon_sym_sealed] = ACTIONS(4844), + [anon_sym_virtual] = ACTIONS(4844), + [anon_sym_volatile] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4847), + [anon_sym_notnull] = ACTIONS(4847), + [anon_sym_unmanaged] = ACTIONS(4847), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_add] = ACTIONS(4858), + [anon_sym_remove] = ACTIONS(4858), + [anon_sym_init] = ACTIONS(4858), + [anon_sym_scoped] = ACTIONS(4847), + [anon_sym_var] = ACTIONS(4847), + [anon_sym_yield] = ACTIONS(4847), + [anon_sym_when] = ACTIONS(4847), + [anon_sym_from] = ACTIONS(4847), + [anon_sym_into] = ACTIONS(4847), + [anon_sym_join] = ACTIONS(4847), + [anon_sym_on] = ACTIONS(4847), + [anon_sym_equals] = ACTIONS(4847), + [anon_sym_let] = ACTIONS(4847), + [anon_sym_orderby] = ACTIONS(4847), + [anon_sym_ascending] = ACTIONS(4847), + [anon_sym_descending] = ACTIONS(4847), + [anon_sym_group] = ACTIONS(4847), + [anon_sym_by] = ACTIONS(4847), + [anon_sym_select] = ACTIONS(4847), + [aux_sym_preproc_if_token1] = ACTIONS(4861), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466384,66 +466419,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2931), [sym_preproc_define] = STATE(2931), [sym_preproc_undef] = STATE(2931), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4864), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466465,66 +466500,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2932), [sym_preproc_define] = STATE(2932), [sym_preproc_undef] = STATE(2932), - [sym__identifier_token] = ACTIONS(4056), - [anon_sym_alias] = ACTIONS(4056), - [anon_sym_global] = ACTIONS(4056), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_file] = ACTIONS(4056), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_notnull] = ACTIONS(4056), - [anon_sym_unmanaged] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4864), - [anon_sym_scoped] = ACTIONS(4056), - [anon_sym_var] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_ascending] = ACTIONS(4056), - [anon_sym_descending] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4022), + [anon_sym_alias] = ACTIONS(4022), + [anon_sym_global] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_file] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4113), + [anon_sym_notnull] = ACTIONS(4022), + [anon_sym_unmanaged] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_scoped] = ACTIONS(4022), + [anon_sym_var] = ACTIONS(4022), + [anon_sym_yield] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_when] = ACTIONS(4022), + [sym_discard] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4022), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4022), + [anon_sym_into] = ACTIONS(4022), + [anon_sym_join] = ACTIONS(4022), + [anon_sym_on] = ACTIONS(4022), + [anon_sym_equals] = ACTIONS(4022), + [anon_sym_let] = ACTIONS(4022), + [anon_sym_orderby] = ACTIONS(4022), + [anon_sym_ascending] = ACTIONS(4022), + [anon_sym_descending] = ACTIONS(4022), + [anon_sym_group] = ACTIONS(4022), + [anon_sym_by] = ACTIONS(4022), + [anon_sym_select] = ACTIONS(4022), + [anon_sym_as] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4022), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4022), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466537,13 +466572,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2933] = { - [sym_attribute_list] = STATE(3565), - [sym__attribute_list] = STATE(3562), - [sym_modifier] = STATE(3702), - [sym_accessor_declaration] = STATE(3484), - [sym_identifier] = STATE(6491), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_attribute_list] = STATE(3565), [sym_preproc_region] = STATE(2933), [sym_preproc_endregion] = STATE(2933), [sym_preproc_line] = STATE(2933), @@ -466553,59 +466581,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2933), [sym_preproc_define] = STATE(2933), [sym_preproc_undef] = STATE(2933), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3056), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3314), - [aux_sym_accessor_list_repeat1] = STATE(2907), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4787), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4787), - [anon_sym_static] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4789), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_abstract] = ACTIONS(4787), - [anon_sym_async] = ACTIONS(4787), - [anon_sym_const] = ACTIONS(4787), - [anon_sym_file] = ACTIONS(4793), - [anon_sym_fixed] = ACTIONS(4787), - [anon_sym_internal] = ACTIONS(4787), - [anon_sym_new] = ACTIONS(4787), - [anon_sym_override] = ACTIONS(4787), - [anon_sym_partial] = ACTIONS(4787), - [anon_sym_private] = ACTIONS(4787), - [anon_sym_protected] = ACTIONS(4787), - [anon_sym_public] = ACTIONS(4787), - [anon_sym_readonly] = ACTIONS(4787), - [anon_sym_required] = ACTIONS(4787), - [anon_sym_sealed] = ACTIONS(4787), - [anon_sym_virtual] = ACTIONS(4787), - [anon_sym_volatile] = ACTIONS(4787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(4795), - [anon_sym_set] = ACTIONS(4795), - [anon_sym_add] = ACTIONS(4795), - [anon_sym_remove] = ACTIONS(4795), - [anon_sym_init] = ACTIONS(4795), - [anon_sym_scoped] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_when] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_where] = ACTIONS(4186), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_from] = ACTIONS(4186), + [anon_sym_into] = ACTIONS(4186), + [anon_sym_join] = ACTIONS(4186), + [anon_sym_let] = ACTIONS(4186), + [anon_sym_orderby] = ACTIONS(4186), + [anon_sym_ascending] = ACTIONS(4186), + [anon_sym_descending] = ACTIONS(4186), + [anon_sym_group] = ACTIONS(4186), + [anon_sym_select] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466627,65 +466662,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2934), [sym_preproc_define] = STATE(2934), [sym_preproc_undef] = STATE(2934), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_join] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_orderby] = ACTIONS(3664), - [anon_sym_group] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_select] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_where] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4235), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_from] = ACTIONS(4233), + [anon_sym_into] = ACTIONS(4233), + [anon_sym_join] = ACTIONS(4233), + [anon_sym_let] = ACTIONS(4233), + [anon_sym_orderby] = ACTIONS(4233), + [anon_sym_ascending] = ACTIONS(4233), + [anon_sym_descending] = ACTIONS(4233), + [anon_sym_group] = ACTIONS(4233), + [anon_sym_select] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4235), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466698,6 +466733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2935] = { + [sym_type_argument_list] = STATE(2991), [sym_preproc_region] = STATE(2935), [sym_preproc_endregion] = STATE(2935), [sym_preproc_line] = STATE(2935), @@ -466707,65 +466743,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2935), [sym_preproc_define] = STATE(2935), [sym_preproc_undef] = STATE(2935), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4206), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_from] = ACTIONS(4204), - [anon_sym_into] = ACTIONS(4204), - [anon_sym_join] = ACTIONS(4204), - [anon_sym_let] = ACTIONS(4204), - [anon_sym_orderby] = ACTIONS(4204), - [anon_sym_ascending] = ACTIONS(4204), - [anon_sym_descending] = ACTIONS(4204), - [anon_sym_group] = ACTIONS(4204), - [anon_sym_select] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466787,65 +466822,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2936), [sym_preproc_define] = STATE(2936), [sym_preproc_undef] = STATE(2936), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_where] = ACTIONS(4166), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4168), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_from] = ACTIONS(4166), - [anon_sym_into] = ACTIONS(4166), - [anon_sym_join] = ACTIONS(4166), - [anon_sym_let] = ACTIONS(4166), - [anon_sym_orderby] = ACTIONS(4166), - [anon_sym_ascending] = ACTIONS(4166), - [anon_sym_descending] = ACTIONS(4166), - [anon_sym_group] = ACTIONS(4166), - [anon_sym_select] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4168), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_LT] = ACTIONS(4170), + [anon_sym_GT_GT] = ACTIONS(4170), + [anon_sym_GT_GT_GT] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_or] = ACTIONS(4170), + [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_AMP_EQ] = ACTIONS(4168), + [anon_sym_CARET_EQ] = ACTIONS(4168), + [anon_sym_PIPE_EQ] = ACTIONS(4168), + [anon_sym_LT_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_QMARK_QMARK] = ACTIONS(4170), + [anon_sym_from] = ACTIONS(4168), + [anon_sym_into] = ACTIONS(4168), + [anon_sym_join] = ACTIONS(4168), + [anon_sym_let] = ACTIONS(4168), + [anon_sym_orderby] = ACTIONS(4168), + [anon_sym_ascending] = ACTIONS(4168), + [anon_sym_descending] = ACTIONS(4168), + [anon_sym_group] = ACTIONS(4168), + [anon_sym_select] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_is] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_with] = ACTIONS(4168), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466858,7 +466893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2937] = { - [sym_initializer_expression] = STATE(3005), [sym_preproc_region] = STATE(2937), [sym_preproc_endregion] = STATE(2937), [sym_preproc_line] = STATE(2937), @@ -466868,64 +466902,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2937), [sym_preproc_define] = STATE(2937), [sym_preproc_undef] = STATE(2937), - [anon_sym_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4870), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_from] = ACTIONS(4190), + [anon_sym_into] = ACTIONS(4190), + [anon_sym_join] = ACTIONS(4190), + [anon_sym_let] = ACTIONS(4190), + [anon_sym_orderby] = ACTIONS(4190), + [anon_sym_ascending] = ACTIONS(4190), + [anon_sym_descending] = ACTIONS(4190), + [anon_sym_group] = ACTIONS(4190), + [anon_sym_select] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466938,7 +466973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2938] = { - [sym_initializer_expression] = STATE(3023), [sym_preproc_region] = STATE(2938), [sym_preproc_endregion] = STATE(2938), [sym_preproc_line] = STATE(2938), @@ -466948,64 +466982,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2938), [sym_preproc_define] = STATE(2938), [sym_preproc_undef] = STATE(2938), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4872), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RBRACK] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_QMARK] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_CARET] = ACTIONS(4872), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4872), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_GT_GT_GT] = ACTIONS(4872), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_EQ_GT] = ACTIONS(4872), - [anon_sym_switch] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_and] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4872), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_QMARK_QMARK] = ACTIONS(4872), - [anon_sym_from] = ACTIONS(4872), - [anon_sym_into] = ACTIONS(4872), - [anon_sym_join] = ACTIONS(4872), - [anon_sym_on] = ACTIONS(4872), - [anon_sym_equals] = ACTIONS(4872), - [anon_sym_let] = ACTIONS(4872), - [anon_sym_orderby] = ACTIONS(4872), - [anon_sym_group] = ACTIONS(4872), - [anon_sym_by] = ACTIONS(4872), - [anon_sym_select] = ACTIONS(4872), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [anon_sym_with] = ACTIONS(4872), - [aux_sym_preproc_if_token3] = ACTIONS(4872), - [aux_sym_preproc_else_token1] = ACTIONS(4872), - [aux_sym_preproc_elif_token1] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4300), + [anon_sym_GT] = ACTIONS(4300), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_SLASH] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4300), + [anon_sym_GT_GT] = ACTIONS(4300), + [anon_sym_GT_GT_GT] = ACTIONS(4300), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4303), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_QMARK_QMARK] = ACTIONS(4300), + [anon_sym_from] = ACTIONS(4295), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_join] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4295), + [anon_sym_orderby] = ACTIONS(4295), + [anon_sym_ascending] = ACTIONS(4295), + [anon_sym_descending] = ACTIONS(4295), + [anon_sym_group] = ACTIONS(4295), + [anon_sym_select] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4300), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [anon_sym_with] = ACTIONS(4297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467018,6 +467053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2939] = { + [sym_initializer_expression] = STATE(3099), [sym_preproc_region] = STATE(2939), [sym_preproc_endregion] = STATE(2939), [sym_preproc_line] = STATE(2939), @@ -467027,65 +467063,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2939), [sym_preproc_define] = STATE(2939), [sym_preproc_undef] = STATE(2939), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_into] = ACTIONS(3628), - [anon_sym_join] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_orderby] = ACTIONS(3628), - [anon_sym_group] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_select] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3628), - [anon_sym_is] = ACTIONS(3628), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4871), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_CARET] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_GT_GT_GT] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_EQ_GT] = ACTIONS(4871), + [anon_sym_switch] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_and] = ACTIONS(4871), + [anon_sym_or] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_QMARK_QMARK] = ACTIONS(4871), + [anon_sym_from] = ACTIONS(4871), + [anon_sym_into] = ACTIONS(4871), + [anon_sym_join] = ACTIONS(4871), + [anon_sym_on] = ACTIONS(4871), + [anon_sym_equals] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4871), + [anon_sym_orderby] = ACTIONS(4871), + [anon_sym_group] = ACTIONS(4871), + [anon_sym_by] = ACTIONS(4871), + [anon_sym_select] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_DASH_GT] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), + [aux_sym_preproc_if_token3] = ACTIONS(4871), + [aux_sym_preproc_else_token1] = ACTIONS(4871), + [aux_sym_preproc_elif_token1] = ACTIONS(4871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467098,6 +467133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2940] = { + [sym_argument_list] = STATE(3081), + [sym_bracketed_argument_list] = STATE(2469), [sym_preproc_region] = STATE(2940), [sym_preproc_endregion] = STATE(2940), [sym_preproc_line] = STATE(2940), @@ -467107,65 +467144,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2940), [sym_preproc_define] = STATE(2940), [sym_preproc_undef] = STATE(2940), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4216), - [anon_sym_COMMA] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PLUS_PLUS] = ACTIONS(4216), - [anon_sym_DASH_DASH] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_LT] = ACTIONS(4218), - [anon_sym_GT_GT] = ACTIONS(4218), - [anon_sym_GT_GT_GT] = ACTIONS(4218), - [anon_sym_EQ_EQ] = ACTIONS(4216), - [anon_sym_BANG_EQ] = ACTIONS(4216), - [anon_sym_GT_EQ] = ACTIONS(4216), - [anon_sym_LT_EQ] = ACTIONS(4216), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_DOT_DOT] = ACTIONS(4216), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4218), - [anon_sym_PLUS_EQ] = ACTIONS(4216), - [anon_sym_DASH_EQ] = ACTIONS(4216), - [anon_sym_STAR_EQ] = ACTIONS(4216), - [anon_sym_SLASH_EQ] = ACTIONS(4216), - [anon_sym_PERCENT_EQ] = ACTIONS(4216), - [anon_sym_AMP_EQ] = ACTIONS(4216), - [anon_sym_CARET_EQ] = ACTIONS(4216), - [anon_sym_PIPE_EQ] = ACTIONS(4216), - [anon_sym_LT_LT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_QMARK_QMARK] = ACTIONS(4218), - [anon_sym_from] = ACTIONS(4216), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4216), - [anon_sym_descending] = ACTIONS(4216), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4218), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4216), - [anon_sym_with] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4879), + [anon_sym_where] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_PLUS_PLUS] = ACTIONS(4883), + [anon_sym_DASH_DASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_PERCENT] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4875), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_GT_GT_GT] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4875), + [anon_sym_switch] = ACTIONS(4875), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_and] = ACTIONS(4875), + [anon_sym_or] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_QMARK_QMARK] = ACTIONS(4875), + [anon_sym_from] = ACTIONS(4875), + [anon_sym_into] = ACTIONS(4875), + [anon_sym_join] = ACTIONS(4875), + [anon_sym_on] = ACTIONS(4875), + [anon_sym_equals] = ACTIONS(4875), + [anon_sym_let] = ACTIONS(4875), + [anon_sym_orderby] = ACTIONS(4875), + [anon_sym_group] = ACTIONS(4875), + [anon_sym_by] = ACTIONS(4875), + [anon_sym_select] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4875), + [aux_sym_preproc_if_token3] = ACTIONS(4875), + [aux_sym_preproc_else_token1] = ACTIONS(4875), + [aux_sym_preproc_elif_token1] = ACTIONS(4875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467178,8 +467213,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2941] = { - [sym_argument_list] = STATE(3025), - [sym_bracketed_argument_list] = STATE(2455), + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter] = STATE(6832), + [sym__parameter_array] = STATE(6842), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6181), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5765), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(2941), [sym_preproc_endregion] = STATE(2941), [sym_preproc_line] = STATE(2941), @@ -467189,63 +467245,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2941), [sym_preproc_define] = STATE(2941), [sym_preproc_undef] = STATE(2941), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4880), - [anon_sym_GT] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4880), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_CARET] = ACTIONS(4876), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LT_LT] = ACTIONS(4876), - [anon_sym_GT_GT] = ACTIONS(4880), - [anon_sym_GT_GT_GT] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_EQ_GT] = ACTIONS(4876), - [anon_sym_switch] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_and] = ACTIONS(4876), - [anon_sym_or] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_QMARK_QMARK] = ACTIONS(4876), - [anon_sym_from] = ACTIONS(4876), - [anon_sym_into] = ACTIONS(4876), - [anon_sym_join] = ACTIONS(4876), - [anon_sym_on] = ACTIONS(4876), - [anon_sym_equals] = ACTIONS(4876), - [anon_sym_let] = ACTIONS(4876), - [anon_sym_orderby] = ACTIONS(4876), - [anon_sym_group] = ACTIONS(4876), - [anon_sym_by] = ACTIONS(4876), - [anon_sym_select] = ACTIONS(4876), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4876), - [aux_sym_preproc_if_token3] = ACTIONS(4876), - [aux_sym_preproc_else_token1] = ACTIONS(4876), - [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3012), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3544), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(1139), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467258,7 +467293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2942] = { - [sym_initializer_expression] = STATE(3018), + [sym_argument_list] = STATE(3081), + [sym_bracketed_argument_list] = STATE(2469), [sym_preproc_region] = STATE(2942), [sym_preproc_endregion] = STATE(2942), [sym_preproc_line] = STATE(2942), @@ -467268,64 +467304,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2942), [sym_preproc_define] = STATE(2942), [sym_preproc_undef] = STATE(2942), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_COLON] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4887), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_PLUS_PLUS] = ACTIONS(4883), + [anon_sym_DASH_DASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4887), + [anon_sym_GT_GT_GT] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_GT_EQ] = ACTIONS(4885), + [anon_sym_LT_EQ] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4885), + [anon_sym_switch] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4885), + [anon_sym_and] = ACTIONS(4885), + [anon_sym_or] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_QMARK_QMARK] = ACTIONS(4885), + [anon_sym_from] = ACTIONS(4885), + [anon_sym_into] = ACTIONS(4885), + [anon_sym_join] = ACTIONS(4885), + [anon_sym_on] = ACTIONS(4885), + [anon_sym_equals] = ACTIONS(4885), + [anon_sym_let] = ACTIONS(4885), + [anon_sym_orderby] = ACTIONS(4885), + [anon_sym_group] = ACTIONS(4885), + [anon_sym_by] = ACTIONS(4885), + [anon_sym_select] = ACTIONS(4885), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4885), + [aux_sym_preproc_if_token3] = ACTIONS(4885), + [aux_sym_preproc_else_token1] = ACTIONS(4885), + [aux_sym_preproc_elif_token1] = ACTIONS(4885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467338,6 +467373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2943] = { + [sym_initializer_expression] = STATE(3063), [sym_preproc_region] = STATE(2943), [sym_preproc_endregion] = STATE(2943), [sym_preproc_line] = STATE(2943), @@ -467347,65 +467383,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2943), [sym_preproc_define] = STATE(2943), [sym_preproc_undef] = STATE(2943), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_where] = ACTIONS(4237), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4239), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_from] = ACTIONS(4237), - [anon_sym_into] = ACTIONS(4237), - [anon_sym_join] = ACTIONS(4237), - [anon_sym_let] = ACTIONS(4237), - [anon_sym_orderby] = ACTIONS(4237), - [anon_sym_ascending] = ACTIONS(4237), - [anon_sym_descending] = ACTIONS(4237), - [anon_sym_group] = ACTIONS(4237), - [anon_sym_select] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4239), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4894), + [anon_sym_where] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4889), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_GT_GT_GT] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_GT_EQ] = ACTIONS(4889), + [anon_sym_LT_EQ] = ACTIONS(4889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_EQ_GT] = ACTIONS(4889), + [anon_sym_switch] = ACTIONS(4889), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_and] = ACTIONS(4889), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_QMARK_QMARK] = ACTIONS(4889), + [anon_sym_from] = ACTIONS(4889), + [anon_sym_into] = ACTIONS(4889), + [anon_sym_join] = ACTIONS(4889), + [anon_sym_on] = ACTIONS(4889), + [anon_sym_equals] = ACTIONS(4889), + [anon_sym_let] = ACTIONS(4889), + [anon_sym_orderby] = ACTIONS(4889), + [anon_sym_group] = ACTIONS(4889), + [anon_sym_by] = ACTIONS(4889), + [anon_sym_select] = ACTIONS(4889), + [anon_sym_as] = ACTIONS(4889), + [anon_sym_is] = ACTIONS(4889), + [anon_sym_DASH_GT] = ACTIONS(4889), + [anon_sym_with] = ACTIONS(4889), + [aux_sym_preproc_if_token3] = ACTIONS(4889), + [aux_sym_preproc_else_token1] = ACTIONS(4889), + [aux_sym_preproc_elif_token1] = ACTIONS(4889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467418,7 +467453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2944] = { - [sym_type_argument_list] = STATE(2954), [sym_preproc_region] = STATE(2944), [sym_preproc_endregion] = STATE(2944), [sym_preproc_line] = STATE(2944), @@ -467428,64 +467462,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2944), [sym_preproc_define] = STATE(2944), [sym_preproc_undef] = STATE(2944), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3731), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3716), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3731), + [anon_sym_into] = ACTIONS(3731), + [anon_sym_join] = ACTIONS(3731), + [anon_sym_let] = ACTIONS(3731), + [anon_sym_orderby] = ACTIONS(3731), + [anon_sym_ascending] = ACTIONS(3731), + [anon_sym_descending] = ACTIONS(3731), + [anon_sym_group] = ACTIONS(3731), + [anon_sym_select] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467498,8 +467533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2945] = { - [sym_argument_list] = STATE(3025), - [sym_bracketed_argument_list] = STATE(2455), [sym_preproc_region] = STATE(2945), [sym_preproc_endregion] = STATE(2945), [sym_preproc_line] = STATE(2945), @@ -467509,63 +467542,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2945), [sym_preproc_define] = STATE(2945), [sym_preproc_undef] = STATE(2945), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4898), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_CARET] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4896), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_GT_GT_GT] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_EQ_GT] = ACTIONS(4896), - [anon_sym_switch] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_and] = ACTIONS(4896), - [anon_sym_or] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_QMARK_QMARK] = ACTIONS(4896), - [anon_sym_from] = ACTIONS(4896), - [anon_sym_into] = ACTIONS(4896), - [anon_sym_join] = ACTIONS(4896), - [anon_sym_on] = ACTIONS(4896), - [anon_sym_equals] = ACTIONS(4896), - [anon_sym_let] = ACTIONS(4896), - [anon_sym_orderby] = ACTIONS(4896), - [anon_sym_group] = ACTIONS(4896), - [anon_sym_by] = ACTIONS(4896), - [anon_sym_select] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4896), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4896), - [aux_sym_preproc_if_token3] = ACTIONS(4896), - [aux_sym_preproc_else_token1] = ACTIONS(4896), - [aux_sym_preproc_elif_token1] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_where] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4215), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_from] = ACTIONS(4213), + [anon_sym_into] = ACTIONS(4213), + [anon_sym_join] = ACTIONS(4213), + [anon_sym_let] = ACTIONS(4213), + [anon_sym_orderby] = ACTIONS(4213), + [anon_sym_ascending] = ACTIONS(4213), + [anon_sym_descending] = ACTIONS(4213), + [anon_sym_group] = ACTIONS(4213), + [anon_sym_select] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4215), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467587,65 +467622,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2946), [sym_preproc_define] = STATE(2946), [sym_preproc_undef] = STATE(2946), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4186), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_ascending] = ACTIONS(4188), - [anon_sym_descending] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4186), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_where] = ACTIONS(3630), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3630), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_into] = ACTIONS(3630), + [anon_sym_join] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_equals] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_orderby] = ACTIONS(3630), + [anon_sym_group] = ACTIONS(3630), + [anon_sym_by] = ACTIONS(3630), + [anon_sym_select] = ACTIONS(3630), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_is] = ACTIONS(3630), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467658,8 +467693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2947] = { - [sym_argument_list] = STATE(3025), - [sym_bracketed_argument_list] = STATE(2455), [sym_preproc_region] = STATE(2947), [sym_preproc_endregion] = STATE(2947), [sym_preproc_line] = STATE(2947), @@ -467669,63 +467702,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2947), [sym_preproc_define] = STATE(2947), [sym_preproc_undef] = STATE(2947), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_COLON] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_RBRACK] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_where] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4900), [anon_sym_PERCENT] = ACTIONS(4900), [anon_sym_CARET] = ACTIONS(4900), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), [anon_sym_LT_LT] = ACTIONS(4900), - [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4900), [anon_sym_GT_GT_GT] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_EQ_GT] = ACTIONS(4900), - [anon_sym_switch] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_and] = ACTIONS(4900), - [anon_sym_or] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_AMP_EQ] = ACTIONS(4902), + [anon_sym_CARET_EQ] = ACTIONS(4902), + [anon_sym_PIPE_EQ] = ACTIONS(4902), + [anon_sym_LT_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_GT_EQ] = ACTIONS(4902), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4902), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), [anon_sym_QMARK_QMARK] = ACTIONS(4900), - [anon_sym_from] = ACTIONS(4900), - [anon_sym_into] = ACTIONS(4900), - [anon_sym_join] = ACTIONS(4900), - [anon_sym_on] = ACTIONS(4900), - [anon_sym_equals] = ACTIONS(4900), - [anon_sym_let] = ACTIONS(4900), - [anon_sym_orderby] = ACTIONS(4900), - [anon_sym_group] = ACTIONS(4900), - [anon_sym_by] = ACTIONS(4900), - [anon_sym_select] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_ascending] = ACTIONS(4898), + [anon_sym_descending] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), [anon_sym_as] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4900), - [aux_sym_preproc_if_token3] = ACTIONS(4900), - [aux_sym_preproc_else_token1] = ACTIONS(4900), - [aux_sym_preproc_elif_token1] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467747,65 +467782,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2948), [sym_preproc_define] = STATE(2948), [sym_preproc_undef] = STATE(2948), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3717), - [anon_sym_into] = ACTIONS(3717), - [anon_sym_join] = ACTIONS(3717), - [anon_sym_let] = ACTIONS(3717), - [anon_sym_orderby] = ACTIONS(3717), - [anon_sym_ascending] = ACTIONS(3717), - [anon_sym_descending] = ACTIONS(3717), - [anon_sym_group] = ACTIONS(3717), - [anon_sym_select] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_where] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4227), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_from] = ACTIONS(4225), + [anon_sym_into] = ACTIONS(4225), + [anon_sym_join] = ACTIONS(4225), + [anon_sym_let] = ACTIONS(4225), + [anon_sym_orderby] = ACTIONS(4225), + [anon_sym_ascending] = ACTIONS(4225), + [anon_sym_descending] = ACTIONS(4225), + [anon_sym_group] = ACTIONS(4225), + [anon_sym_select] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4227), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467818,29 +467853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2949] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter] = STATE(6903), - [sym__parameter_array] = STATE(6906), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6184), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5762), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), + [sym_initializer_expression] = STATE(3046), [sym_preproc_region] = STATE(2949), [sym_preproc_endregion] = STATE(2949), [sym_preproc_line] = STATE(2949), @@ -467850,42 +467863,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2949), [sym_preproc_define] = STATE(2949), [sym_preproc_undef] = STATE(2949), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3548), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(1131), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_GT_GT_GT] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_EQ_GT] = ACTIONS(4904), + [anon_sym_switch] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_and] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_QMARK_QMARK] = ACTIONS(4904), + [anon_sym_from] = ACTIONS(4904), + [anon_sym_into] = ACTIONS(4904), + [anon_sym_join] = ACTIONS(4904), + [anon_sym_on] = ACTIONS(4904), + [anon_sym_equals] = ACTIONS(4904), + [anon_sym_let] = ACTIONS(4904), + [anon_sym_orderby] = ACTIONS(4904), + [anon_sym_group] = ACTIONS(4904), + [anon_sym_by] = ACTIONS(4904), + [anon_sym_select] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_with] = ACTIONS(4904), + [aux_sym_preproc_if_token3] = ACTIONS(4904), + [aux_sym_preproc_else_token1] = ACTIONS(4904), + [aux_sym_preproc_elif_token1] = ACTIONS(4904), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467898,6 +467933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2950] = { + [sym_argument_list] = STATE(3081), + [sym_bracketed_argument_list] = STATE(2469), [sym_preproc_region] = STATE(2950), [sym_preproc_endregion] = STATE(2950), [sym_preproc_line] = STATE(2950), @@ -467907,65 +467944,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2950), [sym_preproc_define] = STATE(2950), [sym_preproc_undef] = STATE(2950), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_PLUS_PLUS] = ACTIONS(4883), + [anon_sym_DASH_DASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4910), [anon_sym_PERCENT] = ACTIONS(4908), [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4910), [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_AMP_EQ] = ACTIONS(4910), - [anon_sym_CARET_EQ] = ACTIONS(4910), - [anon_sym_PIPE_EQ] = ACTIONS(4910), - [anon_sym_LT_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_GT_EQ] = ACTIONS(4910), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4910), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4908), + [anon_sym_switch] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_and] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), + [anon_sym_from] = ACTIONS(4908), + [anon_sym_into] = ACTIONS(4908), + [anon_sym_join] = ACTIONS(4908), + [anon_sym_on] = ACTIONS(4908), + [anon_sym_equals] = ACTIONS(4908), + [anon_sym_let] = ACTIONS(4908), + [anon_sym_orderby] = ACTIONS(4908), + [anon_sym_group] = ACTIONS(4908), + [anon_sym_by] = ACTIONS(4908), + [anon_sym_select] = ACTIONS(4908), [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4801), + [anon_sym_with] = ACTIONS(4908), + [aux_sym_preproc_if_token3] = ACTIONS(4908), + [aux_sym_preproc_else_token1] = ACTIONS(4908), + [aux_sym_preproc_elif_token1] = ACTIONS(4908), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468067,65 +468102,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2952), [sym_preproc_define] = STATE(2952), [sym_preproc_undef] = STATE(2952), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3723), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3731), - [anon_sym_or] = ACTIONS(3723), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_from] = ACTIONS(3731), - [anon_sym_into] = ACTIONS(3731), - [anon_sym_join] = ACTIONS(3731), - [anon_sym_let] = ACTIONS(3731), - [anon_sym_orderby] = ACTIONS(3731), - [anon_sym_ascending] = ACTIONS(3731), - [anon_sym_descending] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3723), - [anon_sym_is] = ACTIONS(3731), - [anon_sym_DASH_GT] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_join] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_orderby] = ACTIONS(3664), + [anon_sym_group] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_select] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468147,65 +468182,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2953), [sym_preproc_define] = STATE(2953), [sym_preproc_undef] = STATE(2953), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4351), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4351), - [anon_sym_EQ_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_switch] = ACTIONS(4348), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4354), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_QMARK_QMARK] = ACTIONS(4351), - [anon_sym_from] = ACTIONS(4346), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_join] = ACTIONS(4346), - [anon_sym_let] = ACTIONS(4346), - [anon_sym_orderby] = ACTIONS(4346), - [anon_sym_ascending] = ACTIONS(4346), - [anon_sym_descending] = ACTIONS(4346), - [anon_sym_group] = ACTIONS(4346), - [anon_sym_select] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4351), - [anon_sym_is] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4348), - [anon_sym_with] = ACTIONS(4348), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_where] = ACTIONS(3709), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_switch] = ACTIONS(3709), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3709), + [anon_sym_or] = ACTIONS(3701), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_from] = ACTIONS(3709), + [anon_sym_into] = ACTIONS(3709), + [anon_sym_join] = ACTIONS(3709), + [anon_sym_let] = ACTIONS(3709), + [anon_sym_orderby] = ACTIONS(3709), + [anon_sym_ascending] = ACTIONS(3709), + [anon_sym_descending] = ACTIONS(3709), + [anon_sym_group] = ACTIONS(3709), + [anon_sym_select] = ACTIONS(3709), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_is] = ACTIONS(3709), + [anon_sym_DASH_GT] = ACTIONS(3709), + [anon_sym_with] = ACTIONS(3709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468227,64 +468262,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2954), [sym_preproc_define] = STATE(2954), [sym_preproc_undef] = STATE(2954), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3670), - [anon_sym_where] = ACTIONS(3672), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3672), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_join] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_orderby] = ACTIONS(3672), - [anon_sym_group] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_select] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4032), + [anon_sym_or] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_from] = ACTIONS(4032), + [anon_sym_into] = ACTIONS(4032), + [anon_sym_join] = ACTIONS(4032), + [anon_sym_on] = ACTIONS(4032), + [anon_sym_equals] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_orderby] = ACTIONS(4032), + [anon_sym_group] = ACTIONS(4032), + [anon_sym_by] = ACTIONS(4032), + [anon_sym_select] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_is] = ACTIONS(4032), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4032), + [aux_sym_preproc_if_token3] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468306,64 +468341,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2955), [sym_preproc_define] = STATE(2955), [sym_preproc_undef] = STATE(2955), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4045), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_switch] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4045), - [anon_sym_or] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_from] = ACTIONS(4045), - [anon_sym_into] = ACTIONS(4045), - [anon_sym_join] = ACTIONS(4045), - [anon_sym_on] = ACTIONS(4045), - [anon_sym_equals] = ACTIONS(4045), - [anon_sym_let] = ACTIONS(4045), - [anon_sym_orderby] = ACTIONS(4045), - [anon_sym_group] = ACTIONS(4045), - [anon_sym_by] = ACTIONS(4045), - [anon_sym_select] = ACTIONS(4045), - [anon_sym_as] = ACTIONS(4045), - [anon_sym_is] = ACTIONS(4045), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4045), - [aux_sym_preproc_if_token3] = ACTIONS(4045), - [aux_sym_preproc_else_token1] = ACTIONS(4045), - [aux_sym_preproc_elif_token1] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_AMP_EQ] = ACTIONS(4914), + [anon_sym_CARET_EQ] = ACTIONS(4914), + [anon_sym_PIPE_EQ] = ACTIONS(4914), + [anon_sym_LT_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_GT_EQ] = ACTIONS(4914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4914), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_ascending] = ACTIONS(4898), + [anon_sym_descending] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468376,6 +468411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2956] = { + [sym_initializer_expression] = STATE(3107), [sym_preproc_region] = STATE(2956), [sym_preproc_endregion] = STATE(2956), [sym_preproc_line] = STATE(2956), @@ -468385,64 +468421,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2956), [sym_preproc_define] = STATE(2956), [sym_preproc_undef] = STATE(2956), - [anon_sym_SEMI] = ACTIONS(4912), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_COLON] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4912), - [anon_sym_RBRACK] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4912), - [anon_sym_RPAREN] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4912), - [anon_sym_RBRACE] = ACTIONS(4912), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4914), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_QMARK] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4912), - [anon_sym_DASH_DASH] = ACTIONS(4912), - [anon_sym_PLUS] = ACTIONS(4914), - [anon_sym_DASH] = ACTIONS(4914), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4914), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_CARET] = ACTIONS(4912), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4912), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_GT_GT_GT] = ACTIONS(4912), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_GT_EQ] = ACTIONS(4912), - [anon_sym_LT_EQ] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4914), - [anon_sym_EQ_GT] = ACTIONS(4912), - [anon_sym_switch] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4912), - [anon_sym_and] = ACTIONS(4912), - [anon_sym_or] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_PIPE_PIPE] = ACTIONS(4912), - [anon_sym_QMARK_QMARK] = ACTIONS(4912), - [anon_sym_from] = ACTIONS(4912), - [anon_sym_into] = ACTIONS(4912), - [anon_sym_join] = ACTIONS(4912), - [anon_sym_on] = ACTIONS(4912), - [anon_sym_equals] = ACTIONS(4912), - [anon_sym_let] = ACTIONS(4912), - [anon_sym_orderby] = ACTIONS(4912), - [anon_sym_group] = ACTIONS(4912), - [anon_sym_by] = ACTIONS(4912), - [anon_sym_select] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4912), - [anon_sym_with] = ACTIONS(4912), - [aux_sym_preproc_if_token3] = ACTIONS(4912), - [aux_sym_preproc_else_token1] = ACTIONS(4912), - [aux_sym_preproc_elif_token1] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_GT_GT_GT] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_EQ_GT] = ACTIONS(4920), + [anon_sym_switch] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_and] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_QMARK_QMARK] = ACTIONS(4920), + [anon_sym_from] = ACTIONS(4920), + [anon_sym_join] = ACTIONS(4920), + [anon_sym_on] = ACTIONS(4920), + [anon_sym_equals] = ACTIONS(4920), + [anon_sym_let] = ACTIONS(4920), + [anon_sym_orderby] = ACTIONS(4920), + [anon_sym_group] = ACTIONS(4920), + [anon_sym_by] = ACTIONS(4920), + [anon_sym_select] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_with] = ACTIONS(4920), + [aux_sym_preproc_if_token3] = ACTIONS(4920), + [aux_sym_preproc_else_token1] = ACTIONS(4920), + [aux_sym_preproc_elif_token1] = ACTIONS(4920), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468464,64 +468499,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2957), [sym_preproc_define] = STATE(2957), [sym_preproc_undef] = STATE(2957), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4916), - [anon_sym_COLON] = ACTIONS(4916), - [anon_sym_COMMA] = ACTIONS(4916), - [anon_sym_RBRACK] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(4918), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_GT_GT_GT] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_GT_EQ] = ACTIONS(4916), - [anon_sym_LT_EQ] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_EQ_GT] = ACTIONS(4916), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_and] = ACTIONS(4916), - [anon_sym_or] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_QMARK_QMARK] = ACTIONS(4916), - [anon_sym_from] = ACTIONS(4916), - [anon_sym_into] = ACTIONS(4916), - [anon_sym_join] = ACTIONS(4916), - [anon_sym_on] = ACTIONS(4916), - [anon_sym_equals] = ACTIONS(4916), - [anon_sym_let] = ACTIONS(4916), - [anon_sym_orderby] = ACTIONS(4916), - [anon_sym_group] = ACTIONS(4916), - [anon_sym_by] = ACTIONS(4916), - [anon_sym_select] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_with] = ACTIONS(4916), - [aux_sym_preproc_if_token3] = ACTIONS(4916), - [aux_sym_preproc_else_token1] = ACTIONS(4916), - [aux_sym_preproc_elif_token1] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_in] = ACTIONS(3697), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_switch] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3699), + [anon_sym_into] = ACTIONS(3699), + [anon_sym_join] = ACTIONS(3699), + [anon_sym_on] = ACTIONS(3699), + [anon_sym_equals] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_orderby] = ACTIONS(3699), + [anon_sym_group] = ACTIONS(3699), + [anon_sym_by] = ACTIONS(3699), + [anon_sym_select] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_is] = ACTIONS(3699), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [aux_sym_preproc_if_token3] = ACTIONS(3699), + [aux_sym_preproc_else_token1] = ACTIONS(3699), + [aux_sym_preproc_elif_token1] = ACTIONS(3699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468543,64 +468578,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2958), [sym_preproc_define] = STATE(2958), [sym_preproc_undef] = STATE(2958), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_where] = ACTIONS(3945), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_switch] = ACTIONS(3945), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3945), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3945), - [anon_sym_into] = ACTIONS(3945), - [anon_sym_join] = ACTIONS(3945), - [anon_sym_on] = ACTIONS(3945), - [anon_sym_equals] = ACTIONS(3945), - [anon_sym_let] = ACTIONS(3945), - [anon_sym_orderby] = ACTIONS(3945), - [anon_sym_group] = ACTIONS(3945), - [anon_sym_by] = ACTIONS(3945), - [anon_sym_select] = ACTIONS(3945), - [anon_sym_as] = ACTIONS(3945), - [anon_sym_is] = ACTIONS(3945), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3945), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_RBRACE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_in] = ACTIONS(4935), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_EQ_GT] = ACTIONS(4933), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_from] = ACTIONS(4933), + [anon_sym_into] = ACTIONS(4933), + [anon_sym_join] = ACTIONS(4933), + [anon_sym_on] = ACTIONS(4933), + [anon_sym_equals] = ACTIONS(4933), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_orderby] = ACTIONS(4933), + [anon_sym_group] = ACTIONS(4933), + [anon_sym_by] = ACTIONS(4933), + [anon_sym_select] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), + [aux_sym_preproc_if_token3] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4933), + [aux_sym_preproc_elif_token1] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468622,64 +468657,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2959), [sym_preproc_define] = STATE(2959), [sym_preproc_undef] = STATE(2959), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4007), - [anon_sym_into] = ACTIONS(4007), - [anon_sym_join] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_orderby] = ACTIONS(4007), - [anon_sym_group] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_where] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_into] = ACTIONS(3686), + [anon_sym_join] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_orderby] = ACTIONS(3686), + [anon_sym_group] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_select] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468692,6 +468727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2960] = { + [sym_preproc_else_in_attribute_list] = STATE(7596), + [sym_preproc_elif_in_attribute_list] = STATE(7596), [sym_preproc_region] = STATE(2960), [sym_preproc_endregion] = STATE(2960), [sym_preproc_line] = STATE(2960), @@ -468701,64 +468738,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2960), [sym_preproc_define] = STATE(2960), [sym_preproc_undef] = STATE(2960), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(4158), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_EQ_GT] = ACTIONS(4158), - [anon_sym_switch] = ACTIONS(4158), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4158), - [anon_sym_or] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_from] = ACTIONS(4158), - [anon_sym_into] = ACTIONS(4158), - [anon_sym_join] = ACTIONS(4158), - [anon_sym_on] = ACTIONS(4158), - [anon_sym_equals] = ACTIONS(4158), - [anon_sym_let] = ACTIONS(4158), - [anon_sym_orderby] = ACTIONS(4158), - [anon_sym_group] = ACTIONS(4158), - [anon_sym_by] = ACTIONS(4158), - [anon_sym_select] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_is] = ACTIONS(4158), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4158), - [aux_sym_preproc_if_token3] = ACTIONS(4158), - [aux_sym_preproc_else_token1] = ACTIONS(4158), - [aux_sym_preproc_elif_token1] = ACTIONS(4158), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_record] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), + [aux_sym_preproc_if_token3] = ACTIONS(4937), + [aux_sym_preproc_else_token1] = ACTIONS(4749), + [aux_sym_preproc_elif_token1] = ACTIONS(4751), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468780,64 +468815,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2961), [sym_preproc_define] = STATE(2961), [sym_preproc_undef] = STATE(2961), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_RBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_CARET] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4922), - [anon_sym_GT_GT_GT] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_EQ_GT] = ACTIONS(4920), - [anon_sym_switch] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_and] = ACTIONS(4920), - [anon_sym_or] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_QMARK_QMARK] = ACTIONS(4920), - [anon_sym_from] = ACTIONS(4920), - [anon_sym_into] = ACTIONS(4920), - [anon_sym_join] = ACTIONS(4920), - [anon_sym_on] = ACTIONS(4920), - [anon_sym_equals] = ACTIONS(4920), - [anon_sym_let] = ACTIONS(4920), - [anon_sym_orderby] = ACTIONS(4920), - [anon_sym_group] = ACTIONS(4920), - [anon_sym_by] = ACTIONS(4920), - [anon_sym_select] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4920), - [anon_sym_with] = ACTIONS(4920), - [sym_string_literal_encoding] = ACTIONS(4924), - [aux_sym_preproc_if_token3] = ACTIONS(4920), - [aux_sym_preproc_else_token1] = ACTIONS(4920), - [aux_sym_preproc_elif_token1] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468859,64 +468894,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2962), [sym_preproc_define] = STATE(2962), [sym_preproc_undef] = STATE(2962), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_RPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4100), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_where] = ACTIONS(4100), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_EQ_GT] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4100), - [anon_sym_or] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_from] = ACTIONS(4100), - [anon_sym_into] = ACTIONS(4100), - [anon_sym_join] = ACTIONS(4100), - [anon_sym_on] = ACTIONS(4100), - [anon_sym_equals] = ACTIONS(4100), - [anon_sym_let] = ACTIONS(4100), - [anon_sym_orderby] = ACTIONS(4100), - [anon_sym_group] = ACTIONS(4100), - [anon_sym_by] = ACTIONS(4100), - [anon_sym_select] = ACTIONS(4100), - [anon_sym_as] = ACTIONS(4100), - [anon_sym_is] = ACTIONS(4100), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4100), - [aux_sym_preproc_if_token3] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_EQ_GT] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_from] = ACTIONS(4108), + [anon_sym_into] = ACTIONS(4108), + [anon_sym_join] = ACTIONS(4108), + [anon_sym_on] = ACTIONS(4108), + [anon_sym_equals] = ACTIONS(4108), + [anon_sym_let] = ACTIONS(4108), + [anon_sym_orderby] = ACTIONS(4108), + [anon_sym_group] = ACTIONS(4108), + [anon_sym_by] = ACTIONS(4108), + [anon_sym_select] = ACTIONS(4108), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4108), + [aux_sym_preproc_if_token3] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468938,64 +468973,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2963), [sym_preproc_define] = STATE(2963), [sym_preproc_undef] = STATE(2963), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_where] = ACTIONS(3721), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_switch] = ACTIONS(3721), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3721), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_from] = ACTIONS(3721), - [anon_sym_into] = ACTIONS(3721), - [anon_sym_join] = ACTIONS(3721), - [anon_sym_on] = ACTIONS(3721), - [anon_sym_equals] = ACTIONS(3721), - [anon_sym_let] = ACTIONS(3721), - [anon_sym_orderby] = ACTIONS(3721), - [anon_sym_group] = ACTIONS(3721), - [anon_sym_by] = ACTIONS(3721), - [anon_sym_select] = ACTIONS(3721), - [anon_sym_as] = ACTIONS(3721), - [anon_sym_is] = ACTIONS(3721), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3721), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4154), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_EQ_GT] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4156), + [anon_sym_or] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_from] = ACTIONS(4156), + [anon_sym_into] = ACTIONS(4156), + [anon_sym_join] = ACTIONS(4156), + [anon_sym_on] = ACTIONS(4156), + [anon_sym_equals] = ACTIONS(4156), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_orderby] = ACTIONS(4156), + [anon_sym_group] = ACTIONS(4156), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_select] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4156), + [aux_sym_preproc_if_token3] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469017,64 +469052,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2964), [sym_preproc_define] = STATE(2964), [sym_preproc_undef] = STATE(2964), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_where] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_EQ_GT] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4096), - [anon_sym_or] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_from] = ACTIONS(4096), - [anon_sym_into] = ACTIONS(4096), - [anon_sym_join] = ACTIONS(4096), - [anon_sym_on] = ACTIONS(4096), - [anon_sym_equals] = ACTIONS(4096), - [anon_sym_let] = ACTIONS(4096), - [anon_sym_orderby] = ACTIONS(4096), - [anon_sym_group] = ACTIONS(4096), - [anon_sym_by] = ACTIONS(4096), - [anon_sym_select] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4096), - [aux_sym_preproc_if_token3] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469096,64 +469131,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2965), [sym_preproc_define] = STATE(2965), [sym_preproc_undef] = STATE(2965), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_in] = ACTIONS(4119), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4121), - [anon_sym_or] = ACTIONS(4119), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_from] = ACTIONS(4121), - [anon_sym_into] = ACTIONS(4121), - [anon_sym_join] = ACTIONS(4121), - [anon_sym_on] = ACTIONS(4121), - [anon_sym_equals] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_orderby] = ACTIONS(4121), - [anon_sym_group] = ACTIONS(4121), - [anon_sym_by] = ACTIONS(4121), - [anon_sym_select] = ACTIONS(4121), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - [aux_sym_preproc_if_token3] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_in] = ACTIONS(4034), + [anon_sym_where] = ACTIONS(4036), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_EQ_GT] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4036), + [anon_sym_or] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_from] = ACTIONS(4036), + [anon_sym_into] = ACTIONS(4036), + [anon_sym_join] = ACTIONS(4036), + [anon_sym_on] = ACTIONS(4036), + [anon_sym_equals] = ACTIONS(4036), + [anon_sym_let] = ACTIONS(4036), + [anon_sym_orderby] = ACTIONS(4036), + [anon_sym_group] = ACTIONS(4036), + [anon_sym_by] = ACTIONS(4036), + [anon_sym_select] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_is] = ACTIONS(4036), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4036), + [aux_sym_preproc_if_token3] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469175,64 +469210,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2966), [sym_preproc_define] = STATE(2966), [sym_preproc_undef] = STATE(2966), - [anon_sym_SEMI] = ACTIONS(4023), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4021), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_EQ_GT] = ACTIONS(4023), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4023), - [aux_sym_preproc_if_token3] = ACTIONS(4023), - [aux_sym_preproc_else_token1] = ACTIONS(4023), - [aux_sym_preproc_elif_token1] = ACTIONS(4023), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469254,222 +469289,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2967), [sym_preproc_define] = STATE(2967), [sym_preproc_undef] = STATE(2967), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_RBRACK] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_RPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_in] = ACTIONS(4160), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_EQ_GT] = ACTIONS(4162), - [anon_sym_switch] = ACTIONS(4162), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4162), - [anon_sym_or] = ACTIONS(4160), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_from] = ACTIONS(4162), - [anon_sym_into] = ACTIONS(4162), - [anon_sym_join] = ACTIONS(4162), - [anon_sym_on] = ACTIONS(4162), - [anon_sym_equals] = ACTIONS(4162), - [anon_sym_let] = ACTIONS(4162), - [anon_sym_orderby] = ACTIONS(4162), - [anon_sym_group] = ACTIONS(4162), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_select] = ACTIONS(4162), - [anon_sym_as] = ACTIONS(4162), - [anon_sym_is] = ACTIONS(4162), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4162), - [aux_sym_preproc_if_token3] = ACTIONS(4162), - [aux_sym_preproc_else_token1] = ACTIONS(4162), - [aux_sym_preproc_elif_token1] = ACTIONS(4162), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2968] = { - [sym_type_argument_list] = STATE(3086), - [sym_preproc_region] = STATE(2968), - [sym_preproc_endregion] = STATE(2968), - [sym_preproc_line] = STATE(2968), - [sym_preproc_pragma] = STATE(2968), - [sym_preproc_nullable] = STATE(2968), - [sym_preproc_error] = STATE(2968), - [sym_preproc_warning] = STATE(2968), - [sym_preproc_define] = STATE(2968), - [sym_preproc_undef] = STATE(2968), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_in] = ACTIONS(4038), + [anon_sym_where] = ACTIONS(4040), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_EQ_GT] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4040), + [anon_sym_or] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_from] = ACTIONS(4040), + [anon_sym_into] = ACTIONS(4040), + [anon_sym_join] = ACTIONS(4040), + [anon_sym_on] = ACTIONS(4040), + [anon_sym_equals] = ACTIONS(4040), + [anon_sym_let] = ACTIONS(4040), + [anon_sym_orderby] = ACTIONS(4040), + [anon_sym_group] = ACTIONS(4040), + [anon_sym_by] = ACTIONS(4040), + [anon_sym_select] = ACTIONS(4040), + [anon_sym_as] = ACTIONS(4040), + [anon_sym_is] = ACTIONS(4040), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4040), + [aux_sym_preproc_if_token3] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2969] = { - [sym_preproc_region] = STATE(2969), - [sym_preproc_endregion] = STATE(2969), - [sym_preproc_line] = STATE(2969), - [sym_preproc_pragma] = STATE(2969), - [sym_preproc_nullable] = STATE(2969), - [sym_preproc_error] = STATE(2969), - [sym_preproc_warning] = STATE(2969), - [sym_preproc_define] = STATE(2969), - [sym_preproc_undef] = STATE(2969), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_COLON] = ACTIONS(4054), - [anon_sym_COMMA] = ACTIONS(4054), - [anon_sym_RBRACK] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_in] = ACTIONS(4052), - [anon_sym_where] = ACTIONS(4054), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_SLASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4054), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_GT_GT_GT] = ACTIONS(4054), - [anon_sym_EQ_EQ] = ACTIONS(4054), - [anon_sym_BANG_EQ] = ACTIONS(4054), - [anon_sym_GT_EQ] = ACTIONS(4054), - [anon_sym_LT_EQ] = ACTIONS(4054), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_EQ_GT] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_DOT_DOT] = ACTIONS(4054), - [anon_sym_and] = ACTIONS(4054), - [anon_sym_or] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4054), - [anon_sym_QMARK_QMARK] = ACTIONS(4054), - [anon_sym_from] = ACTIONS(4054), - [anon_sym_into] = ACTIONS(4054), - [anon_sym_join] = ACTIONS(4054), - [anon_sym_on] = ACTIONS(4054), - [anon_sym_equals] = ACTIONS(4054), - [anon_sym_let] = ACTIONS(4054), - [anon_sym_orderby] = ACTIONS(4054), - [anon_sym_group] = ACTIONS(4054), - [anon_sym_by] = ACTIONS(4054), - [anon_sym_select] = ACTIONS(4054), - [anon_sym_as] = ACTIONS(4054), - [anon_sym_is] = ACTIONS(4054), - [anon_sym_DASH_GT] = ACTIONS(4054), - [anon_sym_with] = ACTIONS(4054), - [aux_sym_preproc_if_token3] = ACTIONS(4054), - [aux_sym_preproc_else_token1] = ACTIONS(4054), - [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2968] = { + [sym_preproc_region] = STATE(2968), + [sym_preproc_endregion] = STATE(2968), + [sym_preproc_line] = STATE(2968), + [sym_preproc_pragma] = STATE(2968), + [sym_preproc_nullable] = STATE(2968), + [sym_preproc_error] = STATE(2968), + [sym_preproc_warning] = STATE(2968), + [sym_preproc_define] = STATE(2968), + [sym_preproc_undef] = STATE(2968), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4042), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_or] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_from] = ACTIONS(4044), + [anon_sym_into] = ACTIONS(4044), + [anon_sym_join] = ACTIONS(4044), + [anon_sym_on] = ACTIONS(4044), + [anon_sym_equals] = ACTIONS(4044), + [anon_sym_let] = ACTIONS(4044), + [anon_sym_orderby] = ACTIONS(4044), + [anon_sym_group] = ACTIONS(4044), + [anon_sym_by] = ACTIONS(4044), + [anon_sym_select] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4044), + [aux_sym_preproc_if_token3] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2969] = { + [sym_initializer_expression] = STATE(3132), + [sym_preproc_region] = STATE(2969), + [sym_preproc_endregion] = STATE(2969), + [sym_preproc_line] = STATE(2969), + [sym_preproc_pragma] = STATE(2969), + [sym_preproc_nullable] = STATE(2969), + [sym_preproc_error] = STATE(2969), + [sym_preproc_warning] = STATE(2969), + [sym_preproc_define] = STATE(2969), + [sym_preproc_undef] = STATE(2969), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_GT_GT_GT] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_EQ_GT] = ACTIONS(4904), + [anon_sym_switch] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_and] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_QMARK_QMARK] = ACTIONS(4904), + [anon_sym_from] = ACTIONS(4904), + [anon_sym_join] = ACTIONS(4904), + [anon_sym_on] = ACTIONS(4904), + [anon_sym_equals] = ACTIONS(4904), + [anon_sym_let] = ACTIONS(4904), + [anon_sym_orderby] = ACTIONS(4904), + [anon_sym_group] = ACTIONS(4904), + [anon_sym_by] = ACTIONS(4904), + [anon_sym_select] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_with] = ACTIONS(4904), + [aux_sym_preproc_if_token3] = ACTIONS(4904), + [aux_sym_preproc_else_token1] = ACTIONS(4904), + [aux_sym_preproc_elif_token1] = ACTIONS(4904), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469482,6 +469517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2970] = { + [sym_initializer_expression] = STATE(3105), [sym_preproc_region] = STATE(2970), [sym_preproc_endregion] = STATE(2970), [sym_preproc_line] = STATE(2970), @@ -469491,64 +469527,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2970), [sym_preproc_define] = STATE(2970), [sym_preproc_undef] = STATE(2970), - [anon_sym_SEMI] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4017), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_EQ_GT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4019), - [anon_sym_equals] = ACTIONS(4019), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4019), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4019), - [aux_sym_preproc_if_token3] = ACTIONS(4019), - [aux_sym_preproc_else_token1] = ACTIONS(4019), - [aux_sym_preproc_elif_token1] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4871), + [anon_sym_where] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4871), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_CARET] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_GT_GT_GT] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_EQ_GT] = ACTIONS(4871), + [anon_sym_switch] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_and] = ACTIONS(4871), + [anon_sym_or] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_QMARK_QMARK] = ACTIONS(4871), + [anon_sym_from] = ACTIONS(4871), + [anon_sym_join] = ACTIONS(4871), + [anon_sym_on] = ACTIONS(4871), + [anon_sym_equals] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4871), + [anon_sym_orderby] = ACTIONS(4871), + [anon_sym_group] = ACTIONS(4871), + [anon_sym_by] = ACTIONS(4871), + [anon_sym_select] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_DASH_GT] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), + [aux_sym_preproc_if_token3] = ACTIONS(4871), + [aux_sym_preproc_else_token1] = ACTIONS(4871), + [aux_sym_preproc_elif_token1] = ACTIONS(4871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469570,64 +469605,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2971), [sym_preproc_define] = STATE(2971), [sym_preproc_undef] = STATE(2971), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_event] = ACTIONS(4747), - [anon_sym_class] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_struct] = ACTIONS(4747), - [anon_sym_enum] = ACTIONS(4747), - [anon_sym_interface] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_record] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4749), - [anon_sym_implicit] = ACTIONS(4747), - [anon_sym_explicit] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), - [aux_sym_preproc_if_token3] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4939), + [anon_sym_QMARK] = ACTIONS(4941), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(4939), + [anon_sym_GT_GT] = ACTIONS(4941), + [anon_sym_GT_GT_GT] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_EQ_GT] = ACTIONS(4939), + [anon_sym_switch] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_and] = ACTIONS(4939), + [anon_sym_or] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_QMARK_QMARK] = ACTIONS(4939), + [anon_sym_from] = ACTIONS(4939), + [anon_sym_into] = ACTIONS(4939), + [anon_sym_join] = ACTIONS(4939), + [anon_sym_on] = ACTIONS(4939), + [anon_sym_equals] = ACTIONS(4939), + [anon_sym_let] = ACTIONS(4939), + [anon_sym_orderby] = ACTIONS(4939), + [anon_sym_group] = ACTIONS(4939), + [anon_sym_by] = ACTIONS(4939), + [anon_sym_select] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_DASH_GT] = ACTIONS(4939), + [anon_sym_with] = ACTIONS(4939), + [aux_sym_preproc_if_token3] = ACTIONS(4939), + [aux_sym_preproc_else_token1] = ACTIONS(4939), + [aux_sym_preproc_elif_token1] = ACTIONS(4939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469640,7 +469675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2972] = { - [sym_initializer_expression] = STATE(3104), [sym_preproc_region] = STATE(2972), [sym_preproc_endregion] = STATE(2972), [sym_preproc_line] = STATE(2972), @@ -469650,163 +469684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2972), [sym_preproc_define] = STATE(2972), [sym_preproc_undef] = STATE(2972), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4872), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RBRACK] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_QMARK] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_CARET] = ACTIONS(4872), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4872), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_GT_GT_GT] = ACTIONS(4872), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_EQ_GT] = ACTIONS(4872), - [anon_sym_switch] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_and] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4872), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_QMARK_QMARK] = ACTIONS(4872), - [anon_sym_from] = ACTIONS(4872), - [anon_sym_join] = ACTIONS(4872), - [anon_sym_on] = ACTIONS(4872), - [anon_sym_equals] = ACTIONS(4872), - [anon_sym_let] = ACTIONS(4872), - [anon_sym_orderby] = ACTIONS(4872), - [anon_sym_group] = ACTIONS(4872), - [anon_sym_by] = ACTIONS(4872), - [anon_sym_select] = ACTIONS(4872), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [anon_sym_with] = ACTIONS(4872), - [aux_sym_preproc_if_token3] = ACTIONS(4872), - [aux_sym_preproc_else_token1] = ACTIONS(4872), - [aux_sym_preproc_elif_token1] = ACTIONS(4872), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2973] = { - [sym_preproc_region] = STATE(2973), - [sym_preproc_endregion] = STATE(2973), - [sym_preproc_line] = STATE(2973), - [sym_preproc_pragma] = STATE(2973), - [sym_preproc_nullable] = STATE(2973), - [sym_preproc_error] = STATE(2973), - [sym_preproc_warning] = STATE(2973), - [sym_preproc_define] = STATE(2973), - [sym_preproc_undef] = STATE(2973), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4933), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_from] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_join] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_let] = ACTIONS(4931), - [anon_sym_orderby] = ACTIONS(4931), - [anon_sym_group] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_select] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [sym_string_literal_encoding] = ACTIONS(4935), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2974] = { - [sym_preproc_region] = STATE(2974), - [sym_preproc_endregion] = STATE(2974), - [sym_preproc_line] = STATE(2974), - [sym_preproc_pragma] = STATE(2974), - [sym_preproc_nullable] = STATE(2974), - [sym_preproc_error] = STATE(2974), - [sym_preproc_warning] = STATE(2974), - [sym_preproc_define] = STATE(2974), - [sym_preproc_undef] = STATE(2974), [anon_sym_SEMI] = ACTIONS(4144), [anon_sym_LBRACK] = ACTIONS(4144), [anon_sym_COLON] = ACTIONS(4144), @@ -469876,6 +469753,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2973] = { + [sym_preproc_region] = STATE(2973), + [sym_preproc_endregion] = STATE(2973), + [sym_preproc_line] = STATE(2973), + [sym_preproc_pragma] = STATE(2973), + [sym_preproc_nullable] = STATE(2973), + [sym_preproc_error] = STATE(2973), + [sym_preproc_warning] = STATE(2973), + [sym_preproc_define] = STATE(2973), + [sym_preproc_undef] = STATE(2973), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_in] = ACTIONS(4018), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_join] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_let] = ACTIONS(4020), + [anon_sym_orderby] = ACTIONS(4020), + [anon_sym_group] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_select] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2974] = { + [sym_preproc_region] = STATE(2974), + [sym_preproc_endregion] = STATE(2974), + [sym_preproc_line] = STATE(2974), + [sym_preproc_pragma] = STATE(2974), + [sym_preproc_nullable] = STATE(2974), + [sym_preproc_error] = STATE(2974), + [sym_preproc_warning] = STATE(2974), + [sym_preproc_define] = STATE(2974), + [sym_preproc_undef] = STATE(2974), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_join] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_let] = ACTIONS(4152), + [anon_sym_orderby] = ACTIONS(4152), + [anon_sym_group] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_select] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2975] = { [sym_preproc_region] = STATE(2975), [sym_preproc_endregion] = STATE(2975), @@ -469886,64 +469921,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2975), [sym_preproc_define] = STATE(2975), [sym_preproc_undef] = STATE(2975), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_COLON] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4937), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4937), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4937), - [anon_sym_CARET] = ACTIONS(4937), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4939), - [anon_sym_LT_LT] = ACTIONS(4937), - [anon_sym_GT_GT] = ACTIONS(4939), - [anon_sym_GT_GT_GT] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_EQ_GT] = ACTIONS(4937), - [anon_sym_switch] = ACTIONS(4937), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_and] = ACTIONS(4937), - [anon_sym_or] = ACTIONS(4939), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_QMARK_QMARK] = ACTIONS(4937), - [anon_sym_from] = ACTIONS(4937), - [anon_sym_into] = ACTIONS(4937), - [anon_sym_join] = ACTIONS(4937), - [anon_sym_on] = ACTIONS(4937), - [anon_sym_equals] = ACTIONS(4937), - [anon_sym_let] = ACTIONS(4937), - [anon_sym_orderby] = ACTIONS(4937), - [anon_sym_group] = ACTIONS(4937), - [anon_sym_by] = ACTIONS(4937), - [anon_sym_select] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4937), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_with] = ACTIONS(4937), - [aux_sym_preproc_if_token3] = ACTIONS(4937), - [aux_sym_preproc_else_token1] = ACTIONS(4937), - [aux_sym_preproc_elif_token1] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_RBRACK] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4943), + [anon_sym_QMARK] = ACTIONS(4945), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4945), + [anon_sym_LT_LT] = ACTIONS(4943), + [anon_sym_GT_GT] = ACTIONS(4945), + [anon_sym_GT_GT_GT] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_EQ_GT] = ACTIONS(4943), + [anon_sym_switch] = ACTIONS(4943), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_and] = ACTIONS(4943), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_QMARK_QMARK] = ACTIONS(4943), + [anon_sym_from] = ACTIONS(4943), + [anon_sym_into] = ACTIONS(4943), + [anon_sym_join] = ACTIONS(4943), + [anon_sym_on] = ACTIONS(4943), + [anon_sym_equals] = ACTIONS(4943), + [anon_sym_let] = ACTIONS(4943), + [anon_sym_orderby] = ACTIONS(4943), + [anon_sym_group] = ACTIONS(4943), + [anon_sym_by] = ACTIONS(4943), + [anon_sym_select] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4943), + [anon_sym_DASH_GT] = ACTIONS(4943), + [anon_sym_with] = ACTIONS(4943), + [aux_sym_raw_string_literal_token1] = ACTIONS(4947), + [aux_sym_preproc_if_token3] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4943), + [aux_sym_preproc_elif_token1] = ACTIONS(4943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469956,7 +469991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2976] = { - [sym_initializer_expression] = STATE(3107), [sym_preproc_region] = STATE(2976), [sym_preproc_endregion] = STATE(2976), [sym_preproc_line] = STATE(2976), @@ -469966,63 +470000,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2976), [sym_preproc_define] = STATE(2976), [sym_preproc_undef] = STATE(2976), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3674), + [anon_sym_where] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_into] = ACTIONS(3676), + [anon_sym_join] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_orderby] = ACTIONS(3676), + [anon_sym_group] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_select] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470035,6 +470070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2977] = { + [sym_initializer_expression] = STATE(3126), [sym_preproc_region] = STATE(2977), [sym_preproc_endregion] = STATE(2977), [sym_preproc_line] = STATE(2977), @@ -470044,64 +470080,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2977), [sym_preproc_define] = STATE(2977), [sym_preproc_undef] = STATE(2977), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4943), - [anon_sym_DASH_EQ] = ACTIONS(4943), - [anon_sym_STAR_EQ] = ACTIONS(4943), - [anon_sym_SLASH_EQ] = ACTIONS(4943), - [anon_sym_PERCENT_EQ] = ACTIONS(4943), - [anon_sym_AMP_EQ] = ACTIONS(4943), - [anon_sym_CARET_EQ] = ACTIONS(4943), - [anon_sym_PIPE_EQ] = ACTIONS(4943), - [anon_sym_LT_LT_EQ] = ACTIONS(4943), - [anon_sym_GT_GT_EQ] = ACTIONS(4943), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4943), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4943), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_where] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4889), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_GT_GT_GT] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_GT_EQ] = ACTIONS(4889), + [anon_sym_LT_EQ] = ACTIONS(4889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_EQ_GT] = ACTIONS(4889), + [anon_sym_switch] = ACTIONS(4889), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_and] = ACTIONS(4889), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_QMARK_QMARK] = ACTIONS(4889), + [anon_sym_from] = ACTIONS(4889), + [anon_sym_join] = ACTIONS(4889), + [anon_sym_on] = ACTIONS(4889), + [anon_sym_equals] = ACTIONS(4889), + [anon_sym_let] = ACTIONS(4889), + [anon_sym_orderby] = ACTIONS(4889), + [anon_sym_group] = ACTIONS(4889), + [anon_sym_by] = ACTIONS(4889), + [anon_sym_select] = ACTIONS(4889), + [anon_sym_as] = ACTIONS(4889), + [anon_sym_is] = ACTIONS(4889), + [anon_sym_DASH_GT] = ACTIONS(4889), + [anon_sym_with] = ACTIONS(4889), + [aux_sym_preproc_if_token3] = ACTIONS(4889), + [aux_sym_preproc_else_token1] = ACTIONS(4889), + [aux_sym_preproc_elif_token1] = ACTIONS(4889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470114,7 +470149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2978] = { - [sym_type_argument_list] = STATE(3086), [sym_preproc_region] = STATE(2978), [sym_preproc_endregion] = STATE(2978), [sym_preproc_line] = STATE(2978), @@ -470124,63 +470158,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2978), [sym_preproc_define] = STATE(2978), [sym_preproc_undef] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4926), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(4945), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_RBRACK] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_in] = ACTIONS(4048), + [anon_sym_where] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_EQ_GT] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4050), + [anon_sym_or] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_from] = ACTIONS(4050), + [anon_sym_into] = ACTIONS(4050), + [anon_sym_join] = ACTIONS(4050), + [anon_sym_on] = ACTIONS(4050), + [anon_sym_equals] = ACTIONS(4050), + [anon_sym_let] = ACTIONS(4050), + [anon_sym_orderby] = ACTIONS(4050), + [anon_sym_group] = ACTIONS(4050), + [anon_sym_by] = ACTIONS(4050), + [anon_sym_select] = ACTIONS(4050), + [anon_sym_as] = ACTIONS(4050), + [anon_sym_is] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4050), + [aux_sym_preproc_if_token3] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470193,7 +470228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2979] = { - [sym_initializer_expression] = STATE(3132), [sym_preproc_region] = STATE(2979), [sym_preproc_endregion] = STATE(2979), [sym_preproc_line] = STATE(2979), @@ -470203,63 +470237,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2979), [sym_preproc_define] = STATE(2979), [sym_preproc_undef] = STATE(2979), - [anon_sym_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4949), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470272,8 +470307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2980] = { - [sym_preproc_else_in_attribute_list] = STATE(7608), - [sym_preproc_elif_in_attribute_list] = STATE(7608), [sym_preproc_region] = STATE(2980), [sym_preproc_endregion] = STATE(2980), [sym_preproc_line] = STATE(2980), @@ -470283,83 +470316,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2980), [sym_preproc_define] = STATE(2980), [sym_preproc_undef] = STATE(2980), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_class] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_struct] = ACTIONS(4747), - [anon_sym_enum] = ACTIONS(4747), - [anon_sym_interface] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_record] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), - [aux_sym_preproc_if_token3] = ACTIONS(4947), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4755), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2981] = { - [sym_preproc_region] = STATE(2981), - [sym_preproc_endregion] = STATE(2981), - [sym_preproc_line] = STATE(2981), - [sym_preproc_pragma] = STATE(2981), - [sym_preproc_nullable] = STATE(2981), - [sym_preproc_error] = STATE(2981), - [sym_preproc_warning] = STATE(2981), - [sym_preproc_define] = STATE(2981), - [sym_preproc_undef] = STATE(2981), [anon_sym_SEMI] = ACTIONS(3664), [anon_sym_LBRACK] = ACTIONS(3664), [anon_sym_COLON] = ACTIONS(3662), @@ -470429,6 +470385,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2981] = { + [sym_preproc_region] = STATE(2981), + [sym_preproc_endregion] = STATE(2981), + [sym_preproc_line] = STATE(2981), + [sym_preproc_pragma] = STATE(2981), + [sym_preproc_nullable] = STATE(2981), + [sym_preproc_error] = STATE(2981), + [sym_preproc_warning] = STATE(2981), + [sym_preproc_define] = STATE(2981), + [sym_preproc_undef] = STATE(2981), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_COMMA] = ACTIONS(4054), + [anon_sym_RBRACK] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4052), + [anon_sym_in] = ACTIONS(4052), + [anon_sym_where] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_EQ_GT] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_DOT_DOT] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_or] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4054), + [anon_sym_QMARK_QMARK] = ACTIONS(4054), + [anon_sym_from] = ACTIONS(4054), + [anon_sym_into] = ACTIONS(4054), + [anon_sym_join] = ACTIONS(4054), + [anon_sym_on] = ACTIONS(4054), + [anon_sym_equals] = ACTIONS(4054), + [anon_sym_let] = ACTIONS(4054), + [anon_sym_orderby] = ACTIONS(4054), + [anon_sym_group] = ACTIONS(4054), + [anon_sym_by] = ACTIONS(4054), + [anon_sym_select] = ACTIONS(4054), + [anon_sym_as] = ACTIONS(4054), + [anon_sym_is] = ACTIONS(4054), + [anon_sym_DASH_GT] = ACTIONS(4054), + [anon_sym_with] = ACTIONS(4054), + [aux_sym_preproc_if_token3] = ACTIONS(4054), + [aux_sym_preproc_else_token1] = ACTIONS(4054), + [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2982] = { [sym_preproc_region] = STATE(2982), [sym_preproc_endregion] = STATE(2982), @@ -470439,64 +470474,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2982), [sym_preproc_define] = STATE(2982), [sym_preproc_undef] = STATE(2982), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4949), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4949), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_GT_GT_GT] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_EQ_GT] = ACTIONS(4949), - [anon_sym_switch] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_and] = ACTIONS(4949), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_QMARK_QMARK] = ACTIONS(4949), - [anon_sym_from] = ACTIONS(4949), - [anon_sym_into] = ACTIONS(4949), - [anon_sym_join] = ACTIONS(4949), - [anon_sym_on] = ACTIONS(4949), - [anon_sym_equals] = ACTIONS(4949), - [anon_sym_let] = ACTIONS(4949), - [anon_sym_orderby] = ACTIONS(4949), - [anon_sym_group] = ACTIONS(4949), - [anon_sym_by] = ACTIONS(4949), - [anon_sym_select] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_DASH_GT] = ACTIONS(4949), - [anon_sym_with] = ACTIONS(4949), - [aux_sym_raw_string_literal_token1] = ACTIONS(4953), - [aux_sym_preproc_if_token3] = ACTIONS(4949), - [aux_sym_preproc_else_token1] = ACTIONS(4949), - [aux_sym_preproc_elif_token1] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3630), + [anon_sym_where] = ACTIONS(3630), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3630), + [anon_sym_or] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_join] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_equals] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_orderby] = ACTIONS(3630), + [anon_sym_group] = ACTIONS(3630), + [anon_sym_by] = ACTIONS(3630), + [anon_sym_select] = ACTIONS(3630), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_is] = ACTIONS(3630), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470518,64 +470553,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2983), [sym_preproc_define] = STATE(2983), [sym_preproc_undef] = STATE(2983), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3628), - [anon_sym_where] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_join] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_orderby] = ACTIONS(3628), - [anon_sym_group] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_select] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3628), - [anon_sym_is] = ACTIONS(3628), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470597,64 +470632,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2984), [sym_preproc_define] = STATE(2984), [sym_preproc_undef] = STATE(2984), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_in] = ACTIONS(3697), - [anon_sym_where] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_from] = ACTIONS(3708), - [anon_sym_into] = ACTIONS(3708), - [anon_sym_join] = ACTIONS(3708), - [anon_sym_on] = ACTIONS(3708), - [anon_sym_equals] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_orderby] = ACTIONS(3708), - [anon_sym_group] = ACTIONS(3708), - [anon_sym_by] = ACTIONS(3708), - [anon_sym_select] = ACTIONS(3708), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_is] = ACTIONS(3708), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3708), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_GT_GT_GT] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_EQ_GT] = ACTIONS(4952), + [anon_sym_switch] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_QMARK_QMARK] = ACTIONS(4952), + [anon_sym_from] = ACTIONS(4952), + [anon_sym_into] = ACTIONS(4952), + [anon_sym_join] = ACTIONS(4952), + [anon_sym_on] = ACTIONS(4952), + [anon_sym_equals] = ACTIONS(4952), + [anon_sym_let] = ACTIONS(4952), + [anon_sym_orderby] = ACTIONS(4952), + [anon_sym_group] = ACTIONS(4952), + [anon_sym_by] = ACTIONS(4952), + [anon_sym_select] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_with] = ACTIONS(4952), + [sym_string_literal_encoding] = ACTIONS(4956), + [aux_sym_preproc_if_token3] = ACTIONS(4952), + [aux_sym_preproc_else_token1] = ACTIONS(4952), + [aux_sym_preproc_elif_token1] = ACTIONS(4952), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470676,64 +470711,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2985), [sym_preproc_define] = STATE(2985), [sym_preproc_undef] = STATE(2985), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4958), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_GT_GT_GT] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4958), + [anon_sym_switch] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_QMARK_QMARK] = ACTIONS(4958), + [anon_sym_from] = ACTIONS(4958), + [anon_sym_into] = ACTIONS(4958), + [anon_sym_join] = ACTIONS(4958), + [anon_sym_on] = ACTIONS(4958), + [anon_sym_equals] = ACTIONS(4958), + [anon_sym_let] = ACTIONS(4958), + [anon_sym_orderby] = ACTIONS(4958), + [anon_sym_group] = ACTIONS(4958), + [anon_sym_by] = ACTIONS(4958), + [anon_sym_select] = ACTIONS(4958), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4958), + [anon_sym_with] = ACTIONS(4958), + [aux_sym_preproc_if_token3] = ACTIONS(4958), + [aux_sym_preproc_else_token1] = ACTIONS(4958), + [aux_sym_preproc_elif_token1] = ACTIONS(4958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470755,64 +470790,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2986), [sym_preproc_define] = STATE(2986), [sym_preproc_undef] = STATE(2986), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3670), + [anon_sym_where] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3672), + [anon_sym_CARET] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3672), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_join] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_orderby] = ACTIONS(3672), + [anon_sym_group] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_select] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470834,64 +470869,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2987), [sym_preproc_define] = STATE(2987), [sym_preproc_undef] = STATE(2987), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4949), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470904,6 +470939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2988] = { + [sym_type_argument_list] = STATE(3027), [sym_preproc_region] = STATE(2988), [sym_preproc_endregion] = STATE(2988), [sym_preproc_line] = STATE(2988), @@ -470913,64 +470949,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2988), [sym_preproc_define] = STATE(2988), [sym_preproc_undef] = STATE(2988), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(4965), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471071,64 +471106,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2990), [sym_preproc_define] = STATE(2990), [sym_preproc_undef] = STATE(2990), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_RPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4119), + [anon_sym_where] = ACTIONS(4121), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(4121), + [anon_sym_switch] = ACTIONS(4121), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4121), + [anon_sym_or] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_from] = ACTIONS(4121), + [anon_sym_into] = ACTIONS(4121), + [anon_sym_join] = ACTIONS(4121), + [anon_sym_on] = ACTIONS(4121), + [anon_sym_equals] = ACTIONS(4121), + [anon_sym_let] = ACTIONS(4121), + [anon_sym_orderby] = ACTIONS(4121), + [anon_sym_group] = ACTIONS(4121), + [anon_sym_by] = ACTIONS(4121), + [anon_sym_select] = ACTIONS(4121), + [anon_sym_as] = ACTIONS(4121), + [anon_sym_is] = ACTIONS(4121), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4121), + [aux_sym_preproc_if_token3] = ACTIONS(4121), + [aux_sym_preproc_else_token1] = ACTIONS(4121), + [aux_sym_preproc_elif_token1] = ACTIONS(4121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471150,64 +471185,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2991), [sym_preproc_define] = STATE(2991), [sym_preproc_undef] = STATE(2991), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4015), - [anon_sym_into] = ACTIONS(4015), - [anon_sym_join] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_let] = ACTIONS(4015), - [anon_sym_orderby] = ACTIONS(4015), - [anon_sym_group] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_select] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_where] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_join] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_orderby] = ACTIONS(3668), + [anon_sym_group] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_select] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471229,64 +471264,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2992), [sym_preproc_define] = STATE(2992), [sym_preproc_undef] = STATE(2992), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4027), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_EQ_GT] = ACTIONS(4027), - [anon_sym_switch] = ACTIONS(4027), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4027), - [anon_sym_or] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_from] = ACTIONS(4027), - [anon_sym_into] = ACTIONS(4027), - [anon_sym_join] = ACTIONS(4027), - [anon_sym_on] = ACTIONS(4027), - [anon_sym_equals] = ACTIONS(4027), - [anon_sym_let] = ACTIONS(4027), - [anon_sym_orderby] = ACTIONS(4027), - [anon_sym_group] = ACTIONS(4027), - [anon_sym_by] = ACTIONS(4027), - [anon_sym_select] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4027), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4027), - [aux_sym_preproc_if_token3] = ACTIONS(4027), - [aux_sym_preproc_else_token1] = ACTIONS(4027), - [aux_sym_preproc_elif_token1] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_from] = ACTIONS(3722), + [anon_sym_into] = ACTIONS(3722), + [anon_sym_join] = ACTIONS(3722), + [anon_sym_on] = ACTIONS(3722), + [anon_sym_equals] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_orderby] = ACTIONS(3722), + [anon_sym_group] = ACTIONS(3722), + [anon_sym_by] = ACTIONS(3722), + [anon_sym_select] = ACTIONS(3722), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_is] = ACTIONS(3722), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3722), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471308,64 +471343,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2993), [sym_preproc_define] = STATE(2993), [sym_preproc_undef] = STATE(2993), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_where] = ACTIONS(3686), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3684), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_into] = ACTIONS(3686), - [anon_sym_join] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_orderby] = ACTIONS(3686), - [anon_sym_group] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_select] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_from] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_join] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_let] = ACTIONS(4967), + [anon_sym_orderby] = ACTIONS(4967), + [anon_sym_group] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_select] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [sym_string_literal_encoding] = ACTIONS(4971), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471387,64 +471422,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2994), [sym_preproc_define] = STATE(2994), [sym_preproc_undef] = STATE(2994), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4031), - [anon_sym_into] = ACTIONS(4031), - [anon_sym_join] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_orderby] = ACTIONS(4031), - [anon_sym_group] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4028), + [anon_sym_into] = ACTIONS(4028), + [anon_sym_join] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_let] = ACTIONS(4028), + [anon_sym_orderby] = ACTIONS(4028), + [anon_sym_group] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_select] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471457,6 +471492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2995] = { + [sym_type_argument_list] = STATE(3027), [sym_preproc_region] = STATE(2995), [sym_preproc_endregion] = STATE(2995), [sym_preproc_line] = STATE(2995), @@ -471466,64 +471502,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2995), [sym_preproc_define] = STATE(2995), [sym_preproc_undef] = STATE(2995), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_into] = ACTIONS(3676), - [anon_sym_join] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_orderby] = ACTIONS(3676), - [anon_sym_group] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_select] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471545,64 +471580,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2996), [sym_preproc_define] = STATE(2996), [sym_preproc_undef] = STATE(2996), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_where] = ACTIONS(3668), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_join] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_orderby] = ACTIONS(3668), - [anon_sym_group] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_select] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_RPAREN] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_EQ_GT] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4148), + [anon_sym_or] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4148), + [anon_sym_from] = ACTIONS(4148), + [anon_sym_into] = ACTIONS(4148), + [anon_sym_join] = ACTIONS(4148), + [anon_sym_on] = ACTIONS(4148), + [anon_sym_equals] = ACTIONS(4148), + [anon_sym_let] = ACTIONS(4148), + [anon_sym_orderby] = ACTIONS(4148), + [anon_sym_group] = ACTIONS(4148), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_select] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4148), + [aux_sym_preproc_if_token3] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471615,7 +471650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2997] = { - [sym_initializer_expression] = STATE(3130), [sym_preproc_region] = STATE(2997), [sym_preproc_endregion] = STATE(2997), [sym_preproc_line] = STATE(2997), @@ -471625,63 +471659,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2997), [sym_preproc_define] = STATE(2997), [sym_preproc_undef] = STATE(2997), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4962), - [anon_sym_where] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_from] = ACTIONS(4962), - [anon_sym_join] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_orderby] = ACTIONS(4962), - [anon_sym_group] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_select] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_event] = ACTIONS(4743), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_record] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4745), + [anon_sym_implicit] = ACTIONS(4743), + [anon_sym_explicit] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), + [aux_sym_preproc_if_token3] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471781,50 +471816,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2999), [sym_preproc_define] = STATE(2999), [sym_preproc_undef] = STATE(2999), - [sym__identifier_token] = ACTIONS(4979), - [anon_sym_extern] = ACTIONS(4979), - [anon_sym_alias] = ACTIONS(4979), - [anon_sym_global] = ACTIONS(4979), - [anon_sym_unsafe] = ACTIONS(4979), - [anon_sym_static] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_event] = ACTIONS(4979), - [anon_sym_class] = ACTIONS(4979), - [anon_sym_ref] = ACTIONS(4979), - [anon_sym_struct] = ACTIONS(4979), - [anon_sym_enum] = ACTIONS(4979), - [anon_sym_interface] = ACTIONS(4979), - [anon_sym_delegate] = ACTIONS(4979), - [anon_sym_record] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_async] = ACTIONS(4979), - [anon_sym_const] = ACTIONS(4979), - [anon_sym_file] = ACTIONS(4979), - [anon_sym_fixed] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_new] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_partial] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_readonly] = ACTIONS(4979), - [anon_sym_required] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_virtual] = ACTIONS(4979), - [anon_sym_volatile] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4144), + [anon_sym_where] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4144), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_EQ_GT] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4144), + [anon_sym_or] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4144), + [anon_sym_from] = ACTIONS(4144), + [anon_sym_join] = ACTIONS(4144), + [anon_sym_on] = ACTIONS(4144), + [anon_sym_equals] = ACTIONS(4144), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_orderby] = ACTIONS(4144), + [anon_sym_group] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4144), + [anon_sym_select] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4144), + [anon_sym_with] = ACTIONS(4144), + [aux_sym_preproc_if_token3] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3000] = { + [sym_preproc_region] = STATE(3000), + [sym_preproc_endregion] = STATE(3000), + [sym_preproc_line] = STATE(3000), + [sym_preproc_pragma] = STATE(3000), + [sym_preproc_nullable] = STATE(3000), + [sym_preproc_error] = STATE(3000), + [sym_preproc_warning] = STATE(3000), + [sym_preproc_define] = STATE(3000), + [sym_preproc_undef] = STATE(3000), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_from] = ACTIONS(4020), + [anon_sym_join] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_let] = ACTIONS(4020), + [anon_sym_orderby] = ACTIONS(4020), + [anon_sym_group] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_select] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3001] = { + [sym_preproc_region] = STATE(3001), + [sym_preproc_endregion] = STATE(3001), + [sym_preproc_line] = STATE(3001), + [sym_preproc_pragma] = STATE(3001), + [sym_preproc_nullable] = STATE(3001), + [sym_preproc_error] = STATE(3001), + [sym_preproc_warning] = STATE(3001), + [sym_preproc_define] = STATE(3001), + [sym_preproc_undef] = STATE(3001), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_in] = ACTIONS(4981), [anon_sym_where] = ACTIONS(4979), - [anon_sym_notnull] = ACTIONS(4979), - [anon_sym_unmanaged] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4981), - [anon_sym_implicit] = ACTIONS(4979), - [anon_sym_explicit] = ACTIONS(4979), - [anon_sym_scoped] = ACTIONS(4979), - [anon_sym_var] = ACTIONS(4979), - [sym_predefined_type] = ACTIONS(4979), - [anon_sym_yield] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_BANG] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_GT_GT_GT] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_EQ_GT] = ACTIONS(4979), + [anon_sym_switch] = ACTIONS(4979), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_and] = ACTIONS(4979), + [anon_sym_or] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_QMARK_QMARK] = ACTIONS(4979), [anon_sym_from] = ACTIONS(4979), [anon_sym_into] = ACTIONS(4979), [anon_sym_join] = ACTIONS(4979), @@ -471832,12 +472019,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4979), [anon_sym_let] = ACTIONS(4979), [anon_sym_orderby] = ACTIONS(4979), - [anon_sym_ascending] = ACTIONS(4979), - [anon_sym_descending] = ACTIONS(4979), [anon_sym_group] = ACTIONS(4979), [anon_sym_by] = ACTIONS(4979), [anon_sym_select] = ACTIONS(4979), - [aux_sym_preproc_if_token1] = ACTIONS(4981), + [anon_sym_as] = ACTIONS(4979), + [anon_sym_is] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(4979), + [anon_sym_with] = ACTIONS(4979), + [aux_sym_preproc_if_token3] = ACTIONS(4979), + [aux_sym_preproc_else_token1] = ACTIONS(4979), + [aux_sym_preproc_elif_token1] = ACTIONS(4979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471849,16 +472040,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3000] = { - [sym_preproc_region] = STATE(3000), - [sym_preproc_endregion] = STATE(3000), - [sym_preproc_line] = STATE(3000), - [sym_preproc_pragma] = STATE(3000), - [sym_preproc_nullable] = STATE(3000), - [sym_preproc_error] = STATE(3000), - [sym_preproc_warning] = STATE(3000), - [sym_preproc_define] = STATE(3000), - [sym_preproc_undef] = STATE(3000), + [3002] = { + [sym_preproc_region] = STATE(3002), + [sym_preproc_endregion] = STATE(3002), + [sym_preproc_line] = STATE(3002), + [sym_preproc_pragma] = STATE(3002), + [sym_preproc_nullable] = STATE(3002), + [sym_preproc_error] = STATE(3002), + [sym_preproc_warning] = STATE(3002), + [sym_preproc_define] = STATE(3002), + [sym_preproc_undef] = STATE(3002), [anon_sym_SEMI] = ACTIONS(4983), [anon_sym_LBRACK] = ACTIONS(4983), [anon_sym_COLON] = ACTIONS(4983), @@ -471927,16 +472118,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3001] = { - [sym_preproc_region] = STATE(3001), - [sym_preproc_endregion] = STATE(3001), - [sym_preproc_line] = STATE(3001), - [sym_preproc_pragma] = STATE(3001), - [sym_preproc_nullable] = STATE(3001), - [sym_preproc_error] = STATE(3001), - [sym_preproc_warning] = STATE(3001), - [sym_preproc_define] = STATE(3001), - [sym_preproc_undef] = STATE(3001), + [3003] = { + [sym_preproc_region] = STATE(3003), + [sym_preproc_endregion] = STATE(3003), + [sym_preproc_line] = STATE(3003), + [sym_preproc_pragma] = STATE(3003), + [sym_preproc_nullable] = STATE(3003), + [sym_preproc_error] = STATE(3003), + [sym_preproc_warning] = STATE(3003), + [sym_preproc_define] = STATE(3003), + [sym_preproc_undef] = STATE(3003), [anon_sym_SEMI] = ACTIONS(4987), [anon_sym_LBRACK] = ACTIONS(4987), [anon_sym_COLON] = ACTIONS(4987), @@ -472005,16 +472196,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3002] = { - [sym_preproc_region] = STATE(3002), - [sym_preproc_endregion] = STATE(3002), - [sym_preproc_line] = STATE(3002), - [sym_preproc_pragma] = STATE(3002), - [sym_preproc_nullable] = STATE(3002), - [sym_preproc_error] = STATE(3002), - [sym_preproc_warning] = STATE(3002), - [sym_preproc_define] = STATE(3002), - [sym_preproc_undef] = STATE(3002), + [3004] = { + [sym_preproc_region] = STATE(3004), + [sym_preproc_endregion] = STATE(3004), + [sym_preproc_line] = STATE(3004), + [sym_preproc_pragma] = STATE(3004), + [sym_preproc_nullable] = STATE(3004), + [sym_preproc_error] = STATE(3004), + [sym_preproc_warning] = STATE(3004), + [sym_preproc_define] = STATE(3004), + [sym_preproc_undef] = STATE(3004), [anon_sym_SEMI] = ACTIONS(4991), [anon_sym_LBRACK] = ACTIONS(4991), [anon_sym_COLON] = ACTIONS(4991), @@ -472083,162 +472274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3003] = { - [sym_preproc_region] = STATE(3003), - [sym_preproc_endregion] = STATE(3003), - [sym_preproc_line] = STATE(3003), - [sym_preproc_pragma] = STATE(3003), - [sym_preproc_nullable] = STATE(3003), - [sym_preproc_error] = STATE(3003), - [sym_preproc_warning] = STATE(3003), - [sym_preproc_define] = STATE(3003), - [sym_preproc_undef] = STATE(3003), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4121), - [anon_sym_or] = ACTIONS(4119), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_from] = ACTIONS(4121), - [anon_sym_join] = ACTIONS(4121), - [anon_sym_on] = ACTIONS(4121), - [anon_sym_equals] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_orderby] = ACTIONS(4121), - [anon_sym_group] = ACTIONS(4121), - [anon_sym_by] = ACTIONS(4121), - [anon_sym_select] = ACTIONS(4121), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - [aux_sym_preproc_if_token3] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3004] = { - [sym_preproc_region] = STATE(3004), - [sym_preproc_endregion] = STATE(3004), - [sym_preproc_line] = STATE(3004), - [sym_preproc_pragma] = STATE(3004), - [sym_preproc_nullable] = STATE(3004), - [sym_preproc_error] = STATE(3004), - [sym_preproc_warning] = STATE(3004), - [sym_preproc_define] = STATE(3004), - [sym_preproc_undef] = STATE(3004), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4158), - [anon_sym_where] = ACTIONS(4158), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_EQ_GT] = ACTIONS(4158), - [anon_sym_switch] = ACTIONS(4158), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4158), - [anon_sym_or] = ACTIONS(4156), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_from] = ACTIONS(4158), - [anon_sym_join] = ACTIONS(4158), - [anon_sym_on] = ACTIONS(4158), - [anon_sym_equals] = ACTIONS(4158), - [anon_sym_let] = ACTIONS(4158), - [anon_sym_orderby] = ACTIONS(4158), - [anon_sym_group] = ACTIONS(4158), - [anon_sym_by] = ACTIONS(4158), - [anon_sym_select] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_is] = ACTIONS(4158), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4158), - [aux_sym_preproc_if_token3] = ACTIONS(4158), - [aux_sym_preproc_else_token1] = ACTIONS(4158), - [aux_sym_preproc_elif_token1] = ACTIONS(4158), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3005] = { [sym_preproc_region] = STATE(3005), [sym_preproc_endregion] = STATE(3005), @@ -472405,63 +472440,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3007), [sym_preproc_define] = STATE(3007), [sym_preproc_undef] = STATE(3007), - [anon_sym_SEMI] = ACTIONS(4023), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_EQ_GT] = ACTIONS(4023), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4023), - [aux_sym_preproc_if_token3] = ACTIONS(4023), - [aux_sym_preproc_else_token1] = ACTIONS(4023), - [aux_sym_preproc_elif_token1] = ACTIONS(4023), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_from] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_join] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_let] = ACTIONS(4967), + [anon_sym_orderby] = ACTIONS(4967), + [anon_sym_group] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_select] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472561,63 +472596,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3009), [sym_preproc_define] = STATE(3009), [sym_preproc_undef] = STATE(3009), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_RPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4100), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_in] = ACTIONS(4100), - [anon_sym_where] = ACTIONS(4100), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_EQ_GT] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4100), - [anon_sym_or] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_from] = ACTIONS(4100), - [anon_sym_join] = ACTIONS(4100), - [anon_sym_on] = ACTIONS(4100), - [anon_sym_equals] = ACTIONS(4100), - [anon_sym_let] = ACTIONS(4100), - [anon_sym_orderby] = ACTIONS(4100), - [anon_sym_group] = ACTIONS(4100), - [anon_sym_by] = ACTIONS(4100), - [anon_sym_select] = ACTIONS(4100), - [anon_sym_as] = ACTIONS(4100), - [anon_sym_is] = ACTIONS(4100), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4100), - [aux_sym_preproc_if_token3] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_RPAREN] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_EQ_GT] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4148), + [anon_sym_or] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4148), + [anon_sym_from] = ACTIONS(4148), + [anon_sym_join] = ACTIONS(4148), + [anon_sym_on] = ACTIONS(4148), + [anon_sym_equals] = ACTIONS(4148), + [anon_sym_let] = ACTIONS(4148), + [anon_sym_orderby] = ACTIONS(4148), + [anon_sym_group] = ACTIONS(4148), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_select] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4148), + [aux_sym_preproc_if_token3] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472639,84 +472674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3010), [sym_preproc_define] = STATE(3010), [sym_preproc_undef] = STATE(3010), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3011] = { - [sym_preproc_region] = STATE(3011), - [sym_preproc_endregion] = STATE(3011), - [sym_preproc_line] = STATE(3011), - [sym_preproc_pragma] = STATE(3011), - [sym_preproc_nullable] = STATE(3011), - [sym_preproc_error] = STATE(3011), - [sym_preproc_warning] = STATE(3011), - [sym_preproc_define] = STATE(3011), - [sym_preproc_undef] = STATE(3011), [anon_sym_SEMI] = ACTIONS(5007), [anon_sym_LBRACK] = ACTIONS(5007), [anon_sym_COLON] = ACTIONS(5007), @@ -472785,60 +472742,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3012] = { - [sym_preproc_region] = STATE(3012), - [sym_preproc_endregion] = STATE(3012), - [sym_preproc_line] = STATE(3012), - [sym_preproc_pragma] = STATE(3012), - [sym_preproc_nullable] = STATE(3012), - [sym_preproc_error] = STATE(3012), - [sym_preproc_warning] = STATE(3012), - [sym_preproc_define] = STATE(3012), - [sym_preproc_undef] = STATE(3012), - [sym__identifier_token] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_global] = ACTIONS(5011), - [anon_sym_unsafe] = ACTIONS(5011), - [anon_sym_static] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_event] = ACTIONS(5011), - [anon_sym_class] = ACTIONS(5011), - [anon_sym_ref] = ACTIONS(5011), - [anon_sym_struct] = ACTIONS(5011), - [anon_sym_enum] = ACTIONS(5011), - [anon_sym_interface] = ACTIONS(5011), - [anon_sym_delegate] = ACTIONS(5011), - [anon_sym_record] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_async] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_file] = ACTIONS(5011), - [anon_sym_fixed] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_new] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_partial] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_readonly] = ACTIONS(5011), - [anon_sym_required] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_virtual] = ACTIONS(5011), - [anon_sym_volatile] = ACTIONS(5011), + [3011] = { + [sym_preproc_region] = STATE(3011), + [sym_preproc_endregion] = STATE(3011), + [sym_preproc_line] = STATE(3011), + [sym_preproc_pragma] = STATE(3011), + [sym_preproc_nullable] = STATE(3011), + [sym_preproc_error] = STATE(3011), + [sym_preproc_warning] = STATE(3011), + [sym_preproc_define] = STATE(3011), + [sym_preproc_undef] = STATE(3011), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_COLON] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_in] = ACTIONS(5013), [anon_sym_where] = ACTIONS(5011), - [anon_sym_notnull] = ACTIONS(5011), - [anon_sym_unmanaged] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5013), - [anon_sym_implicit] = ACTIONS(5011), - [anon_sym_explicit] = ACTIONS(5011), - [anon_sym_scoped] = ACTIONS(5011), - [anon_sym_var] = ACTIONS(5011), - [sym_predefined_type] = ACTIONS(5011), - [anon_sym_yield] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), + [anon_sym_QMARK] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5011), + [anon_sym_CARET] = ACTIONS(5011), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_AMP] = ACTIONS(5013), + [anon_sym_LT_LT] = ACTIONS(5011), + [anon_sym_GT_GT] = ACTIONS(5013), + [anon_sym_GT_GT_GT] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_EQ_GT] = ACTIONS(5011), + [anon_sym_switch] = ACTIONS(5011), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_and] = ACTIONS(5011), + [anon_sym_or] = ACTIONS(5013), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_QMARK_QMARK] = ACTIONS(5011), [anon_sym_from] = ACTIONS(5011), [anon_sym_into] = ACTIONS(5011), [anon_sym_join] = ACTIONS(5011), @@ -472846,12 +472799,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(5011), [anon_sym_let] = ACTIONS(5011), [anon_sym_orderby] = ACTIONS(5011), - [anon_sym_ascending] = ACTIONS(5011), - [anon_sym_descending] = ACTIONS(5011), [anon_sym_group] = ACTIONS(5011), [anon_sym_by] = ACTIONS(5011), [anon_sym_select] = ACTIONS(5011), - [aux_sym_preproc_if_token1] = ACTIONS(5013), + [anon_sym_as] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5011), + [anon_sym_DASH_GT] = ACTIONS(5011), + [anon_sym_with] = ACTIONS(5011), + [aux_sym_preproc_if_token3] = ACTIONS(5011), + [aux_sym_preproc_else_token1] = ACTIONS(5011), + [aux_sym_preproc_elif_token1] = ACTIONS(5011), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3012] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6128), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5760), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), + [sym_preproc_region] = STATE(3012), + [sym_preproc_endregion] = STATE(3012), + [sym_preproc_line] = STATE(3012), + [sym_preproc_pragma] = STATE(3012), + [sym_preproc_nullable] = STATE(3012), + [sym_preproc_error] = STATE(3012), + [sym_preproc_warning] = STATE(3012), + [sym_preproc_define] = STATE(3012), + [sym_preproc_undef] = STATE(3012), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4439), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3430), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_params] = ACTIONS(4757), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472951,84 +472986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3014), [sym_preproc_define] = STATE(3014), [sym_preproc_undef] = STATE(3014), - [anon_sym_SEMI] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_EQ_GT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4017), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4019), - [anon_sym_join] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4019), - [anon_sym_equals] = ACTIONS(4019), - [anon_sym_let] = ACTIONS(4019), - [anon_sym_orderby] = ACTIONS(4019), - [anon_sym_group] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4019), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4019), - [aux_sym_preproc_if_token3] = ACTIONS(4019), - [aux_sym_preproc_else_token1] = ACTIONS(4019), - [aux_sym_preproc_elif_token1] = ACTIONS(4019), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3015] = { - [sym_preproc_region] = STATE(3015), - [sym_preproc_endregion] = STATE(3015), - [sym_preproc_line] = STATE(3015), - [sym_preproc_pragma] = STATE(3015), - [sym_preproc_nullable] = STATE(3015), - [sym_preproc_error] = STATE(3015), - [sym_preproc_warning] = STATE(3015), - [sym_preproc_define] = STATE(3015), - [sym_preproc_undef] = STATE(3015), [anon_sym_SEMI] = ACTIONS(5019), [anon_sym_LBRACK] = ACTIONS(5019), [anon_sym_COLON] = ACTIONS(5019), @@ -473097,94 +473054,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3016] = { - [sym_preproc_region] = STATE(3016), - [sym_preproc_endregion] = STATE(3016), - [sym_preproc_line] = STATE(3016), - [sym_preproc_pragma] = STATE(3016), - [sym_preproc_nullable] = STATE(3016), - [sym_preproc_error] = STATE(3016), - [sym_preproc_warning] = STATE(3016), - [sym_preproc_define] = STATE(3016), - [sym_preproc_undef] = STATE(3016), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_in] = ACTIONS(3721), - [anon_sym_where] = ACTIONS(3721), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_switch] = ACTIONS(3721), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3721), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_from] = ACTIONS(3721), - [anon_sym_join] = ACTIONS(3721), - [anon_sym_on] = ACTIONS(3721), - [anon_sym_equals] = ACTIONS(3721), - [anon_sym_let] = ACTIONS(3721), - [anon_sym_orderby] = ACTIONS(3721), - [anon_sym_group] = ACTIONS(3721), - [anon_sym_by] = ACTIONS(3721), - [anon_sym_select] = ACTIONS(3721), - [anon_sym_as] = ACTIONS(3721), - [anon_sym_is] = ACTIONS(3721), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3721), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3017] = { - [sym_preproc_region] = STATE(3017), - [sym_preproc_endregion] = STATE(3017), - [sym_preproc_line] = STATE(3017), - [sym_preproc_pragma] = STATE(3017), - [sym_preproc_nullable] = STATE(3017), - [sym_preproc_error] = STATE(3017), - [sym_preproc_warning] = STATE(3017), - [sym_preproc_define] = STATE(3017), - [sym_preproc_undef] = STATE(3017), + [3015] = { + [sym_preproc_region] = STATE(3015), + [sym_preproc_endregion] = STATE(3015), + [sym_preproc_line] = STATE(3015), + [sym_preproc_pragma] = STATE(3015), + [sym_preproc_nullable] = STATE(3015), + [sym_preproc_error] = STATE(3015), + [sym_preproc_warning] = STATE(3015), + [sym_preproc_define] = STATE(3015), + [sym_preproc_undef] = STATE(3015), [anon_sym_SEMI] = ACTIONS(5023), [anon_sym_LBRACK] = ACTIONS(5023), [anon_sym_COLON] = ACTIONS(5023), @@ -473253,16 +473132,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3018] = { - [sym_preproc_region] = STATE(3018), - [sym_preproc_endregion] = STATE(3018), - [sym_preproc_line] = STATE(3018), - [sym_preproc_pragma] = STATE(3018), - [sym_preproc_nullable] = STATE(3018), - [sym_preproc_error] = STATE(3018), - [sym_preproc_warning] = STATE(3018), - [sym_preproc_define] = STATE(3018), - [sym_preproc_undef] = STATE(3018), + [3016] = { + [sym_preproc_region] = STATE(3016), + [sym_preproc_endregion] = STATE(3016), + [sym_preproc_line] = STATE(3016), + [sym_preproc_pragma] = STATE(3016), + [sym_preproc_nullable] = STATE(3016), + [sym_preproc_error] = STATE(3016), + [sym_preproc_warning] = STATE(3016), + [sym_preproc_define] = STATE(3016), + [sym_preproc_undef] = STATE(3016), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4028), + [anon_sym_join] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_let] = ACTIONS(4028), + [anon_sym_orderby] = ACTIONS(4028), + [anon_sym_group] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_select] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3017] = { + [sym_preproc_region] = STATE(3017), + [sym_preproc_endregion] = STATE(3017), + [sym_preproc_line] = STATE(3017), + [sym_preproc_pragma] = STATE(3017), + [sym_preproc_nullable] = STATE(3017), + [sym_preproc_error] = STATE(3017), + [sym_preproc_warning] = STATE(3017), + [sym_preproc_define] = STATE(3017), + [sym_preproc_undef] = STATE(3017), [anon_sym_SEMI] = ACTIONS(5027), [anon_sym_LBRACK] = ACTIONS(5027), [anon_sym_COLON] = ACTIONS(5027), @@ -473331,6 +473288,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3018] = { + [sym_preproc_region] = STATE(3018), + [sym_preproc_endregion] = STATE(3018), + [sym_preproc_line] = STATE(3018), + [sym_preproc_pragma] = STATE(3018), + [sym_preproc_nullable] = STATE(3018), + [sym_preproc_error] = STATE(3018), + [sym_preproc_warning] = STATE(3018), + [sym_preproc_define] = STATE(3018), + [sym_preproc_undef] = STATE(3018), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4032), + [anon_sym_or] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_from] = ACTIONS(4032), + [anon_sym_join] = ACTIONS(4032), + [anon_sym_on] = ACTIONS(4032), + [anon_sym_equals] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_orderby] = ACTIONS(4032), + [anon_sym_group] = ACTIONS(4032), + [anon_sym_by] = ACTIONS(4032), + [anon_sym_select] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_is] = ACTIONS(4032), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4032), + [aux_sym_preproc_if_token3] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3019] = { [sym_preproc_region] = STATE(3019), [sym_preproc_endregion] = STATE(3019), @@ -473341,63 +473376,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3019), [sym_preproc_define] = STATE(3019), [sym_preproc_undef] = STATE(3019), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4933), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_from] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_join] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_let] = ACTIONS(4931), - [anon_sym_orderby] = ACTIONS(4931), - [anon_sym_group] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_select] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_in] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_switch] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3699), + [anon_sym_join] = ACTIONS(3699), + [anon_sym_on] = ACTIONS(3699), + [anon_sym_equals] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_orderby] = ACTIONS(3699), + [anon_sym_group] = ACTIONS(3699), + [anon_sym_by] = ACTIONS(3699), + [anon_sym_select] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_is] = ACTIONS(3699), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [aux_sym_preproc_if_token3] = ACTIONS(3699), + [aux_sym_preproc_else_token1] = ACTIONS(3699), + [aux_sym_preproc_elif_token1] = ACTIONS(3699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473575,84 +473610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3022), [sym_preproc_define] = STATE(3022), [sym_preproc_undef] = STATE(3022), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3668), - [anon_sym_where] = ACTIONS(3668), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_join] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_orderby] = ACTIONS(3668), - [anon_sym_group] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_select] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3023] = { - [sym_preproc_region] = STATE(3023), - [sym_preproc_endregion] = STATE(3023), - [sym_preproc_line] = STATE(3023), - [sym_preproc_pragma] = STATE(3023), - [sym_preproc_nullable] = STATE(3023), - [sym_preproc_error] = STATE(3023), - [sym_preproc_warning] = STATE(3023), - [sym_preproc_define] = STATE(3023), - [sym_preproc_undef] = STATE(3023), [anon_sym_SEMI] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(5039), [anon_sym_COLON] = ACTIONS(5039), @@ -473721,60 +473678,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3024] = { - [sym_preproc_region] = STATE(3024), - [sym_preproc_endregion] = STATE(3024), - [sym_preproc_line] = STATE(3024), - [sym_preproc_pragma] = STATE(3024), - [sym_preproc_nullable] = STATE(3024), - [sym_preproc_error] = STATE(3024), - [sym_preproc_warning] = STATE(3024), - [sym_preproc_define] = STATE(3024), - [sym_preproc_undef] = STATE(3024), - [sym__identifier_token] = ACTIONS(5043), - [anon_sym_extern] = ACTIONS(5043), - [anon_sym_alias] = ACTIONS(5043), - [anon_sym_global] = ACTIONS(5043), - [anon_sym_unsafe] = ACTIONS(5043), - [anon_sym_static] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_event] = ACTIONS(5043), - [anon_sym_class] = ACTIONS(5043), - [anon_sym_ref] = ACTIONS(5043), - [anon_sym_struct] = ACTIONS(5043), - [anon_sym_enum] = ACTIONS(5043), - [anon_sym_interface] = ACTIONS(5043), - [anon_sym_delegate] = ACTIONS(5043), - [anon_sym_record] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_async] = ACTIONS(5043), - [anon_sym_const] = ACTIONS(5043), - [anon_sym_file] = ACTIONS(5043), - [anon_sym_fixed] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_new] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_partial] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_readonly] = ACTIONS(5043), - [anon_sym_required] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_virtual] = ACTIONS(5043), - [anon_sym_volatile] = ACTIONS(5043), + [3023] = { + [sym_preproc_region] = STATE(3023), + [sym_preproc_endregion] = STATE(3023), + [sym_preproc_line] = STATE(3023), + [sym_preproc_pragma] = STATE(3023), + [sym_preproc_nullable] = STATE(3023), + [sym_preproc_error] = STATE(3023), + [sym_preproc_warning] = STATE(3023), + [sym_preproc_define] = STATE(3023), + [sym_preproc_undef] = STATE(3023), + [anon_sym_SEMI] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_COLON] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5045), [anon_sym_where] = ACTIONS(5043), - [anon_sym_notnull] = ACTIONS(5043), - [anon_sym_unmanaged] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5045), - [anon_sym_implicit] = ACTIONS(5043), - [anon_sym_explicit] = ACTIONS(5043), - [anon_sym_scoped] = ACTIONS(5043), - [anon_sym_var] = ACTIONS(5043), - [sym_predefined_type] = ACTIONS(5043), - [anon_sym_yield] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5043), + [anon_sym_DASH_DASH] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_CARET] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5043), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_GT_GT_GT] = ACTIONS(5043), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_GT_EQ] = ACTIONS(5043), + [anon_sym_LT_EQ] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5045), + [anon_sym_EQ_GT] = ACTIONS(5043), + [anon_sym_switch] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_and] = ACTIONS(5043), + [anon_sym_or] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_QMARK_QMARK] = ACTIONS(5043), [anon_sym_from] = ACTIONS(5043), [anon_sym_into] = ACTIONS(5043), [anon_sym_join] = ACTIONS(5043), @@ -473782,12 +473735,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(5043), [anon_sym_let] = ACTIONS(5043), [anon_sym_orderby] = ACTIONS(5043), - [anon_sym_ascending] = ACTIONS(5043), - [anon_sym_descending] = ACTIONS(5043), [anon_sym_group] = ACTIONS(5043), [anon_sym_by] = ACTIONS(5043), [anon_sym_select] = ACTIONS(5043), - [aux_sym_preproc_if_token1] = ACTIONS(5045), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5043), + [anon_sym_with] = ACTIONS(5043), + [aux_sym_preproc_if_token3] = ACTIONS(5043), + [aux_sym_preproc_else_token1] = ACTIONS(5043), + [aux_sym_preproc_elif_token1] = ACTIONS(5043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473799,16 +473756,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3025] = { - [sym_preproc_region] = STATE(3025), - [sym_preproc_endregion] = STATE(3025), - [sym_preproc_line] = STATE(3025), - [sym_preproc_pragma] = STATE(3025), - [sym_preproc_nullable] = STATE(3025), - [sym_preproc_error] = STATE(3025), - [sym_preproc_warning] = STATE(3025), - [sym_preproc_define] = STATE(3025), - [sym_preproc_undef] = STATE(3025), + [3024] = { + [sym_preproc_region] = STATE(3024), + [sym_preproc_endregion] = STATE(3024), + [sym_preproc_line] = STATE(3024), + [sym_preproc_pragma] = STATE(3024), + [sym_preproc_nullable] = STATE(3024), + [sym_preproc_error] = STATE(3024), + [sym_preproc_warning] = STATE(3024), + [sym_preproc_define] = STATE(3024), + [sym_preproc_undef] = STATE(3024), [anon_sym_SEMI] = ACTIONS(5047), [anon_sym_LBRACK] = ACTIONS(5047), [anon_sym_COLON] = ACTIONS(5047), @@ -473877,6 +473834,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3025] = { + [sym_preproc_region] = STATE(3025), + [sym_preproc_endregion] = STATE(3025), + [sym_preproc_line] = STATE(3025), + [sym_preproc_pragma] = STATE(3025), + [sym_preproc_nullable] = STATE(3025), + [sym_preproc_error] = STATE(3025), + [sym_preproc_warning] = STATE(3025), + [sym_preproc_define] = STATE(3025), + [sym_preproc_undef] = STATE(3025), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_in] = ACTIONS(4036), + [anon_sym_where] = ACTIONS(4036), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_EQ_GT] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4036), + [anon_sym_or] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_from] = ACTIONS(4036), + [anon_sym_join] = ACTIONS(4036), + [anon_sym_on] = ACTIONS(4036), + [anon_sym_equals] = ACTIONS(4036), + [anon_sym_let] = ACTIONS(4036), + [anon_sym_orderby] = ACTIONS(4036), + [anon_sym_group] = ACTIONS(4036), + [anon_sym_by] = ACTIONS(4036), + [anon_sym_select] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_is] = ACTIONS(4036), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4036), + [aux_sym_preproc_if_token3] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3026] = { [sym_preproc_region] = STATE(3026), [sym_preproc_endregion] = STATE(3026), @@ -473887,63 +473922,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3026), [sym_preproc_define] = STATE(3026), [sym_preproc_undef] = STATE(3026), - [sym__identifier_token] = ACTIONS(5051), - [anon_sym_extern] = ACTIONS(5051), - [anon_sym_alias] = ACTIONS(5051), - [anon_sym_global] = ACTIONS(5051), - [anon_sym_unsafe] = ACTIONS(5051), - [anon_sym_static] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5053), - [anon_sym_event] = ACTIONS(5051), - [anon_sym_class] = ACTIONS(5051), - [anon_sym_ref] = ACTIONS(5051), - [anon_sym_struct] = ACTIONS(5051), - [anon_sym_enum] = ACTIONS(5051), - [anon_sym_interface] = ACTIONS(5051), - [anon_sym_delegate] = ACTIONS(5051), - [anon_sym_record] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_async] = ACTIONS(5051), - [anon_sym_const] = ACTIONS(5051), - [anon_sym_file] = ACTIONS(5051), - [anon_sym_fixed] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_new] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_partial] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_readonly] = ACTIONS(5051), - [anon_sym_required] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_virtual] = ACTIONS(5051), - [anon_sym_volatile] = ACTIONS(5051), - [anon_sym_where] = ACTIONS(5051), - [anon_sym_notnull] = ACTIONS(5051), - [anon_sym_unmanaged] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5053), - [anon_sym_implicit] = ACTIONS(5051), - [anon_sym_explicit] = ACTIONS(5051), - [anon_sym_scoped] = ACTIONS(5051), - [anon_sym_var] = ACTIONS(5051), - [sym_predefined_type] = ACTIONS(5051), - [anon_sym_yield] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_from] = ACTIONS(5051), - [anon_sym_into] = ACTIONS(5051), - [anon_sym_join] = ACTIONS(5051), - [anon_sym_on] = ACTIONS(5051), - [anon_sym_equals] = ACTIONS(5051), - [anon_sym_let] = ACTIONS(5051), - [anon_sym_orderby] = ACTIONS(5051), - [anon_sym_ascending] = ACTIONS(5051), - [anon_sym_descending] = ACTIONS(5051), - [anon_sym_group] = ACTIONS(5051), - [anon_sym_by] = ACTIONS(5051), - [anon_sym_select] = ACTIONS(5051), - [aux_sym_preproc_if_token1] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_in] = ACTIONS(4040), + [anon_sym_where] = ACTIONS(4040), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_EQ_GT] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4040), + [anon_sym_or] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_from] = ACTIONS(4040), + [anon_sym_join] = ACTIONS(4040), + [anon_sym_on] = ACTIONS(4040), + [anon_sym_equals] = ACTIONS(4040), + [anon_sym_let] = ACTIONS(4040), + [anon_sym_orderby] = ACTIONS(4040), + [anon_sym_group] = ACTIONS(4040), + [anon_sym_by] = ACTIONS(4040), + [anon_sym_select] = ACTIONS(4040), + [anon_sym_as] = ACTIONS(4040), + [anon_sym_is] = ACTIONS(4040), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4040), + [aux_sym_preproc_if_token3] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473965,63 +474000,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3027), [sym_preproc_define] = STATE(3027), [sym_preproc_undef] = STATE(3027), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5057), - [anon_sym_GT_GT_GT] = ACTIONS(5055), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_GT_EQ] = ACTIONS(5055), - [anon_sym_LT_EQ] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_EQ_GT] = ACTIONS(5055), - [anon_sym_switch] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5055), - [anon_sym_and] = ACTIONS(5055), - [anon_sym_or] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5055), - [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_QMARK_QMARK] = ACTIONS(5055), - [anon_sym_from] = ACTIONS(5055), - [anon_sym_into] = ACTIONS(5055), - [anon_sym_join] = ACTIONS(5055), - [anon_sym_on] = ACTIONS(5055), - [anon_sym_equals] = ACTIONS(5055), - [anon_sym_let] = ACTIONS(5055), - [anon_sym_orderby] = ACTIONS(5055), - [anon_sym_group] = ACTIONS(5055), - [anon_sym_by] = ACTIONS(5055), - [anon_sym_select] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_with] = ACTIONS(5055), - [aux_sym_preproc_if_token3] = ACTIONS(5055), - [aux_sym_preproc_else_token1] = ACTIONS(5055), - [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3668), + [anon_sym_where] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_join] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_orderby] = ACTIONS(3668), + [anon_sym_group] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_select] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474043,63 +474078,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3028), [sym_preproc_define] = STATE(3028), [sym_preproc_undef] = STATE(3028), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4293), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ_GT] = ACTIONS(4291), - [anon_sym_switch] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4291), - [anon_sym_or] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_from] = ACTIONS(4291), - [anon_sym_into] = ACTIONS(4291), - [anon_sym_join] = ACTIONS(4291), - [anon_sym_on] = ACTIONS(4291), - [anon_sym_equals] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_orderby] = ACTIONS(4291), - [anon_sym_group] = ACTIONS(4291), - [anon_sym_by] = ACTIONS(4291), - [anon_sym_select] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4291), - [aux_sym_preproc_if_token3] = ACTIONS(4291), - [aux_sym_preproc_else_token1] = ACTIONS(4291), - [aux_sym_preproc_elif_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5053), + [anon_sym_GT_GT_GT] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_EQ_GT] = ACTIONS(5051), + [anon_sym_switch] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_and] = ACTIONS(5051), + [anon_sym_or] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_QMARK_QMARK] = ACTIONS(5051), + [anon_sym_from] = ACTIONS(5051), + [anon_sym_into] = ACTIONS(5051), + [anon_sym_join] = ACTIONS(5051), + [anon_sym_on] = ACTIONS(5051), + [anon_sym_equals] = ACTIONS(5051), + [anon_sym_let] = ACTIONS(5051), + [anon_sym_orderby] = ACTIONS(5051), + [anon_sym_group] = ACTIONS(5051), + [anon_sym_by] = ACTIONS(5051), + [anon_sym_select] = ACTIONS(5051), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5051), + [anon_sym_with] = ACTIONS(5051), + [aux_sym_preproc_if_token3] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474121,63 +474156,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3029), [sym_preproc_define] = STATE(3029), [sym_preproc_undef] = STATE(3029), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(5059), - [anon_sym_GT_GT] = ACTIONS(5061), - [anon_sym_GT_GT_GT] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_EQ_GT] = ACTIONS(5059), - [anon_sym_switch] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_and] = ACTIONS(5059), - [anon_sym_or] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_QMARK_QMARK] = ACTIONS(5059), - [anon_sym_from] = ACTIONS(5059), - [anon_sym_into] = ACTIONS(5059), - [anon_sym_join] = ACTIONS(5059), - [anon_sym_on] = ACTIONS(5059), - [anon_sym_equals] = ACTIONS(5059), - [anon_sym_let] = ACTIONS(5059), - [anon_sym_orderby] = ACTIONS(5059), - [anon_sym_group] = ACTIONS(5059), - [anon_sym_by] = ACTIONS(5059), - [anon_sym_select] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5059), - [anon_sym_with] = ACTIONS(5059), - [aux_sym_preproc_if_token3] = ACTIONS(5059), - [aux_sym_preproc_else_token1] = ACTIONS(5059), - [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [sym__identifier_token] = ACTIONS(5055), + [anon_sym_extern] = ACTIONS(5055), + [anon_sym_alias] = ACTIONS(5055), + [anon_sym_global] = ACTIONS(5055), + [anon_sym_unsafe] = ACTIONS(5055), + [anon_sym_static] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_event] = ACTIONS(5055), + [anon_sym_class] = ACTIONS(5055), + [anon_sym_ref] = ACTIONS(5055), + [anon_sym_struct] = ACTIONS(5055), + [anon_sym_enum] = ACTIONS(5055), + [anon_sym_interface] = ACTIONS(5055), + [anon_sym_delegate] = ACTIONS(5055), + [anon_sym_record] = ACTIONS(5055), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_async] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5055), + [anon_sym_file] = ACTIONS(5055), + [anon_sym_fixed] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_new] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_partial] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_readonly] = ACTIONS(5055), + [anon_sym_required] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_virtual] = ACTIONS(5055), + [anon_sym_volatile] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_notnull] = ACTIONS(5055), + [anon_sym_unmanaged] = ACTIONS(5055), + [anon_sym_TILDE] = ACTIONS(5057), + [anon_sym_implicit] = ACTIONS(5055), + [anon_sym_explicit] = ACTIONS(5055), + [anon_sym_scoped] = ACTIONS(5055), + [anon_sym_var] = ACTIONS(5055), + [sym_predefined_type] = ACTIONS(5055), + [anon_sym_yield] = ACTIONS(5055), + [anon_sym_when] = ACTIONS(5055), + [anon_sym_from] = ACTIONS(5055), + [anon_sym_into] = ACTIONS(5055), + [anon_sym_join] = ACTIONS(5055), + [anon_sym_on] = ACTIONS(5055), + [anon_sym_equals] = ACTIONS(5055), + [anon_sym_let] = ACTIONS(5055), + [anon_sym_orderby] = ACTIONS(5055), + [anon_sym_ascending] = ACTIONS(5055), + [anon_sym_descending] = ACTIONS(5055), + [anon_sym_group] = ACTIONS(5055), + [anon_sym_by] = ACTIONS(5055), + [anon_sym_select] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5057), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474199,63 +474234,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3030), [sym_preproc_define] = STATE(3030), [sym_preproc_undef] = STATE(3030), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_in] = ACTIONS(1975), - [anon_sym_where] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_and] = ACTIONS(1977), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1977), - [anon_sym_into] = ACTIONS(1977), - [anon_sym_join] = ACTIONS(1977), - [anon_sym_on] = ACTIONS(1977), - [anon_sym_equals] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_orderby] = ACTIONS(1977), - [anon_sym_group] = ACTIONS(1977), - [anon_sym_by] = ACTIONS(1977), - [anon_sym_select] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_is] = ACTIONS(1977), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), - [aux_sym_preproc_if_token3] = ACTIONS(1977), - [aux_sym_preproc_else_token1] = ACTIONS(1977), - [aux_sym_preproc_elif_token1] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474277,63 +474312,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3031), [sym_preproc_define] = STATE(3031), [sym_preproc_undef] = STATE(3031), - [anon_sym_SEMI] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_RPAREN] = ACTIONS(5065), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5067), - [anon_sym_LT_LT] = ACTIONS(5065), - [anon_sym_GT_GT] = ACTIONS(5067), - [anon_sym_GT_GT_GT] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_EQ_GT] = ACTIONS(5065), - [anon_sym_switch] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_and] = ACTIONS(5065), - [anon_sym_or] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_QMARK_QMARK] = ACTIONS(5065), - [anon_sym_from] = ACTIONS(5065), - [anon_sym_into] = ACTIONS(5065), - [anon_sym_join] = ACTIONS(5065), - [anon_sym_on] = ACTIONS(5065), - [anon_sym_equals] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5065), - [anon_sym_orderby] = ACTIONS(5065), - [anon_sym_group] = ACTIONS(5065), - [anon_sym_by] = ACTIONS(5065), - [anon_sym_select] = ACTIONS(5065), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5065), - [anon_sym_with] = ACTIONS(5065), - [aux_sym_preproc_if_token3] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), + [sym__identifier_token] = ACTIONS(5059), + [anon_sym_extern] = ACTIONS(5059), + [anon_sym_alias] = ACTIONS(5059), + [anon_sym_global] = ACTIONS(5059), + [anon_sym_unsafe] = ACTIONS(5059), + [anon_sym_static] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_event] = ACTIONS(5059), + [anon_sym_class] = ACTIONS(5059), + [anon_sym_ref] = ACTIONS(5059), + [anon_sym_struct] = ACTIONS(5059), + [anon_sym_enum] = ACTIONS(5059), + [anon_sym_interface] = ACTIONS(5059), + [anon_sym_delegate] = ACTIONS(5059), + [anon_sym_record] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_async] = ACTIONS(5059), + [anon_sym_const] = ACTIONS(5059), + [anon_sym_file] = ACTIONS(5059), + [anon_sym_fixed] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_new] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_partial] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_readonly] = ACTIONS(5059), + [anon_sym_required] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_virtual] = ACTIONS(5059), + [anon_sym_volatile] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_notnull] = ACTIONS(5059), + [anon_sym_unmanaged] = ACTIONS(5059), + [anon_sym_TILDE] = ACTIONS(5061), + [anon_sym_implicit] = ACTIONS(5059), + [anon_sym_explicit] = ACTIONS(5059), + [anon_sym_scoped] = ACTIONS(5059), + [anon_sym_var] = ACTIONS(5059), + [sym_predefined_type] = ACTIONS(5059), + [anon_sym_yield] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_from] = ACTIONS(5059), + [anon_sym_into] = ACTIONS(5059), + [anon_sym_join] = ACTIONS(5059), + [anon_sym_on] = ACTIONS(5059), + [anon_sym_equals] = ACTIONS(5059), + [anon_sym_let] = ACTIONS(5059), + [anon_sym_orderby] = ACTIONS(5059), + [anon_sym_ascending] = ACTIONS(5059), + [anon_sym_descending] = ACTIONS(5059), + [anon_sym_group] = ACTIONS(5059), + [anon_sym_by] = ACTIONS(5059), + [anon_sym_select] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474355,63 +474390,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3032), [sym_preproc_define] = STATE(3032), [sym_preproc_undef] = STATE(3032), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5071), - [anon_sym_LT_LT] = ACTIONS(5069), - [anon_sym_GT_GT] = ACTIONS(5071), - [anon_sym_GT_GT_GT] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_EQ_GT] = ACTIONS(5069), - [anon_sym_switch] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_or] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_QMARK_QMARK] = ACTIONS(5069), - [anon_sym_from] = ACTIONS(5069), - [anon_sym_into] = ACTIONS(5069), - [anon_sym_join] = ACTIONS(5069), - [anon_sym_on] = ACTIONS(5069), - [anon_sym_equals] = ACTIONS(5069), - [anon_sym_let] = ACTIONS(5069), - [anon_sym_orderby] = ACTIONS(5069), - [anon_sym_group] = ACTIONS(5069), - [anon_sym_by] = ACTIONS(5069), - [anon_sym_select] = ACTIONS(5069), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5069), - [anon_sym_with] = ACTIONS(5069), - [aux_sym_preproc_if_token3] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_COLON] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5065), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_QMARK] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5065), + [anon_sym_GT_GT_GT] = ACTIONS(5063), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_EQ_GT] = ACTIONS(5063), + [anon_sym_switch] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5063), + [anon_sym_and] = ACTIONS(5063), + [anon_sym_or] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), + [anon_sym_QMARK_QMARK] = ACTIONS(5063), + [anon_sym_from] = ACTIONS(5063), + [anon_sym_into] = ACTIONS(5063), + [anon_sym_join] = ACTIONS(5063), + [anon_sym_on] = ACTIONS(5063), + [anon_sym_equals] = ACTIONS(5063), + [anon_sym_let] = ACTIONS(5063), + [anon_sym_orderby] = ACTIONS(5063), + [anon_sym_group] = ACTIONS(5063), + [anon_sym_by] = ACTIONS(5063), + [anon_sym_select] = ACTIONS(5063), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5063), + [anon_sym_with] = ACTIONS(5063), + [aux_sym_preproc_if_token3] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474424,28 +474459,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3033] = { - [sym_attribute_list] = STATE(6066), - [sym__attribute_list] = STATE(6068), - [sym_type_parameter] = STATE(7003), - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7091), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(6343), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(6066), [sym_preproc_region] = STATE(3033), [sym_preproc_endregion] = STATE(3033), [sym_preproc_line] = STATE(3033), @@ -474455,41 +474468,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3033), [sym_preproc_define] = STATE(3033), [sym_preproc_undef] = STATE(3033), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5807), - [aux_sym_type_argument_list_repeat1] = STATE(7098), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_in] = ACTIONS(5083), - [anon_sym_out] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_COLON] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5069), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(5069), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5069), + [anon_sym_GT_GT_GT] = ACTIONS(5067), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5069), + [anon_sym_EQ_GT] = ACTIONS(5067), + [anon_sym_switch] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5067), + [anon_sym_and] = ACTIONS(5067), + [anon_sym_or] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_QMARK_QMARK] = ACTIONS(5067), + [anon_sym_from] = ACTIONS(5067), + [anon_sym_into] = ACTIONS(5067), + [anon_sym_join] = ACTIONS(5067), + [anon_sym_on] = ACTIONS(5067), + [anon_sym_equals] = ACTIONS(5067), + [anon_sym_let] = ACTIONS(5067), + [anon_sym_orderby] = ACTIONS(5067), + [anon_sym_group] = ACTIONS(5067), + [anon_sym_by] = ACTIONS(5067), + [anon_sym_select] = ACTIONS(5067), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5067), + [anon_sym_with] = ACTIONS(5067), + [aux_sym_preproc_if_token3] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474511,63 +474546,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3034), [sym_preproc_define] = STATE(3034), [sym_preproc_undef] = STATE(3034), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5093), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_CARET] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_LT_LT] = ACTIONS(5091), - [anon_sym_GT_GT] = ACTIONS(5093), - [anon_sym_GT_GT_GT] = ACTIONS(5091), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_GT_EQ] = ACTIONS(5091), - [anon_sym_LT_EQ] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_EQ_GT] = ACTIONS(5091), - [anon_sym_switch] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5091), - [anon_sym_and] = ACTIONS(5091), - [anon_sym_or] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_QMARK_QMARK] = ACTIONS(5091), - [anon_sym_from] = ACTIONS(5091), - [anon_sym_into] = ACTIONS(5091), - [anon_sym_join] = ACTIONS(5091), - [anon_sym_on] = ACTIONS(5091), - [anon_sym_equals] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5091), - [anon_sym_orderby] = ACTIONS(5091), - [anon_sym_group] = ACTIONS(5091), - [anon_sym_by] = ACTIONS(5091), - [anon_sym_select] = ACTIONS(5091), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_DASH_GT] = ACTIONS(5091), - [anon_sym_with] = ACTIONS(5091), - [aux_sym_preproc_if_token3] = ACTIONS(5091), - [aux_sym_preproc_else_token1] = ACTIONS(5091), - [aux_sym_preproc_elif_token1] = ACTIONS(5091), + [sym__identifier_token] = ACTIONS(5071), + [anon_sym_extern] = ACTIONS(5071), + [anon_sym_alias] = ACTIONS(5071), + [anon_sym_global] = ACTIONS(5071), + [anon_sym_unsafe] = ACTIONS(5071), + [anon_sym_static] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5073), + [anon_sym_event] = ACTIONS(5071), + [anon_sym_class] = ACTIONS(5071), + [anon_sym_ref] = ACTIONS(5071), + [anon_sym_struct] = ACTIONS(5071), + [anon_sym_enum] = ACTIONS(5071), + [anon_sym_interface] = ACTIONS(5071), + [anon_sym_delegate] = ACTIONS(5071), + [anon_sym_record] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_async] = ACTIONS(5071), + [anon_sym_const] = ACTIONS(5071), + [anon_sym_file] = ACTIONS(5071), + [anon_sym_fixed] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_new] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_partial] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_readonly] = ACTIONS(5071), + [anon_sym_required] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_virtual] = ACTIONS(5071), + [anon_sym_volatile] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_notnull] = ACTIONS(5071), + [anon_sym_unmanaged] = ACTIONS(5071), + [anon_sym_TILDE] = ACTIONS(5073), + [anon_sym_implicit] = ACTIONS(5071), + [anon_sym_explicit] = ACTIONS(5071), + [anon_sym_scoped] = ACTIONS(5071), + [anon_sym_var] = ACTIONS(5071), + [sym_predefined_type] = ACTIONS(5071), + [anon_sym_yield] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_from] = ACTIONS(5071), + [anon_sym_into] = ACTIONS(5071), + [anon_sym_join] = ACTIONS(5071), + [anon_sym_on] = ACTIONS(5071), + [anon_sym_equals] = ACTIONS(5071), + [anon_sym_let] = ACTIONS(5071), + [anon_sym_orderby] = ACTIONS(5071), + [anon_sym_ascending] = ACTIONS(5071), + [anon_sym_descending] = ACTIONS(5071), + [anon_sym_group] = ACTIONS(5071), + [anon_sym_by] = ACTIONS(5071), + [anon_sym_select] = ACTIONS(5071), + [aux_sym_preproc_if_token1] = ACTIONS(5073), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474589,63 +474624,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3035), [sym_preproc_define] = STATE(3035), [sym_preproc_undef] = STATE(3035), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_GT_GT_GT] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_EQ_GT] = ACTIONS(5095), - [anon_sym_switch] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_and] = ACTIONS(5095), - [anon_sym_or] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_QMARK_QMARK] = ACTIONS(5095), - [anon_sym_from] = ACTIONS(5095), - [anon_sym_into] = ACTIONS(5095), - [anon_sym_join] = ACTIONS(5095), - [anon_sym_on] = ACTIONS(5095), - [anon_sym_equals] = ACTIONS(5095), - [anon_sym_let] = ACTIONS(5095), - [anon_sym_orderby] = ACTIONS(5095), - [anon_sym_group] = ACTIONS(5095), - [anon_sym_by] = ACTIONS(5095), - [anon_sym_select] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5095), - [anon_sym_with] = ACTIONS(5095), - [aux_sym_preproc_if_token3] = ACTIONS(5095), - [aux_sym_preproc_else_token1] = ACTIONS(5095), - [aux_sym_preproc_elif_token1] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3686), + [anon_sym_where] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_join] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_orderby] = ACTIONS(3686), + [anon_sym_group] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_select] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474667,63 +474702,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3036), [sym_preproc_define] = STATE(3036), [sym_preproc_undef] = STATE(3036), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5101), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_GT_GT_GT] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_EQ_GT] = ACTIONS(5099), - [anon_sym_switch] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_or] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_QMARK_QMARK] = ACTIONS(5099), - [anon_sym_from] = ACTIONS(5099), - [anon_sym_into] = ACTIONS(5099), - [anon_sym_join] = ACTIONS(5099), - [anon_sym_on] = ACTIONS(5099), - [anon_sym_equals] = ACTIONS(5099), - [anon_sym_let] = ACTIONS(5099), - [anon_sym_orderby] = ACTIONS(5099), - [anon_sym_group] = ACTIONS(5099), - [anon_sym_by] = ACTIONS(5099), - [anon_sym_select] = ACTIONS(5099), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_with] = ACTIONS(5099), - [aux_sym_preproc_if_token3] = ACTIONS(5099), - [aux_sym_preproc_else_token1] = ACTIONS(5099), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474745,63 +474780,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3037), [sym_preproc_define] = STATE(3037), [sym_preproc_undef] = STATE(3037), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_LT_LT] = ACTIONS(5103), - [anon_sym_GT_GT] = ACTIONS(5105), - [anon_sym_GT_GT_GT] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_EQ_GT] = ACTIONS(5103), - [anon_sym_switch] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_and] = ACTIONS(5103), - [anon_sym_or] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_QMARK_QMARK] = ACTIONS(5103), - [anon_sym_from] = ACTIONS(5103), - [anon_sym_into] = ACTIONS(5103), - [anon_sym_join] = ACTIONS(5103), - [anon_sym_on] = ACTIONS(5103), - [anon_sym_equals] = ACTIONS(5103), - [anon_sym_let] = ACTIONS(5103), - [anon_sym_orderby] = ACTIONS(5103), - [anon_sym_group] = ACTIONS(5103), - [anon_sym_by] = ACTIONS(5103), - [anon_sym_select] = ACTIONS(5103), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5103), - [anon_sym_with] = ACTIONS(5103), - [aux_sym_preproc_if_token3] = ACTIONS(5103), - [aux_sym_preproc_else_token1] = ACTIONS(5103), - [aux_sym_preproc_elif_token1] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_RPAREN] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_and] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_into] = ACTIONS(3167), + [anon_sym_join] = ACTIONS(3167), + [anon_sym_on] = ACTIONS(3167), + [anon_sym_equals] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_orderby] = ACTIONS(3167), + [anon_sym_group] = ACTIONS(3167), + [anon_sym_by] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474823,63 +474858,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3038), [sym_preproc_define] = STATE(3038), [sym_preproc_undef] = STATE(3038), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_in] = ACTIONS(3708), - [anon_sym_where] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_from] = ACTIONS(3708), - [anon_sym_join] = ACTIONS(3708), - [anon_sym_on] = ACTIONS(3708), - [anon_sym_equals] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_orderby] = ACTIONS(3708), - [anon_sym_group] = ACTIONS(3708), - [anon_sym_by] = ACTIONS(3708), - [anon_sym_select] = ACTIONS(3708), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_is] = ACTIONS(3708), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3708), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_event] = ACTIONS(4743), + [anon_sym_class] = ACTIONS(4743), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_record] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4745), + [anon_sym_implicit] = ACTIONS(4743), + [anon_sym_explicit] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474901,63 +474936,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3039), [sym_preproc_define] = STATE(3039), [sym_preproc_undef] = STATE(3039), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_EQ_GT] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4156), + [anon_sym_or] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_from] = ACTIONS(4156), + [anon_sym_join] = ACTIONS(4156), + [anon_sym_on] = ACTIONS(4156), + [anon_sym_equals] = ACTIONS(4156), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_orderby] = ACTIONS(4156), + [anon_sym_group] = ACTIONS(4156), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_select] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4156), + [aux_sym_preproc_if_token3] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474970,6 +475005,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3040] = { + [sym_attribute_list] = STATE(5983), + [sym__attribute_list] = STATE(5984), + [sym_type_parameter] = STATE(7101), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6950), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(6356), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5983), [sym_preproc_region] = STATE(3040), [sym_preproc_endregion] = STATE(3040), [sym_preproc_line] = STATE(3040), @@ -474979,63 +475036,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3040), [sym_preproc_define] = STATE(3040), [sym_preproc_undef] = STATE(3040), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [aux_sym__class_declaration_initializer_repeat1] = STATE(5799), + [aux_sym_type_argument_list_repeat1] = STATE(6956), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_out] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(5091), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475057,63 +475092,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3041), [sym_preproc_define] = STATE(3041), [sym_preproc_undef] = STATE(3041), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_RBRACK] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_RPAREN] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_QMARK] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5095), + [anon_sym_AMP] = ACTIONS(5095), + [anon_sym_LT_LT] = ACTIONS(5093), + [anon_sym_GT_GT] = ACTIONS(5095), + [anon_sym_GT_GT_GT] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_EQ_GT] = ACTIONS(5093), + [anon_sym_switch] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_and] = ACTIONS(5093), + [anon_sym_or] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_QMARK_QMARK] = ACTIONS(5093), + [anon_sym_from] = ACTIONS(5093), + [anon_sym_into] = ACTIONS(5093), + [anon_sym_join] = ACTIONS(5093), + [anon_sym_on] = ACTIONS(5093), + [anon_sym_equals] = ACTIONS(5093), + [anon_sym_let] = ACTIONS(5093), + [anon_sym_orderby] = ACTIONS(5093), + [anon_sym_group] = ACTIONS(5093), + [anon_sym_by] = ACTIONS(5093), + [anon_sym_select] = ACTIONS(5093), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5093), + [anon_sym_with] = ACTIONS(5093), + [aux_sym_preproc_if_token3] = ACTIONS(5093), + [aux_sym_preproc_else_token1] = ACTIONS(5093), + [aux_sym_preproc_elif_token1] = ACTIONS(5093), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475135,63 +475170,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3042), [sym_preproc_define] = STATE(3042), [sym_preproc_undef] = STATE(3042), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475213,63 +475248,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3043), [sym_preproc_define] = STATE(3043), [sym_preproc_undef] = STATE(3043), - [anon_sym_EQ] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5112), - [anon_sym_DASH_EQ] = ACTIONS(5112), - [anon_sym_STAR_EQ] = ACTIONS(5112), - [anon_sym_SLASH_EQ] = ACTIONS(5112), - [anon_sym_PERCENT_EQ] = ACTIONS(5112), - [anon_sym_AMP_EQ] = ACTIONS(5112), - [anon_sym_CARET_EQ] = ACTIONS(5112), - [anon_sym_PIPE_EQ] = ACTIONS(5112), - [anon_sym_LT_LT_EQ] = ACTIONS(5112), - [anon_sym_GT_GT_EQ] = ACTIONS(5112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5112), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_QMARK] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5099), + [anon_sym_AMP] = ACTIONS(5099), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5099), + [anon_sym_GT_GT_GT] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_EQ_GT] = ACTIONS(5097), + [anon_sym_switch] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_and] = ACTIONS(5097), + [anon_sym_or] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_QMARK_QMARK] = ACTIONS(5097), + [anon_sym_from] = ACTIONS(5097), + [anon_sym_into] = ACTIONS(5097), + [anon_sym_join] = ACTIONS(5097), + [anon_sym_on] = ACTIONS(5097), + [anon_sym_equals] = ACTIONS(5097), + [anon_sym_let] = ACTIONS(5097), + [anon_sym_orderby] = ACTIONS(5097), + [anon_sym_group] = ACTIONS(5097), + [anon_sym_by] = ACTIONS(5097), + [anon_sym_select] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5097), + [anon_sym_with] = ACTIONS(5097), + [aux_sym_preproc_if_token3] = ACTIONS(5097), + [aux_sym_preproc_else_token1] = ACTIONS(5097), + [aux_sym_preproc_elif_token1] = ACTIONS(5097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475291,63 +475326,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3044), [sym_preproc_define] = STATE(3044), [sym_preproc_undef] = STATE(3044), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_COLON] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_RBRACK] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5114), - [anon_sym_QMARK] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5114), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5114), - [anon_sym_CARET] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5114), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_GT_GT_GT] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_EQ_GT] = ACTIONS(5114), - [anon_sym_switch] = ACTIONS(5114), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_and] = ACTIONS(5114), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_QMARK_QMARK] = ACTIONS(5114), - [anon_sym_from] = ACTIONS(5114), - [anon_sym_into] = ACTIONS(5114), - [anon_sym_join] = ACTIONS(5114), - [anon_sym_on] = ACTIONS(5114), - [anon_sym_equals] = ACTIONS(5114), - [anon_sym_let] = ACTIONS(5114), - [anon_sym_orderby] = ACTIONS(5114), - [anon_sym_group] = ACTIONS(5114), - [anon_sym_by] = ACTIONS(5114), - [anon_sym_select] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5114), - [anon_sym_DASH_GT] = ACTIONS(5114), - [anon_sym_with] = ACTIONS(5114), - [aux_sym_preproc_if_token3] = ACTIONS(5114), - [aux_sym_preproc_else_token1] = ACTIONS(5114), - [aux_sym_preproc_elif_token1] = ACTIONS(5114), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_where] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3672), + [anon_sym_CARET] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3672), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_join] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_orderby] = ACTIONS(3672), + [anon_sym_group] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_select] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475369,63 +475404,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3045), [sym_preproc_define] = STATE(3045), [sym_preproc_undef] = STATE(3045), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [sym__identifier_token] = ACTIONS(5101), + [anon_sym_extern] = ACTIONS(5101), + [anon_sym_alias] = ACTIONS(5101), + [anon_sym_global] = ACTIONS(5101), + [anon_sym_unsafe] = ACTIONS(5101), + [anon_sym_static] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_event] = ACTIONS(5101), + [anon_sym_class] = ACTIONS(5101), + [anon_sym_ref] = ACTIONS(5101), + [anon_sym_struct] = ACTIONS(5101), + [anon_sym_enum] = ACTIONS(5101), + [anon_sym_interface] = ACTIONS(5101), + [anon_sym_delegate] = ACTIONS(5101), + [anon_sym_record] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_async] = ACTIONS(5101), + [anon_sym_const] = ACTIONS(5101), + [anon_sym_file] = ACTIONS(5101), + [anon_sym_fixed] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_new] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_partial] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_readonly] = ACTIONS(5101), + [anon_sym_required] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_virtual] = ACTIONS(5101), + [anon_sym_volatile] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_notnull] = ACTIONS(5101), + [anon_sym_unmanaged] = ACTIONS(5101), + [anon_sym_TILDE] = ACTIONS(5103), + [anon_sym_implicit] = ACTIONS(5101), + [anon_sym_explicit] = ACTIONS(5101), + [anon_sym_scoped] = ACTIONS(5101), + [anon_sym_var] = ACTIONS(5101), + [sym_predefined_type] = ACTIONS(5101), + [anon_sym_yield] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_from] = ACTIONS(5101), + [anon_sym_into] = ACTIONS(5101), + [anon_sym_join] = ACTIONS(5101), + [anon_sym_on] = ACTIONS(5101), + [anon_sym_equals] = ACTIONS(5101), + [anon_sym_let] = ACTIONS(5101), + [anon_sym_orderby] = ACTIONS(5101), + [anon_sym_ascending] = ACTIONS(5101), + [anon_sym_descending] = ACTIONS(5101), + [anon_sym_group] = ACTIONS(5101), + [anon_sym_by] = ACTIONS(5101), + [anon_sym_select] = ACTIONS(5101), + [aux_sym_preproc_if_token1] = ACTIONS(5103), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475447,63 +475482,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3046), [sym_preproc_define] = STATE(3046), [sym_preproc_undef] = STATE(3046), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5107), + [anon_sym_AMP] = ACTIONS(5107), + [anon_sym_LT_LT] = ACTIONS(5105), + [anon_sym_GT_GT] = ACTIONS(5107), + [anon_sym_GT_GT_GT] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_EQ_GT] = ACTIONS(5105), + [anon_sym_switch] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_and] = ACTIONS(5105), + [anon_sym_or] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_QMARK_QMARK] = ACTIONS(5105), + [anon_sym_from] = ACTIONS(5105), + [anon_sym_into] = ACTIONS(5105), + [anon_sym_join] = ACTIONS(5105), + [anon_sym_on] = ACTIONS(5105), + [anon_sym_equals] = ACTIONS(5105), + [anon_sym_let] = ACTIONS(5105), + [anon_sym_orderby] = ACTIONS(5105), + [anon_sym_group] = ACTIONS(5105), + [anon_sym_by] = ACTIONS(5105), + [anon_sym_select] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [anon_sym_with] = ACTIONS(5105), + [aux_sym_preproc_if_token3] = ACTIONS(5105), + [aux_sym_preproc_else_token1] = ACTIONS(5105), + [aux_sym_preproc_elif_token1] = ACTIONS(5105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475525,63 +475560,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3047), [sym_preproc_define] = STATE(3047), [sym_preproc_undef] = STATE(3047), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4007), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4007), - [anon_sym_join] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_orderby] = ACTIONS(4007), - [anon_sym_group] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5111), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_QMARK] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym_GT_GT_GT] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_EQ_GT] = ACTIONS(5109), + [anon_sym_switch] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_and] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_QMARK_QMARK] = ACTIONS(5109), + [anon_sym_from] = ACTIONS(5109), + [anon_sym_into] = ACTIONS(5109), + [anon_sym_join] = ACTIONS(5109), + [anon_sym_on] = ACTIONS(5109), + [anon_sym_equals] = ACTIONS(5109), + [anon_sym_let] = ACTIONS(5109), + [anon_sym_orderby] = ACTIONS(5109), + [anon_sym_group] = ACTIONS(5109), + [anon_sym_by] = ACTIONS(5109), + [anon_sym_select] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [anon_sym_with] = ACTIONS(5109), + [aux_sym_preproc_if_token3] = ACTIONS(5109), + [aux_sym_preproc_else_token1] = ACTIONS(5109), + [aux_sym_preproc_elif_token1] = ACTIONS(5109), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475603,63 +475638,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3048), [sym_preproc_define] = STATE(3048), [sym_preproc_undef] = STATE(3048), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5118), - [anon_sym_QMARK] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_GT_GT_GT] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_EQ_GT] = ACTIONS(5118), - [anon_sym_switch] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_QMARK_QMARK] = ACTIONS(5118), - [anon_sym_from] = ACTIONS(5118), - [anon_sym_into] = ACTIONS(5118), - [anon_sym_join] = ACTIONS(5118), - [anon_sym_on] = ACTIONS(5118), - [anon_sym_equals] = ACTIONS(5118), - [anon_sym_let] = ACTIONS(5118), - [anon_sym_orderby] = ACTIONS(5118), - [anon_sym_group] = ACTIONS(5118), - [anon_sym_by] = ACTIONS(5118), - [anon_sym_select] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_with] = ACTIONS(5118), - [aux_sym_preproc_if_token3] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5118), + [anon_sym_SEMI] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_COLON] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_QMARK] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5115), + [anon_sym_GT_GT_GT] = ACTIONS(5113), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_EQ_GT] = ACTIONS(5113), + [anon_sym_switch] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_and] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_QMARK_QMARK] = ACTIONS(5113), + [anon_sym_from] = ACTIONS(5113), + [anon_sym_into] = ACTIONS(5113), + [anon_sym_join] = ACTIONS(5113), + [anon_sym_on] = ACTIONS(5113), + [anon_sym_equals] = ACTIONS(5113), + [anon_sym_let] = ACTIONS(5113), + [anon_sym_orderby] = ACTIONS(5113), + [anon_sym_group] = ACTIONS(5113), + [anon_sym_by] = ACTIONS(5113), + [anon_sym_select] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [anon_sym_with] = ACTIONS(5113), + [aux_sym_preproc_if_token3] = ACTIONS(5113), + [aux_sym_preproc_else_token1] = ACTIONS(5113), + [aux_sym_preproc_elif_token1] = ACTIONS(5113), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475681,63 +475716,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3049), [sym_preproc_define] = STATE(3049), [sym_preproc_undef] = STATE(3049), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4096), - [anon_sym_where] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_EQ_GT] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4096), - [anon_sym_or] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_from] = ACTIONS(4096), - [anon_sym_join] = ACTIONS(4096), - [anon_sym_on] = ACTIONS(4096), - [anon_sym_equals] = ACTIONS(4096), - [anon_sym_let] = ACTIONS(4096), - [anon_sym_orderby] = ACTIONS(4096), - [anon_sym_group] = ACTIONS(4096), - [anon_sym_by] = ACTIONS(4096), - [anon_sym_select] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4096), - [aux_sym_preproc_if_token3] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_QMARK] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5119), + [anon_sym_GT_GT_GT] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_EQ_GT] = ACTIONS(5117), + [anon_sym_switch] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_and] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_QMARK_QMARK] = ACTIONS(5117), + [anon_sym_from] = ACTIONS(5117), + [anon_sym_into] = ACTIONS(5117), + [anon_sym_join] = ACTIONS(5117), + [anon_sym_on] = ACTIONS(5117), + [anon_sym_equals] = ACTIONS(5117), + [anon_sym_let] = ACTIONS(5117), + [anon_sym_orderby] = ACTIONS(5117), + [anon_sym_group] = ACTIONS(5117), + [anon_sym_by] = ACTIONS(5117), + [anon_sym_select] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [anon_sym_with] = ACTIONS(5117), + [aux_sym_preproc_if_token3] = ACTIONS(5117), + [aux_sym_preproc_else_token1] = ACTIONS(5117), + [aux_sym_preproc_elif_token1] = ACTIONS(5117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475759,63 +475794,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3050), [sym_preproc_define] = STATE(3050), [sym_preproc_undef] = STATE(3050), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_RBRACK] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_RPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_EQ_GT] = ACTIONS(4162), - [anon_sym_switch] = ACTIONS(4162), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4162), - [anon_sym_or] = ACTIONS(4160), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_from] = ACTIONS(4162), - [anon_sym_join] = ACTIONS(4162), - [anon_sym_on] = ACTIONS(4162), - [anon_sym_equals] = ACTIONS(4162), - [anon_sym_let] = ACTIONS(4162), - [anon_sym_orderby] = ACTIONS(4162), - [anon_sym_group] = ACTIONS(4162), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_select] = ACTIONS(4162), - [anon_sym_as] = ACTIONS(4162), - [anon_sym_is] = ACTIONS(4162), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4162), - [aux_sym_preproc_if_token3] = ACTIONS(4162), - [aux_sym_preproc_else_token1] = ACTIONS(4162), - [aux_sym_preproc_elif_token1] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_GT_GT_GT] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_EQ_GT] = ACTIONS(5121), + [anon_sym_switch] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_and] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_QMARK_QMARK] = ACTIONS(5121), + [anon_sym_from] = ACTIONS(5121), + [anon_sym_into] = ACTIONS(5121), + [anon_sym_join] = ACTIONS(5121), + [anon_sym_on] = ACTIONS(5121), + [anon_sym_equals] = ACTIONS(5121), + [anon_sym_let] = ACTIONS(5121), + [anon_sym_orderby] = ACTIONS(5121), + [anon_sym_group] = ACTIONS(5121), + [anon_sym_by] = ACTIONS(5121), + [anon_sym_select] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [anon_sym_with] = ACTIONS(5121), + [aux_sym_preproc_if_token3] = ACTIONS(5121), + [aux_sym_preproc_else_token1] = ACTIONS(5121), + [aux_sym_preproc_elif_token1] = ACTIONS(5121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475828,27 +475863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3051] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6172), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5770), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(3051), [sym_preproc_endregion] = STATE(3051), [sym_preproc_line] = STATE(3051), @@ -475858,42 +475872,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3051), [sym_preproc_define] = STATE(3051), [sym_preproc_undef] = STATE(3051), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4534), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3550), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_params] = ACTIONS(4737), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_GT_GT_GT] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_EQ_GT] = ACTIONS(5125), + [anon_sym_switch] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_QMARK_QMARK] = ACTIONS(5125), + [anon_sym_from] = ACTIONS(5125), + [anon_sym_into] = ACTIONS(5125), + [anon_sym_join] = ACTIONS(5125), + [anon_sym_on] = ACTIONS(5125), + [anon_sym_equals] = ACTIONS(5125), + [anon_sym_let] = ACTIONS(5125), + [anon_sym_orderby] = ACTIONS(5125), + [anon_sym_group] = ACTIONS(5125), + [anon_sym_by] = ACTIONS(5125), + [anon_sym_select] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [anon_sym_with] = ACTIONS(5125), + [aux_sym_preproc_if_token3] = ACTIONS(5125), + [aux_sym_preproc_else_token1] = ACTIONS(5125), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475915,63 +475950,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3052), [sym_preproc_define] = STATE(3052), [sym_preproc_undef] = STATE(3052), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_COLON] = ACTIONS(4054), - [anon_sym_COMMA] = ACTIONS(4054), - [anon_sym_RBRACK] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_in] = ACTIONS(4054), - [anon_sym_where] = ACTIONS(4054), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_SLASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4054), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_GT_GT_GT] = ACTIONS(4054), - [anon_sym_EQ_EQ] = ACTIONS(4054), - [anon_sym_BANG_EQ] = ACTIONS(4054), - [anon_sym_GT_EQ] = ACTIONS(4054), - [anon_sym_LT_EQ] = ACTIONS(4054), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_EQ_GT] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_DOT_DOT] = ACTIONS(4054), - [anon_sym_and] = ACTIONS(4054), - [anon_sym_or] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4054), - [anon_sym_QMARK_QMARK] = ACTIONS(4054), - [anon_sym_from] = ACTIONS(4054), - [anon_sym_join] = ACTIONS(4054), - [anon_sym_on] = ACTIONS(4054), - [anon_sym_equals] = ACTIONS(4054), - [anon_sym_let] = ACTIONS(4054), - [anon_sym_orderby] = ACTIONS(4054), - [anon_sym_group] = ACTIONS(4054), - [anon_sym_by] = ACTIONS(4054), - [anon_sym_select] = ACTIONS(4054), - [anon_sym_as] = ACTIONS(4054), - [anon_sym_is] = ACTIONS(4054), - [anon_sym_DASH_GT] = ACTIONS(4054), - [anon_sym_with] = ACTIONS(4054), - [aux_sym_preproc_if_token3] = ACTIONS(4054), - [aux_sym_preproc_else_token1] = ACTIONS(4054), - [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_GT_GT_GT] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_EQ_GT] = ACTIONS(5129), + [anon_sym_switch] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_and] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_QMARK_QMARK] = ACTIONS(5129), + [anon_sym_from] = ACTIONS(5129), + [anon_sym_into] = ACTIONS(5129), + [anon_sym_join] = ACTIONS(5129), + [anon_sym_on] = ACTIONS(5129), + [anon_sym_equals] = ACTIONS(5129), + [anon_sym_let] = ACTIONS(5129), + [anon_sym_orderby] = ACTIONS(5129), + [anon_sym_group] = ACTIONS(5129), + [anon_sym_by] = ACTIONS(5129), + [anon_sym_select] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [anon_sym_with] = ACTIONS(5129), + [aux_sym_preproc_if_token3] = ACTIONS(5129), + [aux_sym_preproc_else_token1] = ACTIONS(5129), + [aux_sym_preproc_elif_token1] = ACTIONS(5129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475984,6 +476019,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3053] = { + [sym_attribute_list] = STATE(3570), + [sym__attribute_list] = STATE(3569), + [sym_modifier] = STATE(3734), + [sym_identifier] = STATE(6453), + [sym__reserved_identifier] = STATE(2182), + [sym_preproc_if_in_attribute_list] = STATE(3570), [sym_preproc_region] = STATE(3053), [sym_preproc_endregion] = STATE(3053), [sym_preproc_line] = STATE(3053), @@ -475993,63 +476034,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3053), [sym_preproc_define] = STATE(3053), [sym_preproc_undef] = STATE(3053), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5122), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_GT_GT_GT] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_EQ_GT] = ACTIONS(5122), - [anon_sym_switch] = ACTIONS(5122), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_QMARK_QMARK] = ACTIONS(5122), - [anon_sym_from] = ACTIONS(5122), - [anon_sym_into] = ACTIONS(5122), - [anon_sym_join] = ACTIONS(5122), - [anon_sym_on] = ACTIONS(5122), - [anon_sym_equals] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_orderby] = ACTIONS(5122), - [anon_sym_group] = ACTIONS(5122), - [anon_sym_by] = ACTIONS(5122), - [anon_sym_select] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [anon_sym_with] = ACTIONS(5122), - [aux_sym_preproc_if_token3] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5122), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3170), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3348), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4787), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_static] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_abstract] = ACTIONS(4787), + [anon_sym_async] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_file] = ACTIONS(4793), + [anon_sym_fixed] = ACTIONS(4787), + [anon_sym_internal] = ACTIONS(4787), + [anon_sym_new] = ACTIONS(4787), + [anon_sym_override] = ACTIONS(4787), + [anon_sym_partial] = ACTIONS(4787), + [anon_sym_private] = ACTIONS(4787), + [anon_sym_protected] = ACTIONS(4787), + [anon_sym_public] = ACTIONS(4787), + [anon_sym_readonly] = ACTIONS(4787), + [anon_sym_required] = ACTIONS(4787), + [anon_sym_sealed] = ACTIONS(4787), + [anon_sym_virtual] = ACTIONS(4787), + [anon_sym_volatile] = ACTIONS(4787), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_add] = ACTIONS(5133), + [anon_sym_remove] = ACTIONS(5133), + [anon_sym_init] = ACTIONS(5133), + [anon_sym_scoped] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_when] = ACTIONS(29), + [anon_sym_from] = ACTIONS(29), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [aux_sym_preproc_if_token1] = ACTIONS(4797), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476071,63 +476106,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3054), [sym_preproc_define] = STATE(3054), [sym_preproc_undef] = STATE(3054), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_COLON] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5126), - [anon_sym_QMARK] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5126), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5126), - [anon_sym_CARET] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_GT_GT_GT] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_EQ_GT] = ACTIONS(5126), - [anon_sym_switch] = ACTIONS(5126), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [anon_sym_or] = ACTIONS(5128), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_QMARK_QMARK] = ACTIONS(5126), - [anon_sym_from] = ACTIONS(5126), - [anon_sym_into] = ACTIONS(5126), - [anon_sym_join] = ACTIONS(5126), - [anon_sym_on] = ACTIONS(5126), - [anon_sym_equals] = ACTIONS(5126), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_orderby] = ACTIONS(5126), - [anon_sym_group] = ACTIONS(5126), - [anon_sym_by] = ACTIONS(5126), - [anon_sym_select] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), - [anon_sym_with] = ACTIONS(5126), - [aux_sym_preproc_if_token3] = ACTIONS(5126), - [aux_sym_preproc_else_token1] = ACTIONS(5126), - [aux_sym_preproc_elif_token1] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_RPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4121), + [anon_sym_where] = ACTIONS(4121), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(4121), + [anon_sym_switch] = ACTIONS(4121), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4121), + [anon_sym_or] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_from] = ACTIONS(4121), + [anon_sym_join] = ACTIONS(4121), + [anon_sym_on] = ACTIONS(4121), + [anon_sym_equals] = ACTIONS(4121), + [anon_sym_let] = ACTIONS(4121), + [anon_sym_orderby] = ACTIONS(4121), + [anon_sym_group] = ACTIONS(4121), + [anon_sym_by] = ACTIONS(4121), + [anon_sym_select] = ACTIONS(4121), + [anon_sym_as] = ACTIONS(4121), + [anon_sym_is] = ACTIONS(4121), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4121), + [aux_sym_preproc_if_token3] = ACTIONS(4121), + [aux_sym_preproc_else_token1] = ACTIONS(4121), + [aux_sym_preproc_elif_token1] = ACTIONS(4121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476149,63 +476184,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3055), [sym_preproc_define] = STATE(3055), [sym_preproc_undef] = STATE(3055), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_COLON] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_RBRACK] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5130), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5130), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5130), - [anon_sym_CARET] = ACTIONS(5130), - [anon_sym_PIPE] = ACTIONS(5132), - [anon_sym_AMP] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(5130), - [anon_sym_GT_GT] = ACTIONS(5132), - [anon_sym_GT_GT_GT] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_EQ_GT] = ACTIONS(5130), - [anon_sym_switch] = ACTIONS(5130), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_and] = ACTIONS(5130), - [anon_sym_or] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_QMARK_QMARK] = ACTIONS(5130), - [anon_sym_from] = ACTIONS(5130), - [anon_sym_into] = ACTIONS(5130), - [anon_sym_join] = ACTIONS(5130), - [anon_sym_on] = ACTIONS(5130), - [anon_sym_equals] = ACTIONS(5130), - [anon_sym_let] = ACTIONS(5130), - [anon_sym_orderby] = ACTIONS(5130), - [anon_sym_group] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_select] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5130), - [anon_sym_DASH_GT] = ACTIONS(5130), - [anon_sym_with] = ACTIONS(5130), - [aux_sym_preproc_if_token3] = ACTIONS(5130), - [aux_sym_preproc_else_token1] = ACTIONS(5130), - [aux_sym_preproc_elif_token1] = ACTIONS(5130), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_from] = ACTIONS(4152), + [anon_sym_join] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_let] = ACTIONS(4152), + [anon_sym_orderby] = ACTIONS(4152), + [anon_sym_group] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_select] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476218,12 +476253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3056] = { - [sym_attribute_list] = STATE(3565), - [sym__attribute_list] = STATE(3562), - [sym_modifier] = STATE(3702), - [sym_identifier] = STATE(6499), - [sym__reserved_identifier] = STATE(2182), - [sym_preproc_if_in_attribute_list] = STATE(3565), [sym_preproc_region] = STATE(3056), [sym_preproc_endregion] = STATE(3056), [sym_preproc_line] = STATE(3056), @@ -476233,57 +476262,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3056), [sym_preproc_define] = STATE(3056), [sym_preproc_undef] = STATE(3056), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3177), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3326), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4787), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4787), - [anon_sym_static] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4789), - [anon_sym_abstract] = ACTIONS(4787), - [anon_sym_async] = ACTIONS(4787), - [anon_sym_const] = ACTIONS(4787), - [anon_sym_file] = ACTIONS(4793), - [anon_sym_fixed] = ACTIONS(4787), - [anon_sym_internal] = ACTIONS(4787), - [anon_sym_new] = ACTIONS(4787), - [anon_sym_override] = ACTIONS(4787), - [anon_sym_partial] = ACTIONS(4787), - [anon_sym_private] = ACTIONS(4787), - [anon_sym_protected] = ACTIONS(4787), - [anon_sym_public] = ACTIONS(4787), - [anon_sym_readonly] = ACTIONS(4787), - [anon_sym_required] = ACTIONS(4787), - [anon_sym_sealed] = ACTIONS(4787), - [anon_sym_virtual] = ACTIONS(4787), - [anon_sym_volatile] = ACTIONS(4787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5134), - [anon_sym_set] = ACTIONS(5134), - [anon_sym_add] = ACTIONS(5134), - [anon_sym_remove] = ACTIONS(5134), - [anon_sym_init] = ACTIONS(5134), - [anon_sym_scoped] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_when] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(4797), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_RBRACK] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_in] = ACTIONS(4050), + [anon_sym_where] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_EQ_GT] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4050), + [anon_sym_or] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_from] = ACTIONS(4050), + [anon_sym_join] = ACTIONS(4050), + [anon_sym_on] = ACTIONS(4050), + [anon_sym_equals] = ACTIONS(4050), + [anon_sym_let] = ACTIONS(4050), + [anon_sym_orderby] = ACTIONS(4050), + [anon_sym_group] = ACTIONS(4050), + [anon_sym_by] = ACTIONS(4050), + [anon_sym_select] = ACTIONS(4050), + [anon_sym_as] = ACTIONS(4050), + [anon_sym_is] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4050), + [aux_sym_preproc_if_token3] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476305,63 +476340,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3057), [sym_preproc_define] = STATE(3057), [sym_preproc_undef] = STATE(3057), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_COLON] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5136), - [anon_sym_RBRACK] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5136), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5136), - [anon_sym_QMARK] = ACTIONS(5138), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_GT_GT_GT] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5136), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_EQ_GT] = ACTIONS(5136), - [anon_sym_switch] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_QMARK_QMARK] = ACTIONS(5136), - [anon_sym_from] = ACTIONS(5136), - [anon_sym_into] = ACTIONS(5136), - [anon_sym_join] = ACTIONS(5136), - [anon_sym_on] = ACTIONS(5136), - [anon_sym_equals] = ACTIONS(5136), - [anon_sym_let] = ACTIONS(5136), - [anon_sym_orderby] = ACTIONS(5136), - [anon_sym_group] = ACTIONS(5136), - [anon_sym_by] = ACTIONS(5136), - [anon_sym_select] = ACTIONS(5136), - [anon_sym_as] = ACTIONS(5136), - [anon_sym_is] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5136), - [anon_sym_with] = ACTIONS(5136), - [aux_sym_preproc_if_token3] = ACTIONS(5136), - [aux_sym_preproc_else_token1] = ACTIONS(5136), - [aux_sym_preproc_elif_token1] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3676), + [anon_sym_where] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_join] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_orderby] = ACTIONS(3676), + [anon_sym_group] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_select] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476383,63 +476418,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3058), [sym_preproc_define] = STATE(3058), [sym_preproc_undef] = STATE(3058), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_COLON] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_RBRACK] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_RPAREN] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5142), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_in] = ACTIONS(5142), - [anon_sym_where] = ACTIONS(5140), - [anon_sym_QMARK] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(5142), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5142), - [anon_sym_DASH] = ACTIONS(5142), - [anon_sym_STAR] = ACTIONS(5140), - [anon_sym_SLASH] = ACTIONS(5142), - [anon_sym_PERCENT] = ACTIONS(5140), - [anon_sym_CARET] = ACTIONS(5140), - [anon_sym_PIPE] = ACTIONS(5142), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_LT_LT] = ACTIONS(5140), - [anon_sym_GT_GT] = ACTIONS(5142), - [anon_sym_GT_GT_GT] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_DOT] = ACTIONS(5142), - [anon_sym_EQ_GT] = ACTIONS(5140), - [anon_sym_switch] = ACTIONS(5140), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_and] = ACTIONS(5140), - [anon_sym_or] = ACTIONS(5142), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_QMARK_QMARK] = ACTIONS(5140), - [anon_sym_from] = ACTIONS(5140), - [anon_sym_into] = ACTIONS(5140), - [anon_sym_join] = ACTIONS(5140), - [anon_sym_on] = ACTIONS(5140), - [anon_sym_equals] = ACTIONS(5140), - [anon_sym_let] = ACTIONS(5140), - [anon_sym_orderby] = ACTIONS(5140), - [anon_sym_group] = ACTIONS(5140), - [anon_sym_by] = ACTIONS(5140), - [anon_sym_select] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5140), - [anon_sym_DASH_GT] = ACTIONS(5140), - [anon_sym_with] = ACTIONS(5140), - [aux_sym_preproc_if_token3] = ACTIONS(5140), - [aux_sym_preproc_else_token1] = ACTIONS(5140), - [aux_sym_preproc_elif_token1] = ACTIONS(5140), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_QMARK] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5137), + [anon_sym_AMP] = ACTIONS(5137), + [anon_sym_LT_LT] = ACTIONS(5135), + [anon_sym_GT_GT] = ACTIONS(5137), + [anon_sym_GT_GT_GT] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_EQ_GT] = ACTIONS(5135), + [anon_sym_switch] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_and] = ACTIONS(5135), + [anon_sym_or] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_QMARK_QMARK] = ACTIONS(5135), + [anon_sym_from] = ACTIONS(5135), + [anon_sym_into] = ACTIONS(5135), + [anon_sym_join] = ACTIONS(5135), + [anon_sym_on] = ACTIONS(5135), + [anon_sym_equals] = ACTIONS(5135), + [anon_sym_let] = ACTIONS(5135), + [anon_sym_orderby] = ACTIONS(5135), + [anon_sym_group] = ACTIONS(5135), + [anon_sym_by] = ACTIONS(5135), + [anon_sym_select] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_with] = ACTIONS(5135), + [aux_sym_preproc_if_token3] = ACTIONS(5135), + [aux_sym_preproc_else_token1] = ACTIONS(5135), + [aux_sym_preproc_elif_token1] = ACTIONS(5135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476461,63 +476496,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3059), [sym_preproc_define] = STATE(3059), [sym_preproc_undef] = STATE(3059), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_RBRACK] = ACTIONS(5144), - [anon_sym_LPAREN] = ACTIONS(5144), - [anon_sym_RPAREN] = ACTIONS(5144), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_where] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5146), - [anon_sym_BANG] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_GT_GT_GT] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_EQ_GT] = ACTIONS(5144), - [anon_sym_switch] = ACTIONS(5144), - [anon_sym_DOT_DOT] = ACTIONS(5144), - [anon_sym_and] = ACTIONS(5144), - [anon_sym_or] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_QMARK_QMARK] = ACTIONS(5144), - [anon_sym_from] = ACTIONS(5144), - [anon_sym_into] = ACTIONS(5144), - [anon_sym_join] = ACTIONS(5144), - [anon_sym_on] = ACTIONS(5144), - [anon_sym_equals] = ACTIONS(5144), - [anon_sym_let] = ACTIONS(5144), - [anon_sym_orderby] = ACTIONS(5144), - [anon_sym_group] = ACTIONS(5144), - [anon_sym_by] = ACTIONS(5144), - [anon_sym_select] = ACTIONS(5144), - [anon_sym_as] = ACTIONS(5144), - [anon_sym_is] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_with] = ACTIONS(5144), - [aux_sym_preproc_if_token3] = ACTIONS(5144), - [aux_sym_preproc_else_token1] = ACTIONS(5144), - [aux_sym_preproc_elif_token1] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5141), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5141), + [anon_sym_LT_LT] = ACTIONS(5139), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_GT_GT_GT] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_EQ_GT] = ACTIONS(5139), + [anon_sym_switch] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_and] = ACTIONS(5139), + [anon_sym_or] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_QMARK_QMARK] = ACTIONS(5139), + [anon_sym_from] = ACTIONS(5139), + [anon_sym_into] = ACTIONS(5139), + [anon_sym_join] = ACTIONS(5139), + [anon_sym_on] = ACTIONS(5139), + [anon_sym_equals] = ACTIONS(5139), + [anon_sym_let] = ACTIONS(5139), + [anon_sym_orderby] = ACTIONS(5139), + [anon_sym_group] = ACTIONS(5139), + [anon_sym_by] = ACTIONS(5139), + [anon_sym_select] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5139), + [anon_sym_with] = ACTIONS(5139), + [aux_sym_preproc_if_token3] = ACTIONS(5139), + [aux_sym_preproc_else_token1] = ACTIONS(5139), + [aux_sym_preproc_elif_token1] = ACTIONS(5139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476539,63 +476574,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3060), [sym_preproc_define] = STATE(3060), [sym_preproc_undef] = STATE(3060), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_extern] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_unsafe] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_event] = ACTIONS(3785), - [anon_sym_class] = ACTIONS(3785), - [anon_sym_ref] = ACTIONS(3785), - [anon_sym_struct] = ACTIONS(3785), - [anon_sym_enum] = ACTIONS(3785), - [anon_sym_interface] = ACTIONS(3785), - [anon_sym_delegate] = ACTIONS(3785), - [anon_sym_record] = ACTIONS(3785), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_const] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_fixed] = ACTIONS(3785), - [anon_sym_internal] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3785), - [anon_sym_override] = ACTIONS(3785), - [anon_sym_partial] = ACTIONS(3785), - [anon_sym_private] = ACTIONS(3785), - [anon_sym_protected] = ACTIONS(3785), - [anon_sym_public] = ACTIONS(3785), - [anon_sym_readonly] = ACTIONS(3785), - [anon_sym_required] = ACTIONS(3785), - [anon_sym_sealed] = ACTIONS(3785), - [anon_sym_virtual] = ACTIONS(3785), - [anon_sym_volatile] = ACTIONS(3785), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_TILDE] = ACTIONS(3787), - [anon_sym_implicit] = ACTIONS(3785), - [anon_sym_explicit] = ACTIONS(3785), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_var] = ACTIONS(3785), - [sym_predefined_type] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [aux_sym_preproc_if_token1] = ACTIONS(3787), + [sym__identifier_token] = ACTIONS(3491), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3491), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3491), + [anon_sym_unmanaged] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3491), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3491), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_when] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_into] = ACTIONS(3491), + [anon_sym_join] = ACTIONS(3491), + [anon_sym_on] = ACTIONS(3491), + [anon_sym_equals] = ACTIONS(3491), + [anon_sym_let] = ACTIONS(3491), + [anon_sym_orderby] = ACTIONS(3491), + [anon_sym_ascending] = ACTIONS(3491), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476617,63 +476652,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3061), [sym_preproc_define] = STATE(3061), [sym_preproc_undef] = STATE(3061), - [anon_sym_SEMI] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5148), - [anon_sym_COLON] = ACTIONS(5148), - [anon_sym_COMMA] = ACTIONS(5148), - [anon_sym_RBRACK] = ACTIONS(5148), - [anon_sym_LPAREN] = ACTIONS(5148), - [anon_sym_RPAREN] = ACTIONS(5148), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_LT] = ACTIONS(5150), - [anon_sym_GT] = ACTIONS(5150), - [anon_sym_in] = ACTIONS(5150), - [anon_sym_where] = ACTIONS(5148), - [anon_sym_QMARK] = ACTIONS(5150), - [anon_sym_BANG] = ACTIONS(5150), - [anon_sym_PLUS_PLUS] = ACTIONS(5148), - [anon_sym_DASH_DASH] = ACTIONS(5148), - [anon_sym_PLUS] = ACTIONS(5150), - [anon_sym_DASH] = ACTIONS(5150), - [anon_sym_STAR] = ACTIONS(5148), - [anon_sym_SLASH] = ACTIONS(5150), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_CARET] = ACTIONS(5148), - [anon_sym_PIPE] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5150), - [anon_sym_LT_LT] = ACTIONS(5148), - [anon_sym_GT_GT] = ACTIONS(5150), - [anon_sym_GT_GT_GT] = ACTIONS(5148), - [anon_sym_EQ_EQ] = ACTIONS(5148), - [anon_sym_BANG_EQ] = ACTIONS(5148), - [anon_sym_GT_EQ] = ACTIONS(5148), - [anon_sym_LT_EQ] = ACTIONS(5148), - [anon_sym_DOT] = ACTIONS(5150), - [anon_sym_EQ_GT] = ACTIONS(5148), - [anon_sym_switch] = ACTIONS(5148), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_and] = ACTIONS(5148), - [anon_sym_or] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5148), - [anon_sym_PIPE_PIPE] = ACTIONS(5148), - [anon_sym_QMARK_QMARK] = ACTIONS(5148), - [anon_sym_from] = ACTIONS(5148), - [anon_sym_into] = ACTIONS(5148), - [anon_sym_join] = ACTIONS(5148), - [anon_sym_on] = ACTIONS(5148), - [anon_sym_equals] = ACTIONS(5148), - [anon_sym_let] = ACTIONS(5148), - [anon_sym_orderby] = ACTIONS(5148), - [anon_sym_group] = ACTIONS(5148), - [anon_sym_by] = ACTIONS(5148), - [anon_sym_select] = ACTIONS(5148), - [anon_sym_as] = ACTIONS(5148), - [anon_sym_is] = ACTIONS(5148), - [anon_sym_DASH_GT] = ACTIONS(5148), - [anon_sym_with] = ACTIONS(5148), - [aux_sym_preproc_if_token3] = ACTIONS(5148), - [aux_sym_preproc_else_token1] = ACTIONS(5148), - [aux_sym_preproc_elif_token1] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_AMP] = ACTIONS(5147), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5147), + [anon_sym_GT_GT_GT] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_EQ_GT] = ACTIONS(5145), + [anon_sym_switch] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_QMARK_QMARK] = ACTIONS(5145), + [anon_sym_from] = ACTIONS(5145), + [anon_sym_into] = ACTIONS(5145), + [anon_sym_join] = ACTIONS(5145), + [anon_sym_on] = ACTIONS(5145), + [anon_sym_equals] = ACTIONS(5145), + [anon_sym_let] = ACTIONS(5145), + [anon_sym_orderby] = ACTIONS(5145), + [anon_sym_group] = ACTIONS(5145), + [anon_sym_by] = ACTIONS(5145), + [anon_sym_select] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [anon_sym_with] = ACTIONS(5145), + [aux_sym_preproc_if_token3] = ACTIONS(5145), + [aux_sym_preproc_else_token1] = ACTIONS(5145), + [aux_sym_preproc_elif_token1] = ACTIONS(5145), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476695,63 +476730,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3062), [sym_preproc_define] = STATE(3062), [sym_preproc_undef] = STATE(3062), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_event] = ACTIONS(4747), - [anon_sym_class] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_struct] = ACTIONS(4747), - [anon_sym_enum] = ACTIONS(4747), - [anon_sym_interface] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_record] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4749), - [anon_sym_implicit] = ACTIONS(4747), - [anon_sym_explicit] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_or] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_from] = ACTIONS(4044), + [anon_sym_join] = ACTIONS(4044), + [anon_sym_on] = ACTIONS(4044), + [anon_sym_equals] = ACTIONS(4044), + [anon_sym_let] = ACTIONS(4044), + [anon_sym_orderby] = ACTIONS(4044), + [anon_sym_group] = ACTIONS(4044), + [anon_sym_by] = ACTIONS(4044), + [anon_sym_select] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4044), + [aux_sym_preproc_if_token3] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476773,63 +476808,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3063), [sym_preproc_define] = STATE(3063), [sym_preproc_undef] = STATE(3063), - [anon_sym_SEMI] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_COLON] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5152), - [anon_sym_RBRACK] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5152), - [anon_sym_RPAREN] = ACTIONS(5152), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_in] = ACTIONS(5154), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_PLUS_PLUS] = ACTIONS(5152), - [anon_sym_DASH_DASH] = ACTIONS(5152), - [anon_sym_PLUS] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5152), - [anon_sym_SLASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5152), - [anon_sym_CARET] = ACTIONS(5152), - [anon_sym_PIPE] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_LT_LT] = ACTIONS(5152), - [anon_sym_GT_GT] = ACTIONS(5154), - [anon_sym_GT_GT_GT] = ACTIONS(5152), - [anon_sym_EQ_EQ] = ACTIONS(5152), - [anon_sym_BANG_EQ] = ACTIONS(5152), - [anon_sym_GT_EQ] = ACTIONS(5152), - [anon_sym_LT_EQ] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_EQ_GT] = ACTIONS(5152), - [anon_sym_switch] = ACTIONS(5152), - [anon_sym_DOT_DOT] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5154), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5152), - [anon_sym_QMARK_QMARK] = ACTIONS(5152), - [anon_sym_from] = ACTIONS(5152), - [anon_sym_into] = ACTIONS(5152), - [anon_sym_join] = ACTIONS(5152), - [anon_sym_on] = ACTIONS(5152), - [anon_sym_equals] = ACTIONS(5152), - [anon_sym_let] = ACTIONS(5152), - [anon_sym_orderby] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), - [anon_sym_as] = ACTIONS(5152), - [anon_sym_is] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_with] = ACTIONS(5152), - [aux_sym_preproc_if_token3] = ACTIONS(5152), - [aux_sym_preproc_else_token1] = ACTIONS(5152), - [aux_sym_preproc_elif_token1] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_QMARK] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5151), + [anon_sym_AMP] = ACTIONS(5151), + [anon_sym_LT_LT] = ACTIONS(5149), + [anon_sym_GT_GT] = ACTIONS(5151), + [anon_sym_GT_GT_GT] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_EQ_GT] = ACTIONS(5149), + [anon_sym_switch] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_and] = ACTIONS(5149), + [anon_sym_or] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_QMARK_QMARK] = ACTIONS(5149), + [anon_sym_from] = ACTIONS(5149), + [anon_sym_into] = ACTIONS(5149), + [anon_sym_join] = ACTIONS(5149), + [anon_sym_on] = ACTIONS(5149), + [anon_sym_equals] = ACTIONS(5149), + [anon_sym_let] = ACTIONS(5149), + [anon_sym_orderby] = ACTIONS(5149), + [anon_sym_group] = ACTIONS(5149), + [anon_sym_by] = ACTIONS(5149), + [anon_sym_select] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), + [anon_sym_with] = ACTIONS(5149), + [aux_sym_preproc_if_token3] = ACTIONS(5149), + [aux_sym_preproc_else_token1] = ACTIONS(5149), + [aux_sym_preproc_elif_token1] = ACTIONS(5149), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476851,63 +476886,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3064), [sym_preproc_define] = STATE(3064), [sym_preproc_undef] = STATE(3064), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4015), - [anon_sym_join] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_let] = ACTIONS(4015), - [anon_sym_orderby] = ACTIONS(4015), - [anon_sym_group] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_select] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_QMARK] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_AMP] = ACTIONS(5155), + [anon_sym_LT_LT] = ACTIONS(5153), + [anon_sym_GT_GT] = ACTIONS(5155), + [anon_sym_GT_GT_GT] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_EQ_GT] = ACTIONS(5153), + [anon_sym_switch] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_and] = ACTIONS(5153), + [anon_sym_or] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_QMARK_QMARK] = ACTIONS(5153), + [anon_sym_from] = ACTIONS(5153), + [anon_sym_into] = ACTIONS(5153), + [anon_sym_join] = ACTIONS(5153), + [anon_sym_on] = ACTIONS(5153), + [anon_sym_equals] = ACTIONS(5153), + [anon_sym_let] = ACTIONS(5153), + [anon_sym_orderby] = ACTIONS(5153), + [anon_sym_group] = ACTIONS(5153), + [anon_sym_by] = ACTIONS(5153), + [anon_sym_select] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5153), + [anon_sym_with] = ACTIONS(5153), + [aux_sym_preproc_if_token3] = ACTIONS(5153), + [aux_sym_preproc_else_token1] = ACTIONS(5153), + [aux_sym_preproc_elif_token1] = ACTIONS(5153), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476929,63 +476964,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3065), [sym_preproc_define] = STATE(3065), [sym_preproc_undef] = STATE(3065), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4027), - [anon_sym_where] = ACTIONS(4027), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_EQ_GT] = ACTIONS(4027), - [anon_sym_switch] = ACTIONS(4027), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4027), - [anon_sym_or] = ACTIONS(4025), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_from] = ACTIONS(4027), - [anon_sym_join] = ACTIONS(4027), - [anon_sym_on] = ACTIONS(4027), - [anon_sym_equals] = ACTIONS(4027), - [anon_sym_let] = ACTIONS(4027), - [anon_sym_orderby] = ACTIONS(4027), - [anon_sym_group] = ACTIONS(4027), - [anon_sym_by] = ACTIONS(4027), - [anon_sym_select] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4027), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4027), - [aux_sym_preproc_if_token3] = ACTIONS(4027), - [aux_sym_preproc_else_token1] = ACTIONS(4027), - [aux_sym_preproc_elif_token1] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_where] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2063), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_EQ_GT] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_and] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_QMARK_QMARK] = ACTIONS(2061), + [anon_sym_from] = ACTIONS(2061), + [anon_sym_into] = ACTIONS(2061), + [anon_sym_join] = ACTIONS(2061), + [anon_sym_on] = ACTIONS(2061), + [anon_sym_equals] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_orderby] = ACTIONS(2061), + [anon_sym_group] = ACTIONS(2061), + [anon_sym_by] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [aux_sym_preproc_if_token3] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2061), + [aux_sym_preproc_elif_token1] = ACTIONS(2061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477007,63 +477042,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3066), [sym_preproc_define] = STATE(3066), [sym_preproc_undef] = STATE(3066), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4031), - [anon_sym_join] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_orderby] = ACTIONS(4031), - [anon_sym_group] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_COLON] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_in] = ACTIONS(1995), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1997), + [anon_sym_switch] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_and] = ACTIONS(1997), + [anon_sym_or] = ACTIONS(1995), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), + [anon_sym_from] = ACTIONS(1997), + [anon_sym_into] = ACTIONS(1997), + [anon_sym_join] = ACTIONS(1997), + [anon_sym_on] = ACTIONS(1997), + [anon_sym_equals] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_orderby] = ACTIONS(1997), + [anon_sym_group] = ACTIONS(1997), + [anon_sym_by] = ACTIONS(1997), + [anon_sym_select] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_is] = ACTIONS(1997), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_with] = ACTIONS(1997), + [aux_sym_preproc_if_token3] = ACTIONS(1997), + [aux_sym_preproc_else_token1] = ACTIONS(1997), + [aux_sym_preproc_elif_token1] = ACTIONS(1997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477085,63 +477120,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3067), [sym_preproc_define] = STATE(3067), [sym_preproc_undef] = STATE(3067), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5158), - [anon_sym_in] = ACTIONS(5158), - [anon_sym_where] = ACTIONS(5156), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5158), - [anon_sym_GT_GT_GT] = ACTIONS(5156), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_EQ_GT] = ACTIONS(5156), - [anon_sym_switch] = ACTIONS(5156), - [anon_sym_DOT_DOT] = ACTIONS(5156), - [anon_sym_and] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_QMARK_QMARK] = ACTIONS(5156), - [anon_sym_from] = ACTIONS(5156), - [anon_sym_into] = ACTIONS(5156), - [anon_sym_join] = ACTIONS(5156), - [anon_sym_on] = ACTIONS(5156), - [anon_sym_equals] = ACTIONS(5156), - [anon_sym_let] = ACTIONS(5156), - [anon_sym_orderby] = ACTIONS(5156), - [anon_sym_group] = ACTIONS(5156), - [anon_sym_by] = ACTIONS(5156), - [anon_sym_select] = ACTIONS(5156), - [anon_sym_as] = ACTIONS(5156), - [anon_sym_is] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [anon_sym_with] = ACTIONS(5156), - [aux_sym_preproc_if_token3] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_COLON] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_QMARK] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_CARET] = ACTIONS(5159), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_AMP] = ACTIONS(5161), + [anon_sym_LT_LT] = ACTIONS(5159), + [anon_sym_GT_GT] = ACTIONS(5161), + [anon_sym_GT_GT_GT] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_EQ_GT] = ACTIONS(5159), + [anon_sym_switch] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_and] = ACTIONS(5159), + [anon_sym_or] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_QMARK_QMARK] = ACTIONS(5159), + [anon_sym_from] = ACTIONS(5159), + [anon_sym_into] = ACTIONS(5159), + [anon_sym_join] = ACTIONS(5159), + [anon_sym_on] = ACTIONS(5159), + [anon_sym_equals] = ACTIONS(5159), + [anon_sym_let] = ACTIONS(5159), + [anon_sym_orderby] = ACTIONS(5159), + [anon_sym_group] = ACTIONS(5159), + [anon_sym_by] = ACTIONS(5159), + [anon_sym_select] = ACTIONS(5159), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5159), + [anon_sym_with] = ACTIONS(5159), + [aux_sym_preproc_if_token3] = ACTIONS(5159), + [aux_sym_preproc_else_token1] = ACTIONS(5159), + [aux_sym_preproc_elif_token1] = ACTIONS(5159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477163,63 +477198,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3068), [sym_preproc_define] = STATE(3068), [sym_preproc_undef] = STATE(3068), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_where] = ACTIONS(3686), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3684), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_join] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_orderby] = ACTIONS(3686), - [anon_sym_group] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_select] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_COLON] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_CARET] = ACTIONS(5163), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_LT_LT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_GT_GT_GT] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_EQ_GT] = ACTIONS(5163), + [anon_sym_switch] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_and] = ACTIONS(5163), + [anon_sym_or] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_QMARK_QMARK] = ACTIONS(5163), + [anon_sym_from] = ACTIONS(5163), + [anon_sym_into] = ACTIONS(5163), + [anon_sym_join] = ACTIONS(5163), + [anon_sym_on] = ACTIONS(5163), + [anon_sym_equals] = ACTIONS(5163), + [anon_sym_let] = ACTIONS(5163), + [anon_sym_orderby] = ACTIONS(5163), + [anon_sym_group] = ACTIONS(5163), + [anon_sym_by] = ACTIONS(5163), + [anon_sym_select] = ACTIONS(5163), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5163), + [anon_sym_with] = ACTIONS(5163), + [aux_sym_preproc_if_token3] = ACTIONS(5163), + [aux_sym_preproc_else_token1] = ACTIONS(5163), + [aux_sym_preproc_elif_token1] = ACTIONS(5163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477241,63 +477276,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3069), [sym_preproc_define] = STATE(3069), [sym_preproc_undef] = STATE(3069), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(2991), - [anon_sym_switch] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2991), - [anon_sym_into] = ACTIONS(2991), - [anon_sym_join] = ACTIONS(2991), - [anon_sym_on] = ACTIONS(2991), - [anon_sym_equals] = ACTIONS(2991), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_orderby] = ACTIONS(2991), - [anon_sym_group] = ACTIONS(2991), - [anon_sym_by] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [aux_sym_preproc_if_token3] = ACTIONS(2991), - [aux_sym_preproc_else_token1] = ACTIONS(2991), - [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_QMARK] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5169), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5169), + [anon_sym_GT_GT_GT] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_EQ_GT] = ACTIONS(5167), + [anon_sym_switch] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_and] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_QMARK_QMARK] = ACTIONS(5167), + [anon_sym_from] = ACTIONS(5167), + [anon_sym_into] = ACTIONS(5167), + [anon_sym_join] = ACTIONS(5167), + [anon_sym_on] = ACTIONS(5167), + [anon_sym_equals] = ACTIONS(5167), + [anon_sym_let] = ACTIONS(5167), + [anon_sym_orderby] = ACTIONS(5167), + [anon_sym_group] = ACTIONS(5167), + [anon_sym_by] = ACTIONS(5167), + [anon_sym_select] = ACTIONS(5167), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [anon_sym_with] = ACTIONS(5167), + [aux_sym_preproc_if_token3] = ACTIONS(5167), + [aux_sym_preproc_else_token1] = ACTIONS(5167), + [aux_sym_preproc_elif_token1] = ACTIONS(5167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477319,63 +477354,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3070), [sym_preproc_define] = STATE(3070), [sym_preproc_undef] = STATE(3070), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4898), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477397,63 +477432,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3071), [sym_preproc_define] = STATE(3071), [sym_preproc_undef] = STATE(3071), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(3150), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_and] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_from] = ACTIONS(3152), - [anon_sym_into] = ACTIONS(3152), - [anon_sym_join] = ACTIONS(3152), - [anon_sym_on] = ACTIONS(3152), - [anon_sym_equals] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_orderby] = ACTIONS(3152), - [anon_sym_group] = ACTIONS(3152), - [anon_sym_by] = ACTIONS(3152), - [anon_sym_select] = ACTIONS(3152), - [anon_sym_as] = ACTIONS(3152), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_COLON] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_RPAREN] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5173), + [anon_sym_GT] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_QMARK] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5173), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5173), + [anon_sym_GT_GT_GT] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5173), + [anon_sym_EQ_GT] = ACTIONS(5171), + [anon_sym_switch] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_QMARK_QMARK] = ACTIONS(5171), + [anon_sym_from] = ACTIONS(5171), + [anon_sym_into] = ACTIONS(5171), + [anon_sym_join] = ACTIONS(5171), + [anon_sym_on] = ACTIONS(5171), + [anon_sym_equals] = ACTIONS(5171), + [anon_sym_let] = ACTIONS(5171), + [anon_sym_orderby] = ACTIONS(5171), + [anon_sym_group] = ACTIONS(5171), + [anon_sym_by] = ACTIONS(5171), + [anon_sym_select] = ACTIONS(5171), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5171), + [anon_sym_with] = ACTIONS(5171), + [aux_sym_preproc_if_token3] = ACTIONS(5171), + [aux_sym_preproc_else_token1] = ACTIONS(5171), + [aux_sym_preproc_elif_token1] = ACTIONS(5171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477475,63 +477510,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3072), [sym_preproc_define] = STATE(3072), [sym_preproc_undef] = STATE(3072), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3676), - [anon_sym_where] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_join] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_orderby] = ACTIONS(3676), - [anon_sym_group] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_select] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_in] = ACTIONS(3722), + [anon_sym_where] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_from] = ACTIONS(3722), + [anon_sym_join] = ACTIONS(3722), + [anon_sym_on] = ACTIONS(3722), + [anon_sym_equals] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_orderby] = ACTIONS(3722), + [anon_sym_group] = ACTIONS(3722), + [anon_sym_by] = ACTIONS(3722), + [anon_sym_select] = ACTIONS(3722), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_is] = ACTIONS(3722), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3722), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477553,63 +477588,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3073), [sym_preproc_define] = STATE(3073), [sym_preproc_undef] = STATE(3073), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5160), - [anon_sym_COLON] = ACTIONS(5160), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RBRACK] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_in] = ACTIONS(5162), - [anon_sym_where] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_PLUS_PLUS] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_GT_GT_GT] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_EQ_GT] = ACTIONS(5160), - [anon_sym_switch] = ACTIONS(5160), - [anon_sym_DOT_DOT] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_or] = ACTIONS(5162), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_QMARK_QMARK] = ACTIONS(5160), - [anon_sym_from] = ACTIONS(5160), - [anon_sym_into] = ACTIONS(5160), - [anon_sym_join] = ACTIONS(5160), - [anon_sym_on] = ACTIONS(5160), - [anon_sym_equals] = ACTIONS(5160), - [anon_sym_let] = ACTIONS(5160), - [anon_sym_orderby] = ACTIONS(5160), - [anon_sym_group] = ACTIONS(5160), - [anon_sym_by] = ACTIONS(5160), - [anon_sym_select] = ACTIONS(5160), - [anon_sym_as] = ACTIONS(5160), - [anon_sym_is] = ACTIONS(5160), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), - [aux_sym_preproc_if_token3] = ACTIONS(5160), - [aux_sym_preproc_else_token1] = ACTIONS(5160), - [aux_sym_preproc_elif_token1] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_COMMA] = ACTIONS(4054), + [anon_sym_RBRACK] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4052), + [anon_sym_in] = ACTIONS(4054), + [anon_sym_where] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_EQ_GT] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_DOT_DOT] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_or] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4054), + [anon_sym_QMARK_QMARK] = ACTIONS(4054), + [anon_sym_from] = ACTIONS(4054), + [anon_sym_join] = ACTIONS(4054), + [anon_sym_on] = ACTIONS(4054), + [anon_sym_equals] = ACTIONS(4054), + [anon_sym_let] = ACTIONS(4054), + [anon_sym_orderby] = ACTIONS(4054), + [anon_sym_group] = ACTIONS(4054), + [anon_sym_by] = ACTIONS(4054), + [anon_sym_select] = ACTIONS(4054), + [anon_sym_as] = ACTIONS(4054), + [anon_sym_is] = ACTIONS(4054), + [anon_sym_DASH_GT] = ACTIONS(4054), + [anon_sym_with] = ACTIONS(4054), + [aux_sym_preproc_if_token3] = ACTIONS(4054), + [aux_sym_preproc_else_token1] = ACTIONS(4054), + [aux_sym_preproc_elif_token1] = ACTIONS(4054), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477631,63 +477666,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3074), [sym_preproc_define] = STATE(3074), [sym_preproc_undef] = STATE(3074), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RBRACK] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_in] = ACTIONS(5166), - [anon_sym_where] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5164), - [anon_sym_CARET] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_LT_LT] = ACTIONS(5164), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_GT_GT_GT] = ACTIONS(5164), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_EQ_GT] = ACTIONS(5164), - [anon_sym_switch] = ACTIONS(5164), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [anon_sym_and] = ACTIONS(5164), - [anon_sym_or] = ACTIONS(5166), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_QMARK_QMARK] = ACTIONS(5164), - [anon_sym_from] = ACTIONS(5164), - [anon_sym_into] = ACTIONS(5164), - [anon_sym_join] = ACTIONS(5164), - [anon_sym_on] = ACTIONS(5164), - [anon_sym_equals] = ACTIONS(5164), - [anon_sym_let] = ACTIONS(5164), - [anon_sym_orderby] = ACTIONS(5164), - [anon_sym_group] = ACTIONS(5164), - [anon_sym_by] = ACTIONS(5164), - [anon_sym_select] = ACTIONS(5164), - [anon_sym_as] = ACTIONS(5164), - [anon_sym_is] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), - [anon_sym_with] = ACTIONS(5164), - [aux_sym_preproc_if_token3] = ACTIONS(5164), - [aux_sym_preproc_else_token1] = ACTIONS(5164), - [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_COLON] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5177), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_QMARK] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5175), + [anon_sym_DASH_DASH] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_CARET] = ACTIONS(5175), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_AMP] = ACTIONS(5177), + [anon_sym_LT_LT] = ACTIONS(5175), + [anon_sym_GT_GT] = ACTIONS(5177), + [anon_sym_GT_GT_GT] = ACTIONS(5175), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_GT_EQ] = ACTIONS(5175), + [anon_sym_LT_EQ] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5177), + [anon_sym_EQ_GT] = ACTIONS(5175), + [anon_sym_switch] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5175), + [anon_sym_and] = ACTIONS(5175), + [anon_sym_or] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5175), + [anon_sym_QMARK_QMARK] = ACTIONS(5175), + [anon_sym_from] = ACTIONS(5175), + [anon_sym_into] = ACTIONS(5175), + [anon_sym_join] = ACTIONS(5175), + [anon_sym_on] = ACTIONS(5175), + [anon_sym_equals] = ACTIONS(5175), + [anon_sym_let] = ACTIONS(5175), + [anon_sym_orderby] = ACTIONS(5175), + [anon_sym_group] = ACTIONS(5175), + [anon_sym_by] = ACTIONS(5175), + [anon_sym_select] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5175), + [anon_sym_with] = ACTIONS(5175), + [aux_sym_preproc_if_token3] = ACTIONS(5175), + [aux_sym_preproc_else_token1] = ACTIONS(5175), + [aux_sym_preproc_elif_token1] = ACTIONS(5175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477709,63 +477744,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3075), [sym_preproc_define] = STATE(3075), [sym_preproc_undef] = STATE(3075), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COLON] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RBRACK] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_in] = ACTIONS(5170), - [anon_sym_where] = ACTIONS(5168), - [anon_sym_QMARK] = ACTIONS(5170), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_CARET] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5170), - [anon_sym_GT_GT_GT] = ACTIONS(5168), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_EQ_GT] = ACTIONS(5168), - [anon_sym_switch] = ACTIONS(5168), - [anon_sym_DOT_DOT] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_QMARK_QMARK] = ACTIONS(5168), - [anon_sym_from] = ACTIONS(5168), - [anon_sym_into] = ACTIONS(5168), - [anon_sym_join] = ACTIONS(5168), - [anon_sym_on] = ACTIONS(5168), - [anon_sym_equals] = ACTIONS(5168), - [anon_sym_let] = ACTIONS(5168), - [anon_sym_orderby] = ACTIONS(5168), - [anon_sym_group] = ACTIONS(5168), - [anon_sym_by] = ACTIONS(5168), - [anon_sym_select] = ACTIONS(5168), - [anon_sym_as] = ACTIONS(5168), - [anon_sym_is] = ACTIONS(5168), - [anon_sym_DASH_GT] = ACTIONS(5168), - [anon_sym_with] = ACTIONS(5168), - [aux_sym_preproc_if_token3] = ACTIONS(5168), - [aux_sym_preproc_else_token1] = ACTIONS(5168), - [aux_sym_preproc_elif_token1] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5181), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_QMARK] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_CARET] = ACTIONS(5179), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_LT_LT] = ACTIONS(5179), + [anon_sym_GT_GT] = ACTIONS(5181), + [anon_sym_GT_GT_GT] = ACTIONS(5179), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5181), + [anon_sym_EQ_GT] = ACTIONS(5179), + [anon_sym_switch] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5179), + [anon_sym_PIPE_PIPE] = ACTIONS(5179), + [anon_sym_QMARK_QMARK] = ACTIONS(5179), + [anon_sym_from] = ACTIONS(5179), + [anon_sym_into] = ACTIONS(5179), + [anon_sym_join] = ACTIONS(5179), + [anon_sym_on] = ACTIONS(5179), + [anon_sym_equals] = ACTIONS(5179), + [anon_sym_let] = ACTIONS(5179), + [anon_sym_orderby] = ACTIONS(5179), + [anon_sym_group] = ACTIONS(5179), + [anon_sym_by] = ACTIONS(5179), + [anon_sym_select] = ACTIONS(5179), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5179), + [anon_sym_with] = ACTIONS(5179), + [aux_sym_preproc_if_token3] = ACTIONS(5179), + [aux_sym_preproc_else_token1] = ACTIONS(5179), + [aux_sym_preproc_elif_token1] = ACTIONS(5179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477787,63 +477822,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3076), [sym_preproc_define] = STATE(3076), [sym_preproc_undef] = STATE(3076), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RBRACK] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(5174), - [anon_sym_GT] = ACTIONS(5174), - [anon_sym_in] = ACTIONS(5174), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_CARET] = ACTIONS(5172), - [anon_sym_PIPE] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_LT_LT] = ACTIONS(5172), - [anon_sym_GT_GT] = ACTIONS(5174), - [anon_sym_GT_GT_GT] = ACTIONS(5172), - [anon_sym_EQ_EQ] = ACTIONS(5172), - [anon_sym_BANG_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_EQ_GT] = ACTIONS(5172), - [anon_sym_switch] = ACTIONS(5172), - [anon_sym_DOT_DOT] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_QMARK_QMARK] = ACTIONS(5172), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_on] = ACTIONS(5172), - [anon_sym_equals] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_by] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5172), - [anon_sym_is] = ACTIONS(5172), - [anon_sym_DASH_GT] = ACTIONS(5172), - [anon_sym_with] = ACTIONS(5172), - [aux_sym_preproc_if_token3] = ACTIONS(5172), - [aux_sym_preproc_else_token1] = ACTIONS(5172), - [aux_sym_preproc_elif_token1] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_COLON] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_QMARK] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5183), + [anon_sym_DASH_DASH] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_CARET] = ACTIONS(5183), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5185), + [anon_sym_LT_LT] = ACTIONS(5183), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_GT_GT_GT] = ACTIONS(5183), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_EQ_GT] = ACTIONS(5183), + [anon_sym_switch] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5183), + [anon_sym_QMARK_QMARK] = ACTIONS(5183), + [anon_sym_from] = ACTIONS(5183), + [anon_sym_into] = ACTIONS(5183), + [anon_sym_join] = ACTIONS(5183), + [anon_sym_on] = ACTIONS(5183), + [anon_sym_equals] = ACTIONS(5183), + [anon_sym_let] = ACTIONS(5183), + [anon_sym_orderby] = ACTIONS(5183), + [anon_sym_group] = ACTIONS(5183), + [anon_sym_by] = ACTIONS(5183), + [anon_sym_select] = ACTIONS(5183), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5183), + [anon_sym_with] = ACTIONS(5183), + [aux_sym_preproc_if_token3] = ACTIONS(5183), + [aux_sym_preproc_else_token1] = ACTIONS(5183), + [aux_sym_preproc_elif_token1] = ACTIONS(5183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477865,63 +477900,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3077), [sym_preproc_define] = STATE(3077), [sym_preproc_undef] = STATE(3077), - [anon_sym_SEMI] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_COLON] = ACTIONS(5176), - [anon_sym_COMMA] = ACTIONS(5176), - [anon_sym_RBRACK] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(5176), - [anon_sym_RBRACE] = ACTIONS(5176), - [anon_sym_LT] = ACTIONS(5178), - [anon_sym_GT] = ACTIONS(5178), - [anon_sym_in] = ACTIONS(5178), - [anon_sym_where] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(5178), - [anon_sym_BANG] = ACTIONS(5178), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_PLUS] = ACTIONS(5178), - [anon_sym_DASH] = ACTIONS(5178), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_SLASH] = ACTIONS(5178), - [anon_sym_PERCENT] = ACTIONS(5176), - [anon_sym_CARET] = ACTIONS(5176), - [anon_sym_PIPE] = ACTIONS(5178), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LT_LT] = ACTIONS(5176), - [anon_sym_GT_GT] = ACTIONS(5178), - [anon_sym_GT_GT_GT] = ACTIONS(5176), - [anon_sym_EQ_EQ] = ACTIONS(5176), - [anon_sym_BANG_EQ] = ACTIONS(5176), - [anon_sym_GT_EQ] = ACTIONS(5176), - [anon_sym_LT_EQ] = ACTIONS(5176), - [anon_sym_DOT] = ACTIONS(5178), - [anon_sym_EQ_GT] = ACTIONS(5176), - [anon_sym_switch] = ACTIONS(5176), - [anon_sym_DOT_DOT] = ACTIONS(5176), - [anon_sym_and] = ACTIONS(5176), - [anon_sym_or] = ACTIONS(5178), - [anon_sym_AMP_AMP] = ACTIONS(5176), - [anon_sym_PIPE_PIPE] = ACTIONS(5176), - [anon_sym_QMARK_QMARK] = ACTIONS(5176), - [anon_sym_from] = ACTIONS(5176), - [anon_sym_into] = ACTIONS(5176), - [anon_sym_join] = ACTIONS(5176), - [anon_sym_on] = ACTIONS(5176), - [anon_sym_equals] = ACTIONS(5176), - [anon_sym_let] = ACTIONS(5176), - [anon_sym_orderby] = ACTIONS(5176), - [anon_sym_group] = ACTIONS(5176), - [anon_sym_by] = ACTIONS(5176), - [anon_sym_select] = ACTIONS(5176), - [anon_sym_as] = ACTIONS(5176), - [anon_sym_is] = ACTIONS(5176), - [anon_sym_DASH_GT] = ACTIONS(5176), - [anon_sym_with] = ACTIONS(5176), - [aux_sym_preproc_if_token3] = ACTIONS(5176), - [aux_sym_preproc_else_token1] = ACTIONS(5176), - [aux_sym_preproc_elif_token1] = ACTIONS(5176), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_EQ_GT] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_from] = ACTIONS(4108), + [anon_sym_join] = ACTIONS(4108), + [anon_sym_on] = ACTIONS(4108), + [anon_sym_equals] = ACTIONS(4108), + [anon_sym_let] = ACTIONS(4108), + [anon_sym_orderby] = ACTIONS(4108), + [anon_sym_group] = ACTIONS(4108), + [anon_sym_by] = ACTIONS(4108), + [anon_sym_select] = ACTIONS(4108), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4108), + [aux_sym_preproc_if_token3] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477943,63 +477978,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3078), [sym_preproc_define] = STATE(3078), [sym_preproc_undef] = STATE(3078), - [anon_sym_SEMI] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5182), - [anon_sym_where] = ACTIONS(5180), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5180), - [anon_sym_PIPE] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_LT_LT] = ACTIONS(5180), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_GT_GT_GT] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5180), - [anon_sym_BANG_EQ] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5180), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_EQ_GT] = ACTIONS(5180), - [anon_sym_switch] = ACTIONS(5180), - [anon_sym_DOT_DOT] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_QMARK_QMARK] = ACTIONS(5180), - [anon_sym_from] = ACTIONS(5180), - [anon_sym_into] = ACTIONS(5180), - [anon_sym_join] = ACTIONS(5180), - [anon_sym_on] = ACTIONS(5180), - [anon_sym_equals] = ACTIONS(5180), - [anon_sym_let] = ACTIONS(5180), - [anon_sym_orderby] = ACTIONS(5180), - [anon_sym_group] = ACTIONS(5180), - [anon_sym_by] = ACTIONS(5180), - [anon_sym_select] = ACTIONS(5180), - [anon_sym_as] = ACTIONS(5180), - [anon_sym_is] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5180), - [anon_sym_with] = ACTIONS(5180), - [aux_sym_preproc_if_token3] = ACTIONS(5180), - [aux_sym_preproc_else_token1] = ACTIONS(5180), - [aux_sym_preproc_elif_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5189), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_QMARK] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_CARET] = ACTIONS(5187), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_AMP] = ACTIONS(5189), + [anon_sym_LT_LT] = ACTIONS(5187), + [anon_sym_GT_GT] = ACTIONS(5189), + [anon_sym_GT_GT_GT] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5189), + [anon_sym_EQ_GT] = ACTIONS(5187), + [anon_sym_switch] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_and] = ACTIONS(5187), + [anon_sym_or] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_QMARK_QMARK] = ACTIONS(5187), + [anon_sym_from] = ACTIONS(5187), + [anon_sym_into] = ACTIONS(5187), + [anon_sym_join] = ACTIONS(5187), + [anon_sym_on] = ACTIONS(5187), + [anon_sym_equals] = ACTIONS(5187), + [anon_sym_let] = ACTIONS(5187), + [anon_sym_orderby] = ACTIONS(5187), + [anon_sym_group] = ACTIONS(5187), + [anon_sym_by] = ACTIONS(5187), + [anon_sym_select] = ACTIONS(5187), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5187), + [anon_sym_with] = ACTIONS(5187), + [aux_sym_preproc_if_token3] = ACTIONS(5187), + [aux_sym_preproc_else_token1] = ACTIONS(5187), + [aux_sym_preproc_elif_token1] = ACTIONS(5187), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478021,63 +478056,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3079), [sym_preproc_define] = STATE(3079), [sym_preproc_undef] = STATE(3079), - [anon_sym_SEMI] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_RBRACK] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_LT] = ACTIONS(5186), - [anon_sym_GT] = ACTIONS(5186), - [anon_sym_in] = ACTIONS(5186), - [anon_sym_where] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_PLUS_PLUS] = ACTIONS(5184), - [anon_sym_DASH_DASH] = ACTIONS(5184), - [anon_sym_PLUS] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_SLASH] = ACTIONS(5186), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5186), - [anon_sym_GT_GT_GT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5184), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_EQ_GT] = ACTIONS(5184), - [anon_sym_switch] = ACTIONS(5184), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5186), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_QMARK_QMARK] = ACTIONS(5184), - [anon_sym_from] = ACTIONS(5184), - [anon_sym_into] = ACTIONS(5184), - [anon_sym_join] = ACTIONS(5184), - [anon_sym_on] = ACTIONS(5184), - [anon_sym_equals] = ACTIONS(5184), - [anon_sym_let] = ACTIONS(5184), - [anon_sym_orderby] = ACTIONS(5184), - [anon_sym_group] = ACTIONS(5184), - [anon_sym_by] = ACTIONS(5184), - [anon_sym_select] = ACTIONS(5184), - [anon_sym_as] = ACTIONS(5184), - [anon_sym_is] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5184), - [anon_sym_with] = ACTIONS(5184), - [aux_sym_preproc_if_token3] = ACTIONS(5184), - [aux_sym_preproc_else_token1] = ACTIONS(5184), - [aux_sym_preproc_elif_token1] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_COLON] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_QMARK] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5191), + [anon_sym_DASH_DASH] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_CARET] = ACTIONS(5191), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_AMP] = ACTIONS(5193), + [anon_sym_LT_LT] = ACTIONS(5191), + [anon_sym_GT_GT] = ACTIONS(5193), + [anon_sym_GT_GT_GT] = ACTIONS(5191), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_GT_EQ] = ACTIONS(5191), + [anon_sym_LT_EQ] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_EQ_GT] = ACTIONS(5191), + [anon_sym_switch] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5191), + [anon_sym_and] = ACTIONS(5191), + [anon_sym_or] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5191), + [anon_sym_PIPE_PIPE] = ACTIONS(5191), + [anon_sym_QMARK_QMARK] = ACTIONS(5191), + [anon_sym_from] = ACTIONS(5191), + [anon_sym_into] = ACTIONS(5191), + [anon_sym_join] = ACTIONS(5191), + [anon_sym_on] = ACTIONS(5191), + [anon_sym_equals] = ACTIONS(5191), + [anon_sym_let] = ACTIONS(5191), + [anon_sym_orderby] = ACTIONS(5191), + [anon_sym_group] = ACTIONS(5191), + [anon_sym_by] = ACTIONS(5191), + [anon_sym_select] = ACTIONS(5191), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), + [anon_sym_with] = ACTIONS(5191), + [aux_sym_preproc_if_token3] = ACTIONS(5191), + [aux_sym_preproc_else_token1] = ACTIONS(5191), + [aux_sym_preproc_elif_token1] = ACTIONS(5191), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478099,63 +478134,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3080), [sym_preproc_define] = STATE(3080), [sym_preproc_undef] = STATE(3080), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4142), - [anon_sym_GT] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4144), - [anon_sym_where] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4142), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_SLASH] = ACTIONS(4142), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_PIPE] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4142), - [anon_sym_LT_LT] = ACTIONS(4144), - [anon_sym_GT_GT] = ACTIONS(4142), - [anon_sym_GT_GT_GT] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_EQ_GT] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_or] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4144), - [anon_sym_from] = ACTIONS(4144), - [anon_sym_join] = ACTIONS(4144), - [anon_sym_on] = ACTIONS(4144), - [anon_sym_equals] = ACTIONS(4144), - [anon_sym_let] = ACTIONS(4144), - [anon_sym_orderby] = ACTIONS(4144), - [anon_sym_group] = ACTIONS(4144), - [anon_sym_by] = ACTIONS(4144), - [anon_sym_select] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [anon_sym_with] = ACTIONS(4144), - [aux_sym_preproc_if_token3] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_extern] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_unsafe] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_event] = ACTIONS(3785), + [anon_sym_class] = ACTIONS(3785), + [anon_sym_ref] = ACTIONS(3785), + [anon_sym_struct] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3785), + [anon_sym_interface] = ACTIONS(3785), + [anon_sym_delegate] = ACTIONS(3785), + [anon_sym_record] = ACTIONS(3785), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_const] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_fixed] = ACTIONS(3785), + [anon_sym_internal] = ACTIONS(3785), + [anon_sym_new] = ACTIONS(3785), + [anon_sym_override] = ACTIONS(3785), + [anon_sym_partial] = ACTIONS(3785), + [anon_sym_private] = ACTIONS(3785), + [anon_sym_protected] = ACTIONS(3785), + [anon_sym_public] = ACTIONS(3785), + [anon_sym_readonly] = ACTIONS(3785), + [anon_sym_required] = ACTIONS(3785), + [anon_sym_sealed] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3785), + [anon_sym_volatile] = ACTIONS(3785), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_TILDE] = ACTIONS(3787), + [anon_sym_implicit] = ACTIONS(3785), + [anon_sym_explicit] = ACTIONS(3785), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_var] = ACTIONS(3785), + [sym_predefined_type] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478177,63 +478212,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3081), [sym_preproc_define] = STATE(3081), [sym_preproc_undef] = STATE(3081), - [anon_sym_SEMI] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_RBRACK] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5188), - [anon_sym_RPAREN] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_in] = ACTIONS(5190), - [anon_sym_where] = ACTIONS(5188), - [anon_sym_QMARK] = ACTIONS(5190), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_PLUS_PLUS] = ACTIONS(5188), - [anon_sym_DASH_DASH] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_CARET] = ACTIONS(5188), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5188), - [anon_sym_GT_GT] = ACTIONS(5190), - [anon_sym_GT_GT_GT] = ACTIONS(5188), - [anon_sym_EQ_EQ] = ACTIONS(5188), - [anon_sym_BANG_EQ] = ACTIONS(5188), - [anon_sym_GT_EQ] = ACTIONS(5188), - [anon_sym_LT_EQ] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_EQ_GT] = ACTIONS(5188), - [anon_sym_switch] = ACTIONS(5188), - [anon_sym_DOT_DOT] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_QMARK_QMARK] = ACTIONS(5188), - [anon_sym_from] = ACTIONS(5188), - [anon_sym_into] = ACTIONS(5188), - [anon_sym_join] = ACTIONS(5188), - [anon_sym_on] = ACTIONS(5188), - [anon_sym_equals] = ACTIONS(5188), - [anon_sym_let] = ACTIONS(5188), - [anon_sym_orderby] = ACTIONS(5188), - [anon_sym_group] = ACTIONS(5188), - [anon_sym_by] = ACTIONS(5188), - [anon_sym_select] = ACTIONS(5188), - [anon_sym_as] = ACTIONS(5188), - [anon_sym_is] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_with] = ACTIONS(5188), - [aux_sym_preproc_if_token3] = ACTIONS(5188), - [aux_sym_preproc_else_token1] = ACTIONS(5188), - [aux_sym_preproc_elif_token1] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_QMARK] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_CARET] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5197), + [anon_sym_LT_LT] = ACTIONS(5195), + [anon_sym_GT_GT] = ACTIONS(5197), + [anon_sym_GT_GT_GT] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_EQ_GT] = ACTIONS(5195), + [anon_sym_switch] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_and] = ACTIONS(5195), + [anon_sym_or] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_QMARK_QMARK] = ACTIONS(5195), + [anon_sym_from] = ACTIONS(5195), + [anon_sym_into] = ACTIONS(5195), + [anon_sym_join] = ACTIONS(5195), + [anon_sym_on] = ACTIONS(5195), + [anon_sym_equals] = ACTIONS(5195), + [anon_sym_let] = ACTIONS(5195), + [anon_sym_orderby] = ACTIONS(5195), + [anon_sym_group] = ACTIONS(5195), + [anon_sym_by] = ACTIONS(5195), + [anon_sym_select] = ACTIONS(5195), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), + [anon_sym_with] = ACTIONS(5195), + [aux_sym_preproc_if_token3] = ACTIONS(5195), + [aux_sym_preproc_else_token1] = ACTIONS(5195), + [aux_sym_preproc_elif_token1] = ACTIONS(5195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478255,63 +478290,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3082), [sym_preproc_define] = STATE(3082), [sym_preproc_undef] = STATE(3082), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4045), - [anon_sym_where] = ACTIONS(4045), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_switch] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4045), - [anon_sym_or] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_from] = ACTIONS(4045), - [anon_sym_join] = ACTIONS(4045), - [anon_sym_on] = ACTIONS(4045), - [anon_sym_equals] = ACTIONS(4045), - [anon_sym_let] = ACTIONS(4045), - [anon_sym_orderby] = ACTIONS(4045), - [anon_sym_group] = ACTIONS(4045), - [anon_sym_by] = ACTIONS(4045), - [anon_sym_select] = ACTIONS(4045), - [anon_sym_as] = ACTIONS(4045), - [anon_sym_is] = ACTIONS(4045), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4045), - [aux_sym_preproc_if_token3] = ACTIONS(4045), - [aux_sym_preproc_else_token1] = ACTIONS(4045), - [aux_sym_preproc_elif_token1] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478333,63 +478368,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3083), [sym_preproc_define] = STATE(3083), [sym_preproc_undef] = STATE(3083), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RBRACK] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_LT] = ACTIONS(5194), - [anon_sym_GT] = ACTIONS(5194), - [anon_sym_in] = ACTIONS(5194), - [anon_sym_where] = ACTIONS(5192), - [anon_sym_QMARK] = ACTIONS(5194), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5194), - [anon_sym_GT_GT_GT] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(5192), - [anon_sym_switch] = ACTIONS(5192), - [anon_sym_DOT_DOT] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5194), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_QMARK_QMARK] = ACTIONS(5192), - [anon_sym_from] = ACTIONS(5192), - [anon_sym_into] = ACTIONS(5192), - [anon_sym_join] = ACTIONS(5192), - [anon_sym_on] = ACTIONS(5192), - [anon_sym_equals] = ACTIONS(5192), - [anon_sym_let] = ACTIONS(5192), - [anon_sym_orderby] = ACTIONS(5192), - [anon_sym_group] = ACTIONS(5192), - [anon_sym_by] = ACTIONS(5192), - [anon_sym_select] = ACTIONS(5192), - [anon_sym_as] = ACTIONS(5192), - [anon_sym_is] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [anon_sym_with] = ACTIONS(5192), - [aux_sym_preproc_if_token3] = ACTIONS(5192), - [aux_sym_preproc_else_token1] = ACTIONS(5192), - [aux_sym_preproc_elif_token1] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5201), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_QMARK] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_LT_LT] = ACTIONS(5199), + [anon_sym_GT_GT] = ACTIONS(5201), + [anon_sym_GT_GT_GT] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5201), + [anon_sym_EQ_GT] = ACTIONS(5199), + [anon_sym_switch] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_and] = ACTIONS(5199), + [anon_sym_or] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_QMARK_QMARK] = ACTIONS(5199), + [anon_sym_from] = ACTIONS(5199), + [anon_sym_into] = ACTIONS(5199), + [anon_sym_join] = ACTIONS(5199), + [anon_sym_on] = ACTIONS(5199), + [anon_sym_equals] = ACTIONS(5199), + [anon_sym_let] = ACTIONS(5199), + [anon_sym_orderby] = ACTIONS(5199), + [anon_sym_group] = ACTIONS(5199), + [anon_sym_by] = ACTIONS(5199), + [anon_sym_select] = ACTIONS(5199), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5199), + [anon_sym_with] = ACTIONS(5199), + [aux_sym_preproc_if_token3] = ACTIONS(5199), + [aux_sym_preproc_else_token1] = ACTIONS(5199), + [aux_sym_preproc_elif_token1] = ACTIONS(5199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478411,63 +478446,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3084), [sym_preproc_define] = STATE(3084), [sym_preproc_undef] = STATE(3084), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(5196), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5198), - [anon_sym_where] = ACTIONS(5196), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5196), - [anon_sym_DASH_DASH] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_CARET] = ACTIONS(5196), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_LT_LT] = ACTIONS(5196), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_GT_GT_GT] = ACTIONS(5196), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_EQ_GT] = ACTIONS(5196), - [anon_sym_switch] = ACTIONS(5196), - [anon_sym_DOT_DOT] = ACTIONS(5196), - [anon_sym_and] = ACTIONS(5196), - [anon_sym_or] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_QMARK_QMARK] = ACTIONS(5196), - [anon_sym_from] = ACTIONS(5196), - [anon_sym_into] = ACTIONS(5196), - [anon_sym_join] = ACTIONS(5196), - [anon_sym_on] = ACTIONS(5196), - [anon_sym_equals] = ACTIONS(5196), - [anon_sym_let] = ACTIONS(5196), - [anon_sym_orderby] = ACTIONS(5196), - [anon_sym_group] = ACTIONS(5196), - [anon_sym_by] = ACTIONS(5196), - [anon_sym_select] = ACTIONS(5196), - [anon_sym_as] = ACTIONS(5196), - [anon_sym_is] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [anon_sym_with] = ACTIONS(5196), - [aux_sym_preproc_if_token3] = ACTIONS(5196), - [aux_sym_preproc_else_token1] = ACTIONS(5196), - [aux_sym_preproc_elif_token1] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_COLON] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5203), + [anon_sym_QMARK] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PLUS_PLUS] = ACTIONS(5203), + [anon_sym_DASH_DASH] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5203), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_CARET] = ACTIONS(5203), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_AMP] = ACTIONS(5205), + [anon_sym_LT_LT] = ACTIONS(5203), + [anon_sym_GT_GT] = ACTIONS(5205), + [anon_sym_GT_GT_GT] = ACTIONS(5203), + [anon_sym_EQ_EQ] = ACTIONS(5203), + [anon_sym_BANG_EQ] = ACTIONS(5203), + [anon_sym_GT_EQ] = ACTIONS(5203), + [anon_sym_LT_EQ] = ACTIONS(5203), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_EQ_GT] = ACTIONS(5203), + [anon_sym_switch] = ACTIONS(5203), + [anon_sym_DOT_DOT] = ACTIONS(5203), + [anon_sym_and] = ACTIONS(5203), + [anon_sym_or] = ACTIONS(5205), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_QMARK_QMARK] = ACTIONS(5203), + [anon_sym_from] = ACTIONS(5203), + [anon_sym_into] = ACTIONS(5203), + [anon_sym_join] = ACTIONS(5203), + [anon_sym_on] = ACTIONS(5203), + [anon_sym_equals] = ACTIONS(5203), + [anon_sym_let] = ACTIONS(5203), + [anon_sym_orderby] = ACTIONS(5203), + [anon_sym_group] = ACTIONS(5203), + [anon_sym_by] = ACTIONS(5203), + [anon_sym_select] = ACTIONS(5203), + [anon_sym_as] = ACTIONS(5203), + [anon_sym_is] = ACTIONS(5203), + [anon_sym_DASH_GT] = ACTIONS(5203), + [anon_sym_with] = ACTIONS(5203), + [aux_sym_preproc_if_token3] = ACTIONS(5203), + [aux_sym_preproc_else_token1] = ACTIONS(5203), + [aux_sym_preproc_elif_token1] = ACTIONS(5203), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478489,63 +478524,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3085), [sym_preproc_define] = STATE(3085), [sym_preproc_undef] = STATE(3085), - [anon_sym_SEMI] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_COLON] = ACTIONS(5200), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_RBRACK] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5202), - [anon_sym_where] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_BANG] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_GT_GT_GT] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5200), - [anon_sym_BANG_EQ] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_EQ_GT] = ACTIONS(5200), - [anon_sym_switch] = ACTIONS(5200), - [anon_sym_DOT_DOT] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_QMARK_QMARK] = ACTIONS(5200), - [anon_sym_from] = ACTIONS(5200), - [anon_sym_into] = ACTIONS(5200), - [anon_sym_join] = ACTIONS(5200), - [anon_sym_on] = ACTIONS(5200), - [anon_sym_equals] = ACTIONS(5200), - [anon_sym_let] = ACTIONS(5200), - [anon_sym_orderby] = ACTIONS(5200), - [anon_sym_group] = ACTIONS(5200), - [anon_sym_by] = ACTIONS(5200), - [anon_sym_select] = ACTIONS(5200), - [anon_sym_as] = ACTIONS(5200), - [anon_sym_is] = ACTIONS(5200), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_with] = ACTIONS(5200), - [aux_sym_preproc_if_token3] = ACTIONS(5200), - [aux_sym_preproc_else_token1] = ACTIONS(5200), - [aux_sym_preproc_elif_token1] = ACTIONS(5200), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_COLON] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_QMARK] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_CARET] = ACTIONS(5207), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5209), + [anon_sym_LT_LT] = ACTIONS(5207), + [anon_sym_GT_GT] = ACTIONS(5209), + [anon_sym_GT_GT_GT] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_EQ_GT] = ACTIONS(5207), + [anon_sym_switch] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_and] = ACTIONS(5207), + [anon_sym_or] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_QMARK_QMARK] = ACTIONS(5207), + [anon_sym_from] = ACTIONS(5207), + [anon_sym_into] = ACTIONS(5207), + [anon_sym_join] = ACTIONS(5207), + [anon_sym_on] = ACTIONS(5207), + [anon_sym_equals] = ACTIONS(5207), + [anon_sym_let] = ACTIONS(5207), + [anon_sym_orderby] = ACTIONS(5207), + [anon_sym_group] = ACTIONS(5207), + [anon_sym_by] = ACTIONS(5207), + [anon_sym_select] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_with] = ACTIONS(5207), + [aux_sym_preproc_if_token3] = ACTIONS(5207), + [aux_sym_preproc_else_token1] = ACTIONS(5207), + [aux_sym_preproc_elif_token1] = ACTIONS(5207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478567,63 +478602,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3086), [sym_preproc_define] = STATE(3086), [sym_preproc_undef] = STATE(3086), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3672), - [anon_sym_where] = ACTIONS(3672), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3672), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_join] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_orderby] = ACTIONS(3672), - [anon_sym_group] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_select] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5211), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5213), + [anon_sym_LT_LT] = ACTIONS(5211), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_GT_GT_GT] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_EQ_GT] = ACTIONS(5211), + [anon_sym_switch] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_or] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_QMARK_QMARK] = ACTIONS(5211), + [anon_sym_from] = ACTIONS(5211), + [anon_sym_into] = ACTIONS(5211), + [anon_sym_join] = ACTIONS(5211), + [anon_sym_on] = ACTIONS(5211), + [anon_sym_equals] = ACTIONS(5211), + [anon_sym_let] = ACTIONS(5211), + [anon_sym_orderby] = ACTIONS(5211), + [anon_sym_group] = ACTIONS(5211), + [anon_sym_by] = ACTIONS(5211), + [anon_sym_select] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5211), + [anon_sym_with] = ACTIONS(5211), + [aux_sym_preproc_if_token3] = ACTIONS(5211), + [aux_sym_preproc_else_token1] = ACTIONS(5211), + [aux_sym_preproc_elif_token1] = ACTIONS(5211), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478645,63 +478680,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3087), [sym_preproc_define] = STATE(3087), [sym_preproc_undef] = STATE(3087), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_COLON] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RBRACK] = ACTIONS(5204), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_RBRACE] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_in] = ACTIONS(5206), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_QMARK] = ACTIONS(5206), - [anon_sym_BANG] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5204), - [anon_sym_DASH_DASH] = ACTIONS(5204), - [anon_sym_PLUS] = ACTIONS(5206), - [anon_sym_DASH] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_SLASH] = ACTIONS(5206), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_CARET] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_GT_GT_GT] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(5206), - [anon_sym_EQ_GT] = ACTIONS(5204), - [anon_sym_switch] = ACTIONS(5204), - [anon_sym_DOT_DOT] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_QMARK_QMARK] = ACTIONS(5204), - [anon_sym_from] = ACTIONS(5204), - [anon_sym_into] = ACTIONS(5204), - [anon_sym_join] = ACTIONS(5204), - [anon_sym_on] = ACTIONS(5204), - [anon_sym_equals] = ACTIONS(5204), - [anon_sym_let] = ACTIONS(5204), - [anon_sym_orderby] = ACTIONS(5204), - [anon_sym_group] = ACTIONS(5204), - [anon_sym_by] = ACTIONS(5204), - [anon_sym_select] = ACTIONS(5204), - [anon_sym_as] = ACTIONS(5204), - [anon_sym_is] = ACTIONS(5204), - [anon_sym_DASH_GT] = ACTIONS(5204), - [anon_sym_with] = ACTIONS(5204), - [aux_sym_preproc_if_token3] = ACTIONS(5204), - [aux_sym_preproc_else_token1] = ACTIONS(5204), - [aux_sym_preproc_elif_token1] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2983), + [anon_sym_into] = ACTIONS(2983), + [anon_sym_join] = ACTIONS(2983), + [anon_sym_on] = ACTIONS(2983), + [anon_sym_equals] = ACTIONS(2983), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_orderby] = ACTIONS(2983), + [anon_sym_group] = ACTIONS(2983), + [anon_sym_by] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [aux_sym_preproc_if_token3] = ACTIONS(2983), + [aux_sym_preproc_else_token1] = ACTIONS(2983), + [aux_sym_preproc_elif_token1] = ACTIONS(2983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478723,63 +478758,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3088), [sym_preproc_define] = STATE(3088), [sym_preproc_undef] = STATE(3088), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5210), - [anon_sym_DASH_EQ] = ACTIONS(5210), - [anon_sym_STAR_EQ] = ACTIONS(5210), - [anon_sym_SLASH_EQ] = ACTIONS(5210), - [anon_sym_PERCENT_EQ] = ACTIONS(5210), - [anon_sym_AMP_EQ] = ACTIONS(5210), - [anon_sym_CARET_EQ] = ACTIONS(5210), - [anon_sym_PIPE_EQ] = ACTIONS(5210), - [anon_sym_LT_LT_EQ] = ACTIONS(5210), - [anon_sym_GT_GT_EQ] = ACTIONS(5210), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5210), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478801,63 +478836,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3089), [sym_preproc_define] = STATE(3089), [sym_preproc_undef] = STATE(3089), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RBRACK] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_in] = ACTIONS(5214), - [anon_sym_where] = ACTIONS(5212), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5214), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_GT_GT_GT] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5214), - [anon_sym_EQ_GT] = ACTIONS(5212), - [anon_sym_switch] = ACTIONS(5212), - [anon_sym_DOT_DOT] = ACTIONS(5212), - [anon_sym_and] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_QMARK_QMARK] = ACTIONS(5212), - [anon_sym_from] = ACTIONS(5212), - [anon_sym_into] = ACTIONS(5212), - [anon_sym_join] = ACTIONS(5212), - [anon_sym_on] = ACTIONS(5212), - [anon_sym_equals] = ACTIONS(5212), - [anon_sym_let] = ACTIONS(5212), - [anon_sym_orderby] = ACTIONS(5212), - [anon_sym_group] = ACTIONS(5212), - [anon_sym_by] = ACTIONS(5212), - [anon_sym_select] = ACTIONS(5212), - [anon_sym_as] = ACTIONS(5212), - [anon_sym_is] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [anon_sym_with] = ACTIONS(5212), - [aux_sym_preproc_if_token3] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_in] = ACTIONS(5220), + [anon_sym_where] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5218), + [anon_sym_DASH_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5218), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_GT_GT_GT] = ACTIONS(5218), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_EQ_GT] = ACTIONS(5218), + [anon_sym_switch] = ACTIONS(5218), + [anon_sym_DOT_DOT] = ACTIONS(5218), + [anon_sym_and] = ACTIONS(5218), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5218), + [anon_sym_PIPE_PIPE] = ACTIONS(5218), + [anon_sym_QMARK_QMARK] = ACTIONS(5218), + [anon_sym_from] = ACTIONS(5218), + [anon_sym_into] = ACTIONS(5218), + [anon_sym_join] = ACTIONS(5218), + [anon_sym_on] = ACTIONS(5218), + [anon_sym_equals] = ACTIONS(5218), + [anon_sym_let] = ACTIONS(5218), + [anon_sym_orderby] = ACTIONS(5218), + [anon_sym_group] = ACTIONS(5218), + [anon_sym_by] = ACTIONS(5218), + [anon_sym_select] = ACTIONS(5218), + [anon_sym_as] = ACTIONS(5218), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_DASH_GT] = ACTIONS(5218), + [anon_sym_with] = ACTIONS(5218), + [aux_sym_preproc_if_token3] = ACTIONS(5218), + [aux_sym_preproc_else_token1] = ACTIONS(5218), + [aux_sym_preproc_elif_token1] = ACTIONS(5218), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478879,63 +478914,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3090), [sym_preproc_define] = STATE(3090), [sym_preproc_undef] = STATE(3090), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_COMMA] = ACTIONS(5216), - [anon_sym_RBRACK] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_in] = ACTIONS(5218), - [anon_sym_where] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5218), - [anon_sym_BANG] = ACTIONS(5218), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5218), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5218), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5218), - [anon_sym_GT_GT_GT] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_DOT] = ACTIONS(5218), - [anon_sym_EQ_GT] = ACTIONS(5216), - [anon_sym_switch] = ACTIONS(5216), - [anon_sym_DOT_DOT] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_or] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_QMARK_QMARK] = ACTIONS(5216), - [anon_sym_from] = ACTIONS(5216), - [anon_sym_into] = ACTIONS(5216), - [anon_sym_join] = ACTIONS(5216), - [anon_sym_on] = ACTIONS(5216), - [anon_sym_equals] = ACTIONS(5216), - [anon_sym_let] = ACTIONS(5216), - [anon_sym_orderby] = ACTIONS(5216), - [anon_sym_group] = ACTIONS(5216), - [anon_sym_by] = ACTIONS(5216), - [anon_sym_select] = ACTIONS(5216), - [anon_sym_as] = ACTIONS(5216), - [anon_sym_is] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), - [anon_sym_with] = ACTIONS(5216), - [aux_sym_preproc_if_token3] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478957,63 +478992,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3091), [sym_preproc_define] = STATE(3091), [sym_preproc_undef] = STATE(3091), - [anon_sym_SEMI] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_COLON] = ACTIONS(5220), - [anon_sym_COMMA] = ACTIONS(5220), - [anon_sym_RBRACK] = ACTIONS(5220), - [anon_sym_LPAREN] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_in] = ACTIONS(5222), - [anon_sym_where] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_BANG] = ACTIONS(5222), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5220), - [anon_sym_SLASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5220), - [anon_sym_CARET] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5220), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_GT_GT_GT] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_DOT] = ACTIONS(5222), - [anon_sym_EQ_GT] = ACTIONS(5220), - [anon_sym_switch] = ACTIONS(5220), - [anon_sym_DOT_DOT] = ACTIONS(5220), - [anon_sym_and] = ACTIONS(5220), - [anon_sym_or] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_QMARK_QMARK] = ACTIONS(5220), - [anon_sym_from] = ACTIONS(5220), - [anon_sym_into] = ACTIONS(5220), - [anon_sym_join] = ACTIONS(5220), - [anon_sym_on] = ACTIONS(5220), - [anon_sym_equals] = ACTIONS(5220), - [anon_sym_let] = ACTIONS(5220), - [anon_sym_orderby] = ACTIONS(5220), - [anon_sym_group] = ACTIONS(5220), - [anon_sym_by] = ACTIONS(5220), - [anon_sym_select] = ACTIONS(5220), - [anon_sym_as] = ACTIONS(5220), - [anon_sym_is] = ACTIONS(5220), - [anon_sym_DASH_GT] = ACTIONS(5220), - [anon_sym_with] = ACTIONS(5220), - [aux_sym_preproc_if_token3] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_in] = ACTIONS(5224), + [anon_sym_where] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_GT_GT_GT] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_switch] = ACTIONS(5222), + [anon_sym_DOT_DOT] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_QMARK_QMARK] = ACTIONS(5222), + [anon_sym_from] = ACTIONS(5222), + [anon_sym_into] = ACTIONS(5222), + [anon_sym_join] = ACTIONS(5222), + [anon_sym_on] = ACTIONS(5222), + [anon_sym_equals] = ACTIONS(5222), + [anon_sym_let] = ACTIONS(5222), + [anon_sym_orderby] = ACTIONS(5222), + [anon_sym_group] = ACTIONS(5222), + [anon_sym_by] = ACTIONS(5222), + [anon_sym_select] = ACTIONS(5222), + [anon_sym_as] = ACTIONS(5222), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_with] = ACTIONS(5222), + [aux_sym_preproc_if_token3] = ACTIONS(5222), + [aux_sym_preproc_else_token1] = ACTIONS(5222), + [aux_sym_preproc_elif_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479035,63 +479070,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3092), [sym_preproc_define] = STATE(3092), [sym_preproc_undef] = STATE(3092), - [anon_sym_SEMI] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_COMMA] = ACTIONS(5224), - [anon_sym_RBRACK] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5224), - [anon_sym_RPAREN] = ACTIONS(5224), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_in] = ACTIONS(5226), - [anon_sym_where] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_BANG] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_SLASH] = ACTIONS(5226), - [anon_sym_PERCENT] = ACTIONS(5224), - [anon_sym_CARET] = ACTIONS(5224), - [anon_sym_PIPE] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5224), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_GT_GT_GT] = ACTIONS(5224), - [anon_sym_EQ_EQ] = ACTIONS(5224), - [anon_sym_BANG_EQ] = ACTIONS(5224), - [anon_sym_GT_EQ] = ACTIONS(5224), - [anon_sym_LT_EQ] = ACTIONS(5224), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_EQ_GT] = ACTIONS(5224), - [anon_sym_switch] = ACTIONS(5224), - [anon_sym_DOT_DOT] = ACTIONS(5224), - [anon_sym_and] = ACTIONS(5224), - [anon_sym_or] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5224), - [anon_sym_PIPE_PIPE] = ACTIONS(5224), - [anon_sym_QMARK_QMARK] = ACTIONS(5224), - [anon_sym_from] = ACTIONS(5224), - [anon_sym_into] = ACTIONS(5224), - [anon_sym_join] = ACTIONS(5224), - [anon_sym_on] = ACTIONS(5224), - [anon_sym_equals] = ACTIONS(5224), - [anon_sym_let] = ACTIONS(5224), - [anon_sym_orderby] = ACTIONS(5224), - [anon_sym_group] = ACTIONS(5224), - [anon_sym_by] = ACTIONS(5224), - [anon_sym_select] = ACTIONS(5224), - [anon_sym_as] = ACTIONS(5224), - [anon_sym_is] = ACTIONS(5224), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_with] = ACTIONS(5224), - [aux_sym_preproc_if_token3] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_in] = ACTIONS(5228), + [anon_sym_where] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_GT_GT_GT] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_switch] = ACTIONS(5226), + [anon_sym_DOT_DOT] = ACTIONS(5226), + [anon_sym_and] = ACTIONS(5226), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_QMARK_QMARK] = ACTIONS(5226), + [anon_sym_from] = ACTIONS(5226), + [anon_sym_into] = ACTIONS(5226), + [anon_sym_join] = ACTIONS(5226), + [anon_sym_on] = ACTIONS(5226), + [anon_sym_equals] = ACTIONS(5226), + [anon_sym_let] = ACTIONS(5226), + [anon_sym_orderby] = ACTIONS(5226), + [anon_sym_group] = ACTIONS(5226), + [anon_sym_by] = ACTIONS(5226), + [anon_sym_select] = ACTIONS(5226), + [anon_sym_as] = ACTIONS(5226), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_with] = ACTIONS(5226), + [aux_sym_preproc_if_token3] = ACTIONS(5226), + [aux_sym_preproc_else_token1] = ACTIONS(5226), + [aux_sym_preproc_elif_token1] = ACTIONS(5226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479113,63 +479148,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3093), [sym_preproc_define] = STATE(3093), [sym_preproc_undef] = STATE(3093), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5228), - [anon_sym_RBRACK] = ACTIONS(5228), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_in] = ACTIONS(5230), - [anon_sym_where] = ACTIONS(5228), - [anon_sym_QMARK] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_GT_GT_GT] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [anon_sym_GT_EQ] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5228), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_EQ_GT] = ACTIONS(5228), - [anon_sym_switch] = ACTIONS(5228), - [anon_sym_DOT_DOT] = ACTIONS(5228), - [anon_sym_and] = ACTIONS(5228), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_QMARK_QMARK] = ACTIONS(5228), - [anon_sym_from] = ACTIONS(5228), - [anon_sym_into] = ACTIONS(5228), - [anon_sym_join] = ACTIONS(5228), - [anon_sym_on] = ACTIONS(5228), - [anon_sym_equals] = ACTIONS(5228), - [anon_sym_let] = ACTIONS(5228), - [anon_sym_orderby] = ACTIONS(5228), - [anon_sym_group] = ACTIONS(5228), - [anon_sym_by] = ACTIONS(5228), - [anon_sym_select] = ACTIONS(5228), - [anon_sym_as] = ACTIONS(5228), - [anon_sym_is] = ACTIONS(5228), - [anon_sym_DASH_GT] = ACTIONS(5228), - [anon_sym_with] = ACTIONS(5228), - [aux_sym_preproc_if_token3] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479191,63 +479226,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3094), [sym_preproc_define] = STATE(3094), [sym_preproc_undef] = STATE(3094), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_in] = ACTIONS(5234), - [anon_sym_where] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(5234), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_CARET] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5232), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_GT_GT_GT] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5234), - [anon_sym_EQ_GT] = ACTIONS(5232), - [anon_sym_switch] = ACTIONS(5232), - [anon_sym_DOT_DOT] = ACTIONS(5232), - [anon_sym_and] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_QMARK_QMARK] = ACTIONS(5232), - [anon_sym_from] = ACTIONS(5232), - [anon_sym_into] = ACTIONS(5232), - [anon_sym_join] = ACTIONS(5232), - [anon_sym_on] = ACTIONS(5232), - [anon_sym_equals] = ACTIONS(5232), - [anon_sym_let] = ACTIONS(5232), - [anon_sym_orderby] = ACTIONS(5232), - [anon_sym_group] = ACTIONS(5232), - [anon_sym_by] = ACTIONS(5232), - [anon_sym_select] = ACTIONS(5232), - [anon_sym_as] = ACTIONS(5232), - [anon_sym_is] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_with] = ACTIONS(5232), - [aux_sym_preproc_if_token3] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5232), + [anon_sym_DASH_EQ] = ACTIONS(5232), + [anon_sym_STAR_EQ] = ACTIONS(5232), + [anon_sym_SLASH_EQ] = ACTIONS(5232), + [anon_sym_PERCENT_EQ] = ACTIONS(5232), + [anon_sym_AMP_EQ] = ACTIONS(5232), + [anon_sym_CARET_EQ] = ACTIONS(5232), + [anon_sym_PIPE_EQ] = ACTIONS(5232), + [anon_sym_LT_LT_EQ] = ACTIONS(5232), + [anon_sym_GT_GT_EQ] = ACTIONS(5232), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5232), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5232), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_ascending] = ACTIONS(4898), + [anon_sym_descending] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479269,63 +479304,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3095), [sym_preproc_define] = STATE(3095), [sym_preproc_undef] = STATE(3095), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3945), - [anon_sym_where] = ACTIONS(3945), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_switch] = ACTIONS(3945), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3945), - [anon_sym_or] = ACTIONS(3943), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_from] = ACTIONS(3945), - [anon_sym_join] = ACTIONS(3945), - [anon_sym_on] = ACTIONS(3945), - [anon_sym_equals] = ACTIONS(3945), - [anon_sym_let] = ACTIONS(3945), - [anon_sym_orderby] = ACTIONS(3945), - [anon_sym_group] = ACTIONS(3945), - [anon_sym_by] = ACTIONS(3945), - [anon_sym_select] = ACTIONS(3945), - [anon_sym_as] = ACTIONS(3945), - [anon_sym_is] = ACTIONS(3945), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3945), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_RBRACK] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4293), + [anon_sym_where] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_EQ_GT] = ACTIONS(4291), + [anon_sym_switch] = ACTIONS(4291), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4291), + [anon_sym_or] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4291), + [anon_sym_into] = ACTIONS(4291), + [anon_sym_join] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_equals] = ACTIONS(4291), + [anon_sym_let] = ACTIONS(4291), + [anon_sym_orderby] = ACTIONS(4291), + [anon_sym_group] = ACTIONS(4291), + [anon_sym_by] = ACTIONS(4291), + [anon_sym_select] = ACTIONS(4291), + [anon_sym_as] = ACTIONS(4291), + [anon_sym_is] = ACTIONS(4291), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4291), + [aux_sym_preproc_if_token3] = ACTIONS(4291), + [aux_sym_preproc_else_token1] = ACTIONS(4291), + [aux_sym_preproc_elif_token1] = ACTIONS(4291), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479347,63 +479382,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3096), [sym_preproc_define] = STATE(3096), [sym_preproc_undef] = STATE(3096), - [anon_sym_SEMI] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COMMA] = ACTIONS(5236), - [anon_sym_RBRACK] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_in] = ACTIONS(5238), - [anon_sym_where] = ACTIONS(5236), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_BANG] = ACTIONS(5238), - [anon_sym_PLUS_PLUS] = ACTIONS(5236), - [anon_sym_DASH_DASH] = ACTIONS(5236), - [anon_sym_PLUS] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5236), - [anon_sym_SLASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_CARET] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5236), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_GT_GT_GT] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [anon_sym_GT_EQ] = ACTIONS(5236), - [anon_sym_LT_EQ] = ACTIONS(5236), - [anon_sym_DOT] = ACTIONS(5238), - [anon_sym_EQ_GT] = ACTIONS(5236), - [anon_sym_switch] = ACTIONS(5236), - [anon_sym_DOT_DOT] = ACTIONS(5236), - [anon_sym_and] = ACTIONS(5236), - [anon_sym_or] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_QMARK_QMARK] = ACTIONS(5236), - [anon_sym_from] = ACTIONS(5236), - [anon_sym_into] = ACTIONS(5236), - [anon_sym_join] = ACTIONS(5236), - [anon_sym_on] = ACTIONS(5236), - [anon_sym_equals] = ACTIONS(5236), - [anon_sym_let] = ACTIONS(5236), - [anon_sym_orderby] = ACTIONS(5236), - [anon_sym_group] = ACTIONS(5236), - [anon_sym_by] = ACTIONS(5236), - [anon_sym_select] = ACTIONS(5236), - [anon_sym_as] = ACTIONS(5236), - [anon_sym_is] = ACTIONS(5236), - [anon_sym_DASH_GT] = ACTIONS(5236), - [anon_sym_with] = ACTIONS(5236), - [aux_sym_preproc_if_token3] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_in] = ACTIONS(5236), + [anon_sym_where] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_GT_GT_GT] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_EQ_GT] = ACTIONS(5234), + [anon_sym_switch] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(5234), + [anon_sym_and] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_QMARK_QMARK] = ACTIONS(5234), + [anon_sym_from] = ACTIONS(5234), + [anon_sym_into] = ACTIONS(5234), + [anon_sym_join] = ACTIONS(5234), + [anon_sym_on] = ACTIONS(5234), + [anon_sym_equals] = ACTIONS(5234), + [anon_sym_let] = ACTIONS(5234), + [anon_sym_orderby] = ACTIONS(5234), + [anon_sym_group] = ACTIONS(5234), + [anon_sym_by] = ACTIONS(5234), + [anon_sym_select] = ACTIONS(5234), + [anon_sym_as] = ACTIONS(5234), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_with] = ACTIONS(5234), + [aux_sym_preproc_if_token3] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5234), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479425,63 +479460,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3097), [sym_preproc_define] = STATE(3097), [sym_preproc_undef] = STATE(3097), - [anon_sym_SEMI] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_COMMA] = ACTIONS(5240), - [anon_sym_RBRACK] = ACTIONS(5240), - [anon_sym_LPAREN] = ACTIONS(5240), - [anon_sym_RPAREN] = ACTIONS(5240), - [anon_sym_RBRACE] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5242), - [anon_sym_in] = ACTIONS(5242), - [anon_sym_where] = ACTIONS(5240), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_BANG] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5242), - [anon_sym_STAR] = ACTIONS(5240), - [anon_sym_SLASH] = ACTIONS(5242), - [anon_sym_PERCENT] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5240), - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5242), - [anon_sym_LT_LT] = ACTIONS(5240), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_GT_GT_GT] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5240), - [anon_sym_BANG_EQ] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5240), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_DOT] = ACTIONS(5242), - [anon_sym_EQ_GT] = ACTIONS(5240), - [anon_sym_switch] = ACTIONS(5240), - [anon_sym_DOT_DOT] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_or] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5240), - [anon_sym_PIPE_PIPE] = ACTIONS(5240), - [anon_sym_QMARK_QMARK] = ACTIONS(5240), - [anon_sym_from] = ACTIONS(5240), - [anon_sym_into] = ACTIONS(5240), - [anon_sym_join] = ACTIONS(5240), - [anon_sym_on] = ACTIONS(5240), - [anon_sym_equals] = ACTIONS(5240), - [anon_sym_let] = ACTIONS(5240), - [anon_sym_orderby] = ACTIONS(5240), - [anon_sym_group] = ACTIONS(5240), - [anon_sym_by] = ACTIONS(5240), - [anon_sym_select] = ACTIONS(5240), - [anon_sym_as] = ACTIONS(5240), - [anon_sym_is] = ACTIONS(5240), - [anon_sym_DASH_GT] = ACTIONS(5240), - [anon_sym_with] = ACTIONS(5240), - [aux_sym_preproc_if_token3] = ACTIONS(5240), - [aux_sym_preproc_else_token1] = ACTIONS(5240), - [aux_sym_preproc_elif_token1] = ACTIONS(5240), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_in] = ACTIONS(5240), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_GT_GT_GT] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_EQ_GT] = ACTIONS(5238), + [anon_sym_switch] = ACTIONS(5238), + [anon_sym_DOT_DOT] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_QMARK_QMARK] = ACTIONS(5238), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_on] = ACTIONS(5238), + [anon_sym_equals] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_by] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5238), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5238), + [anon_sym_with] = ACTIONS(5238), + [aux_sym_preproc_if_token3] = ACTIONS(5238), + [aux_sym_preproc_else_token1] = ACTIONS(5238), + [aux_sym_preproc_elif_token1] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479503,63 +479538,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3098), [sym_preproc_define] = STATE(3098), [sym_preproc_undef] = STATE(3098), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_in] = ACTIONS(5244), + [anon_sym_where] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_GT_GT_GT] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_EQ_GT] = ACTIONS(5242), + [anon_sym_switch] = ACTIONS(5242), + [anon_sym_DOT_DOT] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [anon_sym_QMARK_QMARK] = ACTIONS(5242), + [anon_sym_from] = ACTIONS(5242), + [anon_sym_into] = ACTIONS(5242), + [anon_sym_join] = ACTIONS(5242), + [anon_sym_on] = ACTIONS(5242), + [anon_sym_equals] = ACTIONS(5242), + [anon_sym_let] = ACTIONS(5242), + [anon_sym_orderby] = ACTIONS(5242), + [anon_sym_group] = ACTIONS(5242), + [anon_sym_by] = ACTIONS(5242), + [anon_sym_select] = ACTIONS(5242), + [anon_sym_as] = ACTIONS(5242), + [anon_sym_is] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_with] = ACTIONS(5242), + [aux_sym_preproc_if_token3] = ACTIONS(5242), + [aux_sym_preproc_else_token1] = ACTIONS(5242), + [aux_sym_preproc_elif_token1] = ACTIONS(5242), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479815,63 +479850,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3102), [sym_preproc_define] = STATE(3102), [sym_preproc_undef] = STATE(3102), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_in] = ACTIONS(5260), - [anon_sym_where] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5260), - [anon_sym_BANG] = ACTIONS(5260), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_GT_GT_GT] = ACTIONS(5258), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_EQ_GT] = ACTIONS(5258), - [anon_sym_switch] = ACTIONS(5258), - [anon_sym_DOT_DOT] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_QMARK_QMARK] = ACTIONS(5258), - [anon_sym_from] = ACTIONS(5258), - [anon_sym_into] = ACTIONS(5258), - [anon_sym_join] = ACTIONS(5258), - [anon_sym_on] = ACTIONS(5258), - [anon_sym_equals] = ACTIONS(5258), - [anon_sym_let] = ACTIONS(5258), - [anon_sym_orderby] = ACTIONS(5258), - [anon_sym_group] = ACTIONS(5258), - [anon_sym_by] = ACTIONS(5258), - [anon_sym_select] = ACTIONS(5258), - [anon_sym_as] = ACTIONS(5258), - [anon_sym_is] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [anon_sym_with] = ACTIONS(5258), - [aux_sym_preproc_if_token3] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5258), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479893,63 +479928,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3103), [sym_preproc_define] = STATE(3103), [sym_preproc_undef] = STATE(3103), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_EQ_GT] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_from] = ACTIONS(2105), - [anon_sym_into] = ACTIONS(2105), - [anon_sym_join] = ACTIONS(2105), - [anon_sym_on] = ACTIONS(2105), - [anon_sym_equals] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_orderby] = ACTIONS(2105), - [anon_sym_group] = ACTIONS(2105), - [anon_sym_by] = ACTIONS(2105), - [anon_sym_select] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_DASH_GT] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [aux_sym_preproc_if_token3] = ACTIONS(2105), - [aux_sym_preproc_else_token1] = ACTIONS(2105), - [aux_sym_preproc_elif_token1] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5260), + [anon_sym_DASH_EQ] = ACTIONS(5260), + [anon_sym_STAR_EQ] = ACTIONS(5260), + [anon_sym_SLASH_EQ] = ACTIONS(5260), + [anon_sym_PERCENT_EQ] = ACTIONS(5260), + [anon_sym_AMP_EQ] = ACTIONS(5260), + [anon_sym_CARET_EQ] = ACTIONS(5260), + [anon_sym_PIPE_EQ] = ACTIONS(5260), + [anon_sym_LT_LT_EQ] = ACTIONS(5260), + [anon_sym_GT_GT_EQ] = ACTIONS(5260), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5260), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5260), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479971,62 +480006,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3104), [sym_preproc_define] = STATE(3104), [sym_preproc_undef] = STATE(3104), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_LT_LT] = ACTIONS(5039), - [anon_sym_GT_GT] = ACTIONS(5041), - [anon_sym_GT_GT_GT] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_EQ_GT] = ACTIONS(5039), - [anon_sym_switch] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_and] = ACTIONS(5039), - [anon_sym_or] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_QMARK_QMARK] = ACTIONS(5039), - [anon_sym_from] = ACTIONS(5039), - [anon_sym_join] = ACTIONS(5039), - [anon_sym_on] = ACTIONS(5039), - [anon_sym_equals] = ACTIONS(5039), - [anon_sym_let] = ACTIONS(5039), - [anon_sym_orderby] = ACTIONS(5039), - [anon_sym_group] = ACTIONS(5039), - [anon_sym_by] = ACTIONS(5039), - [anon_sym_select] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_DASH_GT] = ACTIONS(5039), - [anon_sym_with] = ACTIONS(5039), - [aux_sym_preproc_if_token3] = ACTIONS(5039), - [aux_sym_preproc_else_token1] = ACTIONS(5039), - [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_in] = ACTIONS(5238), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_GT_GT_GT] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_EQ_GT] = ACTIONS(5238), + [anon_sym_switch] = ACTIONS(5238), + [anon_sym_DOT_DOT] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_QMARK_QMARK] = ACTIONS(5238), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_on] = ACTIONS(5238), + [anon_sym_equals] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_by] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5238), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5238), + [anon_sym_with] = ACTIONS(5238), + [aux_sym_preproc_if_token3] = ACTIONS(5238), + [aux_sym_preproc_else_token1] = ACTIONS(5238), + [aux_sym_preproc_elif_token1] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480048,62 +480083,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3105), [sym_preproc_define] = STATE(3105), [sym_preproc_undef] = STATE(3105), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RBRACK] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_in] = ACTIONS(5164), - [anon_sym_where] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5164), - [anon_sym_CARET] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_LT_LT] = ACTIONS(5164), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_GT_GT_GT] = ACTIONS(5164), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_EQ_GT] = ACTIONS(5164), - [anon_sym_switch] = ACTIONS(5164), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [anon_sym_and] = ACTIONS(5164), - [anon_sym_or] = ACTIONS(5166), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_QMARK_QMARK] = ACTIONS(5164), - [anon_sym_from] = ACTIONS(5164), - [anon_sym_join] = ACTIONS(5164), - [anon_sym_on] = ACTIONS(5164), - [anon_sym_equals] = ACTIONS(5164), - [anon_sym_let] = ACTIONS(5164), - [anon_sym_orderby] = ACTIONS(5164), - [anon_sym_group] = ACTIONS(5164), - [anon_sym_by] = ACTIONS(5164), - [anon_sym_select] = ACTIONS(5164), - [anon_sym_as] = ACTIONS(5164), - [anon_sym_is] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), - [anon_sym_with] = ACTIONS(5164), - [aux_sym_preproc_if_token3] = ACTIONS(5164), - [aux_sym_preproc_else_token1] = ACTIONS(5164), - [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_COLON] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_in] = ACTIONS(5246), + [anon_sym_where] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_GT_GT_GT] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_EQ_GT] = ACTIONS(5246), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_PIPE_PIPE] = ACTIONS(5246), + [anon_sym_QMARK_QMARK] = ACTIONS(5246), + [anon_sym_from] = ACTIONS(5246), + [anon_sym_join] = ACTIONS(5246), + [anon_sym_on] = ACTIONS(5246), + [anon_sym_equals] = ACTIONS(5246), + [anon_sym_let] = ACTIONS(5246), + [anon_sym_orderby] = ACTIONS(5246), + [anon_sym_group] = ACTIONS(5246), + [anon_sym_by] = ACTIONS(5246), + [anon_sym_select] = ACTIONS(5246), + [anon_sym_as] = ACTIONS(5246), + [anon_sym_is] = ACTIONS(5246), + [anon_sym_DASH_GT] = ACTIONS(5246), + [anon_sym_with] = ACTIONS(5246), + [aux_sym_preproc_if_token3] = ACTIONS(5246), + [aux_sym_preproc_else_token1] = ACTIONS(5246), + [aux_sym_preproc_elif_token1] = ACTIONS(5246), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480125,62 +480160,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3106), [sym_preproc_define] = STATE(3106), [sym_preproc_undef] = STATE(3106), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_GT_GT_GT] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_EQ_GT] = ACTIONS(4983), - [anon_sym_switch] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_and] = ACTIONS(4983), - [anon_sym_or] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_QMARK_QMARK] = ACTIONS(4983), - [anon_sym_from] = ACTIONS(4983), - [anon_sym_join] = ACTIONS(4983), - [anon_sym_on] = ACTIONS(4983), - [anon_sym_equals] = ACTIONS(4983), - [anon_sym_let] = ACTIONS(4983), - [anon_sym_orderby] = ACTIONS(4983), - [anon_sym_group] = ACTIONS(4983), - [anon_sym_by] = ACTIONS(4983), - [anon_sym_select] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(4983), - [anon_sym_with] = ACTIONS(4983), - [aux_sym_preproc_if_token3] = ACTIONS(4983), - [aux_sym_preproc_else_token1] = ACTIONS(4983), - [aux_sym_preproc_elif_token1] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_in] = ACTIONS(5250), + [anon_sym_where] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_GT_GT_GT] = ACTIONS(5250), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_EQ_GT] = ACTIONS(5250), + [anon_sym_switch] = ACTIONS(5250), + [anon_sym_DOT_DOT] = ACTIONS(5250), + [anon_sym_and] = ACTIONS(5250), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(5250), + [anon_sym_QMARK_QMARK] = ACTIONS(5250), + [anon_sym_from] = ACTIONS(5250), + [anon_sym_join] = ACTIONS(5250), + [anon_sym_on] = ACTIONS(5250), + [anon_sym_equals] = ACTIONS(5250), + [anon_sym_let] = ACTIONS(5250), + [anon_sym_orderby] = ACTIONS(5250), + [anon_sym_group] = ACTIONS(5250), + [anon_sym_by] = ACTIONS(5250), + [anon_sym_select] = ACTIONS(5250), + [anon_sym_as] = ACTIONS(5250), + [anon_sym_is] = ACTIONS(5250), + [anon_sym_DASH_GT] = ACTIONS(5250), + [anon_sym_with] = ACTIONS(5250), + [aux_sym_preproc_if_token3] = ACTIONS(5250), + [aux_sym_preproc_else_token1] = ACTIONS(5250), + [aux_sym_preproc_elif_token1] = ACTIONS(5250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480202,62 +480237,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3107), [sym_preproc_define] = STATE(3107), [sym_preproc_undef] = STATE(3107), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_in] = ACTIONS(5027), - [anon_sym_where] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5029), - [anon_sym_GT_GT_GT] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_EQ_GT] = ACTIONS(5027), - [anon_sym_switch] = ACTIONS(5027), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_and] = ACTIONS(5027), - [anon_sym_or] = ACTIONS(5029), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_QMARK_QMARK] = ACTIONS(5027), - [anon_sym_from] = ACTIONS(5027), - [anon_sym_join] = ACTIONS(5027), - [anon_sym_on] = ACTIONS(5027), - [anon_sym_equals] = ACTIONS(5027), - [anon_sym_let] = ACTIONS(5027), - [anon_sym_orderby] = ACTIONS(5027), - [anon_sym_group] = ACTIONS(5027), - [anon_sym_by] = ACTIONS(5027), - [anon_sym_select] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5027), - [anon_sym_DASH_GT] = ACTIONS(5027), - [anon_sym_with] = ACTIONS(5027), - [aux_sym_preproc_if_token3] = ACTIONS(5027), - [aux_sym_preproc_else_token1] = ACTIONS(5027), - [aux_sym_preproc_elif_token1] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_COLON] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_in] = ACTIONS(5254), + [anon_sym_where] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_GT_GT_GT] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_EQ_GT] = ACTIONS(5254), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_DOT_DOT] = ACTIONS(5254), + [anon_sym_and] = ACTIONS(5254), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_AMP_AMP] = ACTIONS(5254), + [anon_sym_PIPE_PIPE] = ACTIONS(5254), + [anon_sym_QMARK_QMARK] = ACTIONS(5254), + [anon_sym_from] = ACTIONS(5254), + [anon_sym_join] = ACTIONS(5254), + [anon_sym_on] = ACTIONS(5254), + [anon_sym_equals] = ACTIONS(5254), + [anon_sym_let] = ACTIONS(5254), + [anon_sym_orderby] = ACTIONS(5254), + [anon_sym_group] = ACTIONS(5254), + [anon_sym_by] = ACTIONS(5254), + [anon_sym_select] = ACTIONS(5254), + [anon_sym_as] = ACTIONS(5254), + [anon_sym_is] = ACTIONS(5254), + [anon_sym_DASH_GT] = ACTIONS(5254), + [anon_sym_with] = ACTIONS(5254), + [aux_sym_preproc_if_token3] = ACTIONS(5254), + [aux_sym_preproc_else_token1] = ACTIONS(5254), + [aux_sym_preproc_elif_token1] = ACTIONS(5254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480279,62 +480314,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3108), [sym_preproc_define] = STATE(3108), [sym_preproc_undef] = STATE(3108), - [anon_sym_SEMI] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5180), - [anon_sym_where] = ACTIONS(5180), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5180), - [anon_sym_PIPE] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_LT_LT] = ACTIONS(5180), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_GT_GT_GT] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5180), - [anon_sym_BANG_EQ] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5180), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_EQ_GT] = ACTIONS(5180), - [anon_sym_switch] = ACTIONS(5180), - [anon_sym_DOT_DOT] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_QMARK_QMARK] = ACTIONS(5180), - [anon_sym_from] = ACTIONS(5180), - [anon_sym_join] = ACTIONS(5180), - [anon_sym_on] = ACTIONS(5180), - [anon_sym_equals] = ACTIONS(5180), - [anon_sym_let] = ACTIONS(5180), - [anon_sym_orderby] = ACTIONS(5180), - [anon_sym_group] = ACTIONS(5180), - [anon_sym_by] = ACTIONS(5180), - [anon_sym_select] = ACTIONS(5180), - [anon_sym_as] = ACTIONS(5180), - [anon_sym_is] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5180), - [anon_sym_with] = ACTIONS(5180), - [aux_sym_preproc_if_token3] = ACTIONS(5180), - [aux_sym_preproc_else_token1] = ACTIONS(5180), - [aux_sym_preproc_elif_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5053), + [anon_sym_GT_GT_GT] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_EQ_GT] = ACTIONS(5051), + [anon_sym_switch] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_and] = ACTIONS(5051), + [anon_sym_or] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_QMARK_QMARK] = ACTIONS(5051), + [anon_sym_from] = ACTIONS(5051), + [anon_sym_join] = ACTIONS(5051), + [anon_sym_on] = ACTIONS(5051), + [anon_sym_equals] = ACTIONS(5051), + [anon_sym_let] = ACTIONS(5051), + [anon_sym_orderby] = ACTIONS(5051), + [anon_sym_group] = ACTIONS(5051), + [anon_sym_by] = ACTIONS(5051), + [anon_sym_select] = ACTIONS(5051), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5051), + [anon_sym_with] = ACTIONS(5051), + [aux_sym_preproc_if_token3] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480356,62 +480391,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3109), [sym_preproc_define] = STATE(3109), [sym_preproc_undef] = STATE(3109), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2987), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_GT_GT_GT] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_EQ_GT] = ACTIONS(5121), + [anon_sym_switch] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_and] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_QMARK_QMARK] = ACTIONS(5121), + [anon_sym_from] = ACTIONS(5121), + [anon_sym_join] = ACTIONS(5121), + [anon_sym_on] = ACTIONS(5121), + [anon_sym_equals] = ACTIONS(5121), + [anon_sym_let] = ACTIONS(5121), + [anon_sym_orderby] = ACTIONS(5121), + [anon_sym_group] = ACTIONS(5121), + [anon_sym_by] = ACTIONS(5121), + [anon_sym_select] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [anon_sym_with] = ACTIONS(5121), + [aux_sym_preproc_if_token3] = ACTIONS(5121), + [aux_sym_preproc_else_token1] = ACTIONS(5121), + [aux_sym_preproc_elif_token1] = ACTIONS(5121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480433,62 +480468,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3110), [sym_preproc_define] = STATE(3110), [sym_preproc_undef] = STATE(3110), - [anon_sym_SEMI] = ACTIONS(5246), - [anon_sym_LBRACK] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5246), - [anon_sym_COMMA] = ACTIONS(5246), - [anon_sym_RBRACK] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_RPAREN] = ACTIONS(5246), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5248), - [anon_sym_in] = ACTIONS(5246), - [anon_sym_where] = ACTIONS(5246), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_BANG] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5248), - [anon_sym_GT_GT_GT] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5246), - [anon_sym_BANG_EQ] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5246), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_DOT] = ACTIONS(5248), - [anon_sym_EQ_GT] = ACTIONS(5246), - [anon_sym_switch] = ACTIONS(5246), - [anon_sym_DOT_DOT] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_or] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5246), - [anon_sym_QMARK_QMARK] = ACTIONS(5246), - [anon_sym_from] = ACTIONS(5246), - [anon_sym_join] = ACTIONS(5246), - [anon_sym_on] = ACTIONS(5246), - [anon_sym_equals] = ACTIONS(5246), - [anon_sym_let] = ACTIONS(5246), - [anon_sym_orderby] = ACTIONS(5246), - [anon_sym_group] = ACTIONS(5246), - [anon_sym_by] = ACTIONS(5246), - [anon_sym_select] = ACTIONS(5246), - [anon_sym_as] = ACTIONS(5246), - [anon_sym_is] = ACTIONS(5246), - [anon_sym_DASH_GT] = ACTIONS(5246), - [anon_sym_with] = ACTIONS(5246), - [aux_sym_preproc_if_token3] = ACTIONS(5246), - [aux_sym_preproc_else_token1] = ACTIONS(5246), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5003), + [anon_sym_where] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5005), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_GT_GT_GT] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_EQ_GT] = ACTIONS(5003), + [anon_sym_switch] = ACTIONS(5003), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_or] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_QMARK_QMARK] = ACTIONS(5003), + [anon_sym_from] = ACTIONS(5003), + [anon_sym_join] = ACTIONS(5003), + [anon_sym_on] = ACTIONS(5003), + [anon_sym_equals] = ACTIONS(5003), + [anon_sym_let] = ACTIONS(5003), + [anon_sym_orderby] = ACTIONS(5003), + [anon_sym_group] = ACTIONS(5003), + [anon_sym_by] = ACTIONS(5003), + [anon_sym_select] = ACTIONS(5003), + [anon_sym_as] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5003), + [anon_sym_DASH_GT] = ACTIONS(5003), + [anon_sym_with] = ACTIONS(5003), + [aux_sym_preproc_if_token3] = ACTIONS(5003), + [aux_sym_preproc_else_token1] = ACTIONS(5003), + [aux_sym_preproc_elif_token1] = ACTIONS(5003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480510,62 +480545,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3111), [sym_preproc_define] = STATE(3111), [sym_preproc_undef] = STATE(3111), - [anon_sym_SEMI] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COMMA] = ACTIONS(5236), - [anon_sym_RBRACK] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_in] = ACTIONS(5236), - [anon_sym_where] = ACTIONS(5236), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_BANG] = ACTIONS(5238), - [anon_sym_PLUS_PLUS] = ACTIONS(5236), - [anon_sym_DASH_DASH] = ACTIONS(5236), - [anon_sym_PLUS] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5236), - [anon_sym_SLASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_CARET] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5236), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_GT_GT_GT] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [anon_sym_GT_EQ] = ACTIONS(5236), - [anon_sym_LT_EQ] = ACTIONS(5236), - [anon_sym_DOT] = ACTIONS(5238), - [anon_sym_EQ_GT] = ACTIONS(5236), - [anon_sym_switch] = ACTIONS(5236), - [anon_sym_DOT_DOT] = ACTIONS(5236), - [anon_sym_and] = ACTIONS(5236), - [anon_sym_or] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_QMARK_QMARK] = ACTIONS(5236), - [anon_sym_from] = ACTIONS(5236), - [anon_sym_join] = ACTIONS(5236), - [anon_sym_on] = ACTIONS(5236), - [anon_sym_equals] = ACTIONS(5236), - [anon_sym_let] = ACTIONS(5236), - [anon_sym_orderby] = ACTIONS(5236), - [anon_sym_group] = ACTIONS(5236), - [anon_sym_by] = ACTIONS(5236), - [anon_sym_select] = ACTIONS(5236), - [anon_sym_as] = ACTIONS(5236), - [anon_sym_is] = ACTIONS(5236), - [anon_sym_DASH_GT] = ACTIONS(5236), - [anon_sym_with] = ACTIONS(5236), - [aux_sym_preproc_if_token3] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5037), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_GT_GT_GT] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5035), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5037), + [anon_sym_EQ_GT] = ACTIONS(5035), + [anon_sym_switch] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_or] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5035), + [anon_sym_QMARK_QMARK] = ACTIONS(5035), + [anon_sym_from] = ACTIONS(5035), + [anon_sym_join] = ACTIONS(5035), + [anon_sym_on] = ACTIONS(5035), + [anon_sym_equals] = ACTIONS(5035), + [anon_sym_let] = ACTIONS(5035), + [anon_sym_orderby] = ACTIONS(5035), + [anon_sym_group] = ACTIONS(5035), + [anon_sym_by] = ACTIONS(5035), + [anon_sym_select] = ACTIONS(5035), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5035), + [anon_sym_with] = ACTIONS(5035), + [aux_sym_preproc_if_token3] = ACTIONS(5035), + [aux_sym_preproc_else_token1] = ACTIONS(5035), + [aux_sym_preproc_elif_token1] = ACTIONS(5035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480587,62 +480622,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3112), [sym_preproc_define] = STATE(3112), [sym_preproc_undef] = STATE(3112), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_GT_GT] = ACTIONS(4989), - [anon_sym_GT_GT_GT] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_EQ_GT] = ACTIONS(4987), - [anon_sym_switch] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_and] = ACTIONS(4987), - [anon_sym_or] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_QMARK_QMARK] = ACTIONS(4987), - [anon_sym_from] = ACTIONS(4987), - [anon_sym_join] = ACTIONS(4987), - [anon_sym_on] = ACTIONS(4987), - [anon_sym_equals] = ACTIONS(4987), - [anon_sym_let] = ACTIONS(4987), - [anon_sym_orderby] = ACTIONS(4987), - [anon_sym_group] = ACTIONS(4987), - [anon_sym_by] = ACTIONS(4987), - [anon_sym_select] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4987), - [anon_sym_with] = ACTIONS(4987), - [aux_sym_preproc_if_token3] = ACTIONS(4987), - [aux_sym_preproc_else_token1] = ACTIONS(4987), - [aux_sym_preproc_elif_token1] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_COLON] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_CARET] = ACTIONS(5163), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_LT_LT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_GT_GT_GT] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_EQ_GT] = ACTIONS(5163), + [anon_sym_switch] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_and] = ACTIONS(5163), + [anon_sym_or] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_QMARK_QMARK] = ACTIONS(5163), + [anon_sym_from] = ACTIONS(5163), + [anon_sym_join] = ACTIONS(5163), + [anon_sym_on] = ACTIONS(5163), + [anon_sym_equals] = ACTIONS(5163), + [anon_sym_let] = ACTIONS(5163), + [anon_sym_orderby] = ACTIONS(5163), + [anon_sym_group] = ACTIONS(5163), + [anon_sym_by] = ACTIONS(5163), + [anon_sym_select] = ACTIONS(5163), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5163), + [anon_sym_with] = ACTIONS(5163), + [aux_sym_preproc_if_token3] = ACTIONS(5163), + [aux_sym_preproc_else_token1] = ACTIONS(5163), + [aux_sym_preproc_elif_token1] = ACTIONS(5163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480664,62 +480699,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3113), [sym_preproc_define] = STATE(3113), [sym_preproc_undef] = STATE(3113), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5158), - [anon_sym_in] = ACTIONS(5156), - [anon_sym_where] = ACTIONS(5156), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5158), - [anon_sym_GT_GT_GT] = ACTIONS(5156), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_EQ_GT] = ACTIONS(5156), - [anon_sym_switch] = ACTIONS(5156), - [anon_sym_DOT_DOT] = ACTIONS(5156), - [anon_sym_and] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_QMARK_QMARK] = ACTIONS(5156), - [anon_sym_from] = ACTIONS(5156), - [anon_sym_join] = ACTIONS(5156), - [anon_sym_on] = ACTIONS(5156), - [anon_sym_equals] = ACTIONS(5156), - [anon_sym_let] = ACTIONS(5156), - [anon_sym_orderby] = ACTIONS(5156), - [anon_sym_group] = ACTIONS(5156), - [anon_sym_by] = ACTIONS(5156), - [anon_sym_select] = ACTIONS(5156), - [anon_sym_as] = ACTIONS(5156), - [anon_sym_is] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [anon_sym_with] = ACTIONS(5156), - [aux_sym_preproc_if_token3] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_COLON] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_QMARK] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5183), + [anon_sym_DASH_DASH] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_CARET] = ACTIONS(5183), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5185), + [anon_sym_LT_LT] = ACTIONS(5183), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_GT_GT_GT] = ACTIONS(5183), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_EQ_GT] = ACTIONS(5183), + [anon_sym_switch] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5183), + [anon_sym_QMARK_QMARK] = ACTIONS(5183), + [anon_sym_from] = ACTIONS(5183), + [anon_sym_join] = ACTIONS(5183), + [anon_sym_on] = ACTIONS(5183), + [anon_sym_equals] = ACTIONS(5183), + [anon_sym_let] = ACTIONS(5183), + [anon_sym_orderby] = ACTIONS(5183), + [anon_sym_group] = ACTIONS(5183), + [anon_sym_by] = ACTIONS(5183), + [anon_sym_select] = ACTIONS(5183), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5183), + [anon_sym_with] = ACTIONS(5183), + [aux_sym_preproc_if_token3] = ACTIONS(5183), + [aux_sym_preproc_else_token1] = ACTIONS(5183), + [aux_sym_preproc_elif_token1] = ACTIONS(5183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480741,62 +480776,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3114), [sym_preproc_define] = STATE(3114), [sym_preproc_undef] = STATE(3114), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4993), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4993), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4993), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_LT_LT] = ACTIONS(4991), - [anon_sym_GT_GT] = ACTIONS(4993), - [anon_sym_GT_GT_GT] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_EQ_GT] = ACTIONS(4991), - [anon_sym_switch] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_and] = ACTIONS(4991), - [anon_sym_or] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_QMARK_QMARK] = ACTIONS(4991), - [anon_sym_from] = ACTIONS(4991), - [anon_sym_join] = ACTIONS(4991), - [anon_sym_on] = ACTIONS(4991), - [anon_sym_equals] = ACTIONS(4991), - [anon_sym_let] = ACTIONS(4991), - [anon_sym_orderby] = ACTIONS(4991), - [anon_sym_group] = ACTIONS(4991), - [anon_sym_by] = ACTIONS(4991), - [anon_sym_select] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_with] = ACTIONS(4991), - [aux_sym_preproc_if_token3] = ACTIONS(4991), - [aux_sym_preproc_else_token1] = ACTIONS(4991), - [aux_sym_preproc_elif_token1] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_in] = ACTIONS(4975), + [anon_sym_where] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4977), + [anon_sym_BANG] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4975), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4975), + [anon_sym_CARET] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4975), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_GT_GT_GT] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_EQ_GT] = ACTIONS(4975), + [anon_sym_switch] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_and] = ACTIONS(4975), + [anon_sym_or] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_QMARK_QMARK] = ACTIONS(4975), + [anon_sym_from] = ACTIONS(4975), + [anon_sym_join] = ACTIONS(4975), + [anon_sym_on] = ACTIONS(4975), + [anon_sym_equals] = ACTIONS(4975), + [anon_sym_let] = ACTIONS(4975), + [anon_sym_orderby] = ACTIONS(4975), + [anon_sym_group] = ACTIONS(4975), + [anon_sym_by] = ACTIONS(4975), + [anon_sym_select] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_DASH_GT] = ACTIONS(4975), + [anon_sym_with] = ACTIONS(4975), + [aux_sym_preproc_if_token3] = ACTIONS(4975), + [aux_sym_preproc_else_token1] = ACTIONS(4975), + [aux_sym_preproc_elif_token1] = ACTIONS(4975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480818,62 +480853,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3115), [sym_preproc_define] = STATE(3115), [sym_preproc_undef] = STATE(3115), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5228), - [anon_sym_RBRACK] = ACTIONS(5228), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_in] = ACTIONS(5228), - [anon_sym_where] = ACTIONS(5228), - [anon_sym_QMARK] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_GT_GT_GT] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [anon_sym_GT_EQ] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5228), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_EQ_GT] = ACTIONS(5228), - [anon_sym_switch] = ACTIONS(5228), - [anon_sym_DOT_DOT] = ACTIONS(5228), - [anon_sym_and] = ACTIONS(5228), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_QMARK_QMARK] = ACTIONS(5228), - [anon_sym_from] = ACTIONS(5228), - [anon_sym_join] = ACTIONS(5228), - [anon_sym_on] = ACTIONS(5228), - [anon_sym_equals] = ACTIONS(5228), - [anon_sym_let] = ACTIONS(5228), - [anon_sym_orderby] = ACTIONS(5228), - [anon_sym_group] = ACTIONS(5228), - [anon_sym_by] = ACTIONS(5228), - [anon_sym_select] = ACTIONS(5228), - [anon_sym_as] = ACTIONS(5228), - [anon_sym_is] = ACTIONS(5228), - [anon_sym_DASH_GT] = ACTIONS(5228), - [anon_sym_with] = ACTIONS(5228), - [aux_sym_preproc_if_token3] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5039), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(5039), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_GT_GT_GT] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5039), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5041), + [anon_sym_EQ_GT] = ACTIONS(5039), + [anon_sym_switch] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_or] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5039), + [anon_sym_PIPE_PIPE] = ACTIONS(5039), + [anon_sym_QMARK_QMARK] = ACTIONS(5039), + [anon_sym_from] = ACTIONS(5039), + [anon_sym_join] = ACTIONS(5039), + [anon_sym_on] = ACTIONS(5039), + [anon_sym_equals] = ACTIONS(5039), + [anon_sym_let] = ACTIONS(5039), + [anon_sym_orderby] = ACTIONS(5039), + [anon_sym_group] = ACTIONS(5039), + [anon_sym_by] = ACTIONS(5039), + [anon_sym_select] = ACTIONS(5039), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5039), + [anon_sym_with] = ACTIONS(5039), + [aux_sym_preproc_if_token3] = ACTIONS(5039), + [aux_sym_preproc_else_token1] = ACTIONS(5039), + [aux_sym_preproc_elif_token1] = ACTIONS(5039), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480895,62 +480930,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3116), [sym_preproc_define] = STATE(3116), [sym_preproc_undef] = STATE(3116), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_RBRACK] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5007), - [anon_sym_where] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_PLUS_PLUS] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_LT_LT] = ACTIONS(5007), - [anon_sym_GT_GT] = ACTIONS(5009), - [anon_sym_GT_GT_GT] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(5007), - [anon_sym_BANG_EQ] = ACTIONS(5007), - [anon_sym_GT_EQ] = ACTIONS(5007), - [anon_sym_LT_EQ] = ACTIONS(5007), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_EQ_GT] = ACTIONS(5007), - [anon_sym_switch] = ACTIONS(5007), - [anon_sym_DOT_DOT] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_or] = ACTIONS(5009), - [anon_sym_AMP_AMP] = ACTIONS(5007), - [anon_sym_PIPE_PIPE] = ACTIONS(5007), - [anon_sym_QMARK_QMARK] = ACTIONS(5007), - [anon_sym_from] = ACTIONS(5007), - [anon_sym_join] = ACTIONS(5007), - [anon_sym_on] = ACTIONS(5007), - [anon_sym_equals] = ACTIONS(5007), - [anon_sym_let] = ACTIONS(5007), - [anon_sym_orderby] = ACTIONS(5007), - [anon_sym_group] = ACTIONS(5007), - [anon_sym_by] = ACTIONS(5007), - [anon_sym_select] = ACTIONS(5007), - [anon_sym_as] = ACTIONS(5007), - [anon_sym_is] = ACTIONS(5007), - [anon_sym_DASH_GT] = ACTIONS(5007), - [anon_sym_with] = ACTIONS(5007), - [aux_sym_preproc_if_token3] = ACTIONS(5007), - [aux_sym_preproc_else_token1] = ACTIONS(5007), - [aux_sym_preproc_elif_token1] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_COLON] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_RPAREN] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5173), + [anon_sym_GT] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_QMARK] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5173), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5173), + [anon_sym_GT_GT_GT] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5173), + [anon_sym_EQ_GT] = ACTIONS(5171), + [anon_sym_switch] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_QMARK_QMARK] = ACTIONS(5171), + [anon_sym_from] = ACTIONS(5171), + [anon_sym_join] = ACTIONS(5171), + [anon_sym_on] = ACTIONS(5171), + [anon_sym_equals] = ACTIONS(5171), + [anon_sym_let] = ACTIONS(5171), + [anon_sym_orderby] = ACTIONS(5171), + [anon_sym_group] = ACTIONS(5171), + [anon_sym_by] = ACTIONS(5171), + [anon_sym_select] = ACTIONS(5171), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5171), + [anon_sym_with] = ACTIONS(5171), + [aux_sym_preproc_if_token3] = ACTIONS(5171), + [aux_sym_preproc_else_token1] = ACTIONS(5171), + [aux_sym_preproc_elif_token1] = ACTIONS(5171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480972,62 +481007,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3117), [sym_preproc_define] = STATE(3117), [sym_preproc_undef] = STATE(3117), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_CARET] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_LT_LT] = ACTIONS(5035), - [anon_sym_GT_GT] = ACTIONS(5037), - [anon_sym_GT_GT_GT] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_EQ_GT] = ACTIONS(5035), - [anon_sym_switch] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_and] = ACTIONS(5035), - [anon_sym_or] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_QMARK_QMARK] = ACTIONS(5035), - [anon_sym_from] = ACTIONS(5035), - [anon_sym_join] = ACTIONS(5035), - [anon_sym_on] = ACTIONS(5035), - [anon_sym_equals] = ACTIONS(5035), - [anon_sym_let] = ACTIONS(5035), - [anon_sym_orderby] = ACTIONS(5035), - [anon_sym_group] = ACTIONS(5035), - [anon_sym_by] = ACTIONS(5035), - [anon_sym_select] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_DASH_GT] = ACTIONS(5035), - [anon_sym_with] = ACTIONS(5035), - [aux_sym_preproc_if_token3] = ACTIONS(5035), - [aux_sym_preproc_else_token1] = ACTIONS(5035), - [aux_sym_preproc_elif_token1] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_QMARK] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_AMP] = ACTIONS(5155), + [anon_sym_LT_LT] = ACTIONS(5153), + [anon_sym_GT_GT] = ACTIONS(5155), + [anon_sym_GT_GT_GT] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_EQ_GT] = ACTIONS(5153), + [anon_sym_switch] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_and] = ACTIONS(5153), + [anon_sym_or] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_QMARK_QMARK] = ACTIONS(5153), + [anon_sym_from] = ACTIONS(5153), + [anon_sym_join] = ACTIONS(5153), + [anon_sym_on] = ACTIONS(5153), + [anon_sym_equals] = ACTIONS(5153), + [anon_sym_let] = ACTIONS(5153), + [anon_sym_orderby] = ACTIONS(5153), + [anon_sym_group] = ACTIONS(5153), + [anon_sym_by] = ACTIONS(5153), + [anon_sym_select] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5153), + [anon_sym_with] = ACTIONS(5153), + [aux_sym_preproc_if_token3] = ACTIONS(5153), + [aux_sym_preproc_else_token1] = ACTIONS(5153), + [aux_sym_preproc_elif_token1] = ACTIONS(5153), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481049,62 +481084,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3118), [sym_preproc_define] = STATE(3118), [sym_preproc_undef] = STATE(3118), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(5264), - [anon_sym_DASH_EQ] = ACTIONS(5264), - [anon_sym_STAR_EQ] = ACTIONS(5264), - [anon_sym_SLASH_EQ] = ACTIONS(5264), - [anon_sym_PERCENT_EQ] = ACTIONS(5264), - [anon_sym_AMP_EQ] = ACTIONS(5264), - [anon_sym_CARET_EQ] = ACTIONS(5264), - [anon_sym_PIPE_EQ] = ACTIONS(5264), - [anon_sym_LT_LT_EQ] = ACTIONS(5264), - [anon_sym_GT_GT_EQ] = ACTIONS(5264), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5264), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5264), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4300), + [anon_sym_GT] = ACTIONS(4300), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_SLASH] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4300), + [anon_sym_GT_GT] = ACTIONS(4300), + [anon_sym_GT_GT_GT] = ACTIONS(4300), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4303), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_QMARK_QMARK] = ACTIONS(4300), + [anon_sym_from] = ACTIONS(4295), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_join] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4295), + [anon_sym_orderby] = ACTIONS(4295), + [anon_sym_group] = ACTIONS(4295), + [anon_sym_select] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [anon_sym_with] = ACTIONS(4297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481126,62 +481161,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3119), [sym_preproc_define] = STATE(3119), [sym_preproc_undef] = STATE(3119), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_in] = ACTIONS(5258), - [anon_sym_where] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5260), - [anon_sym_BANG] = ACTIONS(5260), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_GT_GT_GT] = ACTIONS(5258), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_EQ_GT] = ACTIONS(5258), - [anon_sym_switch] = ACTIONS(5258), - [anon_sym_DOT_DOT] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_QMARK_QMARK] = ACTIONS(5258), - [anon_sym_from] = ACTIONS(5258), - [anon_sym_join] = ACTIONS(5258), - [anon_sym_on] = ACTIONS(5258), - [anon_sym_equals] = ACTIONS(5258), - [anon_sym_let] = ACTIONS(5258), - [anon_sym_orderby] = ACTIONS(5258), - [anon_sym_group] = ACTIONS(5258), - [anon_sym_by] = ACTIONS(5258), - [anon_sym_select] = ACTIONS(5258), - [anon_sym_as] = ACTIONS(5258), - [anon_sym_is] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [anon_sym_with] = ACTIONS(5258), - [aux_sym_preproc_if_token3] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5258), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_QMARK] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5027), + [anon_sym_DASH_DASH] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_CARET] = ACTIONS(5027), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5027), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_GT_GT_GT] = ACTIONS(5027), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_GT_EQ] = ACTIONS(5027), + [anon_sym_LT_EQ] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_EQ_GT] = ACTIONS(5027), + [anon_sym_switch] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5027), + [anon_sym_and] = ACTIONS(5027), + [anon_sym_or] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5027), + [anon_sym_PIPE_PIPE] = ACTIONS(5027), + [anon_sym_QMARK_QMARK] = ACTIONS(5027), + [anon_sym_from] = ACTIONS(5027), + [anon_sym_join] = ACTIONS(5027), + [anon_sym_on] = ACTIONS(5027), + [anon_sym_equals] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_orderby] = ACTIONS(5027), + [anon_sym_group] = ACTIONS(5027), + [anon_sym_by] = ACTIONS(5027), + [anon_sym_select] = ACTIONS(5027), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_DASH_GT] = ACTIONS(5027), + [anon_sym_with] = ACTIONS(5027), + [aux_sym_preproc_if_token3] = ACTIONS(5027), + [aux_sym_preproc_else_token1] = ACTIONS(5027), + [aux_sym_preproc_elif_token1] = ACTIONS(5027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481203,62 +481238,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3120), [sym_preproc_define] = STATE(3120), [sym_preproc_undef] = STATE(3120), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5019), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5019), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_GT_GT_GT] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_EQ_GT] = ACTIONS(5019), - [anon_sym_switch] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_and] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_QMARK_QMARK] = ACTIONS(5019), - [anon_sym_from] = ACTIONS(5019), - [anon_sym_join] = ACTIONS(5019), - [anon_sym_on] = ACTIONS(5019), - [anon_sym_equals] = ACTIONS(5019), - [anon_sym_let] = ACTIONS(5019), - [anon_sym_orderby] = ACTIONS(5019), - [anon_sym_group] = ACTIONS(5019), - [anon_sym_by] = ACTIONS(5019), - [anon_sym_select] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), - [anon_sym_with] = ACTIONS(5019), - [aux_sym_preproc_if_token3] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4898), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481280,62 +481315,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3121), [sym_preproc_define] = STATE(3121), [sym_preproc_undef] = STATE(3121), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5057), - [anon_sym_GT_GT_GT] = ACTIONS(5055), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_GT_EQ] = ACTIONS(5055), - [anon_sym_LT_EQ] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_EQ_GT] = ACTIONS(5055), - [anon_sym_switch] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5055), - [anon_sym_and] = ACTIONS(5055), - [anon_sym_or] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5055), - [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_QMARK_QMARK] = ACTIONS(5055), - [anon_sym_from] = ACTIONS(5055), - [anon_sym_join] = ACTIONS(5055), - [anon_sym_on] = ACTIONS(5055), - [anon_sym_equals] = ACTIONS(5055), - [anon_sym_let] = ACTIONS(5055), - [anon_sym_orderby] = ACTIONS(5055), - [anon_sym_group] = ACTIONS(5055), - [anon_sym_by] = ACTIONS(5055), - [anon_sym_select] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_with] = ACTIONS(5055), - [aux_sym_preproc_if_token3] = ACTIONS(5055), - [aux_sym_preproc_else_token1] = ACTIONS(5055), - [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_QMARK] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5119), + [anon_sym_GT_GT_GT] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_EQ_GT] = ACTIONS(5117), + [anon_sym_switch] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_and] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_QMARK_QMARK] = ACTIONS(5117), + [anon_sym_from] = ACTIONS(5117), + [anon_sym_join] = ACTIONS(5117), + [anon_sym_on] = ACTIONS(5117), + [anon_sym_equals] = ACTIONS(5117), + [anon_sym_let] = ACTIONS(5117), + [anon_sym_orderby] = ACTIONS(5117), + [anon_sym_group] = ACTIONS(5117), + [anon_sym_by] = ACTIONS(5117), + [anon_sym_select] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [anon_sym_with] = ACTIONS(5117), + [aux_sym_preproc_if_token3] = ACTIONS(5117), + [aux_sym_preproc_else_token1] = ACTIONS(5117), + [aux_sym_preproc_elif_token1] = ACTIONS(5117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481357,62 +481392,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3122), [sym_preproc_define] = STATE(3122), [sym_preproc_undef] = STATE(3122), - [anon_sym_SEMI] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_COLON] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5152), - [anon_sym_RBRACK] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5152), - [anon_sym_RPAREN] = ACTIONS(5152), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_in] = ACTIONS(5152), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_PLUS_PLUS] = ACTIONS(5152), - [anon_sym_DASH_DASH] = ACTIONS(5152), - [anon_sym_PLUS] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5152), - [anon_sym_SLASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5152), - [anon_sym_CARET] = ACTIONS(5152), - [anon_sym_PIPE] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_LT_LT] = ACTIONS(5152), - [anon_sym_GT_GT] = ACTIONS(5154), - [anon_sym_GT_GT_GT] = ACTIONS(5152), - [anon_sym_EQ_EQ] = ACTIONS(5152), - [anon_sym_BANG_EQ] = ACTIONS(5152), - [anon_sym_GT_EQ] = ACTIONS(5152), - [anon_sym_LT_EQ] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_EQ_GT] = ACTIONS(5152), - [anon_sym_switch] = ACTIONS(5152), - [anon_sym_DOT_DOT] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5154), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5152), - [anon_sym_QMARK_QMARK] = ACTIONS(5152), - [anon_sym_from] = ACTIONS(5152), - [anon_sym_join] = ACTIONS(5152), - [anon_sym_on] = ACTIONS(5152), - [anon_sym_equals] = ACTIONS(5152), - [anon_sym_let] = ACTIONS(5152), - [anon_sym_orderby] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), - [anon_sym_as] = ACTIONS(5152), - [anon_sym_is] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_with] = ACTIONS(5152), - [aux_sym_preproc_if_token3] = ACTIONS(5152), - [aux_sym_preproc_else_token1] = ACTIONS(5152), - [aux_sym_preproc_elif_token1] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_GT_GT_GT] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_EQ_GT] = ACTIONS(5007), + [anon_sym_switch] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_QMARK_QMARK] = ACTIONS(5007), + [anon_sym_from] = ACTIONS(5007), + [anon_sym_join] = ACTIONS(5007), + [anon_sym_on] = ACTIONS(5007), + [anon_sym_equals] = ACTIONS(5007), + [anon_sym_let] = ACTIONS(5007), + [anon_sym_orderby] = ACTIONS(5007), + [anon_sym_group] = ACTIONS(5007), + [anon_sym_by] = ACTIONS(5007), + [anon_sym_select] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [anon_sym_with] = ACTIONS(5007), + [aux_sym_preproc_if_token3] = ACTIONS(5007), + [aux_sym_preproc_else_token1] = ACTIONS(5007), + [aux_sym_preproc_elif_token1] = ACTIONS(5007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481434,62 +481469,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3123), [sym_preproc_define] = STATE(3123), [sym_preproc_undef] = STATE(3123), - [anon_sym_SEMI] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_RPAREN] = ACTIONS(5065), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5067), - [anon_sym_LT_LT] = ACTIONS(5065), - [anon_sym_GT_GT] = ACTIONS(5067), - [anon_sym_GT_GT_GT] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_EQ_GT] = ACTIONS(5065), - [anon_sym_switch] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_and] = ACTIONS(5065), - [anon_sym_or] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_QMARK_QMARK] = ACTIONS(5065), - [anon_sym_from] = ACTIONS(5065), - [anon_sym_join] = ACTIONS(5065), - [anon_sym_on] = ACTIONS(5065), - [anon_sym_equals] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5065), - [anon_sym_orderby] = ACTIONS(5065), - [anon_sym_group] = ACTIONS(5065), - [anon_sym_by] = ACTIONS(5065), - [anon_sym_select] = ACTIONS(5065), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5065), - [anon_sym_with] = ACTIONS(5065), - [aux_sym_preproc_if_token3] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), + [anon_sym_SEMI] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_COLON] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_QMARK] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_CARET] = ACTIONS(5047), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_AMP] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(5047), + [anon_sym_GT_GT] = ACTIONS(5049), + [anon_sym_GT_GT_GT] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_EQ_GT] = ACTIONS(5047), + [anon_sym_switch] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_and] = ACTIONS(5047), + [anon_sym_or] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_QMARK_QMARK] = ACTIONS(5047), + [anon_sym_from] = ACTIONS(5047), + [anon_sym_join] = ACTIONS(5047), + [anon_sym_on] = ACTIONS(5047), + [anon_sym_equals] = ACTIONS(5047), + [anon_sym_let] = ACTIONS(5047), + [anon_sym_orderby] = ACTIONS(5047), + [anon_sym_group] = ACTIONS(5047), + [anon_sym_by] = ACTIONS(5047), + [anon_sym_select] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5047), + [anon_sym_with] = ACTIONS(5047), + [aux_sym_preproc_if_token3] = ACTIONS(5047), + [aux_sym_preproc_else_token1] = ACTIONS(5047), + [aux_sym_preproc_elif_token1] = ACTIONS(5047), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481511,62 +481546,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3124), [sym_preproc_define] = STATE(3124), [sym_preproc_undef] = STATE(3124), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_RBRACK] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(5001), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_LT_LT] = ACTIONS(4999), - [anon_sym_GT_GT] = ACTIONS(5001), - [anon_sym_GT_GT_GT] = ACTIONS(4999), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_GT_EQ] = ACTIONS(4999), - [anon_sym_LT_EQ] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_EQ_GT] = ACTIONS(4999), - [anon_sym_switch] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(4999), - [anon_sym_or] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(4999), - [anon_sym_PIPE_PIPE] = ACTIONS(4999), - [anon_sym_QMARK_QMARK] = ACTIONS(4999), - [anon_sym_from] = ACTIONS(4999), - [anon_sym_join] = ACTIONS(4999), - [anon_sym_on] = ACTIONS(4999), - [anon_sym_equals] = ACTIONS(4999), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_orderby] = ACTIONS(4999), - [anon_sym_group] = ACTIONS(4999), - [anon_sym_by] = ACTIONS(4999), - [anon_sym_select] = ACTIONS(4999), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(4999), - [anon_sym_with] = ACTIONS(4999), - [aux_sym_preproc_if_token3] = ACTIONS(4999), - [aux_sym_preproc_else_token1] = ACTIONS(4999), - [aux_sym_preproc_elif_token1] = ACTIONS(4999), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_QMARK] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_CARET] = ACTIONS(5179), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_LT_LT] = ACTIONS(5179), + [anon_sym_GT_GT] = ACTIONS(5181), + [anon_sym_GT_GT_GT] = ACTIONS(5179), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5181), + [anon_sym_EQ_GT] = ACTIONS(5179), + [anon_sym_switch] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5179), + [anon_sym_PIPE_PIPE] = ACTIONS(5179), + [anon_sym_QMARK_QMARK] = ACTIONS(5179), + [anon_sym_from] = ACTIONS(5179), + [anon_sym_join] = ACTIONS(5179), + [anon_sym_on] = ACTIONS(5179), + [anon_sym_equals] = ACTIONS(5179), + [anon_sym_let] = ACTIONS(5179), + [anon_sym_orderby] = ACTIONS(5179), + [anon_sym_group] = ACTIONS(5179), + [anon_sym_by] = ACTIONS(5179), + [anon_sym_select] = ACTIONS(5179), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5179), + [anon_sym_with] = ACTIONS(5179), + [aux_sym_preproc_if_token3] = ACTIONS(5179), + [aux_sym_preproc_else_token1] = ACTIONS(5179), + [aux_sym_preproc_elif_token1] = ACTIONS(5179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481588,62 +481623,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3125), [sym_preproc_define] = STATE(3125), [sym_preproc_undef] = STATE(3125), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_in] = ACTIONS(5232), - [anon_sym_where] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(5234), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_CARET] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5232), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_GT_GT_GT] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5234), - [anon_sym_EQ_GT] = ACTIONS(5232), - [anon_sym_switch] = ACTIONS(5232), - [anon_sym_DOT_DOT] = ACTIONS(5232), - [anon_sym_and] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_QMARK_QMARK] = ACTIONS(5232), - [anon_sym_from] = ACTIONS(5232), - [anon_sym_join] = ACTIONS(5232), - [anon_sym_on] = ACTIONS(5232), - [anon_sym_equals] = ACTIONS(5232), - [anon_sym_let] = ACTIONS(5232), - [anon_sym_orderby] = ACTIONS(5232), - [anon_sym_group] = ACTIONS(5232), - [anon_sym_by] = ACTIONS(5232), - [anon_sym_select] = ACTIONS(5232), - [anon_sym_as] = ACTIONS(5232), - [anon_sym_is] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_with] = ACTIONS(5232), - [aux_sym_preproc_if_token3] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_GT_GT_GT] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_EQ_GT] = ACTIONS(5125), + [anon_sym_switch] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_QMARK_QMARK] = ACTIONS(5125), + [anon_sym_from] = ACTIONS(5125), + [anon_sym_join] = ACTIONS(5125), + [anon_sym_on] = ACTIONS(5125), + [anon_sym_equals] = ACTIONS(5125), + [anon_sym_let] = ACTIONS(5125), + [anon_sym_orderby] = ACTIONS(5125), + [anon_sym_group] = ACTIONS(5125), + [anon_sym_by] = ACTIONS(5125), + [anon_sym_select] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [anon_sym_with] = ACTIONS(5125), + [aux_sym_preproc_if_token3] = ACTIONS(5125), + [aux_sym_preproc_else_token1] = ACTIONS(5125), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481656,7 +481691,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3126] = { - [sym_modifier] = STATE(3164), [sym_preproc_region] = STATE(3126), [sym_preproc_endregion] = STATE(3126), [sym_preproc_line] = STATE(3126), @@ -481666,61 +481700,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3126), [sym_preproc_define] = STATE(3126), [sym_preproc_undef] = STATE(3126), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3126), - [sym__identifier_token] = ACTIONS(5266), - [anon_sym_extern] = ACTIONS(5268), - [anon_sym_alias] = ACTIONS(5266), - [anon_sym_global] = ACTIONS(5266), - [anon_sym_unsafe] = ACTIONS(5268), - [anon_sym_static] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_event] = ACTIONS(5266), - [anon_sym_class] = ACTIONS(5266), - [anon_sym_ref] = ACTIONS(5266), - [anon_sym_struct] = ACTIONS(5266), - [anon_sym_enum] = ACTIONS(5266), - [anon_sym_interface] = ACTIONS(5266), - [anon_sym_delegate] = ACTIONS(5266), - [anon_sym_record] = ACTIONS(5266), - [anon_sym_abstract] = ACTIONS(5268), - [anon_sym_async] = ACTIONS(5268), - [anon_sym_const] = ACTIONS(5268), - [anon_sym_file] = ACTIONS(5268), - [anon_sym_fixed] = ACTIONS(5268), - [anon_sym_internal] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5268), - [anon_sym_override] = ACTIONS(5268), - [anon_sym_partial] = ACTIONS(5268), - [anon_sym_private] = ACTIONS(5268), - [anon_sym_protected] = ACTIONS(5268), - [anon_sym_public] = ACTIONS(5268), - [anon_sym_readonly] = ACTIONS(5268), - [anon_sym_required] = ACTIONS(5268), - [anon_sym_sealed] = ACTIONS(5268), - [anon_sym_virtual] = ACTIONS(5268), - [anon_sym_volatile] = ACTIONS(5268), - [anon_sym_where] = ACTIONS(5266), - [anon_sym_notnull] = ACTIONS(5266), - [anon_sym_unmanaged] = ACTIONS(5266), - [anon_sym_implicit] = ACTIONS(5266), - [anon_sym_explicit] = ACTIONS(5266), - [anon_sym_scoped] = ACTIONS(5266), - [anon_sym_var] = ACTIONS(5266), - [sym_predefined_type] = ACTIONS(5266), - [anon_sym_yield] = ACTIONS(5266), - [anon_sym_when] = ACTIONS(5266), - [anon_sym_from] = ACTIONS(5266), - [anon_sym_into] = ACTIONS(5266), - [anon_sym_join] = ACTIONS(5266), - [anon_sym_on] = ACTIONS(5266), - [anon_sym_equals] = ACTIONS(5266), - [anon_sym_let] = ACTIONS(5266), - [anon_sym_orderby] = ACTIONS(5266), - [anon_sym_ascending] = ACTIONS(5266), - [anon_sym_descending] = ACTIONS(5266), - [anon_sym_group] = ACTIONS(5266), - [anon_sym_by] = ACTIONS(5266), - [anon_sym_select] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_QMARK] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5151), + [anon_sym_AMP] = ACTIONS(5151), + [anon_sym_LT_LT] = ACTIONS(5149), + [anon_sym_GT_GT] = ACTIONS(5151), + [anon_sym_GT_GT_GT] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_EQ_GT] = ACTIONS(5149), + [anon_sym_switch] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_and] = ACTIONS(5149), + [anon_sym_or] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_QMARK_QMARK] = ACTIONS(5149), + [anon_sym_from] = ACTIONS(5149), + [anon_sym_join] = ACTIONS(5149), + [anon_sym_on] = ACTIONS(5149), + [anon_sym_equals] = ACTIONS(5149), + [anon_sym_let] = ACTIONS(5149), + [anon_sym_orderby] = ACTIONS(5149), + [anon_sym_group] = ACTIONS(5149), + [anon_sym_by] = ACTIONS(5149), + [anon_sym_select] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), + [anon_sym_with] = ACTIONS(5149), + [aux_sym_preproc_if_token3] = ACTIONS(5149), + [aux_sym_preproc_else_token1] = ACTIONS(5149), + [aux_sym_preproc_elif_token1] = ACTIONS(5149), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481742,62 +481777,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3127), [sym_preproc_define] = STATE(3127), [sym_preproc_undef] = STATE(3127), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COLON] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RBRACK] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_in] = ACTIONS(5168), - [anon_sym_where] = ACTIONS(5168), - [anon_sym_QMARK] = ACTIONS(5170), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_CARET] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5170), - [anon_sym_GT_GT_GT] = ACTIONS(5168), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_EQ_GT] = ACTIONS(5168), - [anon_sym_switch] = ACTIONS(5168), - [anon_sym_DOT_DOT] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_QMARK_QMARK] = ACTIONS(5168), - [anon_sym_from] = ACTIONS(5168), - [anon_sym_join] = ACTIONS(5168), - [anon_sym_on] = ACTIONS(5168), - [anon_sym_equals] = ACTIONS(5168), - [anon_sym_let] = ACTIONS(5168), - [anon_sym_orderby] = ACTIONS(5168), - [anon_sym_group] = ACTIONS(5168), - [anon_sym_by] = ACTIONS(5168), - [anon_sym_select] = ACTIONS(5168), - [anon_sym_as] = ACTIONS(5168), - [anon_sym_is] = ACTIONS(5168), - [anon_sym_DASH_GT] = ACTIONS(5168), - [anon_sym_with] = ACTIONS(5168), - [aux_sym_preproc_if_token3] = ACTIONS(5168), - [aux_sym_preproc_else_token1] = ACTIONS(5168), - [aux_sym_preproc_elif_token1] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_where] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_from] = ACTIONS(4028), + [anon_sym_join] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_let] = ACTIONS(4028), + [anon_sym_orderby] = ACTIONS(4028), + [anon_sym_group] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_select] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481810,6 +481845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3128] = { + [sym_modifier] = STATE(3166), [sym_preproc_region] = STATE(3128), [sym_preproc_endregion] = STATE(3128), [sym_preproc_line] = STATE(3128), @@ -481819,62 +481855,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3128), [sym_preproc_define] = STATE(3128), [sym_preproc_undef] = STATE(3128), - [anon_sym_SEMI] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_COLON] = ACTIONS(5200), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_RBRACK] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5200), - [anon_sym_where] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_BANG] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_GT_GT_GT] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5200), - [anon_sym_BANG_EQ] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_EQ_GT] = ACTIONS(5200), - [anon_sym_switch] = ACTIONS(5200), - [anon_sym_DOT_DOT] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_QMARK_QMARK] = ACTIONS(5200), - [anon_sym_from] = ACTIONS(5200), - [anon_sym_join] = ACTIONS(5200), - [anon_sym_on] = ACTIONS(5200), - [anon_sym_equals] = ACTIONS(5200), - [anon_sym_let] = ACTIONS(5200), - [anon_sym_orderby] = ACTIONS(5200), - [anon_sym_group] = ACTIONS(5200), - [anon_sym_by] = ACTIONS(5200), - [anon_sym_select] = ACTIONS(5200), - [anon_sym_as] = ACTIONS(5200), - [anon_sym_is] = ACTIONS(5200), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_with] = ACTIONS(5200), - [aux_sym_preproc_if_token3] = ACTIONS(5200), - [aux_sym_preproc_else_token1] = ACTIONS(5200), - [aux_sym_preproc_elif_token1] = ACTIONS(5200), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3128), + [sym__identifier_token] = ACTIONS(5264), + [anon_sym_extern] = ACTIONS(5266), + [anon_sym_alias] = ACTIONS(5264), + [anon_sym_global] = ACTIONS(5264), + [anon_sym_unsafe] = ACTIONS(5266), + [anon_sym_static] = ACTIONS(5266), + [anon_sym_LPAREN] = ACTIONS(5269), + [anon_sym_event] = ACTIONS(5264), + [anon_sym_class] = ACTIONS(5264), + [anon_sym_ref] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_enum] = ACTIONS(5264), + [anon_sym_interface] = ACTIONS(5264), + [anon_sym_delegate] = ACTIONS(5264), + [anon_sym_record] = ACTIONS(5264), + [anon_sym_abstract] = ACTIONS(5266), + [anon_sym_async] = ACTIONS(5266), + [anon_sym_const] = ACTIONS(5266), + [anon_sym_file] = ACTIONS(5266), + [anon_sym_fixed] = ACTIONS(5266), + [anon_sym_internal] = ACTIONS(5266), + [anon_sym_new] = ACTIONS(5266), + [anon_sym_override] = ACTIONS(5266), + [anon_sym_partial] = ACTIONS(5266), + [anon_sym_private] = ACTIONS(5266), + [anon_sym_protected] = ACTIONS(5266), + [anon_sym_public] = ACTIONS(5266), + [anon_sym_readonly] = ACTIONS(5266), + [anon_sym_required] = ACTIONS(5266), + [anon_sym_sealed] = ACTIONS(5266), + [anon_sym_virtual] = ACTIONS(5266), + [anon_sym_volatile] = ACTIONS(5266), + [anon_sym_where] = ACTIONS(5264), + [anon_sym_notnull] = ACTIONS(5264), + [anon_sym_unmanaged] = ACTIONS(5264), + [anon_sym_implicit] = ACTIONS(5264), + [anon_sym_explicit] = ACTIONS(5264), + [anon_sym_scoped] = ACTIONS(5264), + [anon_sym_var] = ACTIONS(5264), + [sym_predefined_type] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_when] = ACTIONS(5264), + [anon_sym_from] = ACTIONS(5264), + [anon_sym_into] = ACTIONS(5264), + [anon_sym_join] = ACTIONS(5264), + [anon_sym_on] = ACTIONS(5264), + [anon_sym_equals] = ACTIONS(5264), + [anon_sym_let] = ACTIONS(5264), + [anon_sym_orderby] = ACTIONS(5264), + [anon_sym_ascending] = ACTIONS(5264), + [anon_sym_descending] = ACTIONS(5264), + [anon_sym_group] = ACTIONS(5264), + [anon_sym_by] = ACTIONS(5264), + [anon_sym_select] = ACTIONS(5264), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481896,62 +481931,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3129), [sym_preproc_define] = STATE(3129), [sym_preproc_undef] = STATE(3129), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RBRACK] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_LT] = ACTIONS(5194), - [anon_sym_GT] = ACTIONS(5194), - [anon_sym_in] = ACTIONS(5192), - [anon_sym_where] = ACTIONS(5192), - [anon_sym_QMARK] = ACTIONS(5194), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5194), - [anon_sym_GT_GT_GT] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(5192), - [anon_sym_switch] = ACTIONS(5192), - [anon_sym_DOT_DOT] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5194), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_QMARK_QMARK] = ACTIONS(5192), - [anon_sym_from] = ACTIONS(5192), - [anon_sym_join] = ACTIONS(5192), - [anon_sym_on] = ACTIONS(5192), - [anon_sym_equals] = ACTIONS(5192), - [anon_sym_let] = ACTIONS(5192), - [anon_sym_orderby] = ACTIONS(5192), - [anon_sym_group] = ACTIONS(5192), - [anon_sym_by] = ACTIONS(5192), - [anon_sym_select] = ACTIONS(5192), - [anon_sym_as] = ACTIONS(5192), - [anon_sym_is] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [anon_sym_with] = ACTIONS(5192), - [aux_sym_preproc_if_token3] = ACTIONS(5192), - [aux_sym_preproc_else_token1] = ACTIONS(5192), - [aux_sym_preproc_elif_token1] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_COLON] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_QMARK] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_AMP] = ACTIONS(5025), + [anon_sym_LT_LT] = ACTIONS(5023), + [anon_sym_GT_GT] = ACTIONS(5025), + [anon_sym_GT_GT_GT] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_DOT] = ACTIONS(5025), + [anon_sym_EQ_GT] = ACTIONS(5023), + [anon_sym_switch] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_and] = ACTIONS(5023), + [anon_sym_or] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_QMARK_QMARK] = ACTIONS(5023), + [anon_sym_from] = ACTIONS(5023), + [anon_sym_join] = ACTIONS(5023), + [anon_sym_on] = ACTIONS(5023), + [anon_sym_equals] = ACTIONS(5023), + [anon_sym_let] = ACTIONS(5023), + [anon_sym_orderby] = ACTIONS(5023), + [anon_sym_group] = ACTIONS(5023), + [anon_sym_by] = ACTIONS(5023), + [anon_sym_select] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_DASH_GT] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5023), + [aux_sym_preproc_if_token3] = ACTIONS(5023), + [aux_sym_preproc_else_token1] = ACTIONS(5023), + [aux_sym_preproc_elif_token1] = ACTIONS(5023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481973,62 +482008,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3130), [sym_preproc_define] = STATE(3130), [sym_preproc_undef] = STATE(3130), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(5196), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5196), - [anon_sym_where] = ACTIONS(5196), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5196), - [anon_sym_DASH_DASH] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_CARET] = ACTIONS(5196), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_LT_LT] = ACTIONS(5196), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_GT_GT_GT] = ACTIONS(5196), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_EQ_GT] = ACTIONS(5196), - [anon_sym_switch] = ACTIONS(5196), - [anon_sym_DOT_DOT] = ACTIONS(5196), - [anon_sym_and] = ACTIONS(5196), - [anon_sym_or] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_QMARK_QMARK] = ACTIONS(5196), - [anon_sym_from] = ACTIONS(5196), - [anon_sym_join] = ACTIONS(5196), - [anon_sym_on] = ACTIONS(5196), - [anon_sym_equals] = ACTIONS(5196), - [anon_sym_let] = ACTIONS(5196), - [anon_sym_orderby] = ACTIONS(5196), - [anon_sym_group] = ACTIONS(5196), - [anon_sym_by] = ACTIONS(5196), - [anon_sym_select] = ACTIONS(5196), - [anon_sym_as] = ACTIONS(5196), - [anon_sym_is] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [anon_sym_with] = ACTIONS(5196), - [aux_sym_preproc_if_token3] = ACTIONS(5196), - [aux_sym_preproc_else_token1] = ACTIONS(5196), - [aux_sym_preproc_elif_token1] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_COLON] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_QMARK] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5065), + [anon_sym_GT_GT_GT] = ACTIONS(5063), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_EQ_GT] = ACTIONS(5063), + [anon_sym_switch] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5063), + [anon_sym_and] = ACTIONS(5063), + [anon_sym_or] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), + [anon_sym_QMARK_QMARK] = ACTIONS(5063), + [anon_sym_from] = ACTIONS(5063), + [anon_sym_join] = ACTIONS(5063), + [anon_sym_on] = ACTIONS(5063), + [anon_sym_equals] = ACTIONS(5063), + [anon_sym_let] = ACTIONS(5063), + [anon_sym_orderby] = ACTIONS(5063), + [anon_sym_group] = ACTIONS(5063), + [anon_sym_by] = ACTIONS(5063), + [anon_sym_select] = ACTIONS(5063), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5063), + [anon_sym_with] = ACTIONS(5063), + [aux_sym_preproc_if_token3] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482050,62 +482085,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3131), [sym_preproc_define] = STATE(3131), [sym_preproc_undef] = STATE(3131), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5103), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_LT_LT] = ACTIONS(5103), - [anon_sym_GT_GT] = ACTIONS(5105), - [anon_sym_GT_GT_GT] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_EQ_GT] = ACTIONS(5103), - [anon_sym_switch] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_and] = ACTIONS(5103), - [anon_sym_or] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_QMARK_QMARK] = ACTIONS(5103), - [anon_sym_from] = ACTIONS(5103), - [anon_sym_join] = ACTIONS(5103), - [anon_sym_on] = ACTIONS(5103), - [anon_sym_equals] = ACTIONS(5103), - [anon_sym_let] = ACTIONS(5103), - [anon_sym_orderby] = ACTIONS(5103), - [anon_sym_group] = ACTIONS(5103), - [anon_sym_by] = ACTIONS(5103), - [anon_sym_select] = ACTIONS(5103), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5103), - [anon_sym_with] = ACTIONS(5103), - [aux_sym_preproc_if_token3] = ACTIONS(5103), - [aux_sym_preproc_else_token1] = ACTIONS(5103), - [aux_sym_preproc_elif_token1] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_where] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(5215), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_from] = ACTIONS(4024), + [anon_sym_join] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_let] = ACTIONS(4024), + [anon_sym_orderby] = ACTIONS(4024), + [anon_sym_group] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482127,62 +482162,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3132), [sym_preproc_define] = STATE(3132), [sym_preproc_undef] = STATE(3132), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_RBRACK] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [anon_sym_RBRACE] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4997), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_LT_LT] = ACTIONS(4995), - [anon_sym_GT_GT] = ACTIONS(4997), - [anon_sym_GT_GT_GT] = ACTIONS(4995), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_GT_EQ] = ACTIONS(4995), - [anon_sym_LT_EQ] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_EQ_GT] = ACTIONS(4995), - [anon_sym_switch] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4995), - [anon_sym_and] = ACTIONS(4995), - [anon_sym_or] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_QMARK_QMARK] = ACTIONS(4995), - [anon_sym_from] = ACTIONS(4995), - [anon_sym_join] = ACTIONS(4995), - [anon_sym_on] = ACTIONS(4995), - [anon_sym_equals] = ACTIONS(4995), - [anon_sym_let] = ACTIONS(4995), - [anon_sym_orderby] = ACTIONS(4995), - [anon_sym_group] = ACTIONS(4995), - [anon_sym_by] = ACTIONS(4995), - [anon_sym_select] = ACTIONS(4995), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4995), - [anon_sym_with] = ACTIONS(4995), - [aux_sym_preproc_if_token3] = ACTIONS(4995), - [aux_sym_preproc_else_token1] = ACTIONS(4995), - [aux_sym_preproc_elif_token1] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5107), + [anon_sym_AMP] = ACTIONS(5107), + [anon_sym_LT_LT] = ACTIONS(5105), + [anon_sym_GT_GT] = ACTIONS(5107), + [anon_sym_GT_GT_GT] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_EQ_GT] = ACTIONS(5105), + [anon_sym_switch] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_and] = ACTIONS(5105), + [anon_sym_or] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_QMARK_QMARK] = ACTIONS(5105), + [anon_sym_from] = ACTIONS(5105), + [anon_sym_join] = ACTIONS(5105), + [anon_sym_on] = ACTIONS(5105), + [anon_sym_equals] = ACTIONS(5105), + [anon_sym_let] = ACTIONS(5105), + [anon_sym_orderby] = ACTIONS(5105), + [anon_sym_group] = ACTIONS(5105), + [anon_sym_by] = ACTIONS(5105), + [anon_sym_select] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [anon_sym_with] = ACTIONS(5105), + [aux_sym_preproc_if_token3] = ACTIONS(5105), + [aux_sym_preproc_else_token1] = ACTIONS(5105), + [aux_sym_preproc_elif_token1] = ACTIONS(5105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482204,62 +482239,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3133), [sym_preproc_define] = STATE(3133), [sym_preproc_undef] = STATE(3133), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_COLON] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5136), - [anon_sym_RBRACK] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5136), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5136), - [anon_sym_where] = ACTIONS(5136), - [anon_sym_QMARK] = ACTIONS(5138), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_GT_GT_GT] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5136), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_EQ_GT] = ACTIONS(5136), - [anon_sym_switch] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_QMARK_QMARK] = ACTIONS(5136), - [anon_sym_from] = ACTIONS(5136), - [anon_sym_join] = ACTIONS(5136), - [anon_sym_on] = ACTIONS(5136), - [anon_sym_equals] = ACTIONS(5136), - [anon_sym_let] = ACTIONS(5136), - [anon_sym_orderby] = ACTIONS(5136), - [anon_sym_group] = ACTIONS(5136), - [anon_sym_by] = ACTIONS(5136), - [anon_sym_select] = ACTIONS(5136), - [anon_sym_as] = ACTIONS(5136), - [anon_sym_is] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5136), - [anon_sym_with] = ACTIONS(5136), - [aux_sym_preproc_if_token3] = ACTIONS(5136), - [aux_sym_preproc_else_token1] = ACTIONS(5136), - [aux_sym_preproc_elif_token1] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_QMARK] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5137), + [anon_sym_AMP] = ACTIONS(5137), + [anon_sym_LT_LT] = ACTIONS(5135), + [anon_sym_GT_GT] = ACTIONS(5137), + [anon_sym_GT_GT_GT] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_EQ_GT] = ACTIONS(5135), + [anon_sym_switch] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_and] = ACTIONS(5135), + [anon_sym_or] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_QMARK_QMARK] = ACTIONS(5135), + [anon_sym_from] = ACTIONS(5135), + [anon_sym_join] = ACTIONS(5135), + [anon_sym_on] = ACTIONS(5135), + [anon_sym_equals] = ACTIONS(5135), + [anon_sym_let] = ACTIONS(5135), + [anon_sym_orderby] = ACTIONS(5135), + [anon_sym_group] = ACTIONS(5135), + [anon_sym_by] = ACTIONS(5135), + [anon_sym_select] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_with] = ACTIONS(5135), + [aux_sym_preproc_if_token3] = ACTIONS(5135), + [aux_sym_preproc_else_token1] = ACTIONS(5135), + [aux_sym_preproc_elif_token1] = ACTIONS(5135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482281,62 +482316,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3134), [sym_preproc_define] = STATE(3134), [sym_preproc_undef] = STATE(3134), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5118), - [anon_sym_where] = ACTIONS(5118), - [anon_sym_QMARK] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_GT_GT_GT] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_EQ_GT] = ACTIONS(5118), - [anon_sym_switch] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_QMARK_QMARK] = ACTIONS(5118), - [anon_sym_from] = ACTIONS(5118), - [anon_sym_join] = ACTIONS(5118), - [anon_sym_on] = ACTIONS(5118), - [anon_sym_equals] = ACTIONS(5118), - [anon_sym_let] = ACTIONS(5118), - [anon_sym_orderby] = ACTIONS(5118), - [anon_sym_group] = ACTIONS(5118), - [anon_sym_by] = ACTIONS(5118), - [anon_sym_select] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_with] = ACTIONS(5118), - [aux_sym_preproc_if_token3] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5118), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_COLON] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_QMARK] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_AMP] = ACTIONS(5033), + [anon_sym_LT_LT] = ACTIONS(5031), + [anon_sym_GT_GT] = ACTIONS(5033), + [anon_sym_GT_GT_GT] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5033), + [anon_sym_EQ_GT] = ACTIONS(5031), + [anon_sym_switch] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_and] = ACTIONS(5031), + [anon_sym_or] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_QMARK_QMARK] = ACTIONS(5031), + [anon_sym_from] = ACTIONS(5031), + [anon_sym_join] = ACTIONS(5031), + [anon_sym_on] = ACTIONS(5031), + [anon_sym_equals] = ACTIONS(5031), + [anon_sym_let] = ACTIONS(5031), + [anon_sym_orderby] = ACTIONS(5031), + [anon_sym_group] = ACTIONS(5031), + [anon_sym_by] = ACTIONS(5031), + [anon_sym_select] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [aux_sym_preproc_if_token3] = ACTIONS(5031), + [aux_sym_preproc_else_token1] = ACTIONS(5031), + [aux_sym_preproc_elif_token1] = ACTIONS(5031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482358,62 +482393,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3135), [sym_preproc_define] = STATE(3135), [sym_preproc_undef] = STATE(3135), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5003), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_GT_GT_GT] = ACTIONS(5003), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5003), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_QMARK_QMARK] = ACTIONS(5003), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [anon_sym_with] = ACTIONS(5003), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_in] = ACTIONS(5226), + [anon_sym_where] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_GT_GT_GT] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_switch] = ACTIONS(5226), + [anon_sym_DOT_DOT] = ACTIONS(5226), + [anon_sym_and] = ACTIONS(5226), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_QMARK_QMARK] = ACTIONS(5226), + [anon_sym_from] = ACTIONS(5226), + [anon_sym_join] = ACTIONS(5226), + [anon_sym_on] = ACTIONS(5226), + [anon_sym_equals] = ACTIONS(5226), + [anon_sym_let] = ACTIONS(5226), + [anon_sym_orderby] = ACTIONS(5226), + [anon_sym_group] = ACTIONS(5226), + [anon_sym_by] = ACTIONS(5226), + [anon_sym_select] = ACTIONS(5226), + [anon_sym_as] = ACTIONS(5226), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_with] = ACTIONS(5226), + [aux_sym_preproc_if_token3] = ACTIONS(5226), + [aux_sym_preproc_else_token1] = ACTIONS(5226), + [aux_sym_preproc_elif_token1] = ACTIONS(5226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482426,6 +482461,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3136] = { + [sym_attribute_list] = STATE(5405), + [sym__attribute_list] = STATE(5406), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_if_in_attribute_list] = STATE(5405), [sym_preproc_region] = STATE(3136), [sym_preproc_endregion] = STATE(3136), [sym_preproc_line] = STATE(3136), @@ -482435,62 +482493,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3136), [sym_preproc_define] = STATE(3136), [sym_preproc_undef] = STATE(3136), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4439), + [aux_sym__lambda_expression_init_repeat1] = STATE(3463), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482512,62 +482547,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3137), [sym_preproc_define] = STATE(3137), [sym_preproc_undef] = STATE(3137), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5122), - [anon_sym_where] = ACTIONS(5122), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_GT_GT_GT] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_EQ_GT] = ACTIONS(5122), - [anon_sym_switch] = ACTIONS(5122), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_QMARK_QMARK] = ACTIONS(5122), - [anon_sym_from] = ACTIONS(5122), - [anon_sym_join] = ACTIONS(5122), - [anon_sym_on] = ACTIONS(5122), - [anon_sym_equals] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_orderby] = ACTIONS(5122), - [anon_sym_group] = ACTIONS(5122), - [anon_sym_by] = ACTIONS(5122), - [anon_sym_select] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [anon_sym_with] = ACTIONS(5122), - [aux_sym_preproc_if_token3] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_in] = ACTIONS(4991), + [anon_sym_where] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_GT_GT_GT] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_EQ_GT] = ACTIONS(4991), + [anon_sym_switch] = ACTIONS(4991), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_QMARK_QMARK] = ACTIONS(4991), + [anon_sym_from] = ACTIONS(4991), + [anon_sym_join] = ACTIONS(4991), + [anon_sym_on] = ACTIONS(4991), + [anon_sym_equals] = ACTIONS(4991), + [anon_sym_let] = ACTIONS(4991), + [anon_sym_orderby] = ACTIONS(4991), + [anon_sym_group] = ACTIONS(4991), + [anon_sym_by] = ACTIONS(4991), + [anon_sym_select] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [anon_sym_with] = ACTIONS(4991), + [aux_sym_preproc_if_token3] = ACTIONS(4991), + [aux_sym_preproc_else_token1] = ACTIONS(4991), + [aux_sym_preproc_elif_token1] = ACTIONS(4991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482589,62 +482624,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3138), [sym_preproc_define] = STATE(3138), [sym_preproc_undef] = STATE(3138), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_where] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(5273), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_from] = ACTIONS(4058), - [anon_sym_join] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_orderby] = ACTIONS(4058), - [anon_sym_group] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482666,62 +482701,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3139), [sym_preproc_define] = STATE(3139), [sym_preproc_undef] = STATE(3139), - [anon_sym_SEMI] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_COMMA] = ACTIONS(5224), - [anon_sym_RBRACK] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5224), - [anon_sym_RPAREN] = ACTIONS(5224), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_in] = ACTIONS(5224), - [anon_sym_where] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_BANG] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_SLASH] = ACTIONS(5226), - [anon_sym_PERCENT] = ACTIONS(5224), - [anon_sym_CARET] = ACTIONS(5224), - [anon_sym_PIPE] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5224), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_GT_GT_GT] = ACTIONS(5224), - [anon_sym_EQ_EQ] = ACTIONS(5224), - [anon_sym_BANG_EQ] = ACTIONS(5224), - [anon_sym_GT_EQ] = ACTIONS(5224), - [anon_sym_LT_EQ] = ACTIONS(5224), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_EQ_GT] = ACTIONS(5224), - [anon_sym_switch] = ACTIONS(5224), - [anon_sym_DOT_DOT] = ACTIONS(5224), - [anon_sym_and] = ACTIONS(5224), - [anon_sym_or] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5224), - [anon_sym_PIPE_PIPE] = ACTIONS(5224), - [anon_sym_QMARK_QMARK] = ACTIONS(5224), - [anon_sym_from] = ACTIONS(5224), - [anon_sym_join] = ACTIONS(5224), - [anon_sym_on] = ACTIONS(5224), - [anon_sym_equals] = ACTIONS(5224), - [anon_sym_let] = ACTIONS(5224), - [anon_sym_orderby] = ACTIONS(5224), - [anon_sym_group] = ACTIONS(5224), - [anon_sym_by] = ACTIONS(5224), - [anon_sym_select] = ACTIONS(5224), - [anon_sym_as] = ACTIONS(5224), - [anon_sym_is] = ACTIONS(5224), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_with] = ACTIONS(5224), - [aux_sym_preproc_if_token3] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_RBRACK] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4291), + [anon_sym_where] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_EQ_GT] = ACTIONS(4291), + [anon_sym_switch] = ACTIONS(4291), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4291), + [anon_sym_or] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4291), + [anon_sym_join] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_equals] = ACTIONS(4291), + [anon_sym_let] = ACTIONS(4291), + [anon_sym_orderby] = ACTIONS(4291), + [anon_sym_group] = ACTIONS(4291), + [anon_sym_by] = ACTIONS(4291), + [anon_sym_select] = ACTIONS(4291), + [anon_sym_as] = ACTIONS(4291), + [anon_sym_is] = ACTIONS(4291), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4291), + [aux_sym_preproc_if_token3] = ACTIONS(4291), + [aux_sym_preproc_else_token1] = ACTIONS(4291), + [aux_sym_preproc_elif_token1] = ACTIONS(4291), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482743,62 +482778,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3140), [sym_preproc_define] = STATE(3140), [sym_preproc_undef] = STATE(3140), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4351), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4351), - [anon_sym_EQ_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_switch] = ACTIONS(4348), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4354), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_QMARK_QMARK] = ACTIONS(4351), - [anon_sym_from] = ACTIONS(4346), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_join] = ACTIONS(4346), - [anon_sym_let] = ACTIONS(4346), - [anon_sym_orderby] = ACTIONS(4346), - [anon_sym_group] = ACTIONS(4346), - [anon_sym_select] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4348), - [anon_sym_with] = ACTIONS(4348), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5273), + [anon_sym_DASH_EQ] = ACTIONS(5273), + [anon_sym_STAR_EQ] = ACTIONS(5273), + [anon_sym_SLASH_EQ] = ACTIONS(5273), + [anon_sym_PERCENT_EQ] = ACTIONS(5273), + [anon_sym_AMP_EQ] = ACTIONS(5273), + [anon_sym_CARET_EQ] = ACTIONS(5273), + [anon_sym_PIPE_EQ] = ACTIONS(5273), + [anon_sym_LT_LT_EQ] = ACTIONS(5273), + [anon_sym_GT_GT_EQ] = ACTIONS(5273), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5273), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5273), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_ascending] = ACTIONS(4898), + [anon_sym_descending] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482820,62 +482855,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3141), [sym_preproc_define] = STATE(3141), [sym_preproc_undef] = STATE(3141), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RBRACK] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(5174), - [anon_sym_GT] = ACTIONS(5174), - [anon_sym_in] = ACTIONS(5172), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_CARET] = ACTIONS(5172), - [anon_sym_PIPE] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_LT_LT] = ACTIONS(5172), - [anon_sym_GT_GT] = ACTIONS(5174), - [anon_sym_GT_GT_GT] = ACTIONS(5172), - [anon_sym_EQ_EQ] = ACTIONS(5172), - [anon_sym_BANG_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_EQ_GT] = ACTIONS(5172), - [anon_sym_switch] = ACTIONS(5172), - [anon_sym_DOT_DOT] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_QMARK_QMARK] = ACTIONS(5172), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_on] = ACTIONS(5172), - [anon_sym_equals] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_by] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5172), - [anon_sym_is] = ACTIONS(5172), - [anon_sym_DASH_GT] = ACTIONS(5172), - [anon_sym_with] = ACTIONS(5172), - [aux_sym_preproc_if_token3] = ACTIONS(5172), - [aux_sym_preproc_else_token1] = ACTIONS(5172), - [aux_sym_preproc_elif_token1] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(5277), + [anon_sym_DASH_EQ] = ACTIONS(5277), + [anon_sym_STAR_EQ] = ACTIONS(5277), + [anon_sym_SLASH_EQ] = ACTIONS(5277), + [anon_sym_PERCENT_EQ] = ACTIONS(5277), + [anon_sym_AMP_EQ] = ACTIONS(5277), + [anon_sym_CARET_EQ] = ACTIONS(5277), + [anon_sym_PIPE_EQ] = ACTIONS(5277), + [anon_sym_LT_LT_EQ] = ACTIONS(5277), + [anon_sym_GT_GT_EQ] = ACTIONS(5277), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5277), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5277), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482897,62 +482932,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3142), [sym_preproc_define] = STATE(3142), [sym_preproc_undef] = STATE(3142), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5099), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_GT_GT_GT] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_EQ_GT] = ACTIONS(5099), - [anon_sym_switch] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_or] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_QMARK_QMARK] = ACTIONS(5099), - [anon_sym_from] = ACTIONS(5099), - [anon_sym_join] = ACTIONS(5099), - [anon_sym_on] = ACTIONS(5099), - [anon_sym_equals] = ACTIONS(5099), - [anon_sym_let] = ACTIONS(5099), - [anon_sym_orderby] = ACTIONS(5099), - [anon_sym_group] = ACTIONS(5099), - [anon_sym_by] = ACTIONS(5099), - [anon_sym_select] = ACTIONS(5099), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_with] = ACTIONS(5099), - [aux_sym_preproc_if_token3] = ACTIONS(5099), - [aux_sym_preproc_else_token1] = ACTIONS(5099), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_COLON] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(5069), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5069), + [anon_sym_GT_GT_GT] = ACTIONS(5067), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5069), + [anon_sym_EQ_GT] = ACTIONS(5067), + [anon_sym_switch] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5067), + [anon_sym_and] = ACTIONS(5067), + [anon_sym_or] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_QMARK_QMARK] = ACTIONS(5067), + [anon_sym_from] = ACTIONS(5067), + [anon_sym_join] = ACTIONS(5067), + [anon_sym_on] = ACTIONS(5067), + [anon_sym_equals] = ACTIONS(5067), + [anon_sym_let] = ACTIONS(5067), + [anon_sym_orderby] = ACTIONS(5067), + [anon_sym_group] = ACTIONS(5067), + [anon_sym_by] = ACTIONS(5067), + [anon_sym_select] = ACTIONS(5067), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5067), + [anon_sym_with] = ACTIONS(5067), + [aux_sym_preproc_if_token3] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482974,62 +483009,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3143), [sym_preproc_define] = STATE(3143), [sym_preproc_undef] = STATE(3143), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5160), - [anon_sym_COLON] = ACTIONS(5160), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RBRACK] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_in] = ACTIONS(5160), - [anon_sym_where] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_PLUS_PLUS] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_GT_GT_GT] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_EQ_GT] = ACTIONS(5160), - [anon_sym_switch] = ACTIONS(5160), - [anon_sym_DOT_DOT] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_or] = ACTIONS(5162), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_QMARK_QMARK] = ACTIONS(5160), - [anon_sym_from] = ACTIONS(5160), - [anon_sym_join] = ACTIONS(5160), - [anon_sym_on] = ACTIONS(5160), - [anon_sym_equals] = ACTIONS(5160), - [anon_sym_let] = ACTIONS(5160), - [anon_sym_orderby] = ACTIONS(5160), - [anon_sym_group] = ACTIONS(5160), - [anon_sym_by] = ACTIONS(5160), - [anon_sym_select] = ACTIONS(5160), - [anon_sym_as] = ACTIONS(5160), - [anon_sym_is] = ACTIONS(5160), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), - [aux_sym_preproc_if_token3] = ACTIONS(5160), - [aux_sym_preproc_else_token1] = ACTIONS(5160), - [aux_sym_preproc_elif_token1] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_RBRACK] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_in] = ACTIONS(4987), + [anon_sym_where] = ACTIONS(4987), + [anon_sym_QMARK] = ACTIONS(4989), + [anon_sym_BANG] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4987), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_GT_GT_GT] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_EQ_GT] = ACTIONS(4987), + [anon_sym_switch] = ACTIONS(4987), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_and] = ACTIONS(4987), + [anon_sym_or] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_QMARK_QMARK] = ACTIONS(4987), + [anon_sym_from] = ACTIONS(4987), + [anon_sym_join] = ACTIONS(4987), + [anon_sym_on] = ACTIONS(4987), + [anon_sym_equals] = ACTIONS(4987), + [anon_sym_let] = ACTIONS(4987), + [anon_sym_orderby] = ACTIONS(4987), + [anon_sym_group] = ACTIONS(4987), + [anon_sym_by] = ACTIONS(4987), + [anon_sym_select] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_with] = ACTIONS(4987), + [aux_sym_preproc_if_token3] = ACTIONS(4987), + [aux_sym_preproc_else_token1] = ACTIONS(4987), + [aux_sym_preproc_elif_token1] = ACTIONS(4987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483051,62 +483086,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3144), [sym_preproc_define] = STATE(3144), [sym_preproc_undef] = STATE(3144), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5015), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_LT_LT] = ACTIONS(5015), - [anon_sym_GT_GT] = ACTIONS(5017), - [anon_sym_GT_GT_GT] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5015), - [anon_sym_switch] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5015), - [anon_sym_or] = ACTIONS(5017), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_QMARK_QMARK] = ACTIONS(5015), - [anon_sym_from] = ACTIONS(5015), - [anon_sym_join] = ACTIONS(5015), - [anon_sym_on] = ACTIONS(5015), - [anon_sym_equals] = ACTIONS(5015), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_orderby] = ACTIONS(5015), - [anon_sym_group] = ACTIONS(5015), - [anon_sym_by] = ACTIONS(5015), - [anon_sym_select] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_DASH_GT] = ACTIONS(5015), - [anon_sym_with] = ACTIONS(5015), - [aux_sym_preproc_if_token3] = ACTIONS(5015), - [aux_sym_preproc_else_token1] = ACTIONS(5015), - [aux_sym_preproc_elif_token1] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_in] = ACTIONS(4983), + [anon_sym_where] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_GT_GT_GT] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_EQ_GT] = ACTIONS(4983), + [anon_sym_switch] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_and] = ACTIONS(4983), + [anon_sym_or] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_QMARK_QMARK] = ACTIONS(4983), + [anon_sym_from] = ACTIONS(4983), + [anon_sym_join] = ACTIONS(4983), + [anon_sym_on] = ACTIONS(4983), + [anon_sym_equals] = ACTIONS(4983), + [anon_sym_let] = ACTIONS(4983), + [anon_sym_orderby] = ACTIONS(4983), + [anon_sym_group] = ACTIONS(4983), + [anon_sym_by] = ACTIONS(4983), + [anon_sym_select] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_DASH_GT] = ACTIONS(4983), + [anon_sym_with] = ACTIONS(4983), + [aux_sym_preproc_if_token3] = ACTIONS(4983), + [aux_sym_preproc_else_token1] = ACTIONS(4983), + [aux_sym_preproc_elif_token1] = ACTIONS(4983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483128,62 +483163,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3145), [sym_preproc_define] = STATE(3145), [sym_preproc_undef] = STATE(3145), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5071), - [anon_sym_LT_LT] = ACTIONS(5069), - [anon_sym_GT_GT] = ACTIONS(5071), - [anon_sym_GT_GT_GT] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_EQ_GT] = ACTIONS(5069), - [anon_sym_switch] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_or] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_QMARK_QMARK] = ACTIONS(5069), - [anon_sym_from] = ACTIONS(5069), - [anon_sym_join] = ACTIONS(5069), - [anon_sym_on] = ACTIONS(5069), - [anon_sym_equals] = ACTIONS(5069), - [anon_sym_let] = ACTIONS(5069), - [anon_sym_orderby] = ACTIONS(5069), - [anon_sym_group] = ACTIONS(5069), - [anon_sym_by] = ACTIONS(5069), - [anon_sym_select] = ACTIONS(5069), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5069), - [anon_sym_with] = ACTIONS(5069), - [aux_sym_preproc_if_token3] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5211), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5213), + [anon_sym_LT_LT] = ACTIONS(5211), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_GT_GT_GT] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_EQ_GT] = ACTIONS(5211), + [anon_sym_switch] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_or] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_QMARK_QMARK] = ACTIONS(5211), + [anon_sym_from] = ACTIONS(5211), + [anon_sym_join] = ACTIONS(5211), + [anon_sym_on] = ACTIONS(5211), + [anon_sym_equals] = ACTIONS(5211), + [anon_sym_let] = ACTIONS(5211), + [anon_sym_orderby] = ACTIONS(5211), + [anon_sym_group] = ACTIONS(5211), + [anon_sym_by] = ACTIONS(5211), + [anon_sym_select] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5211), + [anon_sym_with] = ACTIONS(5211), + [aux_sym_preproc_if_token3] = ACTIONS(5211), + [aux_sym_preproc_else_token1] = ACTIONS(5211), + [aux_sym_preproc_elif_token1] = ACTIONS(5211), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483196,29 +483231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3146] = { - [sym_attribute_list] = STATE(5531), - [sym__attribute_list] = STATE(5532), - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_if_in_attribute_list] = STATE(5531), [sym_preproc_region] = STATE(3146), [sym_preproc_endregion] = STATE(3146), [sym_preproc_line] = STATE(3146), @@ -483228,39 +483240,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3146), [sym_preproc_define] = STATE(3146), [sym_preproc_undef] = STATE(3146), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4534), - [aux_sym__lambda_expression_init_repeat1] = STATE(3528), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_if_token1] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_COLON] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_QMARK] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5115), + [anon_sym_GT_GT_GT] = ACTIONS(5113), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_EQ_GT] = ACTIONS(5113), + [anon_sym_switch] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_and] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_QMARK_QMARK] = ACTIONS(5113), + [anon_sym_from] = ACTIONS(5113), + [anon_sym_join] = ACTIONS(5113), + [anon_sym_on] = ACTIONS(5113), + [anon_sym_equals] = ACTIONS(5113), + [anon_sym_let] = ACTIONS(5113), + [anon_sym_orderby] = ACTIONS(5113), + [anon_sym_group] = ACTIONS(5113), + [anon_sym_by] = ACTIONS(5113), + [anon_sym_select] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [anon_sym_with] = ACTIONS(5113), + [aux_sym_preproc_if_token3] = ACTIONS(5113), + [aux_sym_preproc_else_token1] = ACTIONS(5113), + [aux_sym_preproc_elif_token1] = ACTIONS(5113), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483282,62 +483317,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3147), [sym_preproc_define] = STATE(3147), [sym_preproc_undef] = STATE(3147), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5095), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_GT_GT_GT] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_EQ_GT] = ACTIONS(5095), - [anon_sym_switch] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_and] = ACTIONS(5095), - [anon_sym_or] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_QMARK_QMARK] = ACTIONS(5095), - [anon_sym_from] = ACTIONS(5095), - [anon_sym_join] = ACTIONS(5095), - [anon_sym_on] = ACTIONS(5095), - [anon_sym_equals] = ACTIONS(5095), - [anon_sym_let] = ACTIONS(5095), - [anon_sym_orderby] = ACTIONS(5095), - [anon_sym_group] = ACTIONS(5095), - [anon_sym_by] = ACTIONS(5095), - [anon_sym_select] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5095), - [anon_sym_with] = ACTIONS(5095), - [aux_sym_preproc_if_token3] = ACTIONS(5095), - [aux_sym_preproc_else_token1] = ACTIONS(5095), - [aux_sym_preproc_elif_token1] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_in] = ACTIONS(5222), + [anon_sym_where] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_GT_GT_GT] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_switch] = ACTIONS(5222), + [anon_sym_DOT_DOT] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_QMARK_QMARK] = ACTIONS(5222), + [anon_sym_from] = ACTIONS(5222), + [anon_sym_join] = ACTIONS(5222), + [anon_sym_on] = ACTIONS(5222), + [anon_sym_equals] = ACTIONS(5222), + [anon_sym_let] = ACTIONS(5222), + [anon_sym_orderby] = ACTIONS(5222), + [anon_sym_group] = ACTIONS(5222), + [anon_sym_by] = ACTIONS(5222), + [anon_sym_select] = ACTIONS(5222), + [anon_sym_as] = ACTIONS(5222), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_with] = ACTIONS(5222), + [aux_sym_preproc_if_token3] = ACTIONS(5222), + [aux_sym_preproc_else_token1] = ACTIONS(5222), + [aux_sym_preproc_elif_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483359,62 +483394,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3148), [sym_preproc_define] = STATE(3148), [sym_preproc_undef] = STATE(3148), - [anon_sym_SEMI] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_RBRACK] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5188), - [anon_sym_RPAREN] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_in] = ACTIONS(5188), - [anon_sym_where] = ACTIONS(5188), - [anon_sym_QMARK] = ACTIONS(5190), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_PLUS_PLUS] = ACTIONS(5188), - [anon_sym_DASH_DASH] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_CARET] = ACTIONS(5188), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5188), - [anon_sym_GT_GT] = ACTIONS(5190), - [anon_sym_GT_GT_GT] = ACTIONS(5188), - [anon_sym_EQ_EQ] = ACTIONS(5188), - [anon_sym_BANG_EQ] = ACTIONS(5188), - [anon_sym_GT_EQ] = ACTIONS(5188), - [anon_sym_LT_EQ] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_EQ_GT] = ACTIONS(5188), - [anon_sym_switch] = ACTIONS(5188), - [anon_sym_DOT_DOT] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_QMARK_QMARK] = ACTIONS(5188), - [anon_sym_from] = ACTIONS(5188), - [anon_sym_join] = ACTIONS(5188), - [anon_sym_on] = ACTIONS(5188), - [anon_sym_equals] = ACTIONS(5188), - [anon_sym_let] = ACTIONS(5188), - [anon_sym_orderby] = ACTIONS(5188), - [anon_sym_group] = ACTIONS(5188), - [anon_sym_by] = ACTIONS(5188), - [anon_sym_select] = ACTIONS(5188), - [anon_sym_as] = ACTIONS(5188), - [anon_sym_is] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_with] = ACTIONS(5188), - [aux_sym_preproc_if_token3] = ACTIONS(5188), - [aux_sym_preproc_else_token1] = ACTIONS(5188), - [aux_sym_preproc_elif_token1] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_QMARK] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5099), + [anon_sym_AMP] = ACTIONS(5099), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5099), + [anon_sym_GT_GT_GT] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_EQ_GT] = ACTIONS(5097), + [anon_sym_switch] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_and] = ACTIONS(5097), + [anon_sym_or] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_QMARK_QMARK] = ACTIONS(5097), + [anon_sym_from] = ACTIONS(5097), + [anon_sym_join] = ACTIONS(5097), + [anon_sym_on] = ACTIONS(5097), + [anon_sym_equals] = ACTIONS(5097), + [anon_sym_let] = ACTIONS(5097), + [anon_sym_orderby] = ACTIONS(5097), + [anon_sym_group] = ACTIONS(5097), + [anon_sym_by] = ACTIONS(5097), + [anon_sym_select] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5097), + [anon_sym_with] = ACTIONS(5097), + [aux_sym_preproc_if_token3] = ACTIONS(5097), + [aux_sym_preproc_else_token1] = ACTIONS(5097), + [aux_sym_preproc_elif_token1] = ACTIONS(5097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483436,62 +483471,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3149), [sym_preproc_define] = STATE(3149), [sym_preproc_undef] = STATE(3149), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_where] = ACTIONS(4015), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(5273), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4013), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_from] = ACTIONS(4015), - [anon_sym_join] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_let] = ACTIONS(4015), - [anon_sym_orderby] = ACTIONS(4015), - [anon_sym_group] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_select] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_RBRACK] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_RPAREN] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5093), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_QMARK] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5095), + [anon_sym_AMP] = ACTIONS(5095), + [anon_sym_LT_LT] = ACTIONS(5093), + [anon_sym_GT_GT] = ACTIONS(5095), + [anon_sym_GT_GT_GT] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_EQ_GT] = ACTIONS(5093), + [anon_sym_switch] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_and] = ACTIONS(5093), + [anon_sym_or] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_QMARK_QMARK] = ACTIONS(5093), + [anon_sym_from] = ACTIONS(5093), + [anon_sym_join] = ACTIONS(5093), + [anon_sym_on] = ACTIONS(5093), + [anon_sym_equals] = ACTIONS(5093), + [anon_sym_let] = ACTIONS(5093), + [anon_sym_orderby] = ACTIONS(5093), + [anon_sym_group] = ACTIONS(5093), + [anon_sym_by] = ACTIONS(5093), + [anon_sym_select] = ACTIONS(5093), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5093), + [anon_sym_with] = ACTIONS(5093), + [aux_sym_preproc_if_token3] = ACTIONS(5093), + [aux_sym_preproc_else_token1] = ACTIONS(5093), + [aux_sym_preproc_elif_token1] = ACTIONS(5093), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483513,62 +483548,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3150), [sym_preproc_define] = STATE(3150), [sym_preproc_undef] = STATE(3150), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5277), - [anon_sym_DASH_EQ] = ACTIONS(5277), - [anon_sym_STAR_EQ] = ACTIONS(5277), - [anon_sym_SLASH_EQ] = ACTIONS(5277), - [anon_sym_PERCENT_EQ] = ACTIONS(5277), - [anon_sym_AMP_EQ] = ACTIONS(5277), - [anon_sym_CARET_EQ] = ACTIONS(5277), - [anon_sym_PIPE_EQ] = ACTIONS(5277), - [anon_sym_LT_LT_EQ] = ACTIONS(5277), - [anon_sym_GT_GT_EQ] = ACTIONS(5277), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5277), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5277), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_QMARK] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_AMP] = ACTIONS(5021), + [anon_sym_LT_LT] = ACTIONS(5019), + [anon_sym_GT_GT] = ACTIONS(5021), + [anon_sym_GT_GT_GT] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_EQ_GT] = ACTIONS(5019), + [anon_sym_switch] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_and] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5021), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_QMARK_QMARK] = ACTIONS(5019), + [anon_sym_from] = ACTIONS(5019), + [anon_sym_join] = ACTIONS(5019), + [anon_sym_on] = ACTIONS(5019), + [anon_sym_equals] = ACTIONS(5019), + [anon_sym_let] = ACTIONS(5019), + [anon_sym_orderby] = ACTIONS(5019), + [anon_sym_group] = ACTIONS(5019), + [anon_sym_by] = ACTIONS(5019), + [anon_sym_select] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [aux_sym_preproc_if_token3] = ACTIONS(5019), + [aux_sym_preproc_else_token1] = ACTIONS(5019), + [aux_sym_preproc_elif_token1] = ACTIONS(5019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483590,62 +483625,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3151), [sym_preproc_define] = STATE(3151), [sym_preproc_undef] = STATE(3151), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_where] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(2991), - [anon_sym_switch] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2991), - [anon_sym_join] = ACTIONS(2991), - [anon_sym_on] = ACTIONS(2991), - [anon_sym_equals] = ACTIONS(2991), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_orderby] = ACTIONS(2991), - [anon_sym_group] = ACTIONS(2991), - [anon_sym_by] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [aux_sym_preproc_if_token3] = ACTIONS(2991), - [aux_sym_preproc_else_token1] = ACTIONS(2991), - [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5141), + [anon_sym_LT_LT] = ACTIONS(5139), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_GT_GT_GT] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_EQ_GT] = ACTIONS(5139), + [anon_sym_switch] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_and] = ACTIONS(5139), + [anon_sym_or] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_QMARK_QMARK] = ACTIONS(5139), + [anon_sym_from] = ACTIONS(5139), + [anon_sym_join] = ACTIONS(5139), + [anon_sym_on] = ACTIONS(5139), + [anon_sym_equals] = ACTIONS(5139), + [anon_sym_let] = ACTIONS(5139), + [anon_sym_orderby] = ACTIONS(5139), + [anon_sym_group] = ACTIONS(5139), + [anon_sym_by] = ACTIONS(5139), + [anon_sym_select] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5139), + [anon_sym_with] = ACTIONS(5139), + [aux_sym_preproc_if_token3] = ACTIONS(5139), + [aux_sym_preproc_else_token1] = ACTIONS(5139), + [aux_sym_preproc_elif_token1] = ACTIONS(5139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483667,62 +483702,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3152), [sym_preproc_define] = STATE(3152), [sym_preproc_undef] = STATE(3152), - [anon_sym_SEMI] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_RBRACK] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_LT] = ACTIONS(5186), - [anon_sym_GT] = ACTIONS(5186), - [anon_sym_in] = ACTIONS(5184), - [anon_sym_where] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_PLUS_PLUS] = ACTIONS(5184), - [anon_sym_DASH_DASH] = ACTIONS(5184), - [anon_sym_PLUS] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_SLASH] = ACTIONS(5186), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5186), - [anon_sym_GT_GT_GT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5184), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_EQ_GT] = ACTIONS(5184), - [anon_sym_switch] = ACTIONS(5184), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5186), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_QMARK_QMARK] = ACTIONS(5184), - [anon_sym_from] = ACTIONS(5184), - [anon_sym_join] = ACTIONS(5184), - [anon_sym_on] = ACTIONS(5184), - [anon_sym_equals] = ACTIONS(5184), - [anon_sym_let] = ACTIONS(5184), - [anon_sym_orderby] = ACTIONS(5184), - [anon_sym_group] = ACTIONS(5184), - [anon_sym_by] = ACTIONS(5184), - [anon_sym_select] = ACTIONS(5184), - [anon_sym_as] = ACTIONS(5184), - [anon_sym_is] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5184), - [anon_sym_with] = ACTIONS(5184), - [aux_sym_preproc_if_token3] = ACTIONS(5184), - [aux_sym_preproc_else_token1] = ACTIONS(5184), - [aux_sym_preproc_elif_token1] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_in] = ACTIONS(5234), + [anon_sym_where] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_GT_GT_GT] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_EQ_GT] = ACTIONS(5234), + [anon_sym_switch] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(5234), + [anon_sym_and] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_QMARK_QMARK] = ACTIONS(5234), + [anon_sym_from] = ACTIONS(5234), + [anon_sym_join] = ACTIONS(5234), + [anon_sym_on] = ACTIONS(5234), + [anon_sym_equals] = ACTIONS(5234), + [anon_sym_let] = ACTIONS(5234), + [anon_sym_orderby] = ACTIONS(5234), + [anon_sym_group] = ACTIONS(5234), + [anon_sym_by] = ACTIONS(5234), + [anon_sym_select] = ACTIONS(5234), + [anon_sym_as] = ACTIONS(5234), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_with] = ACTIONS(5234), + [aux_sym_preproc_if_token3] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5234), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483744,62 +483779,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3153), [sym_preproc_define] = STATE(3153), [sym_preproc_undef] = STATE(3153), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_where] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(5059), - [anon_sym_GT_GT] = ACTIONS(5061), - [anon_sym_GT_GT_GT] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_EQ_GT] = ACTIONS(5059), - [anon_sym_switch] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_and] = ACTIONS(5059), - [anon_sym_or] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_QMARK_QMARK] = ACTIONS(5059), - [anon_sym_from] = ACTIONS(5059), - [anon_sym_join] = ACTIONS(5059), - [anon_sym_on] = ACTIONS(5059), - [anon_sym_equals] = ACTIONS(5059), - [anon_sym_let] = ACTIONS(5059), - [anon_sym_orderby] = ACTIONS(5059), - [anon_sym_group] = ACTIONS(5059), - [anon_sym_by] = ACTIONS(5059), - [anon_sym_select] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5059), - [anon_sym_with] = ACTIONS(5059), - [aux_sym_preproc_if_token3] = ACTIONS(5059), - [aux_sym_preproc_else_token1] = ACTIONS(5059), - [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_in] = ACTIONS(5242), + [anon_sym_where] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_GT_GT_GT] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_EQ_GT] = ACTIONS(5242), + [anon_sym_switch] = ACTIONS(5242), + [anon_sym_DOT_DOT] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [anon_sym_QMARK_QMARK] = ACTIONS(5242), + [anon_sym_from] = ACTIONS(5242), + [anon_sym_join] = ACTIONS(5242), + [anon_sym_on] = ACTIONS(5242), + [anon_sym_equals] = ACTIONS(5242), + [anon_sym_let] = ACTIONS(5242), + [anon_sym_orderby] = ACTIONS(5242), + [anon_sym_group] = ACTIONS(5242), + [anon_sym_by] = ACTIONS(5242), + [anon_sym_select] = ACTIONS(5242), + [anon_sym_as] = ACTIONS(5242), + [anon_sym_is] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_with] = ACTIONS(5242), + [aux_sym_preproc_if_token3] = ACTIONS(5242), + [aux_sym_preproc_else_token1] = ACTIONS(5242), + [aux_sym_preproc_elif_token1] = ACTIONS(5242), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483821,62 +483856,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3154), [sym_preproc_define] = STATE(3154), [sym_preproc_undef] = STATE(3154), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_COLON] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5126), - [anon_sym_where] = ACTIONS(5126), - [anon_sym_QMARK] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5126), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5126), - [anon_sym_CARET] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_GT_GT_GT] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_EQ_GT] = ACTIONS(5126), - [anon_sym_switch] = ACTIONS(5126), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [anon_sym_or] = ACTIONS(5128), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_QMARK_QMARK] = ACTIONS(5126), - [anon_sym_from] = ACTIONS(5126), - [anon_sym_join] = ACTIONS(5126), - [anon_sym_on] = ACTIONS(5126), - [anon_sym_equals] = ACTIONS(5126), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_orderby] = ACTIONS(5126), - [anon_sym_group] = ACTIONS(5126), - [anon_sym_by] = ACTIONS(5126), - [anon_sym_select] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), - [anon_sym_with] = ACTIONS(5126), - [aux_sym_preproc_if_token3] = ACTIONS(5126), - [aux_sym_preproc_else_token1] = ACTIONS(5126), - [aux_sym_preproc_elif_token1] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_GT_GT_GT] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_EQ_GT] = ACTIONS(5129), + [anon_sym_switch] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_and] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_QMARK_QMARK] = ACTIONS(5129), + [anon_sym_from] = ACTIONS(5129), + [anon_sym_join] = ACTIONS(5129), + [anon_sym_on] = ACTIONS(5129), + [anon_sym_equals] = ACTIONS(5129), + [anon_sym_let] = ACTIONS(5129), + [anon_sym_orderby] = ACTIONS(5129), + [anon_sym_group] = ACTIONS(5129), + [anon_sym_by] = ACTIONS(5129), + [anon_sym_select] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [anon_sym_with] = ACTIONS(5129), + [aux_sym_preproc_if_token3] = ACTIONS(5129), + [aux_sym_preproc_else_token1] = ACTIONS(5129), + [aux_sym_preproc_elif_token1] = ACTIONS(5129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483898,62 +483933,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3155), [sym_preproc_define] = STATE(3155), [sym_preproc_undef] = STATE(3155), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ_GT] = ACTIONS(4291), - [anon_sym_switch] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4291), - [anon_sym_or] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_from] = ACTIONS(4291), - [anon_sym_join] = ACTIONS(4291), - [anon_sym_on] = ACTIONS(4291), - [anon_sym_equals] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_orderby] = ACTIONS(4291), - [anon_sym_group] = ACTIONS(4291), - [anon_sym_by] = ACTIONS(4291), - [anon_sym_select] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4291), - [aux_sym_preproc_if_token3] = ACTIONS(4291), - [aux_sym_preproc_else_token1] = ACTIONS(4291), - [aux_sym_preproc_elif_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_where] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2983), + [anon_sym_join] = ACTIONS(2983), + [anon_sym_on] = ACTIONS(2983), + [anon_sym_equals] = ACTIONS(2983), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_orderby] = ACTIONS(2983), + [anon_sym_group] = ACTIONS(2983), + [anon_sym_by] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [aux_sym_preproc_if_token3] = ACTIONS(2983), + [aux_sym_preproc_else_token1] = ACTIONS(2983), + [aux_sym_preproc_elif_token1] = ACTIONS(2983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483975,62 +484010,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3156), [sym_preproc_define] = STATE(3156), [sym_preproc_undef] = STATE(3156), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_COLON] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_RBRACK] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5114), - [anon_sym_where] = ACTIONS(5114), - [anon_sym_QMARK] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5114), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5114), - [anon_sym_CARET] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5114), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_GT_GT_GT] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_EQ_GT] = ACTIONS(5114), - [anon_sym_switch] = ACTIONS(5114), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_and] = ACTIONS(5114), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_QMARK_QMARK] = ACTIONS(5114), - [anon_sym_from] = ACTIONS(5114), - [anon_sym_join] = ACTIONS(5114), - [anon_sym_on] = ACTIONS(5114), - [anon_sym_equals] = ACTIONS(5114), - [anon_sym_let] = ACTIONS(5114), - [anon_sym_orderby] = ACTIONS(5114), - [anon_sym_group] = ACTIONS(5114), - [anon_sym_by] = ACTIONS(5114), - [anon_sym_select] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5114), - [anon_sym_DASH_GT] = ACTIONS(5114), - [anon_sym_with] = ACTIONS(5114), - [aux_sym_preproc_if_token3] = ACTIONS(5114), - [aux_sym_preproc_else_token1] = ACTIONS(5114), - [aux_sym_preproc_elif_token1] = ACTIONS(5114), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_QMARK] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_LT_LT] = ACTIONS(5199), + [anon_sym_GT_GT] = ACTIONS(5201), + [anon_sym_GT_GT_GT] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5201), + [anon_sym_EQ_GT] = ACTIONS(5199), + [anon_sym_switch] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_and] = ACTIONS(5199), + [anon_sym_or] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_QMARK_QMARK] = ACTIONS(5199), + [anon_sym_from] = ACTIONS(5199), + [anon_sym_join] = ACTIONS(5199), + [anon_sym_on] = ACTIONS(5199), + [anon_sym_equals] = ACTIONS(5199), + [anon_sym_let] = ACTIONS(5199), + [anon_sym_orderby] = ACTIONS(5199), + [anon_sym_group] = ACTIONS(5199), + [anon_sym_by] = ACTIONS(5199), + [anon_sym_select] = ACTIONS(5199), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5199), + [anon_sym_with] = ACTIONS(5199), + [aux_sym_preproc_if_token3] = ACTIONS(5199), + [aux_sym_preproc_else_token1] = ACTIONS(5199), + [aux_sym_preproc_elif_token1] = ACTIONS(5199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484058,7 +484093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(3494), [anon_sym_unsafe] = ACTIONS(3494), [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5143), [anon_sym_event] = ACTIONS(3494), [anon_sym_class] = ACTIONS(3494), [anon_sym_ref] = ACTIONS(3494), @@ -484087,7 +484122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3494), [anon_sym_notnull] = ACTIONS(3494), [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3763), + [anon_sym_TILDE] = ACTIONS(5279), [anon_sym_implicit] = ACTIONS(3494), [anon_sym_explicit] = ACTIONS(3494), [anon_sym_scoped] = ACTIONS(3494), @@ -484128,61 +484163,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3158), [sym_preproc_define] = STATE(3158), [sym_preproc_undef] = STATE(3158), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_RBRACK] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5283), + [anon_sym_DASH_EQ] = ACTIONS(5283), + [anon_sym_STAR_EQ] = ACTIONS(5283), + [anon_sym_SLASH_EQ] = ACTIONS(5283), + [anon_sym_PERCENT_EQ] = ACTIONS(5283), + [anon_sym_AMP_EQ] = ACTIONS(5283), + [anon_sym_CARET_EQ] = ACTIONS(5283), + [anon_sym_PIPE_EQ] = ACTIONS(5283), + [anon_sym_LT_LT_EQ] = ACTIONS(5283), + [anon_sym_GT_GT_EQ] = ACTIONS(5283), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5283), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5283), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484204,13 +484239,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3159), [sym_preproc_define] = STATE(3159), [sym_preproc_undef] = STATE(3159), + [sym__identifier_token] = ACTIONS(3491), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3491), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3491), + [anon_sym_unmanaged] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3491), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3491), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_when] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_into] = ACTIONS(3491), + [anon_sym_join] = ACTIONS(3491), + [anon_sym_on] = ACTIONS(3491), + [anon_sym_equals] = ACTIONS(3491), + [anon_sym_let] = ACTIONS(3491), + [anon_sym_orderby] = ACTIONS(3491), + [anon_sym_ascending] = ACTIONS(3491), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3160] = { + [sym_preproc_region] = STATE(3160), + [sym_preproc_endregion] = STATE(3160), + [sym_preproc_line] = STATE(3160), + [sym_preproc_pragma] = STATE(3160), + [sym_preproc_nullable] = STATE(3160), + [sym_preproc_error] = STATE(3160), + [sym_preproc_warning] = STATE(3160), + [sym_preproc_define] = STATE(3160), + [sym_preproc_undef] = STATE(3160), [sym__identifier_token] = ACTIONS(3494), [anon_sym_extern] = ACTIONS(3494), [anon_sym_alias] = ACTIONS(3494), [anon_sym_global] = ACTIONS(3494), [anon_sym_unsafe] = ACTIONS(3494), [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5143), [anon_sym_event] = ACTIONS(3494), [anon_sym_class] = ACTIONS(3494), [anon_sym_ref] = ACTIONS(3494), @@ -484239,7 +484350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(3494), [anon_sym_notnull] = ACTIONS(3494), [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(5279), + [anon_sym_TILDE] = ACTIONS(3763), [anon_sym_implicit] = ACTIONS(3494), [anon_sym_explicit] = ACTIONS(3494), [anon_sym_scoped] = ACTIONS(3494), @@ -484270,82 +484381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3160] = { - [sym_preproc_region] = STATE(3160), - [sym_preproc_endregion] = STATE(3160), - [sym_preproc_line] = STATE(3160), - [sym_preproc_pragma] = STATE(3160), - [sym_preproc_nullable] = STATE(3160), - [sym_preproc_error] = STATE(3160), - [sym_preproc_warning] = STATE(3160), - [sym_preproc_define] = STATE(3160), - [sym_preproc_undef] = STATE(3160), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5283), - [anon_sym_DASH_EQ] = ACTIONS(5283), - [anon_sym_STAR_EQ] = ACTIONS(5283), - [anon_sym_SLASH_EQ] = ACTIONS(5283), - [anon_sym_PERCENT_EQ] = ACTIONS(5283), - [anon_sym_AMP_EQ] = ACTIONS(5283), - [anon_sym_CARET_EQ] = ACTIONS(5283), - [anon_sym_PIPE_EQ] = ACTIONS(5283), - [anon_sym_LT_LT_EQ] = ACTIONS(5283), - [anon_sym_GT_GT_EQ] = ACTIONS(5283), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5283), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5283), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3161] = { [sym_preproc_region] = STATE(3161), [sym_preproc_endregion] = STATE(3161), @@ -484356,61 +484391,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3161), [sym_preproc_define] = STATE(3161), [sym_preproc_undef] = STATE(3161), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), + [anon_sym_EQ] = ACTIONS(5285), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(5287), + [anon_sym_DASH_EQ] = ACTIONS(5287), + [anon_sym_STAR_EQ] = ACTIONS(5287), + [anon_sym_SLASH_EQ] = ACTIONS(5287), + [anon_sym_PERCENT_EQ] = ACTIONS(5287), + [anon_sym_AMP_EQ] = ACTIONS(5287), + [anon_sym_CARET_EQ] = ACTIONS(5287), + [anon_sym_PIPE_EQ] = ACTIONS(5287), + [anon_sym_LT_LT_EQ] = ACTIONS(5287), + [anon_sym_GT_GT_EQ] = ACTIONS(5287), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5287), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5287), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484432,61 +484467,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3162), [sym_preproc_define] = STATE(3162), [sym_preproc_undef] = STATE(3162), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(5287), - [anon_sym_DASH_EQ] = ACTIONS(5287), - [anon_sym_STAR_EQ] = ACTIONS(5287), - [anon_sym_SLASH_EQ] = ACTIONS(5287), - [anon_sym_PERCENT_EQ] = ACTIONS(5287), - [anon_sym_AMP_EQ] = ACTIONS(5287), - [anon_sym_CARET_EQ] = ACTIONS(5287), - [anon_sym_PIPE_EQ] = ACTIONS(5287), - [anon_sym_LT_LT_EQ] = ACTIONS(5287), - [anon_sym_GT_GT_EQ] = ACTIONS(5287), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5287), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5287), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484499,7 +484534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3163] = { - [sym_type_argument_list] = STATE(3258), [sym_preproc_region] = STATE(3163), [sym_preproc_endregion] = STATE(3163), [sym_preproc_line] = STATE(3163), @@ -484509,59 +484543,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3163), [sym_preproc_define] = STATE(3163), [sym_preproc_undef] = STATE(3163), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(5292), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(5289), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5291), + [anon_sym_DASH_EQ] = ACTIONS(5291), + [anon_sym_STAR_EQ] = ACTIONS(5291), + [anon_sym_SLASH_EQ] = ACTIONS(5291), + [anon_sym_PERCENT_EQ] = ACTIONS(5291), + [anon_sym_AMP_EQ] = ACTIONS(5291), + [anon_sym_CARET_EQ] = ACTIONS(5291), + [anon_sym_PIPE_EQ] = ACTIONS(5291), + [anon_sym_LT_LT_EQ] = ACTIONS(5291), + [anon_sym_GT_GT_EQ] = ACTIONS(5291), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5291), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5291), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484583,60 +484618,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3164), [sym_preproc_define] = STATE(3164), [sym_preproc_undef] = STATE(3164), - [sym__identifier_token] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym_alias] = ACTIONS(5294), - [anon_sym_global] = ACTIONS(5294), - [anon_sym_unsafe] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_event] = ACTIONS(5294), - [anon_sym_class] = ACTIONS(5294), - [anon_sym_ref] = ACTIONS(5294), - [anon_sym_struct] = ACTIONS(5294), - [anon_sym_enum] = ACTIONS(5294), - [anon_sym_interface] = ACTIONS(5294), - [anon_sym_delegate] = ACTIONS(5294), - [anon_sym_record] = ACTIONS(5294), - [anon_sym_abstract] = ACTIONS(5294), - [anon_sym_async] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_file] = ACTIONS(5294), - [anon_sym_fixed] = ACTIONS(5294), - [anon_sym_internal] = ACTIONS(5294), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), - [anon_sym_partial] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_readonly] = ACTIONS(5294), - [anon_sym_required] = ACTIONS(5294), - [anon_sym_sealed] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5294), - [anon_sym_notnull] = ACTIONS(5294), - [anon_sym_unmanaged] = ACTIONS(5294), - [anon_sym_implicit] = ACTIONS(5294), - [anon_sym_explicit] = ACTIONS(5294), - [anon_sym_scoped] = ACTIONS(5294), - [anon_sym_var] = ACTIONS(5294), - [sym_predefined_type] = ACTIONS(5294), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_when] = ACTIONS(5294), - [anon_sym_from] = ACTIONS(5294), - [anon_sym_into] = ACTIONS(5294), - [anon_sym_join] = ACTIONS(5294), - [anon_sym_on] = ACTIONS(5294), - [anon_sym_equals] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_orderby] = ACTIONS(5294), - [anon_sym_ascending] = ACTIONS(5294), - [anon_sym_descending] = ACTIONS(5294), - [anon_sym_group] = ACTIONS(5294), - [anon_sym_by] = ACTIONS(5294), - [anon_sym_select] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_when] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_into] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484649,6 +484684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3165] = { + [sym_type_argument_list] = STATE(3206), [sym_preproc_region] = STATE(3165), [sym_preproc_endregion] = STATE(3165), [sym_preproc_line] = STATE(3165), @@ -484658,13 +484694,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3165), [sym_preproc_define] = STATE(3165), [sym_preproc_undef] = STATE(3165), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(5296), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3166] = { + [sym_preproc_region] = STATE(3166), + [sym_preproc_endregion] = STATE(3166), + [sym_preproc_line] = STATE(3166), + [sym_preproc_pragma] = STATE(3166), + [sym_preproc_nullable] = STATE(3166), + [sym_preproc_error] = STATE(3166), + [sym_preproc_warning] = STATE(3166), + [sym_preproc_define] = STATE(3166), + [sym_preproc_undef] = STATE(3166), + [sym__identifier_token] = ACTIONS(5298), + [anon_sym_extern] = ACTIONS(5298), + [anon_sym_alias] = ACTIONS(5298), + [anon_sym_global] = ACTIONS(5298), + [anon_sym_unsafe] = ACTIONS(5298), + [anon_sym_static] = ACTIONS(5298), + [anon_sym_LPAREN] = ACTIONS(5300), + [anon_sym_event] = ACTIONS(5298), + [anon_sym_class] = ACTIONS(5298), + [anon_sym_ref] = ACTIONS(5298), + [anon_sym_struct] = ACTIONS(5298), + [anon_sym_enum] = ACTIONS(5298), + [anon_sym_interface] = ACTIONS(5298), + [anon_sym_delegate] = ACTIONS(5298), + [anon_sym_record] = ACTIONS(5298), + [anon_sym_abstract] = ACTIONS(5298), + [anon_sym_async] = ACTIONS(5298), + [anon_sym_const] = ACTIONS(5298), + [anon_sym_file] = ACTIONS(5298), + [anon_sym_fixed] = ACTIONS(5298), + [anon_sym_internal] = ACTIONS(5298), + [anon_sym_new] = ACTIONS(5298), + [anon_sym_override] = ACTIONS(5298), + [anon_sym_partial] = ACTIONS(5298), + [anon_sym_private] = ACTIONS(5298), + [anon_sym_protected] = ACTIONS(5298), + [anon_sym_public] = ACTIONS(5298), + [anon_sym_readonly] = ACTIONS(5298), + [anon_sym_required] = ACTIONS(5298), + [anon_sym_sealed] = ACTIONS(5298), + [anon_sym_virtual] = ACTIONS(5298), + [anon_sym_volatile] = ACTIONS(5298), + [anon_sym_where] = ACTIONS(5298), + [anon_sym_notnull] = ACTIONS(5298), + [anon_sym_unmanaged] = ACTIONS(5298), + [anon_sym_implicit] = ACTIONS(5298), + [anon_sym_explicit] = ACTIONS(5298), + [anon_sym_scoped] = ACTIONS(5298), + [anon_sym_var] = ACTIONS(5298), + [sym_predefined_type] = ACTIONS(5298), + [anon_sym_yield] = ACTIONS(5298), + [anon_sym_when] = ACTIONS(5298), + [anon_sym_from] = ACTIONS(5298), + [anon_sym_into] = ACTIONS(5298), + [anon_sym_join] = ACTIONS(5298), + [anon_sym_on] = ACTIONS(5298), + [anon_sym_equals] = ACTIONS(5298), + [anon_sym_let] = ACTIONS(5298), + [anon_sym_orderby] = ACTIONS(5298), + [anon_sym_ascending] = ACTIONS(5298), + [anon_sym_descending] = ACTIONS(5298), + [anon_sym_group] = ACTIONS(5298), + [anon_sym_by] = ACTIONS(5298), + [anon_sym_select] = ACTIONS(5298), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3167] = { + [sym_preproc_region] = STATE(3167), + [sym_preproc_endregion] = STATE(3167), + [sym_preproc_line] = STATE(3167), + [sym_preproc_pragma] = STATE(3167), + [sym_preproc_nullable] = STATE(3167), + [sym_preproc_error] = STATE(3167), + [sym_preproc_warning] = STATE(3167), + [sym_preproc_define] = STATE(3167), + [sym_preproc_undef] = STATE(3167), [sym__identifier_token] = ACTIONS(3494), [anon_sym_extern] = ACTIONS(3494), [anon_sym_alias] = ACTIONS(3494), [anon_sym_global] = ACTIONS(3494), [anon_sym_unsafe] = ACTIONS(3494), [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5143), [anon_sym_event] = ACTIONS(3494), [anon_sym_class] = ACTIONS(3494), [anon_sym_ref] = ACTIONS(3494), @@ -484723,157 +484908,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3166] = { - [sym_preproc_region] = STATE(3166), - [sym_preproc_endregion] = STATE(3166), - [sym_preproc_line] = STATE(3166), - [sym_preproc_pragma] = STATE(3166), - [sym_preproc_nullable] = STATE(3166), - [sym_preproc_error] = STATE(3166), - [sym_preproc_warning] = STATE(3166), - [sym_preproc_define] = STATE(3166), - [sym_preproc_undef] = STATE(3166), - [anon_sym_EQ] = ACTIONS(5298), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5300), - [anon_sym_DASH_EQ] = ACTIONS(5300), - [anon_sym_STAR_EQ] = ACTIONS(5300), - [anon_sym_SLASH_EQ] = ACTIONS(5300), - [anon_sym_PERCENT_EQ] = ACTIONS(5300), - [anon_sym_AMP_EQ] = ACTIONS(5300), - [anon_sym_CARET_EQ] = ACTIONS(5300), - [anon_sym_PIPE_EQ] = ACTIONS(5300), - [anon_sym_LT_LT_EQ] = ACTIONS(5300), - [anon_sym_GT_GT_EQ] = ACTIONS(5300), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5300), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3167] = { - [sym_argument_list] = STATE(3175), - [sym_initializer_expression] = STATE(3386), - [sym_preproc_region] = STATE(3167), - [sym_preproc_endregion] = STATE(3167), - [sym_preproc_line] = STATE(3167), - [sym_preproc_pragma] = STATE(3167), - [sym_preproc_nullable] = STATE(3167), - [sym_preproc_error] = STATE(3167), - [sym_preproc_warning] = STATE(3167), - [sym_preproc_define] = STATE(3167), - [sym_preproc_undef] = STATE(3167), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_COMMA] = ACTIONS(4844), - [anon_sym_RBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_in] = ACTIONS(4848), - [anon_sym_QMARK] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4848), - [anon_sym_PLUS_PLUS] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_GT_GT_GT] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_EQ_GT] = ACTIONS(4844), - [anon_sym_switch] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_QMARK_QMARK] = ACTIONS(4844), - [anon_sym_into] = ACTIONS(4844), - [anon_sym_on] = ACTIONS(4844), - [anon_sym_equals] = ACTIONS(4844), - [anon_sym_by] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [aux_sym_preproc_if_token3] = ACTIONS(4844), - [aux_sym_preproc_else_token1] = ACTIONS(4844), - [aux_sym_preproc_elif_token1] = ACTIONS(4844), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3168] = { + [sym_argument_list] = STATE(3179), + [sym_initializer_expression] = STATE(3326), [sym_preproc_region] = STATE(3168), [sym_preproc_endregion] = STATE(3168), [sym_preproc_line] = STATE(3168), @@ -484883,60 +484920,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3168), [sym_preproc_define] = STATE(3168), [sym_preproc_undef] = STATE(3168), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_when] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4184), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_into] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_in] = ACTIONS(4815), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_GT_GT_GT] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_when] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4811), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_on] = ACTIONS(4811), + [anon_sym_equals] = ACTIONS(4811), + [anon_sym_by] = ACTIONS(4811), + [anon_sym_as] = ACTIONS(4811), + [anon_sym_is] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [anon_sym_with] = ACTIONS(4811), + [aux_sym_preproc_if_token3] = ACTIONS(4811), + [aux_sym_preproc_else_token1] = ACTIONS(4811), + [aux_sym_preproc_elif_token1] = ACTIONS(4811), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484949,7 +484984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3169] = { - [sym_block] = STATE(2042), + [sym_initializer_expression] = STATE(3330), [sym_preproc_region] = STATE(3169), [sym_preproc_endregion] = STATE(3169), [sym_preproc_line] = STATE(3169), @@ -484959,58 +484994,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3169), [sym_preproc_define] = STATE(3169), [sym_preproc_undef] = STATE(3169), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5304), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4894), + [anon_sym_QMARK] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4889), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_GT_GT_GT] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_GT_EQ] = ACTIONS(4889), + [anon_sym_LT_EQ] = ACTIONS(4889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_EQ_GT] = ACTIONS(4889), + [anon_sym_switch] = ACTIONS(4889), + [anon_sym_when] = ACTIONS(4889), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_and] = ACTIONS(4889), + [anon_sym_or] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_QMARK_QMARK] = ACTIONS(4889), + [anon_sym_into] = ACTIONS(4889), + [anon_sym_on] = ACTIONS(4889), + [anon_sym_equals] = ACTIONS(4889), + [anon_sym_by] = ACTIONS(4889), + [anon_sym_as] = ACTIONS(4889), + [anon_sym_is] = ACTIONS(4889), + [anon_sym_DASH_GT] = ACTIONS(4889), + [anon_sym_with] = ACTIONS(4889), + [aux_sym_preproc_if_token3] = ACTIONS(4889), + [aux_sym_preproc_else_token1] = ACTIONS(4889), + [aux_sym_preproc_elif_token1] = ACTIONS(4889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485023,6 +485058,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3170] = { + [sym_attribute_list] = STATE(3570), + [sym__attribute_list] = STATE(3569), + [sym_preproc_if_in_attribute_list] = STATE(3570), [sym_preproc_region] = STATE(3170), [sym_preproc_endregion] = STATE(3170), [sym_preproc_line] = STATE(3170), @@ -485032,59 +485070,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3170), [sym_preproc_define] = STATE(3170), [sym_preproc_undef] = STATE(3170), - [anon_sym_EQ] = ACTIONS(5306), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5308), - [anon_sym_DASH_EQ] = ACTIONS(5308), - [anon_sym_STAR_EQ] = ACTIONS(5308), - [anon_sym_SLASH_EQ] = ACTIONS(5308), - [anon_sym_PERCENT_EQ] = ACTIONS(5308), - [anon_sym_AMP_EQ] = ACTIONS(5308), - [anon_sym_CARET_EQ] = ACTIONS(5308), - [anon_sym_PIPE_EQ] = ACTIONS(5308), - [anon_sym_LT_LT_EQ] = ACTIONS(5308), - [anon_sym_GT_GT_EQ] = ACTIONS(5308), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5308), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3170), + [sym__identifier_token] = ACTIONS(4771), + [anon_sym_extern] = ACTIONS(4771), + [anon_sym_alias] = ACTIONS(4771), + [anon_sym_global] = ACTIONS(4771), + [anon_sym_unsafe] = ACTIONS(4771), + [anon_sym_static] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(5304), + [anon_sym_abstract] = ACTIONS(4771), + [anon_sym_async] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_file] = ACTIONS(4771), + [anon_sym_fixed] = ACTIONS(4771), + [anon_sym_internal] = ACTIONS(4771), + [anon_sym_new] = ACTIONS(4771), + [anon_sym_override] = ACTIONS(4771), + [anon_sym_partial] = ACTIONS(4771), + [anon_sym_private] = ACTIONS(4771), + [anon_sym_protected] = ACTIONS(4771), + [anon_sym_public] = ACTIONS(4771), + [anon_sym_readonly] = ACTIONS(4771), + [anon_sym_required] = ACTIONS(4771), + [anon_sym_sealed] = ACTIONS(4771), + [anon_sym_virtual] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_where] = ACTIONS(4771), + [anon_sym_notnull] = ACTIONS(4771), + [anon_sym_unmanaged] = ACTIONS(4771), + [anon_sym_get] = ACTIONS(4771), + [anon_sym_set] = ACTIONS(4771), + [anon_sym_add] = ACTIONS(4771), + [anon_sym_remove] = ACTIONS(4771), + [anon_sym_init] = ACTIONS(4771), + [anon_sym_scoped] = ACTIONS(4771), + [anon_sym_var] = ACTIONS(4771), + [anon_sym_yield] = ACTIONS(4771), + [anon_sym_when] = ACTIONS(4771), + [anon_sym_from] = ACTIONS(4771), + [anon_sym_into] = ACTIONS(4771), + [anon_sym_join] = ACTIONS(4771), + [anon_sym_on] = ACTIONS(4771), + [anon_sym_equals] = ACTIONS(4771), + [anon_sym_let] = ACTIONS(4771), + [anon_sym_orderby] = ACTIONS(4771), + [anon_sym_ascending] = ACTIONS(4771), + [anon_sym_descending] = ACTIONS(4771), + [anon_sym_group] = ACTIONS(4771), + [anon_sym_by] = ACTIONS(4771), + [anon_sym_select] = ACTIONS(4771), + [aux_sym_preproc_if_token1] = ACTIONS(5307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485097,8 +485132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3171] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3171), [sym_preproc_endregion] = STATE(3171), [sym_preproc_line] = STATE(3171), @@ -485108,57 +485141,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3171), [sym_preproc_define] = STATE(3171), [sym_preproc_undef] = STATE(3171), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_QMARK] = ACTIONS(4898), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_CARET] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4896), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_GT_GT_GT] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_EQ_GT] = ACTIONS(4896), - [anon_sym_switch] = ACTIONS(4896), - [anon_sym_when] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_and] = ACTIONS(4896), - [anon_sym_or] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_QMARK_QMARK] = ACTIONS(4896), - [anon_sym_into] = ACTIONS(4896), - [anon_sym_on] = ACTIONS(4896), - [anon_sym_equals] = ACTIONS(4896), - [anon_sym_by] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4896), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4896), - [aux_sym_preproc_if_token3] = ACTIONS(4896), - [aux_sym_preproc_else_token1] = ACTIONS(4896), - [aux_sym_preproc_elif_token1] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485171,7 +485206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3172] = { - [sym_block] = STATE(1978), + [sym_initializer_expression] = STATE(3321), [sym_preproc_region] = STATE(3172), [sym_preproc_endregion] = STATE(3172), [sym_preproc_line] = STATE(3172), @@ -485181,58 +485216,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3172), [sym_preproc_define] = STATE(3172), [sym_preproc_undef] = STATE(3172), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5316), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4873), + [anon_sym_QMARK] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4871), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_CARET] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_GT_GT_GT] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_EQ_GT] = ACTIONS(4871), + [anon_sym_switch] = ACTIONS(4871), + [anon_sym_when] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_and] = ACTIONS(4871), + [anon_sym_or] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_QMARK_QMARK] = ACTIONS(4871), + [anon_sym_into] = ACTIONS(4871), + [anon_sym_on] = ACTIONS(4871), + [anon_sym_equals] = ACTIONS(4871), + [anon_sym_by] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_DASH_GT] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), + [aux_sym_preproc_if_token3] = ACTIONS(4871), + [aux_sym_preproc_else_token1] = ACTIONS(4871), + [aux_sym_preproc_elif_token1] = ACTIONS(4871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485245,6 +485280,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3173] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3173), [sym_preproc_endregion] = STATE(3173), [sym_preproc_line] = STATE(3173), @@ -485254,59 +485291,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3173), [sym_preproc_define] = STATE(3173), [sym_preproc_undef] = STATE(3173), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5318), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5320), - [anon_sym_DASH_EQ] = ACTIONS(5320), - [anon_sym_STAR_EQ] = ACTIONS(5320), - [anon_sym_SLASH_EQ] = ACTIONS(5320), - [anon_sym_PERCENT_EQ] = ACTIONS(5320), - [anon_sym_AMP_EQ] = ACTIONS(5320), - [anon_sym_CARET_EQ] = ACTIONS(5320), - [anon_sym_PIPE_EQ] = ACTIONS(5320), - [anon_sym_LT_LT_EQ] = ACTIONS(5320), - [anon_sym_GT_GT_EQ] = ACTIONS(5320), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5320), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COLON] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4887), + [anon_sym_QMARK] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4887), + [anon_sym_GT_GT_GT] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_GT_EQ] = ACTIONS(4885), + [anon_sym_LT_EQ] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_EQ_GT] = ACTIONS(4885), + [anon_sym_switch] = ACTIONS(4885), + [anon_sym_when] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4885), + [anon_sym_and] = ACTIONS(4885), + [anon_sym_or] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_QMARK_QMARK] = ACTIONS(4885), + [anon_sym_into] = ACTIONS(4885), + [anon_sym_on] = ACTIONS(4885), + [anon_sym_equals] = ACTIONS(4885), + [anon_sym_by] = ACTIONS(4885), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4885), + [aux_sym_preproc_if_token3] = ACTIONS(4885), + [aux_sym_preproc_else_token1] = ACTIONS(4885), + [aux_sym_preproc_elif_token1] = ACTIONS(4885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485319,8 +485354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3174] = { - [sym_argument_list] = STATE(3206), - [sym_initializer_expression] = STATE(3446), [sym_preproc_region] = STATE(3174), [sym_preproc_endregion] = STATE(3174), [sym_preproc_line] = STATE(3174), @@ -485330,57 +485363,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3174), [sym_preproc_define] = STATE(3174), [sym_preproc_undef] = STATE(3174), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_COMMA] = ACTIONS(4844), - [anon_sym_RBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4848), - [anon_sym_PLUS_PLUS] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_GT_GT_GT] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_EQ_GT] = ACTIONS(4844), - [anon_sym_switch] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_or] = ACTIONS(4844), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_QMARK_QMARK] = ACTIONS(4844), - [anon_sym_on] = ACTIONS(4844), - [anon_sym_equals] = ACTIONS(4844), - [anon_sym_by] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [aux_sym_preproc_if_token3] = ACTIONS(4844), - [aux_sym_preproc_else_token1] = ACTIONS(4844), - [aux_sym_preproc_elif_token1] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3633), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_when] = ACTIONS(3630), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3630), + [anon_sym_or] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_into] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_equals] = ACTIONS(3630), + [anon_sym_by] = ACTIONS(3630), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_is] = ACTIONS(3630), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485393,7 +485428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3175] = { - [sym_initializer_expression] = STATE(3269), [sym_preproc_region] = STATE(3175), [sym_preproc_endregion] = STATE(3175), [sym_preproc_line] = STATE(3175), @@ -485403,58 +485437,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3175), [sym_preproc_define] = STATE(3175), [sym_preproc_undef] = STATE(3175), - [anon_sym_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4870), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_when] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_into] = ACTIONS(3459), + [anon_sym_on] = ACTIONS(3459), + [anon_sym_equals] = ACTIONS(3459), + [anon_sym_by] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485467,7 +485502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3176] = { - [sym_initializer_expression] = STATE(3387), + [sym_argument_list] = STATE(3259), + [sym_initializer_expression] = STATE(3422), [sym_preproc_region] = STATE(3176), [sym_preproc_endregion] = STATE(3176), [sym_preproc_line] = STATE(3176), @@ -485477,58 +485513,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3176), [sym_preproc_define] = STATE(3176), [sym_preproc_undef] = STATE(3176), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(5324), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(5327), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_when] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_GT_GT_GT] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_when] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4811), + [anon_sym_on] = ACTIONS(4811), + [anon_sym_equals] = ACTIONS(4811), + [anon_sym_by] = ACTIONS(4811), + [anon_sym_as] = ACTIONS(4811), + [anon_sym_is] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [anon_sym_with] = ACTIONS(4811), + [aux_sym_preproc_if_token3] = ACTIONS(4811), + [aux_sym_preproc_else_token1] = ACTIONS(4811), + [aux_sym_preproc_elif_token1] = ACTIONS(4811), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485541,9 +485576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3177] = { - [sym_attribute_list] = STATE(3565), - [sym__attribute_list] = STATE(3562), - [sym_preproc_if_in_attribute_list] = STATE(3565), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3177), [sym_preproc_endregion] = STATE(3177), [sym_preproc_line] = STATE(3177), @@ -485553,56 +485587,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3177), [sym_preproc_define] = STATE(3177), [sym_preproc_undef] = STATE(3177), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3177), - [sym__identifier_token] = ACTIONS(4767), - [anon_sym_extern] = ACTIONS(4767), - [anon_sym_alias] = ACTIONS(4767), - [anon_sym_global] = ACTIONS(4767), - [anon_sym_unsafe] = ACTIONS(4767), - [anon_sym_static] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_async] = ACTIONS(4767), - [anon_sym_const] = ACTIONS(4767), - [anon_sym_file] = ACTIONS(4767), - [anon_sym_fixed] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_new] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_partial] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_readonly] = ACTIONS(4767), - [anon_sym_required] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_virtual] = ACTIONS(4767), - [anon_sym_volatile] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_notnull] = ACTIONS(4767), - [anon_sym_unmanaged] = ACTIONS(4767), - [anon_sym_get] = ACTIONS(4767), - [anon_sym_set] = ACTIONS(4767), - [anon_sym_add] = ACTIONS(4767), - [anon_sym_remove] = ACTIONS(4767), - [anon_sym_init] = ACTIONS(4767), - [anon_sym_scoped] = ACTIONS(4767), - [anon_sym_var] = ACTIONS(4767), - [anon_sym_yield] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_from] = ACTIONS(4767), - [anon_sym_into] = ACTIONS(4767), - [anon_sym_join] = ACTIONS(4767), - [anon_sym_on] = ACTIONS(4767), - [anon_sym_equals] = ACTIONS(4767), - [anon_sym_let] = ACTIONS(4767), - [anon_sym_orderby] = ACTIONS(4767), - [anon_sym_ascending] = ACTIONS(4767), - [anon_sym_descending] = ACTIONS(4767), - [anon_sym_group] = ACTIONS(4767), - [anon_sym_by] = ACTIONS(4767), - [anon_sym_select] = ACTIONS(4767), - [aux_sym_preproc_if_token1] = ACTIONS(5334), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4879), + [anon_sym_QMARK] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_PERCENT] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4875), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_GT_GT_GT] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_EQ_GT] = ACTIONS(4875), + [anon_sym_switch] = ACTIONS(4875), + [anon_sym_when] = ACTIONS(4875), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_and] = ACTIONS(4875), + [anon_sym_or] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_QMARK_QMARK] = ACTIONS(4875), + [anon_sym_into] = ACTIONS(4875), + [anon_sym_on] = ACTIONS(4875), + [anon_sym_equals] = ACTIONS(4875), + [anon_sym_by] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4875), + [aux_sym_preproc_if_token3] = ACTIONS(4875), + [aux_sym_preproc_else_token1] = ACTIONS(4875), + [aux_sym_preproc_elif_token1] = ACTIONS(4875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485624,59 +485659,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3178), [sym_preproc_define] = STATE(3178), [sym_preproc_undef] = STATE(3178), - [anon_sym_EQ] = ACTIONS(5337), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5339), - [anon_sym_DASH_EQ] = ACTIONS(5339), - [anon_sym_STAR_EQ] = ACTIONS(5339), - [anon_sym_SLASH_EQ] = ACTIONS(5339), - [anon_sym_PERCENT_EQ] = ACTIONS(5339), - [anon_sym_AMP_EQ] = ACTIONS(5339), - [anon_sym_CARET_EQ] = ACTIONS(5339), - [anon_sym_PIPE_EQ] = ACTIONS(5339), - [anon_sym_LT_LT_EQ] = ACTIONS(5339), - [anon_sym_GT_GT_EQ] = ACTIONS(5339), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5339), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5339), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5320), + [anon_sym_DASH_EQ] = ACTIONS(5320), + [anon_sym_STAR_EQ] = ACTIONS(5320), + [anon_sym_SLASH_EQ] = ACTIONS(5320), + [anon_sym_PERCENT_EQ] = ACTIONS(5320), + [anon_sym_AMP_EQ] = ACTIONS(5320), + [anon_sym_CARET_EQ] = ACTIONS(5320), + [anon_sym_PIPE_EQ] = ACTIONS(5320), + [anon_sym_LT_LT_EQ] = ACTIONS(5320), + [anon_sym_GT_GT_EQ] = ACTIONS(5320), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5320), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485689,6 +485724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3179] = { + [sym_initializer_expression] = STATE(3278), [sym_preproc_region] = STATE(3179), [sym_preproc_endregion] = STATE(3179), [sym_preproc_line] = STATE(3179), @@ -485698,59 +485734,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3179), [sym_preproc_define] = STATE(3179), [sym_preproc_undef] = STATE(3179), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_QMARK] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_GT_GT_GT] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_EQ_GT] = ACTIONS(4904), + [anon_sym_switch] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_and] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_QMARK_QMARK] = ACTIONS(4904), + [anon_sym_into] = ACTIONS(4904), + [anon_sym_on] = ACTIONS(4904), + [anon_sym_equals] = ACTIONS(4904), + [anon_sym_by] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_with] = ACTIONS(4904), + [aux_sym_preproc_if_token3] = ACTIONS(4904), + [aux_sym_preproc_else_token1] = ACTIONS(4904), + [aux_sym_preproc_elif_token1] = ACTIONS(4904), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485763,7 +485798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3180] = { - [sym_type_argument_list] = STATE(3258), + [sym_block] = STATE(2031), [sym_preproc_region] = STATE(3180), [sym_preproc_endregion] = STATE(3180), [sym_preproc_line] = STATE(3180), @@ -485773,58 +485808,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3180), [sym_preproc_define] = STATE(3180), [sym_preproc_undef] = STATE(3180), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(5289), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5322), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485837,7 +485872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3181] = { - [sym_type_argument_list] = STATE(3225), + [sym_type_argument_list] = STATE(3260), [sym_preproc_region] = STATE(3181), [sym_preproc_endregion] = STATE(3181), [sym_preproc_line] = STATE(3181), @@ -485847,57 +485882,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3181), [sym_preproc_define] = STATE(3181), [sym_preproc_undef] = STATE(3181), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485908,9 +485943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [3182] = { + [sym_type_argument_list] = STATE(3206), [sym_preproc_region] = STATE(3182), [sym_preproc_endregion] = STATE(3182), [sym_preproc_line] = STATE(3182), @@ -485920,59 +485956,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3182), [sym_preproc_define] = STATE(3182), [sym_preproc_undef] = STATE(3182), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_when] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_into] = ACTIONS(3459), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485985,6 +486020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3183] = { + [sym_block] = STATE(1986), [sym_preproc_region] = STATE(3183), [sym_preproc_endregion] = STATE(3183), [sym_preproc_line] = STATE(3183), @@ -485994,59 +486030,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3183), [sym_preproc_define] = STATE(3183), [sym_preproc_undef] = STATE(3183), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_when] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5327), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486059,7 +486094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3184] = { - [sym_initializer_expression] = STATE(3385), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3184), [sym_preproc_endregion] = STATE(3184), [sym_preproc_line] = STATE(3184), @@ -486069,58 +486105,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3184), [sym_preproc_define] = STATE(3184), [sym_preproc_undef] = STATE(3184), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4872), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RBRACK] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_QMARK] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_CARET] = ACTIONS(4872), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4872), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_GT_GT_GT] = ACTIONS(4872), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_EQ_GT] = ACTIONS(4872), - [anon_sym_switch] = ACTIONS(4872), - [anon_sym_when] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_and] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4872), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_QMARK_QMARK] = ACTIONS(4872), - [anon_sym_into] = ACTIONS(4872), - [anon_sym_on] = ACTIONS(4872), - [anon_sym_equals] = ACTIONS(4872), - [anon_sym_by] = ACTIONS(4872), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [anon_sym_with] = ACTIONS(4872), - [aux_sym_preproc_if_token3] = ACTIONS(4872), - [aux_sym_preproc_else_token1] = ACTIONS(4872), - [aux_sym_preproc_elif_token1] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4910), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_GT_GT_GT] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_EQ_GT] = ACTIONS(4908), + [anon_sym_switch] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_and] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_QMARK_QMARK] = ACTIONS(4908), + [anon_sym_into] = ACTIONS(4908), + [anon_sym_on] = ACTIONS(4908), + [anon_sym_equals] = ACTIONS(4908), + [anon_sym_by] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(4908), + [aux_sym_preproc_if_token3] = ACTIONS(4908), + [aux_sym_preproc_else_token1] = ACTIONS(4908), + [aux_sym_preproc_elif_token1] = ACTIONS(4908), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486133,8 +486168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3185] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3185), [sym_preproc_endregion] = STATE(3185), [sym_preproc_line] = STATE(3185), @@ -486144,57 +486177,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3185), [sym_preproc_define] = STATE(3185), [sym_preproc_undef] = STATE(3185), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4880), - [anon_sym_GT] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4880), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_CARET] = ACTIONS(4876), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LT_LT] = ACTIONS(4876), - [anon_sym_GT_GT] = ACTIONS(4880), - [anon_sym_GT_GT_GT] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_EQ_GT] = ACTIONS(4876), - [anon_sym_switch] = ACTIONS(4876), - [anon_sym_when] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_and] = ACTIONS(4876), - [anon_sym_or] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_QMARK_QMARK] = ACTIONS(4876), - [anon_sym_into] = ACTIONS(4876), - [anon_sym_on] = ACTIONS(4876), - [anon_sym_equals] = ACTIONS(4876), - [anon_sym_by] = ACTIONS(4876), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4876), - [aux_sym_preproc_if_token3] = ACTIONS(4876), - [aux_sym_preproc_else_token1] = ACTIONS(4876), - [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(5329), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5331), + [anon_sym_DASH_EQ] = ACTIONS(5331), + [anon_sym_STAR_EQ] = ACTIONS(5331), + [anon_sym_SLASH_EQ] = ACTIONS(5331), + [anon_sym_PERCENT_EQ] = ACTIONS(5331), + [anon_sym_AMP_EQ] = ACTIONS(5331), + [anon_sym_CARET_EQ] = ACTIONS(5331), + [anon_sym_PIPE_EQ] = ACTIONS(5331), + [anon_sym_LT_LT_EQ] = ACTIONS(5331), + [anon_sym_GT_GT_EQ] = ACTIONS(5331), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5331), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5331), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486216,59 +486251,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3186), [sym_preproc_define] = STATE(3186), [sym_preproc_undef] = STATE(3186), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_when] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_into] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3628), - [anon_sym_is] = ACTIONS(3628), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486281,8 +486316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3187] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym_initializer_expression] = STATE(3328), [sym_preproc_region] = STATE(3187), [sym_preproc_endregion] = STATE(3187), [sym_preproc_line] = STATE(3187), @@ -486292,57 +486326,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3187), [sym_preproc_define] = STATE(3187), [sym_preproc_undef] = STATE(3187), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COLON] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_RBRACK] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_QMARK] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_CARET] = ACTIONS(4900), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4900), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_GT_GT_GT] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_EQ_GT] = ACTIONS(4900), - [anon_sym_switch] = ACTIONS(4900), - [anon_sym_when] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_and] = ACTIONS(4900), - [anon_sym_or] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_QMARK_QMARK] = ACTIONS(4900), - [anon_sym_into] = ACTIONS(4900), - [anon_sym_on] = ACTIONS(4900), - [anon_sym_equals] = ACTIONS(4900), - [anon_sym_by] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(4900), - [aux_sym_preproc_if_token3] = ACTIONS(4900), - [aux_sym_preproc_else_token1] = ACTIONS(4900), - [aux_sym_preproc_elif_token1] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(5333), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_GT_GT_GT] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_EQ_GT] = ACTIONS(4920), + [anon_sym_switch] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_and] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_QMARK_QMARK] = ACTIONS(4920), + [anon_sym_into] = ACTIONS(4920), + [anon_sym_on] = ACTIONS(4920), + [anon_sym_equals] = ACTIONS(4920), + [anon_sym_by] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_with] = ACTIONS(4920), + [aux_sym_preproc_if_token3] = ACTIONS(4920), + [aux_sym_preproc_else_token1] = ACTIONS(4920), + [aux_sym_preproc_elif_token1] = ACTIONS(4920), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486355,7 +486390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3188] = { - [sym_initializer_expression] = STATE(3388), [sym_preproc_region] = STATE(3188), [sym_preproc_endregion] = STATE(3188), [sym_preproc_line] = STATE(3188), @@ -486365,58 +486399,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3188), [sym_preproc_define] = STATE(3188), [sym_preproc_undef] = STATE(3188), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5342), + [anon_sym_DASH_EQ] = ACTIONS(5342), + [anon_sym_STAR_EQ] = ACTIONS(5342), + [anon_sym_SLASH_EQ] = ACTIONS(5342), + [anon_sym_PERCENT_EQ] = ACTIONS(5342), + [anon_sym_AMP_EQ] = ACTIONS(5342), + [anon_sym_CARET_EQ] = ACTIONS(5342), + [anon_sym_PIPE_EQ] = ACTIONS(5342), + [anon_sym_LT_LT_EQ] = ACTIONS(5342), + [anon_sym_GT_GT_EQ] = ACTIONS(5342), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5342), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5342), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486438,58 +486473,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3189), [sym_preproc_define] = STATE(3189), [sym_preproc_undef] = STATE(3189), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_into] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_in] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_switch] = ACTIONS(3699), + [anon_sym_when] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3699), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_into] = ACTIONS(3699), + [anon_sym_on] = ACTIONS(3699), + [anon_sym_equals] = ACTIONS(3699), + [anon_sym_by] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_is] = ACTIONS(3699), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [aux_sym_preproc_if_token3] = ACTIONS(3699), + [aux_sym_preproc_else_token1] = ACTIONS(3699), + [aux_sym_preproc_elif_token1] = ACTIONS(3699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486502,8 +486537,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3190] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2827), [sym_preproc_region] = STATE(3190), [sym_preproc_endregion] = STATE(3190), [sym_preproc_line] = STATE(3190), @@ -486513,56 +486546,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3190), [sym_preproc_define] = STATE(3190), [sym_preproc_undef] = STATE(3190), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(5344), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_in] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4898), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_CARET] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4896), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_GT_GT_GT] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4896), - [anon_sym_switch] = ACTIONS(4896), - [anon_sym_when] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_and] = ACTIONS(4896), - [anon_sym_or] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_QMARK_QMARK] = ACTIONS(4896), - [anon_sym_on] = ACTIONS(4896), - [anon_sym_equals] = ACTIONS(4896), - [anon_sym_by] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4896), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4896), - [aux_sym_preproc_if_token3] = ACTIONS(4896), - [aux_sym_preproc_else_token1] = ACTIONS(4896), - [aux_sym_preproc_elif_token1] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(5347), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486584,57 +486619,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3191), [sym_preproc_define] = STATE(3191), [sym_preproc_undef] = STATE(3191), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4186), - [anon_sym_GT] = ACTIONS(4186), - [anon_sym_QMARK] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(4186), - [anon_sym_PERCENT] = ACTIONS(4186), - [anon_sym_CARET] = ACTIONS(4186), - [anon_sym_PIPE] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4186), - [anon_sym_LT_LT] = ACTIONS(4186), - [anon_sym_GT_GT] = ACTIONS(4186), - [anon_sym_GT_GT_GT] = ACTIONS(4186), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4188), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4186), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_LT_LT] = ACTIONS(4241), + [anon_sym_GT_GT] = ACTIONS(4241), + [anon_sym_GT_GT_GT] = ACTIONS(4241), + [anon_sym_EQ_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4239), + [anon_sym_and] = ACTIONS(4239), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4239), + [anon_sym_CARET_EQ] = ACTIONS(4239), + [anon_sym_PIPE_EQ] = ACTIONS(4239), + [anon_sym_LT_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_QMARK_QMARK] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4239), + [anon_sym_as] = ACTIONS(4239), + [anon_sym_is] = ACTIONS(4239), + [anon_sym_DASH_GT] = ACTIONS(4239), + [anon_sym_with] = ACTIONS(4239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486645,7 +486680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4188), + [sym_interpolation_close_brace] = ACTIONS(4239), }, [3192] = { [sym_preproc_region] = STATE(3192), @@ -486657,58 +486692,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3192), [sym_preproc_define] = STATE(3192), [sym_preproc_undef] = STATE(3192), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4916), - [anon_sym_COLON] = ACTIONS(4916), - [anon_sym_COMMA] = ACTIONS(4916), - [anon_sym_RBRACK] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(4918), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_GT_GT_GT] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_GT_EQ] = ACTIONS(4916), - [anon_sym_LT_EQ] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_EQ_GT] = ACTIONS(4916), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_when] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_and] = ACTIONS(4916), - [anon_sym_or] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_QMARK_QMARK] = ACTIONS(4916), - [anon_sym_on] = ACTIONS(4916), - [anon_sym_equals] = ACTIONS(4916), - [anon_sym_by] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_with] = ACTIONS(4916), - [aux_sym_preproc_if_token3] = ACTIONS(4916), - [aux_sym_preproc_else_token1] = ACTIONS(4916), - [aux_sym_preproc_elif_token1] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486730,70 +486765,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3193), [sym_preproc_define] = STATE(3193), [sym_preproc_undef] = STATE(3193), - [anon_sym_EQ] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LT] = ACTIONS(4214), - [anon_sym_GT] = ACTIONS(4214), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_SLASH] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4214), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_GT_GT_GT] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_GT_EQ] = ACTIONS(4212), - [anon_sym_LT_EQ] = ACTIONS(4212), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4212), - [anon_sym_and] = ACTIONS(4212), - [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4212), - [anon_sym_AMP_AMP] = ACTIONS(4212), - [anon_sym_PIPE_PIPE] = ACTIONS(4212), - [anon_sym_QMARK_QMARK] = ACTIONS(4214), - [anon_sym_into] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4212), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4954), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_GT_GT_GT] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_EQ_GT] = ACTIONS(4952), + [anon_sym_switch] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_QMARK_QMARK] = ACTIONS(4952), + [anon_sym_into] = ACTIONS(4952), + [anon_sym_on] = ACTIONS(4952), + [anon_sym_equals] = ACTIONS(4952), + [anon_sym_by] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_with] = ACTIONS(4952), + [sym_string_literal_encoding] = ACTIONS(5349), + [aux_sym_preproc_if_token3] = ACTIONS(4952), + [aux_sym_preproc_else_token1] = ACTIONS(4952), + [aux_sym_preproc_elif_token1] = ACTIONS(4952), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3194] = { + [sym_type_argument_list] = STATE(3349), [sym_preproc_region] = STATE(3194), [sym_preproc_endregion] = STATE(3194), [sym_preproc_line] = STATE(3194), @@ -486803,68 +486839,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3194), [sym_preproc_define] = STATE(3194), [sym_preproc_undef] = STATE(3194), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_QMARK] = ACTIONS(4351), - [anon_sym_BANG] = ACTIONS(4351), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [anon_sym_DASH_DASH] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4351), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_PERCENT] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4351), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(4351), - [anon_sym_LT_LT] = ACTIONS(4351), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_GT_GT_GT] = ACTIONS(4351), - [anon_sym_EQ_EQ] = ACTIONS(4348), - [anon_sym_BANG_EQ] = ACTIONS(4348), - [anon_sym_GT_EQ] = ACTIONS(4348), - [anon_sym_LT_EQ] = ACTIONS(4348), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_switch] = ACTIONS(4348), - [anon_sym_DOT_DOT] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(4348), - [anon_sym_PIPE_PIPE] = ACTIONS(4348), - [anon_sym_QMARK_QMARK] = ACTIONS(4351), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(4348), - [anon_sym_is] = ACTIONS(4348), - [anon_sym_DASH_GT] = ACTIONS(4348), - [anon_sym_with] = ACTIONS(4348), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(5351), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(5354), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3195] = { [sym_preproc_region] = STATE(3195), @@ -486876,68 +486911,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3195), [sym_preproc_define] = STATE(3195), [sym_preproc_undef] = STATE(3195), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COMMA] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(3717), - [anon_sym_or] = ACTIONS(3717), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3717), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_or] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_into] = ACTIONS(4044), + [anon_sym_on] = ACTIONS(4044), + [anon_sym_equals] = ACTIONS(4044), + [anon_sym_by] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4044), + [aux_sym_preproc_if_token3] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3196] = { [sym_preproc_region] = STATE(3196), @@ -486949,58 +486984,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3196), [sym_preproc_define] = STATE(3196), [sym_preproc_undef] = STATE(3196), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_EQ_GT] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_into] = ACTIONS(4108), + [anon_sym_on] = ACTIONS(4108), + [anon_sym_equals] = ACTIONS(4108), + [anon_sym_by] = ACTIONS(4108), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4108), + [aux_sym_preproc_if_token3] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487022,68 +487057,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3197), [sym_preproc_define] = STATE(3197), [sym_preproc_undef] = STATE(3197), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(5350), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [anon_sym_QMARK] = ACTIONS(4215), + [anon_sym_BANG] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_PIPE] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_LT_LT] = ACTIONS(4215), + [anon_sym_GT_GT] = ACTIONS(4215), + [anon_sym_GT_GT_GT] = ACTIONS(4215), + [anon_sym_EQ_EQ] = ACTIONS(4213), + [anon_sym_BANG_EQ] = ACTIONS(4213), + [anon_sym_GT_EQ] = ACTIONS(4213), + [anon_sym_LT_EQ] = ACTIONS(4213), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_switch] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_PLUS_EQ] = ACTIONS(4213), + [anon_sym_DASH_EQ] = ACTIONS(4213), + [anon_sym_STAR_EQ] = ACTIONS(4213), + [anon_sym_SLASH_EQ] = ACTIONS(4213), + [anon_sym_PERCENT_EQ] = ACTIONS(4213), + [anon_sym_AMP_EQ] = ACTIONS(4213), + [anon_sym_CARET_EQ] = ACTIONS(4213), + [anon_sym_PIPE_EQ] = ACTIONS(4213), + [anon_sym_LT_LT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4213), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4213), + [anon_sym_AMP_AMP] = ACTIONS(4213), + [anon_sym_PIPE_PIPE] = ACTIONS(4213), + [anon_sym_QMARK_QMARK] = ACTIONS(4215), + [anon_sym_into] = ACTIONS(4213), + [anon_sym_as] = ACTIONS(4213), + [anon_sym_is] = ACTIONS(4213), + [anon_sym_DASH_GT] = ACTIONS(4213), + [anon_sym_with] = ACTIONS(4213), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4213), }, [3198] = { [sym_preproc_region] = STATE(3198), @@ -487095,58 +487130,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3198), [sym_preproc_define] = STATE(3198), [sym_preproc_undef] = STATE(3198), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_when] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_into] = ACTIONS(3459), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_RBRACE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_in] = ACTIONS(4935), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_EQ_GT] = ACTIONS(4933), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_when] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_into] = ACTIONS(4933), + [anon_sym_on] = ACTIONS(4933), + [anon_sym_equals] = ACTIONS(4933), + [anon_sym_by] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), + [aux_sym_preproc_if_token3] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4933), + [aux_sym_preproc_elif_token1] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487168,57 +487203,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3199), [sym_preproc_define] = STATE(3199), [sym_preproc_undef] = STATE(3199), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_COLON] = ACTIONS(4192), - [anon_sym_COMMA] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_QMARK] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LT_LT] = ACTIONS(4194), - [anon_sym_GT_GT] = ACTIONS(4194), - [anon_sym_GT_GT_GT] = ACTIONS(4194), - [anon_sym_EQ_EQ] = ACTIONS(4192), - [anon_sym_BANG_EQ] = ACTIONS(4192), - [anon_sym_GT_EQ] = ACTIONS(4192), - [anon_sym_LT_EQ] = ACTIONS(4192), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_DOT_DOT] = ACTIONS(4192), - [anon_sym_and] = ACTIONS(4192), - [anon_sym_or] = ACTIONS(4192), - [anon_sym_PLUS_EQ] = ACTIONS(4192), - [anon_sym_DASH_EQ] = ACTIONS(4192), - [anon_sym_STAR_EQ] = ACTIONS(4192), - [anon_sym_SLASH_EQ] = ACTIONS(4192), - [anon_sym_PERCENT_EQ] = ACTIONS(4192), - [anon_sym_AMP_EQ] = ACTIONS(4192), - [anon_sym_CARET_EQ] = ACTIONS(4192), - [anon_sym_PIPE_EQ] = ACTIONS(4192), - [anon_sym_LT_LT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_PIPE_PIPE] = ACTIONS(4192), - [anon_sym_QMARK_QMARK] = ACTIONS(4194), - [anon_sym_into] = ACTIONS(4192), - [anon_sym_as] = ACTIONS(4192), - [anon_sym_is] = ACTIONS(4192), - [anon_sym_DASH_GT] = ACTIONS(4192), - [anon_sym_with] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_in] = ACTIONS(4939), + [anon_sym_where] = ACTIONS(4939), + [anon_sym_QMARK] = ACTIONS(4941), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(4939), + [anon_sym_GT_GT] = ACTIONS(4941), + [anon_sym_GT_GT_GT] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_EQ_GT] = ACTIONS(4939), + [anon_sym_switch] = ACTIONS(4939), + [anon_sym_when] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_and] = ACTIONS(4939), + [anon_sym_or] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_QMARK_QMARK] = ACTIONS(4939), + [anon_sym_on] = ACTIONS(4939), + [anon_sym_equals] = ACTIONS(4939), + [anon_sym_by] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_DASH_GT] = ACTIONS(4939), + [anon_sym_with] = ACTIONS(4939), + [aux_sym_preproc_if_token3] = ACTIONS(4939), + [aux_sym_preproc_else_token1] = ACTIONS(4939), + [aux_sym_preproc_elif_token1] = ACTIONS(4939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487229,7 +487265,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4192), }, [3200] = { [sym_preproc_region] = STATE(3200), @@ -487241,130 +487276,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3200), [sym_preproc_define] = STATE(3200), [sym_preproc_undef] = STATE(3200), - [anon_sym_SEMI] = ACTIONS(4912), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_COLON] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4912), - [anon_sym_RBRACK] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4912), - [anon_sym_RPAREN] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4912), - [anon_sym_RBRACE] = ACTIONS(4912), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4912), - [anon_sym_DASH_DASH] = ACTIONS(4912), - [anon_sym_PLUS] = ACTIONS(4914), - [anon_sym_DASH] = ACTIONS(4914), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4914), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_CARET] = ACTIONS(4912), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4912), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_GT_GT_GT] = ACTIONS(4912), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_GT_EQ] = ACTIONS(4912), - [anon_sym_LT_EQ] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4914), - [anon_sym_EQ_GT] = ACTIONS(4912), - [anon_sym_switch] = ACTIONS(4912), - [anon_sym_when] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4912), - [anon_sym_and] = ACTIONS(4912), - [anon_sym_or] = ACTIONS(4912), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_PIPE_PIPE] = ACTIONS(4912), - [anon_sym_QMARK_QMARK] = ACTIONS(4912), - [anon_sym_into] = ACTIONS(4912), - [anon_sym_on] = ACTIONS(4912), - [anon_sym_equals] = ACTIONS(4912), - [anon_sym_by] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4912), - [anon_sym_with] = ACTIONS(4912), - [aux_sym_preproc_if_token3] = ACTIONS(4912), - [aux_sym_preproc_else_token1] = ACTIONS(4912), - [aux_sym_preproc_elif_token1] = ACTIONS(4912), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3201] = { - [sym_preproc_region] = STATE(3201), - [sym_preproc_endregion] = STATE(3201), - [sym_preproc_line] = STATE(3201), - [sym_preproc_pragma] = STATE(3201), - [sym_preproc_nullable] = STATE(3201), - [sym_preproc_error] = STATE(3201), - [sym_preproc_warning] = STATE(3201), - [sym_preproc_define] = STATE(3201), - [sym_preproc_undef] = STATE(3201), - [anon_sym_EQ] = ACTIONS(5353), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5355), - [anon_sym_DASH_EQ] = ACTIONS(5355), - [anon_sym_STAR_EQ] = ACTIONS(5355), - [anon_sym_SLASH_EQ] = ACTIONS(5355), - [anon_sym_PERCENT_EQ] = ACTIONS(5355), - [anon_sym_AMP_EQ] = ACTIONS(5355), - [anon_sym_CARET_EQ] = ACTIONS(5355), - [anon_sym_PIPE_EQ] = ACTIONS(5355), - [anon_sym_LT_LT_EQ] = ACTIONS(5355), - [anon_sym_GT_GT_EQ] = ACTIONS(5355), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5355), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5355), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5358), + [anon_sym_DASH_EQ] = ACTIONS(5358), + [anon_sym_STAR_EQ] = ACTIONS(5358), + [anon_sym_SLASH_EQ] = ACTIONS(5358), + [anon_sym_PERCENT_EQ] = ACTIONS(5358), + [anon_sym_AMP_EQ] = ACTIONS(5358), + [anon_sym_CARET_EQ] = ACTIONS(5358), + [anon_sym_PIPE_EQ] = ACTIONS(5358), + [anon_sym_LT_LT_EQ] = ACTIONS(5358), + [anon_sym_GT_GT_EQ] = ACTIONS(5358), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5358), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5358), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487375,7 +487338,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4906), + }, + [3201] = { + [sym_preproc_region] = STATE(3201), + [sym_preproc_endregion] = STATE(3201), + [sym_preproc_line] = STATE(3201), + [sym_preproc_pragma] = STATE(3201), + [sym_preproc_nullable] = STATE(3201), + [sym_preproc_error] = STATE(3201), + [sym_preproc_warning] = STATE(3201), + [sym_preproc_define] = STATE(3201), + [sym_preproc_undef] = STATE(3201), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_LT] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_PLUS_PLUS] = ACTIONS(3709), + [anon_sym_DASH_DASH] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3701), + [anon_sym_SLASH] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_CARET] = ACTIONS(3701), + [anon_sym_PIPE] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LT_LT] = ACTIONS(3701), + [anon_sym_GT_GT] = ACTIONS(3701), + [anon_sym_GT_GT_GT] = ACTIONS(3701), + [anon_sym_EQ_EQ] = ACTIONS(3709), + [anon_sym_BANG_EQ] = ACTIONS(3709), + [anon_sym_GT_EQ] = ACTIONS(3709), + [anon_sym_LT_EQ] = ACTIONS(3709), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_switch] = ACTIONS(3709), + [anon_sym_DOT_DOT] = ACTIONS(3709), + [anon_sym_and] = ACTIONS(3709), + [anon_sym_or] = ACTIONS(3709), + [anon_sym_PLUS_EQ] = ACTIONS(3709), + [anon_sym_DASH_EQ] = ACTIONS(3709), + [anon_sym_STAR_EQ] = ACTIONS(3709), + [anon_sym_SLASH_EQ] = ACTIONS(3709), + [anon_sym_PERCENT_EQ] = ACTIONS(3709), + [anon_sym_AMP_EQ] = ACTIONS(3709), + [anon_sym_CARET_EQ] = ACTIONS(3709), + [anon_sym_PIPE_EQ] = ACTIONS(3709), + [anon_sym_LT_LT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3709), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3709), + [anon_sym_AMP_AMP] = ACTIONS(3709), + [anon_sym_PIPE_PIPE] = ACTIONS(3709), + [anon_sym_QMARK_QMARK] = ACTIONS(3701), + [anon_sym_into] = ACTIONS(3709), + [anon_sym_as] = ACTIONS(3709), + [anon_sym_is] = ACTIONS(3709), + [anon_sym_DASH_GT] = ACTIONS(3709), + [anon_sym_with] = ACTIONS(3709), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3709), }, [3202] = { [sym_preproc_region] = STATE(3202), @@ -487387,58 +487422,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3202), [sym_preproc_define] = STATE(3202), [sym_preproc_undef] = STATE(3202), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4958), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_GT_GT_GT] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4958), + [anon_sym_switch] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_or] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_QMARK_QMARK] = ACTIONS(4958), + [anon_sym_into] = ACTIONS(4958), + [anon_sym_on] = ACTIONS(4958), + [anon_sym_equals] = ACTIONS(4958), + [anon_sym_by] = ACTIONS(4958), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4958), + [anon_sym_with] = ACTIONS(4958), + [aux_sym_preproc_if_token3] = ACTIONS(4958), + [aux_sym_preproc_else_token1] = ACTIONS(4958), + [aux_sym_preproc_elif_token1] = ACTIONS(4958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487451,6 +487486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3203] = { + [sym_attribute_list] = STATE(3637), + [sym__attribute_list] = STATE(3645), + [sym_preproc_if_in_attribute_list] = STATE(3637), [sym_preproc_region] = STATE(3203), [sym_preproc_endregion] = STATE(3203), [sym_preproc_line] = STATE(3203), @@ -487460,57 +487498,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3203), [sym_preproc_define] = STATE(3203), [sym_preproc_undef] = STATE(3203), - [anon_sym_EQ] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3666), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3666), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3666), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3668), - [anon_sym_PLUS_EQ] = ACTIONS(3668), - [anon_sym_DASH_EQ] = ACTIONS(3668), - [anon_sym_STAR_EQ] = ACTIONS(3668), - [anon_sym_SLASH_EQ] = ACTIONS(3668), - [anon_sym_PERCENT_EQ] = ACTIONS(3668), - [anon_sym_AMP_EQ] = ACTIONS(3668), - [anon_sym_CARET_EQ] = ACTIONS(3668), - [anon_sym_PIPE_EQ] = ACTIONS(3668), - [anon_sym_LT_LT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3666), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3203), + [sym__identifier_token] = ACTIONS(4771), + [anon_sym_extern] = ACTIONS(4771), + [anon_sym_alias] = ACTIONS(4771), + [anon_sym_global] = ACTIONS(4771), + [anon_sym_unsafe] = ACTIONS(4771), + [anon_sym_static] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(5360), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_ref] = ACTIONS(4771), + [anon_sym_delegate] = ACTIONS(4771), + [anon_sym_abstract] = ACTIONS(4771), + [anon_sym_async] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_file] = ACTIONS(4771), + [anon_sym_fixed] = ACTIONS(4771), + [anon_sym_internal] = ACTIONS(4771), + [anon_sym_new] = ACTIONS(4771), + [anon_sym_override] = ACTIONS(4771), + [anon_sym_partial] = ACTIONS(4771), + [anon_sym_private] = ACTIONS(4771), + [anon_sym_protected] = ACTIONS(4771), + [anon_sym_public] = ACTIONS(4771), + [anon_sym_readonly] = ACTIONS(4771), + [anon_sym_required] = ACTIONS(4771), + [anon_sym_sealed] = ACTIONS(4771), + [anon_sym_virtual] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_where] = ACTIONS(4771), + [anon_sym_notnull] = ACTIONS(4771), + [anon_sym_unmanaged] = ACTIONS(4771), + [anon_sym_scoped] = ACTIONS(4771), + [anon_sym_var] = ACTIONS(4771), + [sym_predefined_type] = ACTIONS(4771), + [anon_sym_yield] = ACTIONS(4771), + [anon_sym_when] = ACTIONS(4771), + [anon_sym_from] = ACTIONS(4771), + [anon_sym_into] = ACTIONS(4771), + [anon_sym_join] = ACTIONS(4771), + [anon_sym_on] = ACTIONS(4771), + [anon_sym_equals] = ACTIONS(4771), + [anon_sym_let] = ACTIONS(4771), + [anon_sym_orderby] = ACTIONS(4771), + [anon_sym_ascending] = ACTIONS(4771), + [anon_sym_descending] = ACTIONS(4771), + [anon_sym_group] = ACTIONS(4771), + [anon_sym_by] = ACTIONS(4771), + [anon_sym_select] = ACTIONS(4771), + [aux_sym_preproc_if_token1] = ACTIONS(5363), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487521,7 +487557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3668), }, [3204] = { [sym_preproc_region] = STATE(3204), @@ -487533,58 +487568,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3204), [sym_preproc_define] = STATE(3204), [sym_preproc_undef] = STATE(3204), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3459), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3459), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3459), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_when] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3459), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [aux_sym_preproc_if_token3] = ACTIONS(3459), - [aux_sym_preproc_else_token1] = ACTIONS(3459), - [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_when] = ACTIONS(3722), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_into] = ACTIONS(3722), + [anon_sym_on] = ACTIONS(3722), + [anon_sym_equals] = ACTIONS(3722), + [anon_sym_by] = ACTIONS(3722), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_is] = ACTIONS(3722), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3722), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487606,58 +487641,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3205), [sym_preproc_define] = STATE(3205), [sym_preproc_undef] = STATE(3205), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_when] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487670,7 +487705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3206] = { - [sym_initializer_expression] = STATE(3466), [sym_preproc_region] = STATE(3206), [sym_preproc_endregion] = STATE(3206), [sym_preproc_line] = STATE(3206), @@ -487680,57 +487714,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3206), [sym_preproc_define] = STATE(3206), [sym_preproc_undef] = STATE(3206), - [anon_sym_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487743,6 +487778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3207] = { + [sym_type_argument_list] = STATE(3349), [sym_preproc_region] = STATE(3207), [sym_preproc_endregion] = STATE(3207), [sym_preproc_line] = STATE(3207), @@ -487752,57 +487788,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3207), [sym_preproc_define] = STATE(3207), [sym_preproc_undef] = STATE(3207), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COMMA] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_CARET] = ACTIONS(4206), - [anon_sym_PIPE] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4206), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_GT_GT_GT] = ACTIONS(4206), - [anon_sym_EQ_EQ] = ACTIONS(4204), - [anon_sym_BANG_EQ] = ACTIONS(4204), - [anon_sym_GT_EQ] = ACTIONS(4204), - [anon_sym_LT_EQ] = ACTIONS(4204), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_DOT_DOT] = ACTIONS(4204), - [anon_sym_and] = ACTIONS(4204), - [anon_sym_or] = ACTIONS(4204), - [anon_sym_PLUS_EQ] = ACTIONS(4204), - [anon_sym_DASH_EQ] = ACTIONS(4204), - [anon_sym_STAR_EQ] = ACTIONS(4204), - [anon_sym_SLASH_EQ] = ACTIONS(4204), - [anon_sym_PERCENT_EQ] = ACTIONS(4204), - [anon_sym_AMP_EQ] = ACTIONS(4204), - [anon_sym_CARET_EQ] = ACTIONS(4204), - [anon_sym_PIPE_EQ] = ACTIONS(4204), - [anon_sym_LT_LT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4204), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4204), - [anon_sym_AMP_AMP] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_QMARK_QMARK] = ACTIONS(4206), - [anon_sym_into] = ACTIONS(4204), - [anon_sym_as] = ACTIONS(4204), - [anon_sym_is] = ACTIONS(4204), - [anon_sym_DASH_GT] = ACTIONS(4204), - [anon_sym_with] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(5351), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487813,7 +487849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4204), }, [3208] = { [sym_preproc_region] = STATE(3208), @@ -487825,58 +487860,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3208), [sym_preproc_define] = STATE(3208), [sym_preproc_undef] = STATE(3208), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_when] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_equals] = ACTIONS(3664), - [anon_sym_by] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [aux_sym_preproc_if_token3] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3680), + [anon_sym_DASH_EQ] = ACTIONS(3680), + [anon_sym_STAR_EQ] = ACTIONS(3680), + [anon_sym_SLASH_EQ] = ACTIONS(3680), + [anon_sym_PERCENT_EQ] = ACTIONS(3680), + [anon_sym_AMP_EQ] = ACTIONS(3680), + [anon_sym_CARET_EQ] = ACTIONS(3680), + [anon_sym_PIPE_EQ] = ACTIONS(3680), + [anon_sym_LT_LT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3680), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487887,6 +487921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3680), }, [3209] = { [sym_preproc_region] = STATE(3209), @@ -487898,58 +487933,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3209), [sym_preproc_define] = STATE(3209), [sym_preproc_undef] = STATE(3209), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(5350), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(5357), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4967), + [sym_string_literal_encoding] = ACTIONS(5366), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487971,58 +488006,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3210), [sym_preproc_define] = STATE(3210), [sym_preproc_undef] = STATE(3210), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_into] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_when] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3686), + [anon_sym_into] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488044,58 +488079,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3211), [sym_preproc_define] = STATE(3211), [sym_preproc_undef] = STATE(3211), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(5357), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_into] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [sym__identifier_token] = ACTIONS(3491), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3491), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3491), + [anon_sym_unmanaged] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3491), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3491), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_when] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_into] = ACTIONS(3491), + [anon_sym_join] = ACTIONS(3491), + [anon_sym_on] = ACTIONS(3491), + [anon_sym_equals] = ACTIONS(3491), + [anon_sym_let] = ACTIONS(3491), + [anon_sym_orderby] = ACTIONS(3491), + [anon_sym_ascending] = ACTIONS(3491), + [anon_sym_descending] = ACTIONS(3491), + [anon_sym_group] = ACTIONS(3491), + [anon_sym_by] = ACTIONS(3491), + [anon_sym_select] = ACTIONS(3491), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488117,58 +488152,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3212), [sym_preproc_define] = STATE(3212), [sym_preproc_undef] = STATE(3212), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4949), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_GT_GT_GT] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_EQ_GT] = ACTIONS(4949), - [anon_sym_switch] = ACTIONS(4949), - [anon_sym_when] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_and] = ACTIONS(4949), - [anon_sym_or] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_QMARK_QMARK] = ACTIONS(4949), - [anon_sym_into] = ACTIONS(4949), - [anon_sym_on] = ACTIONS(4949), - [anon_sym_equals] = ACTIONS(4949), - [anon_sym_by] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_DASH_GT] = ACTIONS(4949), - [anon_sym_with] = ACTIONS(4949), - [aux_sym_raw_string_literal_token1] = ACTIONS(5359), - [aux_sym_preproc_if_token3] = ACTIONS(4949), - [aux_sym_preproc_else_token1] = ACTIONS(4949), - [aux_sym_preproc_elif_token1] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488190,58 +488225,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3213), [sym_preproc_define] = STATE(3213), [sym_preproc_undef] = STATE(3213), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_RBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_CARET] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4922), - [anon_sym_GT_GT_GT] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_EQ_GT] = ACTIONS(4920), - [anon_sym_switch] = ACTIONS(4920), - [anon_sym_when] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_and] = ACTIONS(4920), - [anon_sym_or] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_QMARK_QMARK] = ACTIONS(4920), - [anon_sym_into] = ACTIONS(4920), - [anon_sym_on] = ACTIONS(4920), - [anon_sym_equals] = ACTIONS(4920), - [anon_sym_by] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4920), - [anon_sym_with] = ACTIONS(4920), - [sym_string_literal_encoding] = ACTIONS(5361), - [aux_sym_preproc_if_token3] = ACTIONS(4920), - [aux_sym_preproc_else_token1] = ACTIONS(4920), - [aux_sym_preproc_elif_token1] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3670), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3672), + [anon_sym_CARET] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3672), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_when] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3672), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488263,58 +488298,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3214), [sym_preproc_define] = STATE(3214), [sym_preproc_undef] = STATE(3214), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_into] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_EQ] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3684), + [anon_sym_CARET] = ACTIONS(3684), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3684), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3684), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_PLUS_EQ] = ACTIONS(3686), + [anon_sym_DASH_EQ] = ACTIONS(3686), + [anon_sym_STAR_EQ] = ACTIONS(3686), + [anon_sym_SLASH_EQ] = ACTIONS(3686), + [anon_sym_PERCENT_EQ] = ACTIONS(3686), + [anon_sym_AMP_EQ] = ACTIONS(3686), + [anon_sym_CARET_EQ] = ACTIONS(3686), + [anon_sym_PIPE_EQ] = ACTIONS(3686), + [anon_sym_LT_LT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3684), + [anon_sym_into] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488325,9 +488359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3686), }, [3215] = { - [sym_type_argument_list] = STATE(3330), [sym_preproc_region] = STATE(3215), [sym_preproc_endregion] = STATE(3215), [sym_preproc_line] = STATE(3215), @@ -488337,57 +488371,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3215), [sym_preproc_define] = STATE(3215), [sym_preproc_undef] = STATE(3215), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(5363), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3674), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_into] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488400,6 +488435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3216] = { + [sym_initializer_expression] = STATE(3421), [sym_preproc_region] = STATE(3216), [sym_preproc_endregion] = STATE(3216), [sym_preproc_line] = STATE(3216), @@ -488409,58 +488445,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3216), [sym_preproc_define] = STATE(3216), [sym_preproc_undef] = STATE(3216), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4025), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_EQ_GT] = ACTIONS(4027), - [anon_sym_switch] = ACTIONS(4027), - [anon_sym_when] = ACTIONS(4027), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4027), - [anon_sym_or] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_into] = ACTIONS(4027), - [anon_sym_on] = ACTIONS(4027), - [anon_sym_equals] = ACTIONS(4027), - [anon_sym_by] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4027), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4027), - [aux_sym_preproc_if_token3] = ACTIONS(4027), - [aux_sym_preproc_else_token1] = ACTIONS(4027), - [aux_sym_preproc_elif_token1] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_in] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4871), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_CARET] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_GT_GT_GT] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_EQ_GT] = ACTIONS(4871), + [anon_sym_switch] = ACTIONS(4871), + [anon_sym_when] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_and] = ACTIONS(4871), + [anon_sym_or] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_QMARK_QMARK] = ACTIONS(4871), + [anon_sym_on] = ACTIONS(4871), + [anon_sym_equals] = ACTIONS(4871), + [anon_sym_by] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4871), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_DASH_GT] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), + [aux_sym_preproc_if_token3] = ACTIONS(4871), + [aux_sym_preproc_else_token1] = ACTIONS(4871), + [aux_sym_preproc_elif_token1] = ACTIONS(4871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488482,58 +488517,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3217), [sym_preproc_define] = STATE(3217), [sym_preproc_undef] = STATE(3217), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4031), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_into] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_RPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4119), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(4121), + [anon_sym_switch] = ACTIONS(4121), + [anon_sym_when] = ACTIONS(4121), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4121), + [anon_sym_or] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_into] = ACTIONS(4121), + [anon_sym_on] = ACTIONS(4121), + [anon_sym_equals] = ACTIONS(4121), + [anon_sym_by] = ACTIONS(4121), + [anon_sym_as] = ACTIONS(4121), + [anon_sym_is] = ACTIONS(4121), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4121), + [aux_sym_preproc_if_token3] = ACTIONS(4121), + [aux_sym_preproc_else_token1] = ACTIONS(4121), + [aux_sym_preproc_elif_token1] = ACTIONS(4121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488555,58 +488590,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3218), [sym_preproc_define] = STATE(3218), [sym_preproc_undef] = STATE(3218), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4142), - [anon_sym_GT] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4142), - [anon_sym_QMARK] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4142), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_SLASH] = ACTIONS(4142), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_PIPE] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4142), - [anon_sym_LT_LT] = ACTIONS(4144), - [anon_sym_GT_GT] = ACTIONS(4142), - [anon_sym_GT_GT_GT] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_EQ_GT] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_when] = ACTIONS(4144), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_or] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4144), - [anon_sym_into] = ACTIONS(4144), - [anon_sym_on] = ACTIONS(4144), - [anon_sym_equals] = ACTIONS(4144), - [anon_sym_by] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [anon_sym_with] = ACTIONS(4144), - [aux_sym_preproc_if_token3] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_GT_GT_GT] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_EQ_GT] = ACTIONS(4952), + [anon_sym_switch] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_QMARK_QMARK] = ACTIONS(4952), + [anon_sym_on] = ACTIONS(4952), + [anon_sym_equals] = ACTIONS(4952), + [anon_sym_by] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_with] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [sym_string_literal_encoding] = ACTIONS(5368), + [aux_sym_preproc_if_token3] = ACTIONS(4952), + [aux_sym_preproc_else_token1] = ACTIONS(4952), + [aux_sym_preproc_elif_token1] = ACTIONS(4952), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488628,68 +488663,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3219), [sym_preproc_define] = STATE(3219), [sym_preproc_undef] = STATE(3219), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_switch] = ACTIONS(4045), - [anon_sym_when] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4045), - [anon_sym_or] = ACTIONS(4045), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_into] = ACTIONS(4045), - [anon_sym_on] = ACTIONS(4045), - [anon_sym_equals] = ACTIONS(4045), - [anon_sym_by] = ACTIONS(4045), - [anon_sym_as] = ACTIONS(4045), - [anon_sym_is] = ACTIONS(4045), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4045), - [aux_sym_preproc_if_token3] = ACTIONS(4045), - [aux_sym_preproc_else_token1] = ACTIONS(4045), - [aux_sym_preproc_elif_token1] = ACTIONS(4045), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_LT_LT] = ACTIONS(4227), + [anon_sym_GT_GT] = ACTIONS(4227), + [anon_sym_GT_GT_GT] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4225), + [anon_sym_BANG_EQ] = ACTIONS(4225), + [anon_sym_GT_EQ] = ACTIONS(4225), + [anon_sym_LT_EQ] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4225), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4225), + [anon_sym_PLUS_EQ] = ACTIONS(4225), + [anon_sym_DASH_EQ] = ACTIONS(4225), + [anon_sym_STAR_EQ] = ACTIONS(4225), + [anon_sym_SLASH_EQ] = ACTIONS(4225), + [anon_sym_PERCENT_EQ] = ACTIONS(4225), + [anon_sym_AMP_EQ] = ACTIONS(4225), + [anon_sym_CARET_EQ] = ACTIONS(4225), + [anon_sym_PIPE_EQ] = ACTIONS(4225), + [anon_sym_LT_LT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_PIPE_PIPE] = ACTIONS(4225), + [anon_sym_QMARK_QMARK] = ACTIONS(4227), + [anon_sym_into] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4225), + [anon_sym_is] = ACTIONS(4225), + [anon_sym_DASH_GT] = ACTIONS(4225), + [anon_sym_with] = ACTIONS(4225), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4225), }, [3220] = { [sym_preproc_region] = STATE(3220), @@ -488701,58 +488736,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3220), [sym_preproc_define] = STATE(3220), [sym_preproc_undef] = STATE(3220), - [anon_sym_SEMI] = ACTIONS(4023), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_EQ_GT] = ACTIONS(4023), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4023), - [aux_sym_preproc_if_token3] = ACTIONS(4023), - [aux_sym_preproc_else_token1] = ACTIONS(4023), - [aux_sym_preproc_elif_token1] = ACTIONS(4023), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(5347), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_into] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488765,7 +488800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3221] = { - [sym_type_argument_list] = STATE(3330), [sym_preproc_region] = STATE(3221), [sym_preproc_endregion] = STATE(3221), [sym_preproc_line] = STATE(3221), @@ -488775,57 +488809,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3221), [sym_preproc_define] = STATE(3221), [sym_preproc_undef] = STATE(3221), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(5363), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(5366), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_RBRACE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_in] = ACTIONS(4933), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_EQ_GT] = ACTIONS(4933), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_when] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_on] = ACTIONS(4933), + [anon_sym_equals] = ACTIONS(4933), + [anon_sym_by] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), + [aux_sym_preproc_if_token3] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4933), + [aux_sym_preproc_elif_token1] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488838,7 +488873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3222] = { - [sym_initializer_expression] = STATE(3450), + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2724), [sym_preproc_region] = STATE(3222), [sym_preproc_endregion] = STATE(3222), [sym_preproc_line] = STATE(3222), @@ -488848,57 +488884,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3222), [sym_preproc_define] = STATE(3222), [sym_preproc_undef] = STATE(3222), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4887), + [anon_sym_GT_GT_GT] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_GT_EQ] = ACTIONS(4885), + [anon_sym_LT_EQ] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4885), + [anon_sym_switch] = ACTIONS(4885), + [anon_sym_when] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4885), + [anon_sym_and] = ACTIONS(4885), + [anon_sym_or] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_QMARK_QMARK] = ACTIONS(4885), + [anon_sym_on] = ACTIONS(4885), + [anon_sym_equals] = ACTIONS(4885), + [anon_sym_by] = ACTIONS(4885), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4885), + [aux_sym_preproc_if_token3] = ACTIONS(4885), + [aux_sym_preproc_else_token1] = ACTIONS(4885), + [aux_sym_preproc_elif_token1] = ACTIONS(4885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488920,131 +488955,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3223), [sym_preproc_define] = STATE(3223), [sym_preproc_undef] = STATE(3223), - [anon_sym_EQ] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4239), - [anon_sym_QMARK] = ACTIONS(4239), - [anon_sym_BANG] = ACTIONS(4239), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4239), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_STAR] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_PERCENT] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_PIPE] = ACTIONS(4239), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_LT_LT] = ACTIONS(4239), - [anon_sym_GT_GT] = ACTIONS(4239), - [anon_sym_GT_GT_GT] = ACTIONS(4239), - [anon_sym_EQ_EQ] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4237), - [anon_sym_GT_EQ] = ACTIONS(4237), - [anon_sym_LT_EQ] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_switch] = ACTIONS(4237), - [anon_sym_DOT_DOT] = ACTIONS(4237), - [anon_sym_and] = ACTIONS(4237), - [anon_sym_or] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4237), - [anon_sym_DASH_EQ] = ACTIONS(4237), - [anon_sym_STAR_EQ] = ACTIONS(4237), - [anon_sym_SLASH_EQ] = ACTIONS(4237), - [anon_sym_PERCENT_EQ] = ACTIONS(4237), - [anon_sym_AMP_EQ] = ACTIONS(4237), - [anon_sym_CARET_EQ] = ACTIONS(4237), - [anon_sym_PIPE_EQ] = ACTIONS(4237), - [anon_sym_LT_LT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4237), - [anon_sym_AMP_AMP] = ACTIONS(4237), - [anon_sym_PIPE_PIPE] = ACTIONS(4237), - [anon_sym_QMARK_QMARK] = ACTIONS(4239), - [anon_sym_into] = ACTIONS(4237), - [anon_sym_as] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4237), - [anon_sym_with] = ACTIONS(4237), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4237), - }, - [3224] = { - [sym_preproc_region] = STATE(3224), - [sym_preproc_endregion] = STATE(3224), - [sym_preproc_line] = STATE(3224), - [sym_preproc_pragma] = STATE(3224), - [sym_preproc_nullable] = STATE(3224), - [sym_preproc_error] = STATE(3224), - [sym_preproc_warning] = STATE(3224), - [sym_preproc_define] = STATE(3224), - [sym_preproc_undef] = STATE(3224), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_when] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3686), - [anon_sym_into] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_into] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489056,67 +489018,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3225] = { - [sym_preproc_region] = STATE(3225), - [sym_preproc_endregion] = STATE(3225), - [sym_preproc_line] = STATE(3225), - [sym_preproc_pragma] = STATE(3225), - [sym_preproc_nullable] = STATE(3225), - [sym_preproc_error] = STATE(3225), - [sym_preproc_warning] = STATE(3225), - [sym_preproc_define] = STATE(3225), - [sym_preproc_undef] = STATE(3225), - [anon_sym_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3672), - [anon_sym_PLUS_EQ] = ACTIONS(3672), - [anon_sym_DASH_EQ] = ACTIONS(3672), - [anon_sym_STAR_EQ] = ACTIONS(3672), - [anon_sym_SLASH_EQ] = ACTIONS(3672), - [anon_sym_PERCENT_EQ] = ACTIONS(3672), - [anon_sym_AMP_EQ] = ACTIONS(3672), - [anon_sym_CARET_EQ] = ACTIONS(3672), - [anon_sym_PIPE_EQ] = ACTIONS(3672), - [anon_sym_LT_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), + [3224] = { + [sym_preproc_region] = STATE(3224), + [sym_preproc_endregion] = STATE(3224), + [sym_preproc_line] = STATE(3224), + [sym_preproc_pragma] = STATE(3224), + [sym_preproc_nullable] = STATE(3224), + [sym_preproc_error] = STATE(3224), + [sym_preproc_warning] = STATE(3224), + [sym_preproc_define] = STATE(3224), + [sym_preproc_undef] = STATE(3224), + [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_SLASH] = ACTIONS(4174), + [anon_sym_PERCENT] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_PIPE] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_LT] = ACTIONS(4174), + [anon_sym_GT_GT] = ACTIONS(4174), + [anon_sym_GT_GT_GT] = ACTIONS(4174), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_or] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_AMP_EQ] = ACTIONS(4172), + [anon_sym_CARET_EQ] = ACTIONS(4172), + [anon_sym_PIPE_EQ] = ACTIONS(4172), + [anon_sym_LT_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4172), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_QMARK_QMARK] = ACTIONS(4174), + [anon_sym_into] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [anon_sym_with] = ACTIONS(4172), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4172), + }, + [3225] = { + [sym_preproc_region] = STATE(3225), + [sym_preproc_endregion] = STATE(3225), + [sym_preproc_line] = STATE(3225), + [sym_preproc_pragma] = STATE(3225), + [sym_preproc_nullable] = STATE(3225), + [sym_preproc_error] = STATE(3225), + [sym_preproc_warning] = STATE(3225), + [sym_preproc_define] = STATE(3225), + [sym_preproc_undef] = STATE(3225), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_RPAREN] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_EQ_GT] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4148), + [anon_sym_or] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4148), + [anon_sym_into] = ACTIONS(4148), + [anon_sym_on] = ACTIONS(4148), + [anon_sym_equals] = ACTIONS(4148), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4148), + [aux_sym_preproc_if_token3] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489127,7 +489163,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3672), }, [3226] = { [sym_preproc_region] = STATE(3226), @@ -489139,58 +489174,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3226), [sym_preproc_define] = STATE(3226), [sym_preproc_undef] = STATE(3226), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [anon_sym_DQUOTE] = ACTIONS(4931), - [sym_string_literal_encoding] = ACTIONS(5368), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(3731), + [anon_sym_or] = ACTIONS(3731), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3731), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489201,8 +489235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3731), }, [3227] = { + [sym_initializer_expression] = STATE(3424), [sym_preproc_region] = STATE(3227), [sym_preproc_endregion] = STATE(3227), [sym_preproc_line] = STATE(3227), @@ -489212,57 +489248,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3227), [sym_preproc_define] = STATE(3227), [sym_preproc_undef] = STATE(3227), - [anon_sym_EQ] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3680), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3680), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_AMP_EQ] = ACTIONS(3682), - [anon_sym_CARET_EQ] = ACTIONS(3682), - [anon_sym_PIPE_EQ] = ACTIONS(3682), - [anon_sym_LT_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3682), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3680), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4889), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_GT_GT_GT] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_GT_EQ] = ACTIONS(4889), + [anon_sym_LT_EQ] = ACTIONS(4889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_EQ_GT] = ACTIONS(4889), + [anon_sym_switch] = ACTIONS(4889), + [anon_sym_when] = ACTIONS(4889), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_and] = ACTIONS(4889), + [anon_sym_or] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_QMARK_QMARK] = ACTIONS(4889), + [anon_sym_on] = ACTIONS(4889), + [anon_sym_equals] = ACTIONS(4889), + [anon_sym_by] = ACTIONS(4889), + [anon_sym_as] = ACTIONS(4889), + [anon_sym_is] = ACTIONS(4889), + [anon_sym_DASH_GT] = ACTIONS(4889), + [anon_sym_with] = ACTIONS(4889), + [aux_sym_preproc_if_token3] = ACTIONS(4889), + [aux_sym_preproc_else_token1] = ACTIONS(4889), + [aux_sym_preproc_elif_token1] = ACTIONS(4889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489273,7 +489309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3682), }, [3228] = { [sym_preproc_region] = STATE(3228), @@ -489285,58 +489320,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3228), [sym_preproc_define] = STATE(3228), [sym_preproc_undef] = STATE(3228), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_switch] = ACTIONS(3945), - [anon_sym_when] = ACTIONS(3945), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3945), - [anon_sym_or] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_into] = ACTIONS(3945), - [anon_sym_on] = ACTIONS(3945), - [anon_sym_equals] = ACTIONS(3945), - [anon_sym_by] = ACTIONS(3945), - [anon_sym_as] = ACTIONS(3945), - [anon_sym_is] = ACTIONS(3945), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3945), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_in] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_EQ_GT] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_when] = ACTIONS(4036), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4036), + [anon_sym_or] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_into] = ACTIONS(4036), + [anon_sym_on] = ACTIONS(4036), + [anon_sym_equals] = ACTIONS(4036), + [anon_sym_by] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_is] = ACTIONS(4036), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4036), + [aux_sym_preproc_if_token3] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489358,68 +489393,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3229), [sym_preproc_define] = STATE(3229), [sym_preproc_undef] = STATE(3229), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4094), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_EQ_GT] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_when] = ACTIONS(4096), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4096), - [anon_sym_or] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_into] = ACTIONS(4096), - [anon_sym_on] = ACTIONS(4096), - [anon_sym_equals] = ACTIONS(4096), - [anon_sym_by] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4096), - [aux_sym_preproc_if_token3] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_into] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4164), }, [3230] = { [sym_preproc_region] = STATE(3230), @@ -489431,58 +489466,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3230), [sym_preproc_define] = STATE(3230), [sym_preproc_undef] = STATE(3230), - [anon_sym_SEMI] = ACTIONS(4912), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_COLON] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4912), - [anon_sym_RBRACK] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4912), - [anon_sym_RPAREN] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4912), - [anon_sym_RBRACE] = ACTIONS(4912), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_QMARK] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4912), - [anon_sym_DASH_DASH] = ACTIONS(4912), - [anon_sym_PLUS] = ACTIONS(4914), - [anon_sym_DASH] = ACTIONS(4914), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4914), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_CARET] = ACTIONS(4912), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4912), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_GT_GT_GT] = ACTIONS(4912), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_GT_EQ] = ACTIONS(4912), - [anon_sym_LT_EQ] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4914), - [anon_sym_EQ_GT] = ACTIONS(4912), - [anon_sym_switch] = ACTIONS(4912), - [anon_sym_when] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4912), - [anon_sym_and] = ACTIONS(4912), - [anon_sym_or] = ACTIONS(4912), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_PIPE_PIPE] = ACTIONS(4912), - [anon_sym_QMARK_QMARK] = ACTIONS(4912), - [anon_sym_on] = ACTIONS(4912), - [anon_sym_equals] = ACTIONS(4912), - [anon_sym_by] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4912), - [anon_sym_with] = ACTIONS(4912), - [aux_sym_preproc_if_token3] = ACTIONS(4912), - [aux_sym_preproc_else_token1] = ACTIONS(4912), - [aux_sym_preproc_elif_token1] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4300), + [anon_sym_GT] = ACTIONS(4300), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4300), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4300), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4300), + [anon_sym_SLASH] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4300), + [anon_sym_CARET] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4300), + [anon_sym_GT_GT] = ACTIONS(4300), + [anon_sym_GT_GT_GT] = ACTIONS(4300), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_QMARK_QMARK] = ACTIONS(4300), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4297), + [anon_sym_with] = ACTIONS(4297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489493,6 +489527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4295), }, [3231] = { [sym_preproc_region] = STATE(3231), @@ -489504,58 +489539,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3231), [sym_preproc_define] = STATE(3231), [sym_preproc_undef] = STATE(3231), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_when] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_into] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4144), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_EQ_GT] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_when] = ACTIONS(4144), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4144), + [anon_sym_or] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4144), + [anon_sym_into] = ACTIONS(4144), + [anon_sym_on] = ACTIONS(4144), + [anon_sym_equals] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4144), + [anon_sym_with] = ACTIONS(4144), + [aux_sym_preproc_if_token3] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489577,58 +489612,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3232), [sym_preproc_define] = STATE(3232), [sym_preproc_undef] = STATE(3232), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_RBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_CARET] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4922), - [anon_sym_GT_GT_GT] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_EQ_GT] = ACTIONS(4920), - [anon_sym_switch] = ACTIONS(4920), - [anon_sym_when] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_and] = ACTIONS(4920), - [anon_sym_or] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_QMARK_QMARK] = ACTIONS(4920), - [anon_sym_on] = ACTIONS(4920), - [anon_sym_equals] = ACTIONS(4920), - [anon_sym_by] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4920), - [anon_sym_with] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [sym_string_literal_encoding] = ACTIONS(5370), - [aux_sym_preproc_if_token3] = ACTIONS(4920), - [aux_sym_preproc_else_token1] = ACTIONS(4920), - [aux_sym_preproc_elif_token1] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489650,58 +489685,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3233), [sym_preproc_define] = STATE(3233), [sym_preproc_undef] = STATE(3233), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3628), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_RPAREN] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3628), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3628), - [anon_sym_EQ_EQ] = ACTIONS(3628), - [anon_sym_BANG_EQ] = ACTIONS(3628), - [anon_sym_GT_EQ] = ACTIONS(3628), - [anon_sym_LT_EQ] = ACTIONS(3628), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3628), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_when] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [anon_sym_and] = ACTIONS(3628), - [anon_sym_or] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_PIPE_PIPE] = ACTIONS(3628), - [anon_sym_QMARK_QMARK] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_equals] = ACTIONS(3628), - [anon_sym_by] = ACTIONS(3628), - [anon_sym_as] = ACTIONS(3628), - [anon_sym_is] = ACTIONS(3628), - [anon_sym_DASH_GT] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [aux_sym_preproc_if_token3] = ACTIONS(3628), - [aux_sym_preproc_else_token1] = ACTIONS(3628), - [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489714,9 +489749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3234] = { - [sym_attribute_list] = STATE(3683), - [sym__attribute_list] = STATE(3599), - [sym_preproc_if_in_attribute_list] = STATE(3683), [sym_preproc_region] = STATE(3234), [sym_preproc_endregion] = STATE(3234), [sym_preproc_line] = STATE(3234), @@ -489726,55 +489758,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3234), [sym_preproc_define] = STATE(3234), [sym_preproc_undef] = STATE(3234), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3234), - [sym__identifier_token] = ACTIONS(4767), - [anon_sym_extern] = ACTIONS(4767), - [anon_sym_alias] = ACTIONS(4767), - [anon_sym_global] = ACTIONS(4767), - [anon_sym_unsafe] = ACTIONS(4767), - [anon_sym_static] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(5372), - [anon_sym_LPAREN] = ACTIONS(4772), - [anon_sym_ref] = ACTIONS(4767), - [anon_sym_delegate] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_async] = ACTIONS(4767), - [anon_sym_const] = ACTIONS(4767), - [anon_sym_file] = ACTIONS(4767), - [anon_sym_fixed] = ACTIONS(4767), - [anon_sym_internal] = ACTIONS(4767), - [anon_sym_new] = ACTIONS(4767), - [anon_sym_override] = ACTIONS(4767), - [anon_sym_partial] = ACTIONS(4767), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_public] = ACTIONS(4767), - [anon_sym_readonly] = ACTIONS(4767), - [anon_sym_required] = ACTIONS(4767), - [anon_sym_sealed] = ACTIONS(4767), - [anon_sym_virtual] = ACTIONS(4767), - [anon_sym_volatile] = ACTIONS(4767), - [anon_sym_where] = ACTIONS(4767), - [anon_sym_notnull] = ACTIONS(4767), - [anon_sym_unmanaged] = ACTIONS(4767), - [anon_sym_scoped] = ACTIONS(4767), - [anon_sym_var] = ACTIONS(4767), - [sym_predefined_type] = ACTIONS(4767), - [anon_sym_yield] = ACTIONS(4767), - [anon_sym_when] = ACTIONS(4767), - [anon_sym_from] = ACTIONS(4767), - [anon_sym_into] = ACTIONS(4767), - [anon_sym_join] = ACTIONS(4767), - [anon_sym_on] = ACTIONS(4767), - [anon_sym_equals] = ACTIONS(4767), - [anon_sym_let] = ACTIONS(4767), - [anon_sym_orderby] = ACTIONS(4767), - [anon_sym_ascending] = ACTIONS(4767), - [anon_sym_descending] = ACTIONS(4767), - [anon_sym_group] = ACTIONS(4767), - [anon_sym_by] = ACTIONS(4767), - [anon_sym_select] = ACTIONS(4767), - [aux_sym_preproc_if_token1] = ACTIONS(5375), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489796,58 +489831,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3235), [sym_preproc_define] = STATE(3235), [sym_preproc_undef] = STATE(3235), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_RBRACK] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_RPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_in] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_EQ_GT] = ACTIONS(4162), - [anon_sym_switch] = ACTIONS(4162), - [anon_sym_when] = ACTIONS(4162), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4162), - [anon_sym_or] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_into] = ACTIONS(4162), - [anon_sym_on] = ACTIONS(4162), - [anon_sym_equals] = ACTIONS(4162), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_as] = ACTIONS(4162), - [anon_sym_is] = ACTIONS(4162), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4162), - [aux_sym_preproc_if_token3] = ACTIONS(4162), - [aux_sym_preproc_else_token1] = ACTIONS(4162), - [aux_sym_preproc_elif_token1] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [sym_string_literal_encoding] = ACTIONS(5376), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489869,58 +489904,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3236), [sym_preproc_define] = STATE(3236), [sym_preproc_undef] = STATE(3236), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5378), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5380), - [anon_sym_DASH_EQ] = ACTIONS(5380), - [anon_sym_STAR_EQ] = ACTIONS(5380), - [anon_sym_SLASH_EQ] = ACTIONS(5380), - [anon_sym_PERCENT_EQ] = ACTIONS(5380), - [anon_sym_AMP_EQ] = ACTIONS(5380), - [anon_sym_CARET_EQ] = ACTIONS(5380), - [anon_sym_PIPE_EQ] = ACTIONS(5380), - [anon_sym_LT_LT_EQ] = ACTIONS(5380), - [anon_sym_GT_GT_EQ] = ACTIONS(5380), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5380), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5380), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3672), + [anon_sym_PLUS_EQ] = ACTIONS(3672), + [anon_sym_DASH_EQ] = ACTIONS(3672), + [anon_sym_STAR_EQ] = ACTIONS(3672), + [anon_sym_SLASH_EQ] = ACTIONS(3672), + [anon_sym_PERCENT_EQ] = ACTIONS(3672), + [anon_sym_AMP_EQ] = ACTIONS(3672), + [anon_sym_CARET_EQ] = ACTIONS(3672), + [anon_sym_PIPE_EQ] = ACTIONS(3672), + [anon_sym_LT_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3672), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3670), + [anon_sym_into] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489931,6 +489965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3672), }, [3237] = { [sym_preproc_region] = STATE(3237), @@ -489942,58 +489977,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3237), [sym_preproc_define] = STATE(3237), [sym_preproc_undef] = STATE(3237), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_EQ_GT] = ACTIONS(4158), - [anon_sym_switch] = ACTIONS(4158), - [anon_sym_when] = ACTIONS(4158), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4158), - [anon_sym_or] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_into] = ACTIONS(4158), - [anon_sym_on] = ACTIONS(4158), - [anon_sym_equals] = ACTIONS(4158), - [anon_sym_by] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_is] = ACTIONS(4158), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4158), - [aux_sym_preproc_if_token3] = ACTIONS(4158), - [aux_sym_preproc_else_token1] = ACTIONS(4158), - [aux_sym_preproc_elif_token1] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_when] = ACTIONS(4032), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4032), + [anon_sym_or] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_into] = ACTIONS(4032), + [anon_sym_on] = ACTIONS(4032), + [anon_sym_equals] = ACTIONS(4032), + [anon_sym_by] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_is] = ACTIONS(4032), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4032), + [aux_sym_preproc_if_token3] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490015,68 +490050,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3238), [sym_preproc_define] = STATE(3238), [sym_preproc_undef] = STATE(3238), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4216), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_COMMA] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PLUS_PLUS] = ACTIONS(4216), - [anon_sym_DASH_DASH] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_LT] = ACTIONS(4218), - [anon_sym_GT_GT] = ACTIONS(4218), - [anon_sym_GT_GT_GT] = ACTIONS(4218), - [anon_sym_EQ_EQ] = ACTIONS(4216), - [anon_sym_BANG_EQ] = ACTIONS(4216), - [anon_sym_GT_EQ] = ACTIONS(4216), - [anon_sym_LT_EQ] = ACTIONS(4216), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_DOT_DOT] = ACTIONS(4216), - [anon_sym_and] = ACTIONS(4216), - [anon_sym_or] = ACTIONS(4216), - [anon_sym_PLUS_EQ] = ACTIONS(4216), - [anon_sym_DASH_EQ] = ACTIONS(4216), - [anon_sym_STAR_EQ] = ACTIONS(4216), - [anon_sym_SLASH_EQ] = ACTIONS(4216), - [anon_sym_PERCENT_EQ] = ACTIONS(4216), - [anon_sym_AMP_EQ] = ACTIONS(4216), - [anon_sym_CARET_EQ] = ACTIONS(4216), - [anon_sym_PIPE_EQ] = ACTIONS(4216), - [anon_sym_LT_LT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_QMARK_QMARK] = ACTIONS(4218), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_as] = ACTIONS(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4216), - [anon_sym_with] = ACTIONS(4216), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4216), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3239] = { [sym_preproc_region] = STATE(3239), @@ -490088,68 +490123,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3239), [sym_preproc_define] = STATE(3239), [sym_preproc_undef] = STATE(3239), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_and] = ACTIONS(4208), - [anon_sym_or] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_AMP_EQ] = ACTIONS(4208), - [anon_sym_CARET_EQ] = ACTIONS(4208), - [anon_sym_PIPE_EQ] = ACTIONS(4208), - [anon_sym_LT_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4208), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4208), - [anon_sym_as] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [anon_sym_with] = ACTIONS(4208), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_when] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_into] = ACTIONS(3459), + [anon_sym_on] = ACTIONS(3459), + [anon_sym_equals] = ACTIONS(3459), + [anon_sym_by] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3240] = { [sym_preproc_region] = STATE(3240), @@ -490161,58 +490196,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3240), [sym_preproc_define] = STATE(3240), [sym_preproc_undef] = STATE(3240), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_in] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_when] = ACTIONS(3708), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_into] = ACTIONS(3708), - [anon_sym_on] = ACTIONS(3708), - [anon_sym_equals] = ACTIONS(3708), - [anon_sym_by] = ACTIONS(3708), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_is] = ACTIONS(3708), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3708), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_EQ_GT] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4156), + [anon_sym_or] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_into] = ACTIONS(4156), + [anon_sym_on] = ACTIONS(4156), + [anon_sym_equals] = ACTIONS(4156), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4156), + [aux_sym_preproc_if_token3] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490234,6 +490269,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3241), [sym_preproc_define] = STATE(3241), [sym_preproc_undef] = STATE(3241), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3664), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_equals] = ACTIONS(3664), + [anon_sym_by] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [aux_sym_preproc_if_token3] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3242] = { + [sym_preproc_region] = STATE(3242), + [sym_preproc_endregion] = STATE(3242), + [sym_preproc_line] = STATE(3242), + [sym_preproc_pragma] = STATE(3242), + [sym_preproc_nullable] = STATE(3242), + [sym_preproc_error] = STATE(3242), + [sym_preproc_warning] = STATE(3242), + [sym_preproc_define] = STATE(3242), + [sym_preproc_undef] = STATE(3242), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3243] = { + [sym_preproc_region] = STATE(3243), + [sym_preproc_endregion] = STATE(3243), + [sym_preproc_line] = STATE(3243), + [sym_preproc_pragma] = STATE(3243), + [sym_preproc_nullable] = STATE(3243), + [sym_preproc_error] = STATE(3243), + [sym_preproc_warning] = STATE(3243), + [sym_preproc_define] = STATE(3243), + [sym_preproc_undef] = STATE(3243), [anon_sym_EQ] = ACTIONS(3674), [anon_sym_LBRACK] = ACTIONS(3676), [anon_sym_COLON] = ACTIONS(3676), @@ -490297,16 +490478,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3676), }, - [3242] = { - [sym_preproc_region] = STATE(3242), - [sym_preproc_endregion] = STATE(3242), - [sym_preproc_line] = STATE(3242), - [sym_preproc_pragma] = STATE(3242), - [sym_preproc_nullable] = STATE(3242), - [sym_preproc_error] = STATE(3242), - [sym_preproc_warning] = STATE(3242), - [sym_preproc_define] = STATE(3242), - [sym_preproc_undef] = STATE(3242), + [3244] = { + [sym_preproc_region] = STATE(3244), + [sym_preproc_endregion] = STATE(3244), + [sym_preproc_line] = STATE(3244), + [sym_preproc_pragma] = STATE(3244), + [sym_preproc_nullable] = STATE(3244), + [sym_preproc_error] = STATE(3244), + [sym_preproc_warning] = STATE(3244), + [sym_preproc_define] = STATE(3244), + [sym_preproc_undef] = STATE(3244), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_RBRACK] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_in] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_EQ_GT] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_when] = ACTIONS(4050), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4050), + [anon_sym_or] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_into] = ACTIONS(4050), + [anon_sym_on] = ACTIONS(4050), + [anon_sym_equals] = ACTIONS(4050), + [anon_sym_by] = ACTIONS(4050), + [anon_sym_as] = ACTIONS(4050), + [anon_sym_is] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4050), + [aux_sym_preproc_if_token3] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3245] = { + [sym_preproc_region] = STATE(3245), + [sym_preproc_endregion] = STATE(3245), + [sym_preproc_line] = STATE(3245), + [sym_preproc_pragma] = STATE(3245), + [sym_preproc_nullable] = STATE(3245), + [sym_preproc_error] = STATE(3245), + [sym_preproc_warning] = STATE(3245), + [sym_preproc_define] = STATE(3245), + [sym_preproc_undef] = STATE(3245), [anon_sym_SEMI] = ACTIONS(4054), [anon_sym_LBRACK] = ACTIONS(4054), [anon_sym_COLON] = ACTIONS(4054), @@ -490370,225 +490624,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3243] = { - [sym_preproc_region] = STATE(3243), - [sym_preproc_endregion] = STATE(3243), - [sym_preproc_line] = STATE(3243), - [sym_preproc_pragma] = STATE(3243), - [sym_preproc_nullable] = STATE(3243), - [sym_preproc_error] = STATE(3243), - [sym_preproc_warning] = STATE(3243), - [sym_preproc_define] = STATE(3243), - [sym_preproc_undef] = STATE(3243), - [anon_sym_SEMI] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_EQ_GT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4019), - [anon_sym_equals] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4019), - [aux_sym_preproc_if_token3] = ACTIONS(4019), - [aux_sym_preproc_else_token1] = ACTIONS(4019), - [aux_sym_preproc_elif_token1] = ACTIONS(4019), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3244] = { - [sym_preproc_region] = STATE(3244), - [sym_preproc_endregion] = STATE(3244), - [sym_preproc_line] = STATE(3244), - [sym_preproc_pragma] = STATE(3244), - [sym_preproc_nullable] = STATE(3244), - [sym_preproc_error] = STATE(3244), - [sym_preproc_warning] = STATE(3244), - [sym_preproc_define] = STATE(3244), - [sym_preproc_undef] = STATE(3244), - [anon_sym_EQ] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COMMA] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4168), - [anon_sym_GT] = ACTIONS(4168), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_SLASH] = ACTIONS(4168), - [anon_sym_PERCENT] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(4168), - [anon_sym_GT_GT] = ACTIONS(4168), - [anon_sym_GT_GT_GT] = ACTIONS(4168), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT_EQ] = ACTIONS(4166), - [anon_sym_LT_EQ] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4166), - [anon_sym_DOT_DOT] = ACTIONS(4166), - [anon_sym_and] = ACTIONS(4166), - [anon_sym_or] = ACTIONS(4166), - [anon_sym_PLUS_EQ] = ACTIONS(4166), - [anon_sym_DASH_EQ] = ACTIONS(4166), - [anon_sym_STAR_EQ] = ACTIONS(4166), - [anon_sym_SLASH_EQ] = ACTIONS(4166), - [anon_sym_PERCENT_EQ] = ACTIONS(4166), - [anon_sym_AMP_EQ] = ACTIONS(4166), - [anon_sym_CARET_EQ] = ACTIONS(4166), - [anon_sym_PIPE_EQ] = ACTIONS(4166), - [anon_sym_LT_LT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_QMARK_QMARK] = ACTIONS(4168), - [anon_sym_into] = ACTIONS(4166), - [anon_sym_as] = ACTIONS(4166), - [anon_sym_is] = ACTIONS(4166), - [anon_sym_DASH_GT] = ACTIONS(4166), - [anon_sym_with] = ACTIONS(4166), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4166), - }, - [3245] = { - [sym_preproc_region] = STATE(3245), - [sym_preproc_endregion] = STATE(3245), - [sym_preproc_line] = STATE(3245), - [sym_preproc_pragma] = STATE(3245), - [sym_preproc_nullable] = STATE(3245), - [sym_preproc_error] = STATE(3245), - [sym_preproc_warning] = STATE(3245), - [sym_preproc_define] = STATE(3245), - [sym_preproc_undef] = STATE(3245), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3246] = { [sym_preproc_region] = STATE(3246), [sym_preproc_endregion] = STATE(3246), @@ -490599,58 +490634,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3246), [sym_preproc_define] = STATE(3246), [sym_preproc_undef] = STATE(3246), - [anon_sym_EQ] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5384), - [anon_sym_DASH_EQ] = ACTIONS(5384), - [anon_sym_STAR_EQ] = ACTIONS(5384), - [anon_sym_SLASH_EQ] = ACTIONS(5384), - [anon_sym_PERCENT_EQ] = ACTIONS(5384), - [anon_sym_AMP_EQ] = ACTIONS(5384), - [anon_sym_CARET_EQ] = ACTIONS(5384), - [anon_sym_PIPE_EQ] = ACTIONS(5384), - [anon_sym_LT_LT_EQ] = ACTIONS(5384), - [anon_sym_GT_GT_EQ] = ACTIONS(5384), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5384), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COMMA] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_LT] = ACTIONS(4170), + [anon_sym_GT_GT] = ACTIONS(4170), + [anon_sym_GT_GT_GT] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4168), + [anon_sym_BANG_EQ] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_or] = 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_AMP_EQ] = ACTIONS(4168), + [anon_sym_CARET_EQ] = ACTIONS(4168), + [anon_sym_PIPE_EQ] = ACTIONS(4168), + [anon_sym_LT_LT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4168), + [anon_sym_QMARK_QMARK] = ACTIONS(4170), + [anon_sym_into] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4168), + [anon_sym_is] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_with] = ACTIONS(4168), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490661,9 +490695,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4168), }, [3247] = { - [sym_initializer_expression] = STATE(3445), [sym_preproc_region] = STATE(3247), [sym_preproc_endregion] = STATE(3247), [sym_preproc_line] = STATE(3247), @@ -490673,57 +490707,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3247), [sym_preproc_define] = STATE(3247), [sym_preproc_undef] = STATE(3247), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4872), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_RBRACK] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(4872), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_QMARK] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_CARET] = ACTIONS(4872), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4872), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_GT_GT_GT] = ACTIONS(4872), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_EQ_GT] = ACTIONS(4872), - [anon_sym_switch] = ACTIONS(4872), - [anon_sym_when] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_and] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4872), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_QMARK_QMARK] = ACTIONS(4872), - [anon_sym_on] = ACTIONS(4872), - [anon_sym_equals] = ACTIONS(4872), - [anon_sym_by] = ACTIONS(4872), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [anon_sym_with] = ACTIONS(4872), - [aux_sym_preproc_if_token3] = ACTIONS(4872), - [aux_sym_preproc_else_token1] = ACTIONS(4872), - [aux_sym_preproc_elif_token1] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_CARET] = ACTIONS(3461), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3461), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3461), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3459), + [anon_sym_PLUS_EQ] = ACTIONS(3459), + [anon_sym_DASH_EQ] = ACTIONS(3459), + [anon_sym_STAR_EQ] = ACTIONS(3459), + [anon_sym_SLASH_EQ] = ACTIONS(3459), + [anon_sym_PERCENT_EQ] = ACTIONS(3459), + [anon_sym_AMP_EQ] = ACTIONS(3459), + [anon_sym_CARET_EQ] = ACTIONS(3459), + [anon_sym_PIPE_EQ] = ACTIONS(3459), + [anon_sym_LT_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490734,8 +490768,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3459), }, [3248] = { + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2724), [sym_preproc_region] = STATE(3248), [sym_preproc_endregion] = STATE(3248), [sym_preproc_line] = STATE(3248), @@ -490745,57 +490782,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3248), [sym_preproc_define] = STATE(3248), [sym_preproc_undef] = STATE(3248), - [anon_sym_EQ] = ACTIONS(3723), - [anon_sym_LBRACK] = ACTIONS(3731), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_COMMA] = ACTIONS(3731), - [anon_sym_LPAREN] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_QMARK] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3723), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_SLASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_PIPE] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_LT_LT] = ACTIONS(3723), - [anon_sym_GT_GT] = ACTIONS(3723), - [anon_sym_GT_GT_GT] = ACTIONS(3723), - [anon_sym_EQ_EQ] = ACTIONS(3731), - [anon_sym_BANG_EQ] = ACTIONS(3731), - [anon_sym_GT_EQ] = ACTIONS(3731), - [anon_sym_LT_EQ] = ACTIONS(3731), - [anon_sym_DOT] = ACTIONS(3723), - [anon_sym_switch] = ACTIONS(3731), - [anon_sym_DOT_DOT] = ACTIONS(3731), - [anon_sym_and] = ACTIONS(3731), - [anon_sym_or] = ACTIONS(3731), - [anon_sym_PLUS_EQ] = ACTIONS(3731), - [anon_sym_DASH_EQ] = ACTIONS(3731), - [anon_sym_STAR_EQ] = ACTIONS(3731), - [anon_sym_SLASH_EQ] = ACTIONS(3731), - [anon_sym_PERCENT_EQ] = ACTIONS(3731), - [anon_sym_AMP_EQ] = ACTIONS(3731), - [anon_sym_CARET_EQ] = ACTIONS(3731), - [anon_sym_PIPE_EQ] = ACTIONS(3731), - [anon_sym_LT_LT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), - [anon_sym_AMP_AMP] = ACTIONS(3731), - [anon_sym_PIPE_PIPE] = ACTIONS(3731), - [anon_sym_QMARK_QMARK] = ACTIONS(3723), - [anon_sym_into] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3731), - [anon_sym_DASH_GT] = ACTIONS(3731), - [anon_sym_with] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_PERCENT] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4875), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_GT_GT_GT] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4875), + [anon_sym_switch] = ACTIONS(4875), + [anon_sym_when] = ACTIONS(4875), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_and] = ACTIONS(4875), + [anon_sym_or] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_QMARK_QMARK] = ACTIONS(4875), + [anon_sym_on] = ACTIONS(4875), + [anon_sym_equals] = ACTIONS(4875), + [anon_sym_by] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4875), + [aux_sym_preproc_if_token3] = ACTIONS(4875), + [aux_sym_preproc_else_token1] = ACTIONS(4875), + [aux_sym_preproc_elif_token1] = ACTIONS(4875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490806,7 +490842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3731), }, [3249] = { [sym_preproc_region] = STATE(3249), @@ -490818,57 +490853,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3249), [sym_preproc_define] = STATE(3249), [sym_preproc_undef] = STATE(3249), - [anon_sym_EQ] = ACTIONS(4186), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4190), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4190), - [anon_sym_EQ_EQ] = ACTIONS(4184), - [anon_sym_BANG_EQ] = ACTIONS(4184), - [anon_sym_GT_EQ] = ACTIONS(4184), - [anon_sym_LT_EQ] = ACTIONS(4184), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_DOT_DOT] = ACTIONS(4184), - [anon_sym_and] = ACTIONS(4184), - [anon_sym_or] = ACTIONS(4184), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4184), - [anon_sym_PIPE_PIPE] = ACTIONS(4184), - [anon_sym_QMARK_QMARK] = ACTIONS(4190), - [anon_sym_into] = ACTIONS(4184), - [anon_sym_as] = ACTIONS(4184), - [anon_sym_is] = ACTIONS(4184), - [anon_sym_DASH_GT] = ACTIONS(4184), - [anon_sym_with] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_GT] = ACTIONS(4192), + [anon_sym_QMARK] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [anon_sym_SLASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_CARET] = ACTIONS(4192), + [anon_sym_PIPE] = ACTIONS(4192), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_LT_LT] = ACTIONS(4192), + [anon_sym_GT_GT] = ACTIONS(4192), + [anon_sym_GT_GT_GT] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4186), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_and] = ACTIONS(4186), + [anon_sym_or] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_QMARK_QMARK] = ACTIONS(4192), + [anon_sym_into] = ACTIONS(4186), + [anon_sym_as] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(4186), + [anon_sym_with] = ACTIONS(4186), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490879,7 +490914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4184), + [sym_interpolation_close_brace] = ACTIONS(4186), }, [3250] = { [sym_preproc_region] = STATE(3250), @@ -490891,57 +490926,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3250), [sym_preproc_define] = STATE(3250), [sym_preproc_undef] = STATE(3250), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_GT_GT_GT] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_GT_EQ] = ACTIONS(3459), - [anon_sym_LT_EQ] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3459), - [anon_sym_PLUS_EQ] = ACTIONS(3459), - [anon_sym_DASH_EQ] = ACTIONS(3459), - [anon_sym_STAR_EQ] = ACTIONS(3459), - [anon_sym_SLASH_EQ] = ACTIONS(3459), - [anon_sym_PERCENT_EQ] = ACTIONS(3459), - [anon_sym_AMP_EQ] = ACTIONS(3459), - [anon_sym_CARET_EQ] = ACTIONS(3459), - [anon_sym_PIPE_EQ] = ACTIONS(3459), - [anon_sym_LT_LT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_QMARK_QMARK] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3459), - [anon_sym_is] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5378), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [anon_sym_DASH_EQ] = ACTIONS(5380), + [anon_sym_STAR_EQ] = ACTIONS(5380), + [anon_sym_SLASH_EQ] = ACTIONS(5380), + [anon_sym_PERCENT_EQ] = ACTIONS(5380), + [anon_sym_AMP_EQ] = ACTIONS(5380), + [anon_sym_CARET_EQ] = ACTIONS(5380), + [anon_sym_PIPE_EQ] = ACTIONS(5380), + [anon_sym_LT_LT_EQ] = ACTIONS(5380), + [anon_sym_GT_GT_EQ] = ACTIONS(5380), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5380), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5380), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490952,11 +490988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3459), }, [3251] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2827), [sym_preproc_region] = STATE(3251), [sym_preproc_endregion] = STATE(3251), [sym_preproc_line] = STATE(3251), @@ -490966,56 +490999,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3251), [sym_preproc_define] = STATE(3251), [sym_preproc_undef] = STATE(3251), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(5344), - [anon_sym_COLON] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_RBRACK] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_CARET] = ACTIONS(4900), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4900), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_GT_GT_GT] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4900), - [anon_sym_switch] = ACTIONS(4900), - [anon_sym_when] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_and] = ACTIONS(4900), - [anon_sym_or] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_QMARK_QMARK] = ACTIONS(4900), - [anon_sym_on] = ACTIONS(4900), - [anon_sym_equals] = ACTIONS(4900), - [anon_sym_by] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4900), - [aux_sym_preproc_if_token3] = ACTIONS(4900), - [aux_sym_preproc_else_token1] = ACTIONS(4900), - [aux_sym_preproc_elif_token1] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_CARET] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_LT_LT] = ACTIONS(3662), + [anon_sym_GT_GT] = ACTIONS(3662), + [anon_sym_GT_GT_GT] = ACTIONS(3662), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_PLUS_EQ] = ACTIONS(3664), + [anon_sym_DASH_EQ] = ACTIONS(3664), + [anon_sym_STAR_EQ] = ACTIONS(3664), + [anon_sym_SLASH_EQ] = ACTIONS(3664), + [anon_sym_PERCENT_EQ] = ACTIONS(3664), + [anon_sym_AMP_EQ] = ACTIONS(3664), + [anon_sym_CARET_EQ] = ACTIONS(3664), + [anon_sym_PIPE_EQ] = ACTIONS(3664), + [anon_sym_LT_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_QMARK_QMARK] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491026,6 +491060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3664), }, [3252] = { [sym_preproc_region] = STATE(3252), @@ -491037,58 +491072,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3252), [sym_preproc_define] = STATE(3252), [sym_preproc_undef] = STATE(3252), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4916), - [anon_sym_COLON] = ACTIONS(4916), - [anon_sym_COMMA] = ACTIONS(4916), - [anon_sym_RBRACK] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4918), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_GT_GT_GT] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_GT_EQ] = ACTIONS(4916), - [anon_sym_LT_EQ] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_EQ_GT] = ACTIONS(4916), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_when] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_and] = ACTIONS(4916), - [anon_sym_or] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_QMARK_QMARK] = ACTIONS(4916), - [anon_sym_into] = ACTIONS(4916), - [anon_sym_on] = ACTIONS(4916), - [anon_sym_equals] = ACTIONS(4916), - [anon_sym_by] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_with] = ACTIONS(4916), - [aux_sym_preproc_if_token3] = ACTIONS(4916), - [aux_sym_preproc_else_token1] = ACTIONS(4916), - [aux_sym_preproc_elif_token1] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5384), + [anon_sym_DASH_EQ] = ACTIONS(5384), + [anon_sym_STAR_EQ] = ACTIONS(5384), + [anon_sym_SLASH_EQ] = ACTIONS(5384), + [anon_sym_PERCENT_EQ] = ACTIONS(5384), + [anon_sym_AMP_EQ] = ACTIONS(5384), + [anon_sym_CARET_EQ] = ACTIONS(5384), + [anon_sym_PIPE_EQ] = ACTIONS(5384), + [anon_sym_LT_LT_EQ] = ACTIONS(5384), + [anon_sym_GT_GT_EQ] = ACTIONS(5384), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5384), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5384), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491099,6 +491133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4898), }, [3253] = { [sym_preproc_region] = STATE(3253), @@ -491110,58 +491145,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3253), [sym_preproc_define] = STATE(3253), [sym_preproc_undef] = STATE(3253), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4190), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_COMMA] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4188), + [anon_sym_GT] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_CARET] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_LT_LT] = ACTIONS(4188), + [anon_sym_GT_GT] = ACTIONS(4188), + [anon_sym_GT_GT_GT] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_GT_EQ] = ACTIONS(4190), + [anon_sym_LT_EQ] = ACTIONS(4190), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_and] = ACTIONS(4190), + [anon_sym_or] = ACTIONS(4190), + [anon_sym_PLUS_EQ] = ACTIONS(4190), + [anon_sym_DASH_EQ] = ACTIONS(4190), + [anon_sym_STAR_EQ] = ACTIONS(4190), + [anon_sym_SLASH_EQ] = ACTIONS(4190), + [anon_sym_PERCENT_EQ] = ACTIONS(4190), + [anon_sym_AMP_EQ] = ACTIONS(4190), + [anon_sym_CARET_EQ] = ACTIONS(4190), + [anon_sym_PIPE_EQ] = ACTIONS(4190), + [anon_sym_LT_LT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4190), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_PIPE_PIPE] = ACTIONS(4190), + [anon_sym_QMARK_QMARK] = ACTIONS(4188), + [anon_sym_into] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4190), + [anon_sym_with] = ACTIONS(4190), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491172,6 +491206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4190), }, [3254] = { [sym_preproc_region] = STATE(3254), @@ -491183,58 +491218,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3254), [sym_preproc_define] = STATE(3254), [sym_preproc_undef] = STATE(3254), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_COLON] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4937), - [anon_sym_where] = ACTIONS(4937), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4937), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4937), - [anon_sym_CARET] = ACTIONS(4937), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4939), - [anon_sym_LT_LT] = ACTIONS(4937), - [anon_sym_GT_GT] = ACTIONS(4939), - [anon_sym_GT_GT_GT] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_EQ_GT] = ACTIONS(4937), - [anon_sym_switch] = ACTIONS(4937), - [anon_sym_when] = ACTIONS(4937), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_and] = ACTIONS(4937), - [anon_sym_or] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_QMARK_QMARK] = ACTIONS(4937), - [anon_sym_on] = ACTIONS(4937), - [anon_sym_equals] = ACTIONS(4937), - [anon_sym_by] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4937), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_with] = ACTIONS(4937), - [aux_sym_preproc_if_token3] = ACTIONS(4937), - [aux_sym_preproc_else_token1] = ACTIONS(4937), - [aux_sym_preproc_elif_token1] = ACTIONS(4937), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_QMARK] = ACTIONS(4941), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(4939), + [anon_sym_GT_GT] = ACTIONS(4941), + [anon_sym_GT_GT_GT] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_EQ_GT] = ACTIONS(4939), + [anon_sym_switch] = ACTIONS(4939), + [anon_sym_when] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_and] = ACTIONS(4939), + [anon_sym_or] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_QMARK_QMARK] = ACTIONS(4939), + [anon_sym_into] = ACTIONS(4939), + [anon_sym_on] = ACTIONS(4939), + [anon_sym_equals] = ACTIONS(4939), + [anon_sym_by] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4939), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_DASH_GT] = ACTIONS(4939), + [anon_sym_with] = ACTIONS(4939), + [aux_sym_preproc_if_token3] = ACTIONS(4939), + [aux_sym_preproc_else_token1] = ACTIONS(4939), + [aux_sym_preproc_elif_token1] = ACTIONS(4939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491256,68 +491291,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3255), [sym_preproc_define] = STATE(3255), [sym_preproc_undef] = STATE(3255), - [anon_sym_SEMI] = ACTIONS(4937), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_COLON] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_in] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4937), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4937), - [anon_sym_CARET] = ACTIONS(4937), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4939), - [anon_sym_LT_LT] = ACTIONS(4937), - [anon_sym_GT_GT] = ACTIONS(4939), - [anon_sym_GT_GT_GT] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_EQ_GT] = ACTIONS(4937), - [anon_sym_switch] = ACTIONS(4937), - [anon_sym_when] = ACTIONS(4937), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_and] = ACTIONS(4937), - [anon_sym_or] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_QMARK_QMARK] = ACTIONS(4937), - [anon_sym_into] = ACTIONS(4937), - [anon_sym_on] = ACTIONS(4937), - [anon_sym_equals] = ACTIONS(4937), - [anon_sym_by] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4937), - [anon_sym_is] = ACTIONS(4937), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_with] = ACTIONS(4937), - [aux_sym_preproc_if_token3] = ACTIONS(4937), - [aux_sym_preproc_else_token1] = ACTIONS(4937), - [aux_sym_preproc_elif_token1] = ACTIONS(4937), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_LT_LT] = ACTIONS(4235), + [anon_sym_GT_GT] = ACTIONS(4235), + [anon_sym_GT_GT_GT] = ACTIONS(4235), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_GT_EQ] = ACTIONS(4233), + [anon_sym_LT_EQ] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4233), + [anon_sym_DOT_DOT] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4233), + [anon_sym_PLUS_EQ] = ACTIONS(4233), + [anon_sym_DASH_EQ] = ACTIONS(4233), + [anon_sym_STAR_EQ] = ACTIONS(4233), + [anon_sym_SLASH_EQ] = ACTIONS(4233), + [anon_sym_PERCENT_EQ] = ACTIONS(4233), + [anon_sym_AMP_EQ] = ACTIONS(4233), + [anon_sym_CARET_EQ] = ACTIONS(4233), + [anon_sym_PIPE_EQ] = ACTIONS(4233), + [anon_sym_LT_LT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4233), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_PIPE_PIPE] = ACTIONS(4233), + [anon_sym_QMARK_QMARK] = ACTIONS(4235), + [anon_sym_into] = ACTIONS(4233), + [anon_sym_as] = ACTIONS(4233), + [anon_sym_is] = ACTIONS(4233), + [anon_sym_DASH_GT] = ACTIONS(4233), + [anon_sym_with] = ACTIONS(4233), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4233), }, [3256] = { [sym_preproc_region] = STATE(3256), @@ -491329,58 +491364,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3256), [sym_preproc_define] = STATE(3256), [sym_preproc_undef] = STATE(3256), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COMMA] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_in] = ACTIONS(3630), + [anon_sym_QMARK] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3633), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_CARET] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_LT_LT] = ACTIONS(3630), + [anon_sym_GT_GT] = ACTIONS(3633), + [anon_sym_GT_GT_GT] = ACTIONS(3630), + [anon_sym_EQ_EQ] = ACTIONS(3630), + [anon_sym_BANG_EQ] = ACTIONS(3630), + [anon_sym_GT_EQ] = ACTIONS(3630), + [anon_sym_LT_EQ] = ACTIONS(3630), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_EQ_GT] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_when] = ACTIONS(3630), + [anon_sym_DOT_DOT] = ACTIONS(3630), + [anon_sym_and] = ACTIONS(3630), + [anon_sym_or] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(3630), + [anon_sym_QMARK_QMARK] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_equals] = ACTIONS(3630), + [anon_sym_by] = ACTIONS(3630), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_is] = ACTIONS(3630), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [aux_sym_preproc_if_token3] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491402,57 +491437,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3257), [sym_preproc_define] = STATE(3257), [sym_preproc_undef] = STATE(3257), - [anon_sym_EQ] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3684), - [anon_sym_CARET] = ACTIONS(3684), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3684), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3684), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_PLUS_EQ] = ACTIONS(3686), - [anon_sym_DASH_EQ] = ACTIONS(3686), - [anon_sym_STAR_EQ] = ACTIONS(3686), - [anon_sym_SLASH_EQ] = ACTIONS(3686), - [anon_sym_PERCENT_EQ] = ACTIONS(3686), - [anon_sym_AMP_EQ] = ACTIONS(3686), - [anon_sym_CARET_EQ] = ACTIONS(3686), - [anon_sym_PIPE_EQ] = ACTIONS(3686), - [anon_sym_LT_LT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3686), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3684), - [anon_sym_into] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4958), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4958), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_GT_GT_GT] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4958), + [anon_sym_switch] = ACTIONS(4958), + [anon_sym_when] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_or] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_QMARK_QMARK] = ACTIONS(4958), + [anon_sym_on] = ACTIONS(4958), + [anon_sym_equals] = ACTIONS(4958), + [anon_sym_by] = ACTIONS(4958), + [anon_sym_as] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4958), + [anon_sym_with] = ACTIONS(4958), + [aux_sym_preproc_if_token3] = ACTIONS(4958), + [aux_sym_preproc_else_token1] = ACTIONS(4958), + [aux_sym_preproc_elif_token1] = ACTIONS(4958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491463,7 +491499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3686), }, [3258] = { [sym_preproc_region] = STATE(3258), @@ -491475,58 +491510,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3258), [sym_preproc_define] = STATE(3258), [sym_preproc_undef] = STATE(3258), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3672), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_when] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3672), - [anon_sym_into] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_in] = ACTIONS(4018), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_into] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491539,6 +491574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3259] = { + [sym_initializer_expression] = STATE(3437), [sym_preproc_region] = STATE(3259), [sym_preproc_endregion] = STATE(3259), [sym_preproc_line] = STATE(3259), @@ -491548,58 +491584,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3259), [sym_preproc_define] = STATE(3259), [sym_preproc_undef] = STATE(3259), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_RPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4100), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_in] = ACTIONS(4098), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_EQ_GT] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_when] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4100), - [anon_sym_or] = ACTIONS(4100), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_into] = ACTIONS(4100), - [anon_sym_on] = ACTIONS(4100), - [anon_sym_equals] = ACTIONS(4100), - [anon_sym_by] = ACTIONS(4100), - [anon_sym_as] = ACTIONS(4100), - [anon_sym_is] = ACTIONS(4100), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4100), - [aux_sym_preproc_if_token3] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_GT_GT_GT] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_EQ_GT] = ACTIONS(4904), + [anon_sym_switch] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_and] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_QMARK_QMARK] = ACTIONS(4904), + [anon_sym_on] = ACTIONS(4904), + [anon_sym_equals] = ACTIONS(4904), + [anon_sym_by] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_with] = ACTIONS(4904), + [aux_sym_preproc_if_token3] = ACTIONS(4904), + [aux_sym_preproc_else_token1] = ACTIONS(4904), + [aux_sym_preproc_elif_token1] = ACTIONS(4904), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491612,8 +491647,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3260] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2827), [sym_preproc_region] = STATE(3260), [sym_preproc_endregion] = STATE(3260), [sym_preproc_line] = STATE(3260), @@ -491623,56 +491656,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3260), [sym_preproc_define] = STATE(3260), [sym_preproc_undef] = STATE(3260), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(5344), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4880), - [anon_sym_GT] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_CARET] = ACTIONS(4876), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LT_LT] = ACTIONS(4876), - [anon_sym_GT_GT] = ACTIONS(4880), - [anon_sym_GT_GT_GT] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4876), - [anon_sym_switch] = ACTIONS(4876), - [anon_sym_when] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_and] = ACTIONS(4876), - [anon_sym_or] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_QMARK_QMARK] = ACTIONS(4876), - [anon_sym_on] = ACTIONS(4876), - [anon_sym_equals] = ACTIONS(4876), - [anon_sym_by] = ACTIONS(4876), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4876), - [aux_sym_preproc_if_token3] = ACTIONS(4876), - [aux_sym_preproc_else_token1] = ACTIONS(4876), - [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_CARET] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3666), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3666), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_PLUS_EQ] = ACTIONS(3668), + [anon_sym_DASH_EQ] = ACTIONS(3668), + [anon_sym_STAR_EQ] = ACTIONS(3668), + [anon_sym_SLASH_EQ] = ACTIONS(3668), + [anon_sym_PERCENT_EQ] = ACTIONS(3668), + [anon_sym_AMP_EQ] = ACTIONS(3668), + [anon_sym_CARET_EQ] = ACTIONS(3668), + [anon_sym_PIPE_EQ] = ACTIONS(3668), + [anon_sym_LT_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3668), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3666), + [anon_sym_into] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491683,6 +491717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3668), }, [3261] = { [sym_preproc_region] = STATE(3261), @@ -491694,57 +491729,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3261), [sym_preproc_define] = STATE(3261), [sym_preproc_undef] = STATE(3261), - [anon_sym_EQ] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_DOT_DOT] = ACTIONS(3664), - [anon_sym_and] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3664), - [anon_sym_PLUS_EQ] = ACTIONS(3664), - [anon_sym_DASH_EQ] = ACTIONS(3664), - [anon_sym_STAR_EQ] = ACTIONS(3664), - [anon_sym_SLASH_EQ] = ACTIONS(3664), - [anon_sym_PERCENT_EQ] = ACTIONS(3664), - [anon_sym_AMP_EQ] = ACTIONS(3664), - [anon_sym_CARET_EQ] = ACTIONS(3664), - [anon_sym_PIPE_EQ] = ACTIONS(3664), - [anon_sym_LT_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3664), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3664), - [anon_sym_is] = ACTIONS(3664), - [anon_sym_DASH_GT] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_RBRACK] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4945), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4945), + [anon_sym_LT_LT] = ACTIONS(4943), + [anon_sym_GT_GT] = ACTIONS(4945), + [anon_sym_GT_GT_GT] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_EQ_GT] = ACTIONS(4943), + [anon_sym_switch] = ACTIONS(4943), + [anon_sym_when] = ACTIONS(4943), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_and] = ACTIONS(4943), + [anon_sym_or] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_QMARK_QMARK] = ACTIONS(4943), + [anon_sym_into] = ACTIONS(4943), + [anon_sym_on] = ACTIONS(4943), + [anon_sym_equals] = ACTIONS(4943), + [anon_sym_by] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4943), + [anon_sym_DASH_GT] = ACTIONS(4943), + [anon_sym_with] = ACTIONS(4943), + [aux_sym_raw_string_literal_token1] = ACTIONS(5386), + [aux_sym_preproc_if_token3] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4943), + [aux_sym_preproc_elif_token1] = ACTIONS(4943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491755,9 +491791,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3664), }, [3262] = { + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2724), [sym_preproc_region] = STATE(3262), [sym_preproc_endregion] = STATE(3262), [sym_preproc_line] = STATE(3262), @@ -491767,58 +491804,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3262), [sym_preproc_define] = STATE(3262), [sym_preproc_undef] = STATE(3262), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(5350), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_GT_GT_GT] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4908), + [anon_sym_switch] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_and] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_QMARK_QMARK] = ACTIONS(4908), + [anon_sym_on] = ACTIONS(4908), + [anon_sym_equals] = ACTIONS(4908), + [anon_sym_by] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4908), + [aux_sym_preproc_if_token3] = ACTIONS(4908), + [aux_sym_preproc_else_token1] = ACTIONS(4908), + [aux_sym_preproc_elif_token1] = ACTIONS(4908), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491840,58 +491875,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3263), [sym_preproc_define] = STATE(3263), [sym_preproc_undef] = STATE(3263), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_switch] = ACTIONS(3721), - [anon_sym_when] = ACTIONS(3721), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3721), - [anon_sym_or] = ACTIONS(3721), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_into] = ACTIONS(3721), - [anon_sym_on] = ACTIONS(3721), - [anon_sym_equals] = ACTIONS(3721), - [anon_sym_by] = ACTIONS(3721), - [anon_sym_as] = ACTIONS(3721), - [anon_sym_is] = ACTIONS(3721), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3721), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3947), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3949), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491913,58 +491948,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3264), [sym_preproc_define] = STATE(3264), [sym_preproc_undef] = STATE(3264), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_in] = ACTIONS(4119), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [anon_sym_when] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4121), - [anon_sym_or] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_into] = ACTIONS(4121), - [anon_sym_on] = ACTIONS(4121), - [anon_sym_equals] = ACTIONS(4121), - [anon_sym_by] = ACTIONS(4121), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - [aux_sym_preproc_if_token3] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_GT] = ACTIONS(3461), + [anon_sym_in] = ACTIONS(3459), + [anon_sym_QMARK] = ACTIONS(3461), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3461), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3461), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_when] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_and] = ACTIONS(3459), + [anon_sym_or] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_on] = ACTIONS(3459), + [anon_sym_equals] = ACTIONS(3459), + [anon_sym_by] = ACTIONS(3459), + [anon_sym_as] = ACTIONS(3459), + [anon_sym_is] = ACTIONS(3459), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [aux_sym_preproc_if_token3] = ACTIONS(3459), + [aux_sym_preproc_else_token1] = ACTIONS(3459), + [aux_sym_preproc_elif_token1] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491986,58 +492021,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3265), [sym_preproc_define] = STATE(3265), [sym_preproc_undef] = STATE(3265), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4933), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [sym_string_literal_encoding] = ACTIONS(5386), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_in] = ACTIONS(4038), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_EQ_GT] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_when] = ACTIONS(4040), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4040), + [anon_sym_or] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_into] = ACTIONS(4040), + [anon_sym_on] = ACTIONS(4040), + [anon_sym_equals] = ACTIONS(4040), + [anon_sym_by] = ACTIONS(4040), + [anon_sym_as] = ACTIONS(4040), + [anon_sym_is] = ACTIONS(4040), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4040), + [aux_sym_preproc_if_token3] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492059,57 +492094,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3266), [sym_preproc_define] = STATE(3266), [sym_preproc_undef] = STATE(3266), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(5388), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(3672), + [anon_sym_COMMA] = ACTIONS(3672), + [anon_sym_RBRACK] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_GT] = ACTIONS(3670), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3672), + [anon_sym_CARET] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_LT] = ACTIONS(3672), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_DOT] = ACTIONS(3670), + [anon_sym_EQ_GT] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_when] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3672), + [anon_sym_and] = ACTIONS(3672), + [anon_sym_or] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_QMARK_QMARK] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_equals] = ACTIONS(3672), + [anon_sym_by] = ACTIONS(3672), + [anon_sym_as] = ACTIONS(3672), + [anon_sym_is] = ACTIONS(3672), + [anon_sym_DASH_GT] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [aux_sym_preproc_if_token3] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492131,57 +492166,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3267), [sym_preproc_define] = STATE(3267), [sym_preproc_undef] = STATE(3267), - [anon_sym_SEMI] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_COLON] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5152), - [anon_sym_RBRACK] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5152), - [anon_sym_RPAREN] = ACTIONS(5152), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_in] = ACTIONS(5154), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_PLUS_PLUS] = ACTIONS(5152), - [anon_sym_DASH_DASH] = ACTIONS(5152), - [anon_sym_PLUS] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5152), - [anon_sym_SLASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5152), - [anon_sym_CARET] = ACTIONS(5152), - [anon_sym_PIPE] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_LT_LT] = ACTIONS(5152), - [anon_sym_GT_GT] = ACTIONS(5154), - [anon_sym_GT_GT_GT] = ACTIONS(5152), - [anon_sym_EQ_EQ] = ACTIONS(5152), - [anon_sym_BANG_EQ] = ACTIONS(5152), - [anon_sym_GT_EQ] = ACTIONS(5152), - [anon_sym_LT_EQ] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_EQ_GT] = ACTIONS(5152), - [anon_sym_switch] = ACTIONS(5152), - [anon_sym_when] = ACTIONS(5152), - [anon_sym_DOT_DOT] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5152), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5152), - [anon_sym_QMARK_QMARK] = ACTIONS(5152), - [anon_sym_into] = ACTIONS(5152), - [anon_sym_on] = ACTIONS(5152), - [anon_sym_equals] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_as] = ACTIONS(5152), - [anon_sym_is] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_with] = ACTIONS(5152), - [aux_sym_preproc_if_token3] = ACTIONS(5152), - [aux_sym_preproc_else_token1] = ACTIONS(5152), - [aux_sym_preproc_elif_token1] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5037), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5037), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_GT_GT_GT] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5035), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5037), + [anon_sym_EQ_GT] = ACTIONS(5035), + [anon_sym_switch] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_AMP_AMP] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5035), + [anon_sym_QMARK_QMARK] = ACTIONS(5035), + [anon_sym_into] = ACTIONS(5035), + [anon_sym_on] = ACTIONS(5035), + [anon_sym_equals] = ACTIONS(5035), + [anon_sym_by] = ACTIONS(5035), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5035), + [anon_sym_with] = ACTIONS(5035), + [aux_sym_preproc_if_token3] = ACTIONS(5035), + [aux_sym_preproc_else_token1] = ACTIONS(5035), + [aux_sym_preproc_elif_token1] = ACTIONS(5035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492203,57 +492238,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3268), [sym_preproc_define] = STATE(3268), [sym_preproc_undef] = STATE(3268), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4993), - [anon_sym_in] = ACTIONS(4993), - [anon_sym_QMARK] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4993), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4993), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_LT_LT] = ACTIONS(4991), - [anon_sym_GT_GT] = ACTIONS(4993), - [anon_sym_GT_GT_GT] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_EQ_GT] = ACTIONS(4991), - [anon_sym_switch] = ACTIONS(4991), - [anon_sym_when] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_and] = ACTIONS(4991), - [anon_sym_or] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_QMARK_QMARK] = ACTIONS(4991), - [anon_sym_into] = ACTIONS(4991), - [anon_sym_on] = ACTIONS(4991), - [anon_sym_equals] = ACTIONS(4991), - [anon_sym_by] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_with] = ACTIONS(4991), - [aux_sym_preproc_if_token3] = ACTIONS(4991), - [aux_sym_preproc_else_token1] = ACTIONS(4991), - [aux_sym_preproc_elif_token1] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_in] = ACTIONS(5390), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_EQ_GT] = ACTIONS(5388), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_when] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5388), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_into] = ACTIONS(5388), + [anon_sym_on] = ACTIONS(5388), + [anon_sym_equals] = ACTIONS(5388), + [anon_sym_by] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5388), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), + [aux_sym_preproc_if_token3] = ACTIONS(5388), + [aux_sym_preproc_else_token1] = ACTIONS(5388), + [aux_sym_preproc_elif_token1] = ACTIONS(5388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492266,6 +492301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3269] = { + [sym_initializer_expression] = STATE(3423), [sym_preproc_region] = STATE(3269), [sym_preproc_endregion] = STATE(3269), [sym_preproc_line] = STATE(3269), @@ -492275,57 +492311,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3269), [sym_preproc_define] = STATE(3269), [sym_preproc_undef] = STATE(3269), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_RBRACK] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [anon_sym_RBRACE] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4997), - [anon_sym_QMARK] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4997), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_LT_LT] = ACTIONS(4995), - [anon_sym_GT_GT] = ACTIONS(4997), - [anon_sym_GT_GT_GT] = ACTIONS(4995), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_GT_EQ] = ACTIONS(4995), - [anon_sym_LT_EQ] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_EQ_GT] = ACTIONS(4995), - [anon_sym_switch] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4995), - [anon_sym_and] = ACTIONS(4995), - [anon_sym_or] = ACTIONS(4995), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_QMARK_QMARK] = ACTIONS(4995), - [anon_sym_into] = ACTIONS(4995), - [anon_sym_on] = ACTIONS(4995), - [anon_sym_equals] = ACTIONS(4995), - [anon_sym_by] = ACTIONS(4995), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4995), - [anon_sym_with] = ACTIONS(4995), - [aux_sym_preproc_if_token3] = ACTIONS(4995), - [aux_sym_preproc_else_token1] = ACTIONS(4995), - [aux_sym_preproc_elif_token1] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(5395), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_GT_GT_GT] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_EQ_GT] = ACTIONS(4920), + [anon_sym_switch] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_and] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_QMARK_QMARK] = ACTIONS(4920), + [anon_sym_on] = ACTIONS(4920), + [anon_sym_equals] = ACTIONS(4920), + [anon_sym_by] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_with] = ACTIONS(4920), + [aux_sym_preproc_if_token3] = ACTIONS(4920), + [aux_sym_preproc_else_token1] = ACTIONS(4920), + [aux_sym_preproc_elif_token1] = ACTIONS(4920), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492338,6 +492373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3270] = { + [sym_type_argument_list] = STATE(2991), [sym_preproc_region] = STATE(3270), [sym_preproc_endregion] = STATE(3270), [sym_preproc_line] = STATE(3270), @@ -492347,57 +492383,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3270), [sym_preproc_define] = STATE(3270), [sym_preproc_undef] = STATE(3270), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_RBRACK] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(5001), - [anon_sym_QMARK] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(5001), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_LT_LT] = ACTIONS(4999), - [anon_sym_GT_GT] = ACTIONS(5001), - [anon_sym_GT_GT_GT] = ACTIONS(4999), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_GT_EQ] = ACTIONS(4999), - [anon_sym_LT_EQ] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_EQ_GT] = ACTIONS(4999), - [anon_sym_switch] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(4999), - [anon_sym_or] = ACTIONS(4999), - [anon_sym_AMP_AMP] = ACTIONS(4999), - [anon_sym_PIPE_PIPE] = ACTIONS(4999), - [anon_sym_QMARK_QMARK] = ACTIONS(4999), - [anon_sym_into] = ACTIONS(4999), - [anon_sym_on] = ACTIONS(4999), - [anon_sym_equals] = ACTIONS(4999), - [anon_sym_by] = ACTIONS(4999), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(4999), - [anon_sym_with] = ACTIONS(4999), - [aux_sym_preproc_if_token3] = ACTIONS(4999), - [aux_sym_preproc_else_token1] = ACTIONS(4999), - [aux_sym_preproc_elif_token1] = ACTIONS(4999), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(5399), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492419,57 +492454,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3271), [sym_preproc_define] = STATE(3271), [sym_preproc_undef] = STATE(3271), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5228), - [anon_sym_RBRACK] = ACTIONS(5228), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_in] = ACTIONS(5230), - [anon_sym_QMARK] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_GT_GT_GT] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [anon_sym_GT_EQ] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5228), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_EQ_GT] = ACTIONS(5228), - [anon_sym_switch] = ACTIONS(5228), - [anon_sym_when] = ACTIONS(5228), - [anon_sym_DOT_DOT] = ACTIONS(5228), - [anon_sym_and] = ACTIONS(5228), - [anon_sym_or] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_QMARK_QMARK] = ACTIONS(5228), - [anon_sym_into] = ACTIONS(5228), - [anon_sym_on] = ACTIONS(5228), - [anon_sym_equals] = ACTIONS(5228), - [anon_sym_by] = ACTIONS(5228), - [anon_sym_as] = ACTIONS(5228), - [anon_sym_is] = ACTIONS(5228), - [anon_sym_DASH_GT] = ACTIONS(5228), - [anon_sym_with] = ACTIONS(5228), - [aux_sym_preproc_if_token3] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492482,6 +492517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3272] = { + [sym_modifier] = STATE(3734), + [sym_identifier] = STATE(6453), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3272), [sym_preproc_endregion] = STATE(3272), [sym_preproc_line] = STATE(3272), @@ -492491,57 +492529,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3272), [sym_preproc_define] = STATE(3272), [sym_preproc_undef] = STATE(3272), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_in] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5260), - [anon_sym_BANG] = ACTIONS(5260), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_GT_GT_GT] = ACTIONS(5258), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_EQ_GT] = ACTIONS(5258), - [anon_sym_switch] = ACTIONS(5258), - [anon_sym_when] = ACTIONS(5258), - [anon_sym_DOT_DOT] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_QMARK_QMARK] = ACTIONS(5258), - [anon_sym_into] = ACTIONS(5258), - [anon_sym_on] = ACTIONS(5258), - [anon_sym_equals] = ACTIONS(5258), - [anon_sym_by] = ACTIONS(5258), - [anon_sym_as] = ACTIONS(5258), - [anon_sym_is] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [anon_sym_with] = ACTIONS(5258), - [aux_sym_preproc_if_token3] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5258), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3558), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4787), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_static] = ACTIONS(4787), + [anon_sym_abstract] = ACTIONS(4787), + [anon_sym_async] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_file] = ACTIONS(4793), + [anon_sym_fixed] = ACTIONS(4787), + [anon_sym_internal] = ACTIONS(4787), + [anon_sym_new] = ACTIONS(4787), + [anon_sym_override] = ACTIONS(4787), + [anon_sym_partial] = ACTIONS(4787), + [anon_sym_private] = ACTIONS(4787), + [anon_sym_protected] = ACTIONS(4787), + [anon_sym_public] = ACTIONS(4787), + [anon_sym_readonly] = ACTIONS(4787), + [anon_sym_required] = ACTIONS(4787), + [anon_sym_sealed] = ACTIONS(4787), + [anon_sym_virtual] = ACTIONS(4787), + [anon_sym_volatile] = ACTIONS(4787), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_add] = ACTIONS(5133), + [anon_sym_remove] = ACTIONS(5133), + [anon_sym_init] = ACTIONS(5133), + [anon_sym_scoped] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_when] = ACTIONS(29), + [anon_sym_from] = ACTIONS(29), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492563,57 +492598,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3273), [sym_preproc_define] = STATE(3273), [sym_preproc_undef] = STATE(3273), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_GT_GT_GT] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_EQ_GT] = ACTIONS(5122), - [anon_sym_switch] = ACTIONS(5122), - [anon_sym_when] = ACTIONS(5122), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_QMARK_QMARK] = ACTIONS(5122), - [anon_sym_into] = ACTIONS(5122), - [anon_sym_on] = ACTIONS(5122), - [anon_sym_equals] = ACTIONS(5122), - [anon_sym_by] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [anon_sym_with] = ACTIONS(5122), - [aux_sym_preproc_if_token3] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_RBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(4034), + [anon_sym_GT] = ACTIONS(4034), + [anon_sym_in] = ACTIONS(4036), + [anon_sym_QMARK] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_PIPE] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_LT_LT] = ACTIONS(4036), + [anon_sym_GT_GT] = ACTIONS(4034), + [anon_sym_GT_GT_GT] = ACTIONS(4036), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_GT_EQ] = ACTIONS(4036), + [anon_sym_LT_EQ] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_EQ_GT] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_when] = ACTIONS(4036), + [anon_sym_DOT_DOT] = ACTIONS(4036), + [anon_sym_and] = ACTIONS(4036), + [anon_sym_or] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_QMARK_QMARK] = ACTIONS(4036), + [anon_sym_on] = ACTIONS(4036), + [anon_sym_equals] = ACTIONS(4036), + [anon_sym_by] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_is] = ACTIONS(4036), + [anon_sym_DASH_GT] = ACTIONS(4036), + [anon_sym_with] = ACTIONS(4036), + [aux_sym_preproc_if_token3] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492635,57 +492670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3274), [sym_preproc_define] = STATE(3274), [sym_preproc_undef] = STATE(3274), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_COLON] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_RBRACK] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_in] = ACTIONS(5132), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5130), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5130), - [anon_sym_CARET] = ACTIONS(5130), - [anon_sym_PIPE] = ACTIONS(5132), - [anon_sym_AMP] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(5130), - [anon_sym_GT_GT] = ACTIONS(5132), - [anon_sym_GT_GT_GT] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_EQ_GT] = ACTIONS(5130), - [anon_sym_switch] = ACTIONS(5130), - [anon_sym_when] = ACTIONS(5130), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_and] = ACTIONS(5130), - [anon_sym_or] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_QMARK_QMARK] = ACTIONS(5130), - [anon_sym_into] = ACTIONS(5130), - [anon_sym_on] = ACTIONS(5130), - [anon_sym_equals] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5130), - [anon_sym_DASH_GT] = ACTIONS(5130), - [anon_sym_with] = ACTIONS(5130), - [aux_sym_preproc_if_token3] = ACTIONS(5130), - [aux_sym_preproc_else_token1] = ACTIONS(5130), - [aux_sym_preproc_elif_token1] = ACTIONS(5130), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_COLON] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(5401), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_in] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1997), + [anon_sym_switch] = ACTIONS(1997), + [anon_sym_when] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_and] = ACTIONS(1997), + [anon_sym_or] = ACTIONS(1997), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), + [anon_sym_into] = ACTIONS(1997), + [anon_sym_on] = ACTIONS(1997), + [anon_sym_equals] = ACTIONS(1997), + [anon_sym_by] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_is] = ACTIONS(1997), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_with] = ACTIONS(1997), + [aux_sym_preproc_if_token3] = ACTIONS(1997), + [aux_sym_preproc_else_token1] = ACTIONS(1997), + [aux_sym_preproc_elif_token1] = ACTIONS(1997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492707,57 +492742,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3275), [sym_preproc_define] = STATE(3275), [sym_preproc_undef] = STATE(3275), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4985), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_GT_GT_GT] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_EQ_GT] = ACTIONS(4983), - [anon_sym_switch] = ACTIONS(4983), - [anon_sym_when] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_and] = ACTIONS(4983), - [anon_sym_or] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_QMARK_QMARK] = ACTIONS(4983), - [anon_sym_into] = ACTIONS(4983), - [anon_sym_on] = ACTIONS(4983), - [anon_sym_equals] = ACTIONS(4983), - [anon_sym_by] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(4983), - [anon_sym_with] = ACTIONS(4983), - [aux_sym_preproc_if_token3] = ACTIONS(4983), - [aux_sym_preproc_else_token1] = ACTIONS(4983), - [aux_sym_preproc_elif_token1] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_COLON] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_CARET] = ACTIONS(5163), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_LT_LT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_GT_GT_GT] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_EQ_GT] = ACTIONS(5163), + [anon_sym_switch] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_and] = ACTIONS(5163), + [anon_sym_or] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_QMARK_QMARK] = ACTIONS(5163), + [anon_sym_into] = ACTIONS(5163), + [anon_sym_on] = ACTIONS(5163), + [anon_sym_equals] = ACTIONS(5163), + [anon_sym_by] = ACTIONS(5163), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5163), + [anon_sym_with] = ACTIONS(5163), + [aux_sym_preproc_if_token3] = ACTIONS(5163), + [aux_sym_preproc_else_token1] = ACTIONS(5163), + [aux_sym_preproc_elif_token1] = ACTIONS(5163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492779,57 +492814,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3276), [sym_preproc_define] = STATE(3276), [sym_preproc_undef] = STATE(3276), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_GT_GT] = ACTIONS(4989), - [anon_sym_GT_GT_GT] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_EQ_GT] = ACTIONS(4987), - [anon_sym_switch] = ACTIONS(4987), - [anon_sym_when] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_and] = ACTIONS(4987), - [anon_sym_or] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_QMARK_QMARK] = ACTIONS(4987), - [anon_sym_into] = ACTIONS(4987), - [anon_sym_on] = ACTIONS(4987), - [anon_sym_equals] = ACTIONS(4987), - [anon_sym_by] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4987), - [anon_sym_with] = ACTIONS(4987), - [aux_sym_preproc_if_token3] = ACTIONS(4987), - [aux_sym_preproc_else_token1] = ACTIONS(4987), - [aux_sym_preproc_elif_token1] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_COLON] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_QMARK] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_CARET] = ACTIONS(5159), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_AMP] = ACTIONS(5161), + [anon_sym_LT_LT] = ACTIONS(5159), + [anon_sym_GT_GT] = ACTIONS(5161), + [anon_sym_GT_GT_GT] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_EQ_GT] = ACTIONS(5159), + [anon_sym_switch] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_and] = ACTIONS(5159), + [anon_sym_or] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_QMARK_QMARK] = ACTIONS(5159), + [anon_sym_into] = ACTIONS(5159), + [anon_sym_on] = ACTIONS(5159), + [anon_sym_equals] = ACTIONS(5159), + [anon_sym_by] = ACTIONS(5159), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5159), + [anon_sym_with] = ACTIONS(5159), + [aux_sym_preproc_if_token3] = ACTIONS(5159), + [aux_sym_preproc_else_token1] = ACTIONS(5159), + [aux_sym_preproc_elif_token1] = ACTIONS(5159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492851,57 +492886,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3277), [sym_preproc_define] = STATE(3277), [sym_preproc_undef] = STATE(3277), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COLON] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_RBRACK] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_in] = ACTIONS(5390), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_when] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_into] = ACTIONS(3840), - [anon_sym_on] = ACTIONS(3840), - [anon_sym_equals] = ACTIONS(3840), - [anon_sym_by] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(3840), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), - [aux_sym_preproc_if_token3] = ACTIONS(3840), - [aux_sym_preproc_else_token1] = ACTIONS(3840), - [aux_sym_preproc_elif_token1] = ACTIONS(3840), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_in] = ACTIONS(5224), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_GT_GT_GT] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_switch] = ACTIONS(5222), + [anon_sym_when] = ACTIONS(5222), + [anon_sym_DOT_DOT] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_QMARK_QMARK] = ACTIONS(5222), + [anon_sym_into] = ACTIONS(5222), + [anon_sym_on] = ACTIONS(5222), + [anon_sym_equals] = ACTIONS(5222), + [anon_sym_by] = ACTIONS(5222), + [anon_sym_as] = ACTIONS(5222), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_with] = ACTIONS(5222), + [aux_sym_preproc_if_token3] = ACTIONS(5222), + [aux_sym_preproc_else_token1] = ACTIONS(5222), + [aux_sym_preproc_elif_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492923,57 +492958,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3278), [sym_preproc_define] = STATE(3278), [sym_preproc_undef] = STATE(3278), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5005), - [anon_sym_QMARK] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5003), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_GT_GT_GT] = ACTIONS(5003), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5003), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_QMARK_QMARK] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [anon_sym_with] = ACTIONS(5003), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5107), + [anon_sym_QMARK] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5107), + [anon_sym_AMP] = ACTIONS(5107), + [anon_sym_LT_LT] = ACTIONS(5105), + [anon_sym_GT_GT] = ACTIONS(5107), + [anon_sym_GT_GT_GT] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_EQ_GT] = ACTIONS(5105), + [anon_sym_switch] = ACTIONS(5105), + [anon_sym_when] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_and] = ACTIONS(5105), + [anon_sym_or] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_QMARK_QMARK] = ACTIONS(5105), + [anon_sym_into] = ACTIONS(5105), + [anon_sym_on] = ACTIONS(5105), + [anon_sym_equals] = ACTIONS(5105), + [anon_sym_by] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [anon_sym_with] = ACTIONS(5105), + [aux_sym_preproc_if_token3] = ACTIONS(5105), + [aux_sym_preproc_else_token1] = ACTIONS(5105), + [aux_sym_preproc_elif_token1] = ACTIONS(5105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492995,57 +493030,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3279), [sym_preproc_define] = STATE(3279), [sym_preproc_undef] = STATE(3279), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_RBRACK] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5009), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_PLUS_PLUS] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_LT_LT] = ACTIONS(5007), - [anon_sym_GT_GT] = ACTIONS(5009), - [anon_sym_GT_GT_GT] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(5007), - [anon_sym_BANG_EQ] = ACTIONS(5007), - [anon_sym_GT_EQ] = ACTIONS(5007), - [anon_sym_LT_EQ] = ACTIONS(5007), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_EQ_GT] = ACTIONS(5007), - [anon_sym_switch] = ACTIONS(5007), - [anon_sym_when] = ACTIONS(5007), - [anon_sym_DOT_DOT] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_or] = ACTIONS(5007), - [anon_sym_AMP_AMP] = ACTIONS(5007), - [anon_sym_PIPE_PIPE] = ACTIONS(5007), - [anon_sym_QMARK_QMARK] = ACTIONS(5007), - [anon_sym_into] = ACTIONS(5007), - [anon_sym_on] = ACTIONS(5007), - [anon_sym_equals] = ACTIONS(5007), - [anon_sym_by] = ACTIONS(5007), - [anon_sym_as] = ACTIONS(5007), - [anon_sym_is] = ACTIONS(5007), - [anon_sym_DASH_GT] = ACTIONS(5007), - [anon_sym_with] = ACTIONS(5007), - [aux_sym_preproc_if_token3] = ACTIONS(5007), - [aux_sym_preproc_else_token1] = ACTIONS(5007), - [aux_sym_preproc_elif_token1] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_COLON] = ACTIONS(4050), + [anon_sym_COMMA] = ACTIONS(4050), + [anon_sym_RBRACK] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_GT] = ACTIONS(4048), + [anon_sym_in] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_SLASH] = ACTIONS(4048), + [anon_sym_PERCENT] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_LT] = ACTIONS(4050), + [anon_sym_GT_GT] = ACTIONS(4048), + [anon_sym_GT_GT_GT] = ACTIONS(4050), + [anon_sym_EQ_EQ] = ACTIONS(4050), + [anon_sym_BANG_EQ] = ACTIONS(4050), + [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_LT_EQ] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_EQ_GT] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_when] = ACTIONS(4050), + [anon_sym_DOT_DOT] = ACTIONS(4050), + [anon_sym_and] = ACTIONS(4050), + [anon_sym_or] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_PIPE_PIPE] = ACTIONS(4050), + [anon_sym_QMARK_QMARK] = ACTIONS(4050), + [anon_sym_on] = ACTIONS(4050), + [anon_sym_equals] = ACTIONS(4050), + [anon_sym_by] = ACTIONS(4050), + [anon_sym_as] = ACTIONS(4050), + [anon_sym_is] = ACTIONS(4050), + [anon_sym_DASH_GT] = ACTIONS(4050), + [anon_sym_with] = ACTIONS(4050), + [aux_sym_preproc_if_token3] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493067,57 +493102,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3280), [sym_preproc_define] = STATE(3280), [sym_preproc_undef] = STATE(3280), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5037), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_CARET] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_LT_LT] = ACTIONS(5035), - [anon_sym_GT_GT] = ACTIONS(5037), - [anon_sym_GT_GT_GT] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_EQ_GT] = ACTIONS(5035), - [anon_sym_switch] = ACTIONS(5035), - [anon_sym_when] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_and] = ACTIONS(5035), - [anon_sym_or] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_QMARK_QMARK] = ACTIONS(5035), - [anon_sym_into] = ACTIONS(5035), - [anon_sym_on] = ACTIONS(5035), - [anon_sym_equals] = ACTIONS(5035), - [anon_sym_by] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_DASH_GT] = ACTIONS(5035), - [anon_sym_with] = ACTIONS(5035), - [aux_sym_preproc_if_token3] = ACTIONS(5035), - [aux_sym_preproc_else_token1] = ACTIONS(5035), - [aux_sym_preproc_elif_token1] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_COMMA] = ACTIONS(5403), + [anon_sym_RBRACK] = ACTIONS(5403), + [anon_sym_LPAREN] = ACTIONS(5403), + [anon_sym_RPAREN] = ACTIONS(5403), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5405), + [anon_sym_GT] = ACTIONS(5405), + [anon_sym_in] = ACTIONS(5405), + [anon_sym_QMARK] = ACTIONS(5405), + [anon_sym_BANG] = ACTIONS(5405), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5405), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5405), + [anon_sym_GT_GT_GT] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5403), + [anon_sym_BANG_EQ] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_DOT] = ACTIONS(5405), + [anon_sym_EQ_GT] = ACTIONS(5403), + [anon_sym_switch] = ACTIONS(5403), + [anon_sym_when] = ACTIONS(5403), + [anon_sym_DOT_DOT] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5403), + [anon_sym_QMARK_QMARK] = ACTIONS(5403), + [anon_sym_into] = ACTIONS(5403), + [anon_sym_on] = ACTIONS(5403), + [anon_sym_equals] = ACTIONS(5403), + [anon_sym_by] = ACTIONS(5403), + [anon_sym_as] = ACTIONS(5403), + [anon_sym_is] = ACTIONS(5403), + [anon_sym_DASH_GT] = ACTIONS(5403), + [anon_sym_with] = ACTIONS(5403), + [aux_sym_preproc_if_token3] = ACTIONS(5403), + [aux_sym_preproc_else_token1] = ACTIONS(5403), + [aux_sym_preproc_elif_token1] = ACTIONS(5403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493139,57 +493174,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3281), [sym_preproc_define] = STATE(3281), [sym_preproc_undef] = STATE(3281), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5057), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5057), - [anon_sym_GT_GT_GT] = ACTIONS(5055), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_GT_EQ] = ACTIONS(5055), - [anon_sym_LT_EQ] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_EQ_GT] = ACTIONS(5055), - [anon_sym_switch] = ACTIONS(5055), - [anon_sym_when] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5055), - [anon_sym_and] = ACTIONS(5055), - [anon_sym_or] = ACTIONS(5055), - [anon_sym_AMP_AMP] = ACTIONS(5055), - [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_QMARK_QMARK] = ACTIONS(5055), - [anon_sym_into] = ACTIONS(5055), - [anon_sym_on] = ACTIONS(5055), - [anon_sym_equals] = ACTIONS(5055), - [anon_sym_by] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_with] = ACTIONS(5055), - [aux_sym_preproc_if_token3] = ACTIONS(5055), - [aux_sym_preproc_else_token1] = ACTIONS(5055), - [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5407), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COLON] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_RBRACK] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_RPAREN] = ACTIONS(5407), + [anon_sym_RBRACE] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_in] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_EQ_GT] = ACTIONS(5407), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_when] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_into] = ACTIONS(5407), + [anon_sym_on] = ACTIONS(5407), + [anon_sym_equals] = ACTIONS(5407), + [anon_sym_by] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5407), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), + [aux_sym_preproc_if_token3] = ACTIONS(5407), + [aux_sym_preproc_else_token1] = ACTIONS(5407), + [aux_sym_preproc_elif_token1] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493211,57 +493246,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3282), [sym_preproc_define] = STATE(3282), [sym_preproc_undef] = STATE(3282), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5061), - [anon_sym_QMARK] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(5059), - [anon_sym_GT_GT] = ACTIONS(5061), - [anon_sym_GT_GT_GT] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_EQ_GT] = ACTIONS(5059), - [anon_sym_switch] = ACTIONS(5059), - [anon_sym_when] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_and] = ACTIONS(5059), - [anon_sym_or] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_QMARK_QMARK] = ACTIONS(5059), - [anon_sym_into] = ACTIONS(5059), - [anon_sym_on] = ACTIONS(5059), - [anon_sym_equals] = ACTIONS(5059), - [anon_sym_by] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5059), - [anon_sym_with] = ACTIONS(5059), - [aux_sym_preproc_if_token3] = ACTIONS(5059), - [aux_sym_preproc_else_token1] = ACTIONS(5059), - [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_RBRACK] = ACTIONS(5411), + [anon_sym_LPAREN] = ACTIONS(5411), + [anon_sym_RPAREN] = ACTIONS(5411), + [anon_sym_RBRACE] = ACTIONS(5411), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_in] = ACTIONS(5413), + [anon_sym_QMARK] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5411), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_CARET] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5411), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_GT_GT_GT] = ACTIONS(5411), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_EQ_GT] = ACTIONS(5411), + [anon_sym_switch] = ACTIONS(5411), + [anon_sym_when] = ACTIONS(5411), + [anon_sym_DOT_DOT] = ACTIONS(5411), + [anon_sym_and] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_QMARK_QMARK] = ACTIONS(5411), + [anon_sym_into] = ACTIONS(5411), + [anon_sym_on] = ACTIONS(5411), + [anon_sym_equals] = ACTIONS(5411), + [anon_sym_by] = ACTIONS(5411), + [anon_sym_as] = ACTIONS(5411), + [anon_sym_is] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_with] = ACTIONS(5411), + [aux_sym_preproc_if_token3] = ACTIONS(5411), + [aux_sym_preproc_else_token1] = ACTIONS(5411), + [aux_sym_preproc_elif_token1] = ACTIONS(5411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493283,57 +493318,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3283), [sym_preproc_define] = STATE(3283), [sym_preproc_undef] = STATE(3283), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_LT_LT] = ACTIONS(5103), - [anon_sym_GT_GT] = ACTIONS(5105), - [anon_sym_GT_GT_GT] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_EQ_GT] = ACTIONS(5103), - [anon_sym_switch] = ACTIONS(5103), - [anon_sym_when] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_and] = ACTIONS(5103), - [anon_sym_or] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_QMARK_QMARK] = ACTIONS(5103), - [anon_sym_into] = ACTIONS(5103), - [anon_sym_on] = ACTIONS(5103), - [anon_sym_equals] = ACTIONS(5103), - [anon_sym_by] = ACTIONS(5103), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5103), - [anon_sym_with] = ACTIONS(5103), - [aux_sym_preproc_if_token3] = ACTIONS(5103), - [aux_sym_preproc_else_token1] = ACTIONS(5103), - [aux_sym_preproc_elif_token1] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_QMARK] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5099), + [anon_sym_AMP] = ACTIONS(5099), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5099), + [anon_sym_GT_GT_GT] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_EQ_GT] = ACTIONS(5097), + [anon_sym_switch] = ACTIONS(5097), + [anon_sym_when] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_and] = ACTIONS(5097), + [anon_sym_or] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_QMARK_QMARK] = ACTIONS(5097), + [anon_sym_into] = ACTIONS(5097), + [anon_sym_on] = ACTIONS(5097), + [anon_sym_equals] = ACTIONS(5097), + [anon_sym_by] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5097), + [anon_sym_with] = ACTIONS(5097), + [aux_sym_preproc_if_token3] = ACTIONS(5097), + [aux_sym_preproc_else_token1] = ACTIONS(5097), + [aux_sym_preproc_elif_token1] = ACTIONS(5097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493355,57 +493390,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3284), [sym_preproc_define] = STATE(3284), [sym_preproc_undef] = STATE(3284), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_COLON] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_RBRACK] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5114), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5114), - [anon_sym_CARET] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5114), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_GT_GT_GT] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_EQ_GT] = ACTIONS(5114), - [anon_sym_switch] = ACTIONS(5114), - [anon_sym_when] = ACTIONS(5114), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_and] = ACTIONS(5114), - [anon_sym_or] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_QMARK_QMARK] = ACTIONS(5114), - [anon_sym_into] = ACTIONS(5114), - [anon_sym_on] = ACTIONS(5114), - [anon_sym_equals] = ACTIONS(5114), - [anon_sym_by] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5114), - [anon_sym_DASH_GT] = ACTIONS(5114), - [anon_sym_with] = ACTIONS(5114), - [aux_sym_preproc_if_token3] = ACTIONS(5114), - [aux_sym_preproc_else_token1] = ACTIONS(5114), - [aux_sym_preproc_elif_token1] = ACTIONS(5114), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(5415), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493427,57 +493462,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3285), [sym_preproc_define] = STATE(3285), [sym_preproc_undef] = STATE(3285), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5120), - [anon_sym_QMARK] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_GT_GT_GT] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_EQ_GT] = ACTIONS(5118), - [anon_sym_switch] = ACTIONS(5118), - [anon_sym_when] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_QMARK_QMARK] = ACTIONS(5118), - [anon_sym_into] = ACTIONS(5118), - [anon_sym_on] = ACTIONS(5118), - [anon_sym_equals] = ACTIONS(5118), - [anon_sym_by] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_with] = ACTIONS(5118), - [aux_sym_preproc_if_token3] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5118), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_COMMA] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4038), + [anon_sym_GT] = ACTIONS(4038), + [anon_sym_in] = ACTIONS(4040), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_SLASH] = ACTIONS(4038), + [anon_sym_PERCENT] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_LT] = ACTIONS(4040), + [anon_sym_GT_GT] = ACTIONS(4038), + [anon_sym_GT_GT_GT] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_EQ_GT] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_when] = ACTIONS(4040), + [anon_sym_DOT_DOT] = ACTIONS(4040), + [anon_sym_and] = ACTIONS(4040), + [anon_sym_or] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_QMARK_QMARK] = ACTIONS(4040), + [anon_sym_on] = ACTIONS(4040), + [anon_sym_equals] = ACTIONS(4040), + [anon_sym_by] = ACTIONS(4040), + [anon_sym_as] = ACTIONS(4040), + [anon_sym_is] = ACTIONS(4040), + [anon_sym_DASH_GT] = ACTIONS(4040), + [anon_sym_with] = ACTIONS(4040), + [aux_sym_preproc_if_token3] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493499,57 +493534,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3286), [sym_preproc_define] = STATE(3286), [sym_preproc_undef] = STATE(3286), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [anon_sym_DQUOTE] = ACTIONS(4931), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [anon_sym_SEMI] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_RBRACK] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_RPAREN] = ACTIONS(5417), + [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_in] = ACTIONS(5419), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_EQ_GT] = ACTIONS(5417), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_when] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_into] = ACTIONS(5417), + [anon_sym_on] = ACTIONS(5417), + [anon_sym_equals] = ACTIONS(5417), + [anon_sym_by] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5417), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), + [aux_sym_preproc_if_token3] = ACTIONS(5417), + [aux_sym_preproc_else_token1] = ACTIONS(5417), + [aux_sym_preproc_elif_token1] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493571,57 +493606,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3287), [sym_preproc_define] = STATE(3287), [sym_preproc_undef] = STATE(3287), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_COLON] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5136), - [anon_sym_RBRACK] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5136), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_QMARK] = ACTIONS(5138), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_GT_GT_GT] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5136), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_EQ_GT] = ACTIONS(5136), - [anon_sym_switch] = ACTIONS(5136), - [anon_sym_when] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_QMARK_QMARK] = ACTIONS(5136), - [anon_sym_into] = ACTIONS(5136), - [anon_sym_on] = ACTIONS(5136), - [anon_sym_equals] = ACTIONS(5136), - [anon_sym_by] = ACTIONS(5136), - [anon_sym_as] = ACTIONS(5136), - [anon_sym_is] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5136), - [anon_sym_with] = ACTIONS(5136), - [aux_sym_preproc_if_token3] = ACTIONS(5136), - [aux_sym_preproc_else_token1] = ACTIONS(5136), - [aux_sym_preproc_elif_token1] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5021), + [anon_sym_QMARK] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_AMP] = ACTIONS(5021), + [anon_sym_LT_LT] = ACTIONS(5019), + [anon_sym_GT_GT] = ACTIONS(5021), + [anon_sym_GT_GT_GT] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_EQ_GT] = ACTIONS(5019), + [anon_sym_switch] = ACTIONS(5019), + [anon_sym_when] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_and] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_QMARK_QMARK] = ACTIONS(5019), + [anon_sym_into] = ACTIONS(5019), + [anon_sym_on] = ACTIONS(5019), + [anon_sym_equals] = ACTIONS(5019), + [anon_sym_by] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [aux_sym_preproc_if_token3] = ACTIONS(5019), + [aux_sym_preproc_else_token1] = ACTIONS(5019), + [aux_sym_preproc_elif_token1] = ACTIONS(5019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493643,57 +493678,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3288), [sym_preproc_define] = STATE(3288), [sym_preproc_undef] = STATE(3288), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5158), - [anon_sym_in] = ACTIONS(5158), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5158), - [anon_sym_GT_GT_GT] = ACTIONS(5156), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_EQ_GT] = ACTIONS(5156), - [anon_sym_switch] = ACTIONS(5156), - [anon_sym_when] = ACTIONS(5156), - [anon_sym_DOT_DOT] = ACTIONS(5156), - [anon_sym_and] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_QMARK_QMARK] = ACTIONS(5156), - [anon_sym_into] = ACTIONS(5156), - [anon_sym_on] = ACTIONS(5156), - [anon_sym_equals] = ACTIONS(5156), - [anon_sym_by] = ACTIONS(5156), - [anon_sym_as] = ACTIONS(5156), - [anon_sym_is] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [anon_sym_with] = ACTIONS(5156), - [aux_sym_preproc_if_token3] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4144), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4144), + [anon_sym_EQ_EQ] = ACTIONS(4144), + [anon_sym_BANG_EQ] = ACTIONS(4144), + [anon_sym_GT_EQ] = ACTIONS(4144), + [anon_sym_LT_EQ] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_EQ_GT] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_when] = ACTIONS(4144), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4144), + [anon_sym_or] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4144), + [anon_sym_on] = ACTIONS(4144), + [anon_sym_equals] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4144), + [anon_sym_with] = ACTIONS(4144), + [aux_sym_preproc_if_token3] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493715,57 +493750,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3289), [sym_preproc_define] = STATE(3289), [sym_preproc_undef] = STATE(3289), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RBRACK] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_in] = ACTIONS(5166), - [anon_sym_QMARK] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5164), - [anon_sym_CARET] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_LT_LT] = ACTIONS(5164), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_GT_GT_GT] = ACTIONS(5164), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_EQ_GT] = ACTIONS(5164), - [anon_sym_switch] = ACTIONS(5164), - [anon_sym_when] = ACTIONS(5164), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [anon_sym_and] = ACTIONS(5164), - [anon_sym_or] = ACTIONS(5164), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_QMARK_QMARK] = ACTIONS(5164), - [anon_sym_into] = ACTIONS(5164), - [anon_sym_on] = ACTIONS(5164), - [anon_sym_equals] = ACTIONS(5164), - [anon_sym_by] = ACTIONS(5164), - [anon_sym_as] = ACTIONS(5164), - [anon_sym_is] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), - [anon_sym_with] = ACTIONS(5164), - [aux_sym_preproc_if_token3] = ACTIONS(5164), - [aux_sym_preproc_else_token1] = ACTIONS(5164), - [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_LT_LT] = ACTIONS(5199), + [anon_sym_GT_GT] = ACTIONS(5201), + [anon_sym_GT_GT_GT] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5201), + [anon_sym_EQ_GT] = ACTIONS(5199), + [anon_sym_switch] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_and] = ACTIONS(5199), + [anon_sym_or] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_QMARK_QMARK] = ACTIONS(5199), + [anon_sym_into] = ACTIONS(5199), + [anon_sym_on] = ACTIONS(5199), + [anon_sym_equals] = ACTIONS(5199), + [anon_sym_by] = ACTIONS(5199), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5199), + [anon_sym_with] = ACTIONS(5199), + [aux_sym_preproc_if_token3] = ACTIONS(5199), + [aux_sym_preproc_else_token1] = ACTIONS(5199), + [aux_sym_preproc_elif_token1] = ACTIONS(5199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493787,57 +493822,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3290), [sym_preproc_define] = STATE(3290), [sym_preproc_undef] = STATE(3290), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COLON] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RBRACK] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_in] = ACTIONS(5170), - [anon_sym_QMARK] = ACTIONS(5170), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_CARET] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5170), - [anon_sym_GT_GT_GT] = ACTIONS(5168), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_EQ_GT] = ACTIONS(5168), - [anon_sym_switch] = ACTIONS(5168), - [anon_sym_when] = ACTIONS(5168), - [anon_sym_DOT_DOT] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5168), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_QMARK_QMARK] = ACTIONS(5168), - [anon_sym_into] = ACTIONS(5168), - [anon_sym_on] = ACTIONS(5168), - [anon_sym_equals] = ACTIONS(5168), - [anon_sym_by] = ACTIONS(5168), - [anon_sym_as] = ACTIONS(5168), - [anon_sym_is] = ACTIONS(5168), - [anon_sym_DASH_GT] = ACTIONS(5168), - [anon_sym_with] = ACTIONS(5168), - [aux_sym_preproc_if_token3] = ACTIONS(5168), - [aux_sym_preproc_else_token1] = ACTIONS(5168), - [aux_sym_preproc_elif_token1] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_COLON] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5043), + [anon_sym_DASH_DASH] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_CARET] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5043), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_GT_GT_GT] = ACTIONS(5043), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_GT_EQ] = ACTIONS(5043), + [anon_sym_LT_EQ] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5045), + [anon_sym_EQ_GT] = ACTIONS(5043), + [anon_sym_switch] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_and] = ACTIONS(5043), + [anon_sym_or] = ACTIONS(5043), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_QMARK_QMARK] = ACTIONS(5043), + [anon_sym_on] = ACTIONS(5043), + [anon_sym_equals] = ACTIONS(5043), + [anon_sym_by] = ACTIONS(5043), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5043), + [anon_sym_with] = ACTIONS(5043), + [anon_sym_DQUOTE] = ACTIONS(5043), + [aux_sym_preproc_if_token3] = ACTIONS(5043), + [aux_sym_preproc_else_token1] = ACTIONS(5043), + [aux_sym_preproc_elif_token1] = ACTIONS(5043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493859,57 +493894,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3291), [sym_preproc_define] = STATE(3291), [sym_preproc_undef] = STATE(3291), - [anon_sym_SEMI] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5182), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5180), - [anon_sym_PIPE] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_LT_LT] = ACTIONS(5180), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_GT_GT_GT] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5180), - [anon_sym_BANG_EQ] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5180), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_EQ_GT] = ACTIONS(5180), - [anon_sym_switch] = ACTIONS(5180), - [anon_sym_when] = ACTIONS(5180), - [anon_sym_DOT_DOT] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5180), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_QMARK_QMARK] = ACTIONS(5180), - [anon_sym_into] = ACTIONS(5180), - [anon_sym_on] = ACTIONS(5180), - [anon_sym_equals] = ACTIONS(5180), - [anon_sym_by] = ACTIONS(5180), - [anon_sym_as] = ACTIONS(5180), - [anon_sym_is] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5180), - [anon_sym_with] = ACTIONS(5180), - [aux_sym_preproc_if_token3] = ACTIONS(5180), - [aux_sym_preproc_else_token1] = ACTIONS(5180), - [aux_sym_preproc_elif_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_COLON] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_QMARK] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5191), + [anon_sym_DASH_DASH] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_CARET] = ACTIONS(5191), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_AMP] = ACTIONS(5193), + [anon_sym_LT_LT] = ACTIONS(5191), + [anon_sym_GT_GT] = ACTIONS(5193), + [anon_sym_GT_GT_GT] = ACTIONS(5191), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_GT_EQ] = ACTIONS(5191), + [anon_sym_LT_EQ] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_EQ_GT] = ACTIONS(5191), + [anon_sym_switch] = ACTIONS(5191), + [anon_sym_when] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5191), + [anon_sym_and] = ACTIONS(5191), + [anon_sym_or] = ACTIONS(5191), + [anon_sym_AMP_AMP] = ACTIONS(5191), + [anon_sym_PIPE_PIPE] = ACTIONS(5191), + [anon_sym_QMARK_QMARK] = ACTIONS(5191), + [anon_sym_into] = ACTIONS(5191), + [anon_sym_on] = ACTIONS(5191), + [anon_sym_equals] = ACTIONS(5191), + [anon_sym_by] = ACTIONS(5191), + [anon_sym_as] = ACTIONS(5191), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), + [anon_sym_with] = ACTIONS(5191), + [aux_sym_preproc_if_token3] = ACTIONS(5191), + [aux_sym_preproc_else_token1] = ACTIONS(5191), + [aux_sym_preproc_elif_token1] = ACTIONS(5191), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493931,57 +493966,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3292), [sym_preproc_define] = STATE(3292), [sym_preproc_undef] = STATE(3292), - [anon_sym_SEMI] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_RBRACK] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5188), - [anon_sym_RPAREN] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_in] = ACTIONS(5190), - [anon_sym_QMARK] = ACTIONS(5190), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_PLUS_PLUS] = ACTIONS(5188), - [anon_sym_DASH_DASH] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_CARET] = ACTIONS(5188), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5188), - [anon_sym_GT_GT] = ACTIONS(5190), - [anon_sym_GT_GT_GT] = ACTIONS(5188), - [anon_sym_EQ_EQ] = ACTIONS(5188), - [anon_sym_BANG_EQ] = ACTIONS(5188), - [anon_sym_GT_EQ] = ACTIONS(5188), - [anon_sym_LT_EQ] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_EQ_GT] = ACTIONS(5188), - [anon_sym_switch] = ACTIONS(5188), - [anon_sym_when] = ACTIONS(5188), - [anon_sym_DOT_DOT] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_QMARK_QMARK] = ACTIONS(5188), - [anon_sym_into] = ACTIONS(5188), - [anon_sym_on] = ACTIONS(5188), - [anon_sym_equals] = ACTIONS(5188), - [anon_sym_by] = ACTIONS(5188), - [anon_sym_as] = ACTIONS(5188), - [anon_sym_is] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_with] = ACTIONS(5188), - [aux_sym_preproc_if_token3] = ACTIONS(5188), - [aux_sym_preproc_else_token1] = ACTIONS(5188), - [aux_sym_preproc_elif_token1] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_when] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_into] = ACTIONS(2983), + [anon_sym_on] = ACTIONS(2983), + [anon_sym_equals] = ACTIONS(2983), + [anon_sym_by] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [aux_sym_preproc_if_token3] = ACTIONS(2983), + [aux_sym_preproc_else_token1] = ACTIONS(2983), + [aux_sym_preproc_elif_token1] = ACTIONS(2983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494003,57 +494038,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3293), [sym_preproc_define] = STATE(3293), [sym_preproc_undef] = STATE(3293), - [anon_sym_SEMI] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_COMMA] = ACTIONS(5224), - [anon_sym_RBRACK] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5224), - [anon_sym_RPAREN] = ACTIONS(5224), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_in] = ACTIONS(5226), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_BANG] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_SLASH] = ACTIONS(5226), - [anon_sym_PERCENT] = ACTIONS(5224), - [anon_sym_CARET] = ACTIONS(5224), - [anon_sym_PIPE] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5224), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_GT_GT_GT] = ACTIONS(5224), - [anon_sym_EQ_EQ] = ACTIONS(5224), - [anon_sym_BANG_EQ] = ACTIONS(5224), - [anon_sym_GT_EQ] = ACTIONS(5224), - [anon_sym_LT_EQ] = ACTIONS(5224), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_EQ_GT] = ACTIONS(5224), - [anon_sym_switch] = ACTIONS(5224), - [anon_sym_when] = ACTIONS(5224), - [anon_sym_DOT_DOT] = ACTIONS(5224), - [anon_sym_and] = ACTIONS(5224), - [anon_sym_or] = ACTIONS(5224), - [anon_sym_AMP_AMP] = ACTIONS(5224), - [anon_sym_PIPE_PIPE] = ACTIONS(5224), - [anon_sym_QMARK_QMARK] = ACTIONS(5224), - [anon_sym_into] = ACTIONS(5224), - [anon_sym_on] = ACTIONS(5224), - [anon_sym_equals] = ACTIONS(5224), - [anon_sym_by] = ACTIONS(5224), - [anon_sym_as] = ACTIONS(5224), - [anon_sym_is] = ACTIONS(5224), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_with] = ACTIONS(5224), - [aux_sym_preproc_if_token3] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_COMMA] = ACTIONS(5421), + [anon_sym_RBRACK] = ACTIONS(5421), + [anon_sym_LPAREN] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_RBRACE] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_in] = ACTIONS(5423), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_BANG] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5423), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5423), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5423), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_GT_GT_GT] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5421), + [anon_sym_BANG_EQ] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5421), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_DOT] = ACTIONS(5423), + [anon_sym_EQ_GT] = ACTIONS(5421), + [anon_sym_switch] = ACTIONS(5421), + [anon_sym_when] = ACTIONS(5421), + [anon_sym_DOT_DOT] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_QMARK_QMARK] = ACTIONS(5421), + [anon_sym_into] = ACTIONS(5421), + [anon_sym_on] = ACTIONS(5421), + [anon_sym_equals] = ACTIONS(5421), + [anon_sym_by] = ACTIONS(5421), + [anon_sym_as] = ACTIONS(5421), + [anon_sym_is] = ACTIONS(5421), + [anon_sym_DASH_GT] = ACTIONS(5421), + [anon_sym_with] = ACTIONS(5421), + [aux_sym_preproc_if_token3] = ACTIONS(5421), + [aux_sym_preproc_else_token1] = ACTIONS(5421), + [aux_sym_preproc_elif_token1] = ACTIONS(5421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494075,57 +494110,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3294), [sym_preproc_define] = STATE(3294), [sym_preproc_undef] = STATE(3294), - [anon_sym_SEMI] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COMMA] = ACTIONS(5236), - [anon_sym_RBRACK] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_in] = ACTIONS(5238), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_BANG] = ACTIONS(5238), - [anon_sym_PLUS_PLUS] = ACTIONS(5236), - [anon_sym_DASH_DASH] = ACTIONS(5236), - [anon_sym_PLUS] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5236), - [anon_sym_SLASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_CARET] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5236), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_GT_GT_GT] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [anon_sym_GT_EQ] = ACTIONS(5236), - [anon_sym_LT_EQ] = ACTIONS(5236), - [anon_sym_DOT] = ACTIONS(5238), - [anon_sym_EQ_GT] = ACTIONS(5236), - [anon_sym_switch] = ACTIONS(5236), - [anon_sym_when] = ACTIONS(5236), - [anon_sym_DOT_DOT] = ACTIONS(5236), - [anon_sym_and] = ACTIONS(5236), - [anon_sym_or] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_QMARK_QMARK] = ACTIONS(5236), - [anon_sym_into] = ACTIONS(5236), - [anon_sym_on] = ACTIONS(5236), - [anon_sym_equals] = ACTIONS(5236), - [anon_sym_by] = ACTIONS(5236), - [anon_sym_as] = ACTIONS(5236), - [anon_sym_is] = ACTIONS(5236), - [anon_sym_DASH_GT] = ACTIONS(5236), - [anon_sym_with] = ACTIONS(5236), - [aux_sym_preproc_if_token3] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_GT_GT_GT] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_EQ_GT] = ACTIONS(5125), + [anon_sym_switch] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_QMARK_QMARK] = ACTIONS(5125), + [anon_sym_into] = ACTIONS(5125), + [anon_sym_on] = ACTIONS(5125), + [anon_sym_equals] = ACTIONS(5125), + [anon_sym_by] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [anon_sym_with] = ACTIONS(5125), + [aux_sym_preproc_if_token3] = ACTIONS(5125), + [aux_sym_preproc_else_token1] = ACTIONS(5125), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494147,57 +494182,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3295), [sym_preproc_define] = STATE(3295), [sym_preproc_undef] = STATE(3295), - [anon_sym_SEMI] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COMMA] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_RBRACE] = ACTIONS(3708), - [anon_sym_LT] = ACTIONS(3697), - [anon_sym_GT] = ACTIONS(3697), - [anon_sym_in] = ACTIONS(3708), - [anon_sym_QMARK] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3697), - [anon_sym_PLUS_PLUS] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3697), - [anon_sym_DASH] = ACTIONS(3697), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3697), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(3697), - [anon_sym_GT_GT_GT] = ACTIONS(3708), - [anon_sym_EQ_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_GT_EQ] = ACTIONS(3708), - [anon_sym_LT_EQ] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_EQ_GT] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_when] = ACTIONS(3708), - [anon_sym_DOT_DOT] = ACTIONS(3708), - [anon_sym_and] = ACTIONS(3708), - [anon_sym_or] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(3708), - [anon_sym_PIPE_PIPE] = ACTIONS(3708), - [anon_sym_QMARK_QMARK] = ACTIONS(3708), - [anon_sym_on] = ACTIONS(3708), - [anon_sym_equals] = ACTIONS(3708), - [anon_sym_by] = ACTIONS(3708), - [anon_sym_as] = ACTIONS(3708), - [anon_sym_is] = ACTIONS(3708), - [anon_sym_DASH_GT] = ACTIONS(3708), - [anon_sym_with] = ACTIONS(3708), - [aux_sym_preproc_if_token3] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_COMMA] = ACTIONS(5425), + [anon_sym_RBRACK] = ACTIONS(5425), + [anon_sym_LPAREN] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_in] = ACTIONS(5427), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_BANG] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5427), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5427), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_GT_GT_GT] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5425), + [anon_sym_BANG_EQ] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5425), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_DOT] = ACTIONS(5427), + [anon_sym_EQ_GT] = ACTIONS(5425), + [anon_sym_switch] = ACTIONS(5425), + [anon_sym_when] = ACTIONS(5425), + [anon_sym_DOT_DOT] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_QMARK_QMARK] = ACTIONS(5425), + [anon_sym_into] = ACTIONS(5425), + [anon_sym_on] = ACTIONS(5425), + [anon_sym_equals] = ACTIONS(5425), + [anon_sym_by] = ACTIONS(5425), + [anon_sym_as] = ACTIONS(5425), + [anon_sym_is] = ACTIONS(5425), + [anon_sym_DASH_GT] = ACTIONS(5425), + [anon_sym_with] = ACTIONS(5425), + [aux_sym_preproc_if_token3] = ACTIONS(5425), + [aux_sym_preproc_else_token1] = ACTIONS(5425), + [aux_sym_preproc_elif_token1] = ACTIONS(5425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494219,57 +494254,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3296), [sym_preproc_define] = STATE(3296), [sym_preproc_undef] = STATE(3296), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_RBRACK] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_RPAREN] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_QMARK] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5095), + [anon_sym_AMP] = ACTIONS(5095), + [anon_sym_LT_LT] = ACTIONS(5093), + [anon_sym_GT_GT] = ACTIONS(5095), + [anon_sym_GT_GT_GT] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_EQ_GT] = ACTIONS(5093), + [anon_sym_switch] = ACTIONS(5093), + [anon_sym_when] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_and] = ACTIONS(5093), + [anon_sym_or] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_QMARK_QMARK] = ACTIONS(5093), + [anon_sym_into] = ACTIONS(5093), + [anon_sym_on] = ACTIONS(5093), + [anon_sym_equals] = ACTIONS(5093), + [anon_sym_by] = ACTIONS(5093), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5093), + [anon_sym_with] = ACTIONS(5093), + [aux_sym_preproc_if_token3] = ACTIONS(5093), + [aux_sym_preproc_else_token1] = ACTIONS(5093), + [aux_sym_preproc_elif_token1] = ACTIONS(5093), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494291,57 +494326,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3297), [sym_preproc_define] = STATE(3297), [sym_preproc_undef] = STATE(3297), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(5392), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_RBRACK] = ACTIONS(5429), + [anon_sym_LPAREN] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_in] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_BANG] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_GT_GT_GT] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_EQ_GT] = ACTIONS(5429), + [anon_sym_switch] = ACTIONS(5429), + [anon_sym_when] = ACTIONS(5429), + [anon_sym_DOT_DOT] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_QMARK_QMARK] = ACTIONS(5429), + [anon_sym_into] = ACTIONS(5429), + [anon_sym_on] = ACTIONS(5429), + [anon_sym_equals] = ACTIONS(5429), + [anon_sym_by] = ACTIONS(5429), + [anon_sym_as] = ACTIONS(5429), + [anon_sym_is] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [anon_sym_with] = ACTIONS(5429), + [aux_sym_preproc_if_token3] = ACTIONS(5429), + [aux_sym_preproc_else_token1] = ACTIONS(5429), + [aux_sym_preproc_elif_token1] = ACTIONS(5429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494363,57 +494398,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3298), [sym_preproc_define] = STATE(3298), [sym_preproc_undef] = STATE(3298), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_RBRACK] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_RPAREN] = ACTIONS(5433), + [anon_sym_RBRACE] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_in] = ACTIONS(5435), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_EQ_GT] = ACTIONS(5433), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_when] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_into] = ACTIONS(5433), + [anon_sym_on] = ACTIONS(5433), + [anon_sym_equals] = ACTIONS(5433), + [anon_sym_by] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5433), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), + [aux_sym_preproc_if_token3] = ACTIONS(5433), + [aux_sym_preproc_else_token1] = ACTIONS(5433), + [aux_sym_preproc_elif_token1] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494435,57 +494470,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3299), [sym_preproc_define] = STATE(3299), [sym_preproc_undef] = STATE(3299), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(5392), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4967), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494498,7 +494533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3300] = { - [sym_type_argument_list] = STATE(2954), [sym_preproc_region] = STATE(3300), [sym_preproc_endregion] = STATE(3300), [sym_preproc_line] = STATE(3300), @@ -494508,56 +494542,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3300), [sym_preproc_define] = STATE(3300), [sym_preproc_undef] = STATE(3300), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3680), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_COLON_COLON] = ACTIONS(5395), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COLON] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_RPAREN] = ACTIONS(5437), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_in] = ACTIONS(5439), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_EQ_GT] = ACTIONS(5437), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_when] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_into] = ACTIONS(5437), + [anon_sym_on] = ACTIONS(5437), + [anon_sym_equals] = ACTIONS(5437), + [anon_sym_by] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5437), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), + [aux_sym_preproc_if_token3] = ACTIONS(5437), + [aux_sym_preproc_else_token1] = ACTIONS(5437), + [aux_sym_preproc_elif_token1] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494579,57 +494614,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3301), [sym_preproc_define] = STATE(3301), [sym_preproc_undef] = STATE(3301), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4015), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(5441), + [anon_sym_LBRACK] = ACTIONS(5441), + [anon_sym_COLON] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(5441), + [anon_sym_RBRACK] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_RPAREN] = ACTIONS(5441), + [anon_sym_RBRACE] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5443), + [anon_sym_GT] = ACTIONS(5443), + [anon_sym_in] = ACTIONS(5443), + [anon_sym_QMARK] = ACTIONS(5443), + [anon_sym_BANG] = ACTIONS(5443), + [anon_sym_PLUS_PLUS] = ACTIONS(5441), + [anon_sym_DASH_DASH] = ACTIONS(5441), + [anon_sym_PLUS] = ACTIONS(5443), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(5441), + [anon_sym_SLASH] = ACTIONS(5443), + [anon_sym_PERCENT] = ACTIONS(5441), + [anon_sym_CARET] = ACTIONS(5441), + [anon_sym_PIPE] = ACTIONS(5443), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym_LT_LT] = ACTIONS(5441), + [anon_sym_GT_GT] = ACTIONS(5443), + [anon_sym_GT_GT_GT] = ACTIONS(5441), + [anon_sym_EQ_EQ] = ACTIONS(5441), + [anon_sym_BANG_EQ] = ACTIONS(5441), + [anon_sym_GT_EQ] = ACTIONS(5441), + [anon_sym_LT_EQ] = ACTIONS(5441), + [anon_sym_DOT] = ACTIONS(5443), + [anon_sym_EQ_GT] = ACTIONS(5441), + [anon_sym_switch] = ACTIONS(5441), + [anon_sym_when] = ACTIONS(5441), + [anon_sym_DOT_DOT] = ACTIONS(5441), + [anon_sym_and] = ACTIONS(5441), + [anon_sym_or] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_PIPE_PIPE] = ACTIONS(5441), + [anon_sym_QMARK_QMARK] = ACTIONS(5441), + [anon_sym_into] = ACTIONS(5441), + [anon_sym_on] = ACTIONS(5441), + [anon_sym_equals] = ACTIONS(5441), + [anon_sym_by] = ACTIONS(5441), + [anon_sym_as] = ACTIONS(5441), + [anon_sym_is] = ACTIONS(5441), + [anon_sym_DASH_GT] = ACTIONS(5441), + [anon_sym_with] = ACTIONS(5441), + [aux_sym_preproc_if_token3] = ACTIONS(5441), + [aux_sym_preproc_else_token1] = ACTIONS(5441), + [aux_sym_preproc_elif_token1] = ACTIONS(5441), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494651,57 +494686,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3302), [sym_preproc_define] = STATE(3302), [sym_preproc_undef] = STATE(3302), - [anon_sym_SEMI] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym_LT] = ACTIONS(4025), - [anon_sym_GT] = ACTIONS(4025), - [anon_sym_in] = ACTIONS(4027), - [anon_sym_QMARK] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4027), - [anon_sym_DASH_DASH] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4025), - [anon_sym_DASH] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(4025), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_LT_LT] = ACTIONS(4027), - [anon_sym_GT_GT] = ACTIONS(4025), - [anon_sym_GT_GT_GT] = ACTIONS(4027), - [anon_sym_EQ_EQ] = ACTIONS(4027), - [anon_sym_BANG_EQ] = ACTIONS(4027), - [anon_sym_GT_EQ] = ACTIONS(4027), - [anon_sym_LT_EQ] = ACTIONS(4027), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_EQ_GT] = ACTIONS(4027), - [anon_sym_switch] = ACTIONS(4027), - [anon_sym_when] = ACTIONS(4027), - [anon_sym_DOT_DOT] = ACTIONS(4027), - [anon_sym_and] = ACTIONS(4027), - [anon_sym_or] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4027), - [anon_sym_PIPE_PIPE] = ACTIONS(4027), - [anon_sym_QMARK_QMARK] = ACTIONS(4027), - [anon_sym_on] = ACTIONS(4027), - [anon_sym_equals] = ACTIONS(4027), - [anon_sym_by] = ACTIONS(4027), - [anon_sym_as] = ACTIONS(4027), - [anon_sym_is] = ACTIONS(4027), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_with] = ACTIONS(4027), - [aux_sym_preproc_if_token3] = ACTIONS(4027), - [aux_sym_preproc_else_token1] = ACTIONS(4027), - [aux_sym_preproc_elif_token1] = ACTIONS(4027), + [anon_sym_SEMI] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_COLON] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_QMARK] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5115), + [anon_sym_GT_GT_GT] = ACTIONS(5113), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_EQ_GT] = ACTIONS(5113), + [anon_sym_switch] = ACTIONS(5113), + [anon_sym_when] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_and] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5113), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_QMARK_QMARK] = ACTIONS(5113), + [anon_sym_into] = ACTIONS(5113), + [anon_sym_on] = ACTIONS(5113), + [anon_sym_equals] = ACTIONS(5113), + [anon_sym_by] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [anon_sym_with] = ACTIONS(5113), + [aux_sym_preproc_if_token3] = ACTIONS(5113), + [aux_sym_preproc_else_token1] = ACTIONS(5113), + [aux_sym_preproc_elif_token1] = ACTIONS(5113), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494723,57 +494758,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3303), [sym_preproc_define] = STATE(3303), [sym_preproc_undef] = STATE(3303), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4031), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5447), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494795,57 +494830,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3304), [sym_preproc_define] = STATE(3304), [sym_preproc_undef] = STATE(3304), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_RBRACK] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4142), - [anon_sym_GT] = ACTIONS(4142), - [anon_sym_in] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4142), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_SLASH] = ACTIONS(4142), - [anon_sym_PERCENT] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_PIPE] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4142), - [anon_sym_LT_LT] = ACTIONS(4144), - [anon_sym_GT_GT] = ACTIONS(4142), - [anon_sym_GT_GT_GT] = ACTIONS(4144), - [anon_sym_EQ_EQ] = ACTIONS(4144), - [anon_sym_BANG_EQ] = ACTIONS(4144), - [anon_sym_GT_EQ] = ACTIONS(4144), - [anon_sym_LT_EQ] = ACTIONS(4144), - [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_EQ_GT] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_when] = ACTIONS(4144), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_or] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4144), - [anon_sym_on] = ACTIONS(4144), - [anon_sym_equals] = ACTIONS(4144), - [anon_sym_by] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [anon_sym_with] = ACTIONS(4144), - [aux_sym_preproc_if_token3] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4020), + [anon_sym_LT] = ACTIONS(4018), + [anon_sym_GT] = ACTIONS(4018), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LT_LT] = ACTIONS(4020), + [anon_sym_GT_GT] = ACTIONS(4018), + [anon_sym_GT_GT_GT] = ACTIONS(4020), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_GT_EQ] = ACTIONS(4020), + [anon_sym_LT_EQ] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_and] = ACTIONS(4020), + [anon_sym_or] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4020), + [anon_sym_QMARK_QMARK] = ACTIONS(4020), + [anon_sym_on] = ACTIONS(4020), + [anon_sym_equals] = ACTIONS(4020), + [anon_sym_by] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4020), + [anon_sym_with] = ACTIONS(4020), + [aux_sym_preproc_if_token3] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494867,57 +494902,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3305), [sym_preproc_define] = STATE(3305), [sym_preproc_undef] = STATE(3305), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4045), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COMMA] = ACTIONS(4045), - [anon_sym_RBRACK] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4043), - [anon_sym_GT] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4045), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4045), - [anon_sym_DASH_DASH] = ACTIONS(4045), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4045), - [anon_sym_SLASH] = ACTIONS(4043), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_CARET] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_GT_GT_GT] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4045), - [anon_sym_GT_EQ] = ACTIONS(4045), - [anon_sym_LT_EQ] = ACTIONS(4045), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_switch] = ACTIONS(4045), - [anon_sym_when] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4045), - [anon_sym_and] = ACTIONS(4045), - [anon_sym_or] = ACTIONS(4045), - [anon_sym_AMP_AMP] = ACTIONS(4045), - [anon_sym_PIPE_PIPE] = ACTIONS(4045), - [anon_sym_QMARK_QMARK] = ACTIONS(4045), - [anon_sym_on] = ACTIONS(4045), - [anon_sym_equals] = ACTIONS(4045), - [anon_sym_by] = ACTIONS(4045), - [anon_sym_as] = ACTIONS(4045), - [anon_sym_is] = ACTIONS(4045), - [anon_sym_DASH_GT] = ACTIONS(4045), - [anon_sym_with] = ACTIONS(4045), - [aux_sym_preproc_if_token3] = ACTIONS(4045), - [aux_sym_preproc_else_token1] = ACTIONS(4045), - [aux_sym_preproc_elif_token1] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_RBRACK] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_in] = ACTIONS(4943), + [anon_sym_QMARK] = ACTIONS(4945), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4945), + [anon_sym_LT_LT] = ACTIONS(4943), + [anon_sym_GT_GT] = ACTIONS(4945), + [anon_sym_GT_GT_GT] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_EQ_GT] = ACTIONS(4943), + [anon_sym_switch] = ACTIONS(4943), + [anon_sym_when] = ACTIONS(4943), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_and] = ACTIONS(4943), + [anon_sym_or] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_QMARK_QMARK] = ACTIONS(4943), + [anon_sym_on] = ACTIONS(4943), + [anon_sym_equals] = ACTIONS(4943), + [anon_sym_by] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4943), + [anon_sym_DASH_GT] = ACTIONS(4943), + [anon_sym_with] = ACTIONS(4943), + [aux_sym_raw_string_literal_token1] = ACTIONS(5449), + [aux_sym_preproc_if_token3] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4943), + [aux_sym_preproc_elif_token1] = ACTIONS(4943), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494939,57 +494974,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3306), [sym_preproc_define] = STATE(3306), [sym_preproc_undef] = STATE(3306), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_COMMA] = ACTIONS(4054), + [anon_sym_RBRACK] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(4052), + [anon_sym_GT] = ACTIONS(4052), + [anon_sym_in] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_LT] = ACTIONS(4054), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_EQ_GT] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_when] = ACTIONS(4054), + [anon_sym_DOT_DOT] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_or] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_PIPE_PIPE] = ACTIONS(4054), + [anon_sym_QMARK_QMARK] = ACTIONS(4054), + [anon_sym_on] = ACTIONS(4054), + [anon_sym_equals] = ACTIONS(4054), + [anon_sym_by] = ACTIONS(4054), + [anon_sym_as] = ACTIONS(4054), + [anon_sym_is] = ACTIONS(4054), + [anon_sym_DASH_GT] = ACTIONS(4054), + [anon_sym_with] = ACTIONS(4054), + [aux_sym_preproc_if_token3] = ACTIONS(4054), + [aux_sym_preproc_else_token1] = ACTIONS(4054), + [aux_sym_preproc_elif_token1] = ACTIONS(4054), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495011,57 +495046,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3307), [sym_preproc_define] = STATE(3307), [sym_preproc_undef] = STATE(3307), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_in] = ACTIONS(3945), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_LT] = ACTIONS(3945), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3945), - [anon_sym_switch] = ACTIONS(3945), - [anon_sym_when] = ACTIONS(3945), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [anon_sym_and] = ACTIONS(3945), - [anon_sym_or] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_QMARK_QMARK] = ACTIONS(3945), - [anon_sym_on] = ACTIONS(3945), - [anon_sym_equals] = ACTIONS(3945), - [anon_sym_by] = ACTIONS(3945), - [anon_sym_as] = ACTIONS(3945), - [anon_sym_is] = ACTIONS(3945), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_with] = ACTIONS(3945), - [aux_sym_preproc_if_token3] = ACTIONS(3945), - [aux_sym_preproc_else_token1] = ACTIONS(3945), - [aux_sym_preproc_elif_token1] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_COLON] = ACTIONS(5451), + [anon_sym_COMMA] = ACTIONS(5451), + [anon_sym_RBRACK] = ACTIONS(5451), + [anon_sym_LPAREN] = ACTIONS(5451), + [anon_sym_RPAREN] = ACTIONS(5451), + [anon_sym_RBRACE] = ACTIONS(5451), + [anon_sym_LT] = ACTIONS(5453), + [anon_sym_GT] = ACTIONS(5453), + [anon_sym_in] = ACTIONS(5453), + [anon_sym_QMARK] = ACTIONS(5453), + [anon_sym_BANG] = ACTIONS(5453), + [anon_sym_PLUS_PLUS] = ACTIONS(5451), + [anon_sym_DASH_DASH] = ACTIONS(5451), + [anon_sym_PLUS] = ACTIONS(5453), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_STAR] = ACTIONS(5451), + [anon_sym_SLASH] = ACTIONS(5453), + [anon_sym_PERCENT] = ACTIONS(5451), + [anon_sym_CARET] = ACTIONS(5451), + [anon_sym_PIPE] = ACTIONS(5453), + [anon_sym_AMP] = ACTIONS(5453), + [anon_sym_LT_LT] = ACTIONS(5451), + [anon_sym_GT_GT] = ACTIONS(5453), + [anon_sym_GT_GT_GT] = ACTIONS(5451), + [anon_sym_EQ_EQ] = ACTIONS(5451), + [anon_sym_BANG_EQ] = ACTIONS(5451), + [anon_sym_GT_EQ] = ACTIONS(5451), + [anon_sym_LT_EQ] = ACTIONS(5451), + [anon_sym_DOT] = ACTIONS(5453), + [anon_sym_EQ_GT] = ACTIONS(5451), + [anon_sym_switch] = ACTIONS(5451), + [anon_sym_when] = ACTIONS(5451), + [anon_sym_DOT_DOT] = ACTIONS(5451), + [anon_sym_and] = ACTIONS(5451), + [anon_sym_or] = ACTIONS(5451), + [anon_sym_AMP_AMP] = ACTIONS(5451), + [anon_sym_PIPE_PIPE] = ACTIONS(5451), + [anon_sym_QMARK_QMARK] = ACTIONS(5451), + [anon_sym_into] = ACTIONS(5451), + [anon_sym_on] = ACTIONS(5451), + [anon_sym_equals] = ACTIONS(5451), + [anon_sym_by] = ACTIONS(5451), + [anon_sym_as] = ACTIONS(5451), + [anon_sym_is] = ACTIONS(5451), + [anon_sym_DASH_GT] = ACTIONS(5451), + [anon_sym_with] = ACTIONS(5451), + [aux_sym_preproc_if_token3] = ACTIONS(5451), + [aux_sym_preproc_else_token1] = ACTIONS(5451), + [aux_sym_preproc_elif_token1] = ACTIONS(5451), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495083,57 +495118,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3308), [sym_preproc_define] = STATE(3308), [sym_preproc_undef] = STATE(3308), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_when] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_QMARK] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5119), + [anon_sym_GT_GT_GT] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_EQ_GT] = ACTIONS(5117), + [anon_sym_switch] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_and] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_QMARK_QMARK] = ACTIONS(5117), + [anon_sym_into] = ACTIONS(5117), + [anon_sym_on] = ACTIONS(5117), + [anon_sym_equals] = ACTIONS(5117), + [anon_sym_by] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [anon_sym_with] = ACTIONS(5117), + [aux_sym_preproc_if_token3] = ACTIONS(5117), + [aux_sym_preproc_else_token1] = ACTIONS(5117), + [aux_sym_preproc_elif_token1] = ACTIONS(5117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495155,57 +495190,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3309), [sym_preproc_define] = STATE(3309), [sym_preproc_undef] = STATE(3309), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4158), - [anon_sym_COMMA] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_in] = ACTIONS(4158), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(4156), - [anon_sym_PERCENT] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), - [anon_sym_PIPE] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_LT] = ACTIONS(4158), - [anon_sym_GT_GT] = ACTIONS(4156), - [anon_sym_GT_GT_GT] = ACTIONS(4158), - [anon_sym_EQ_EQ] = ACTIONS(4158), - [anon_sym_BANG_EQ] = ACTIONS(4158), - [anon_sym_GT_EQ] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_EQ_GT] = ACTIONS(4158), - [anon_sym_switch] = ACTIONS(4158), - [anon_sym_when] = ACTIONS(4158), - [anon_sym_DOT_DOT] = ACTIONS(4158), - [anon_sym_and] = ACTIONS(4158), - [anon_sym_or] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_PIPE_PIPE] = ACTIONS(4158), - [anon_sym_QMARK_QMARK] = ACTIONS(4158), - [anon_sym_on] = ACTIONS(4158), - [anon_sym_equals] = ACTIONS(4158), - [anon_sym_by] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_is] = ACTIONS(4158), - [anon_sym_DASH_GT] = ACTIONS(4158), - [anon_sym_with] = ACTIONS(4158), - [aux_sym_preproc_if_token3] = ACTIONS(4158), - [aux_sym_preproc_else_token1] = ACTIONS(4158), - [aux_sym_preproc_elif_token1] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_RBRACK] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_in] = ACTIONS(5455), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_when] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_into] = ACTIONS(3881), + [anon_sym_on] = ACTIONS(3881), + [anon_sym_equals] = ACTIONS(3881), + [anon_sym_by] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(3881), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), + [aux_sym_preproc_if_token3] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495227,57 +495262,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3310), [sym_preproc_define] = STATE(3310), [sym_preproc_undef] = STATE(3310), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_COLON] = ACTIONS(4100), - [anon_sym_COMMA] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym_RPAREN] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4100), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_in] = ACTIONS(4100), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_LT] = ACTIONS(4100), - [anon_sym_GT_GT] = ACTIONS(4098), - [anon_sym_GT_GT_GT] = ACTIONS(4100), - [anon_sym_EQ_EQ] = ACTIONS(4100), - [anon_sym_BANG_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_EQ_GT] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_when] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4100), - [anon_sym_and] = ACTIONS(4100), - [anon_sym_or] = ACTIONS(4100), - [anon_sym_AMP_AMP] = ACTIONS(4100), - [anon_sym_PIPE_PIPE] = ACTIONS(4100), - [anon_sym_QMARK_QMARK] = ACTIONS(4100), - [anon_sym_on] = ACTIONS(4100), - [anon_sym_equals] = ACTIONS(4100), - [anon_sym_by] = ACTIONS(4100), - [anon_sym_as] = ACTIONS(4100), - [anon_sym_is] = ACTIONS(4100), - [anon_sym_DASH_GT] = ACTIONS(4100), - [anon_sym_with] = ACTIONS(4100), - [aux_sym_preproc_if_token3] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(5457), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495299,57 +495334,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3311), [sym_preproc_define] = STATE(3311), [sym_preproc_undef] = STATE(3311), - [anon_sym_SEMI] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_in] = ACTIONS(3721), - [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3721), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3719), - [anon_sym_GT_GT_GT] = ACTIONS(3721), - [anon_sym_EQ_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3719), - [anon_sym_EQ_GT] = ACTIONS(3721), - [anon_sym_switch] = ACTIONS(3721), - [anon_sym_when] = ACTIONS(3721), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3721), - [anon_sym_or] = ACTIONS(3721), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3721), - [anon_sym_on] = ACTIONS(3721), - [anon_sym_equals] = ACTIONS(3721), - [anon_sym_by] = ACTIONS(3721), - [anon_sym_as] = ACTIONS(3721), - [anon_sym_is] = ACTIONS(3721), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3721), - [aux_sym_preproc_if_token3] = ACTIONS(3721), - [aux_sym_preproc_else_token1] = ACTIONS(3721), - [aux_sym_preproc_elif_token1] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_GT_GT_GT] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_EQ_GT] = ACTIONS(5121), + [anon_sym_switch] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_and] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_QMARK_QMARK] = ACTIONS(5121), + [anon_sym_into] = ACTIONS(5121), + [anon_sym_on] = ACTIONS(5121), + [anon_sym_equals] = ACTIONS(5121), + [anon_sym_by] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [anon_sym_with] = ACTIONS(5121), + [aux_sym_preproc_if_token3] = ACTIONS(5121), + [aux_sym_preproc_else_token1] = ACTIONS(5121), + [aux_sym_preproc_elif_token1] = ACTIONS(5121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495371,57 +495406,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3312), [sym_preproc_define] = STATE(3312), [sym_preproc_undef] = STATE(3312), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_COLON] = ACTIONS(4096), - [anon_sym_COMMA] = ACTIONS(4096), - [anon_sym_RBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(4094), - [anon_sym_GT] = ACTIONS(4094), - [anon_sym_in] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_PERCENT] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - [anon_sym_LT_LT] = ACTIONS(4096), - [anon_sym_GT_GT] = ACTIONS(4094), - [anon_sym_GT_GT_GT] = ACTIONS(4096), - [anon_sym_EQ_EQ] = ACTIONS(4096), - [anon_sym_BANG_EQ] = ACTIONS(4096), - [anon_sym_GT_EQ] = ACTIONS(4096), - [anon_sym_LT_EQ] = ACTIONS(4096), - [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_EQ_GT] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_when] = ACTIONS(4096), - [anon_sym_DOT_DOT] = ACTIONS(4096), - [anon_sym_and] = ACTIONS(4096), - [anon_sym_or] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [anon_sym_QMARK_QMARK] = ACTIONS(4096), - [anon_sym_on] = ACTIONS(4096), - [anon_sym_equals] = ACTIONS(4096), - [anon_sym_by] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4096), - [anon_sym_is] = ACTIONS(4096), - [anon_sym_DASH_GT] = ACTIONS(4096), - [anon_sym_with] = ACTIONS(4096), - [aux_sym_preproc_if_token3] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5459), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495443,57 +495478,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3313), [sym_preproc_define] = STATE(3313), [sym_preproc_undef] = STATE(3313), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LT] = ACTIONS(4119), - [anon_sym_GT] = ACTIONS(4119), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4121), - [anon_sym_CARET] = ACTIONS(4121), - [anon_sym_PIPE] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4121), - [anon_sym_GT_GT] = ACTIONS(4119), - [anon_sym_GT_GT_GT] = ACTIONS(4121), - [anon_sym_EQ_EQ] = ACTIONS(4121), - [anon_sym_BANG_EQ] = ACTIONS(4121), - [anon_sym_GT_EQ] = ACTIONS(4121), - [anon_sym_LT_EQ] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_EQ_GT] = ACTIONS(4121), - [anon_sym_switch] = ACTIONS(4121), - [anon_sym_when] = ACTIONS(4121), - [anon_sym_DOT_DOT] = ACTIONS(4121), - [anon_sym_and] = ACTIONS(4121), - [anon_sym_or] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_PIPE_PIPE] = ACTIONS(4121), - [anon_sym_QMARK_QMARK] = ACTIONS(4121), - [anon_sym_on] = ACTIONS(4121), - [anon_sym_equals] = ACTIONS(4121), - [anon_sym_by] = ACTIONS(4121), - [anon_sym_as] = ACTIONS(4121), - [anon_sym_is] = ACTIONS(4121), - [anon_sym_DASH_GT] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - [aux_sym_preproc_if_token3] = ACTIONS(4121), - [aux_sym_preproc_else_token1] = ACTIONS(4121), - [aux_sym_preproc_elif_token1] = ACTIONS(4121), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5461), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495506,9 +495541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3314] = { - [sym_modifier] = STATE(3702), - [sym_identifier] = STATE(6499), - [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3314), [sym_preproc_endregion] = STATE(3314), [sym_preproc_line] = STATE(3314), @@ -495518,54 +495550,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3314), [sym_preproc_define] = STATE(3314), [sym_preproc_undef] = STATE(3314), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3568), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4787), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4787), - [anon_sym_static] = ACTIONS(4787), - [anon_sym_abstract] = ACTIONS(4787), - [anon_sym_async] = ACTIONS(4787), - [anon_sym_const] = ACTIONS(4787), - [anon_sym_file] = ACTIONS(4793), - [anon_sym_fixed] = ACTIONS(4787), - [anon_sym_internal] = ACTIONS(4787), - [anon_sym_new] = ACTIONS(4787), - [anon_sym_override] = ACTIONS(4787), - [anon_sym_partial] = ACTIONS(4787), - [anon_sym_private] = ACTIONS(4787), - [anon_sym_protected] = ACTIONS(4787), - [anon_sym_public] = ACTIONS(4787), - [anon_sym_readonly] = ACTIONS(4787), - [anon_sym_required] = ACTIONS(4787), - [anon_sym_sealed] = ACTIONS(4787), - [anon_sym_virtual] = ACTIONS(4787), - [anon_sym_volatile] = ACTIONS(4787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5134), - [anon_sym_set] = ACTIONS(5134), - [anon_sym_add] = ACTIONS(5134), - [anon_sym_remove] = ACTIONS(5134), - [anon_sym_init] = ACTIONS(5134), - [anon_sym_scoped] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_when] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_when] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495587,57 +495622,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3315), [sym_preproc_define] = STATE(3315), [sym_preproc_undef] = STATE(3315), - [anon_sym_SEMI] = ACTIONS(4023), - [anon_sym_LBRACK] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_RBRACE] = ACTIONS(4023), - [anon_sym_LT] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(4021), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4021), - [anon_sym_PLUS_PLUS] = ACTIONS(4023), - [anon_sym_DASH_DASH] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4021), - [anon_sym_AMP] = ACTIONS(4021), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4021), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4023), - [anon_sym_BANG_EQ] = ACTIONS(4023), - [anon_sym_GT_EQ] = ACTIONS(4023), - [anon_sym_LT_EQ] = ACTIONS(4023), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_EQ_GT] = ACTIONS(4023), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4023), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_QMARK_QMARK] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_with] = ACTIONS(4023), - [aux_sym_preproc_if_token3] = ACTIONS(4023), - [aux_sym_preproc_else_token1] = ACTIONS(4023), - [aux_sym_preproc_elif_token1] = ACTIONS(4023), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_RBRACK] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4293), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_EQ_GT] = ACTIONS(4291), + [anon_sym_switch] = ACTIONS(4291), + [anon_sym_when] = ACTIONS(4291), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4291), + [anon_sym_or] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_into] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_equals] = ACTIONS(4291), + [anon_sym_by] = ACTIONS(4291), + [anon_sym_as] = ACTIONS(4291), + [anon_sym_is] = ACTIONS(4291), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4291), + [aux_sym_preproc_if_token3] = ACTIONS(4291), + [aux_sym_preproc_else_token1] = ACTIONS(4291), + [aux_sym_preproc_elif_token1] = ACTIONS(4291), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495659,57 +495694,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3316), [sym_preproc_define] = STATE(3316), [sym_preproc_undef] = STATE(3316), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_COMMA] = ACTIONS(4162), - [anon_sym_RBRACK] = ACTIONS(4162), - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_RPAREN] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4160), - [anon_sym_GT] = ACTIONS(4160), - [anon_sym_in] = ACTIONS(4162), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_SLASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4162), - [anon_sym_CARET] = ACTIONS(4162), - [anon_sym_PIPE] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_LT] = ACTIONS(4162), - [anon_sym_GT_GT] = ACTIONS(4160), - [anon_sym_GT_GT_GT] = ACTIONS(4162), - [anon_sym_EQ_EQ] = ACTIONS(4162), - [anon_sym_BANG_EQ] = ACTIONS(4162), - [anon_sym_GT_EQ] = ACTIONS(4162), - [anon_sym_LT_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_EQ_GT] = ACTIONS(4162), - [anon_sym_switch] = ACTIONS(4162), - [anon_sym_when] = ACTIONS(4162), - [anon_sym_DOT_DOT] = ACTIONS(4162), - [anon_sym_and] = ACTIONS(4162), - [anon_sym_or] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(4162), - [anon_sym_QMARK_QMARK] = ACTIONS(4162), - [anon_sym_on] = ACTIONS(4162), - [anon_sym_equals] = ACTIONS(4162), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_as] = ACTIONS(4162), - [anon_sym_is] = ACTIONS(4162), - [anon_sym_DASH_GT] = ACTIONS(4162), - [anon_sym_with] = ACTIONS(4162), - [aux_sym_preproc_if_token3] = ACTIONS(4162), - [aux_sym_preproc_else_token1] = ACTIONS(4162), - [aux_sym_preproc_elif_token1] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_QMARK] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_AMP] = ACTIONS(5147), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5147), + [anon_sym_GT_GT_GT] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_EQ_GT] = ACTIONS(5145), + [anon_sym_switch] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_QMARK_QMARK] = ACTIONS(5145), + [anon_sym_into] = ACTIONS(5145), + [anon_sym_on] = ACTIONS(5145), + [anon_sym_equals] = ACTIONS(5145), + [anon_sym_by] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [anon_sym_with] = ACTIONS(5145), + [aux_sym_preproc_if_token3] = ACTIONS(5145), + [aux_sym_preproc_else_token1] = ACTIONS(5145), + [aux_sym_preproc_elif_token1] = ACTIONS(5145), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495731,57 +495766,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3317), [sym_preproc_define] = STATE(3317), [sym_preproc_undef] = STATE(3317), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_COLON] = ACTIONS(4054), - [anon_sym_COMMA] = ACTIONS(4054), - [anon_sym_RBRACK] = ACTIONS(4054), - [anon_sym_LPAREN] = ACTIONS(4054), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_LT] = ACTIONS(4052), - [anon_sym_GT] = ACTIONS(4052), - [anon_sym_in] = ACTIONS(4054), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4054), - [anon_sym_SLASH] = ACTIONS(4052), - [anon_sym_PERCENT] = ACTIONS(4054), - [anon_sym_CARET] = ACTIONS(4054), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_LT] = ACTIONS(4054), - [anon_sym_GT_GT] = ACTIONS(4052), - [anon_sym_GT_GT_GT] = ACTIONS(4054), - [anon_sym_EQ_EQ] = ACTIONS(4054), - [anon_sym_BANG_EQ] = ACTIONS(4054), - [anon_sym_GT_EQ] = ACTIONS(4054), - [anon_sym_LT_EQ] = ACTIONS(4054), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_EQ_GT] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_when] = ACTIONS(4054), - [anon_sym_DOT_DOT] = ACTIONS(4054), - [anon_sym_and] = ACTIONS(4054), - [anon_sym_or] = ACTIONS(4054), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4054), - [anon_sym_QMARK_QMARK] = ACTIONS(4054), - [anon_sym_on] = ACTIONS(4054), - [anon_sym_equals] = ACTIONS(4054), - [anon_sym_by] = ACTIONS(4054), - [anon_sym_as] = ACTIONS(4054), - [anon_sym_is] = ACTIONS(4054), - [anon_sym_DASH_GT] = ACTIONS(4054), - [anon_sym_with] = ACTIONS(4054), - [aux_sym_preproc_if_token3] = ACTIONS(4054), - [aux_sym_preproc_else_token1] = ACTIONS(4054), - [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_in] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_GT_GT_GT] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_EQ_GT] = ACTIONS(5234), + [anon_sym_switch] = ACTIONS(5234), + [anon_sym_when] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(5234), + [anon_sym_and] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_QMARK_QMARK] = ACTIONS(5234), + [anon_sym_into] = ACTIONS(5234), + [anon_sym_on] = ACTIONS(5234), + [anon_sym_equals] = ACTIONS(5234), + [anon_sym_by] = ACTIONS(5234), + [anon_sym_as] = ACTIONS(5234), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_with] = ACTIONS(5234), + [aux_sym_preproc_if_token3] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5234), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495803,57 +495838,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3318), [sym_preproc_define] = STATE(3318), [sym_preproc_undef] = STATE(3318), - [anon_sym_SEMI] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_RBRACK] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_LT] = ACTIONS(4017), - [anon_sym_GT] = ACTIONS(4017), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_PLUS_PLUS] = ACTIONS(4019), - [anon_sym_DASH_DASH] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_SLASH] = ACTIONS(4017), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_LT] = ACTIONS(4019), - [anon_sym_GT_GT] = ACTIONS(4017), - [anon_sym_GT_GT_GT] = ACTIONS(4019), - [anon_sym_EQ_EQ] = ACTIONS(4019), - [anon_sym_BANG_EQ] = ACTIONS(4019), - [anon_sym_GT_EQ] = ACTIONS(4019), - [anon_sym_LT_EQ] = ACTIONS(4019), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_EQ_GT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(4019), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_AMP_AMP] = ACTIONS(4019), - [anon_sym_PIPE_PIPE] = ACTIONS(4019), - [anon_sym_QMARK_QMARK] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4019), - [anon_sym_equals] = ACTIONS(4019), - [anon_sym_by] = ACTIONS(4019), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_with] = ACTIONS(4019), - [aux_sym_preproc_if_token3] = ACTIONS(4019), - [aux_sym_preproc_else_token1] = ACTIONS(4019), - [aux_sym_preproc_elif_token1] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_GT_GT_GT] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_EQ_GT] = ACTIONS(5129), + [anon_sym_switch] = ACTIONS(5129), + [anon_sym_when] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_and] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_QMARK_QMARK] = ACTIONS(5129), + [anon_sym_into] = ACTIONS(5129), + [anon_sym_on] = ACTIONS(5129), + [anon_sym_equals] = ACTIONS(5129), + [anon_sym_by] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [anon_sym_with] = ACTIONS(5129), + [aux_sym_preproc_if_token3] = ACTIONS(5129), + [aux_sym_preproc_else_token1] = ACTIONS(5129), + [aux_sym_preproc_elif_token1] = ACTIONS(5129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495875,57 +495910,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3319), [sym_preproc_define] = STATE(3319), [sym_preproc_undef] = STATE(3319), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5033), - [anon_sym_QMARK] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5031), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_GT_GT_GT] = ACTIONS(5031), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_EQ_GT] = ACTIONS(5031), - [anon_sym_switch] = ACTIONS(5031), - [anon_sym_when] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_and] = ACTIONS(5031), - [anon_sym_or] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_QMARK_QMARK] = ACTIONS(5031), - [anon_sym_into] = ACTIONS(5031), - [anon_sym_on] = ACTIONS(5031), - [anon_sym_equals] = ACTIONS(5031), - [anon_sym_by] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5031), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_DASH_GT] = ACTIONS(5031), - [anon_sym_with] = ACTIONS(5031), - [aux_sym_preproc_if_token3] = ACTIONS(5031), - [aux_sym_preproc_else_token1] = ACTIONS(5031), - [aux_sym_preproc_elif_token1] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_in] = ACTIONS(5244), + [anon_sym_QMARK] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_GT_GT_GT] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_EQ_GT] = ACTIONS(5242), + [anon_sym_switch] = ACTIONS(5242), + [anon_sym_when] = ACTIONS(5242), + [anon_sym_DOT_DOT] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5242), + [anon_sym_AMP_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [anon_sym_QMARK_QMARK] = ACTIONS(5242), + [anon_sym_into] = ACTIONS(5242), + [anon_sym_on] = ACTIONS(5242), + [anon_sym_equals] = ACTIONS(5242), + [anon_sym_by] = ACTIONS(5242), + [anon_sym_as] = ACTIONS(5242), + [anon_sym_is] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_with] = ACTIONS(5242), + [aux_sym_preproc_if_token3] = ACTIONS(5242), + [aux_sym_preproc_else_token1] = ACTIONS(5242), + [aux_sym_preproc_elif_token1] = ACTIONS(5242), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495947,57 +495982,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3320), [sym_preproc_define] = STATE(3320), [sym_preproc_undef] = STATE(3320), - [anon_sym_SEMI] = ACTIONS(5254), - [anon_sym_LBRACK] = ACTIONS(5254), - [anon_sym_COLON] = ACTIONS(5254), - [anon_sym_COMMA] = ACTIONS(5254), - [anon_sym_RBRACK] = ACTIONS(5254), - [anon_sym_LPAREN] = ACTIONS(5254), - [anon_sym_RPAREN] = ACTIONS(5254), - [anon_sym_RBRACE] = ACTIONS(5254), - [anon_sym_LT] = ACTIONS(5256), - [anon_sym_GT] = ACTIONS(5256), - [anon_sym_in] = ACTIONS(5256), - [anon_sym_QMARK] = ACTIONS(5256), - [anon_sym_BANG] = ACTIONS(5256), - [anon_sym_PLUS_PLUS] = ACTIONS(5254), - [anon_sym_DASH_DASH] = ACTIONS(5254), - [anon_sym_PLUS] = ACTIONS(5256), - [anon_sym_DASH] = ACTIONS(5256), - [anon_sym_STAR] = ACTIONS(5254), - [anon_sym_SLASH] = ACTIONS(5256), - [anon_sym_PERCENT] = ACTIONS(5254), - [anon_sym_CARET] = ACTIONS(5254), - [anon_sym_PIPE] = ACTIONS(5256), - [anon_sym_AMP] = ACTIONS(5256), - [anon_sym_LT_LT] = ACTIONS(5254), - [anon_sym_GT_GT] = ACTIONS(5256), - [anon_sym_GT_GT_GT] = ACTIONS(5254), - [anon_sym_EQ_EQ] = ACTIONS(5254), - [anon_sym_BANG_EQ] = ACTIONS(5254), - [anon_sym_GT_EQ] = ACTIONS(5254), - [anon_sym_LT_EQ] = ACTIONS(5254), - [anon_sym_DOT] = ACTIONS(5256), - [anon_sym_EQ_GT] = ACTIONS(5254), - [anon_sym_switch] = ACTIONS(5254), - [anon_sym_when] = ACTIONS(5254), - [anon_sym_DOT_DOT] = ACTIONS(5254), - [anon_sym_and] = ACTIONS(5254), - [anon_sym_or] = ACTIONS(5254), - [anon_sym_AMP_AMP] = ACTIONS(5254), - [anon_sym_PIPE_PIPE] = ACTIONS(5254), - [anon_sym_QMARK_QMARK] = ACTIONS(5254), - [anon_sym_into] = ACTIONS(5254), - [anon_sym_on] = ACTIONS(5254), - [anon_sym_equals] = ACTIONS(5254), - [anon_sym_by] = ACTIONS(5254), - [anon_sym_as] = ACTIONS(5254), - [anon_sym_is] = ACTIONS(5254), - [anon_sym_DASH_GT] = ACTIONS(5254), - [anon_sym_with] = ACTIONS(5254), - [aux_sym_preproc_if_token3] = ACTIONS(5254), - [aux_sym_preproc_else_token1] = ACTIONS(5254), - [aux_sym_preproc_elif_token1] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_COLON] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5069), + [anon_sym_QMARK] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(5069), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5069), + [anon_sym_GT_GT_GT] = ACTIONS(5067), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5069), + [anon_sym_EQ_GT] = ACTIONS(5067), + [anon_sym_switch] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5067), + [anon_sym_and] = ACTIONS(5067), + [anon_sym_or] = ACTIONS(5067), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_QMARK_QMARK] = ACTIONS(5067), + [anon_sym_into] = ACTIONS(5067), + [anon_sym_on] = ACTIONS(5067), + [anon_sym_equals] = ACTIONS(5067), + [anon_sym_by] = ACTIONS(5067), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5067), + [anon_sym_with] = ACTIONS(5067), + [aux_sym_preproc_if_token3] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496019,57 +496054,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3321), [sym_preproc_define] = STATE(3321), [sym_preproc_undef] = STATE(3321), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_in] = ACTIONS(1975), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_when] = ACTIONS(1977), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_and] = ACTIONS(1977), - [anon_sym_or] = ACTIONS(1977), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), - [anon_sym_into] = ACTIONS(1977), - [anon_sym_on] = ACTIONS(1977), - [anon_sym_equals] = ACTIONS(1977), - [anon_sym_by] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_is] = ACTIONS(1977), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), - [aux_sym_preproc_if_token3] = ACTIONS(1977), - [aux_sym_preproc_else_token1] = ACTIONS(1977), - [aux_sym_preproc_elif_token1] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_COLON] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_in] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_GT_GT_GT] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_EQ_GT] = ACTIONS(5246), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_when] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_or] = ACTIONS(5246), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_PIPE_PIPE] = ACTIONS(5246), + [anon_sym_QMARK_QMARK] = ACTIONS(5246), + [anon_sym_into] = ACTIONS(5246), + [anon_sym_on] = ACTIONS(5246), + [anon_sym_equals] = ACTIONS(5246), + [anon_sym_by] = ACTIONS(5246), + [anon_sym_as] = ACTIONS(5246), + [anon_sym_is] = ACTIONS(5246), + [anon_sym_DASH_GT] = ACTIONS(5246), + [anon_sym_with] = ACTIONS(5246), + [aux_sym_preproc_if_token3] = ACTIONS(5246), + [aux_sym_preproc_else_token1] = ACTIONS(5246), + [aux_sym_preproc_elif_token1] = ACTIONS(5246), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496091,57 +496126,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3322), [sym_preproc_define] = STATE(3322), [sym_preproc_undef] = STATE(3322), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_CARET] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_LT_LT] = ACTIONS(5091), - [anon_sym_GT_GT] = ACTIONS(5093), - [anon_sym_GT_GT_GT] = ACTIONS(5091), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_GT_EQ] = ACTIONS(5091), - [anon_sym_LT_EQ] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_EQ_GT] = ACTIONS(5091), - [anon_sym_switch] = ACTIONS(5091), - [anon_sym_when] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5091), - [anon_sym_and] = ACTIONS(5091), - [anon_sym_or] = ACTIONS(5091), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_QMARK_QMARK] = ACTIONS(5091), - [anon_sym_into] = ACTIONS(5091), - [anon_sym_on] = ACTIONS(5091), - [anon_sym_equals] = ACTIONS(5091), - [anon_sym_by] = ACTIONS(5091), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_DASH_GT] = ACTIONS(5091), - [anon_sym_with] = ACTIONS(5091), - [aux_sym_preproc_if_token3] = ACTIONS(5091), - [aux_sym_preproc_else_token1] = ACTIONS(5091), - [aux_sym_preproc_elif_token1] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4032), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_GT_GT_GT] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4032), + [anon_sym_GT_EQ] = ACTIONS(4032), + [anon_sym_LT_EQ] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_EQ_GT] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_when] = ACTIONS(4032), + [anon_sym_DOT_DOT] = ACTIONS(4032), + [anon_sym_and] = ACTIONS(4032), + [anon_sym_or] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [anon_sym_QMARK_QMARK] = ACTIONS(4032), + [anon_sym_on] = ACTIONS(4032), + [anon_sym_equals] = ACTIONS(4032), + [anon_sym_by] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_is] = ACTIONS(4032), + [anon_sym_DASH_GT] = ACTIONS(4032), + [anon_sym_with] = ACTIONS(4032), + [aux_sym_preproc_if_token3] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496154,7 +496189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3323] = { - [sym_initializer_expression] = STATE(3447), [sym_preproc_region] = STATE(3323), [sym_preproc_endregion] = STATE(3323), [sym_preproc_line] = STATE(3323), @@ -496164,56 +496198,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3323), [sym_preproc_define] = STATE(3323), [sym_preproc_undef] = STATE(3323), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(5399), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(5402), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_when] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_COLON] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5049), + [anon_sym_QMARK] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_CARET] = ACTIONS(5047), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_AMP] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(5047), + [anon_sym_GT_GT] = ACTIONS(5049), + [anon_sym_GT_GT_GT] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_EQ_GT] = ACTIONS(5047), + [anon_sym_switch] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_and] = ACTIONS(5047), + [anon_sym_or] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_QMARK_QMARK] = ACTIONS(5047), + [anon_sym_into] = ACTIONS(5047), + [anon_sym_on] = ACTIONS(5047), + [anon_sym_equals] = ACTIONS(5047), + [anon_sym_by] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5047), + [anon_sym_with] = ACTIONS(5047), + [aux_sym_preproc_if_token3] = ACTIONS(5047), + [aux_sym_preproc_else_token1] = ACTIONS(5047), + [aux_sym_preproc_elif_token1] = ACTIONS(5047), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496235,57 +496270,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3324), [sym_preproc_define] = STATE(3324), [sym_preproc_undef] = STATE(3324), - [anon_sym_SEMI] = ACTIONS(4949), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_in] = ACTIONS(4949), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4949), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_GT_GT_GT] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_EQ_GT] = ACTIONS(4949), - [anon_sym_switch] = ACTIONS(4949), - [anon_sym_when] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_and] = ACTIONS(4949), - [anon_sym_or] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_QMARK_QMARK] = ACTIONS(4949), - [anon_sym_on] = ACTIONS(4949), - [anon_sym_equals] = ACTIONS(4949), - [anon_sym_by] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4949), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_DASH_GT] = ACTIONS(4949), - [anon_sym_with] = ACTIONS(4949), - [aux_sym_raw_string_literal_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token3] = ACTIONS(4949), - [aux_sym_preproc_else_token1] = ACTIONS(4949), - [aux_sym_preproc_elif_token1] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_QMARK] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5137), + [anon_sym_AMP] = ACTIONS(5137), + [anon_sym_LT_LT] = ACTIONS(5135), + [anon_sym_GT_GT] = ACTIONS(5137), + [anon_sym_GT_GT_GT] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_EQ_GT] = ACTIONS(5135), + [anon_sym_switch] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_and] = ACTIONS(5135), + [anon_sym_or] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_QMARK_QMARK] = ACTIONS(5135), + [anon_sym_into] = ACTIONS(5135), + [anon_sym_on] = ACTIONS(5135), + [anon_sym_equals] = ACTIONS(5135), + [anon_sym_by] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_with] = ACTIONS(5135), + [aux_sym_preproc_if_token3] = ACTIONS(5135), + [aux_sym_preproc_else_token1] = ACTIONS(5135), + [aux_sym_preproc_elif_token1] = ACTIONS(5135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496307,57 +496342,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3325), [sym_preproc_define] = STATE(3325), [sym_preproc_undef] = STATE(3325), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_when] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_QMARK] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_AMP] = ACTIONS(5155), + [anon_sym_LT_LT] = ACTIONS(5153), + [anon_sym_GT_GT] = ACTIONS(5155), + [anon_sym_GT_GT_GT] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_EQ_GT] = ACTIONS(5153), + [anon_sym_switch] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_and] = ACTIONS(5153), + [anon_sym_or] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_QMARK_QMARK] = ACTIONS(5153), + [anon_sym_into] = ACTIONS(5153), + [anon_sym_on] = ACTIONS(5153), + [anon_sym_equals] = ACTIONS(5153), + [anon_sym_by] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5153), + [anon_sym_with] = ACTIONS(5153), + [aux_sym_preproc_if_token3] = ACTIONS(5153), + [aux_sym_preproc_else_token1] = ACTIONS(5153), + [aux_sym_preproc_elif_token1] = ACTIONS(5153), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496370,9 +496405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3326] = { - [sym_modifier] = STATE(3702), - [sym_identifier] = STATE(6473), - [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3326), [sym_preproc_endregion] = STATE(3326), [sym_preproc_line] = STATE(3326), @@ -496382,54 +496414,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3326), [sym_preproc_define] = STATE(3326), [sym_preproc_undef] = STATE(3326), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3568), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4787), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4787), - [anon_sym_static] = ACTIONS(4787), - [anon_sym_abstract] = ACTIONS(4787), - [anon_sym_async] = ACTIONS(4787), - [anon_sym_const] = ACTIONS(4787), - [anon_sym_file] = ACTIONS(4793), - [anon_sym_fixed] = ACTIONS(4787), - [anon_sym_internal] = ACTIONS(4787), - [anon_sym_new] = ACTIONS(4787), - [anon_sym_override] = ACTIONS(4787), - [anon_sym_partial] = ACTIONS(4787), - [anon_sym_private] = ACTIONS(4787), - [anon_sym_protected] = ACTIONS(4787), - [anon_sym_public] = ACTIONS(4787), - [anon_sym_readonly] = ACTIONS(4787), - [anon_sym_required] = ACTIONS(4787), - [anon_sym_sealed] = ACTIONS(4787), - [anon_sym_virtual] = ACTIONS(4787), - [anon_sym_volatile] = ACTIONS(4787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5408), - [anon_sym_set] = ACTIONS(5408), - [anon_sym_add] = ACTIONS(5408), - [anon_sym_remove] = ACTIONS(5408), - [anon_sym_init] = ACTIONS(5408), - [anon_sym_scoped] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_when] = ACTIONS(29), - [anon_sym_from] = ACTIONS(29), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_in] = ACTIONS(5252), + [anon_sym_QMARK] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_GT_GT_GT] = ACTIONS(5250), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_EQ_GT] = ACTIONS(5250), + [anon_sym_switch] = ACTIONS(5250), + [anon_sym_when] = ACTIONS(5250), + [anon_sym_DOT_DOT] = ACTIONS(5250), + [anon_sym_and] = ACTIONS(5250), + [anon_sym_or] = ACTIONS(5250), + [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(5250), + [anon_sym_QMARK_QMARK] = ACTIONS(5250), + [anon_sym_into] = ACTIONS(5250), + [anon_sym_on] = ACTIONS(5250), + [anon_sym_equals] = ACTIONS(5250), + [anon_sym_by] = ACTIONS(5250), + [anon_sym_as] = ACTIONS(5250), + [anon_sym_is] = ACTIONS(5250), + [anon_sym_DASH_GT] = ACTIONS(5250), + [anon_sym_with] = ACTIONS(5250), + [aux_sym_preproc_if_token3] = ACTIONS(5250), + [aux_sym_preproc_else_token1] = ACTIONS(5250), + [aux_sym_preproc_elif_token1] = ACTIONS(5250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496451,57 +496486,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3327), [sym_preproc_define] = STATE(3327), [sym_preproc_undef] = STATE(3327), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_COLON] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RBRACK] = ACTIONS(5204), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_RBRACE] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_in] = ACTIONS(5206), - [anon_sym_QMARK] = ACTIONS(5206), - [anon_sym_BANG] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5204), - [anon_sym_DASH_DASH] = ACTIONS(5204), - [anon_sym_PLUS] = ACTIONS(5206), - [anon_sym_DASH] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_SLASH] = ACTIONS(5206), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_CARET] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_GT_GT_GT] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(5206), - [anon_sym_EQ_GT] = ACTIONS(5204), - [anon_sym_switch] = ACTIONS(5204), - [anon_sym_when] = ACTIONS(5204), - [anon_sym_DOT_DOT] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_QMARK_QMARK] = ACTIONS(5204), - [anon_sym_into] = ACTIONS(5204), - [anon_sym_on] = ACTIONS(5204), - [anon_sym_equals] = ACTIONS(5204), - [anon_sym_by] = ACTIONS(5204), - [anon_sym_as] = ACTIONS(5204), - [anon_sym_is] = ACTIONS(5204), - [anon_sym_DASH_GT] = ACTIONS(5204), - [anon_sym_with] = ACTIONS(5204), - [aux_sym_preproc_if_token3] = ACTIONS(5204), - [aux_sym_preproc_else_token1] = ACTIONS(5204), - [aux_sym_preproc_elif_token1] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5141), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5141), + [anon_sym_LT_LT] = ACTIONS(5139), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_GT_GT_GT] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_EQ_GT] = ACTIONS(5139), + [anon_sym_switch] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_and] = ACTIONS(5139), + [anon_sym_or] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_QMARK_QMARK] = ACTIONS(5139), + [anon_sym_into] = ACTIONS(5139), + [anon_sym_on] = ACTIONS(5139), + [anon_sym_equals] = ACTIONS(5139), + [anon_sym_by] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5139), + [anon_sym_with] = ACTIONS(5139), + [aux_sym_preproc_if_token3] = ACTIONS(5139), + [aux_sym_preproc_else_token1] = ACTIONS(5139), + [aux_sym_preproc_elif_token1] = ACTIONS(5139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496523,57 +496558,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3328), [sym_preproc_define] = STATE(3328), [sym_preproc_undef] = STATE(3328), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5410), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_COLON] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_in] = ACTIONS(5256), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_GT_GT_GT] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_EQ_GT] = ACTIONS(5254), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_when] = ACTIONS(5254), + [anon_sym_DOT_DOT] = ACTIONS(5254), + [anon_sym_and] = ACTIONS(5254), + [anon_sym_or] = ACTIONS(5254), + [anon_sym_AMP_AMP] = ACTIONS(5254), + [anon_sym_PIPE_PIPE] = ACTIONS(5254), + [anon_sym_QMARK_QMARK] = ACTIONS(5254), + [anon_sym_into] = ACTIONS(5254), + [anon_sym_on] = ACTIONS(5254), + [anon_sym_equals] = ACTIONS(5254), + [anon_sym_by] = ACTIONS(5254), + [anon_sym_as] = ACTIONS(5254), + [anon_sym_is] = ACTIONS(5254), + [anon_sym_DASH_GT] = ACTIONS(5254), + [anon_sym_with] = ACTIONS(5254), + [aux_sym_preproc_if_token3] = ACTIONS(5254), + [aux_sym_preproc_else_token1] = ACTIONS(5254), + [aux_sym_preproc_elif_token1] = ACTIONS(5254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496595,57 +496630,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3329), [sym_preproc_define] = STATE(3329), [sym_preproc_undef] = STATE(3329), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_RBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_in] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_EQ_GT] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_when] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_equals] = ACTIONS(3682), - [anon_sym_by] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [aux_sym_preproc_if_token3] = ACTIONS(3682), - [aux_sym_preproc_else_token1] = ACTIONS(3682), - [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [anon_sym_EQ] = ACTIONS(5463), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5465), + [anon_sym_DASH_EQ] = ACTIONS(5465), + [anon_sym_STAR_EQ] = ACTIONS(5465), + [anon_sym_SLASH_EQ] = ACTIONS(5465), + [anon_sym_PERCENT_EQ] = ACTIONS(5465), + [anon_sym_AMP_EQ] = ACTIONS(5465), + [anon_sym_CARET_EQ] = ACTIONS(5465), + [anon_sym_PIPE_EQ] = ACTIONS(5465), + [anon_sym_LT_LT_EQ] = ACTIONS(5465), + [anon_sym_GT_GT_EQ] = ACTIONS(5465), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5465), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5465), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496667,57 +496702,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3330), [sym_preproc_define] = STATE(3330), [sym_preproc_undef] = STATE(3330), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3672), - [anon_sym_RBRACK] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3672), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3672), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_EQ_GT] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_when] = ACTIONS(3672), - [anon_sym_DOT_DOT] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(3672), - [anon_sym_or] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_QMARK_QMARK] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_equals] = ACTIONS(3672), - [anon_sym_by] = ACTIONS(3672), - [anon_sym_as] = ACTIONS(3672), - [anon_sym_is] = ACTIONS(3672), - [anon_sym_DASH_GT] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [aux_sym_preproc_if_token3] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_QMARK] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5151), + [anon_sym_AMP] = ACTIONS(5151), + [anon_sym_LT_LT] = ACTIONS(5149), + [anon_sym_GT_GT] = ACTIONS(5151), + [anon_sym_GT_GT_GT] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_EQ_GT] = ACTIONS(5149), + [anon_sym_switch] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_and] = ACTIONS(5149), + [anon_sym_or] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_QMARK_QMARK] = ACTIONS(5149), + [anon_sym_into] = ACTIONS(5149), + [anon_sym_on] = ACTIONS(5149), + [anon_sym_equals] = ACTIONS(5149), + [anon_sym_by] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), + [anon_sym_with] = ACTIONS(5149), + [aux_sym_preproc_if_token3] = ACTIONS(5149), + [aux_sym_preproc_else_token1] = ACTIONS(5149), + [aux_sym_preproc_elif_token1] = ACTIONS(5149), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496739,57 +496774,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3331), [sym_preproc_define] = STATE(3331), [sym_preproc_undef] = STATE(3331), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_when] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_RBRACK] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_RPAREN] = ACTIONS(5417), + [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_in] = ACTIONS(5419), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_EQ_GT] = ACTIONS(5417), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_when] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_into] = ACTIONS(5417), + [anon_sym_on] = ACTIONS(5417), + [anon_sym_equals] = ACTIONS(5417), + [anon_sym_by] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5417), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), + [aux_sym_preproc_if_token3] = ACTIONS(5417), + [aux_sym_preproc_else_token1] = ACTIONS(5417), + [aux_sym_preproc_elif_token1] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496811,57 +496846,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3332), [sym_preproc_define] = STATE(3332), [sym_preproc_undef] = STATE(3332), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3150), - [anon_sym_QMARK] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(3150), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_and] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_into] = ACTIONS(3152), - [anon_sym_on] = ACTIONS(3152), - [anon_sym_equals] = ACTIONS(3152), - [anon_sym_by] = ACTIONS(3152), - [anon_sym_as] = ACTIONS(3152), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_COLON] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_QMARK] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5183), + [anon_sym_DASH_DASH] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_CARET] = ACTIONS(5183), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5185), + [anon_sym_LT_LT] = ACTIONS(5183), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_GT_GT_GT] = ACTIONS(5183), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_EQ_GT] = ACTIONS(5183), + [anon_sym_switch] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5183), + [anon_sym_AMP_AMP] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5183), + [anon_sym_QMARK_QMARK] = ACTIONS(5183), + [anon_sym_into] = ACTIONS(5183), + [anon_sym_on] = ACTIONS(5183), + [anon_sym_equals] = ACTIONS(5183), + [anon_sym_by] = ACTIONS(5183), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5183), + [anon_sym_with] = ACTIONS(5183), + [aux_sym_preproc_if_token3] = ACTIONS(5183), + [aux_sym_preproc_else_token1] = ACTIONS(5183), + [aux_sym_preproc_elif_token1] = ACTIONS(5183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496883,57 +496918,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3333), [sym_preproc_define] = STATE(3333), [sym_preproc_undef] = STATE(3333), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5049), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_GT_GT_GT] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_EQ_GT] = ACTIONS(5047), - [anon_sym_switch] = ACTIONS(5047), - [anon_sym_when] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_QMARK_QMARK] = ACTIONS(5047), - [anon_sym_into] = ACTIONS(5047), - [anon_sym_on] = ACTIONS(5047), - [anon_sym_equals] = ACTIONS(5047), - [anon_sym_by] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_DASH_GT] = ACTIONS(5047), - [anon_sym_with] = ACTIONS(5047), - [aux_sym_preproc_if_token3] = ACTIONS(5047), - [aux_sym_preproc_else_token1] = ACTIONS(5047), - [aux_sym_preproc_elif_token1] = ACTIONS(5047), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_record] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496955,57 +496990,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3334), [sym_preproc_define] = STATE(3334), [sym_preproc_undef] = STATE(3334), - [anon_sym_EQ] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5414), - [anon_sym_DASH_EQ] = ACTIONS(5414), - [anon_sym_STAR_EQ] = ACTIONS(5414), - [anon_sym_SLASH_EQ] = ACTIONS(5414), - [anon_sym_PERCENT_EQ] = ACTIONS(5414), - [anon_sym_AMP_EQ] = ACTIONS(5414), - [anon_sym_CARET_EQ] = ACTIONS(5414), - [anon_sym_PIPE_EQ] = ACTIONS(5414), - [anon_sym_LT_LT_EQ] = ACTIONS(5414), - [anon_sym_GT_GT_EQ] = ACTIONS(5414), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5414), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5414), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_in] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4977), + [anon_sym_BANG] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4975), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4975), + [anon_sym_CARET] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4975), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_GT_GT_GT] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_EQ_GT] = ACTIONS(4975), + [anon_sym_switch] = ACTIONS(4975), + [anon_sym_when] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_and] = ACTIONS(4975), + [anon_sym_or] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_QMARK_QMARK] = ACTIONS(4975), + [anon_sym_into] = ACTIONS(4975), + [anon_sym_on] = ACTIONS(4975), + [anon_sym_equals] = ACTIONS(4975), + [anon_sym_by] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_DASH_GT] = ACTIONS(4975), + [anon_sym_with] = ACTIONS(4975), + [aux_sym_preproc_if_token3] = ACTIONS(4975), + [aux_sym_preproc_else_token1] = ACTIONS(4975), + [aux_sym_preproc_elif_token1] = ACTIONS(4975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497027,57 +497062,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3335), [sym_preproc_define] = STATE(3335), [sym_preproc_undef] = STATE(3335), - [anon_sym_SEMI] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5416), - [anon_sym_COLON] = ACTIONS(5416), - [anon_sym_COMMA] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5416), - [anon_sym_RPAREN] = ACTIONS(5416), - [anon_sym_RBRACE] = ACTIONS(5416), - [anon_sym_LT] = ACTIONS(5418), - [anon_sym_GT] = ACTIONS(5418), - [anon_sym_in] = ACTIONS(5418), - [anon_sym_QMARK] = ACTIONS(5418), - [anon_sym_BANG] = ACTIONS(5418), - [anon_sym_PLUS_PLUS] = ACTIONS(5416), - [anon_sym_DASH_DASH] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_SLASH] = ACTIONS(5418), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_CARET] = ACTIONS(5416), - [anon_sym_PIPE] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_GT_GT] = ACTIONS(5418), - [anon_sym_GT_GT_GT] = ACTIONS(5416), - [anon_sym_EQ_EQ] = ACTIONS(5416), - [anon_sym_BANG_EQ] = ACTIONS(5416), - [anon_sym_GT_EQ] = ACTIONS(5416), - [anon_sym_LT_EQ] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_EQ_GT] = ACTIONS(5416), - [anon_sym_switch] = ACTIONS(5416), - [anon_sym_when] = ACTIONS(5416), - [anon_sym_DOT_DOT] = ACTIONS(5416), - [anon_sym_and] = ACTIONS(5416), - [anon_sym_or] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_PIPE_PIPE] = ACTIONS(5416), - [anon_sym_QMARK_QMARK] = ACTIONS(5416), - [anon_sym_into] = ACTIONS(5416), - [anon_sym_on] = ACTIONS(5416), - [anon_sym_equals] = ACTIONS(5416), - [anon_sym_by] = ACTIONS(5416), - [anon_sym_as] = ACTIONS(5416), - [anon_sym_is] = ACTIONS(5416), - [anon_sym_DASH_GT] = ACTIONS(5416), - [anon_sym_with] = ACTIONS(5416), - [aux_sym_preproc_if_token3] = ACTIONS(5416), - [aux_sym_preproc_else_token1] = ACTIONS(5416), - [aux_sym_preproc_elif_token1] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_RBRACK] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_RPAREN] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_in] = ACTIONS(5001), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_BANG] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_AMP] = ACTIONS(5001), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_GT_GT_GT] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_EQ_GT] = ACTIONS(4999), + [anon_sym_switch] = ACTIONS(4999), + [anon_sym_when] = ACTIONS(4999), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_QMARK_QMARK] = ACTIONS(4999), + [anon_sym_into] = ACTIONS(4999), + [anon_sym_on] = ACTIONS(4999), + [anon_sym_equals] = ACTIONS(4999), + [anon_sym_by] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4999), + [anon_sym_DASH_GT] = ACTIONS(4999), + [anon_sym_with] = ACTIONS(4999), + [aux_sym_preproc_if_token3] = ACTIONS(4999), + [aux_sym_preproc_else_token1] = ACTIONS(4999), + [aux_sym_preproc_elif_token1] = ACTIONS(4999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497099,57 +497134,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3336), [sym_preproc_define] = STATE(3336), [sym_preproc_undef] = STATE(3336), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_COLON] = ACTIONS(3686), - [anon_sym_COMMA] = ACTIONS(3686), - [anon_sym_RBRACK] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_RPAREN] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_PIPE] = ACTIONS(3684), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_LT] = ACTIONS(3686), - [anon_sym_GT_GT] = ACTIONS(3684), - [anon_sym_GT_GT_GT] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_BANG_EQ] = ACTIONS(3686), - [anon_sym_GT_EQ] = ACTIONS(3686), - [anon_sym_LT_EQ] = ACTIONS(3686), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_EQ_GT] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_when] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3686), - [anon_sym_and] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_QMARK_QMARK] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_equals] = ACTIONS(3686), - [anon_sym_by] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_is] = ACTIONS(3686), - [anon_sym_DASH_GT] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [aux_sym_preproc_if_token3] = ACTIONS(3686), - [aux_sym_preproc_else_token1] = ACTIONS(3686), - [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_EQ_GT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_when] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_on] = ACTIONS(4967), + [anon_sym_equals] = ACTIONS(4967), + [anon_sym_by] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [aux_sym_preproc_if_token3] = ACTIONS(4967), + [aux_sym_preproc_else_token1] = ACTIONS(4967), + [aux_sym_preproc_elif_token1] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497171,57 +497206,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3337), [sym_preproc_define] = STATE(3337), [sym_preproc_undef] = STATE(3337), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_RBRACK] = ACTIONS(5144), - [anon_sym_LPAREN] = ACTIONS(5144), - [anon_sym_RPAREN] = ACTIONS(5144), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_QMARK] = ACTIONS(5146), - [anon_sym_BANG] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_GT_GT_GT] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_EQ_GT] = ACTIONS(5144), - [anon_sym_switch] = ACTIONS(5144), - [anon_sym_when] = ACTIONS(5144), - [anon_sym_DOT_DOT] = ACTIONS(5144), - [anon_sym_and] = ACTIONS(5144), - [anon_sym_or] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_QMARK_QMARK] = ACTIONS(5144), - [anon_sym_into] = ACTIONS(5144), - [anon_sym_on] = ACTIONS(5144), - [anon_sym_equals] = ACTIONS(5144), - [anon_sym_by] = ACTIONS(5144), - [anon_sym_as] = ACTIONS(5144), - [anon_sym_is] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_with] = ACTIONS(5144), - [aux_sym_preproc_if_token3] = ACTIONS(5144), - [aux_sym_preproc_else_token1] = ACTIONS(5144), - [aux_sym_preproc_elif_token1] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_COLON] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5045), + [anon_sym_QMARK] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5043), + [anon_sym_DASH_DASH] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_CARET] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5043), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_GT_GT_GT] = ACTIONS(5043), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_GT_EQ] = ACTIONS(5043), + [anon_sym_LT_EQ] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5045), + [anon_sym_EQ_GT] = ACTIONS(5043), + [anon_sym_switch] = ACTIONS(5043), + [anon_sym_when] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_and] = ACTIONS(5043), + [anon_sym_or] = ACTIONS(5043), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_QMARK_QMARK] = ACTIONS(5043), + [anon_sym_into] = ACTIONS(5043), + [anon_sym_on] = ACTIONS(5043), + [anon_sym_equals] = ACTIONS(5043), + [anon_sym_by] = ACTIONS(5043), + [anon_sym_as] = ACTIONS(5043), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5043), + [anon_sym_with] = ACTIONS(5043), + [aux_sym_preproc_if_token3] = ACTIONS(5043), + [aux_sym_preproc_else_token1] = ACTIONS(5043), + [aux_sym_preproc_elif_token1] = ACTIONS(5043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497243,57 +497278,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3338), [sym_preproc_define] = STATE(3338), [sym_preproc_undef] = STATE(3338), - [anon_sym_SEMI] = ACTIONS(5246), - [anon_sym_LBRACK] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5246), - [anon_sym_COMMA] = ACTIONS(5246), - [anon_sym_RBRACK] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_RPAREN] = ACTIONS(5246), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5248), - [anon_sym_in] = ACTIONS(5248), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_BANG] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5248), - [anon_sym_GT_GT_GT] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5246), - [anon_sym_BANG_EQ] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5246), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_DOT] = ACTIONS(5248), - [anon_sym_EQ_GT] = ACTIONS(5246), - [anon_sym_switch] = ACTIONS(5246), - [anon_sym_when] = ACTIONS(5246), - [anon_sym_DOT_DOT] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_or] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5246), - [anon_sym_QMARK_QMARK] = ACTIONS(5246), - [anon_sym_into] = ACTIONS(5246), - [anon_sym_on] = ACTIONS(5246), - [anon_sym_equals] = ACTIONS(5246), - [anon_sym_by] = ACTIONS(5246), - [anon_sym_as] = ACTIONS(5246), - [anon_sym_is] = ACTIONS(5246), - [anon_sym_DASH_GT] = ACTIONS(5246), - [anon_sym_with] = ACTIONS(5246), - [aux_sym_preproc_if_token3] = ACTIONS(5246), - [aux_sym_preproc_else_token1] = ACTIONS(5246), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_CARET] = ACTIONS(4152), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4152), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_EQ_GT] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4152), + [anon_sym_on] = ACTIONS(4152), + [anon_sym_equals] = ACTIONS(4152), + [anon_sym_by] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = ACTIONS(4152), + [aux_sym_preproc_if_token3] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497315,57 +497350,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3339), [sym_preproc_define] = STATE(3339), [sym_preproc_undef] = STATE(3339), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_COLON] = ACTIONS(3668), - [anon_sym_COMMA] = ACTIONS(3668), - [anon_sym_RBRACK] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_GT] = ACTIONS(3666), - [anon_sym_in] = ACTIONS(3668), - [anon_sym_QMARK] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3666), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_EQ_EQ] = ACTIONS(3668), - [anon_sym_BANG_EQ] = ACTIONS(3668), - [anon_sym_GT_EQ] = ACTIONS(3668), - [anon_sym_LT_EQ] = ACTIONS(3668), - [anon_sym_DOT] = ACTIONS(3666), - [anon_sym_EQ_GT] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3668), - [anon_sym_and] = ACTIONS(3668), - [anon_sym_or] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_PIPE_PIPE] = ACTIONS(3668), - [anon_sym_QMARK_QMARK] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_equals] = ACTIONS(3668), - [anon_sym_by] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3668), - [anon_sym_is] = ACTIONS(3668), - [anon_sym_DASH_GT] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [aux_sym_preproc_if_token3] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [anon_sym_in] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_CARET] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3711), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(3711), + [anon_sym_GT_GT_GT] = ACTIONS(3722), + [anon_sym_EQ_EQ] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_GT_EQ] = ACTIONS(3722), + [anon_sym_LT_EQ] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3711), + [anon_sym_EQ_GT] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_when] = ACTIONS(3722), + [anon_sym_DOT_DOT] = ACTIONS(3722), + [anon_sym_and] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_QMARK_QMARK] = ACTIONS(3722), + [anon_sym_on] = ACTIONS(3722), + [anon_sym_equals] = ACTIONS(3722), + [anon_sym_by] = ACTIONS(3722), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_is] = ACTIONS(3722), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3722), + [aux_sym_preproc_if_token3] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497387,57 +497422,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3340), [sym_preproc_define] = STATE(3340), [sym_preproc_undef] = STATE(3340), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COMMA] = ACTIONS(3676), - [anon_sym_RBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_in] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3676), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_GT_GT_GT] = ACTIONS(3676), - [anon_sym_EQ_EQ] = ACTIONS(3676), - [anon_sym_BANG_EQ] = ACTIONS(3676), - [anon_sym_GT_EQ] = ACTIONS(3676), - [anon_sym_LT_EQ] = ACTIONS(3676), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_EQ_GT] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_and] = ACTIONS(3676), - [anon_sym_or] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_PIPE_PIPE] = ACTIONS(3676), - [anon_sym_QMARK_QMARK] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_equals] = ACTIONS(3676), - [anon_sym_by] = ACTIONS(3676), - [anon_sym_as] = ACTIONS(3676), - [anon_sym_is] = ACTIONS(3676), - [anon_sym_DASH_GT] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [aux_sym_preproc_if_token3] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_RBRACK] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5111), + [anon_sym_QMARK] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym_GT_GT_GT] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_EQ_GT] = ACTIONS(5109), + [anon_sym_switch] = ACTIONS(5109), + [anon_sym_when] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_and] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5109), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_QMARK_QMARK] = ACTIONS(5109), + [anon_sym_into] = ACTIONS(5109), + [anon_sym_on] = ACTIONS(5109), + [anon_sym_equals] = ACTIONS(5109), + [anon_sym_by] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [anon_sym_with] = ACTIONS(5109), + [aux_sym_preproc_if_token3] = ACTIONS(5109), + [aux_sym_preproc_else_token1] = ACTIONS(5109), + [aux_sym_preproc_elif_token1] = ACTIONS(5109), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497459,57 +497494,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3341), [sym_preproc_define] = STATE(3341), [sym_preproc_undef] = STATE(3341), - [anon_sym_EQ] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5422), - [anon_sym_DASH_EQ] = ACTIONS(5422), - [anon_sym_STAR_EQ] = ACTIONS(5422), - [anon_sym_SLASH_EQ] = ACTIONS(5422), - [anon_sym_PERCENT_EQ] = ACTIONS(5422), - [anon_sym_AMP_EQ] = ACTIONS(5422), - [anon_sym_CARET_EQ] = ACTIONS(5422), - [anon_sym_PIPE_EQ] = ACTIONS(5422), - [anon_sym_LT_LT_EQ] = ACTIONS(5422), - [anon_sym_GT_GT_EQ] = ACTIONS(5422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5422), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5422), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_RBRACK] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_in] = ACTIONS(5455), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_EQ_GT] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_when] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_into] = ACTIONS(3881), + [anon_sym_on] = ACTIONS(3881), + [anon_sym_equals] = ACTIONS(3881), + [anon_sym_by] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(3881), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), + [aux_sym_preproc_if_token3] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497531,57 +497566,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3342), [sym_preproc_define] = STATE(3342), [sym_preproc_undef] = STATE(3342), - [anon_sym_SEMI] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_COLON] = ACTIONS(5176), - [anon_sym_COMMA] = ACTIONS(5176), - [anon_sym_RBRACK] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(5176), - [anon_sym_RBRACE] = ACTIONS(5176), - [anon_sym_LT] = ACTIONS(5178), - [anon_sym_GT] = ACTIONS(5178), - [anon_sym_in] = ACTIONS(5178), - [anon_sym_QMARK] = ACTIONS(5178), - [anon_sym_BANG] = ACTIONS(5178), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_PLUS] = ACTIONS(5178), - [anon_sym_DASH] = ACTIONS(5178), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_SLASH] = ACTIONS(5178), - [anon_sym_PERCENT] = ACTIONS(5176), - [anon_sym_CARET] = ACTIONS(5176), - [anon_sym_PIPE] = ACTIONS(5178), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LT_LT] = ACTIONS(5176), - [anon_sym_GT_GT] = ACTIONS(5178), - [anon_sym_GT_GT_GT] = ACTIONS(5176), - [anon_sym_EQ_EQ] = ACTIONS(5176), - [anon_sym_BANG_EQ] = ACTIONS(5176), - [anon_sym_GT_EQ] = ACTIONS(5176), - [anon_sym_LT_EQ] = ACTIONS(5176), - [anon_sym_DOT] = ACTIONS(5178), - [anon_sym_EQ_GT] = ACTIONS(5176), - [anon_sym_switch] = ACTIONS(5176), - [anon_sym_when] = ACTIONS(5176), - [anon_sym_DOT_DOT] = ACTIONS(5176), - [anon_sym_and] = ACTIONS(5176), - [anon_sym_or] = ACTIONS(5176), - [anon_sym_AMP_AMP] = ACTIONS(5176), - [anon_sym_PIPE_PIPE] = ACTIONS(5176), - [anon_sym_QMARK_QMARK] = ACTIONS(5176), - [anon_sym_into] = ACTIONS(5176), - [anon_sym_on] = ACTIONS(5176), - [anon_sym_equals] = ACTIONS(5176), - [anon_sym_by] = ACTIONS(5176), - [anon_sym_as] = ACTIONS(5176), - [anon_sym_is] = ACTIONS(5176), - [anon_sym_DASH_GT] = ACTIONS(5176), - [anon_sym_with] = ACTIONS(5176), - [aux_sym_preproc_if_token3] = ACTIONS(5176), - [aux_sym_preproc_else_token1] = ACTIONS(5176), - [aux_sym_preproc_elif_token1] = ACTIONS(5176), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_RBRACK] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_in] = ACTIONS(4997), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_BANG] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4997), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_GT_GT_GT] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_EQ_GT] = ACTIONS(4995), + [anon_sym_switch] = ACTIONS(4995), + [anon_sym_when] = ACTIONS(4995), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_QMARK_QMARK] = ACTIONS(4995), + [anon_sym_into] = ACTIONS(4995), + [anon_sym_on] = ACTIONS(4995), + [anon_sym_equals] = ACTIONS(4995), + [anon_sym_by] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4995), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_with] = ACTIONS(4995), + [aux_sym_preproc_if_token3] = ACTIONS(4995), + [aux_sym_preproc_else_token1] = ACTIONS(4995), + [aux_sym_preproc_elif_token1] = ACTIONS(4995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497603,57 +497638,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3343), [sym_preproc_define] = STATE(3343), [sym_preproc_undef] = STATE(3343), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_COLON] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_RBRACK] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_in] = ACTIONS(5130), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5130), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5130), - [anon_sym_CARET] = ACTIONS(5130), - [anon_sym_PIPE] = ACTIONS(5132), - [anon_sym_AMP] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(5130), - [anon_sym_GT_GT] = ACTIONS(5132), - [anon_sym_GT_GT_GT] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_EQ_GT] = ACTIONS(5130), - [anon_sym_switch] = ACTIONS(5130), - [anon_sym_when] = ACTIONS(5130), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_and] = ACTIONS(5130), - [anon_sym_or] = ACTIONS(5130), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_QMARK_QMARK] = ACTIONS(5130), - [anon_sym_on] = ACTIONS(5130), - [anon_sym_equals] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5130), - [anon_sym_is] = ACTIONS(5130), - [anon_sym_DASH_GT] = ACTIONS(5130), - [anon_sym_with] = ACTIONS(5130), - [anon_sym_DQUOTE] = ACTIONS(5130), - [aux_sym_preproc_if_token3] = ACTIONS(5130), - [aux_sym_preproc_else_token1] = ACTIONS(5130), - [aux_sym_preproc_elif_token1] = ACTIONS(5130), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497675,57 +497710,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3344), [sym_preproc_define] = STATE(3344), [sym_preproc_undef] = STATE(3344), - [anon_sym_SEMI] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_COLON] = ACTIONS(5424), - [anon_sym_COMMA] = ACTIONS(5424), - [anon_sym_RBRACK] = ACTIONS(5424), - [anon_sym_LPAREN] = ACTIONS(5424), - [anon_sym_RPAREN] = ACTIONS(5424), - [anon_sym_RBRACE] = ACTIONS(5424), - [anon_sym_LT] = ACTIONS(5426), - [anon_sym_GT] = ACTIONS(5426), - [anon_sym_in] = ACTIONS(5426), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(5426), - [anon_sym_PLUS_PLUS] = ACTIONS(5424), - [anon_sym_DASH_DASH] = ACTIONS(5424), - [anon_sym_PLUS] = ACTIONS(5426), - [anon_sym_DASH] = ACTIONS(5426), - [anon_sym_STAR] = ACTIONS(5424), - [anon_sym_SLASH] = ACTIONS(5426), - [anon_sym_PERCENT] = ACTIONS(5424), - [anon_sym_CARET] = ACTIONS(5424), - [anon_sym_PIPE] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(5426), - [anon_sym_LT_LT] = ACTIONS(5424), - [anon_sym_GT_GT] = ACTIONS(5426), - [anon_sym_GT_GT_GT] = ACTIONS(5424), - [anon_sym_EQ_EQ] = ACTIONS(5424), - [anon_sym_BANG_EQ] = ACTIONS(5424), - [anon_sym_GT_EQ] = ACTIONS(5424), - [anon_sym_LT_EQ] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_EQ_GT] = ACTIONS(5424), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_when] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5424), - [anon_sym_and] = ACTIONS(5424), - [anon_sym_or] = ACTIONS(5424), - [anon_sym_AMP_AMP] = ACTIONS(5424), - [anon_sym_PIPE_PIPE] = ACTIONS(5424), - [anon_sym_QMARK_QMARK] = ACTIONS(5424), - [anon_sym_into] = ACTIONS(5424), - [anon_sym_on] = ACTIONS(5424), - [anon_sym_equals] = ACTIONS(5424), - [anon_sym_by] = ACTIONS(5424), - [anon_sym_as] = ACTIONS(5424), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(5424), - [anon_sym_with] = ACTIONS(5424), - [aux_sym_preproc_if_token3] = ACTIONS(5424), - [aux_sym_preproc_else_token1] = ACTIONS(5424), - [aux_sym_preproc_elif_token1] = ACTIONS(5424), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497747,57 +497782,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3345), [sym_preproc_define] = STATE(3345), [sym_preproc_undef] = STATE(3345), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RBRACK] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_in] = ACTIONS(5214), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5214), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_GT_GT_GT] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5214), - [anon_sym_EQ_GT] = ACTIONS(5212), - [anon_sym_switch] = ACTIONS(5212), - [anon_sym_when] = ACTIONS(5212), - [anon_sym_DOT_DOT] = ACTIONS(5212), - [anon_sym_and] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_QMARK_QMARK] = ACTIONS(5212), - [anon_sym_into] = ACTIONS(5212), - [anon_sym_on] = ACTIONS(5212), - [anon_sym_equals] = ACTIONS(5212), - [anon_sym_by] = ACTIONS(5212), - [anon_sym_as] = ACTIONS(5212), - [anon_sym_is] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [anon_sym_with] = ACTIONS(5212), - [aux_sym_preproc_if_token3] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5189), + [anon_sym_QMARK] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_CARET] = ACTIONS(5187), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_AMP] = ACTIONS(5189), + [anon_sym_LT_LT] = ACTIONS(5187), + [anon_sym_GT_GT] = ACTIONS(5189), + [anon_sym_GT_GT_GT] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5189), + [anon_sym_EQ_GT] = ACTIONS(5187), + [anon_sym_switch] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_and] = ACTIONS(5187), + [anon_sym_or] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_QMARK_QMARK] = ACTIONS(5187), + [anon_sym_into] = ACTIONS(5187), + [anon_sym_on] = ACTIONS(5187), + [anon_sym_equals] = ACTIONS(5187), + [anon_sym_by] = ACTIONS(5187), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5187), + [anon_sym_with] = ACTIONS(5187), + [aux_sym_preproc_if_token3] = ACTIONS(5187), + [aux_sym_preproc_else_token1] = ACTIONS(5187), + [aux_sym_preproc_elif_token1] = ACTIONS(5187), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497819,57 +497854,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3346), [sym_preproc_define] = STATE(3346), [sym_preproc_undef] = STATE(3346), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_COMMA] = ACTIONS(5216), - [anon_sym_RBRACK] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_in] = ACTIONS(5218), - [anon_sym_QMARK] = ACTIONS(5218), - [anon_sym_BANG] = ACTIONS(5218), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5218), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5218), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5218), - [anon_sym_GT_GT_GT] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_DOT] = ACTIONS(5218), - [anon_sym_EQ_GT] = ACTIONS(5216), - [anon_sym_switch] = ACTIONS(5216), - [anon_sym_when] = ACTIONS(5216), - [anon_sym_DOT_DOT] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_QMARK_QMARK] = ACTIONS(5216), - [anon_sym_into] = ACTIONS(5216), - [anon_sym_on] = ACTIONS(5216), - [anon_sym_equals] = ACTIONS(5216), - [anon_sym_by] = ACTIONS(5216), - [anon_sym_as] = ACTIONS(5216), - [anon_sym_is] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), - [anon_sym_with] = ACTIONS(5216), - [aux_sym_preproc_if_token3] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_COLON] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_RPAREN] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5173), + [anon_sym_GT] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5173), + [anon_sym_QMARK] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5173), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5173), + [anon_sym_GT_GT_GT] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5173), + [anon_sym_EQ_GT] = ACTIONS(5171), + [anon_sym_switch] = ACTIONS(5171), + [anon_sym_when] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_QMARK_QMARK] = ACTIONS(5171), + [anon_sym_into] = ACTIONS(5171), + [anon_sym_on] = ACTIONS(5171), + [anon_sym_equals] = ACTIONS(5171), + [anon_sym_by] = ACTIONS(5171), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5171), + [anon_sym_with] = ACTIONS(5171), + [aux_sym_preproc_if_token3] = ACTIONS(5171), + [aux_sym_preproc_else_token1] = ACTIONS(5171), + [aux_sym_preproc_elif_token1] = ACTIONS(5171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497891,57 +497926,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3347), [sym_preproc_define] = STATE(3347), [sym_preproc_undef] = STATE(3347), - [anon_sym_SEMI] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_COLON] = ACTIONS(5220), - [anon_sym_COMMA] = ACTIONS(5220), - [anon_sym_RBRACK] = ACTIONS(5220), - [anon_sym_LPAREN] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_in] = ACTIONS(5222), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_BANG] = ACTIONS(5222), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5220), - [anon_sym_SLASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5220), - [anon_sym_CARET] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5220), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_GT_GT_GT] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_DOT] = ACTIONS(5222), - [anon_sym_EQ_GT] = ACTIONS(5220), - [anon_sym_switch] = ACTIONS(5220), - [anon_sym_when] = ACTIONS(5220), - [anon_sym_DOT_DOT] = ACTIONS(5220), - [anon_sym_and] = ACTIONS(5220), - [anon_sym_or] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_QMARK_QMARK] = ACTIONS(5220), - [anon_sym_into] = ACTIONS(5220), - [anon_sym_on] = ACTIONS(5220), - [anon_sym_equals] = ACTIONS(5220), - [anon_sym_by] = ACTIONS(5220), - [anon_sym_as] = ACTIONS(5220), - [anon_sym_is] = ACTIONS(5220), - [anon_sym_DASH_GT] = ACTIONS(5220), - [anon_sym_with] = ACTIONS(5220), - [aux_sym_preproc_if_token3] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COMMA] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_EQ_GT] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497954,6 +497989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3348] = { + [sym_modifier] = STATE(3734), + [sym_identifier] = STATE(6459), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3348), [sym_preproc_endregion] = STATE(3348), [sym_preproc_line] = STATE(3348), @@ -497963,57 +498001,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3348), [sym_preproc_define] = STATE(3348), [sym_preproc_undef] = STATE(3348), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_EQ_GT] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_when] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_into] = ACTIONS(2105), - [anon_sym_on] = ACTIONS(2105), - [anon_sym_equals] = ACTIONS(2105), - [anon_sym_by] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_DASH_GT] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [aux_sym_preproc_if_token3] = ACTIONS(2105), - [aux_sym_preproc_else_token1] = ACTIONS(2105), - [aux_sym_preproc_elif_token1] = ACTIONS(2105), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3558), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4787), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_static] = ACTIONS(4787), + [anon_sym_abstract] = ACTIONS(4787), + [anon_sym_async] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_file] = ACTIONS(4793), + [anon_sym_fixed] = ACTIONS(4787), + [anon_sym_internal] = ACTIONS(4787), + [anon_sym_new] = ACTIONS(4787), + [anon_sym_override] = ACTIONS(4787), + [anon_sym_partial] = ACTIONS(4787), + [anon_sym_private] = ACTIONS(4787), + [anon_sym_protected] = ACTIONS(4787), + [anon_sym_public] = ACTIONS(4787), + [anon_sym_readonly] = ACTIONS(4787), + [anon_sym_required] = ACTIONS(4787), + [anon_sym_sealed] = ACTIONS(4787), + [anon_sym_virtual] = ACTIONS(4787), + [anon_sym_volatile] = ACTIONS(4787), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5467), + [anon_sym_set] = ACTIONS(5467), + [anon_sym_add] = ACTIONS(5467), + [anon_sym_remove] = ACTIONS(5467), + [anon_sym_init] = ACTIONS(5467), + [anon_sym_scoped] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_when] = ACTIONS(29), + [anon_sym_from] = ACTIONS(29), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498035,57 +498070,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3349), [sym_preproc_define] = STATE(3349), [sym_preproc_undef] = STATE(3349), - [anon_sym_SEMI] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_COMMA] = ACTIONS(5240), - [anon_sym_RBRACK] = ACTIONS(5240), - [anon_sym_LPAREN] = ACTIONS(5240), - [anon_sym_RPAREN] = ACTIONS(5240), - [anon_sym_RBRACE] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5242), - [anon_sym_in] = ACTIONS(5242), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_BANG] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5242), - [anon_sym_STAR] = ACTIONS(5240), - [anon_sym_SLASH] = ACTIONS(5242), - [anon_sym_PERCENT] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5240), - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5242), - [anon_sym_LT_LT] = ACTIONS(5240), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_GT_GT_GT] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5240), - [anon_sym_BANG_EQ] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5240), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_DOT] = ACTIONS(5242), - [anon_sym_EQ_GT] = ACTIONS(5240), - [anon_sym_switch] = ACTIONS(5240), - [anon_sym_when] = ACTIONS(5240), - [anon_sym_DOT_DOT] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_or] = ACTIONS(5240), - [anon_sym_AMP_AMP] = ACTIONS(5240), - [anon_sym_PIPE_PIPE] = ACTIONS(5240), - [anon_sym_QMARK_QMARK] = ACTIONS(5240), - [anon_sym_into] = ACTIONS(5240), - [anon_sym_on] = ACTIONS(5240), - [anon_sym_equals] = ACTIONS(5240), - [anon_sym_by] = ACTIONS(5240), - [anon_sym_as] = ACTIONS(5240), - [anon_sym_is] = ACTIONS(5240), - [anon_sym_DASH_GT] = ACTIONS(5240), - [anon_sym_with] = ACTIONS(5240), - [aux_sym_preproc_if_token3] = ACTIONS(5240), - [aux_sym_preproc_else_token1] = ACTIONS(5240), - [aux_sym_preproc_elif_token1] = ACTIONS(5240), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_GT] = ACTIONS(3666), + [anon_sym_in] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT] = ACTIONS(3666), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_QMARK_QMARK] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_equals] = ACTIONS(3668), + [anon_sym_by] = ACTIONS(3668), + [anon_sym_as] = ACTIONS(3668), + [anon_sym_is] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [aux_sym_preproc_if_token3] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498107,57 +498142,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3350), [sym_preproc_define] = STATE(3350), [sym_preproc_undef] = STATE(3350), - [anon_sym_SEMI] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5250), - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_COMMA] = ACTIONS(5250), - [anon_sym_RBRACK] = ACTIONS(5250), - [anon_sym_LPAREN] = ACTIONS(5250), - [anon_sym_RPAREN] = ACTIONS(5250), - [anon_sym_RBRACE] = ACTIONS(5250), - [anon_sym_LT] = ACTIONS(5252), - [anon_sym_GT] = ACTIONS(5252), - [anon_sym_in] = ACTIONS(5252), - [anon_sym_QMARK] = ACTIONS(5252), - [anon_sym_BANG] = ACTIONS(5252), - [anon_sym_PLUS_PLUS] = ACTIONS(5250), - [anon_sym_DASH_DASH] = ACTIONS(5250), - [anon_sym_PLUS] = ACTIONS(5252), - [anon_sym_DASH] = ACTIONS(5252), - [anon_sym_STAR] = ACTIONS(5250), - [anon_sym_SLASH] = ACTIONS(5252), - [anon_sym_PERCENT] = ACTIONS(5250), - [anon_sym_CARET] = ACTIONS(5250), - [anon_sym_PIPE] = ACTIONS(5252), - [anon_sym_AMP] = ACTIONS(5252), - [anon_sym_LT_LT] = ACTIONS(5250), - [anon_sym_GT_GT] = ACTIONS(5252), - [anon_sym_GT_GT_GT] = ACTIONS(5250), - [anon_sym_EQ_EQ] = ACTIONS(5250), - [anon_sym_BANG_EQ] = ACTIONS(5250), - [anon_sym_GT_EQ] = ACTIONS(5250), - [anon_sym_LT_EQ] = ACTIONS(5250), - [anon_sym_DOT] = ACTIONS(5252), - [anon_sym_EQ_GT] = ACTIONS(5250), - [anon_sym_switch] = ACTIONS(5250), - [anon_sym_when] = ACTIONS(5250), - [anon_sym_DOT_DOT] = ACTIONS(5250), - [anon_sym_and] = ACTIONS(5250), - [anon_sym_or] = ACTIONS(5250), - [anon_sym_AMP_AMP] = ACTIONS(5250), - [anon_sym_PIPE_PIPE] = ACTIONS(5250), - [anon_sym_QMARK_QMARK] = ACTIONS(5250), - [anon_sym_into] = ACTIONS(5250), - [anon_sym_on] = ACTIONS(5250), - [anon_sym_equals] = ACTIONS(5250), - [anon_sym_by] = ACTIONS(5250), - [anon_sym_as] = ACTIONS(5250), - [anon_sym_is] = ACTIONS(5250), - [anon_sym_DASH_GT] = ACTIONS(5250), - [anon_sym_with] = ACTIONS(5250), - [aux_sym_preproc_if_token3] = ACTIONS(5250), - [aux_sym_preproc_else_token1] = ACTIONS(5250), - [aux_sym_preproc_elif_token1] = ACTIONS(5250), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_when] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498179,57 +498214,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3351), [sym_preproc_define] = STATE(3351), [sym_preproc_undef] = STATE(3351), - [anon_sym_SEMI] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_COLON] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_RBRACK] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_RPAREN] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5142), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_in] = ACTIONS(5142), - [anon_sym_QMARK] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(5142), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5142), - [anon_sym_DASH] = ACTIONS(5142), - [anon_sym_STAR] = ACTIONS(5140), - [anon_sym_SLASH] = ACTIONS(5142), - [anon_sym_PERCENT] = ACTIONS(5140), - [anon_sym_CARET] = ACTIONS(5140), - [anon_sym_PIPE] = ACTIONS(5142), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_LT_LT] = ACTIONS(5140), - [anon_sym_GT_GT] = ACTIONS(5142), - [anon_sym_GT_GT_GT] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_DOT] = ACTIONS(5142), - [anon_sym_EQ_GT] = ACTIONS(5140), - [anon_sym_switch] = ACTIONS(5140), - [anon_sym_when] = ACTIONS(5140), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_and] = ACTIONS(5140), - [anon_sym_or] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_QMARK_QMARK] = ACTIONS(5140), - [anon_sym_into] = ACTIONS(5140), - [anon_sym_on] = ACTIONS(5140), - [anon_sym_equals] = ACTIONS(5140), - [anon_sym_by] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5140), - [anon_sym_DASH_GT] = ACTIONS(5140), - [anon_sym_with] = ACTIONS(5140), - [aux_sym_preproc_if_token3] = ACTIONS(5140), - [aux_sym_preproc_else_token1] = ACTIONS(5140), - [aux_sym_preproc_elif_token1] = ACTIONS(5140), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_RPAREN] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3165), + [anon_sym_QMARK] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_and] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_into] = ACTIONS(3167), + [anon_sym_on] = ACTIONS(3167), + [anon_sym_equals] = ACTIONS(3167), + [anon_sym_by] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498251,57 +498286,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3352), [sym_preproc_define] = STATE(3352), [sym_preproc_undef] = STATE(3352), - [anon_sym_SEMI] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(5428), - [anon_sym_COMMA] = ACTIONS(5428), - [anon_sym_RBRACK] = ACTIONS(5428), - [anon_sym_LPAREN] = ACTIONS(5428), - [anon_sym_RPAREN] = ACTIONS(5428), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_LT] = ACTIONS(5430), - [anon_sym_GT] = ACTIONS(5430), - [anon_sym_in] = ACTIONS(5430), - [anon_sym_QMARK] = ACTIONS(5430), - [anon_sym_BANG] = ACTIONS(5430), - [anon_sym_PLUS_PLUS] = ACTIONS(5428), - [anon_sym_DASH_DASH] = ACTIONS(5428), - [anon_sym_PLUS] = ACTIONS(5430), - [anon_sym_DASH] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5428), - [anon_sym_SLASH] = ACTIONS(5430), - [anon_sym_PERCENT] = ACTIONS(5428), - [anon_sym_CARET] = ACTIONS(5428), - [anon_sym_PIPE] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5430), - [anon_sym_LT_LT] = ACTIONS(5428), - [anon_sym_GT_GT] = ACTIONS(5430), - [anon_sym_GT_GT_GT] = ACTIONS(5428), - [anon_sym_EQ_EQ] = ACTIONS(5428), - [anon_sym_BANG_EQ] = ACTIONS(5428), - [anon_sym_GT_EQ] = ACTIONS(5428), - [anon_sym_LT_EQ] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_EQ_GT] = ACTIONS(5428), - [anon_sym_switch] = ACTIONS(5428), - [anon_sym_when] = ACTIONS(5428), - [anon_sym_DOT_DOT] = ACTIONS(5428), - [anon_sym_and] = ACTIONS(5428), - [anon_sym_or] = ACTIONS(5428), - [anon_sym_AMP_AMP] = ACTIONS(5428), - [anon_sym_PIPE_PIPE] = ACTIONS(5428), - [anon_sym_QMARK_QMARK] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(5428), - [anon_sym_on] = ACTIONS(5428), - [anon_sym_equals] = ACTIONS(5428), - [anon_sym_by] = ACTIONS(5428), - [anon_sym_as] = ACTIONS(5428), - [anon_sym_is] = ACTIONS(5428), - [anon_sym_DASH_GT] = ACTIONS(5428), - [anon_sym_with] = ACTIONS(5428), - [aux_sym_preproc_if_token3] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_COLON] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_in] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5011), + [anon_sym_CARET] = ACTIONS(5011), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_AMP] = ACTIONS(5013), + [anon_sym_LT_LT] = ACTIONS(5011), + [anon_sym_GT_GT] = ACTIONS(5013), + [anon_sym_GT_GT_GT] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_EQ_GT] = ACTIONS(5011), + [anon_sym_switch] = ACTIONS(5011), + [anon_sym_when] = ACTIONS(5011), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_and] = ACTIONS(5011), + [anon_sym_or] = ACTIONS(5011), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_QMARK_QMARK] = ACTIONS(5011), + [anon_sym_into] = ACTIONS(5011), + [anon_sym_on] = ACTIONS(5011), + [anon_sym_equals] = ACTIONS(5011), + [anon_sym_by] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5011), + [anon_sym_DASH_GT] = ACTIONS(5011), + [anon_sym_with] = ACTIONS(5011), + [aux_sym_preproc_if_token3] = ACTIONS(5011), + [aux_sym_preproc_else_token1] = ACTIONS(5011), + [aux_sym_preproc_elif_token1] = ACTIONS(5011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498323,57 +498358,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3353), [sym_preproc_define] = STATE(3353), [sym_preproc_undef] = STATE(3353), - [anon_sym_SEMI] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_COLON] = ACTIONS(5432), - [anon_sym_COMMA] = ACTIONS(5432), - [anon_sym_RBRACK] = ACTIONS(5432), - [anon_sym_LPAREN] = ACTIONS(5432), - [anon_sym_RPAREN] = ACTIONS(5432), - [anon_sym_RBRACE] = ACTIONS(5432), - [anon_sym_LT] = ACTIONS(5434), - [anon_sym_GT] = ACTIONS(5434), - [anon_sym_in] = ACTIONS(5434), - [anon_sym_QMARK] = ACTIONS(5434), - [anon_sym_BANG] = ACTIONS(5434), - [anon_sym_PLUS_PLUS] = ACTIONS(5432), - [anon_sym_DASH_DASH] = ACTIONS(5432), - [anon_sym_PLUS] = ACTIONS(5434), - [anon_sym_DASH] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5432), - [anon_sym_SLASH] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(5432), - [anon_sym_CARET] = ACTIONS(5432), - [anon_sym_PIPE] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5434), - [anon_sym_LT_LT] = ACTIONS(5432), - [anon_sym_GT_GT] = ACTIONS(5434), - [anon_sym_GT_GT_GT] = ACTIONS(5432), - [anon_sym_EQ_EQ] = ACTIONS(5432), - [anon_sym_BANG_EQ] = ACTIONS(5432), - [anon_sym_GT_EQ] = ACTIONS(5432), - [anon_sym_LT_EQ] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5434), - [anon_sym_EQ_GT] = ACTIONS(5432), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_when] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5432), - [anon_sym_and] = ACTIONS(5432), - [anon_sym_or] = ACTIONS(5432), - [anon_sym_AMP_AMP] = ACTIONS(5432), - [anon_sym_PIPE_PIPE] = ACTIONS(5432), - [anon_sym_QMARK_QMARK] = ACTIONS(5432), - [anon_sym_into] = ACTIONS(5432), - [anon_sym_on] = ACTIONS(5432), - [anon_sym_equals] = ACTIONS(5432), - [anon_sym_by] = ACTIONS(5432), - [anon_sym_as] = ACTIONS(5432), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(5432), - [anon_sym_with] = ACTIONS(5432), - [aux_sym_preproc_if_token3] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), + [anon_sym_EQ] = ACTIONS(5469), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5471), + [anon_sym_DASH_EQ] = ACTIONS(5471), + [anon_sym_STAR_EQ] = ACTIONS(5471), + [anon_sym_SLASH_EQ] = ACTIONS(5471), + [anon_sym_PERCENT_EQ] = ACTIONS(5471), + [anon_sym_AMP_EQ] = ACTIONS(5471), + [anon_sym_CARET_EQ] = ACTIONS(5471), + [anon_sym_PIPE_EQ] = ACTIONS(5471), + [anon_sym_LT_LT_EQ] = ACTIONS(5471), + [anon_sym_GT_GT_EQ] = ACTIONS(5471), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5471), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5471), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498384,6 +498418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4898), }, [3354] = { [sym_preproc_region] = STATE(3354), @@ -498395,57 +498430,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3354), [sym_preproc_define] = STATE(3354), [sym_preproc_undef] = STATE(3354), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COLON] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_RBRACK] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_in] = ACTIONS(5390), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_EQ_GT] = ACTIONS(3840), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_when] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_into] = ACTIONS(3840), - [anon_sym_on] = ACTIONS(3840), - [anon_sym_equals] = ACTIONS(3840), - [anon_sym_by] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(3840), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), - [aux_sym_preproc_if_token3] = ACTIONS(3840), - [aux_sym_preproc_else_token1] = ACTIONS(3840), - [aux_sym_preproc_elif_token1] = ACTIONS(3840), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_COLON] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5017), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_CARET] = ACTIONS(5015), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(5015), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_GT_GT_GT] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5015), + [anon_sym_switch] = ACTIONS(5015), + [anon_sym_when] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_and] = ACTIONS(5015), + [anon_sym_or] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_QMARK_QMARK] = ACTIONS(5015), + [anon_sym_into] = ACTIONS(5015), + [anon_sym_on] = ACTIONS(5015), + [anon_sym_equals] = ACTIONS(5015), + [anon_sym_by] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), + [anon_sym_with] = ACTIONS(5015), + [aux_sym_preproc_if_token3] = ACTIONS(5015), + [aux_sym_preproc_else_token1] = ACTIONS(5015), + [aux_sym_preproc_elif_token1] = ACTIONS(5015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498467,57 +498502,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3355), [sym_preproc_define] = STATE(3355), [sym_preproc_undef] = STATE(3355), - [anon_sym_SEMI] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [anon_sym_COLON] = ACTIONS(5436), - [anon_sym_COMMA] = ACTIONS(5436), - [anon_sym_RBRACK] = ACTIONS(5436), - [anon_sym_LPAREN] = ACTIONS(5436), - [anon_sym_RPAREN] = ACTIONS(5436), - [anon_sym_RBRACE] = ACTIONS(5436), - [anon_sym_LT] = ACTIONS(5438), - [anon_sym_GT] = ACTIONS(5438), - [anon_sym_in] = ACTIONS(5438), - [anon_sym_QMARK] = ACTIONS(5438), - [anon_sym_BANG] = ACTIONS(5438), - [anon_sym_PLUS_PLUS] = ACTIONS(5436), - [anon_sym_DASH_DASH] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5438), - [anon_sym_STAR] = ACTIONS(5436), - [anon_sym_SLASH] = ACTIONS(5438), - [anon_sym_PERCENT] = ACTIONS(5436), - [anon_sym_CARET] = ACTIONS(5436), - [anon_sym_PIPE] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5438), - [anon_sym_LT_LT] = ACTIONS(5436), - [anon_sym_GT_GT] = ACTIONS(5438), - [anon_sym_GT_GT_GT] = ACTIONS(5436), - [anon_sym_EQ_EQ] = ACTIONS(5436), - [anon_sym_BANG_EQ] = ACTIONS(5436), - [anon_sym_GT_EQ] = ACTIONS(5436), - [anon_sym_LT_EQ] = ACTIONS(5436), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_EQ_GT] = ACTIONS(5436), - [anon_sym_switch] = ACTIONS(5436), - [anon_sym_when] = ACTIONS(5436), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_and] = ACTIONS(5436), - [anon_sym_or] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(5436), - [anon_sym_PIPE_PIPE] = ACTIONS(5436), - [anon_sym_QMARK_QMARK] = ACTIONS(5436), - [anon_sym_into] = ACTIONS(5436), - [anon_sym_on] = ACTIONS(5436), - [anon_sym_equals] = ACTIONS(5436), - [anon_sym_by] = ACTIONS(5436), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5436), - [anon_sym_DASH_GT] = ACTIONS(5436), - [anon_sym_with] = ACTIONS(5436), - [aux_sym_preproc_if_token3] = ACTIONS(5436), - [aux_sym_preproc_else_token1] = ACTIONS(5436), - [aux_sym_preproc_elif_token1] = ACTIONS(5436), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(5473), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498539,57 +498574,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3356), [sym_preproc_define] = STATE(3356), [sym_preproc_undef] = STATE(3356), - [anon_sym_EQ] = ACTIONS(5440), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5442), - [anon_sym_DASH_EQ] = ACTIONS(5442), - [anon_sym_STAR_EQ] = ACTIONS(5442), - [anon_sym_SLASH_EQ] = ACTIONS(5442), - [anon_sym_PERCENT_EQ] = ACTIONS(5442), - [anon_sym_AMP_EQ] = ACTIONS(5442), - [anon_sym_CARET_EQ] = ACTIONS(5442), - [anon_sym_PIPE_EQ] = ACTIONS(5442), - [anon_sym_LT_LT_EQ] = ACTIONS(5442), - [anon_sym_GT_GT_EQ] = ACTIONS(5442), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5442), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5442), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_in] = ACTIONS(4981), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_BANG] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_GT_GT_GT] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_EQ_GT] = ACTIONS(4979), + [anon_sym_switch] = ACTIONS(4979), + [anon_sym_when] = ACTIONS(4979), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_and] = ACTIONS(4979), + [anon_sym_or] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_QMARK_QMARK] = ACTIONS(4979), + [anon_sym_into] = ACTIONS(4979), + [anon_sym_on] = ACTIONS(4979), + [anon_sym_equals] = ACTIONS(4979), + [anon_sym_by] = ACTIONS(4979), + [anon_sym_as] = ACTIONS(4979), + [anon_sym_is] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(4979), + [anon_sym_with] = ACTIONS(4979), + [aux_sym_preproc_if_token3] = ACTIONS(4979), + [aux_sym_preproc_else_token1] = ACTIONS(4979), + [aux_sym_preproc_elif_token1] = ACTIONS(4979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498611,57 +498646,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3357), [sym_preproc_define] = STATE(3357), [sym_preproc_undef] = STATE(3357), - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COLON] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_RBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_RPAREN] = ACTIONS(5444), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_in] = ACTIONS(5446), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_EQ_GT] = ACTIONS(5444), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_when] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5444), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_into] = ACTIONS(5444), - [anon_sym_on] = ACTIONS(5444), - [anon_sym_equals] = ACTIONS(5444), - [anon_sym_by] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5444), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), - [aux_sym_preproc_if_token3] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_in] = ACTIONS(4985), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_GT_GT_GT] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_EQ_GT] = ACTIONS(4983), + [anon_sym_switch] = ACTIONS(4983), + [anon_sym_when] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_and] = ACTIONS(4983), + [anon_sym_or] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_QMARK_QMARK] = ACTIONS(4983), + [anon_sym_into] = ACTIONS(4983), + [anon_sym_on] = ACTIONS(4983), + [anon_sym_equals] = ACTIONS(4983), + [anon_sym_by] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_DASH_GT] = ACTIONS(4983), + [anon_sym_with] = ACTIONS(4983), + [aux_sym_preproc_if_token3] = ACTIONS(4983), + [aux_sym_preproc_else_token1] = ACTIONS(4983), + [aux_sym_preproc_elif_token1] = ACTIONS(4983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498683,57 +498718,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3358), [sym_preproc_define] = STATE(3358), [sym_preproc_undef] = STATE(3358), - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COLON] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_RBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_RPAREN] = ACTIONS(5444), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_in] = ACTIONS(5446), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_EQ_GT] = ACTIONS(5444), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_when] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5444), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_into] = ACTIONS(5444), - [anon_sym_on] = ACTIONS(5444), - [anon_sym_equals] = ACTIONS(5444), - [anon_sym_by] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5444), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), - [aux_sym_preproc_if_token3] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5005), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_GT_GT_GT] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_EQ_GT] = ACTIONS(5003), + [anon_sym_switch] = ACTIONS(5003), + [anon_sym_when] = ACTIONS(5003), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_QMARK_QMARK] = ACTIONS(5003), + [anon_sym_into] = ACTIONS(5003), + [anon_sym_on] = ACTIONS(5003), + [anon_sym_equals] = ACTIONS(5003), + [anon_sym_by] = ACTIONS(5003), + [anon_sym_as] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5003), + [anon_sym_DASH_GT] = ACTIONS(5003), + [anon_sym_with] = ACTIONS(5003), + [aux_sym_preproc_if_token3] = ACTIONS(5003), + [aux_sym_preproc_else_token1] = ACTIONS(5003), + [aux_sym_preproc_elif_token1] = ACTIONS(5003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498755,57 +498790,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3359), [sym_preproc_define] = STATE(3359), [sym_preproc_undef] = STATE(3359), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym_LBRACK] = ACTIONS(5448), - [anon_sym_COLON] = ACTIONS(5448), - [anon_sym_COMMA] = ACTIONS(5448), - [anon_sym_RBRACK] = ACTIONS(5448), - [anon_sym_LPAREN] = ACTIONS(5448), - [anon_sym_RPAREN] = ACTIONS(5448), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_in] = ACTIONS(5450), - [anon_sym_QMARK] = ACTIONS(5450), - [anon_sym_BANG] = ACTIONS(5450), - [anon_sym_PLUS_PLUS] = ACTIONS(5448), - [anon_sym_DASH_DASH] = ACTIONS(5448), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5448), - [anon_sym_CARET] = ACTIONS(5448), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5448), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_GT_GT_GT] = ACTIONS(5448), - [anon_sym_EQ_EQ] = ACTIONS(5448), - [anon_sym_BANG_EQ] = ACTIONS(5448), - [anon_sym_GT_EQ] = ACTIONS(5448), - [anon_sym_LT_EQ] = ACTIONS(5448), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_EQ_GT] = ACTIONS(5448), - [anon_sym_switch] = ACTIONS(5448), - [anon_sym_when] = ACTIONS(5448), - [anon_sym_DOT_DOT] = ACTIONS(5448), - [anon_sym_and] = ACTIONS(5448), - [anon_sym_or] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_PIPE_PIPE] = ACTIONS(5448), - [anon_sym_QMARK_QMARK] = ACTIONS(5448), - [anon_sym_into] = ACTIONS(5448), - [anon_sym_on] = ACTIONS(5448), - [anon_sym_equals] = ACTIONS(5448), - [anon_sym_by] = ACTIONS(5448), - [anon_sym_as] = ACTIONS(5448), - [anon_sym_is] = ACTIONS(5448), - [anon_sym_DASH_GT] = ACTIONS(5448), - [anon_sym_with] = ACTIONS(5448), - [aux_sym_preproc_if_token3] = ACTIONS(5448), - [aux_sym_preproc_else_token1] = ACTIONS(5448), - [aux_sym_preproc_elif_token1] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5478), + [anon_sym_DASH_EQ] = ACTIONS(5478), + [anon_sym_STAR_EQ] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [anon_sym_PERCENT_EQ] = ACTIONS(5478), + [anon_sym_AMP_EQ] = ACTIONS(5478), + [anon_sym_CARET_EQ] = ACTIONS(5478), + [anon_sym_PIPE_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498827,57 +498862,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3360), [sym_preproc_define] = STATE(3360), [sym_preproc_undef] = STATE(3360), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_LPAREN] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LT] = ACTIONS(5454), - [anon_sym_GT] = ACTIONS(5454), - [anon_sym_in] = ACTIONS(5454), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(5454), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS] = ACTIONS(5454), - [anon_sym_DASH] = ACTIONS(5454), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5454), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5454), - [anon_sym_AMP] = ACTIONS(5454), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5454), - [anon_sym_GT_GT_GT] = ACTIONS(5452), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5454), - [anon_sym_EQ_GT] = ACTIONS(5452), - [anon_sym_switch] = ACTIONS(5452), - [anon_sym_when] = ACTIONS(5452), - [anon_sym_DOT_DOT] = ACTIONS(5452), - [anon_sym_and] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_QMARK_QMARK] = ACTIONS(5452), - [anon_sym_into] = ACTIONS(5452), - [anon_sym_on] = ACTIONS(5452), - [anon_sym_equals] = ACTIONS(5452), - [anon_sym_by] = ACTIONS(5452), - [anon_sym_as] = ACTIONS(5452), - [anon_sym_is] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [anon_sym_with] = ACTIONS(5452), - [aux_sym_preproc_if_token3] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5452), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3949), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_GT_GT_GT] = ACTIONS(3949), + [anon_sym_EQ_EQ] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_GT_EQ] = ACTIONS(3949), + [anon_sym_LT_EQ] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3947), + [anon_sym_EQ_GT] = ACTIONS(3949), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3949), + [anon_sym_DOT_DOT] = ACTIONS(3949), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_QMARK_QMARK] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3949), + [aux_sym_preproc_else_token1] = ACTIONS(3949), + [aux_sym_preproc_elif_token1] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498899,57 +498934,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3361), [sym_preproc_define] = STATE(3361), [sym_preproc_undef] = STATE(3361), - [anon_sym_SEMI] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_COMMA] = ACTIONS(5456), - [anon_sym_RBRACK] = ACTIONS(5456), - [anon_sym_LPAREN] = ACTIONS(5456), - [anon_sym_RPAREN] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5458), - [anon_sym_in] = ACTIONS(5458), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_BANG] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_PIPE] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5458), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5458), - [anon_sym_GT_GT_GT] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5456), - [anon_sym_BANG_EQ] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5456), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_DOT] = ACTIONS(5458), - [anon_sym_EQ_GT] = ACTIONS(5456), - [anon_sym_switch] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_DOT_DOT] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_AMP_AMP] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5456), - [anon_sym_QMARK_QMARK] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_as] = ACTIONS(5456), - [anon_sym_is] = ACTIONS(5456), - [anon_sym_DASH_GT] = ACTIONS(5456), - [anon_sym_with] = ACTIONS(5456), - [aux_sym_preproc_if_token3] = ACTIONS(5456), - [aux_sym_preproc_else_token1] = ACTIONS(5456), - [aux_sym_preproc_elif_token1] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_COLON] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_in] = ACTIONS(5025), + [anon_sym_QMARK] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_AMP] = ACTIONS(5025), + [anon_sym_LT_LT] = ACTIONS(5023), + [anon_sym_GT_GT] = ACTIONS(5025), + [anon_sym_GT_GT_GT] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_DOT] = ACTIONS(5025), + [anon_sym_EQ_GT] = ACTIONS(5023), + [anon_sym_switch] = ACTIONS(5023), + [anon_sym_when] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_and] = ACTIONS(5023), + [anon_sym_or] = ACTIONS(5023), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_QMARK_QMARK] = ACTIONS(5023), + [anon_sym_into] = ACTIONS(5023), + [anon_sym_on] = ACTIONS(5023), + [anon_sym_equals] = ACTIONS(5023), + [anon_sym_by] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_DASH_GT] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5023), + [aux_sym_preproc_if_token3] = ACTIONS(5023), + [aux_sym_preproc_else_token1] = ACTIONS(5023), + [aux_sym_preproc_elif_token1] = ACTIONS(5023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498971,57 +499006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3362), [sym_preproc_define] = STATE(3362), [sym_preproc_undef] = STATE(3362), - [anon_sym_SEMI] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_RBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5460), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_in] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_EQ_GT] = ACTIONS(5460), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_when] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_into] = ACTIONS(5460), - [anon_sym_on] = ACTIONS(5460), - [anon_sym_equals] = ACTIONS(5460), - [anon_sym_by] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5460), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5460), - [aux_sym_preproc_else_token1] = ACTIONS(5460), - [aux_sym_preproc_elif_token1] = ACTIONS(5460), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_COLON] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5033), + [anon_sym_QMARK] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_AMP] = ACTIONS(5033), + [anon_sym_LT_LT] = ACTIONS(5031), + [anon_sym_GT_GT] = ACTIONS(5033), + [anon_sym_GT_GT_GT] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5033), + [anon_sym_EQ_GT] = ACTIONS(5031), + [anon_sym_switch] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_and] = ACTIONS(5031), + [anon_sym_or] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_QMARK_QMARK] = ACTIONS(5031), + [anon_sym_into] = ACTIONS(5031), + [anon_sym_on] = ACTIONS(5031), + [anon_sym_equals] = ACTIONS(5031), + [anon_sym_by] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [aux_sym_preproc_if_token3] = ACTIONS(5031), + [aux_sym_preproc_else_token1] = ACTIONS(5031), + [aux_sym_preproc_elif_token1] = ACTIONS(5031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499043,57 +499078,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3363), [sym_preproc_define] = STATE(3363), [sym_preproc_undef] = STATE(3363), - [anon_sym_SEMI] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_RBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5460), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_in] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_EQ_GT] = ACTIONS(5460), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_when] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_into] = ACTIONS(5460), - [anon_sym_on] = ACTIONS(5460), - [anon_sym_equals] = ACTIONS(5460), - [anon_sym_by] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5460), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5460), - [aux_sym_preproc_else_token1] = ACTIONS(5460), - [aux_sym_preproc_elif_token1] = ACTIONS(5460), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499115,57 +499150,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3364), [sym_preproc_define] = STATE(3364), [sym_preproc_undef] = STATE(3364), - [anon_sym_SEMI] = ACTIONS(5464), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_COLON] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_RBRACK] = ACTIONS(5464), - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_LT] = ACTIONS(5466), - [anon_sym_GT] = ACTIONS(5466), - [anon_sym_in] = ACTIONS(5466), - [anon_sym_QMARK] = ACTIONS(5466), - [anon_sym_BANG] = ACTIONS(5466), - [anon_sym_PLUS_PLUS] = ACTIONS(5464), - [anon_sym_DASH_DASH] = ACTIONS(5464), - [anon_sym_PLUS] = ACTIONS(5466), - [anon_sym_DASH] = ACTIONS(5466), - [anon_sym_STAR] = ACTIONS(5464), - [anon_sym_SLASH] = ACTIONS(5466), - [anon_sym_PERCENT] = ACTIONS(5464), - [anon_sym_CARET] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5466), - [anon_sym_AMP] = ACTIONS(5466), - [anon_sym_LT_LT] = ACTIONS(5464), - [anon_sym_GT_GT] = ACTIONS(5466), - [anon_sym_GT_GT_GT] = ACTIONS(5464), - [anon_sym_EQ_EQ] = ACTIONS(5464), - [anon_sym_BANG_EQ] = ACTIONS(5464), - [anon_sym_GT_EQ] = ACTIONS(5464), - [anon_sym_LT_EQ] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_EQ_GT] = ACTIONS(5464), - [anon_sym_switch] = ACTIONS(5464), - [anon_sym_when] = ACTIONS(5464), - [anon_sym_DOT_DOT] = ACTIONS(5464), - [anon_sym_and] = ACTIONS(5464), - [anon_sym_or] = ACTIONS(5464), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE_PIPE] = ACTIONS(5464), - [anon_sym_QMARK_QMARK] = ACTIONS(5464), - [anon_sym_into] = ACTIONS(5464), - [anon_sym_on] = ACTIONS(5464), - [anon_sym_equals] = ACTIONS(5464), - [anon_sym_by] = ACTIONS(5464), - [anon_sym_as] = ACTIONS(5464), - [anon_sym_is] = ACTIONS(5464), - [anon_sym_DASH_GT] = ACTIONS(5464), - [anon_sym_with] = ACTIONS(5464), - [aux_sym_preproc_if_token3] = ACTIONS(5464), - [aux_sym_preproc_else_token1] = ACTIONS(5464), - [aux_sym_preproc_elif_token1] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5181), + [anon_sym_QMARK] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_CARET] = ACTIONS(5179), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_LT_LT] = ACTIONS(5179), + [anon_sym_GT_GT] = ACTIONS(5181), + [anon_sym_GT_GT_GT] = ACTIONS(5179), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5181), + [anon_sym_EQ_GT] = ACTIONS(5179), + [anon_sym_switch] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5179), + [anon_sym_AMP_AMP] = ACTIONS(5179), + [anon_sym_PIPE_PIPE] = ACTIONS(5179), + [anon_sym_QMARK_QMARK] = ACTIONS(5179), + [anon_sym_into] = ACTIONS(5179), + [anon_sym_on] = ACTIONS(5179), + [anon_sym_equals] = ACTIONS(5179), + [anon_sym_by] = ACTIONS(5179), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5179), + [anon_sym_with] = ACTIONS(5179), + [aux_sym_preproc_if_token3] = ACTIONS(5179), + [aux_sym_preproc_else_token1] = ACTIONS(5179), + [aux_sym_preproc_elif_token1] = ACTIONS(5179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499187,57 +499222,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3365), [sym_preproc_define] = STATE(3365), [sym_preproc_undef] = STATE(3365), - [anon_sym_SEMI] = ACTIONS(5468), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_COLON] = ACTIONS(5468), - [anon_sym_COMMA] = ACTIONS(5468), - [anon_sym_RBRACK] = ACTIONS(5468), - [anon_sym_LPAREN] = ACTIONS(5468), - [anon_sym_RPAREN] = ACTIONS(5468), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_LT] = ACTIONS(5470), - [anon_sym_GT] = ACTIONS(5470), - [anon_sym_in] = ACTIONS(5470), - [anon_sym_QMARK] = ACTIONS(5470), - [anon_sym_BANG] = ACTIONS(5470), - [anon_sym_PLUS_PLUS] = ACTIONS(5468), - [anon_sym_DASH_DASH] = ACTIONS(5468), - [anon_sym_PLUS] = ACTIONS(5470), - [anon_sym_DASH] = ACTIONS(5470), - [anon_sym_STAR] = ACTIONS(5468), - [anon_sym_SLASH] = ACTIONS(5470), - [anon_sym_PERCENT] = ACTIONS(5468), - [anon_sym_CARET] = ACTIONS(5468), - [anon_sym_PIPE] = ACTIONS(5470), - [anon_sym_AMP] = ACTIONS(5470), - [anon_sym_LT_LT] = ACTIONS(5468), - [anon_sym_GT_GT] = ACTIONS(5470), - [anon_sym_GT_GT_GT] = ACTIONS(5468), - [anon_sym_EQ_EQ] = ACTIONS(5468), - [anon_sym_BANG_EQ] = ACTIONS(5468), - [anon_sym_GT_EQ] = ACTIONS(5468), - [anon_sym_LT_EQ] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(5470), - [anon_sym_EQ_GT] = ACTIONS(5468), - [anon_sym_switch] = ACTIONS(5468), - [anon_sym_when] = ACTIONS(5468), - [anon_sym_DOT_DOT] = ACTIONS(5468), - [anon_sym_and] = ACTIONS(5468), - [anon_sym_or] = ACTIONS(5468), - [anon_sym_AMP_AMP] = ACTIONS(5468), - [anon_sym_PIPE_PIPE] = ACTIONS(5468), - [anon_sym_QMARK_QMARK] = ACTIONS(5468), - [anon_sym_into] = ACTIONS(5468), - [anon_sym_on] = ACTIONS(5468), - [anon_sym_equals] = ACTIONS(5468), - [anon_sym_by] = ACTIONS(5468), - [anon_sym_as] = ACTIONS(5468), - [anon_sym_is] = ACTIONS(5468), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_with] = ACTIONS(5468), - [aux_sym_preproc_if_token3] = ACTIONS(5468), - [aux_sym_preproc_else_token1] = ACTIONS(5468), - [aux_sym_preproc_elif_token1] = ACTIONS(5468), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_COLON] = ACTIONS(4044), + [anon_sym_COMMA] = ACTIONS(4044), + [anon_sym_RBRACK] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4042), + [anon_sym_GT_GT_GT] = ACTIONS(4044), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_GT_EQ] = ACTIONS(4044), + [anon_sym_LT_EQ] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_or] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_QMARK_QMARK] = ACTIONS(4044), + [anon_sym_on] = ACTIONS(4044), + [anon_sym_equals] = ACTIONS(4044), + [anon_sym_by] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4044), + [aux_sym_preproc_if_token3] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499259,57 +499294,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3366), [sym_preproc_define] = STATE(3366), [sym_preproc_undef] = STATE(3366), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(5472), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(5473), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499331,150 +499366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3367), [sym_preproc_define] = STATE(3367), [sym_preproc_undef] = STATE(3367), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5474), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3368] = { - [sym_preproc_region] = STATE(3368), - [sym_preproc_endregion] = STATE(3368), - [sym_preproc_line] = STATE(3368), - [sym_preproc_pragma] = STATE(3368), - [sym_preproc_nullable] = STATE(3368), - [sym_preproc_error] = STATE(3368), - [sym_preproc_warning] = STATE(3368), - [sym_preproc_define] = STATE(3368), - [sym_preproc_undef] = STATE(3368), - [anon_sym_SEMI] = ACTIONS(5476), - [anon_sym_LBRACK] = ACTIONS(5476), - [anon_sym_COLON] = ACTIONS(5476), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_RBRACK] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5476), - [anon_sym_RPAREN] = ACTIONS(5476), - [anon_sym_RBRACE] = ACTIONS(5476), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_in] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5476), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5476), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5476), - [anon_sym_CARET] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5476), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_GT_GT_GT] = ACTIONS(5476), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_GT_EQ] = ACTIONS(5476), - [anon_sym_LT_EQ] = ACTIONS(5476), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_EQ_GT] = ACTIONS(5476), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_when] = ACTIONS(5476), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_and] = ACTIONS(5476), - [anon_sym_or] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(5476), - [anon_sym_PIPE_PIPE] = ACTIONS(5476), - [anon_sym_QMARK_QMARK] = ACTIONS(5476), - [anon_sym_into] = ACTIONS(5476), - [anon_sym_on] = ACTIONS(5476), - [anon_sym_equals] = ACTIONS(5476), - [anon_sym_by] = ACTIONS(5476), - [anon_sym_as] = ACTIONS(5476), - [anon_sym_is] = ACTIONS(5476), - [anon_sym_DASH_GT] = ACTIONS(5476), - [anon_sym_with] = ACTIONS(5476), - [aux_sym_preproc_if_token3] = ACTIONS(5476), - [aux_sym_preproc_else_token1] = ACTIONS(5476), - [aux_sym_preproc_elif_token1] = ACTIONS(5476), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3369] = { - [sym_preproc_region] = STATE(3369), - [sym_preproc_endregion] = STATE(3369), - [sym_preproc_line] = STATE(3369), - [sym_preproc_pragma] = STATE(3369), - [sym_preproc_nullable] = STATE(3369), - [sym_preproc_error] = STATE(3369), - [sym_preproc_warning] = STATE(3369), - [sym_preproc_define] = STATE(3369), - [sym_preproc_undef] = STATE(3369), [anon_sym_SEMI] = ACTIONS(5480), [anon_sym_LBRACK] = ACTIONS(5480), [anon_sym_COLON] = ACTIONS(5480), @@ -499537,6 +499428,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3368] = { + [sym_preproc_region] = STATE(3368), + [sym_preproc_endregion] = STATE(3368), + [sym_preproc_line] = STATE(3368), + [sym_preproc_pragma] = STATE(3368), + [sym_preproc_nullable] = STATE(3368), + [sym_preproc_error] = STATE(3368), + [sym_preproc_warning] = STATE(3368), + [sym_preproc_define] = STATE(3368), + [sym_preproc_undef] = STATE(3368), + [anon_sym_SEMI] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5041), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5039), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(5039), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_GT_GT_GT] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5039), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5041), + [anon_sym_EQ_GT] = ACTIONS(5039), + [anon_sym_switch] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_or] = ACTIONS(5039), + [anon_sym_AMP_AMP] = ACTIONS(5039), + [anon_sym_PIPE_PIPE] = ACTIONS(5039), + [anon_sym_QMARK_QMARK] = ACTIONS(5039), + [anon_sym_into] = ACTIONS(5039), + [anon_sym_on] = ACTIONS(5039), + [anon_sym_equals] = ACTIONS(5039), + [anon_sym_by] = ACTIONS(5039), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5039), + [anon_sym_with] = ACTIONS(5039), + [aux_sym_preproc_if_token3] = ACTIONS(5039), + [aux_sym_preproc_else_token1] = ACTIONS(5039), + [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3369] = { + [sym_preproc_region] = STATE(3369), + [sym_preproc_endregion] = STATE(3369), + [sym_preproc_line] = STATE(3369), + [sym_preproc_pragma] = STATE(3369), + [sym_preproc_nullable] = STATE(3369), + [sym_preproc_error] = STATE(3369), + [sym_preproc_warning] = STATE(3369), + [sym_preproc_define] = STATE(3369), + [sym_preproc_undef] = STATE(3369), + [anon_sym_SEMI] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_in] = ACTIONS(5220), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5218), + [anon_sym_DASH_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5218), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_GT_GT_GT] = ACTIONS(5218), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_EQ_GT] = ACTIONS(5218), + [anon_sym_switch] = ACTIONS(5218), + [anon_sym_when] = ACTIONS(5218), + [anon_sym_DOT_DOT] = ACTIONS(5218), + [anon_sym_and] = ACTIONS(5218), + [anon_sym_or] = ACTIONS(5218), + [anon_sym_AMP_AMP] = ACTIONS(5218), + [anon_sym_PIPE_PIPE] = ACTIONS(5218), + [anon_sym_QMARK_QMARK] = ACTIONS(5218), + [anon_sym_into] = ACTIONS(5218), + [anon_sym_on] = ACTIONS(5218), + [anon_sym_equals] = ACTIONS(5218), + [anon_sym_by] = ACTIONS(5218), + [anon_sym_as] = ACTIONS(5218), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_DASH_GT] = ACTIONS(5218), + [anon_sym_with] = ACTIONS(5218), + [aux_sym_preproc_if_token3] = ACTIONS(5218), + [aux_sym_preproc_else_token1] = ACTIONS(5218), + [aux_sym_preproc_elif_token1] = ACTIONS(5218), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3370] = { [sym_preproc_region] = STATE(3370), [sym_preproc_endregion] = STATE(3370), @@ -499547,57 +499582,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3370), [sym_preproc_define] = STATE(3370), [sym_preproc_undef] = STATE(3370), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_in] = ACTIONS(5486), - [anon_sym_QMARK] = ACTIONS(5486), - [anon_sym_BANG] = ACTIONS(5486), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5484), - [anon_sym_CARET] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5484), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_GT_GT_GT] = ACTIONS(5484), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_EQ_GT] = ACTIONS(5484), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_when] = ACTIONS(5484), - [anon_sym_DOT_DOT] = ACTIONS(5484), - [anon_sym_and] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_QMARK_QMARK] = ACTIONS(5484), - [anon_sym_into] = ACTIONS(5484), - [anon_sym_on] = ACTIONS(5484), - [anon_sym_equals] = ACTIONS(5484), - [anon_sym_by] = ACTIONS(5484), - [anon_sym_as] = ACTIONS(5484), - [anon_sym_is] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_with] = ACTIONS(5484), - [aux_sym_preproc_if_token3] = ACTIONS(5484), - [aux_sym_preproc_else_token1] = ACTIONS(5484), - [aux_sym_preproc_elif_token1] = ACTIONS(5484), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5027), + [anon_sym_DASH_DASH] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_CARET] = ACTIONS(5027), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5027), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_GT_GT_GT] = ACTIONS(5027), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_GT_EQ] = ACTIONS(5027), + [anon_sym_LT_EQ] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_EQ_GT] = ACTIONS(5027), + [anon_sym_switch] = ACTIONS(5027), + [anon_sym_when] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5027), + [anon_sym_and] = ACTIONS(5027), + [anon_sym_or] = ACTIONS(5027), + [anon_sym_AMP_AMP] = ACTIONS(5027), + [anon_sym_PIPE_PIPE] = ACTIONS(5027), + [anon_sym_QMARK_QMARK] = ACTIONS(5027), + [anon_sym_into] = ACTIONS(5027), + [anon_sym_on] = ACTIONS(5027), + [anon_sym_equals] = ACTIONS(5027), + [anon_sym_by] = ACTIONS(5027), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_DASH_GT] = ACTIONS(5027), + [anon_sym_with] = ACTIONS(5027), + [aux_sym_preproc_if_token3] = ACTIONS(5027), + [aux_sym_preproc_else_token1] = ACTIONS(5027), + [aux_sym_preproc_elif_token1] = ACTIONS(5027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499619,57 +499654,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3371), [sym_preproc_define] = STATE(3371), [sym_preproc_undef] = STATE(3371), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RBRACK] = ACTIONS(5488), - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_in] = ACTIONS(5490), - [anon_sym_QMARK] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5488), - [anon_sym_SLASH] = ACTIONS(5490), - [anon_sym_PERCENT] = ACTIONS(5488), - [anon_sym_CARET] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_LT_LT] = ACTIONS(5488), - [anon_sym_GT_GT] = ACTIONS(5490), - [anon_sym_GT_GT_GT] = ACTIONS(5488), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5490), - [anon_sym_EQ_GT] = ACTIONS(5488), - [anon_sym_switch] = ACTIONS(5488), - [anon_sym_when] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5488), - [anon_sym_and] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5488), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_QMARK_QMARK] = ACTIONS(5488), - [anon_sym_into] = ACTIONS(5488), - [anon_sym_on] = ACTIONS(5488), - [anon_sym_equals] = ACTIONS(5488), - [anon_sym_by] = ACTIONS(5488), - [anon_sym_as] = ACTIONS(5488), - [anon_sym_is] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_with] = ACTIONS(5488), - [aux_sym_preproc_if_token3] = ACTIONS(5488), - [aux_sym_preproc_else_token1] = ACTIONS(5488), - [aux_sym_preproc_elif_token1] = ACTIONS(5488), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(4108), + [anon_sym_GT_GT] = ACTIONS(4106), + [anon_sym_GT_GT_GT] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_EQ_GT] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_QMARK_QMARK] = ACTIONS(4108), + [anon_sym_on] = ACTIONS(4108), + [anon_sym_equals] = ACTIONS(4108), + [anon_sym_by] = ACTIONS(4108), + [anon_sym_as] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4108), + [anon_sym_with] = ACTIONS(4108), + [aux_sym_preproc_if_token3] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499691,57 +499726,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3372), [sym_preproc_define] = STATE(3372), [sym_preproc_undef] = STATE(3372), - [anon_sym_SEMI] = ACTIONS(5492), - [anon_sym_LBRACK] = ACTIONS(5492), - [anon_sym_COLON] = ACTIONS(5492), - [anon_sym_COMMA] = ACTIONS(5492), - [anon_sym_RBRACK] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5492), - [anon_sym_RBRACE] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(5494), - [anon_sym_GT] = ACTIONS(5494), - [anon_sym_in] = ACTIONS(5494), - [anon_sym_QMARK] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5492), - [anon_sym_PLUS] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5492), - [anon_sym_SLASH] = ACTIONS(5494), - [anon_sym_PERCENT] = ACTIONS(5492), - [anon_sym_CARET] = ACTIONS(5492), - [anon_sym_PIPE] = ACTIONS(5494), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5494), - [anon_sym_GT_GT_GT] = ACTIONS(5492), - [anon_sym_EQ_EQ] = ACTIONS(5492), - [anon_sym_BANG_EQ] = ACTIONS(5492), - [anon_sym_GT_EQ] = ACTIONS(5492), - [anon_sym_LT_EQ] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_EQ_GT] = ACTIONS(5492), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_when] = ACTIONS(5492), - [anon_sym_DOT_DOT] = ACTIONS(5492), - [anon_sym_and] = ACTIONS(5492), - [anon_sym_or] = ACTIONS(5492), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5492), - [anon_sym_QMARK_QMARK] = ACTIONS(5492), - [anon_sym_into] = ACTIONS(5492), - [anon_sym_on] = ACTIONS(5492), - [anon_sym_equals] = ACTIONS(5492), - [anon_sym_by] = ACTIONS(5492), - [anon_sym_as] = ACTIONS(5492), - [anon_sym_is] = ACTIONS(5492), - [anon_sym_DASH_GT] = ACTIONS(5492), - [anon_sym_with] = ACTIONS(5492), - [aux_sym_preproc_if_token3] = ACTIONS(5492), - [aux_sym_preproc_else_token1] = ACTIONS(5492), - [aux_sym_preproc_elif_token1] = ACTIONS(5492), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_QMARK] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_CARET] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5197), + [anon_sym_LT_LT] = ACTIONS(5195), + [anon_sym_GT_GT] = ACTIONS(5197), + [anon_sym_GT_GT_GT] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_EQ_GT] = ACTIONS(5195), + [anon_sym_switch] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_and] = ACTIONS(5195), + [anon_sym_or] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_QMARK_QMARK] = ACTIONS(5195), + [anon_sym_into] = ACTIONS(5195), + [anon_sym_on] = ACTIONS(5195), + [anon_sym_equals] = ACTIONS(5195), + [anon_sym_by] = ACTIONS(5195), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), + [anon_sym_with] = ACTIONS(5195), + [aux_sym_preproc_if_token3] = ACTIONS(5195), + [aux_sym_preproc_else_token1] = ACTIONS(5195), + [aux_sym_preproc_elif_token1] = ACTIONS(5195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499763,57 +499798,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3373), [sym_preproc_define] = STATE(3373), [sym_preproc_undef] = STATE(3373), - [anon_sym_SEMI] = ACTIONS(5496), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_COMMA] = ACTIONS(5496), - [anon_sym_RBRACK] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5496), - [anon_sym_RPAREN] = ACTIONS(5496), - [anon_sym_RBRACE] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5498), - [anon_sym_in] = ACTIONS(5498), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5498), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_PIPE] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5498), - [anon_sym_GT_GT_GT] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5496), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_EQ_GT] = ACTIONS(5496), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_when] = ACTIONS(5496), - [anon_sym_DOT_DOT] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_AMP_AMP] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5496), - [anon_sym_QMARK_QMARK] = ACTIONS(5496), - [anon_sym_into] = ACTIONS(5496), - [anon_sym_on] = ACTIONS(5496), - [anon_sym_equals] = ACTIONS(5496), - [anon_sym_by] = ACTIONS(5496), - [anon_sym_as] = ACTIONS(5496), - [anon_sym_is] = ACTIONS(5496), - [anon_sym_DASH_GT] = ACTIONS(5496), - [anon_sym_with] = ACTIONS(5496), - [aux_sym_preproc_if_token3] = ACTIONS(5496), - [aux_sym_preproc_else_token1] = ACTIONS(5496), - [aux_sym_preproc_elif_token1] = ACTIONS(5496), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COMMA] = ACTIONS(3686), + [anon_sym_RBRACK] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_RPAREN] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_GT] = ACTIONS(3684), + [anon_sym_in] = ACTIONS(3686), + [anon_sym_QMARK] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_PIPE] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3684), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_EQ_EQ] = ACTIONS(3686), + [anon_sym_BANG_EQ] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3686), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3684), + [anon_sym_EQ_GT] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_when] = ACTIONS(3686), + [anon_sym_DOT_DOT] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3686), + [anon_sym_QMARK_QMARK] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_equals] = ACTIONS(3686), + [anon_sym_by] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_is] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [aux_sym_preproc_if_token3] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499835,57 +499870,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3374), [sym_preproc_define] = STATE(3374), [sym_preproc_undef] = STATE(3374), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_RBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_in] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4977), - [anon_sym_BANG] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_EQ_GT] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4975), - [anon_sym_when] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_and] = ACTIONS(4975), - [anon_sym_or] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_QMARK_QMARK] = ACTIONS(4975), - [anon_sym_into] = ACTIONS(4975), - [anon_sym_on] = ACTIONS(4975), - [anon_sym_equals] = ACTIONS(4975), - [anon_sym_by] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_DASH_GT] = ACTIONS(4975), - [anon_sym_with] = ACTIONS(4975), - [aux_sym_preproc_if_token3] = ACTIONS(4975), - [aux_sym_preproc_else_token1] = ACTIONS(4975), - [aux_sym_preproc_elif_token1] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2063), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_EQ_GT] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_when] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_and] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_QMARK_QMARK] = ACTIONS(2061), + [anon_sym_into] = ACTIONS(2061), + [anon_sym_on] = ACTIONS(2061), + [anon_sym_equals] = ACTIONS(2061), + [anon_sym_by] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [aux_sym_preproc_if_token3] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2061), + [aux_sym_preproc_elif_token1] = ACTIONS(2061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499907,57 +499942,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3375), [sym_preproc_define] = STATE(3375), [sym_preproc_undef] = STATE(3375), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5017), - [anon_sym_QMARK] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_LT_LT] = ACTIONS(5015), - [anon_sym_GT_GT] = ACTIONS(5017), - [anon_sym_GT_GT_GT] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5015), - [anon_sym_switch] = ACTIONS(5015), - [anon_sym_when] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5015), - [anon_sym_or] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_QMARK_QMARK] = ACTIONS(5015), - [anon_sym_into] = ACTIONS(5015), - [anon_sym_on] = ACTIONS(5015), - [anon_sym_equals] = ACTIONS(5015), - [anon_sym_by] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_DASH_GT] = ACTIONS(5015), - [anon_sym_with] = ACTIONS(5015), - [aux_sym_preproc_if_token3] = ACTIONS(5015), - [aux_sym_preproc_else_token1] = ACTIONS(5015), - [aux_sym_preproc_elif_token1] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_QMARK] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5169), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5169), + [anon_sym_GT_GT_GT] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_EQ_GT] = ACTIONS(5167), + [anon_sym_switch] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_and] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_QMARK_QMARK] = ACTIONS(5167), + [anon_sym_into] = ACTIONS(5167), + [anon_sym_on] = ACTIONS(5167), + [anon_sym_equals] = ACTIONS(5167), + [anon_sym_by] = ACTIONS(5167), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [anon_sym_with] = ACTIONS(5167), + [aux_sym_preproc_if_token3] = ACTIONS(5167), + [aux_sym_preproc_else_token1] = ACTIONS(5167), + [aux_sym_preproc_elif_token1] = ACTIONS(5167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499979,56 +500014,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3376), [sym_preproc_define] = STATE(3376), [sym_preproc_undef] = STATE(3376), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_COLON] = ACTIONS(5484), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_RBRACK] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_RPAREN] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5486), + [anon_sym_in] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_BANG] = ACTIONS(5486), + [anon_sym_PLUS_PLUS] = ACTIONS(5484), + [anon_sym_DASH_DASH] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5486), + [anon_sym_PERCENT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5484), + [anon_sym_PIPE] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_GT_GT_GT] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5484), + [anon_sym_BANG_EQ] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5486), + [anon_sym_EQ_GT] = ACTIONS(5484), + [anon_sym_switch] = ACTIONS(5484), + [anon_sym_when] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_AMP_AMP] = ACTIONS(5484), + [anon_sym_PIPE_PIPE] = ACTIONS(5484), + [anon_sym_QMARK_QMARK] = ACTIONS(5484), + [anon_sym_into] = ACTIONS(5484), + [anon_sym_on] = ACTIONS(5484), + [anon_sym_equals] = ACTIONS(5484), + [anon_sym_by] = ACTIONS(5484), + [anon_sym_as] = ACTIONS(5484), + [anon_sym_is] = ACTIONS(5484), + [anon_sym_DASH_GT] = ACTIONS(5484), + [anon_sym_with] = ACTIONS(5484), + [aux_sym_preproc_if_token3] = ACTIONS(5484), + [aux_sym_preproc_else_token1] = ACTIONS(5484), + [aux_sym_preproc_elif_token1] = ACTIONS(5484), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500039,7 +500075,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4906), }, [3377] = { [sym_preproc_region] = STATE(3377), @@ -500051,57 +500086,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3377), [sym_preproc_define] = STATE(3377), [sym_preproc_undef] = STATE(3377), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_COLON] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(5488), + [anon_sym_RBRACK] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(5488), + [anon_sym_RBRACE] = ACTIONS(5488), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5490), + [anon_sym_in] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_BANG] = ACTIONS(5490), + [anon_sym_PLUS_PLUS] = ACTIONS(5488), + [anon_sym_DASH_DASH] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5490), + [anon_sym_PERCENT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5488), + [anon_sym_PIPE] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_GT_GT_GT] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5488), + [anon_sym_BANG_EQ] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5490), + [anon_sym_EQ_GT] = ACTIONS(5488), + [anon_sym_switch] = ACTIONS(5488), + [anon_sym_when] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_AMP_AMP] = ACTIONS(5488), + [anon_sym_PIPE_PIPE] = ACTIONS(5488), + [anon_sym_QMARK_QMARK] = ACTIONS(5488), + [anon_sym_into] = ACTIONS(5488), + [anon_sym_on] = ACTIONS(5488), + [anon_sym_equals] = ACTIONS(5488), + [anon_sym_by] = ACTIONS(5488), + [anon_sym_as] = ACTIONS(5488), + [anon_sym_is] = ACTIONS(5488), + [anon_sym_DASH_GT] = ACTIONS(5488), + [anon_sym_with] = ACTIONS(5488), + [aux_sym_preproc_if_token3] = ACTIONS(5488), + [aux_sym_preproc_else_token1] = ACTIONS(5488), + [aux_sym_preproc_elif_token1] = ACTIONS(5488), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500123,57 +500158,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3378), [sym_preproc_define] = STATE(3378), [sym_preproc_undef] = STATE(3378), - [anon_sym_SEMI] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_COLON] = ACTIONS(5200), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_RBRACK] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5202), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_BANG] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_GT_GT_GT] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5200), - [anon_sym_BANG_EQ] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_EQ_GT] = ACTIONS(5200), - [anon_sym_switch] = ACTIONS(5200), - [anon_sym_when] = ACTIONS(5200), - [anon_sym_DOT_DOT] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_QMARK_QMARK] = ACTIONS(5200), - [anon_sym_into] = ACTIONS(5200), - [anon_sym_on] = ACTIONS(5200), - [anon_sym_equals] = ACTIONS(5200), - [anon_sym_by] = ACTIONS(5200), - [anon_sym_as] = ACTIONS(5200), - [anon_sym_is] = ACTIONS(5200), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_with] = ACTIONS(5200), - [aux_sym_preproc_if_token3] = ACTIONS(5200), - [aux_sym_preproc_else_token1] = ACTIONS(5200), - [aux_sym_preproc_elif_token1] = ACTIONS(5200), + [anon_sym_SEMI] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_COLON] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5177), + [anon_sym_QMARK] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5175), + [anon_sym_DASH_DASH] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_CARET] = ACTIONS(5175), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_AMP] = ACTIONS(5177), + [anon_sym_LT_LT] = ACTIONS(5175), + [anon_sym_GT_GT] = ACTIONS(5177), + [anon_sym_GT_GT_GT] = ACTIONS(5175), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_GT_EQ] = ACTIONS(5175), + [anon_sym_LT_EQ] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5177), + [anon_sym_EQ_GT] = ACTIONS(5175), + [anon_sym_switch] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5175), + [anon_sym_and] = ACTIONS(5175), + [anon_sym_or] = ACTIONS(5175), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5175), + [anon_sym_QMARK_QMARK] = ACTIONS(5175), + [anon_sym_into] = ACTIONS(5175), + [anon_sym_on] = ACTIONS(5175), + [anon_sym_equals] = ACTIONS(5175), + [anon_sym_by] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5175), + [anon_sym_with] = ACTIONS(5175), + [aux_sym_preproc_if_token3] = ACTIONS(5175), + [aux_sym_preproc_else_token1] = ACTIONS(5175), + [aux_sym_preproc_elif_token1] = ACTIONS(5175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500195,57 +500230,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3379), [sym_preproc_define] = STATE(3379), [sym_preproc_undef] = STATE(3379), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_COLON] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5128), - [anon_sym_QMARK] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5126), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5126), - [anon_sym_CARET] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_GT_GT_GT] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_EQ_GT] = ACTIONS(5126), - [anon_sym_switch] = ACTIONS(5126), - [anon_sym_when] = ACTIONS(5126), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [anon_sym_or] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_QMARK_QMARK] = ACTIONS(5126), - [anon_sym_into] = ACTIONS(5126), - [anon_sym_on] = ACTIONS(5126), - [anon_sym_equals] = ACTIONS(5126), - [anon_sym_by] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), - [anon_sym_with] = ACTIONS(5126), - [aux_sym_preproc_if_token3] = ACTIONS(5126), - [aux_sym_preproc_else_token1] = ACTIONS(5126), - [aux_sym_preproc_elif_token1] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5494), + [anon_sym_DASH_EQ] = ACTIONS(5494), + [anon_sym_STAR_EQ] = ACTIONS(5494), + [anon_sym_SLASH_EQ] = ACTIONS(5494), + [anon_sym_PERCENT_EQ] = ACTIONS(5494), + [anon_sym_AMP_EQ] = ACTIONS(5494), + [anon_sym_CARET_EQ] = ACTIONS(5494), + [anon_sym_PIPE_EQ] = ACTIONS(5494), + [anon_sym_LT_LT_EQ] = ACTIONS(5494), + [anon_sym_GT_GT_EQ] = ACTIONS(5494), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5494), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5494), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500267,57 +500302,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3380), [sym_preproc_define] = STATE(3380), [sym_preproc_undef] = STATE(3380), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_QMARK] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_GT_GT_GT] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_EQ_GT] = ACTIONS(5095), - [anon_sym_switch] = ACTIONS(5095), - [anon_sym_when] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_and] = ACTIONS(5095), - [anon_sym_or] = ACTIONS(5095), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_QMARK_QMARK] = ACTIONS(5095), - [anon_sym_into] = ACTIONS(5095), - [anon_sym_on] = ACTIONS(5095), - [anon_sym_equals] = ACTIONS(5095), - [anon_sym_by] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5095), - [anon_sym_with] = ACTIONS(5095), - [aux_sym_preproc_if_token3] = ACTIONS(5095), - [aux_sym_preproc_else_token1] = ACTIONS(5095), - [aux_sym_preproc_elif_token1] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_COMMA] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_LPAREN] = ACTIONS(4156), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_CARET] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4156), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4156), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_GT_EQ] = ACTIONS(4156), + [anon_sym_LT_EQ] = ACTIONS(4156), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_EQ_GT] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4156), + [anon_sym_and] = ACTIONS(4156), + [anon_sym_or] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_PIPE_PIPE] = ACTIONS(4156), + [anon_sym_QMARK_QMARK] = ACTIONS(4156), + [anon_sym_on] = ACTIONS(4156), + [anon_sym_equals] = ACTIONS(4156), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4156), + [anon_sym_with] = ACTIONS(4156), + [aux_sym_preproc_if_token3] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500339,57 +500374,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3381), [sym_preproc_define] = STATE(3381), [sym_preproc_undef] = STATE(3381), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(2991), - [anon_sym_switch] = ACTIONS(2991), - [anon_sym_when] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_into] = ACTIONS(2991), - [anon_sym_on] = ACTIONS(2991), - [anon_sym_equals] = ACTIONS(2991), - [anon_sym_by] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [aux_sym_preproc_if_token3] = ACTIONS(2991), - [aux_sym_preproc_else_token1] = ACTIONS(2991), - [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_COLON] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RBRACK] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_LT] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5498), + [anon_sym_in] = ACTIONS(5498), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_BANG] = ACTIONS(5498), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5498), + [anon_sym_PERCENT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5496), + [anon_sym_PIPE] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_GT_GT_GT] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5496), + [anon_sym_BANG_EQ] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5498), + [anon_sym_EQ_GT] = ACTIONS(5496), + [anon_sym_switch] = ACTIONS(5496), + [anon_sym_when] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_PIPE_PIPE] = ACTIONS(5496), + [anon_sym_QMARK_QMARK] = ACTIONS(5496), + [anon_sym_into] = ACTIONS(5496), + [anon_sym_on] = ACTIONS(5496), + [anon_sym_equals] = ACTIONS(5496), + [anon_sym_by] = ACTIONS(5496), + [anon_sym_as] = ACTIONS(5496), + [anon_sym_is] = ACTIONS(5496), + [anon_sym_DASH_GT] = ACTIONS(5496), + [anon_sym_with] = ACTIONS(5496), + [aux_sym_preproc_if_token3] = ACTIONS(5496), + [aux_sym_preproc_else_token1] = ACTIONS(5496), + [aux_sym_preproc_elif_token1] = ACTIONS(5496), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500405,135 +500440,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_region] = STATE(3382), [sym_preproc_endregion] = STATE(3382), [sym_preproc_line] = STATE(3382), - [sym_preproc_pragma] = STATE(3382), - [sym_preproc_nullable] = STATE(3382), - [sym_preproc_error] = STATE(3382), - [sym_preproc_warning] = STATE(3382), - [sym_preproc_define] = STATE(3382), - [sym_preproc_undef] = STATE(3382), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4293), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ_GT] = ACTIONS(4291), - [anon_sym_switch] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4291), - [anon_sym_or] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_into] = ACTIONS(4291), - [anon_sym_on] = ACTIONS(4291), - [anon_sym_equals] = ACTIONS(4291), - [anon_sym_by] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4291), - [aux_sym_preproc_if_token3] = ACTIONS(4291), - [aux_sym_preproc_else_token1] = ACTIONS(4291), - [aux_sym_preproc_elif_token1] = ACTIONS(4291), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3383] = { - [sym_preproc_region] = STATE(3383), - [sym_preproc_endregion] = STATE(3383), - [sym_preproc_line] = STATE(3383), - [sym_preproc_pragma] = STATE(3383), - [sym_preproc_nullable] = STATE(3383), - [sym_preproc_error] = STATE(3383), - [sym_preproc_warning] = STATE(3383), - [sym_preproc_define] = STATE(3383), - [sym_preproc_undef] = STATE(3383), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5021), - [anon_sym_QMARK] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5019), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_GT_GT_GT] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_EQ_GT] = ACTIONS(5019), - [anon_sym_switch] = ACTIONS(5019), - [anon_sym_when] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_and] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_QMARK_QMARK] = ACTIONS(5019), - [anon_sym_into] = ACTIONS(5019), - [anon_sym_on] = ACTIONS(5019), - [anon_sym_equals] = ACTIONS(5019), - [anon_sym_by] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), - [anon_sym_with] = ACTIONS(5019), - [aux_sym_preproc_if_token3] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5019), + [sym_preproc_pragma] = STATE(3382), + [sym_preproc_nullable] = STATE(3382), + [sym_preproc_error] = STATE(3382), + [sym_preproc_warning] = STATE(3382), + [sym_preproc_define] = STATE(3382), + [sym_preproc_undef] = STATE(3382), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(5503), + [anon_sym_GT] = ACTIONS(5503), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(5503), + [anon_sym_BANG] = ACTIONS(5503), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5503), + [anon_sym_DASH] = ACTIONS(5503), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5503), + [anon_sym_PERCENT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5500), + [anon_sym_PIPE] = ACTIONS(5503), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5503), + [anon_sym_GT_GT_GT] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5503), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_QMARK_QMARK] = ACTIONS(5500), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3383] = { + [sym_preproc_region] = STATE(3383), + [sym_preproc_endregion] = STATE(3383), + [sym_preproc_line] = STATE(3383), + [sym_preproc_pragma] = STATE(3383), + [sym_preproc_nullable] = STATE(3383), + [sym_preproc_error] = STATE(3383), + [sym_preproc_warning] = STATE(3383), + [sym_preproc_define] = STATE(3383), + [sym_preproc_undef] = STATE(3383), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(5509), + [anon_sym_BANG] = ACTIONS(5509), + [anon_sym_PLUS_PLUS] = ACTIONS(5506), + [anon_sym_DASH_DASH] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5506), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5506), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_GT_GT_GT] = ACTIONS(5506), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(5506), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(5506), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_PIPE_PIPE] = ACTIONS(5506), + [anon_sym_QMARK_QMARK] = ACTIONS(5506), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5506), + [anon_sym_is] = ACTIONS(5506), + [anon_sym_DASH_GT] = ACTIONS(5506), + [anon_sym_with] = ACTIONS(5506), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500555,57 +500590,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3384), [sym_preproc_define] = STATE(3384), [sym_preproc_undef] = STATE(3384), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_in] = ACTIONS(5234), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(5234), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_CARET] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5232), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_GT_GT_GT] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5234), - [anon_sym_EQ_GT] = ACTIONS(5232), - [anon_sym_switch] = ACTIONS(5232), - [anon_sym_when] = ACTIONS(5232), - [anon_sym_DOT_DOT] = ACTIONS(5232), - [anon_sym_and] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_QMARK_QMARK] = ACTIONS(5232), - [anon_sym_into] = ACTIONS(5232), - [anon_sym_on] = ACTIONS(5232), - [anon_sym_equals] = ACTIONS(5232), - [anon_sym_by] = ACTIONS(5232), - [anon_sym_as] = ACTIONS(5232), - [anon_sym_is] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_with] = ACTIONS(5232), - [aux_sym_preproc_if_token3] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5009), + [anon_sym_QMARK] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_GT_GT_GT] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_EQ_GT] = ACTIONS(5007), + [anon_sym_switch] = ACTIONS(5007), + [anon_sym_when] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_QMARK_QMARK] = ACTIONS(5007), + [anon_sym_into] = ACTIONS(5007), + [anon_sym_on] = ACTIONS(5007), + [anon_sym_equals] = ACTIONS(5007), + [anon_sym_by] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [anon_sym_with] = ACTIONS(5007), + [aux_sym_preproc_if_token3] = ACTIONS(5007), + [aux_sym_preproc_else_token1] = ACTIONS(5007), + [aux_sym_preproc_elif_token1] = ACTIONS(5007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500627,57 +500662,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3385), [sym_preproc_define] = STATE(3385), [sym_preproc_undef] = STATE(3385), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5041), - [anon_sym_QMARK] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_LT_LT] = ACTIONS(5039), - [anon_sym_GT_GT] = ACTIONS(5041), - [anon_sym_GT_GT_GT] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_EQ_GT] = ACTIONS(5039), - [anon_sym_switch] = ACTIONS(5039), - [anon_sym_when] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_and] = ACTIONS(5039), - [anon_sym_or] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_QMARK_QMARK] = ACTIONS(5039), - [anon_sym_into] = ACTIONS(5039), - [anon_sym_on] = ACTIONS(5039), - [anon_sym_equals] = ACTIONS(5039), - [anon_sym_by] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_DASH_GT] = ACTIONS(5039), - [anon_sym_with] = ACTIONS(5039), - [aux_sym_preproc_if_token3] = ACTIONS(5039), - [aux_sym_preproc_else_token1] = ACTIONS(5039), - [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4121), + [anon_sym_RPAREN] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4121), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_CARET] = ACTIONS(4121), + [anon_sym_PIPE] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_LT] = ACTIONS(4121), + [anon_sym_GT_GT] = ACTIONS(4119), + [anon_sym_GT_GT_GT] = ACTIONS(4121), + [anon_sym_EQ_EQ] = ACTIONS(4121), + [anon_sym_BANG_EQ] = ACTIONS(4121), + [anon_sym_GT_EQ] = ACTIONS(4121), + [anon_sym_LT_EQ] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(4121), + [anon_sym_switch] = ACTIONS(4121), + [anon_sym_when] = ACTIONS(4121), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_and] = ACTIONS(4121), + [anon_sym_or] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_PIPE_PIPE] = ACTIONS(4121), + [anon_sym_QMARK_QMARK] = ACTIONS(4121), + [anon_sym_on] = ACTIONS(4121), + [anon_sym_equals] = ACTIONS(4121), + [anon_sym_by] = ACTIONS(4121), + [anon_sym_as] = ACTIONS(4121), + [anon_sym_is] = ACTIONS(4121), + [anon_sym_DASH_GT] = ACTIONS(4121), + [anon_sym_with] = ACTIONS(4121), + [aux_sym_preproc_if_token3] = ACTIONS(4121), + [aux_sym_preproc_else_token1] = ACTIONS(4121), + [aux_sym_preproc_elif_token1] = ACTIONS(4121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500699,57 +500734,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3386), [sym_preproc_define] = STATE(3386), [sym_preproc_undef] = STATE(3386), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RBRACK] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_LT] = ACTIONS(5194), - [anon_sym_GT] = ACTIONS(5194), - [anon_sym_in] = ACTIONS(5194), - [anon_sym_QMARK] = ACTIONS(5194), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5194), - [anon_sym_GT_GT_GT] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(5192), - [anon_sym_switch] = ACTIONS(5192), - [anon_sym_when] = ACTIONS(5192), - [anon_sym_DOT_DOT] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5192), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_QMARK_QMARK] = ACTIONS(5192), - [anon_sym_into] = ACTIONS(5192), - [anon_sym_on] = ACTIONS(5192), - [anon_sym_equals] = ACTIONS(5192), - [anon_sym_by] = ACTIONS(5192), - [anon_sym_as] = ACTIONS(5192), - [anon_sym_is] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [anon_sym_with] = ACTIONS(5192), - [aux_sym_preproc_if_token3] = ACTIONS(5192), - [aux_sym_preproc_else_token1] = ACTIONS(5192), - [aux_sym_preproc_elif_token1] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_in] = ACTIONS(3699), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_PIPE] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LT_LT] = ACTIONS(3699), + [anon_sym_GT_GT] = ACTIONS(3697), + [anon_sym_GT_GT_GT] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_EQ_GT] = ACTIONS(3699), + [anon_sym_switch] = ACTIONS(3699), + [anon_sym_when] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_and] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3699), + [anon_sym_AMP_AMP] = ACTIONS(3699), + [anon_sym_PIPE_PIPE] = ACTIONS(3699), + [anon_sym_QMARK_QMARK] = ACTIONS(3699), + [anon_sym_on] = ACTIONS(3699), + [anon_sym_equals] = ACTIONS(3699), + [anon_sym_by] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_is] = ACTIONS(3699), + [anon_sym_DASH_GT] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3699), + [aux_sym_preproc_if_token3] = ACTIONS(3699), + [aux_sym_preproc_else_token1] = ACTIONS(3699), + [aux_sym_preproc_elif_token1] = ACTIONS(3699), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500771,57 +500806,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3387), [sym_preproc_define] = STATE(3387), [sym_preproc_undef] = STATE(3387), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(5196), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5196), - [anon_sym_DASH_DASH] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_CARET] = ACTIONS(5196), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_LT_LT] = ACTIONS(5196), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_GT_GT_GT] = ACTIONS(5196), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_EQ_GT] = ACTIONS(5196), - [anon_sym_switch] = ACTIONS(5196), - [anon_sym_when] = ACTIONS(5196), - [anon_sym_DOT_DOT] = ACTIONS(5196), - [anon_sym_and] = ACTIONS(5196), - [anon_sym_or] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_QMARK_QMARK] = ACTIONS(5196), - [anon_sym_into] = ACTIONS(5196), - [anon_sym_on] = ACTIONS(5196), - [anon_sym_equals] = ACTIONS(5196), - [anon_sym_by] = ACTIONS(5196), - [anon_sym_as] = ACTIONS(5196), - [anon_sym_is] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [anon_sym_with] = ACTIONS(5196), - [aux_sym_preproc_if_token3] = ACTIONS(5196), - [aux_sym_preproc_else_token1] = ACTIONS(5196), - [aux_sym_preproc_elif_token1] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_in] = ACTIONS(5228), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_GT_GT_GT] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_switch] = ACTIONS(5226), + [anon_sym_when] = ACTIONS(5226), + [anon_sym_DOT_DOT] = ACTIONS(5226), + [anon_sym_and] = ACTIONS(5226), + [anon_sym_or] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_QMARK_QMARK] = ACTIONS(5226), + [anon_sym_into] = ACTIONS(5226), + [anon_sym_on] = ACTIONS(5226), + [anon_sym_equals] = ACTIONS(5226), + [anon_sym_by] = ACTIONS(5226), + [anon_sym_as] = ACTIONS(5226), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_with] = ACTIONS(5226), + [aux_sym_preproc_if_token3] = ACTIONS(5226), + [aux_sym_preproc_else_token1] = ACTIONS(5226), + [aux_sym_preproc_elif_token1] = ACTIONS(5226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500843,57 +500878,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3388), [sym_preproc_define] = STATE(3388), [sym_preproc_undef] = STATE(3388), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_in] = ACTIONS(5029), - [anon_sym_QMARK] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5029), - [anon_sym_GT_GT_GT] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_EQ_GT] = ACTIONS(5027), - [anon_sym_switch] = ACTIONS(5027), - [anon_sym_when] = ACTIONS(5027), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_and] = ACTIONS(5027), - [anon_sym_or] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_QMARK_QMARK] = ACTIONS(5027), - [anon_sym_into] = ACTIONS(5027), - [anon_sym_on] = ACTIONS(5027), - [anon_sym_equals] = ACTIONS(5027), - [anon_sym_by] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5027), - [anon_sym_is] = ACTIONS(5027), - [anon_sym_DASH_GT] = ACTIONS(5027), - [anon_sym_with] = ACTIONS(5027), - [aux_sym_preproc_if_token3] = ACTIONS(5027), - [aux_sym_preproc_else_token1] = ACTIONS(5027), - [aux_sym_preproc_elif_token1] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_in] = ACTIONS(5240), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_GT_GT_GT] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_EQ_GT] = ACTIONS(5238), + [anon_sym_switch] = ACTIONS(5238), + [anon_sym_when] = ACTIONS(5238), + [anon_sym_DOT_DOT] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_QMARK_QMARK] = ACTIONS(5238), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_on] = ACTIONS(5238), + [anon_sym_equals] = ACTIONS(5238), + [anon_sym_by] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5238), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5238), + [anon_sym_with] = ACTIONS(5238), + [aux_sym_preproc_if_token3] = ACTIONS(5238), + [aux_sym_preproc_else_token1] = ACTIONS(5238), + [aux_sym_preproc_elif_token1] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500915,57 +500950,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3389), [sym_preproc_define] = STATE(3389), [sym_preproc_undef] = STATE(3389), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5025), - [anon_sym_QMARK] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_GT_GT_GT] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_EQ_GT] = ACTIONS(5023), - [anon_sym_switch] = ACTIONS(5023), - [anon_sym_when] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_and] = ACTIONS(5023), - [anon_sym_or] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_QMARK_QMARK] = ACTIONS(5023), - [anon_sym_into] = ACTIONS(5023), - [anon_sym_on] = ACTIONS(5023), - [anon_sym_equals] = ACTIONS(5023), - [anon_sym_by] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5023), - [anon_sym_DASH_GT] = ACTIONS(5023), - [anon_sym_with] = ACTIONS(5023), - [aux_sym_preproc_if_token3] = ACTIONS(5023), - [aux_sym_preproc_else_token1] = ACTIONS(5023), - [aux_sym_preproc_elif_token1] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5211), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5213), + [anon_sym_LT_LT] = ACTIONS(5211), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_GT_GT_GT] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_EQ_GT] = ACTIONS(5211), + [anon_sym_switch] = ACTIONS(5211), + [anon_sym_when] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_or] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_QMARK_QMARK] = ACTIONS(5211), + [anon_sym_into] = ACTIONS(5211), + [anon_sym_on] = ACTIONS(5211), + [anon_sym_equals] = ACTIONS(5211), + [anon_sym_by] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5211), + [anon_sym_with] = ACTIONS(5211), + [aux_sym_preproc_if_token3] = ACTIONS(5211), + [aux_sym_preproc_else_token1] = ACTIONS(5211), + [aux_sym_preproc_elif_token1] = ACTIONS(5211), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500987,57 +501022,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3390), [sym_preproc_define] = STATE(3390), [sym_preproc_undef] = STATE(3390), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_RBRACK] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_RPAREN] = ACTIONS(4931), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_in] = ACTIONS(4933), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_EQ_GT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_when] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_on] = ACTIONS(4931), - [anon_sym_equals] = ACTIONS(4931), - [anon_sym_by] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [aux_sym_preproc_if_token3] = ACTIONS(4931), - [aux_sym_preproc_else_token1] = ACTIONS(4931), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_RPAREN] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_CARET] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4148), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_EQ_GT] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_when] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4148), + [anon_sym_or] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4148), + [anon_sym_on] = ACTIONS(4148), + [anon_sym_equals] = ACTIONS(4148), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4148), + [aux_sym_preproc_if_token3] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501059,57 +501094,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3391), [sym_preproc_define] = STATE(3391), [sym_preproc_undef] = STATE(3391), - [anon_sym_SEMI] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_RPAREN] = ACTIONS(5065), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5067), - [anon_sym_LT_LT] = ACTIONS(5065), - [anon_sym_GT_GT] = ACTIONS(5067), - [anon_sym_GT_GT_GT] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_EQ_GT] = ACTIONS(5065), - [anon_sym_switch] = ACTIONS(5065), - [anon_sym_when] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_and] = ACTIONS(5065), - [anon_sym_or] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_QMARK_QMARK] = ACTIONS(5065), - [anon_sym_into] = ACTIONS(5065), - [anon_sym_on] = ACTIONS(5065), - [anon_sym_equals] = ACTIONS(5065), - [anon_sym_by] = ACTIONS(5065), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5065), - [anon_sym_with] = ACTIONS(5065), - [aux_sym_preproc_if_token3] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), + [anon_sym_SEMI] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_in] = ACTIONS(5390), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_EQ_GT] = ACTIONS(5388), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_when] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5388), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_into] = ACTIONS(5388), + [anon_sym_on] = ACTIONS(5388), + [anon_sym_equals] = ACTIONS(5388), + [anon_sym_by] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5388), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), + [aux_sym_preproc_if_token3] = ACTIONS(5388), + [aux_sym_preproc_else_token1] = ACTIONS(5388), + [aux_sym_preproc_elif_token1] = ACTIONS(5388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501131,57 +501166,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3392), [sym_preproc_define] = STATE(3392), [sym_preproc_undef] = STATE(3392), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5071), - [anon_sym_LT_LT] = ACTIONS(5069), - [anon_sym_GT_GT] = ACTIONS(5071), - [anon_sym_GT_GT_GT] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_EQ_GT] = ACTIONS(5069), - [anon_sym_switch] = ACTIONS(5069), - [anon_sym_when] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_or] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_QMARK_QMARK] = ACTIONS(5069), - [anon_sym_into] = ACTIONS(5069), - [anon_sym_on] = ACTIONS(5069), - [anon_sym_equals] = ACTIONS(5069), - [anon_sym_by] = ACTIONS(5069), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5069), - [anon_sym_with] = ACTIONS(5069), - [aux_sym_preproc_if_token3] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_RBRACK] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_in] = ACTIONS(4989), + [anon_sym_QMARK] = ACTIONS(4989), + [anon_sym_BANG] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4987), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_GT_GT_GT] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_EQ_GT] = ACTIONS(4987), + [anon_sym_switch] = ACTIONS(4987), + [anon_sym_when] = ACTIONS(4987), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_and] = ACTIONS(4987), + [anon_sym_or] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_QMARK_QMARK] = ACTIONS(4987), + [anon_sym_into] = ACTIONS(4987), + [anon_sym_on] = ACTIONS(4987), + [anon_sym_equals] = ACTIONS(4987), + [anon_sym_by] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_with] = ACTIONS(4987), + [aux_sym_preproc_if_token3] = ACTIONS(4987), + [aux_sym_preproc_else_token1] = ACTIONS(4987), + [aux_sym_preproc_elif_token1] = ACTIONS(4987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501203,57 +501238,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3393), [sym_preproc_define] = STATE(3393), [sym_preproc_undef] = STATE(3393), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5101), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_GT_GT_GT] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_EQ_GT] = ACTIONS(5099), - [anon_sym_switch] = ACTIONS(5099), - [anon_sym_when] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_QMARK_QMARK] = ACTIONS(5099), - [anon_sym_into] = ACTIONS(5099), - [anon_sym_on] = ACTIONS(5099), - [anon_sym_equals] = ACTIONS(5099), - [anon_sym_by] = ACTIONS(5099), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_with] = ACTIONS(5099), - [aux_sym_preproc_if_token3] = ACTIONS(5099), - [aux_sym_preproc_else_token1] = ACTIONS(5099), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_COLON] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5065), + [anon_sym_QMARK] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5065), + [anon_sym_GT_GT_GT] = ACTIONS(5063), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_EQ_GT] = ACTIONS(5063), + [anon_sym_switch] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5063), + [anon_sym_and] = ACTIONS(5063), + [anon_sym_or] = ACTIONS(5063), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), + [anon_sym_QMARK_QMARK] = ACTIONS(5063), + [anon_sym_into] = ACTIONS(5063), + [anon_sym_on] = ACTIONS(5063), + [anon_sym_equals] = ACTIONS(5063), + [anon_sym_by] = ACTIONS(5063), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5063), + [anon_sym_with] = ACTIONS(5063), + [aux_sym_preproc_if_token3] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501275,57 +501310,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3394), [sym_preproc_define] = STATE(3394), [sym_preproc_undef] = STATE(3394), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_in] = ACTIONS(4354), - [anon_sym_QMARK] = ACTIONS(5507), - [anon_sym_BANG] = ACTIONS(5507), - [anon_sym_PLUS_PLUS] = ACTIONS(5504), - [anon_sym_DASH_DASH] = ACTIONS(5504), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5504), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_CARET] = ACTIONS(5504), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5504), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym_GT_GT_GT] = ACTIONS(5504), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_BANG_EQ] = ACTIONS(5504), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(5504), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(5504), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(5504), - [anon_sym_PIPE_PIPE] = ACTIONS(5504), - [anon_sym_QMARK_QMARK] = ACTIONS(5504), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5504), - [anon_sym_is] = ACTIONS(5504), - [anon_sym_DASH_GT] = ACTIONS(5504), - [anon_sym_with] = ACTIONS(5504), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_COLON] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_in] = ACTIONS(5205), + [anon_sym_QMARK] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PLUS_PLUS] = ACTIONS(5203), + [anon_sym_DASH_DASH] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5203), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_CARET] = ACTIONS(5203), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_AMP] = ACTIONS(5205), + [anon_sym_LT_LT] = ACTIONS(5203), + [anon_sym_GT_GT] = ACTIONS(5205), + [anon_sym_GT_GT_GT] = ACTIONS(5203), + [anon_sym_EQ_EQ] = ACTIONS(5203), + [anon_sym_BANG_EQ] = ACTIONS(5203), + [anon_sym_GT_EQ] = ACTIONS(5203), + [anon_sym_LT_EQ] = ACTIONS(5203), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_EQ_GT] = ACTIONS(5203), + [anon_sym_switch] = ACTIONS(5203), + [anon_sym_when] = ACTIONS(5203), + [anon_sym_DOT_DOT] = ACTIONS(5203), + [anon_sym_and] = ACTIONS(5203), + [anon_sym_or] = ACTIONS(5203), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_QMARK_QMARK] = ACTIONS(5203), + [anon_sym_into] = ACTIONS(5203), + [anon_sym_on] = ACTIONS(5203), + [anon_sym_equals] = ACTIONS(5203), + [anon_sym_by] = ACTIONS(5203), + [anon_sym_as] = ACTIONS(5203), + [anon_sym_is] = ACTIONS(5203), + [anon_sym_DASH_GT] = ACTIONS(5203), + [anon_sym_with] = ACTIONS(5203), + [aux_sym_preproc_if_token3] = ACTIONS(5203), + [aux_sym_preproc_else_token1] = ACTIONS(5203), + [aux_sym_preproc_elif_token1] = ACTIONS(5203), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501347,57 +501382,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3395), [sym_preproc_define] = STATE(3395), [sym_preproc_undef] = STATE(3395), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(5510), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5513), - [anon_sym_in] = ACTIONS(4354), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_BANG] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5510), - [anon_sym_DASH_DASH] = ACTIONS(5510), - [anon_sym_PLUS] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5510), - [anon_sym_SLASH] = ACTIONS(5513), - [anon_sym_PERCENT] = ACTIONS(5510), - [anon_sym_CARET] = ACTIONS(5510), - [anon_sym_PIPE] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_LT_LT] = ACTIONS(5510), - [anon_sym_GT_GT] = ACTIONS(5513), - [anon_sym_GT_GT_GT] = ACTIONS(5510), - [anon_sym_EQ_EQ] = ACTIONS(5510), - [anon_sym_BANG_EQ] = ACTIONS(5510), - [anon_sym_GT_EQ] = ACTIONS(5510), - [anon_sym_LT_EQ] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(5513), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(5510), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(5510), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(5510), - [anon_sym_PIPE_PIPE] = ACTIONS(5510), - [anon_sym_QMARK_QMARK] = ACTIONS(5510), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5510), - [anon_sym_is] = ACTIONS(5510), - [anon_sym_DASH_GT] = ACTIONS(5510), - [anon_sym_with] = ACTIONS(5510), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_COLON] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5209), + [anon_sym_QMARK] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_CARET] = ACTIONS(5207), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5209), + [anon_sym_LT_LT] = ACTIONS(5207), + [anon_sym_GT_GT] = ACTIONS(5209), + [anon_sym_GT_GT_GT] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_EQ_GT] = ACTIONS(5207), + [anon_sym_switch] = ACTIONS(5207), + [anon_sym_when] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_and] = ACTIONS(5207), + [anon_sym_or] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_QMARK_QMARK] = ACTIONS(5207), + [anon_sym_into] = ACTIONS(5207), + [anon_sym_on] = ACTIONS(5207), + [anon_sym_equals] = ACTIONS(5207), + [anon_sym_by] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_with] = ACTIONS(5207), + [aux_sym_preproc_if_token3] = ACTIONS(5207), + [aux_sym_preproc_else_token1] = ACTIONS(5207), + [aux_sym_preproc_elif_token1] = ACTIONS(5207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501419,57 +501454,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3396), [sym_preproc_define] = STATE(3396), [sym_preproc_undef] = STATE(3396), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5160), - [anon_sym_COLON] = ACTIONS(5160), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RBRACK] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_in] = ACTIONS(5162), - [anon_sym_QMARK] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_PLUS_PLUS] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_GT_GT_GT] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_EQ_GT] = ACTIONS(5160), - [anon_sym_switch] = ACTIONS(5160), - [anon_sym_when] = ACTIONS(5160), - [anon_sym_DOT_DOT] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_QMARK_QMARK] = ACTIONS(5160), - [anon_sym_into] = ACTIONS(5160), - [anon_sym_on] = ACTIONS(5160), - [anon_sym_equals] = ACTIONS(5160), - [anon_sym_by] = ACTIONS(5160), - [anon_sym_as] = ACTIONS(5160), - [anon_sym_is] = ACTIONS(5160), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), - [aux_sym_preproc_if_token3] = ACTIONS(5160), - [aux_sym_preproc_else_token1] = ACTIONS(5160), - [aux_sym_preproc_elif_token1] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_COMMA] = ACTIONS(5512), + [anon_sym_RBRACK] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5512), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_RBRACE] = ACTIONS(5512), + [anon_sym_LT] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5514), + [anon_sym_in] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_BANG] = ACTIONS(5514), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5512), + [anon_sym_PIPE] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_GT_GT_GT] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5512), + [anon_sym_BANG_EQ] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5514), + [anon_sym_EQ_GT] = ACTIONS(5512), + [anon_sym_switch] = ACTIONS(5512), + [anon_sym_when] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_AMP_AMP] = ACTIONS(5512), + [anon_sym_PIPE_PIPE] = ACTIONS(5512), + [anon_sym_QMARK_QMARK] = ACTIONS(5512), + [anon_sym_into] = ACTIONS(5512), + [anon_sym_on] = ACTIONS(5512), + [anon_sym_equals] = ACTIONS(5512), + [anon_sym_by] = ACTIONS(5512), + [anon_sym_as] = ACTIONS(5512), + [anon_sym_is] = ACTIONS(5512), + [anon_sym_DASH_GT] = ACTIONS(5512), + [anon_sym_with] = ACTIONS(5512), + [aux_sym_preproc_if_token3] = ACTIONS(5512), + [aux_sym_preproc_else_token1] = ACTIONS(5512), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501491,57 +501526,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3397), [sym_preproc_define] = STATE(3397), [sym_preproc_undef] = STATE(3397), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RBRACK] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(5174), - [anon_sym_GT] = ACTIONS(5174), - [anon_sym_in] = ACTIONS(5174), - [anon_sym_QMARK] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_CARET] = ACTIONS(5172), - [anon_sym_PIPE] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_LT_LT] = ACTIONS(5172), - [anon_sym_GT_GT] = ACTIONS(5174), - [anon_sym_GT_GT_GT] = ACTIONS(5172), - [anon_sym_EQ_EQ] = ACTIONS(5172), - [anon_sym_BANG_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_EQ_GT] = ACTIONS(5172), - [anon_sym_switch] = ACTIONS(5172), - [anon_sym_when] = ACTIONS(5172), - [anon_sym_DOT_DOT] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5172), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_QMARK_QMARK] = ACTIONS(5172), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_on] = ACTIONS(5172), - [anon_sym_equals] = ACTIONS(5172), - [anon_sym_by] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5172), - [anon_sym_is] = ACTIONS(5172), - [anon_sym_DASH_GT] = ACTIONS(5172), - [anon_sym_with] = ACTIONS(5172), - [aux_sym_preproc_if_token3] = ACTIONS(5172), - [aux_sym_preproc_else_token1] = ACTIONS(5172), - [aux_sym_preproc_elif_token1] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_QMARK] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5053), + [anon_sym_GT_GT_GT] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_EQ_GT] = ACTIONS(5051), + [anon_sym_switch] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_and] = ACTIONS(5051), + [anon_sym_or] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_QMARK_QMARK] = ACTIONS(5051), + [anon_sym_into] = ACTIONS(5051), + [anon_sym_on] = ACTIONS(5051), + [anon_sym_equals] = ACTIONS(5051), + [anon_sym_by] = ACTIONS(5051), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5051), + [anon_sym_with] = ACTIONS(5051), + [aux_sym_preproc_if_token3] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501563,57 +501598,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3398), [sym_preproc_define] = STATE(3398), [sym_preproc_undef] = STATE(3398), - [anon_sym_SEMI] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_RBRACK] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_LT] = ACTIONS(5186), - [anon_sym_GT] = ACTIONS(5186), - [anon_sym_in] = ACTIONS(5186), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_PLUS_PLUS] = ACTIONS(5184), - [anon_sym_DASH_DASH] = ACTIONS(5184), - [anon_sym_PLUS] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_SLASH] = ACTIONS(5186), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5186), - [anon_sym_GT_GT_GT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5184), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_EQ_GT] = ACTIONS(5184), - [anon_sym_switch] = ACTIONS(5184), - [anon_sym_when] = ACTIONS(5184), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5184), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_QMARK_QMARK] = ACTIONS(5184), - [anon_sym_into] = ACTIONS(5184), - [anon_sym_on] = ACTIONS(5184), - [anon_sym_equals] = ACTIONS(5184), - [anon_sym_by] = ACTIONS(5184), - [anon_sym_as] = ACTIONS(5184), - [anon_sym_is] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5184), - [anon_sym_with] = ACTIONS(5184), - [aux_sym_preproc_if_token3] = ACTIONS(5184), - [aux_sym_preproc_else_token1] = ACTIONS(5184), - [aux_sym_preproc_elif_token1] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COMMA] = ACTIONS(3676), + [anon_sym_RBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_RPAREN] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_in] = ACTIONS(3676), + [anon_sym_QMARK] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_PIPE] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_LT_LT] = ACTIONS(3676), + [anon_sym_GT_GT] = ACTIONS(3674), + [anon_sym_GT_GT_GT] = ACTIONS(3676), + [anon_sym_EQ_EQ] = ACTIONS(3676), + [anon_sym_BANG_EQ] = ACTIONS(3676), + [anon_sym_GT_EQ] = ACTIONS(3676), + [anon_sym_LT_EQ] = ACTIONS(3676), + [anon_sym_DOT] = ACTIONS(3674), + [anon_sym_EQ_GT] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_and] = ACTIONS(3676), + [anon_sym_or] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_PIPE_PIPE] = ACTIONS(3676), + [anon_sym_QMARK_QMARK] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_equals] = ACTIONS(3676), + [anon_sym_by] = ACTIONS(3676), + [anon_sym_as] = ACTIONS(3676), + [anon_sym_is] = ACTIONS(3676), + [anon_sym_DASH_GT] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [aux_sym_preproc_if_token3] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501635,57 +501670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3399), [sym_preproc_define] = STATE(3399), [sym_preproc_undef] = STATE(3399), - [anon_sym_SEMI] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5148), - [anon_sym_COLON] = ACTIONS(5148), - [anon_sym_COMMA] = ACTIONS(5148), - [anon_sym_RBRACK] = ACTIONS(5148), - [anon_sym_LPAREN] = ACTIONS(5148), - [anon_sym_RPAREN] = ACTIONS(5148), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_LT] = ACTIONS(5150), - [anon_sym_GT] = ACTIONS(5150), - [anon_sym_in] = ACTIONS(5150), - [anon_sym_QMARK] = ACTIONS(5150), - [anon_sym_BANG] = ACTIONS(5150), - [anon_sym_PLUS_PLUS] = ACTIONS(5148), - [anon_sym_DASH_DASH] = ACTIONS(5148), - [anon_sym_PLUS] = ACTIONS(5150), - [anon_sym_DASH] = ACTIONS(5150), - [anon_sym_STAR] = ACTIONS(5148), - [anon_sym_SLASH] = ACTIONS(5150), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_CARET] = ACTIONS(5148), - [anon_sym_PIPE] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5150), - [anon_sym_LT_LT] = ACTIONS(5148), - [anon_sym_GT_GT] = ACTIONS(5150), - [anon_sym_GT_GT_GT] = ACTIONS(5148), - [anon_sym_EQ_EQ] = ACTIONS(5148), - [anon_sym_BANG_EQ] = ACTIONS(5148), - [anon_sym_GT_EQ] = ACTIONS(5148), - [anon_sym_LT_EQ] = ACTIONS(5148), - [anon_sym_DOT] = ACTIONS(5150), - [anon_sym_EQ_GT] = ACTIONS(5148), - [anon_sym_switch] = ACTIONS(5148), - [anon_sym_when] = ACTIONS(5148), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_and] = ACTIONS(5148), - [anon_sym_or] = ACTIONS(5148), - [anon_sym_AMP_AMP] = ACTIONS(5148), - [anon_sym_PIPE_PIPE] = ACTIONS(5148), - [anon_sym_QMARK_QMARK] = ACTIONS(5148), - [anon_sym_into] = ACTIONS(5148), - [anon_sym_on] = ACTIONS(5148), - [anon_sym_equals] = ACTIONS(5148), - [anon_sym_by] = ACTIONS(5148), - [anon_sym_as] = ACTIONS(5148), - [anon_sym_is] = ACTIONS(5148), - [anon_sym_DASH_GT] = ACTIONS(5148), - [anon_sym_with] = ACTIONS(5148), - [aux_sym_preproc_if_token3] = ACTIONS(5148), - [aux_sym_preproc_else_token1] = ACTIONS(5148), - [aux_sym_preproc_elif_token1] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_in] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_GT_GT_GT] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_EQ_GT] = ACTIONS(4991), + [anon_sym_switch] = ACTIONS(4991), + [anon_sym_when] = ACTIONS(4991), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_QMARK_QMARK] = ACTIONS(4991), + [anon_sym_into] = ACTIONS(4991), + [anon_sym_on] = ACTIONS(4991), + [anon_sym_equals] = ACTIONS(4991), + [anon_sym_by] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [anon_sym_with] = ACTIONS(4991), + [aux_sym_preproc_if_token3] = ACTIONS(4991), + [aux_sym_preproc_else_token1] = ACTIONS(4991), + [aux_sym_preproc_elif_token1] = ACTIONS(4991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501698,26 +501733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3400] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7521), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3400), [sym_preproc_endregion] = STATE(3400), [sym_preproc_line] = STATE(3400), @@ -501727,36 +501742,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3400), [sym_preproc_define] = STATE(3400), [sym_preproc_undef] = STATE(3400), - [aux_sym_function_pointer_type_repeat1] = STATE(3468), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_COLON] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5113), + [anon_sym_QMARK] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5115), + [anon_sym_GT_GT_GT] = ACTIONS(5113), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_EQ_GT] = ACTIONS(5113), + [anon_sym_switch] = ACTIONS(5113), + [anon_sym_when] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_and] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5113), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_QMARK_QMARK] = ACTIONS(5113), + [anon_sym_on] = ACTIONS(5113), + [anon_sym_equals] = ACTIONS(5113), + [anon_sym_by] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [anon_sym_with] = ACTIONS(5113), + [aux_sym_preproc_if_token3] = ACTIONS(5113), + [aux_sym_preproc_else_token1] = ACTIONS(5113), + [aux_sym_preproc_elif_token1] = ACTIONS(5113), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501769,26 +501804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3401] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3401), [sym_preproc_endregion] = STATE(3401), [sym_preproc_line] = STATE(3401), @@ -501798,36 +501813,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3401), [sym_preproc_define] = STATE(3401), [sym_preproc_undef] = STATE(3401), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5524), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_RBRACK] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_RPAREN] = ACTIONS(5433), + [anon_sym_RBRACE] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_in] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_EQ_GT] = ACTIONS(5433), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_when] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_on] = ACTIONS(5433), + [anon_sym_equals] = ACTIONS(5433), + [anon_sym_by] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5433), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), + [aux_sym_preproc_if_token3] = ACTIONS(5433), + [aux_sym_preproc_else_token1] = ACTIONS(5433), + [aux_sym_preproc_elif_token1] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501849,56 +501884,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3402), [sym_preproc_define] = STATE(3402), [sym_preproc_undef] = STATE(3402), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_LT_LT] = ACTIONS(5015), - [anon_sym_GT_GT] = ACTIONS(5017), - [anon_sym_GT_GT_GT] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5015), - [anon_sym_switch] = ACTIONS(5015), - [anon_sym_when] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5015), - [anon_sym_or] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_QMARK_QMARK] = ACTIONS(5015), - [anon_sym_on] = ACTIONS(5015), - [anon_sym_equals] = ACTIONS(5015), - [anon_sym_by] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_DASH_GT] = ACTIONS(5015), - [anon_sym_with] = ACTIONS(5015), - [aux_sym_preproc_if_token3] = ACTIONS(5015), - [aux_sym_preproc_else_token1] = ACTIONS(5015), - [aux_sym_preproc_elif_token1] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_COMMA] = ACTIONS(5425), + [anon_sym_RBRACK] = ACTIONS(5425), + [anon_sym_LPAREN] = ACTIONS(5425), + [anon_sym_RPAREN] = ACTIONS(5425), + [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_in] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_BANG] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5427), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5427), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_GT_GT_GT] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5425), + [anon_sym_BANG_EQ] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5425), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_DOT] = ACTIONS(5427), + [anon_sym_EQ_GT] = ACTIONS(5425), + [anon_sym_switch] = ACTIONS(5425), + [anon_sym_when] = ACTIONS(5425), + [anon_sym_DOT_DOT] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_QMARK_QMARK] = ACTIONS(5425), + [anon_sym_on] = ACTIONS(5425), + [anon_sym_equals] = ACTIONS(5425), + [anon_sym_by] = ACTIONS(5425), + [anon_sym_as] = ACTIONS(5425), + [anon_sym_is] = ACTIONS(5425), + [anon_sym_DASH_GT] = ACTIONS(5425), + [anon_sym_with] = ACTIONS(5425), + [aux_sym_preproc_if_token3] = ACTIONS(5425), + [aux_sym_preproc_else_token1] = ACTIONS(5425), + [aux_sym_preproc_elif_token1] = ACTIONS(5425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501920,56 +501955,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3403), [sym_preproc_define] = STATE(3403), [sym_preproc_undef] = STATE(3403), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_GT_GT_GT] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_EQ_GT] = ACTIONS(5047), - [anon_sym_switch] = ACTIONS(5047), - [anon_sym_when] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_or] = ACTIONS(5047), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_QMARK_QMARK] = ACTIONS(5047), - [anon_sym_on] = ACTIONS(5047), - [anon_sym_equals] = ACTIONS(5047), - [anon_sym_by] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_DASH_GT] = ACTIONS(5047), - [anon_sym_with] = ACTIONS(5047), - [aux_sym_preproc_if_token3] = ACTIONS(5047), - [aux_sym_preproc_else_token1] = ACTIONS(5047), - [aux_sym_preproc_elif_token1] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_RBRACK] = ACTIONS(5429), + [anon_sym_LPAREN] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_in] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_BANG] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_GT_GT_GT] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_EQ_GT] = ACTIONS(5429), + [anon_sym_switch] = ACTIONS(5429), + [anon_sym_when] = ACTIONS(5429), + [anon_sym_DOT_DOT] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_QMARK_QMARK] = ACTIONS(5429), + [anon_sym_on] = ACTIONS(5429), + [anon_sym_equals] = ACTIONS(5429), + [anon_sym_by] = ACTIONS(5429), + [anon_sym_as] = ACTIONS(5429), + [anon_sym_is] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [anon_sym_with] = ACTIONS(5429), + [aux_sym_preproc_if_token3] = ACTIONS(5429), + [aux_sym_preproc_else_token1] = ACTIONS(5429), + [aux_sym_preproc_elif_token1] = ACTIONS(5429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501991,56 +502026,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3404), [sym_preproc_define] = STATE(3404), [sym_preproc_undef] = STATE(3404), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_GT_GT_GT] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_EQ_GT] = ACTIONS(5023), - [anon_sym_switch] = ACTIONS(5023), - [anon_sym_when] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_and] = ACTIONS(5023), - [anon_sym_or] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_QMARK_QMARK] = ACTIONS(5023), - [anon_sym_on] = ACTIONS(5023), - [anon_sym_equals] = ACTIONS(5023), - [anon_sym_by] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5023), - [anon_sym_is] = ACTIONS(5023), - [anon_sym_DASH_GT] = ACTIONS(5023), - [anon_sym_with] = ACTIONS(5023), - [aux_sym_preproc_if_token3] = ACTIONS(5023), - [aux_sym_preproc_else_token1] = ACTIONS(5023), - [aux_sym_preproc_elif_token1] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_in] = ACTIONS(5187), + [anon_sym_QMARK] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_CARET] = ACTIONS(5187), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_AMP] = ACTIONS(5189), + [anon_sym_LT_LT] = ACTIONS(5187), + [anon_sym_GT_GT] = ACTIONS(5189), + [anon_sym_GT_GT_GT] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5189), + [anon_sym_EQ_GT] = ACTIONS(5187), + [anon_sym_switch] = ACTIONS(5187), + [anon_sym_when] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_and] = ACTIONS(5187), + [anon_sym_or] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_QMARK_QMARK] = ACTIONS(5187), + [anon_sym_on] = ACTIONS(5187), + [anon_sym_equals] = ACTIONS(5187), + [anon_sym_by] = ACTIONS(5187), + [anon_sym_as] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5187), + [anon_sym_with] = ACTIONS(5187), + [aux_sym_preproc_if_token3] = ACTIONS(5187), + [aux_sym_preproc_else_token1] = ACTIONS(5187), + [aux_sym_preproc_elif_token1] = ACTIONS(5187), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502062,56 +502097,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3405), [sym_preproc_define] = STATE(3405), [sym_preproc_undef] = STATE(3405), - [anon_sym_SEMI] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5148), - [anon_sym_COLON] = ACTIONS(5148), - [anon_sym_COMMA] = ACTIONS(5148), - [anon_sym_RBRACK] = ACTIONS(5148), - [anon_sym_LPAREN] = ACTIONS(5148), - [anon_sym_RPAREN] = ACTIONS(5148), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_LT] = ACTIONS(5150), - [anon_sym_GT] = ACTIONS(5150), - [anon_sym_in] = ACTIONS(5148), - [anon_sym_QMARK] = ACTIONS(5150), - [anon_sym_BANG] = ACTIONS(5150), - [anon_sym_PLUS_PLUS] = ACTIONS(5148), - [anon_sym_DASH_DASH] = ACTIONS(5148), - [anon_sym_PLUS] = ACTIONS(5150), - [anon_sym_DASH] = ACTIONS(5150), - [anon_sym_STAR] = ACTIONS(5148), - [anon_sym_SLASH] = ACTIONS(5150), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_CARET] = ACTIONS(5148), - [anon_sym_PIPE] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5150), - [anon_sym_LT_LT] = ACTIONS(5148), - [anon_sym_GT_GT] = ACTIONS(5150), - [anon_sym_GT_GT_GT] = ACTIONS(5148), - [anon_sym_EQ_EQ] = ACTIONS(5148), - [anon_sym_BANG_EQ] = ACTIONS(5148), - [anon_sym_GT_EQ] = ACTIONS(5148), - [anon_sym_LT_EQ] = ACTIONS(5148), - [anon_sym_DOT] = ACTIONS(5150), - [anon_sym_EQ_GT] = ACTIONS(5148), - [anon_sym_switch] = ACTIONS(5148), - [anon_sym_when] = ACTIONS(5148), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_and] = ACTIONS(5148), - [anon_sym_or] = ACTIONS(5148), - [anon_sym_AMP_AMP] = ACTIONS(5148), - [anon_sym_PIPE_PIPE] = ACTIONS(5148), - [anon_sym_QMARK_QMARK] = ACTIONS(5148), - [anon_sym_on] = ACTIONS(5148), - [anon_sym_equals] = ACTIONS(5148), - [anon_sym_by] = ACTIONS(5148), - [anon_sym_as] = ACTIONS(5148), - [anon_sym_is] = ACTIONS(5148), - [anon_sym_DASH_GT] = ACTIONS(5148), - [anon_sym_with] = ACTIONS(5148), - [aux_sym_preproc_if_token3] = ACTIONS(5148), - [aux_sym_preproc_else_token1] = ACTIONS(5148), - [aux_sym_preproc_elif_token1] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_in] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5218), + [anon_sym_DASH_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5218), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_GT_GT_GT] = ACTIONS(5218), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_EQ_GT] = ACTIONS(5218), + [anon_sym_switch] = ACTIONS(5218), + [anon_sym_when] = ACTIONS(5218), + [anon_sym_DOT_DOT] = ACTIONS(5218), + [anon_sym_and] = ACTIONS(5218), + [anon_sym_or] = ACTIONS(5218), + [anon_sym_AMP_AMP] = ACTIONS(5218), + [anon_sym_PIPE_PIPE] = ACTIONS(5218), + [anon_sym_QMARK_QMARK] = ACTIONS(5218), + [anon_sym_on] = ACTIONS(5218), + [anon_sym_equals] = ACTIONS(5218), + [anon_sym_by] = ACTIONS(5218), + [anon_sym_as] = ACTIONS(5218), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_DASH_GT] = ACTIONS(5218), + [anon_sym_with] = ACTIONS(5218), + [aux_sym_preproc_if_token3] = ACTIONS(5218), + [aux_sym_preproc_else_token1] = ACTIONS(5218), + [aux_sym_preproc_elif_token1] = ACTIONS(5218), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502133,56 +502168,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3406), [sym_preproc_define] = STATE(3406), [sym_preproc_undef] = STATE(3406), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_when] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_COLON] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5167), + [anon_sym_QMARK] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5169), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5169), + [anon_sym_GT_GT_GT] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_EQ_GT] = ACTIONS(5167), + [anon_sym_switch] = ACTIONS(5167), + [anon_sym_when] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_and] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_QMARK_QMARK] = ACTIONS(5167), + [anon_sym_on] = ACTIONS(5167), + [anon_sym_equals] = ACTIONS(5167), + [anon_sym_by] = ACTIONS(5167), + [anon_sym_as] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [anon_sym_with] = ACTIONS(5167), + [aux_sym_preproc_if_token3] = ACTIONS(5167), + [aux_sym_preproc_else_token1] = ACTIONS(5167), + [aux_sym_preproc_elif_token1] = ACTIONS(5167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502204,56 +502239,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3407), [sym_preproc_define] = STATE(3407), [sym_preproc_undef] = STATE(3407), - [anon_sym_SEMI] = ACTIONS(5448), - [anon_sym_LBRACK] = ACTIONS(5448), - [anon_sym_COLON] = ACTIONS(5448), - [anon_sym_COMMA] = ACTIONS(5448), - [anon_sym_RBRACK] = ACTIONS(5448), - [anon_sym_LPAREN] = ACTIONS(5448), - [anon_sym_RPAREN] = ACTIONS(5448), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_in] = ACTIONS(5448), - [anon_sym_QMARK] = ACTIONS(5450), - [anon_sym_BANG] = ACTIONS(5450), - [anon_sym_PLUS_PLUS] = ACTIONS(5448), - [anon_sym_DASH_DASH] = ACTIONS(5448), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5448), - [anon_sym_CARET] = ACTIONS(5448), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5448), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_GT_GT_GT] = ACTIONS(5448), - [anon_sym_EQ_EQ] = ACTIONS(5448), - [anon_sym_BANG_EQ] = ACTIONS(5448), - [anon_sym_GT_EQ] = ACTIONS(5448), - [anon_sym_LT_EQ] = ACTIONS(5448), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_EQ_GT] = ACTIONS(5448), - [anon_sym_switch] = ACTIONS(5448), - [anon_sym_when] = ACTIONS(5448), - [anon_sym_DOT_DOT] = ACTIONS(5448), - [anon_sym_and] = ACTIONS(5448), - [anon_sym_or] = ACTIONS(5448), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_PIPE_PIPE] = ACTIONS(5448), - [anon_sym_QMARK_QMARK] = ACTIONS(5448), - [anon_sym_on] = ACTIONS(5448), - [anon_sym_equals] = ACTIONS(5448), - [anon_sym_by] = ACTIONS(5448), - [anon_sym_as] = ACTIONS(5448), - [anon_sym_is] = ACTIONS(5448), - [anon_sym_DASH_GT] = ACTIONS(5448), - [anon_sym_with] = ACTIONS(5448), - [aux_sym_preproc_if_token3] = ACTIONS(5448), - [aux_sym_preproc_else_token1] = ACTIONS(5448), - [aux_sym_preproc_elif_token1] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_QMARK] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_AMP] = ACTIONS(5155), + [anon_sym_LT_LT] = ACTIONS(5153), + [anon_sym_GT_GT] = ACTIONS(5155), + [anon_sym_GT_GT_GT] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_EQ_GT] = ACTIONS(5153), + [anon_sym_switch] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_and] = ACTIONS(5153), + [anon_sym_or] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_QMARK_QMARK] = ACTIONS(5153), + [anon_sym_on] = ACTIONS(5153), + [anon_sym_equals] = ACTIONS(5153), + [anon_sym_by] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5153), + [anon_sym_with] = ACTIONS(5153), + [aux_sym_preproc_if_token3] = ACTIONS(5153), + [aux_sym_preproc_else_token1] = ACTIONS(5153), + [aux_sym_preproc_elif_token1] = ACTIONS(5153), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502266,7 +502301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3408] = { - [sym_initializer_expression] = STATE(3084), [sym_preproc_region] = STATE(3408), [sym_preproc_endregion] = STATE(3408), [sym_preproc_line] = STATE(3408), @@ -502276,55 +502310,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3408), [sym_preproc_define] = STATE(3408), [sym_preproc_undef] = STATE(3408), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(5526), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(5529), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(5503), + [anon_sym_GT] = ACTIONS(5503), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(5503), + [anon_sym_BANG] = ACTIONS(5503), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5503), + [anon_sym_DASH] = ACTIONS(5503), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5503), + [anon_sym_PERCENT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5500), + [anon_sym_PIPE] = ACTIONS(5503), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5503), + [anon_sym_GT_GT_GT] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5503), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_QMARK_QMARK] = ACTIONS(5500), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5500), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502346,56 +502381,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3409), [sym_preproc_define] = STATE(3409), [sym_preproc_undef] = STATE(3409), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3717), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3717), - [anon_sym_BANG_EQ] = ACTIONS(3717), - [anon_sym_GT_EQ] = ACTIONS(3717), - [anon_sym_LT_EQ] = ACTIONS(3717), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_PLUS_EQ] = ACTIONS(3717), - [anon_sym_DASH_EQ] = ACTIONS(3717), - [anon_sym_STAR_EQ] = ACTIONS(3717), - [anon_sym_SLASH_EQ] = ACTIONS(3717), - [anon_sym_PERCENT_EQ] = ACTIONS(3717), - [anon_sym_AMP_EQ] = ACTIONS(3717), - [anon_sym_CARET_EQ] = ACTIONS(3717), - [anon_sym_PIPE_EQ] = ACTIONS(3717), - [anon_sym_LT_LT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3717), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_QMARK_QMARK] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3717), - [anon_sym_is] = ACTIONS(3717), - [anon_sym_DASH_GT] = ACTIONS(3717), - [anon_sym_with] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(5509), + [anon_sym_BANG] = ACTIONS(5509), + [anon_sym_PLUS_PLUS] = ACTIONS(5506), + [anon_sym_DASH_DASH] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5506), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5506), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_GT_GT_GT] = ACTIONS(5506), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_EQ_GT] = ACTIONS(4295), + [anon_sym_switch] = ACTIONS(5506), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(5506), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_PIPE_PIPE] = ACTIONS(5506), + [anon_sym_QMARK_QMARK] = ACTIONS(5506), + [anon_sym_on] = ACTIONS(4295), + [anon_sym_equals] = ACTIONS(4295), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5506), + [anon_sym_is] = ACTIONS(5506), + [anon_sym_DASH_GT] = ACTIONS(5506), + [anon_sym_with] = ACTIONS(5506), + [aux_sym_preproc_if_token3] = ACTIONS(4295), + [aux_sym_preproc_else_token1] = ACTIONS(4295), + [aux_sym_preproc_elif_token1] = ACTIONS(4295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502417,56 +502452,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3410), [sym_preproc_define] = STATE(3410), [sym_preproc_undef] = STATE(3410), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_COLON] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_QMARK] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5175), + [anon_sym_DASH_DASH] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_CARET] = ACTIONS(5175), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_AMP] = ACTIONS(5177), + [anon_sym_LT_LT] = ACTIONS(5175), + [anon_sym_GT_GT] = ACTIONS(5177), + [anon_sym_GT_GT_GT] = ACTIONS(5175), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_GT_EQ] = ACTIONS(5175), + [anon_sym_LT_EQ] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5177), + [anon_sym_EQ_GT] = ACTIONS(5175), + [anon_sym_switch] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5175), + [anon_sym_and] = ACTIONS(5175), + [anon_sym_or] = ACTIONS(5175), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5175), + [anon_sym_QMARK_QMARK] = ACTIONS(5175), + [anon_sym_on] = ACTIONS(5175), + [anon_sym_equals] = ACTIONS(5175), + [anon_sym_by] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5175), + [anon_sym_with] = ACTIONS(5175), + [aux_sym_preproc_if_token3] = ACTIONS(5175), + [aux_sym_preproc_else_token1] = ACTIONS(5175), + [aux_sym_preproc_elif_token1] = ACTIONS(5175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502479,26 +502514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3411] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7371), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3411), [sym_preproc_endregion] = STATE(3411), [sym_preproc_line] = STATE(3411), @@ -502508,36 +502523,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3411), [sym_preproc_define] = STATE(3411), [sym_preproc_undef] = STATE(3411), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502559,56 +502594,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3412), [sym_preproc_define] = STATE(3412), [sym_preproc_undef] = STATE(3412), - [anon_sym_SEMI] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_COLON] = ACTIONS(5200), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_RBRACK] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_RBRACE] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_BANG] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_GT_GT_GT] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5200), - [anon_sym_BANG_EQ] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_EQ_GT] = ACTIONS(5200), - [anon_sym_switch] = ACTIONS(5200), - [anon_sym_when] = ACTIONS(5200), - [anon_sym_DOT_DOT] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_QMARK_QMARK] = ACTIONS(5200), - [anon_sym_on] = ACTIONS(5200), - [anon_sym_equals] = ACTIONS(5200), - [anon_sym_by] = ACTIONS(5200), - [anon_sym_as] = ACTIONS(5200), - [anon_sym_is] = ACTIONS(5200), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_with] = ACTIONS(5200), - [aux_sym_preproc_if_token3] = ACTIONS(5200), - [aux_sym_preproc_else_token1] = ACTIONS(5200), - [aux_sym_preproc_elif_token1] = ACTIONS(5200), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_COLON] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_RPAREN] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5173), + [anon_sym_GT] = ACTIONS(5173), + [anon_sym_in] = ACTIONS(5171), + [anon_sym_QMARK] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5173), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5173), + [anon_sym_GT_GT_GT] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5173), + [anon_sym_EQ_GT] = ACTIONS(5171), + [anon_sym_switch] = ACTIONS(5171), + [anon_sym_when] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_QMARK_QMARK] = ACTIONS(5171), + [anon_sym_on] = ACTIONS(5171), + [anon_sym_equals] = ACTIONS(5171), + [anon_sym_by] = ACTIONS(5171), + [anon_sym_as] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5171), + [anon_sym_with] = ACTIONS(5171), + [aux_sym_preproc_if_token3] = ACTIONS(5171), + [aux_sym_preproc_else_token1] = ACTIONS(5171), + [aux_sym_preproc_elif_token1] = ACTIONS(5171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502621,26 +502656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3413] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7371), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3413), [sym_preproc_endregion] = STATE(3413), [sym_preproc_line] = STATE(3413), @@ -502650,36 +502665,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3413), [sym_preproc_define] = STATE(3413), [sym_preproc_undef] = STATE(3413), - [aux_sym_function_pointer_type_repeat1] = STATE(3545), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_in] = ACTIONS(5179), + [anon_sym_QMARK] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_CARET] = ACTIONS(5179), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_LT_LT] = ACTIONS(5179), + [anon_sym_GT_GT] = ACTIONS(5181), + [anon_sym_GT_GT_GT] = ACTIONS(5179), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5181), + [anon_sym_EQ_GT] = ACTIONS(5179), + [anon_sym_switch] = ACTIONS(5179), + [anon_sym_when] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5179), + [anon_sym_AMP_AMP] = ACTIONS(5179), + [anon_sym_PIPE_PIPE] = ACTIONS(5179), + [anon_sym_QMARK_QMARK] = ACTIONS(5179), + [anon_sym_on] = ACTIONS(5179), + [anon_sym_equals] = ACTIONS(5179), + [anon_sym_by] = ACTIONS(5179), + [anon_sym_as] = ACTIONS(5179), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5179), + [anon_sym_with] = ACTIONS(5179), + [aux_sym_preproc_if_token3] = ACTIONS(5179), + [aux_sym_preproc_else_token1] = ACTIONS(5179), + [aux_sym_preproc_elif_token1] = ACTIONS(5179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502701,56 +502736,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3414), [sym_preproc_define] = STATE(3414), [sym_preproc_undef] = STATE(3414), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_alias] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_file] = ACTIONS(3251), + [anon_sym_fixed] = ACTIONS(3251), + [anon_sym_internal] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_partial] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_protected] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_required] = ACTIONS(3251), + [anon_sym_sealed] = ACTIONS(3251), + [anon_sym_virtual] = ACTIONS(3251), + [anon_sym_volatile] = ACTIONS(3251), + [anon_sym_where] = ACTIONS(3251), + [anon_sym_notnull] = ACTIONS(3251), + [anon_sym_unmanaged] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_add] = ACTIONS(3251), + [anon_sym_remove] = ACTIONS(3251), + [anon_sym_init] = ACTIONS(3251), + [anon_sym_scoped] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_when] = ACTIONS(3251), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_into] = ACTIONS(3251), + [anon_sym_join] = ACTIONS(3251), + [anon_sym_on] = ACTIONS(3251), + [anon_sym_equals] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_orderby] = ACTIONS(3251), + [anon_sym_ascending] = ACTIONS(3251), + [anon_sym_descending] = ACTIONS(3251), + [anon_sym_group] = ACTIONS(3251), + [anon_sym_by] = ACTIONS(3251), + [anon_sym_select] = ACTIONS(3251), + [aux_sym_preproc_if_token1] = ACTIONS(3253), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502763,26 +502798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3415] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3415), [sym_preproc_endregion] = STATE(3415), [sym_preproc_line] = STATE(3415), @@ -502792,36 +502807,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3415), [sym_preproc_define] = STATE(3415), [sym_preproc_undef] = STATE(3415), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5537), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_alias] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_file] = ACTIONS(3255), + [anon_sym_fixed] = ACTIONS(3255), + [anon_sym_internal] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_partial] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_required] = ACTIONS(3255), + [anon_sym_sealed] = ACTIONS(3255), + [anon_sym_virtual] = ACTIONS(3255), + [anon_sym_volatile] = ACTIONS(3255), + [anon_sym_where] = ACTIONS(3255), + [anon_sym_notnull] = ACTIONS(3255), + [anon_sym_unmanaged] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_add] = ACTIONS(3255), + [anon_sym_remove] = ACTIONS(3255), + [anon_sym_init] = ACTIONS(3255), + [anon_sym_scoped] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_when] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_into] = ACTIONS(3255), + [anon_sym_join] = ACTIONS(3255), + [anon_sym_on] = ACTIONS(3255), + [anon_sym_equals] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_orderby] = ACTIONS(3255), + [anon_sym_ascending] = ACTIONS(3255), + [anon_sym_descending] = ACTIONS(3255), + [anon_sym_group] = ACTIONS(3255), + [anon_sym_by] = ACTIONS(3255), + [anon_sym_select] = ACTIONS(3255), + [aux_sym_preproc_if_token1] = ACTIONS(3257), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502843,56 +502878,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3416), [sym_preproc_define] = STATE(3416), [sym_preproc_undef] = STATE(3416), - [anon_sym_SEMI] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_COLON] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_RBRACK] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_in] = ACTIONS(5126), - [anon_sym_QMARK] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5126), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5126), - [anon_sym_CARET] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_GT_GT_GT] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_EQ_GT] = ACTIONS(5126), - [anon_sym_switch] = ACTIONS(5126), - [anon_sym_when] = ACTIONS(5126), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [anon_sym_or] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_QMARK_QMARK] = ACTIONS(5126), - [anon_sym_on] = ACTIONS(5126), - [anon_sym_equals] = ACTIONS(5126), - [anon_sym_by] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5126), - [anon_sym_is] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), - [anon_sym_with] = ACTIONS(5126), - [aux_sym_preproc_if_token3] = ACTIONS(5126), - [aux_sym_preproc_else_token1] = ACTIONS(5126), - [aux_sym_preproc_elif_token1] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_COLON] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_in] = ACTIONS(5199), + [anon_sym_QMARK] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_LT_LT] = ACTIONS(5199), + [anon_sym_GT_GT] = ACTIONS(5201), + [anon_sym_GT_GT_GT] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5201), + [anon_sym_EQ_GT] = ACTIONS(5199), + [anon_sym_switch] = ACTIONS(5199), + [anon_sym_when] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_and] = ACTIONS(5199), + [anon_sym_or] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_QMARK_QMARK] = ACTIONS(5199), + [anon_sym_on] = ACTIONS(5199), + [anon_sym_equals] = ACTIONS(5199), + [anon_sym_by] = ACTIONS(5199), + [anon_sym_as] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5199), + [anon_sym_with] = ACTIONS(5199), + [aux_sym_preproc_if_token3] = ACTIONS(5199), + [aux_sym_preproc_else_token1] = ACTIONS(5199), + [aux_sym_preproc_elif_token1] = ACTIONS(5199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502914,56 +502949,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3417), [sym_preproc_define] = STATE(3417), [sym_preproc_undef] = STATE(3417), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_EQ_GT] = ACTIONS(2987), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_when] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_on] = ACTIONS(2987), - [anon_sym_equals] = ACTIONS(2987), - [anon_sym_by] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [aux_sym_preproc_if_token3] = ACTIONS(2987), - [aux_sym_preproc_else_token1] = ACTIONS(2987), - [aux_sym_preproc_elif_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_when] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_on] = ACTIONS(2983), + [anon_sym_equals] = ACTIONS(2983), + [anon_sym_by] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [aux_sym_preproc_if_token3] = ACTIONS(2983), + [aux_sym_preproc_else_token1] = ACTIONS(2983), + [aux_sym_preproc_elif_token1] = ACTIONS(2983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502985,56 +503020,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3418), [sym_preproc_define] = STATE(3418), [sym_preproc_undef] = STATE(3418), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(3150), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_and] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_on] = ACTIONS(3152), - [anon_sym_equals] = ACTIONS(3152), - [anon_sym_by] = ACTIONS(3152), - [anon_sym_as] = ACTIONS(3152), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [aux_sym_preproc_if_token3] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_RBRACK] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_in] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_EQ_GT] = ACTIONS(4291), + [anon_sym_switch] = ACTIONS(4291), + [anon_sym_when] = ACTIONS(4291), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4291), + [anon_sym_or] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_equals] = ACTIONS(4291), + [anon_sym_by] = ACTIONS(4291), + [anon_sym_as] = ACTIONS(4291), + [anon_sym_is] = ACTIONS(4291), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4291), + [aux_sym_preproc_if_token3] = ACTIONS(4291), + [aux_sym_preproc_else_token1] = ACTIONS(4291), + [aux_sym_preproc_elif_token1] = ACTIONS(4291), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503056,127 +503091,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3419), [sym_preproc_define] = STATE(3419), [sym_preproc_undef] = STATE(3419), - [sym__identifier_token] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym_alias] = ACTIONS(5539), - [anon_sym_global] = ACTIONS(5539), - [anon_sym_unsafe] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_abstract] = ACTIONS(5539), - [anon_sym_async] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_file] = ACTIONS(5539), - [anon_sym_fixed] = ACTIONS(5539), - [anon_sym_internal] = ACTIONS(5539), - [anon_sym_new] = ACTIONS(5539), - [anon_sym_override] = ACTIONS(5539), - [anon_sym_partial] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_readonly] = ACTIONS(5539), - [anon_sym_required] = ACTIONS(5539), - [anon_sym_sealed] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_where] = ACTIONS(5539), - [anon_sym_notnull] = ACTIONS(5539), - [anon_sym_unmanaged] = ACTIONS(5539), - [anon_sym_get] = ACTIONS(5539), - [anon_sym_set] = ACTIONS(5539), - [anon_sym_add] = ACTIONS(5539), - [anon_sym_remove] = ACTIONS(5539), - [anon_sym_init] = ACTIONS(5539), - [anon_sym_scoped] = ACTIONS(5539), - [anon_sym_var] = ACTIONS(5539), - [anon_sym_yield] = ACTIONS(5539), - [anon_sym_when] = ACTIONS(5539), - [anon_sym_from] = ACTIONS(5539), - [anon_sym_into] = ACTIONS(5539), - [anon_sym_join] = ACTIONS(5539), - [anon_sym_on] = ACTIONS(5539), - [anon_sym_equals] = ACTIONS(5539), - [anon_sym_let] = ACTIONS(5539), - [anon_sym_orderby] = ACTIONS(5539), - [anon_sym_ascending] = ACTIONS(5539), - [anon_sym_descending] = ACTIONS(5539), - [anon_sym_group] = ACTIONS(5539), - [anon_sym_by] = ACTIONS(5539), - [anon_sym_select] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5541), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3420] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7379), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3420), - [sym_preproc_endregion] = STATE(3420), - [sym_preproc_line] = STATE(3420), - [sym_preproc_pragma] = STATE(3420), - [sym_preproc_nullable] = STATE(3420), - [sym_preproc_error] = STATE(3420), - [sym_preproc_warning] = STATE(3420), - [sym_preproc_define] = STATE(3420), - [sym_preproc_undef] = STATE(3420), - [aux_sym_function_pointer_type_repeat1] = STATE(3422), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_in] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_GT_GT_GT] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_EQ_GT] = ACTIONS(5234), + [anon_sym_switch] = ACTIONS(5234), + [anon_sym_when] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(5234), + [anon_sym_and] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_QMARK_QMARK] = ACTIONS(5234), + [anon_sym_on] = ACTIONS(5234), + [anon_sym_equals] = ACTIONS(5234), + [anon_sym_by] = ACTIONS(5234), + [anon_sym_as] = ACTIONS(5234), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_with] = ACTIONS(5234), + [aux_sym_preproc_if_token3] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5234), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3420] = { + [sym_preproc_region] = STATE(3420), + [sym_preproc_endregion] = STATE(3420), + [sym_preproc_line] = STATE(3420), + [sym_preproc_pragma] = STATE(3420), + [sym_preproc_nullable] = STATE(3420), + [sym_preproc_error] = STATE(3420), + [sym_preproc_warning] = STATE(3420), + [sym_preproc_define] = STATE(3420), + [sym_preproc_undef] = STATE(3420), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_COLON] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_RPAREN] = ACTIONS(5242), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_in] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_GT_GT_GT] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_EQ_GT] = ACTIONS(5242), + [anon_sym_switch] = ACTIONS(5242), + [anon_sym_when] = ACTIONS(5242), + [anon_sym_DOT_DOT] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5242), + [anon_sym_AMP_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [anon_sym_QMARK_QMARK] = ACTIONS(5242), + [anon_sym_on] = ACTIONS(5242), + [anon_sym_equals] = ACTIONS(5242), + [anon_sym_by] = ACTIONS(5242), + [anon_sym_as] = ACTIONS(5242), + [anon_sym_is] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_with] = ACTIONS(5242), + [aux_sym_preproc_if_token3] = ACTIONS(5242), + [aux_sym_preproc_else_token1] = ACTIONS(5242), + [aux_sym_preproc_elif_token1] = ACTIONS(5242), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503198,56 +503233,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3421), [sym_preproc_define] = STATE(3421), [sym_preproc_undef] = STATE(3421), - [anon_sym_SEMI] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_RBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5460), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_in] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_EQ_GT] = ACTIONS(5460), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_when] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_on] = ACTIONS(5460), - [anon_sym_equals] = ACTIONS(5460), - [anon_sym_by] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5460), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5460), - [aux_sym_preproc_else_token1] = ACTIONS(5460), - [aux_sym_preproc_elif_token1] = ACTIONS(5460), + [anon_sym_SEMI] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_COLON] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5246), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_in] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_GT_GT_GT] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_EQ_GT] = ACTIONS(5246), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_when] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_or] = ACTIONS(5246), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_PIPE_PIPE] = ACTIONS(5246), + [anon_sym_QMARK_QMARK] = ACTIONS(5246), + [anon_sym_on] = ACTIONS(5246), + [anon_sym_equals] = ACTIONS(5246), + [anon_sym_by] = ACTIONS(5246), + [anon_sym_as] = ACTIONS(5246), + [anon_sym_is] = ACTIONS(5246), + [anon_sym_DASH_GT] = ACTIONS(5246), + [anon_sym_with] = ACTIONS(5246), + [aux_sym_preproc_if_token3] = ACTIONS(5246), + [aux_sym_preproc_else_token1] = ACTIONS(5246), + [aux_sym_preproc_elif_token1] = ACTIONS(5246), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503260,26 +503295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3422] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7689), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3422), [sym_preproc_endregion] = STATE(3422), [sym_preproc_line] = STATE(3422), @@ -503289,36 +503304,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3422), [sym_preproc_define] = STATE(3422), [sym_preproc_undef] = STATE(3422), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_COLON] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(5250), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_in] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_GT_GT_GT] = ACTIONS(5250), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_EQ_GT] = ACTIONS(5250), + [anon_sym_switch] = ACTIONS(5250), + [anon_sym_when] = ACTIONS(5250), + [anon_sym_DOT_DOT] = ACTIONS(5250), + [anon_sym_and] = ACTIONS(5250), + [anon_sym_or] = ACTIONS(5250), + [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(5250), + [anon_sym_QMARK_QMARK] = ACTIONS(5250), + [anon_sym_on] = ACTIONS(5250), + [anon_sym_equals] = ACTIONS(5250), + [anon_sym_by] = ACTIONS(5250), + [anon_sym_as] = ACTIONS(5250), + [anon_sym_is] = ACTIONS(5250), + [anon_sym_DASH_GT] = ACTIONS(5250), + [anon_sym_with] = ACTIONS(5250), + [aux_sym_preproc_if_token3] = ACTIONS(5250), + [aux_sym_preproc_else_token1] = ACTIONS(5250), + [aux_sym_preproc_elif_token1] = ACTIONS(5250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503331,26 +503366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3423] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7689), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3423), [sym_preproc_endregion] = STATE(3423), [sym_preproc_line] = STATE(3423), @@ -503360,36 +503375,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3423), [sym_preproc_define] = STATE(3423), [sym_preproc_undef] = STATE(3423), - [aux_sym_function_pointer_type_repeat1] = STATE(3424), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_COLON] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_RBRACK] = ACTIONS(5254), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_RPAREN] = ACTIONS(5254), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_in] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_GT_GT_GT] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_EQ_GT] = ACTIONS(5254), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_when] = ACTIONS(5254), + [anon_sym_DOT_DOT] = ACTIONS(5254), + [anon_sym_and] = ACTIONS(5254), + [anon_sym_or] = ACTIONS(5254), + [anon_sym_AMP_AMP] = ACTIONS(5254), + [anon_sym_PIPE_PIPE] = ACTIONS(5254), + [anon_sym_QMARK_QMARK] = ACTIONS(5254), + [anon_sym_on] = ACTIONS(5254), + [anon_sym_equals] = ACTIONS(5254), + [anon_sym_by] = ACTIONS(5254), + [anon_sym_as] = ACTIONS(5254), + [anon_sym_is] = ACTIONS(5254), + [anon_sym_DASH_GT] = ACTIONS(5254), + [anon_sym_with] = ACTIONS(5254), + [aux_sym_preproc_if_token3] = ACTIONS(5254), + [aux_sym_preproc_else_token1] = ACTIONS(5254), + [aux_sym_preproc_elif_token1] = ACTIONS(5254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503402,26 +503437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3424] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7670), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3424), [sym_preproc_endregion] = STATE(3424), [sym_preproc_line] = STATE(3424), @@ -503431,36 +503446,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3424), [sym_preproc_define] = STATE(3424), [sym_preproc_undef] = STATE(3424), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_QMARK] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5151), + [anon_sym_AMP] = ACTIONS(5151), + [anon_sym_LT_LT] = ACTIONS(5149), + [anon_sym_GT_GT] = ACTIONS(5151), + [anon_sym_GT_GT_GT] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_EQ_GT] = ACTIONS(5149), + [anon_sym_switch] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_and] = ACTIONS(5149), + [anon_sym_or] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_QMARK_QMARK] = ACTIONS(5149), + [anon_sym_on] = ACTIONS(5149), + [anon_sym_equals] = ACTIONS(5149), + [anon_sym_by] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), + [anon_sym_with] = ACTIONS(5149), + [aux_sym_preproc_if_token3] = ACTIONS(5149), + [aux_sym_preproc_else_token1] = ACTIONS(5149), + [aux_sym_preproc_elif_token1] = ACTIONS(5149), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503482,56 +503517,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3425), [sym_preproc_define] = STATE(3425), [sym_preproc_undef] = STATE(3425), - [sym__identifier_token] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_alias] = ACTIONS(3339), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_abstract] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_file] = ACTIONS(3339), - [anon_sym_fixed] = ACTIONS(3339), - [anon_sym_internal] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3339), - [anon_sym_partial] = ACTIONS(3339), - [anon_sym_private] = ACTIONS(3339), - [anon_sym_protected] = ACTIONS(3339), - [anon_sym_public] = ACTIONS(3339), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_required] = ACTIONS(3339), - [anon_sym_sealed] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_where] = ACTIONS(3339), - [anon_sym_notnull] = ACTIONS(3339), - [anon_sym_unmanaged] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3339), - [anon_sym_set] = ACTIONS(3339), - [anon_sym_add] = ACTIONS(3339), - [anon_sym_remove] = ACTIONS(3339), - [anon_sym_init] = ACTIONS(3339), - [anon_sym_scoped] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_when] = ACTIONS(3339), - [anon_sym_from] = ACTIONS(3339), - [anon_sym_into] = ACTIONS(3339), - [anon_sym_join] = ACTIONS(3339), - [anon_sym_on] = ACTIONS(3339), - [anon_sym_equals] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_orderby] = ACTIONS(3339), - [anon_sym_ascending] = ACTIONS(3339), - [anon_sym_descending] = ACTIONS(3339), - [anon_sym_group] = ACTIONS(3339), - [anon_sym_by] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [aux_sym_preproc_if_token1] = ACTIONS(3341), + [sym__identifier_token] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_alias] = ACTIONS(3263), + [anon_sym_global] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_file] = ACTIONS(3263), + [anon_sym_fixed] = ACTIONS(3263), + [anon_sym_internal] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_partial] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_sealed] = ACTIONS(3263), + [anon_sym_virtual] = ACTIONS(3263), + [anon_sym_volatile] = ACTIONS(3263), + [anon_sym_where] = ACTIONS(3263), + [anon_sym_notnull] = ACTIONS(3263), + [anon_sym_unmanaged] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_add] = ACTIONS(3263), + [anon_sym_remove] = ACTIONS(3263), + [anon_sym_init] = ACTIONS(3263), + [anon_sym_scoped] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_when] = ACTIONS(3263), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_into] = ACTIONS(3263), + [anon_sym_join] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_equals] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_orderby] = ACTIONS(3263), + [anon_sym_ascending] = ACTIONS(3263), + [anon_sym_descending] = ACTIONS(3263), + [anon_sym_group] = ACTIONS(3263), + [anon_sym_by] = ACTIONS(3263), + [anon_sym_select] = ACTIONS(3263), + [aux_sym_preproc_if_token1] = ACTIONS(3265), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503553,56 +503588,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3426), [sym_preproc_define] = STATE(3426), [sym_preproc_undef] = STATE(3426), - [sym__identifier_token] = ACTIONS(3343), - [anon_sym_extern] = ACTIONS(3343), - [anon_sym_alias] = ACTIONS(3343), - [anon_sym_global] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_file] = ACTIONS(3343), - [anon_sym_fixed] = ACTIONS(3343), - [anon_sym_internal] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_partial] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_sealed] = ACTIONS(3343), - [anon_sym_virtual] = ACTIONS(3343), - [anon_sym_volatile] = ACTIONS(3343), - [anon_sym_where] = ACTIONS(3343), - [anon_sym_notnull] = ACTIONS(3343), - [anon_sym_unmanaged] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_add] = ACTIONS(3343), - [anon_sym_remove] = ACTIONS(3343), - [anon_sym_init] = ACTIONS(3343), - [anon_sym_scoped] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_when] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_into] = ACTIONS(3343), - [anon_sym_join] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_equals] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_orderby] = ACTIONS(3343), - [anon_sym_ascending] = ACTIONS(3343), - [anon_sym_descending] = ACTIONS(3343), - [anon_sym_group] = ACTIONS(3343), - [anon_sym_by] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [aux_sym_preproc_if_token1] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_in] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_GT_GT_GT] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_EQ_GT] = ACTIONS(4983), + [anon_sym_switch] = ACTIONS(4983), + [anon_sym_when] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_and] = ACTIONS(4983), + [anon_sym_or] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_QMARK_QMARK] = ACTIONS(4983), + [anon_sym_on] = ACTIONS(4983), + [anon_sym_equals] = ACTIONS(4983), + [anon_sym_by] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_DASH_GT] = ACTIONS(4983), + [anon_sym_with] = ACTIONS(4983), + [aux_sym_preproc_if_token3] = ACTIONS(4983), + [aux_sym_preproc_else_token1] = ACTIONS(4983), + [aux_sym_preproc_elif_token1] = ACTIONS(4983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503615,15 +503650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3427] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3427), [sym_preproc_endregion] = STATE(3427), [sym_preproc_line] = STATE(3427), @@ -503633,47 +503659,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3427), [sym_preproc_define] = STATE(3427), [sym_preproc_undef] = STATE(3427), - [sym__identifier_token] = ACTIONS(3593), - [anon_sym_alias] = ACTIONS(3597), - [anon_sym_global] = ACTIONS(3597), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(2719), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_file] = ACTIONS(3597), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(3597), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3597), - [anon_sym_unmanaged] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_this] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3597), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3597), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(3597), - [anon_sym_when] = ACTIONS(3597), - [anon_sym_from] = ACTIONS(3597), - [anon_sym_into] = ACTIONS(3597), - [anon_sym_join] = ACTIONS(3597), - [anon_sym_on] = ACTIONS(3597), - [anon_sym_equals] = ACTIONS(3597), - [anon_sym_let] = ACTIONS(3597), - [anon_sym_orderby] = ACTIONS(3597), - [anon_sym_ascending] = ACTIONS(3597), - [anon_sym_descending] = ACTIONS(3597), - [anon_sym_group] = ACTIONS(3597), - [anon_sym_by] = ACTIONS(3597), - [anon_sym_select] = ACTIONS(3597), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_COLON] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_QMARK] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_AMP] = ACTIONS(5025), + [anon_sym_LT_LT] = ACTIONS(5023), + [anon_sym_GT_GT] = ACTIONS(5025), + [anon_sym_GT_GT_GT] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_DOT] = ACTIONS(5025), + [anon_sym_EQ_GT] = ACTIONS(5023), + [anon_sym_switch] = ACTIONS(5023), + [anon_sym_when] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_and] = ACTIONS(5023), + [anon_sym_or] = ACTIONS(5023), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_QMARK_QMARK] = ACTIONS(5023), + [anon_sym_on] = ACTIONS(5023), + [anon_sym_equals] = ACTIONS(5023), + [anon_sym_by] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_DASH_GT] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5023), + [aux_sym_preproc_if_token3] = ACTIONS(5023), + [aux_sym_preproc_else_token1] = ACTIONS(5023), + [aux_sym_preproc_elif_token1] = ACTIONS(5023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503695,55 +503730,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3428), [sym_preproc_define] = STATE(3428), [sym_preproc_undef] = STATE(3428), - [anon_sym_EQ] = ACTIONS(5543), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5545), - [anon_sym_DASH_EQ] = ACTIONS(5545), - [anon_sym_STAR_EQ] = ACTIONS(5545), - [anon_sym_SLASH_EQ] = ACTIONS(5545), - [anon_sym_PERCENT_EQ] = ACTIONS(5545), - [anon_sym_AMP_EQ] = ACTIONS(5545), - [anon_sym_CARET_EQ] = ACTIONS(5545), - [anon_sym_PIPE_EQ] = ACTIONS(5545), - [anon_sym_LT_LT_EQ] = ACTIONS(5545), - [anon_sym_GT_GT_EQ] = ACTIONS(5545), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5545), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5545), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_COLON] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_in] = ACTIONS(5031), + [anon_sym_QMARK] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_AMP] = ACTIONS(5033), + [anon_sym_LT_LT] = ACTIONS(5031), + [anon_sym_GT_GT] = ACTIONS(5033), + [anon_sym_GT_GT_GT] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5033), + [anon_sym_EQ_GT] = ACTIONS(5031), + [anon_sym_switch] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_and] = ACTIONS(5031), + [anon_sym_or] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_QMARK_QMARK] = ACTIONS(5031), + [anon_sym_on] = ACTIONS(5031), + [anon_sym_equals] = ACTIONS(5031), + [anon_sym_by] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [aux_sym_preproc_if_token3] = ACTIONS(5031), + [aux_sym_preproc_else_token1] = ACTIONS(5031), + [aux_sym_preproc_elif_token1] = ACTIONS(5031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503754,7 +503790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4906), }, [3429] = { [sym_preproc_region] = STATE(3429), @@ -503766,56 +503801,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3429), [sym_preproc_define] = STATE(3429), [sym_preproc_undef] = STATE(3429), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_GT_GT_GT] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_EQ_GT] = ACTIONS(5095), - [anon_sym_switch] = ACTIONS(5095), - [anon_sym_when] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_and] = ACTIONS(5095), - [anon_sym_or] = ACTIONS(5095), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_QMARK_QMARK] = ACTIONS(5095), - [anon_sym_on] = ACTIONS(5095), - [anon_sym_equals] = ACTIONS(5095), - [anon_sym_by] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5095), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5095), - [anon_sym_with] = ACTIONS(5095), - [aux_sym_preproc_if_token3] = ACTIONS(5095), - [aux_sym_preproc_else_token1] = ACTIONS(5095), - [aux_sym_preproc_elif_token1] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5480), + [anon_sym_COMMA] = ACTIONS(5480), + [anon_sym_RBRACK] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_RPAREN] = ACTIONS(5480), + [anon_sym_RBRACE] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5482), + [anon_sym_in] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_BANG] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5480), + [anon_sym_PIPE] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_GT_GT_GT] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5480), + [anon_sym_BANG_EQ] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5482), + [anon_sym_EQ_GT] = ACTIONS(5480), + [anon_sym_switch] = ACTIONS(5480), + [anon_sym_when] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_AMP_AMP] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(5480), + [anon_sym_QMARK_QMARK] = ACTIONS(5480), + [anon_sym_on] = ACTIONS(5480), + [anon_sym_equals] = ACTIONS(5480), + [anon_sym_by] = ACTIONS(5480), + [anon_sym_as] = ACTIONS(5480), + [anon_sym_is] = ACTIONS(5480), + [anon_sym_DASH_GT] = ACTIONS(5480), + [anon_sym_with] = ACTIONS(5480), + [aux_sym_preproc_if_token3] = ACTIONS(5480), + [aux_sym_preproc_else_token1] = ACTIONS(5480), + [aux_sym_preproc_elif_token1] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503828,6 +503863,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3430] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6135), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3430), [sym_preproc_endregion] = STATE(3430), [sym_preproc_line] = STATE(3430), @@ -503837,56 +503890,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3430), [sym_preproc_define] = STATE(3430), [sym_preproc_undef] = STATE(3430), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RBRACK] = ACTIONS(5488), - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_in] = ACTIONS(5488), - [anon_sym_QMARK] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5488), - [anon_sym_SLASH] = ACTIONS(5490), - [anon_sym_PERCENT] = ACTIONS(5488), - [anon_sym_CARET] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_LT_LT] = ACTIONS(5488), - [anon_sym_GT_GT] = ACTIONS(5490), - [anon_sym_GT_GT_GT] = ACTIONS(5488), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5490), - [anon_sym_EQ_GT] = ACTIONS(5488), - [anon_sym_switch] = ACTIONS(5488), - [anon_sym_when] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5488), - [anon_sym_and] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5488), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_QMARK_QMARK] = ACTIONS(5488), - [anon_sym_on] = ACTIONS(5488), - [anon_sym_equals] = ACTIONS(5488), - [anon_sym_by] = ACTIONS(5488), - [anon_sym_as] = ACTIONS(5488), - [anon_sym_is] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_with] = ACTIONS(5488), - [aux_sym_preproc_if_token3] = ACTIONS(5488), - [aux_sym_preproc_else_token1] = ACTIONS(5488), - [aux_sym_preproc_elif_token1] = ACTIONS(5488), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5827), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503908,56 +503943,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3431), [sym_preproc_define] = STATE(3431), [sym_preproc_undef] = STATE(3431), - [anon_sym_SEMI] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_RBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_RPAREN] = ACTIONS(5460), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_in] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_EQ_GT] = ACTIONS(5460), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_when] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_on] = ACTIONS(5460), - [anon_sym_equals] = ACTIONS(5460), - [anon_sym_by] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5460), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5460), - [aux_sym_preproc_else_token1] = ACTIONS(5460), - [aux_sym_preproc_elif_token1] = ACTIONS(5460), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_in] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_GT_GT_GT] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_switch] = ACTIONS(5226), + [anon_sym_when] = ACTIONS(5226), + [anon_sym_DOT_DOT] = ACTIONS(5226), + [anon_sym_and] = ACTIONS(5226), + [anon_sym_or] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_QMARK_QMARK] = ACTIONS(5226), + [anon_sym_on] = ACTIONS(5226), + [anon_sym_equals] = ACTIONS(5226), + [anon_sym_by] = ACTIONS(5226), + [anon_sym_as] = ACTIONS(5226), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_with] = ACTIONS(5226), + [aux_sym_preproc_if_token3] = ACTIONS(5226), + [aux_sym_preproc_else_token1] = ACTIONS(5226), + [aux_sym_preproc_elif_token1] = ACTIONS(5226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503979,56 +504014,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3432), [sym_preproc_define] = STATE(3432), [sym_preproc_undef] = STATE(3432), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_EQ_GT] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_when] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_on] = ACTIONS(2105), - [anon_sym_equals] = ACTIONS(2105), - [anon_sym_by] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_DASH_GT] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [aux_sym_preproc_if_token3] = ACTIONS(2105), - [aux_sym_preproc_else_token1] = ACTIONS(2105), - [aux_sym_preproc_elif_token1] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_in] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_GT_GT_GT] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_EQ_GT] = ACTIONS(5238), + [anon_sym_switch] = ACTIONS(5238), + [anon_sym_when] = ACTIONS(5238), + [anon_sym_DOT_DOT] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_QMARK_QMARK] = ACTIONS(5238), + [anon_sym_on] = ACTIONS(5238), + [anon_sym_equals] = ACTIONS(5238), + [anon_sym_by] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5238), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5238), + [anon_sym_with] = ACTIONS(5238), + [aux_sym_preproc_if_token3] = ACTIONS(5238), + [aux_sym_preproc_else_token1] = ACTIONS(5238), + [aux_sym_preproc_elif_token1] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504050,56 +504085,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3433), [sym_preproc_define] = STATE(3433), [sym_preproc_undef] = STATE(3433), - [anon_sym_SEMI] = ACTIONS(5464), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_COLON] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_RBRACK] = ACTIONS(5464), - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_LT] = ACTIONS(5466), - [anon_sym_GT] = ACTIONS(5466), - [anon_sym_in] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(5466), - [anon_sym_BANG] = ACTIONS(5466), - [anon_sym_PLUS_PLUS] = ACTIONS(5464), - [anon_sym_DASH_DASH] = ACTIONS(5464), - [anon_sym_PLUS] = ACTIONS(5466), - [anon_sym_DASH] = ACTIONS(5466), - [anon_sym_STAR] = ACTIONS(5464), - [anon_sym_SLASH] = ACTIONS(5466), - [anon_sym_PERCENT] = ACTIONS(5464), - [anon_sym_CARET] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5466), - [anon_sym_AMP] = ACTIONS(5466), - [anon_sym_LT_LT] = ACTIONS(5464), - [anon_sym_GT_GT] = ACTIONS(5466), - [anon_sym_GT_GT_GT] = ACTIONS(5464), - [anon_sym_EQ_EQ] = ACTIONS(5464), - [anon_sym_BANG_EQ] = ACTIONS(5464), - [anon_sym_GT_EQ] = ACTIONS(5464), - [anon_sym_LT_EQ] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_EQ_GT] = ACTIONS(5464), - [anon_sym_switch] = ACTIONS(5464), - [anon_sym_when] = ACTIONS(5464), - [anon_sym_DOT_DOT] = ACTIONS(5464), - [anon_sym_and] = ACTIONS(5464), - [anon_sym_or] = ACTIONS(5464), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE_PIPE] = ACTIONS(5464), - [anon_sym_QMARK_QMARK] = ACTIONS(5464), - [anon_sym_on] = ACTIONS(5464), - [anon_sym_equals] = ACTIONS(5464), - [anon_sym_by] = ACTIONS(5464), - [anon_sym_as] = ACTIONS(5464), - [anon_sym_is] = ACTIONS(5464), - [anon_sym_DASH_GT] = ACTIONS(5464), - [anon_sym_with] = ACTIONS(5464), - [aux_sym_preproc_if_token3] = ACTIONS(5464), - [aux_sym_preproc_else_token1] = ACTIONS(5464), - [aux_sym_preproc_elif_token1] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_RBRACK] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_in] = ACTIONS(4987), + [anon_sym_QMARK] = ACTIONS(4989), + [anon_sym_BANG] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4987), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_GT_GT_GT] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_EQ_GT] = ACTIONS(4987), + [anon_sym_switch] = ACTIONS(4987), + [anon_sym_when] = ACTIONS(4987), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_and] = ACTIONS(4987), + [anon_sym_or] = ACTIONS(4987), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_QMARK_QMARK] = ACTIONS(4987), + [anon_sym_on] = ACTIONS(4987), + [anon_sym_equals] = ACTIONS(4987), + [anon_sym_by] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4987), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_with] = ACTIONS(4987), + [aux_sym_preproc_if_token3] = ACTIONS(4987), + [aux_sym_preproc_else_token1] = ACTIONS(4987), + [aux_sym_preproc_elif_token1] = ACTIONS(4987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504112,8 +504147,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3434] = { - [sym_argument_list] = STATE(2979), - [sym_initializer_expression] = STATE(3129), [sym_preproc_region] = STATE(3434), [sym_preproc_endregion] = STATE(3434), [sym_preproc_line] = STATE(3434), @@ -504123,54 +504156,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3434), [sym_preproc_define] = STATE(3434), [sym_preproc_undef] = STATE(3434), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_COLON] = ACTIONS(4844), - [anon_sym_COMMA] = ACTIONS(4844), - [anon_sym_RBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4848), - [anon_sym_PLUS_PLUS] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_GT_GT_GT] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_EQ_GT] = ACTIONS(4844), - [anon_sym_switch] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_QMARK_QMARK] = ACTIONS(4844), - [anon_sym_on] = ACTIONS(4844), - [anon_sym_equals] = ACTIONS(4844), - [anon_sym_by] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [aux_sym_preproc_if_token3] = ACTIONS(4844), - [aux_sym_preproc_else_token1] = ACTIONS(4844), - [aux_sym_preproc_elif_token1] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5053), + [anon_sym_GT_GT_GT] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_EQ_GT] = ACTIONS(5051), + [anon_sym_switch] = ACTIONS(5051), + [anon_sym_when] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_and] = ACTIONS(5051), + [anon_sym_or] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_QMARK_QMARK] = ACTIONS(5051), + [anon_sym_on] = ACTIONS(5051), + [anon_sym_equals] = ACTIONS(5051), + [anon_sym_by] = ACTIONS(5051), + [anon_sym_as] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5051), + [anon_sym_with] = ACTIONS(5051), + [aux_sym_preproc_if_token3] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504192,56 +504227,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3435), [sym_preproc_define] = STATE(3435), [sym_preproc_undef] = STATE(3435), - [anon_sym_SEMI] = ACTIONS(5468), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_COLON] = ACTIONS(5468), - [anon_sym_COMMA] = ACTIONS(5468), - [anon_sym_RBRACK] = ACTIONS(5468), - [anon_sym_LPAREN] = ACTIONS(5468), - [anon_sym_RPAREN] = ACTIONS(5468), - [anon_sym_RBRACE] = ACTIONS(5468), - [anon_sym_LT] = ACTIONS(5470), - [anon_sym_GT] = ACTIONS(5470), - [anon_sym_in] = ACTIONS(5468), - [anon_sym_QMARK] = ACTIONS(5470), - [anon_sym_BANG] = ACTIONS(5470), - [anon_sym_PLUS_PLUS] = ACTIONS(5468), - [anon_sym_DASH_DASH] = ACTIONS(5468), - [anon_sym_PLUS] = ACTIONS(5470), - [anon_sym_DASH] = ACTIONS(5470), - [anon_sym_STAR] = ACTIONS(5468), - [anon_sym_SLASH] = ACTIONS(5470), - [anon_sym_PERCENT] = ACTIONS(5468), - [anon_sym_CARET] = ACTIONS(5468), - [anon_sym_PIPE] = ACTIONS(5470), - [anon_sym_AMP] = ACTIONS(5470), - [anon_sym_LT_LT] = ACTIONS(5468), - [anon_sym_GT_GT] = ACTIONS(5470), - [anon_sym_GT_GT_GT] = ACTIONS(5468), - [anon_sym_EQ_EQ] = ACTIONS(5468), - [anon_sym_BANG_EQ] = ACTIONS(5468), - [anon_sym_GT_EQ] = ACTIONS(5468), - [anon_sym_LT_EQ] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(5470), - [anon_sym_EQ_GT] = ACTIONS(5468), - [anon_sym_switch] = ACTIONS(5468), - [anon_sym_when] = ACTIONS(5468), - [anon_sym_DOT_DOT] = ACTIONS(5468), - [anon_sym_and] = ACTIONS(5468), - [anon_sym_or] = ACTIONS(5468), - [anon_sym_AMP_AMP] = ACTIONS(5468), - [anon_sym_PIPE_PIPE] = ACTIONS(5468), - [anon_sym_QMARK_QMARK] = ACTIONS(5468), - [anon_sym_on] = ACTIONS(5468), - [anon_sym_equals] = ACTIONS(5468), - [anon_sym_by] = ACTIONS(5468), - [anon_sym_as] = ACTIONS(5468), - [anon_sym_is] = ACTIONS(5468), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_with] = ACTIONS(5468), - [aux_sym_preproc_if_token3] = ACTIONS(5468), - [aux_sym_preproc_else_token1] = ACTIONS(5468), - [aux_sym_preproc_elif_token1] = ACTIONS(5468), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_COLON] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_QMARK] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5065), + [anon_sym_GT_GT_GT] = ACTIONS(5063), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_EQ_GT] = ACTIONS(5063), + [anon_sym_switch] = ACTIONS(5063), + [anon_sym_when] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5063), + [anon_sym_and] = ACTIONS(5063), + [anon_sym_or] = ACTIONS(5063), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), + [anon_sym_QMARK_QMARK] = ACTIONS(5063), + [anon_sym_on] = ACTIONS(5063), + [anon_sym_equals] = ACTIONS(5063), + [anon_sym_by] = ACTIONS(5063), + [anon_sym_as] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5063), + [anon_sym_with] = ACTIONS(5063), + [aux_sym_preproc_if_token3] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504263,56 +504298,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3436), [sym_preproc_define] = STATE(3436), [sym_preproc_undef] = STATE(3436), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(2991), - [anon_sym_switch] = ACTIONS(2991), - [anon_sym_when] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_on] = ACTIONS(2991), - [anon_sym_equals] = ACTIONS(2991), - [anon_sym_by] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [aux_sym_preproc_if_token3] = ACTIONS(2991), - [aux_sym_preproc_else_token1] = ACTIONS(2991), - [aux_sym_preproc_elif_token1] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_RBRACK] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_RPAREN] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5093), + [anon_sym_QMARK] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5095), + [anon_sym_AMP] = ACTIONS(5095), + [anon_sym_LT_LT] = ACTIONS(5093), + [anon_sym_GT_GT] = ACTIONS(5095), + [anon_sym_GT_GT_GT] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_EQ_GT] = ACTIONS(5093), + [anon_sym_switch] = ACTIONS(5093), + [anon_sym_when] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_and] = ACTIONS(5093), + [anon_sym_or] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_QMARK_QMARK] = ACTIONS(5093), + [anon_sym_on] = ACTIONS(5093), + [anon_sym_equals] = ACTIONS(5093), + [anon_sym_by] = ACTIONS(5093), + [anon_sym_as] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5093), + [anon_sym_with] = ACTIONS(5093), + [aux_sym_preproc_if_token3] = ACTIONS(5093), + [aux_sym_preproc_else_token1] = ACTIONS(5093), + [aux_sym_preproc_elif_token1] = ACTIONS(5093), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504334,56 +504369,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3437), [sym_preproc_define] = STATE(3437), [sym_preproc_undef] = STATE(3437), - [anon_sym_SEMI] = ACTIONS(5492), - [anon_sym_LBRACK] = ACTIONS(5492), - [anon_sym_COLON] = ACTIONS(5492), - [anon_sym_COMMA] = ACTIONS(5492), - [anon_sym_RBRACK] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5492), - [anon_sym_RBRACE] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(5494), - [anon_sym_GT] = ACTIONS(5494), - [anon_sym_in] = ACTIONS(5492), - [anon_sym_QMARK] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5492), - [anon_sym_PLUS] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5492), - [anon_sym_SLASH] = ACTIONS(5494), - [anon_sym_PERCENT] = ACTIONS(5492), - [anon_sym_CARET] = ACTIONS(5492), - [anon_sym_PIPE] = ACTIONS(5494), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5494), - [anon_sym_GT_GT_GT] = ACTIONS(5492), - [anon_sym_EQ_EQ] = ACTIONS(5492), - [anon_sym_BANG_EQ] = ACTIONS(5492), - [anon_sym_GT_EQ] = ACTIONS(5492), - [anon_sym_LT_EQ] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_EQ_GT] = ACTIONS(5492), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_when] = ACTIONS(5492), - [anon_sym_DOT_DOT] = ACTIONS(5492), - [anon_sym_and] = ACTIONS(5492), - [anon_sym_or] = ACTIONS(5492), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5492), - [anon_sym_QMARK_QMARK] = ACTIONS(5492), - [anon_sym_on] = ACTIONS(5492), - [anon_sym_equals] = ACTIONS(5492), - [anon_sym_by] = ACTIONS(5492), - [anon_sym_as] = ACTIONS(5492), - [anon_sym_is] = ACTIONS(5492), - [anon_sym_DASH_GT] = ACTIONS(5492), - [anon_sym_with] = ACTIONS(5492), - [aux_sym_preproc_if_token3] = ACTIONS(5492), - [aux_sym_preproc_else_token1] = ACTIONS(5492), - [aux_sym_preproc_elif_token1] = ACTIONS(5492), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5107), + [anon_sym_AMP] = ACTIONS(5107), + [anon_sym_LT_LT] = ACTIONS(5105), + [anon_sym_GT_GT] = ACTIONS(5107), + [anon_sym_GT_GT_GT] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_EQ_GT] = ACTIONS(5105), + [anon_sym_switch] = ACTIONS(5105), + [anon_sym_when] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_and] = ACTIONS(5105), + [anon_sym_or] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_QMARK_QMARK] = ACTIONS(5105), + [anon_sym_on] = ACTIONS(5105), + [anon_sym_equals] = ACTIONS(5105), + [anon_sym_by] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [anon_sym_with] = ACTIONS(5105), + [aux_sym_preproc_if_token3] = ACTIONS(5105), + [aux_sym_preproc_else_token1] = ACTIONS(5105), + [aux_sym_preproc_elif_token1] = ACTIONS(5105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504405,56 +504440,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3438), [sym_preproc_define] = STATE(3438), [sym_preproc_undef] = STATE(3438), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_RBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_in] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4977), - [anon_sym_BANG] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_EQ_GT] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4975), - [anon_sym_when] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_and] = ACTIONS(4975), - [anon_sym_or] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_QMARK_QMARK] = ACTIONS(4975), - [anon_sym_on] = ACTIONS(4975), - [anon_sym_equals] = ACTIONS(4975), - [anon_sym_by] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_DASH_GT] = ACTIONS(4975), - [anon_sym_with] = ACTIONS(4975), - [aux_sym_preproc_if_token3] = ACTIONS(4975), - [aux_sym_preproc_else_token1] = ACTIONS(4975), - [aux_sym_preproc_elif_token1] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_GT_GT_GT] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_EQ_GT] = ACTIONS(5125), + [anon_sym_switch] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_QMARK_QMARK] = ACTIONS(5125), + [anon_sym_on] = ACTIONS(5125), + [anon_sym_equals] = ACTIONS(5125), + [anon_sym_by] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [anon_sym_with] = ACTIONS(5125), + [aux_sym_preproc_if_token3] = ACTIONS(5125), + [aux_sym_preproc_else_token1] = ACTIONS(5125), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504476,56 +504511,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3439), [sym_preproc_define] = STATE(3439), [sym_preproc_undef] = STATE(3439), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_add] = ACTIONS(3494), - [anon_sym_remove] = ACTIONS(3494), - [anon_sym_init] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_COLON] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5163), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_CARET] = ACTIONS(5163), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_LT_LT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_GT_GT_GT] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_EQ_GT] = ACTIONS(5163), + [anon_sym_switch] = ACTIONS(5163), + [anon_sym_when] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_and] = ACTIONS(5163), + [anon_sym_or] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_QMARK_QMARK] = ACTIONS(5163), + [anon_sym_on] = ACTIONS(5163), + [anon_sym_equals] = ACTIONS(5163), + [anon_sym_by] = ACTIONS(5163), + [anon_sym_as] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5163), + [anon_sym_with] = ACTIONS(5163), + [aux_sym_preproc_if_token3] = ACTIONS(5163), + [aux_sym_preproc_else_token1] = ACTIONS(5163), + [aux_sym_preproc_elif_token1] = ACTIONS(5163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504547,56 +504582,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3440), [sym_preproc_define] = STATE(3440), [sym_preproc_undef] = STATE(3440), - [anon_sym_SEMI] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(5240), - [anon_sym_COLON] = ACTIONS(5240), - [anon_sym_COMMA] = ACTIONS(5240), - [anon_sym_RBRACK] = ACTIONS(5240), - [anon_sym_LPAREN] = ACTIONS(5240), - [anon_sym_RPAREN] = ACTIONS(5240), - [anon_sym_RBRACE] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5242), - [anon_sym_in] = ACTIONS(5240), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_BANG] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5242), - [anon_sym_STAR] = ACTIONS(5240), - [anon_sym_SLASH] = ACTIONS(5242), - [anon_sym_PERCENT] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5240), - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5242), - [anon_sym_LT_LT] = ACTIONS(5240), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_GT_GT_GT] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5240), - [anon_sym_BANG_EQ] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5240), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_DOT] = ACTIONS(5242), - [anon_sym_EQ_GT] = ACTIONS(5240), - [anon_sym_switch] = ACTIONS(5240), - [anon_sym_when] = ACTIONS(5240), - [anon_sym_DOT_DOT] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_or] = ACTIONS(5240), - [anon_sym_AMP_AMP] = ACTIONS(5240), - [anon_sym_PIPE_PIPE] = ACTIONS(5240), - [anon_sym_QMARK_QMARK] = ACTIONS(5240), - [anon_sym_on] = ACTIONS(5240), - [anon_sym_equals] = ACTIONS(5240), - [anon_sym_by] = ACTIONS(5240), - [anon_sym_as] = ACTIONS(5240), - [anon_sym_is] = ACTIONS(5240), - [anon_sym_DASH_GT] = ACTIONS(5240), - [anon_sym_with] = ACTIONS(5240), - [aux_sym_preproc_if_token3] = ACTIONS(5240), - [aux_sym_preproc_else_token1] = ACTIONS(5240), - [aux_sym_preproc_elif_token1] = ACTIONS(5240), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_COLON] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5183), + [anon_sym_QMARK] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5183), + [anon_sym_DASH_DASH] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_CARET] = ACTIONS(5183), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5185), + [anon_sym_LT_LT] = ACTIONS(5183), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_GT_GT_GT] = ACTIONS(5183), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_EQ_GT] = ACTIONS(5183), + [anon_sym_switch] = ACTIONS(5183), + [anon_sym_when] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5183), + [anon_sym_AMP_AMP] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5183), + [anon_sym_QMARK_QMARK] = ACTIONS(5183), + [anon_sym_on] = ACTIONS(5183), + [anon_sym_equals] = ACTIONS(5183), + [anon_sym_by] = ACTIONS(5183), + [anon_sym_as] = ACTIONS(5183), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5183), + [anon_sym_with] = ACTIONS(5183), + [aux_sym_preproc_if_token3] = ACTIONS(5183), + [aux_sym_preproc_else_token1] = ACTIONS(5183), + [aux_sym_preproc_elif_token1] = ACTIONS(5183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504618,127 +504653,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3441), [sym_preproc_define] = STATE(3441), [sym_preproc_undef] = STATE(3441), - [anon_sym_SEMI] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5250), - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_COMMA] = ACTIONS(5250), - [anon_sym_RBRACK] = ACTIONS(5250), - [anon_sym_LPAREN] = ACTIONS(5250), - [anon_sym_RPAREN] = ACTIONS(5250), - [anon_sym_RBRACE] = ACTIONS(5250), - [anon_sym_LT] = ACTIONS(5252), - [anon_sym_GT] = ACTIONS(5252), - [anon_sym_in] = ACTIONS(5250), - [anon_sym_QMARK] = ACTIONS(5252), - [anon_sym_BANG] = ACTIONS(5252), - [anon_sym_PLUS_PLUS] = ACTIONS(5250), - [anon_sym_DASH_DASH] = ACTIONS(5250), - [anon_sym_PLUS] = ACTIONS(5252), - [anon_sym_DASH] = ACTIONS(5252), - [anon_sym_STAR] = ACTIONS(5250), - [anon_sym_SLASH] = ACTIONS(5252), - [anon_sym_PERCENT] = ACTIONS(5250), - [anon_sym_CARET] = ACTIONS(5250), - [anon_sym_PIPE] = ACTIONS(5252), - [anon_sym_AMP] = ACTIONS(5252), - [anon_sym_LT_LT] = ACTIONS(5250), - [anon_sym_GT_GT] = ACTIONS(5252), - [anon_sym_GT_GT_GT] = ACTIONS(5250), - [anon_sym_EQ_EQ] = ACTIONS(5250), - [anon_sym_BANG_EQ] = ACTIONS(5250), - [anon_sym_GT_EQ] = ACTIONS(5250), - [anon_sym_LT_EQ] = ACTIONS(5250), - [anon_sym_DOT] = ACTIONS(5252), - [anon_sym_EQ_GT] = ACTIONS(5250), - [anon_sym_switch] = ACTIONS(5250), - [anon_sym_when] = ACTIONS(5250), - [anon_sym_DOT_DOT] = ACTIONS(5250), - [anon_sym_and] = ACTIONS(5250), - [anon_sym_or] = ACTIONS(5250), - [anon_sym_AMP_AMP] = ACTIONS(5250), - [anon_sym_PIPE_PIPE] = ACTIONS(5250), - [anon_sym_QMARK_QMARK] = ACTIONS(5250), - [anon_sym_on] = ACTIONS(5250), - [anon_sym_equals] = ACTIONS(5250), - [anon_sym_by] = ACTIONS(5250), - [anon_sym_as] = ACTIONS(5250), - [anon_sym_is] = ACTIONS(5250), - [anon_sym_DASH_GT] = ACTIONS(5250), - [anon_sym_with] = ACTIONS(5250), - [aux_sym_preproc_if_token3] = ACTIONS(5250), - [aux_sym_preproc_else_token1] = ACTIONS(5250), - [aux_sym_preproc_elif_token1] = ACTIONS(5250), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3442] = { - [sym_preproc_region] = STATE(3442), - [sym_preproc_endregion] = STATE(3442), - [sym_preproc_line] = STATE(3442), - [sym_preproc_pragma] = STATE(3442), - [sym_preproc_nullable] = STATE(3442), - [sym_preproc_error] = STATE(3442), - [sym_preproc_warning] = STATE(3442), - [sym_preproc_define] = STATE(3442), - [sym_preproc_undef] = STATE(3442), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ_GT] = ACTIONS(4291), - [anon_sym_switch] = ACTIONS(4291), - [anon_sym_when] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4291), - [anon_sym_or] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_on] = ACTIONS(4291), - [anon_sym_equals] = ACTIONS(4291), - [anon_sym_by] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4291), - [aux_sym_preproc_if_token3] = ACTIONS(4291), - [aux_sym_preproc_else_token1] = ACTIONS(4291), - [aux_sym_preproc_elif_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_in] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4977), + [anon_sym_BANG] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4975), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4975), + [anon_sym_CARET] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4975), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_GT_GT_GT] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_EQ_GT] = ACTIONS(4975), + [anon_sym_switch] = ACTIONS(4975), + [anon_sym_when] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_and] = ACTIONS(4975), + [anon_sym_or] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_QMARK_QMARK] = ACTIONS(4975), + [anon_sym_on] = ACTIONS(4975), + [anon_sym_equals] = ACTIONS(4975), + [anon_sym_by] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_DASH_GT] = ACTIONS(4975), + [anon_sym_with] = ACTIONS(4975), + [aux_sym_preproc_if_token3] = ACTIONS(4975), + [aux_sym_preproc_else_token1] = ACTIONS(4975), + [aux_sym_preproc_elif_token1] = ACTIONS(4975), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3442] = { + [sym_preproc_region] = STATE(3442), + [sym_preproc_endregion] = STATE(3442), + [sym_preproc_line] = STATE(3442), + [sym_preproc_pragma] = STATE(3442), + [sym_preproc_nullable] = STATE(3442), + [sym_preproc_error] = STATE(3442), + [sym_preproc_warning] = STATE(3442), + [sym_preproc_define] = STATE(3442), + [sym_preproc_undef] = STATE(3442), + [anon_sym_SEMI] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5211), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5213), + [anon_sym_LT_LT] = ACTIONS(5211), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_GT_GT_GT] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_EQ_GT] = ACTIONS(5211), + [anon_sym_switch] = ACTIONS(5211), + [anon_sym_when] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_or] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_QMARK_QMARK] = ACTIONS(5211), + [anon_sym_on] = ACTIONS(5211), + [anon_sym_equals] = ACTIONS(5211), + [anon_sym_by] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5211), + [anon_sym_with] = ACTIONS(5211), + [aux_sym_preproc_if_token3] = ACTIONS(5211), + [aux_sym_preproc_else_token1] = ACTIONS(5211), + [aux_sym_preproc_elif_token1] = ACTIONS(5211), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504760,56 +504795,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3443), [sym_preproc_define] = STATE(3443), [sym_preproc_undef] = STATE(3443), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5019), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_GT_GT_GT] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_EQ_GT] = ACTIONS(5019), - [anon_sym_switch] = ACTIONS(5019), - [anon_sym_when] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_and] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_QMARK_QMARK] = ACTIONS(5019), - [anon_sym_on] = ACTIONS(5019), - [anon_sym_equals] = ACTIONS(5019), - [anon_sym_by] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), - [anon_sym_with] = ACTIONS(5019), - [aux_sym_preproc_if_token3] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_in] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_GT_GT_GT] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_switch] = ACTIONS(5222), + [anon_sym_when] = ACTIONS(5222), + [anon_sym_DOT_DOT] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_QMARK_QMARK] = ACTIONS(5222), + [anon_sym_on] = ACTIONS(5222), + [anon_sym_equals] = ACTIONS(5222), + [anon_sym_by] = ACTIONS(5222), + [anon_sym_as] = ACTIONS(5222), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_with] = ACTIONS(5222), + [aux_sym_preproc_if_token3] = ACTIONS(5222), + [aux_sym_preproc_else_token1] = ACTIONS(5222), + [aux_sym_preproc_elif_token1] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504831,56 +504866,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3444), [sym_preproc_define] = STATE(3444), [sym_preproc_undef] = STATE(3444), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_in] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(5234), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_CARET] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5232), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_GT_GT_GT] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5234), - [anon_sym_EQ_GT] = ACTIONS(5232), - [anon_sym_switch] = ACTIONS(5232), - [anon_sym_when] = ACTIONS(5232), - [anon_sym_DOT_DOT] = ACTIONS(5232), - [anon_sym_and] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_QMARK_QMARK] = ACTIONS(5232), - [anon_sym_on] = ACTIONS(5232), - [anon_sym_equals] = ACTIONS(5232), - [anon_sym_by] = ACTIONS(5232), - [anon_sym_as] = ACTIONS(5232), - [anon_sym_is] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_with] = ACTIONS(5232), - [aux_sym_preproc_if_token3] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_RBRACK] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_in] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_BANG] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4997), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_GT_GT_GT] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_EQ_GT] = ACTIONS(4995), + [anon_sym_switch] = ACTIONS(4995), + [anon_sym_when] = ACTIONS(4995), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_QMARK_QMARK] = ACTIONS(4995), + [anon_sym_on] = ACTIONS(4995), + [anon_sym_equals] = ACTIONS(4995), + [anon_sym_by] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4995), + [anon_sym_is] = ACTIONS(4995), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_with] = ACTIONS(4995), + [aux_sym_preproc_if_token3] = ACTIONS(4995), + [aux_sym_preproc_else_token1] = ACTIONS(4995), + [aux_sym_preproc_elif_token1] = ACTIONS(4995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504902,56 +504937,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3445), [sym_preproc_define] = STATE(3445), [sym_preproc_undef] = STATE(3445), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_LT_LT] = ACTIONS(5039), - [anon_sym_GT_GT] = ACTIONS(5041), - [anon_sym_GT_GT_GT] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_EQ_GT] = ACTIONS(5039), - [anon_sym_switch] = ACTIONS(5039), - [anon_sym_when] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_and] = ACTIONS(5039), - [anon_sym_or] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_QMARK_QMARK] = ACTIONS(5039), - [anon_sym_on] = ACTIONS(5039), - [anon_sym_equals] = ACTIONS(5039), - [anon_sym_by] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_DASH_GT] = ACTIONS(5039), - [anon_sym_with] = ACTIONS(5039), - [aux_sym_preproc_if_token3] = ACTIONS(5039), - [aux_sym_preproc_else_token1] = ACTIONS(5039), - [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_in] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_GT_GT_GT] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_EQ_GT] = ACTIONS(4991), + [anon_sym_switch] = ACTIONS(4991), + [anon_sym_when] = ACTIONS(4991), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_QMARK_QMARK] = ACTIONS(4991), + [anon_sym_on] = ACTIONS(4991), + [anon_sym_equals] = ACTIONS(4991), + [anon_sym_by] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4991), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [anon_sym_with] = ACTIONS(4991), + [aux_sym_preproc_if_token3] = ACTIONS(4991), + [aux_sym_preproc_else_token1] = ACTIONS(4991), + [aux_sym_preproc_elif_token1] = ACTIONS(4991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504973,56 +505008,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3446), [sym_preproc_define] = STATE(3446), [sym_preproc_undef] = STATE(3446), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RBRACK] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_LT] = ACTIONS(5194), - [anon_sym_GT] = ACTIONS(5194), - [anon_sym_in] = ACTIONS(5192), - [anon_sym_QMARK] = ACTIONS(5194), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5194), - [anon_sym_GT_GT_GT] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(5192), - [anon_sym_switch] = ACTIONS(5192), - [anon_sym_when] = ACTIONS(5192), - [anon_sym_DOT_DOT] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5192), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_QMARK_QMARK] = ACTIONS(5192), - [anon_sym_on] = ACTIONS(5192), - [anon_sym_equals] = ACTIONS(5192), - [anon_sym_by] = ACTIONS(5192), - [anon_sym_as] = ACTIONS(5192), - [anon_sym_is] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [anon_sym_with] = ACTIONS(5192), - [aux_sym_preproc_if_token3] = ACTIONS(5192), - [aux_sym_preproc_else_token1] = ACTIONS(5192), - [aux_sym_preproc_elif_token1] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5005), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_GT_GT_GT] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_EQ_GT] = ACTIONS(5003), + [anon_sym_switch] = ACTIONS(5003), + [anon_sym_when] = ACTIONS(5003), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_QMARK_QMARK] = ACTIONS(5003), + [anon_sym_on] = ACTIONS(5003), + [anon_sym_equals] = ACTIONS(5003), + [anon_sym_by] = ACTIONS(5003), + [anon_sym_as] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5003), + [anon_sym_DASH_GT] = ACTIONS(5003), + [anon_sym_with] = ACTIONS(5003), + [aux_sym_preproc_if_token3] = ACTIONS(5003), + [aux_sym_preproc_else_token1] = ACTIONS(5003), + [aux_sym_preproc_elif_token1] = ACTIONS(5003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505044,56 +505079,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3447), [sym_preproc_define] = STATE(3447), [sym_preproc_undef] = STATE(3447), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(5196), - [anon_sym_COLON] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5196), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5196), - [anon_sym_DASH_DASH] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_CARET] = ACTIONS(5196), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_LT_LT] = ACTIONS(5196), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_GT_GT_GT] = ACTIONS(5196), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_EQ_GT] = ACTIONS(5196), - [anon_sym_switch] = ACTIONS(5196), - [anon_sym_when] = ACTIONS(5196), - [anon_sym_DOT_DOT] = ACTIONS(5196), - [anon_sym_and] = ACTIONS(5196), - [anon_sym_or] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_QMARK_QMARK] = ACTIONS(5196), - [anon_sym_on] = ACTIONS(5196), - [anon_sym_equals] = ACTIONS(5196), - [anon_sym_by] = ACTIONS(5196), - [anon_sym_as] = ACTIONS(5196), - [anon_sym_is] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [anon_sym_with] = ACTIONS(5196), - [aux_sym_preproc_if_token3] = ACTIONS(5196), - [aux_sym_preproc_else_token1] = ACTIONS(5196), - [aux_sym_preproc_elif_token1] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_GT_GT_GT] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_EQ_GT] = ACTIONS(5007), + [anon_sym_switch] = ACTIONS(5007), + [anon_sym_when] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_QMARK_QMARK] = ACTIONS(5007), + [anon_sym_on] = ACTIONS(5007), + [anon_sym_equals] = ACTIONS(5007), + [anon_sym_by] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [anon_sym_with] = ACTIONS(5007), + [aux_sym_preproc_if_token3] = ACTIONS(5007), + [aux_sym_preproc_else_token1] = ACTIONS(5007), + [aux_sym_preproc_elif_token1] = ACTIONS(5007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505115,56 +505150,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3448), [sym_preproc_define] = STATE(3448), [sym_preproc_undef] = STATE(3448), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(5392), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(5547), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_when] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_or] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_QMARK] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_AMP] = ACTIONS(5021), + [anon_sym_LT_LT] = ACTIONS(5019), + [anon_sym_GT_GT] = ACTIONS(5021), + [anon_sym_GT_GT_GT] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_EQ_GT] = ACTIONS(5019), + [anon_sym_switch] = ACTIONS(5019), + [anon_sym_when] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_and] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_QMARK_QMARK] = ACTIONS(5019), + [anon_sym_on] = ACTIONS(5019), + [anon_sym_equals] = ACTIONS(5019), + [anon_sym_by] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [aux_sym_preproc_if_token3] = ACTIONS(5019), + [aux_sym_preproc_else_token1] = ACTIONS(5019), + [aux_sym_preproc_elif_token1] = ACTIONS(5019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505186,77 +505221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3449), [sym_preproc_define] = STATE(3449), [sym_preproc_undef] = STATE(3449), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(5547), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_when] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_and] = ACTIONS(4015), - [anon_sym_or] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3450] = { - [sym_preproc_region] = STATE(3450), - [sym_preproc_endregion] = STATE(3450), - [sym_preproc_line] = STATE(3450), - [sym_preproc_pragma] = STATE(3450), - [sym_preproc_nullable] = STATE(3450), - [sym_preproc_error] = STATE(3450), - [sym_preproc_warning] = STATE(3450), - [sym_preproc_define] = STATE(3450), - [sym_preproc_undef] = STATE(3450), [anon_sym_SEMI] = ACTIONS(5027), [anon_sym_LBRACK] = ACTIONS(5027), [anon_sym_COLON] = ACTIONS(5027), @@ -505318,6 +505282,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3450] = { + [sym_preproc_region] = STATE(3450), + [sym_preproc_endregion] = STATE(3450), + [sym_preproc_line] = STATE(3450), + [sym_preproc_pragma] = STATE(3450), + [sym_preproc_nullable] = STATE(3450), + [sym_preproc_error] = STATE(3450), + [sym_preproc_warning] = STATE(3450), + [sym_preproc_define] = STATE(3450), + [sym_preproc_undef] = STATE(3450), + [anon_sym_SEMI] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_in] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5037), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_GT_GT_GT] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5035), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5037), + [anon_sym_EQ_GT] = ACTIONS(5035), + [anon_sym_switch] = ACTIONS(5035), + [anon_sym_when] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_AMP_AMP] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5035), + [anon_sym_QMARK_QMARK] = ACTIONS(5035), + [anon_sym_on] = ACTIONS(5035), + [anon_sym_equals] = ACTIONS(5035), + [anon_sym_by] = ACTIONS(5035), + [anon_sym_as] = ACTIONS(5035), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5035), + [anon_sym_with] = ACTIONS(5035), + [aux_sym_preproc_if_token3] = ACTIONS(5035), + [aux_sym_preproc_else_token1] = ACTIONS(5035), + [aux_sym_preproc_elif_token1] = ACTIONS(5035), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3451] = { [sym_preproc_region] = STATE(3451), [sym_preproc_endregion] = STATE(3451), @@ -505328,56 +505363,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3451), [sym_preproc_define] = STATE(3451), [sym_preproc_undef] = STATE(3451), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_get] = ACTIONS(3205), - [anon_sym_set] = ACTIONS(3205), - [anon_sym_add] = ACTIONS(3205), - [anon_sym_remove] = ACTIONS(3205), - [anon_sym_init] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [aux_sym_preproc_if_token1] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_in] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5039), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(5039), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_GT_GT_GT] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5039), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5041), + [anon_sym_EQ_GT] = ACTIONS(5039), + [anon_sym_switch] = ACTIONS(5039), + [anon_sym_when] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_or] = ACTIONS(5039), + [anon_sym_AMP_AMP] = ACTIONS(5039), + [anon_sym_PIPE_PIPE] = ACTIONS(5039), + [anon_sym_QMARK_QMARK] = ACTIONS(5039), + [anon_sym_on] = ACTIONS(5039), + [anon_sym_equals] = ACTIONS(5039), + [anon_sym_by] = ACTIONS(5039), + [anon_sym_as] = ACTIONS(5039), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5039), + [anon_sym_with] = ACTIONS(5039), + [aux_sym_preproc_if_token3] = ACTIONS(5039), + [aux_sym_preproc_else_token1] = ACTIONS(5039), + [aux_sym_preproc_elif_token1] = ACTIONS(5039), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505399,56 +505434,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3452), [sym_preproc_define] = STATE(3452), [sym_preproc_undef] = STATE(3452), - [anon_sym_SEMI] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_RPAREN] = ACTIONS(5065), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5065), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5067), - [anon_sym_LT_LT] = ACTIONS(5065), - [anon_sym_GT_GT] = ACTIONS(5067), - [anon_sym_GT_GT_GT] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_EQ_GT] = ACTIONS(5065), - [anon_sym_switch] = ACTIONS(5065), - [anon_sym_when] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_and] = ACTIONS(5065), - [anon_sym_or] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_QMARK_QMARK] = ACTIONS(5065), - [anon_sym_on] = ACTIONS(5065), - [anon_sym_equals] = ACTIONS(5065), - [anon_sym_by] = ACTIONS(5065), - [anon_sym_as] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5065), - [anon_sym_with] = ACTIONS(5065), - [aux_sym_preproc_if_token3] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), + [anon_sym_SEMI] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_COLON] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5047), + [anon_sym_QMARK] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_CARET] = ACTIONS(5047), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_AMP] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(5047), + [anon_sym_GT_GT] = ACTIONS(5049), + [anon_sym_GT_GT_GT] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_EQ_GT] = ACTIONS(5047), + [anon_sym_switch] = ACTIONS(5047), + [anon_sym_when] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_and] = ACTIONS(5047), + [anon_sym_or] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_QMARK_QMARK] = ACTIONS(5047), + [anon_sym_on] = ACTIONS(5047), + [anon_sym_equals] = ACTIONS(5047), + [anon_sym_by] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5047), + [anon_sym_with] = ACTIONS(5047), + [aux_sym_preproc_if_token3] = ACTIONS(5047), + [aux_sym_preproc_else_token1] = ACTIONS(5047), + [aux_sym_preproc_elif_token1] = ACTIONS(5047), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505461,6 +505496,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3453] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7499), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3453), [sym_preproc_endregion] = STATE(3453), [sym_preproc_line] = STATE(3453), @@ -505470,56 +505525,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3453), [sym_preproc_define] = STATE(3453), [sym_preproc_undef] = STATE(3453), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5071), - [anon_sym_LT_LT] = ACTIONS(5069), - [anon_sym_GT_GT] = ACTIONS(5071), - [anon_sym_GT_GT_GT] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_EQ_GT] = ACTIONS(5069), - [anon_sym_switch] = ACTIONS(5069), - [anon_sym_when] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_or] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_QMARK_QMARK] = ACTIONS(5069), - [anon_sym_on] = ACTIONS(5069), - [anon_sym_equals] = ACTIONS(5069), - [anon_sym_by] = ACTIONS(5069), - [anon_sym_as] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5069), - [anon_sym_with] = ACTIONS(5069), - [aux_sym_preproc_if_token3] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505532,26 +505567,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3454] = { - [sym_type_parameter_constraint] = STATE(6441), - [sym_constructor_constraint] = STATE(6645), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6665), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3454), [sym_preproc_endregion] = STATE(3454), [sym_preproc_line] = STATE(3454), @@ -505561,36 +505576,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3454), [sym_preproc_define] = STATE(3454), [sym_preproc_undef] = STATE(3454), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_ref] = ACTIONS(5551), - [anon_sym_struct] = ACTIONS(5553), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(5555), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(5557), - [anon_sym_unmanaged] = ACTIONS(5557), - [anon_sym_scoped] = ACTIONS(5559), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_COLON] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_in] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(5069), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5069), + [anon_sym_GT_GT_GT] = ACTIONS(5067), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5069), + [anon_sym_EQ_GT] = ACTIONS(5067), + [anon_sym_switch] = ACTIONS(5067), + [anon_sym_when] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5067), + [anon_sym_and] = ACTIONS(5067), + [anon_sym_or] = ACTIONS(5067), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_QMARK_QMARK] = ACTIONS(5067), + [anon_sym_on] = ACTIONS(5067), + [anon_sym_equals] = ACTIONS(5067), + [anon_sym_by] = ACTIONS(5067), + [anon_sym_as] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5067), + [anon_sym_with] = ACTIONS(5067), + [aux_sym_preproc_if_token3] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505612,56 +505647,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3455), [sym_preproc_define] = STATE(3455), [sym_preproc_undef] = STATE(3455), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_GT_GT_GT] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_EQ_GT] = ACTIONS(5099), - [anon_sym_switch] = ACTIONS(5099), - [anon_sym_when] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_QMARK_QMARK] = ACTIONS(5099), - [anon_sym_on] = ACTIONS(5099), - [anon_sym_equals] = ACTIONS(5099), - [anon_sym_by] = ACTIONS(5099), - [anon_sym_as] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_with] = ACTIONS(5099), - [aux_sym_preproc_if_token3] = ACTIONS(5099), - [aux_sym_preproc_else_token1] = ACTIONS(5099), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_QMARK] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5099), + [anon_sym_AMP] = ACTIONS(5099), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5099), + [anon_sym_GT_GT_GT] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_EQ_GT] = ACTIONS(5097), + [anon_sym_switch] = ACTIONS(5097), + [anon_sym_when] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_and] = ACTIONS(5097), + [anon_sym_or] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_QMARK_QMARK] = ACTIONS(5097), + [anon_sym_on] = ACTIONS(5097), + [anon_sym_equals] = ACTIONS(5097), + [anon_sym_by] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5097), + [anon_sym_with] = ACTIONS(5097), + [aux_sym_preproc_if_token3] = ACTIONS(5097), + [aux_sym_preproc_else_token1] = ACTIONS(5097), + [aux_sym_preproc_elif_token1] = ACTIONS(5097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505683,56 +505718,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3456), [sym_preproc_define] = STATE(3456), [sym_preproc_undef] = STATE(3456), - [anon_sym_SEMI] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5416), - [anon_sym_COLON] = ACTIONS(5416), - [anon_sym_COMMA] = ACTIONS(5416), - [anon_sym_RBRACK] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5416), - [anon_sym_RPAREN] = ACTIONS(5416), - [anon_sym_RBRACE] = ACTIONS(5416), - [anon_sym_LT] = ACTIONS(5418), - [anon_sym_GT] = ACTIONS(5418), - [anon_sym_in] = ACTIONS(5416), - [anon_sym_QMARK] = ACTIONS(5418), - [anon_sym_BANG] = ACTIONS(5418), - [anon_sym_PLUS_PLUS] = ACTIONS(5416), - [anon_sym_DASH_DASH] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_SLASH] = ACTIONS(5418), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_CARET] = ACTIONS(5416), - [anon_sym_PIPE] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_GT_GT] = ACTIONS(5418), - [anon_sym_GT_GT_GT] = ACTIONS(5416), - [anon_sym_EQ_EQ] = ACTIONS(5416), - [anon_sym_BANG_EQ] = ACTIONS(5416), - [anon_sym_GT_EQ] = ACTIONS(5416), - [anon_sym_LT_EQ] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_EQ_GT] = ACTIONS(5416), - [anon_sym_switch] = ACTIONS(5416), - [anon_sym_when] = ACTIONS(5416), - [anon_sym_DOT_DOT] = ACTIONS(5416), - [anon_sym_and] = ACTIONS(5416), - [anon_sym_or] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_PIPE_PIPE] = ACTIONS(5416), - [anon_sym_QMARK_QMARK] = ACTIONS(5416), - [anon_sym_on] = ACTIONS(5416), - [anon_sym_equals] = ACTIONS(5416), - [anon_sym_by] = ACTIONS(5416), - [anon_sym_as] = ACTIONS(5416), - [anon_sym_is] = ACTIONS(5416), - [anon_sym_DASH_GT] = ACTIONS(5416), - [anon_sym_with] = ACTIONS(5416), - [aux_sym_preproc_if_token3] = ACTIONS(5416), - [aux_sym_preproc_else_token1] = ACTIONS(5416), - [aux_sym_preproc_elif_token1] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_QMARK] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5119), + [anon_sym_GT_GT_GT] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_EQ_GT] = ACTIONS(5117), + [anon_sym_switch] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_and] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_QMARK_QMARK] = ACTIONS(5117), + [anon_sym_on] = ACTIONS(5117), + [anon_sym_equals] = ACTIONS(5117), + [anon_sym_by] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [anon_sym_with] = ACTIONS(5117), + [aux_sym_preproc_if_token3] = ACTIONS(5117), + [aux_sym_preproc_else_token1] = ACTIONS(5117), + [aux_sym_preproc_elif_token1] = ACTIONS(5117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505754,56 +505789,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3457), [sym_preproc_define] = STATE(3457), [sym_preproc_undef] = STATE(3457), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_COLON] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RBRACK] = ACTIONS(5204), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_RBRACE] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_in] = ACTIONS(5204), - [anon_sym_QMARK] = ACTIONS(5206), - [anon_sym_BANG] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5204), - [anon_sym_DASH_DASH] = ACTIONS(5204), - [anon_sym_PLUS] = ACTIONS(5206), - [anon_sym_DASH] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_SLASH] = ACTIONS(5206), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_CARET] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_GT_GT_GT] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(5206), - [anon_sym_EQ_GT] = ACTIONS(5204), - [anon_sym_switch] = ACTIONS(5204), - [anon_sym_when] = ACTIONS(5204), - [anon_sym_DOT_DOT] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_QMARK_QMARK] = ACTIONS(5204), - [anon_sym_on] = ACTIONS(5204), - [anon_sym_equals] = ACTIONS(5204), - [anon_sym_by] = ACTIONS(5204), - [anon_sym_as] = ACTIONS(5204), - [anon_sym_is] = ACTIONS(5204), - [anon_sym_DASH_GT] = ACTIONS(5204), - [anon_sym_with] = ACTIONS(5204), - [aux_sym_preproc_if_token3] = ACTIONS(5204), - [aux_sym_preproc_else_token1] = ACTIONS(5204), - [aux_sym_preproc_elif_token1] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_COLON] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_GT_GT_GT] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_EQ_GT] = ACTIONS(5121), + [anon_sym_switch] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_and] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_QMARK_QMARK] = ACTIONS(5121), + [anon_sym_on] = ACTIONS(5121), + [anon_sym_equals] = ACTIONS(5121), + [anon_sym_by] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [anon_sym_with] = ACTIONS(5121), + [aux_sym_preproc_if_token3] = ACTIONS(5121), + [aux_sym_preproc_else_token1] = ACTIONS(5121), + [aux_sym_preproc_elif_token1] = ACTIONS(5121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505825,56 +505860,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3458), [sym_preproc_define] = STATE(3458), [sym_preproc_undef] = STATE(3458), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5160), - [anon_sym_COLON] = ACTIONS(5160), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RBRACK] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_in] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_PLUS_PLUS] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_GT_GT_GT] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_EQ_GT] = ACTIONS(5160), - [anon_sym_switch] = ACTIONS(5160), - [anon_sym_when] = ACTIONS(5160), - [anon_sym_DOT_DOT] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_QMARK_QMARK] = ACTIONS(5160), - [anon_sym_on] = ACTIONS(5160), - [anon_sym_equals] = ACTIONS(5160), - [anon_sym_by] = ACTIONS(5160), - [anon_sym_as] = ACTIONS(5160), - [anon_sym_is] = ACTIONS(5160), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), - [aux_sym_preproc_if_token3] = ACTIONS(5160), - [aux_sym_preproc_else_token1] = ACTIONS(5160), - [aux_sym_preproc_elif_token1] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_GT_GT_GT] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_EQ_GT] = ACTIONS(5129), + [anon_sym_switch] = ACTIONS(5129), + [anon_sym_when] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_and] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_QMARK_QMARK] = ACTIONS(5129), + [anon_sym_on] = ACTIONS(5129), + [anon_sym_equals] = ACTIONS(5129), + [anon_sym_by] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [anon_sym_with] = ACTIONS(5129), + [aux_sym_preproc_if_token3] = ACTIONS(5129), + [aux_sym_preproc_else_token1] = ACTIONS(5129), + [aux_sym_preproc_elif_token1] = ACTIONS(5129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505896,56 +505931,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3459), [sym_preproc_define] = STATE(3459), [sym_preproc_undef] = STATE(3459), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RBRACK] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(5174), - [anon_sym_GT] = ACTIONS(5174), - [anon_sym_in] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_CARET] = ACTIONS(5172), - [anon_sym_PIPE] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_LT_LT] = ACTIONS(5172), - [anon_sym_GT_GT] = ACTIONS(5174), - [anon_sym_GT_GT_GT] = ACTIONS(5172), - [anon_sym_EQ_EQ] = ACTIONS(5172), - [anon_sym_BANG_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_EQ_GT] = ACTIONS(5172), - [anon_sym_switch] = ACTIONS(5172), - [anon_sym_when] = ACTIONS(5172), - [anon_sym_DOT_DOT] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5172), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_QMARK_QMARK] = ACTIONS(5172), - [anon_sym_on] = ACTIONS(5172), - [anon_sym_equals] = ACTIONS(5172), - [anon_sym_by] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5172), - [anon_sym_is] = ACTIONS(5172), - [anon_sym_DASH_GT] = ACTIONS(5172), - [anon_sym_with] = ACTIONS(5172), - [aux_sym_preproc_if_token3] = ACTIONS(5172), - [aux_sym_preproc_else_token1] = ACTIONS(5172), - [aux_sym_preproc_elif_token1] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_QMARK] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5137), + [anon_sym_AMP] = ACTIONS(5137), + [anon_sym_LT_LT] = ACTIONS(5135), + [anon_sym_GT_GT] = ACTIONS(5137), + [anon_sym_GT_GT_GT] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_EQ_GT] = ACTIONS(5135), + [anon_sym_switch] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_and] = ACTIONS(5135), + [anon_sym_or] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_QMARK_QMARK] = ACTIONS(5135), + [anon_sym_on] = ACTIONS(5135), + [anon_sym_equals] = ACTIONS(5135), + [anon_sym_by] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_with] = ACTIONS(5135), + [aux_sym_preproc_if_token3] = ACTIONS(5135), + [aux_sym_preproc_else_token1] = ACTIONS(5135), + [aux_sym_preproc_elif_token1] = ACTIONS(5135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505967,56 +506002,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3460), [sym_preproc_define] = STATE(3460), [sym_preproc_undef] = STATE(3460), - [anon_sym_SEMI] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_COLON] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_RBRACK] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_LT] = ACTIONS(5186), - [anon_sym_GT] = ACTIONS(5186), - [anon_sym_in] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_PLUS_PLUS] = ACTIONS(5184), - [anon_sym_DASH_DASH] = ACTIONS(5184), - [anon_sym_PLUS] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_SLASH] = ACTIONS(5186), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5186), - [anon_sym_GT_GT_GT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5184), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_EQ_GT] = ACTIONS(5184), - [anon_sym_switch] = ACTIONS(5184), - [anon_sym_when] = ACTIONS(5184), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5184), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_QMARK_QMARK] = ACTIONS(5184), - [anon_sym_on] = ACTIONS(5184), - [anon_sym_equals] = ACTIONS(5184), - [anon_sym_by] = ACTIONS(5184), - [anon_sym_as] = ACTIONS(5184), - [anon_sym_is] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5184), - [anon_sym_with] = ACTIONS(5184), - [aux_sym_preproc_if_token3] = ACTIONS(5184), - [aux_sym_preproc_else_token1] = ACTIONS(5184), - [aux_sym_preproc_elif_token1] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5141), + [anon_sym_LT_LT] = ACTIONS(5139), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_GT_GT_GT] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_EQ_GT] = ACTIONS(5139), + [anon_sym_switch] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_and] = ACTIONS(5139), + [anon_sym_or] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_QMARK_QMARK] = ACTIONS(5139), + [anon_sym_on] = ACTIONS(5139), + [anon_sym_equals] = ACTIONS(5139), + [anon_sym_by] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5139), + [anon_sym_with] = ACTIONS(5139), + [aux_sym_preproc_if_token3] = ACTIONS(5139), + [aux_sym_preproc_else_token1] = ACTIONS(5139), + [aux_sym_preproc_elif_token1] = ACTIONS(5139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506038,56 +506073,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3461), [sym_preproc_define] = STATE(3461), [sym_preproc_undef] = STATE(3461), - [sym__identifier_token] = ACTIONS(5561), - [anon_sym_extern] = ACTIONS(5561), - [anon_sym_alias] = ACTIONS(5561), - [anon_sym_global] = ACTIONS(5561), - [anon_sym_unsafe] = ACTIONS(5561), - [anon_sym_static] = ACTIONS(5561), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_RBRACE] = ACTIONS(5563), - [anon_sym_abstract] = ACTIONS(5561), - [anon_sym_async] = ACTIONS(5561), - [anon_sym_const] = ACTIONS(5561), - [anon_sym_file] = ACTIONS(5561), - [anon_sym_fixed] = ACTIONS(5561), - [anon_sym_internal] = ACTIONS(5561), - [anon_sym_new] = ACTIONS(5561), - [anon_sym_override] = ACTIONS(5561), - [anon_sym_partial] = ACTIONS(5561), - [anon_sym_private] = ACTIONS(5561), - [anon_sym_protected] = ACTIONS(5561), - [anon_sym_public] = ACTIONS(5561), - [anon_sym_readonly] = ACTIONS(5561), - [anon_sym_required] = ACTIONS(5561), - [anon_sym_sealed] = ACTIONS(5561), - [anon_sym_virtual] = ACTIONS(5561), - [anon_sym_volatile] = ACTIONS(5561), - [anon_sym_where] = ACTIONS(5561), - [anon_sym_notnull] = ACTIONS(5561), - [anon_sym_unmanaged] = ACTIONS(5561), - [anon_sym_get] = ACTIONS(5561), - [anon_sym_set] = ACTIONS(5561), - [anon_sym_add] = ACTIONS(5561), - [anon_sym_remove] = ACTIONS(5561), - [anon_sym_init] = ACTIONS(5561), - [anon_sym_scoped] = ACTIONS(5561), - [anon_sym_var] = ACTIONS(5561), - [anon_sym_yield] = ACTIONS(5561), - [anon_sym_when] = ACTIONS(5561), - [anon_sym_from] = ACTIONS(5561), - [anon_sym_into] = ACTIONS(5561), - [anon_sym_join] = ACTIONS(5561), - [anon_sym_on] = ACTIONS(5561), - [anon_sym_equals] = ACTIONS(5561), - [anon_sym_let] = ACTIONS(5561), - [anon_sym_orderby] = ACTIONS(5561), - [anon_sym_ascending] = ACTIONS(5561), - [anon_sym_descending] = ACTIONS(5561), - [anon_sym_group] = ACTIONS(5561), - [anon_sym_by] = ACTIONS(5561), - [anon_sym_select] = ACTIONS(5561), - [aux_sym_preproc_if_token1] = ACTIONS(5563), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5526), + [anon_sym_DASH_EQ] = ACTIONS(5526), + [anon_sym_STAR_EQ] = ACTIONS(5526), + [anon_sym_SLASH_EQ] = ACTIONS(5526), + [anon_sym_PERCENT_EQ] = ACTIONS(5526), + [anon_sym_AMP_EQ] = ACTIONS(5526), + [anon_sym_CARET_EQ] = ACTIONS(5526), + [anon_sym_PIPE_EQ] = ACTIONS(5526), + [anon_sym_LT_LT_EQ] = ACTIONS(5526), + [anon_sym_GT_GT_EQ] = ACTIONS(5526), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5526), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506100,26 +506135,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3462] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3462), [sym_preproc_endregion] = STATE(3462), [sym_preproc_line] = STATE(3462), @@ -506129,14 +506144,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3462), [sym_preproc_define] = STATE(3462), [sym_preproc_undef] = STATE(3462), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), + [sym__identifier_token] = ACTIONS(5528), + [anon_sym_extern] = ACTIONS(5528), + [anon_sym_alias] = ACTIONS(5528), + [anon_sym_global] = ACTIONS(5528), + [anon_sym_unsafe] = ACTIONS(5528), + [anon_sym_static] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5530), + [anon_sym_RBRACE] = ACTIONS(5530), + [anon_sym_abstract] = ACTIONS(5528), + [anon_sym_async] = ACTIONS(5528), + [anon_sym_const] = ACTIONS(5528), + [anon_sym_file] = ACTIONS(5528), + [anon_sym_fixed] = ACTIONS(5528), + [anon_sym_internal] = ACTIONS(5528), + [anon_sym_new] = ACTIONS(5528), + [anon_sym_override] = ACTIONS(5528), + [anon_sym_partial] = ACTIONS(5528), + [anon_sym_private] = ACTIONS(5528), + [anon_sym_protected] = ACTIONS(5528), + [anon_sym_public] = ACTIONS(5528), + [anon_sym_readonly] = ACTIONS(5528), + [anon_sym_required] = ACTIONS(5528), + [anon_sym_sealed] = ACTIONS(5528), + [anon_sym_virtual] = ACTIONS(5528), + [anon_sym_volatile] = ACTIONS(5528), + [anon_sym_where] = ACTIONS(5528), + [anon_sym_notnull] = ACTIONS(5528), + [anon_sym_unmanaged] = ACTIONS(5528), + [anon_sym_get] = ACTIONS(5528), + [anon_sym_set] = ACTIONS(5528), + [anon_sym_add] = ACTIONS(5528), + [anon_sym_remove] = ACTIONS(5528), + [anon_sym_init] = ACTIONS(5528), + [anon_sym_scoped] = ACTIONS(5528), + [anon_sym_var] = ACTIONS(5528), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_when] = ACTIONS(5528), + [anon_sym_from] = ACTIONS(5528), + [anon_sym_into] = ACTIONS(5528), + [anon_sym_join] = ACTIONS(5528), + [anon_sym_on] = ACTIONS(5528), + [anon_sym_equals] = ACTIONS(5528), + [anon_sym_let] = ACTIONS(5528), + [anon_sym_orderby] = ACTIONS(5528), + [anon_sym_ascending] = ACTIONS(5528), + [anon_sym_descending] = ACTIONS(5528), + [anon_sym_group] = ACTIONS(5528), + [anon_sym_by] = ACTIONS(5528), + [anon_sym_select] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5530), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3463] = { + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7542), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(3463), + [sym_preproc_endregion] = STATE(3463), + [sym_preproc_line] = STATE(3463), + [sym_preproc_pragma] = STATE(3463), + [sym_preproc_nullable] = STATE(3463), + [sym_preproc_error] = STATE(3463), + [sym_preproc_warning] = STATE(3463), + [sym_preproc_define] = STATE(3463), + [sym_preproc_undef] = STATE(3463), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(3816), [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5565), + [anon_sym_delegate] = ACTIONS(3468), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), @@ -506170,78 +506276,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3463] = { - [sym_preproc_region] = STATE(3463), - [sym_preproc_endregion] = STATE(3463), - [sym_preproc_line] = STATE(3463), - [sym_preproc_pragma] = STATE(3463), - [sym_preproc_nullable] = STATE(3463), - [sym_preproc_error] = STATE(3463), - [sym_preproc_warning] = STATE(3463), - [sym_preproc_define] = STATE(3463), - [sym_preproc_undef] = STATE(3463), - [anon_sym_SEMI] = ACTIONS(5246), - [anon_sym_LBRACK] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5246), - [anon_sym_COMMA] = ACTIONS(5246), - [anon_sym_RBRACK] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_RPAREN] = ACTIONS(5246), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5248), - [anon_sym_in] = ACTIONS(5246), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_BANG] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5248), - [anon_sym_GT_GT_GT] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5246), - [anon_sym_BANG_EQ] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5246), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_DOT] = ACTIONS(5248), - [anon_sym_EQ_GT] = ACTIONS(5246), - [anon_sym_switch] = ACTIONS(5246), - [anon_sym_when] = ACTIONS(5246), - [anon_sym_DOT_DOT] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_or] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5246), - [anon_sym_QMARK_QMARK] = ACTIONS(5246), - [anon_sym_on] = ACTIONS(5246), - [anon_sym_equals] = ACTIONS(5246), - [anon_sym_by] = ACTIONS(5246), - [anon_sym_as] = ACTIONS(5246), - [anon_sym_is] = ACTIONS(5246), - [anon_sym_DASH_GT] = ACTIONS(5246), - [anon_sym_with] = ACTIONS(5246), - [aux_sym_preproc_if_token3] = ACTIONS(5246), - [aux_sym_preproc_else_token1] = ACTIONS(5246), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3464] = { + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3464), [sym_preproc_endregion] = STATE(3464), [sym_preproc_line] = STATE(3464), @@ -506251,56 +506295,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3464), [sym_preproc_define] = STATE(3464), [sym_preproc_undef] = STATE(3464), - [anon_sym_SEMI] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_COLON] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5152), - [anon_sym_RBRACK] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5152), - [anon_sym_RPAREN] = ACTIONS(5152), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_in] = ACTIONS(5152), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_PLUS_PLUS] = ACTIONS(5152), - [anon_sym_DASH_DASH] = ACTIONS(5152), - [anon_sym_PLUS] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5152), - [anon_sym_SLASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5152), - [anon_sym_CARET] = ACTIONS(5152), - [anon_sym_PIPE] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_LT_LT] = ACTIONS(5152), - [anon_sym_GT_GT] = ACTIONS(5154), - [anon_sym_GT_GT_GT] = ACTIONS(5152), - [anon_sym_EQ_EQ] = ACTIONS(5152), - [anon_sym_BANG_EQ] = ACTIONS(5152), - [anon_sym_GT_EQ] = ACTIONS(5152), - [anon_sym_LT_EQ] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_EQ_GT] = ACTIONS(5152), - [anon_sym_switch] = ACTIONS(5152), - [anon_sym_when] = ACTIONS(5152), - [anon_sym_DOT_DOT] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5152), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5152), - [anon_sym_QMARK_QMARK] = ACTIONS(5152), - [anon_sym_on] = ACTIONS(5152), - [anon_sym_equals] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_as] = ACTIONS(5152), - [anon_sym_is] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_with] = ACTIONS(5152), - [aux_sym_preproc_if_token3] = ACTIONS(5152), - [aux_sym_preproc_else_token1] = ACTIONS(5152), - [aux_sym_preproc_elif_token1] = ACTIONS(5152), + [sym__identifier_token] = ACTIONS(3601), + [anon_sym_alias] = ACTIONS(3605), + [anon_sym_global] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(2719), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_file] = ACTIONS(3605), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3605), + [anon_sym_unmanaged] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3605), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3605), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_when] = ACTIONS(3605), + [anon_sym_from] = ACTIONS(3605), + [anon_sym_into] = ACTIONS(3605), + [anon_sym_join] = ACTIONS(3605), + [anon_sym_on] = ACTIONS(3605), + [anon_sym_equals] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_orderby] = ACTIONS(3605), + [anon_sym_ascending] = ACTIONS(3605), + [anon_sym_descending] = ACTIONS(3605), + [anon_sym_group] = ACTIONS(3605), + [anon_sym_by] = ACTIONS(3605), + [anon_sym_select] = ACTIONS(3605), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506313,6 +506348,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3465] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7426), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3465), [sym_preproc_endregion] = STATE(3465), [sym_preproc_line] = STATE(3465), @@ -506322,56 +506377,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3465), [sym_preproc_define] = STATE(3465), [sym_preproc_undef] = STATE(3465), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4993), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4993), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4993), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_LT_LT] = ACTIONS(4991), - [anon_sym_GT_GT] = ACTIONS(4993), - [anon_sym_GT_GT_GT] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_EQ_GT] = ACTIONS(4991), - [anon_sym_switch] = ACTIONS(4991), - [anon_sym_when] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_and] = ACTIONS(4991), - [anon_sym_or] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_QMARK_QMARK] = ACTIONS(4991), - [anon_sym_on] = ACTIONS(4991), - [anon_sym_equals] = ACTIONS(4991), - [anon_sym_by] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_with] = ACTIONS(4991), - [aux_sym_preproc_if_token3] = ACTIONS(4991), - [aux_sym_preproc_else_token1] = ACTIONS(4991), - [aux_sym_preproc_elif_token1] = ACTIONS(4991), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506384,6 +506419,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3466] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7499), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3466), [sym_preproc_endregion] = STATE(3466), [sym_preproc_line] = STATE(3466), @@ -506393,56 +506448,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3466), [sym_preproc_define] = STATE(3466), [sym_preproc_undef] = STATE(3466), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_RBRACK] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [anon_sym_RBRACE] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4997), - [anon_sym_in] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4997), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_LT_LT] = ACTIONS(4995), - [anon_sym_GT_GT] = ACTIONS(4997), - [anon_sym_GT_GT_GT] = ACTIONS(4995), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_GT_EQ] = ACTIONS(4995), - [anon_sym_LT_EQ] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_EQ_GT] = ACTIONS(4995), - [anon_sym_switch] = ACTIONS(4995), - [anon_sym_when] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4995), - [anon_sym_and] = ACTIONS(4995), - [anon_sym_or] = ACTIONS(4995), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_QMARK_QMARK] = ACTIONS(4995), - [anon_sym_on] = ACTIONS(4995), - [anon_sym_equals] = ACTIONS(4995), - [anon_sym_by] = ACTIONS(4995), - [anon_sym_as] = ACTIONS(4995), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4995), - [anon_sym_with] = ACTIONS(4995), - [aux_sym_preproc_if_token3] = ACTIONS(4995), - [aux_sym_preproc_else_token1] = ACTIONS(4995), - [aux_sym_preproc_elif_token1] = ACTIONS(4995), + [aux_sym_function_pointer_type_repeat1] = STATE(3465), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506464,56 +506499,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3467), [sym_preproc_define] = STATE(3467), [sym_preproc_undef] = STATE(3467), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_RBRACK] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(5001), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(5001), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_LT_LT] = ACTIONS(4999), - [anon_sym_GT_GT] = ACTIONS(5001), - [anon_sym_GT_GT_GT] = ACTIONS(4999), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_GT_EQ] = ACTIONS(4999), - [anon_sym_LT_EQ] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_EQ_GT] = ACTIONS(4999), - [anon_sym_switch] = ACTIONS(4999), - [anon_sym_when] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(4999), - [anon_sym_or] = ACTIONS(4999), - [anon_sym_AMP_AMP] = ACTIONS(4999), - [anon_sym_PIPE_PIPE] = ACTIONS(4999), - [anon_sym_QMARK_QMARK] = ACTIONS(4999), - [anon_sym_on] = ACTIONS(4999), - [anon_sym_equals] = ACTIONS(4999), - [anon_sym_by] = ACTIONS(4999), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(4999), - [anon_sym_with] = ACTIONS(4999), - [aux_sym_preproc_if_token3] = ACTIONS(4999), - [aux_sym_preproc_else_token1] = ACTIONS(4999), - [aux_sym_preproc_elif_token1] = ACTIONS(4999), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_COLON] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_in] = ACTIONS(5011), + [anon_sym_QMARK] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5011), + [anon_sym_CARET] = ACTIONS(5011), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_AMP] = ACTIONS(5013), + [anon_sym_LT_LT] = ACTIONS(5011), + [anon_sym_GT_GT] = ACTIONS(5013), + [anon_sym_GT_GT_GT] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_EQ_GT] = ACTIONS(5011), + [anon_sym_switch] = ACTIONS(5011), + [anon_sym_when] = ACTIONS(5011), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_and] = ACTIONS(5011), + [anon_sym_or] = ACTIONS(5011), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_QMARK_QMARK] = ACTIONS(5011), + [anon_sym_on] = ACTIONS(5011), + [anon_sym_equals] = ACTIONS(5011), + [anon_sym_by] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5011), + [anon_sym_is] = ACTIONS(5011), + [anon_sym_DASH_GT] = ACTIONS(5011), + [anon_sym_with] = ACTIONS(5011), + [aux_sym_preproc_if_token3] = ACTIONS(5011), + [aux_sym_preproc_else_token1] = ACTIONS(5011), + [aux_sym_preproc_elif_token1] = ACTIONS(5011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506526,26 +506561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3468] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7598), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3468), [sym_preproc_endregion] = STATE(3468), [sym_preproc_line] = STATE(3468), @@ -506555,36 +506570,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3468), [sym_preproc_define] = STATE(3468), [sym_preproc_undef] = STATE(3468), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_COLON] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5159), + [anon_sym_QMARK] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_CARET] = ACTIONS(5159), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_AMP] = ACTIONS(5161), + [anon_sym_LT_LT] = ACTIONS(5159), + [anon_sym_GT_GT] = ACTIONS(5161), + [anon_sym_GT_GT_GT] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_EQ_GT] = ACTIONS(5159), + [anon_sym_switch] = ACTIONS(5159), + [anon_sym_when] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_and] = ACTIONS(5159), + [anon_sym_or] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_QMARK_QMARK] = ACTIONS(5159), + [anon_sym_on] = ACTIONS(5159), + [anon_sym_equals] = ACTIONS(5159), + [anon_sym_by] = ACTIONS(5159), + [anon_sym_as] = ACTIONS(5159), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5159), + [anon_sym_with] = ACTIONS(5159), + [aux_sym_preproc_if_token3] = ACTIONS(5159), + [aux_sym_preproc_else_token1] = ACTIONS(5159), + [aux_sym_preproc_elif_token1] = ACTIONS(5159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506597,26 +506632,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3469] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7598), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3469), [sym_preproc_endregion] = STATE(3469), [sym_preproc_line] = STATE(3469), @@ -506626,36 +506641,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3469), [sym_preproc_define] = STATE(3469), [sym_preproc_undef] = STATE(3469), - [aux_sym_function_pointer_type_repeat1] = STATE(3471), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_COLON] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5015), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_CARET] = ACTIONS(5015), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(5015), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_GT_GT_GT] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5015), + [anon_sym_switch] = ACTIONS(5015), + [anon_sym_when] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_and] = ACTIONS(5015), + [anon_sym_or] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_QMARK_QMARK] = ACTIONS(5015), + [anon_sym_on] = ACTIONS(5015), + [anon_sym_equals] = ACTIONS(5015), + [anon_sym_by] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), + [anon_sym_with] = ACTIONS(5015), + [aux_sym_preproc_if_token3] = ACTIONS(5015), + [aux_sym_preproc_else_token1] = ACTIONS(5015), + [aux_sym_preproc_elif_token1] = ACTIONS(5015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506677,56 +506712,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3470), [sym_preproc_define] = STATE(3470), [sym_preproc_undef] = STATE(3470), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5228), - [anon_sym_RBRACK] = ACTIONS(5228), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_in] = ACTIONS(5228), - [anon_sym_QMARK] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_GT_GT_GT] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [anon_sym_GT_EQ] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5228), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_EQ_GT] = ACTIONS(5228), - [anon_sym_switch] = ACTIONS(5228), - [anon_sym_when] = ACTIONS(5228), - [anon_sym_DOT_DOT] = ACTIONS(5228), - [anon_sym_and] = ACTIONS(5228), - [anon_sym_or] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_QMARK_QMARK] = ACTIONS(5228), - [anon_sym_on] = ACTIONS(5228), - [anon_sym_equals] = ACTIONS(5228), - [anon_sym_by] = ACTIONS(5228), - [anon_sym_as] = ACTIONS(5228), - [anon_sym_is] = ACTIONS(5228), - [anon_sym_DASH_GT] = ACTIONS(5228), - [anon_sym_with] = ACTIONS(5228), - [aux_sym_preproc_if_token3] = ACTIONS(5228), - [aux_sym_preproc_else_token1] = ACTIONS(5228), - [aux_sym_preproc_elif_token1] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COLON] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_RPAREN] = ACTIONS(5437), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_in] = ACTIONS(5437), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_EQ_GT] = ACTIONS(5437), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_when] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_on] = ACTIONS(5437), + [anon_sym_equals] = ACTIONS(5437), + [anon_sym_by] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5437), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), + [aux_sym_preproc_if_token3] = ACTIONS(5437), + [aux_sym_preproc_else_token1] = ACTIONS(5437), + [aux_sym_preproc_elif_token1] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506739,26 +506774,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3471] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7662), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7387), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3471), [sym_preproc_endregion] = STATE(3471), [sym_preproc_line] = STATE(3471), @@ -506768,13 +506803,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3471), [sym_preproc_define] = STATE(3471), [sym_preproc_undef] = STATE(3471), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [aux_sym_function_pointer_type_repeat1] = STATE(3453), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -506782,7 +506817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -506819,56 +506854,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3472), [sym_preproc_define] = STATE(3472), [sym_preproc_undef] = STATE(3472), - [anon_sym_SEMI] = ACTIONS(5452), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_COLON] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_LPAREN] = ACTIONS(5452), - [anon_sym_RPAREN] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_LT] = ACTIONS(5454), - [anon_sym_GT] = ACTIONS(5454), - [anon_sym_in] = ACTIONS(5452), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(5454), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS] = ACTIONS(5454), - [anon_sym_DASH] = ACTIONS(5454), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5454), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5454), - [anon_sym_AMP] = ACTIONS(5454), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5454), - [anon_sym_GT_GT_GT] = ACTIONS(5452), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5454), - [anon_sym_EQ_GT] = ACTIONS(5452), - [anon_sym_switch] = ACTIONS(5452), - [anon_sym_when] = ACTIONS(5452), - [anon_sym_DOT_DOT] = ACTIONS(5452), - [anon_sym_and] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5452), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_QMARK_QMARK] = ACTIONS(5452), - [anon_sym_on] = ACTIONS(5452), - [anon_sym_equals] = ACTIONS(5452), - [anon_sym_by] = ACTIONS(5452), - [anon_sym_as] = ACTIONS(5452), - [anon_sym_is] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [anon_sym_with] = ACTIONS(5452), - [aux_sym_preproc_if_token3] = ACTIONS(5452), - [aux_sym_preproc_else_token1] = ACTIONS(5452), - [aux_sym_preproc_elif_token1] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506881,6 +506916,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3473] = { + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3473), [sym_preproc_endregion] = STATE(3473), [sym_preproc_line] = STATE(3473), @@ -506890,56 +506945,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3473), [sym_preproc_define] = STATE(3473), [sym_preproc_undef] = STATE(3473), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_in] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5260), - [anon_sym_BANG] = ACTIONS(5260), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_GT_GT_GT] = ACTIONS(5258), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_EQ_GT] = ACTIONS(5258), - [anon_sym_switch] = ACTIONS(5258), - [anon_sym_when] = ACTIONS(5258), - [anon_sym_DOT_DOT] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_QMARK_QMARK] = ACTIONS(5258), - [anon_sym_on] = ACTIONS(5258), - [anon_sym_equals] = ACTIONS(5258), - [anon_sym_by] = ACTIONS(5258), - [anon_sym_as] = ACTIONS(5258), - [anon_sym_is] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [anon_sym_with] = ACTIONS(5258), - [aux_sym_preproc_if_token3] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5258), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(5536), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506952,6 +506987,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3474] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7442), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3474), [sym_preproc_endregion] = STATE(3474), [sym_preproc_line] = STATE(3474), @@ -506961,56 +507016,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3474), [sym_preproc_define] = STATE(3474), [sym_preproc_undef] = STATE(3474), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5122), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_GT_GT_GT] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_EQ_GT] = ACTIONS(5122), - [anon_sym_switch] = ACTIONS(5122), - [anon_sym_when] = ACTIONS(5122), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_QMARK_QMARK] = ACTIONS(5122), - [anon_sym_on] = ACTIONS(5122), - [anon_sym_equals] = ACTIONS(5122), - [anon_sym_by] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5122), - [anon_sym_is] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [anon_sym_with] = ACTIONS(5122), - [aux_sym_preproc_if_token3] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5122), + [aux_sym_function_pointer_type_repeat1] = STATE(3476), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507032,56 +507067,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3475), [sym_preproc_define] = STATE(3475), [sym_preproc_undef] = STATE(3475), - [anon_sym_SEMI] = ACTIONS(5496), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_COMMA] = ACTIONS(5496), - [anon_sym_RBRACK] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5496), - [anon_sym_RPAREN] = ACTIONS(5496), - [anon_sym_RBRACE] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5498), - [anon_sym_in] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5498), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_PIPE] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5498), - [anon_sym_GT_GT_GT] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5496), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_EQ_GT] = ACTIONS(5496), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_when] = ACTIONS(5496), - [anon_sym_DOT_DOT] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_AMP_AMP] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5496), - [anon_sym_QMARK_QMARK] = ACTIONS(5496), - [anon_sym_on] = ACTIONS(5496), - [anon_sym_equals] = ACTIONS(5496), - [anon_sym_by] = ACTIONS(5496), - [anon_sym_as] = ACTIONS(5496), - [anon_sym_is] = ACTIONS(5496), - [anon_sym_DASH_GT] = ACTIONS(5496), - [anon_sym_with] = ACTIONS(5496), - [aux_sym_preproc_if_token3] = ACTIONS(5496), - [aux_sym_preproc_else_token1] = ACTIONS(5496), - [aux_sym_preproc_elif_token1] = ACTIONS(5496), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507094,6 +507129,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3476] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7518), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3476), [sym_preproc_endregion] = STATE(3476), [sym_preproc_line] = STATE(3476), @@ -507103,56 +507158,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3476), [sym_preproc_define] = STATE(3476), [sym_preproc_undef] = STATE(3476), - [anon_sym_EQ] = ACTIONS(5567), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5569), - [anon_sym_DASH_EQ] = ACTIONS(5569), - [anon_sym_STAR_EQ] = ACTIONS(5569), - [anon_sym_SLASH_EQ] = ACTIONS(5569), - [anon_sym_PERCENT_EQ] = ACTIONS(5569), - [anon_sym_AMP_EQ] = ACTIONS(5569), - [anon_sym_CARET_EQ] = ACTIONS(5569), - [anon_sym_PIPE_EQ] = ACTIONS(5569), - [anon_sym_LT_LT_EQ] = ACTIONS(5569), - [anon_sym_GT_GT_EQ] = ACTIONS(5569), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5569), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5569), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507165,6 +507200,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3477] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7518), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3477), [sym_preproc_endregion] = STATE(3477), [sym_preproc_line] = STATE(3477), @@ -507174,56 +507229,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3477), [sym_preproc_define] = STATE(3477), [sym_preproc_undef] = STATE(3477), - [anon_sym_SEMI] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(5428), - [anon_sym_COMMA] = ACTIONS(5428), - [anon_sym_RBRACK] = ACTIONS(5428), - [anon_sym_LPAREN] = ACTIONS(5428), - [anon_sym_RPAREN] = ACTIONS(5428), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_LT] = ACTIONS(5430), - [anon_sym_GT] = ACTIONS(5430), - [anon_sym_in] = ACTIONS(5428), - [anon_sym_QMARK] = ACTIONS(5430), - [anon_sym_BANG] = ACTIONS(5430), - [anon_sym_PLUS_PLUS] = ACTIONS(5428), - [anon_sym_DASH_DASH] = ACTIONS(5428), - [anon_sym_PLUS] = ACTIONS(5430), - [anon_sym_DASH] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5428), - [anon_sym_SLASH] = ACTIONS(5430), - [anon_sym_PERCENT] = ACTIONS(5428), - [anon_sym_CARET] = ACTIONS(5428), - [anon_sym_PIPE] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5430), - [anon_sym_LT_LT] = ACTIONS(5428), - [anon_sym_GT_GT] = ACTIONS(5430), - [anon_sym_GT_GT_GT] = ACTIONS(5428), - [anon_sym_EQ_EQ] = ACTIONS(5428), - [anon_sym_BANG_EQ] = ACTIONS(5428), - [anon_sym_GT_EQ] = ACTIONS(5428), - [anon_sym_LT_EQ] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_EQ_GT] = ACTIONS(5428), - [anon_sym_switch] = ACTIONS(5428), - [anon_sym_when] = ACTIONS(5428), - [anon_sym_DOT_DOT] = ACTIONS(5428), - [anon_sym_and] = ACTIONS(5428), - [anon_sym_or] = ACTIONS(5428), - [anon_sym_AMP_AMP] = ACTIONS(5428), - [anon_sym_PIPE_PIPE] = ACTIONS(5428), - [anon_sym_QMARK_QMARK] = ACTIONS(5428), - [anon_sym_on] = ACTIONS(5428), - [anon_sym_equals] = ACTIONS(5428), - [anon_sym_by] = ACTIONS(5428), - [anon_sym_as] = ACTIONS(5428), - [anon_sym_is] = ACTIONS(5428), - [anon_sym_DASH_GT] = ACTIONS(5428), - [anon_sym_with] = ACTIONS(5428), - [aux_sym_preproc_if_token3] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), + [aux_sym_function_pointer_type_repeat1] = STATE(3478), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507236,6 +507271,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3478] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7715), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3478), [sym_preproc_endregion] = STATE(3478), [sym_preproc_line] = STATE(3478), @@ -507245,56 +507300,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3478), [sym_preproc_define] = STATE(3478), [sym_preproc_undef] = STATE(3478), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_RBRACK] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_GT_GT_GT] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_EQ_GT] = ACTIONS(4983), - [anon_sym_switch] = ACTIONS(4983), - [anon_sym_when] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_and] = ACTIONS(4983), - [anon_sym_or] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_QMARK_QMARK] = ACTIONS(4983), - [anon_sym_on] = ACTIONS(4983), - [anon_sym_equals] = ACTIONS(4983), - [anon_sym_by] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(4983), - [anon_sym_with] = ACTIONS(4983), - [aux_sym_preproc_if_token3] = ACTIONS(4983), - [aux_sym_preproc_else_token1] = ACTIONS(4983), - [aux_sym_preproc_elif_token1] = ACTIONS(4983), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507316,56 +507351,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3479), [sym_preproc_define] = STATE(3479), [sym_preproc_undef] = STATE(3479), - [anon_sym_SEMI] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_COLON] = ACTIONS(5432), - [anon_sym_COMMA] = ACTIONS(5432), - [anon_sym_RBRACK] = ACTIONS(5432), - [anon_sym_LPAREN] = ACTIONS(5432), - [anon_sym_RPAREN] = ACTIONS(5432), - [anon_sym_RBRACE] = ACTIONS(5432), - [anon_sym_LT] = ACTIONS(5434), - [anon_sym_GT] = ACTIONS(5434), - [anon_sym_in] = ACTIONS(5432), - [anon_sym_QMARK] = ACTIONS(5434), - [anon_sym_BANG] = ACTIONS(5434), - [anon_sym_PLUS_PLUS] = ACTIONS(5432), - [anon_sym_DASH_DASH] = ACTIONS(5432), - [anon_sym_PLUS] = ACTIONS(5434), - [anon_sym_DASH] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5432), - [anon_sym_SLASH] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(5432), - [anon_sym_CARET] = ACTIONS(5432), - [anon_sym_PIPE] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5434), - [anon_sym_LT_LT] = ACTIONS(5432), - [anon_sym_GT_GT] = ACTIONS(5434), - [anon_sym_GT_GT_GT] = ACTIONS(5432), - [anon_sym_EQ_EQ] = ACTIONS(5432), - [anon_sym_BANG_EQ] = ACTIONS(5432), - [anon_sym_GT_EQ] = ACTIONS(5432), - [anon_sym_LT_EQ] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5434), - [anon_sym_EQ_GT] = ACTIONS(5432), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_when] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5432), - [anon_sym_and] = ACTIONS(5432), - [anon_sym_or] = ACTIONS(5432), - [anon_sym_AMP_AMP] = ACTIONS(5432), - [anon_sym_PIPE_PIPE] = ACTIONS(5432), - [anon_sym_QMARK_QMARK] = ACTIONS(5432), - [anon_sym_on] = ACTIONS(5432), - [anon_sym_equals] = ACTIONS(5432), - [anon_sym_by] = ACTIONS(5432), - [anon_sym_as] = ACTIONS(5432), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(5432), - [anon_sym_with] = ACTIONS(5432), - [aux_sym_preproc_if_token3] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_COLON] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_in] = ACTIONS(5203), + [anon_sym_QMARK] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PLUS_PLUS] = ACTIONS(5203), + [anon_sym_DASH_DASH] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5203), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_CARET] = ACTIONS(5203), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_AMP] = ACTIONS(5205), + [anon_sym_LT_LT] = ACTIONS(5203), + [anon_sym_GT_GT] = ACTIONS(5205), + [anon_sym_GT_GT_GT] = ACTIONS(5203), + [anon_sym_EQ_EQ] = ACTIONS(5203), + [anon_sym_BANG_EQ] = ACTIONS(5203), + [anon_sym_GT_EQ] = ACTIONS(5203), + [anon_sym_LT_EQ] = ACTIONS(5203), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_EQ_GT] = ACTIONS(5203), + [anon_sym_switch] = ACTIONS(5203), + [anon_sym_when] = ACTIONS(5203), + [anon_sym_DOT_DOT] = ACTIONS(5203), + [anon_sym_and] = ACTIONS(5203), + [anon_sym_or] = ACTIONS(5203), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_QMARK_QMARK] = ACTIONS(5203), + [anon_sym_on] = ACTIONS(5203), + [anon_sym_equals] = ACTIONS(5203), + [anon_sym_by] = ACTIONS(5203), + [anon_sym_as] = ACTIONS(5203), + [anon_sym_is] = ACTIONS(5203), + [anon_sym_DASH_GT] = ACTIONS(5203), + [anon_sym_with] = ACTIONS(5203), + [aux_sym_preproc_if_token3] = ACTIONS(5203), + [aux_sym_preproc_else_token1] = ACTIONS(5203), + [aux_sym_preproc_elif_token1] = ACTIONS(5203), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507387,56 +507422,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3480), [sym_preproc_define] = STATE(3480), [sym_preproc_undef] = STATE(3480), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COLON] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_RBRACK] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_in] = ACTIONS(3840), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_EQ_GT] = ACTIONS(3840), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_when] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_on] = ACTIONS(3840), - [anon_sym_equals] = ACTIONS(3840), - [anon_sym_by] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(3840), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), - [aux_sym_preproc_if_token3] = ACTIONS(3840), - [aux_sym_preproc_else_token1] = ACTIONS(3840), - [aux_sym_preproc_elif_token1] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5540), + [anon_sym_DASH_EQ] = ACTIONS(5540), + [anon_sym_STAR_EQ] = ACTIONS(5540), + [anon_sym_SLASH_EQ] = ACTIONS(5540), + [anon_sym_PERCENT_EQ] = ACTIONS(5540), + [anon_sym_AMP_EQ] = ACTIONS(5540), + [anon_sym_CARET_EQ] = ACTIONS(5540), + [anon_sym_PIPE_EQ] = ACTIONS(5540), + [anon_sym_LT_LT_EQ] = ACTIONS(5540), + [anon_sym_GT_GT_EQ] = ACTIONS(5540), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5540), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5540), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507447,6 +507481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4898), }, [3481] = { [sym_preproc_region] = STATE(3481), @@ -507458,56 +507493,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3481), [sym_preproc_define] = STATE(3481), [sym_preproc_undef] = STATE(3481), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_RBRACK] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_GT_GT] = ACTIONS(4989), - [anon_sym_GT_GT_GT] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_EQ_GT] = ACTIONS(4987), - [anon_sym_switch] = ACTIONS(4987), - [anon_sym_when] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_and] = ACTIONS(4987), - [anon_sym_or] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_QMARK_QMARK] = ACTIONS(4987), - [anon_sym_on] = ACTIONS(4987), - [anon_sym_equals] = ACTIONS(4987), - [anon_sym_by] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4987), - [anon_sym_with] = ACTIONS(4987), - [aux_sym_preproc_if_token3] = ACTIONS(4987), - [aux_sym_preproc_else_token1] = ACTIONS(4987), - [aux_sym_preproc_elif_token1] = ACTIONS(4987), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_add] = ACTIONS(3494), + [anon_sym_remove] = ACTIONS(3494), + [anon_sym_init] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507520,26 +507555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3482] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3482), [sym_preproc_endregion] = STATE(3482), [sym_preproc_line] = STATE(3482), @@ -507549,36 +507564,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3482), [sym_preproc_define] = STATE(3482), [sym_preproc_undef] = STATE(3482), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5571), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(5473), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(5542), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_when] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_and] = ACTIONS(4024), + [anon_sym_or] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507600,56 +507635,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3483), [sym_preproc_define] = STATE(3483), [sym_preproc_undef] = STATE(3483), - [sym__identifier_token] = ACTIONS(5573), - [anon_sym_extern] = ACTIONS(5573), - [anon_sym_alias] = ACTIONS(5573), - [anon_sym_global] = ACTIONS(5573), - [anon_sym_unsafe] = ACTIONS(5573), - [anon_sym_static] = ACTIONS(5573), - [anon_sym_LBRACK] = ACTIONS(5575), - [anon_sym_RBRACE] = ACTIONS(5575), - [anon_sym_abstract] = ACTIONS(5573), - [anon_sym_async] = ACTIONS(5573), - [anon_sym_const] = ACTIONS(5573), - [anon_sym_file] = ACTIONS(5573), - [anon_sym_fixed] = ACTIONS(5573), - [anon_sym_internal] = ACTIONS(5573), - [anon_sym_new] = ACTIONS(5573), - [anon_sym_override] = ACTIONS(5573), - [anon_sym_partial] = ACTIONS(5573), - [anon_sym_private] = ACTIONS(5573), - [anon_sym_protected] = ACTIONS(5573), - [anon_sym_public] = ACTIONS(5573), - [anon_sym_readonly] = ACTIONS(5573), - [anon_sym_required] = ACTIONS(5573), - [anon_sym_sealed] = ACTIONS(5573), - [anon_sym_virtual] = ACTIONS(5573), - [anon_sym_volatile] = ACTIONS(5573), - [anon_sym_where] = ACTIONS(5573), - [anon_sym_notnull] = ACTIONS(5573), - [anon_sym_unmanaged] = ACTIONS(5573), - [anon_sym_get] = ACTIONS(5573), - [anon_sym_set] = ACTIONS(5573), - [anon_sym_add] = ACTIONS(5573), - [anon_sym_remove] = ACTIONS(5573), - [anon_sym_init] = ACTIONS(5573), - [anon_sym_scoped] = ACTIONS(5573), - [anon_sym_var] = ACTIONS(5573), - [anon_sym_yield] = ACTIONS(5573), - [anon_sym_when] = ACTIONS(5573), - [anon_sym_from] = ACTIONS(5573), - [anon_sym_into] = ACTIONS(5573), - [anon_sym_join] = ACTIONS(5573), - [anon_sym_on] = ACTIONS(5573), - [anon_sym_equals] = ACTIONS(5573), - [anon_sym_let] = ACTIONS(5573), - [anon_sym_orderby] = ACTIONS(5573), - [anon_sym_ascending] = ACTIONS(5573), - [anon_sym_descending] = ACTIONS(5573), - [anon_sym_group] = ACTIONS(5573), - [anon_sym_by] = ACTIONS(5573), - [anon_sym_select] = ACTIONS(5573), - [aux_sym_preproc_if_token1] = ACTIONS(5575), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(5542), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_when] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_and] = ACTIONS(4028), + [anon_sym_or] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507671,56 +507706,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3484), [sym_preproc_define] = STATE(3484), [sym_preproc_undef] = STATE(3484), - [sym__identifier_token] = ACTIONS(5577), - [anon_sym_extern] = ACTIONS(5577), - [anon_sym_alias] = ACTIONS(5577), - [anon_sym_global] = ACTIONS(5577), - [anon_sym_unsafe] = ACTIONS(5577), - [anon_sym_static] = ACTIONS(5577), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_RBRACE] = ACTIONS(5579), - [anon_sym_abstract] = ACTIONS(5577), - [anon_sym_async] = ACTIONS(5577), - [anon_sym_const] = ACTIONS(5577), - [anon_sym_file] = ACTIONS(5577), - [anon_sym_fixed] = ACTIONS(5577), - [anon_sym_internal] = ACTIONS(5577), - [anon_sym_new] = ACTIONS(5577), - [anon_sym_override] = ACTIONS(5577), - [anon_sym_partial] = ACTIONS(5577), - [anon_sym_private] = ACTIONS(5577), - [anon_sym_protected] = ACTIONS(5577), - [anon_sym_public] = ACTIONS(5577), - [anon_sym_readonly] = ACTIONS(5577), - [anon_sym_required] = ACTIONS(5577), - [anon_sym_sealed] = ACTIONS(5577), - [anon_sym_virtual] = ACTIONS(5577), - [anon_sym_volatile] = ACTIONS(5577), - [anon_sym_where] = ACTIONS(5577), - [anon_sym_notnull] = ACTIONS(5577), - [anon_sym_unmanaged] = ACTIONS(5577), - [anon_sym_get] = ACTIONS(5577), - [anon_sym_set] = ACTIONS(5577), - [anon_sym_add] = ACTIONS(5577), - [anon_sym_remove] = ACTIONS(5577), - [anon_sym_init] = ACTIONS(5577), - [anon_sym_scoped] = ACTIONS(5577), - [anon_sym_var] = ACTIONS(5577), - [anon_sym_yield] = ACTIONS(5577), - [anon_sym_when] = ACTIONS(5577), - [anon_sym_from] = ACTIONS(5577), - [anon_sym_into] = ACTIONS(5577), - [anon_sym_join] = ACTIONS(5577), - [anon_sym_on] = ACTIONS(5577), - [anon_sym_equals] = ACTIONS(5577), - [anon_sym_let] = ACTIONS(5577), - [anon_sym_orderby] = ACTIONS(5577), - [anon_sym_ascending] = ACTIONS(5577), - [anon_sym_descending] = ACTIONS(5577), - [anon_sym_group] = ACTIONS(5577), - [anon_sym_by] = ACTIONS(5577), - [anon_sym_select] = ACTIONS(5577), - [aux_sym_preproc_if_token1] = ACTIONS(5579), + [sym__identifier_token] = ACTIONS(5544), + [anon_sym_extern] = ACTIONS(5544), + [anon_sym_alias] = ACTIONS(5544), + [anon_sym_global] = ACTIONS(5544), + [anon_sym_unsafe] = ACTIONS(5544), + [anon_sym_static] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_abstract] = ACTIONS(5544), + [anon_sym_async] = ACTIONS(5544), + [anon_sym_const] = ACTIONS(5544), + [anon_sym_file] = ACTIONS(5544), + [anon_sym_fixed] = ACTIONS(5544), + [anon_sym_internal] = ACTIONS(5544), + [anon_sym_new] = ACTIONS(5544), + [anon_sym_override] = ACTIONS(5544), + [anon_sym_partial] = ACTIONS(5544), + [anon_sym_private] = ACTIONS(5544), + [anon_sym_protected] = ACTIONS(5544), + [anon_sym_public] = ACTIONS(5544), + [anon_sym_readonly] = ACTIONS(5544), + [anon_sym_required] = ACTIONS(5544), + [anon_sym_sealed] = ACTIONS(5544), + [anon_sym_virtual] = ACTIONS(5544), + [anon_sym_volatile] = ACTIONS(5544), + [anon_sym_where] = ACTIONS(5544), + [anon_sym_notnull] = ACTIONS(5544), + [anon_sym_unmanaged] = ACTIONS(5544), + [anon_sym_get] = ACTIONS(5544), + [anon_sym_set] = ACTIONS(5544), + [anon_sym_add] = ACTIONS(5544), + [anon_sym_remove] = ACTIONS(5544), + [anon_sym_init] = ACTIONS(5544), + [anon_sym_scoped] = ACTIONS(5544), + [anon_sym_var] = ACTIONS(5544), + [anon_sym_yield] = ACTIONS(5544), + [anon_sym_when] = ACTIONS(5544), + [anon_sym_from] = ACTIONS(5544), + [anon_sym_into] = ACTIONS(5544), + [anon_sym_join] = ACTIONS(5544), + [anon_sym_on] = ACTIONS(5544), + [anon_sym_equals] = ACTIONS(5544), + [anon_sym_let] = ACTIONS(5544), + [anon_sym_orderby] = ACTIONS(5544), + [anon_sym_ascending] = ACTIONS(5544), + [anon_sym_descending] = ACTIONS(5544), + [anon_sym_group] = ACTIONS(5544), + [anon_sym_by] = ACTIONS(5544), + [anon_sym_select] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5546), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507733,26 +507768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3485] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7727), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3485), [sym_preproc_endregion] = STATE(3485), [sym_preproc_line] = STATE(3485), @@ -507762,36 +507777,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3485), [sym_preproc_define] = STATE(3485), [sym_preproc_undef] = STATE(3485), - [aux_sym_function_pointer_type_repeat1] = STATE(3486), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_COLON] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5207), + [anon_sym_QMARK] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_CARET] = ACTIONS(5207), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5209), + [anon_sym_LT_LT] = ACTIONS(5207), + [anon_sym_GT_GT] = ACTIONS(5209), + [anon_sym_GT_GT_GT] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_EQ_GT] = ACTIONS(5207), + [anon_sym_switch] = ACTIONS(5207), + [anon_sym_when] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_and] = ACTIONS(5207), + [anon_sym_or] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_QMARK_QMARK] = ACTIONS(5207), + [anon_sym_on] = ACTIONS(5207), + [anon_sym_equals] = ACTIONS(5207), + [anon_sym_by] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_with] = ACTIONS(5207), + [aux_sym_preproc_if_token3] = ACTIONS(5207), + [aux_sym_preproc_else_token1] = ACTIONS(5207), + [aux_sym_preproc_elif_token1] = ACTIONS(5207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507804,26 +507839,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3486] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7479), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_type_parameter_constraint] = STATE(6516), + [sym_constructor_constraint] = STATE(6678), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6523), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3486), [sym_preproc_endregion] = STATE(3486), [sym_preproc_line] = STATE(3486), @@ -507833,22 +507868,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3486), [sym_preproc_define] = STATE(3486), [sym_preproc_undef] = STATE(3486), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_class] = ACTIONS(5548), + [anon_sym_ref] = ACTIONS(5550), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), + [anon_sym_new] = ACTIONS(5554), [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), + [anon_sym_notnull] = ACTIONS(5556), + [anon_sym_unmanaged] = ACTIONS(5556), + [anon_sym_scoped] = ACTIONS(5558), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -507875,26 +507910,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3487] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7479), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3487), [sym_preproc_endregion] = STATE(3487), [sym_preproc_line] = STATE(3487), @@ -507904,22 +507939,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3487), [sym_preproc_define] = STATE(3487), [sym_preproc_undef] = STATE(3487), - [aux_sym_function_pointer_type_repeat1] = STATE(3557), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(5560), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -507955,56 +507990,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3488), [sym_preproc_define] = STATE(3488), [sym_preproc_undef] = STATE(3488), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(5581), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_in] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_when] = ACTIONS(1977), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_and] = ACTIONS(1977), - [anon_sym_or] = ACTIONS(1977), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), - [anon_sym_on] = ACTIONS(1977), - [anon_sym_equals] = ACTIONS(1977), - [anon_sym_by] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_is] = ACTIONS(1977), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), - [aux_sym_preproc_if_token3] = ACTIONS(1977), - [aux_sym_preproc_else_token1] = ACTIONS(1977), - [aux_sym_preproc_elif_token1] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5195), + [anon_sym_QMARK] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_CARET] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5197), + [anon_sym_LT_LT] = ACTIONS(5195), + [anon_sym_GT_GT] = ACTIONS(5197), + [anon_sym_GT_GT_GT] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_EQ_GT] = ACTIONS(5195), + [anon_sym_switch] = ACTIONS(5195), + [anon_sym_when] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_and] = ACTIONS(5195), + [anon_sym_or] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_QMARK_QMARK] = ACTIONS(5195), + [anon_sym_on] = ACTIONS(5195), + [anon_sym_equals] = ACTIONS(5195), + [anon_sym_by] = ACTIONS(5195), + [anon_sym_as] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), + [anon_sym_with] = ACTIONS(5195), + [aux_sym_preproc_if_token3] = ACTIONS(5195), + [aux_sym_preproc_else_token1] = ACTIONS(5195), + [aux_sym_preproc_elif_token1] = ACTIONS(5195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508017,6 +508052,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3489] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7517), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3489), [sym_preproc_endregion] = STATE(3489), [sym_preproc_line] = STATE(3489), @@ -508026,56 +508081,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3489), [sym_preproc_define] = STATE(3489), [sym_preproc_undef] = STATE(3489), - [anon_sym_SEMI] = ACTIONS(5456), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_COMMA] = ACTIONS(5456), - [anon_sym_RBRACK] = ACTIONS(5456), - [anon_sym_LPAREN] = ACTIONS(5456), - [anon_sym_RPAREN] = ACTIONS(5456), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5458), - [anon_sym_in] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_BANG] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_PIPE] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5458), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5458), - [anon_sym_GT_GT_GT] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5456), - [anon_sym_BANG_EQ] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5456), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_DOT] = ACTIONS(5458), - [anon_sym_EQ_GT] = ACTIONS(5456), - [anon_sym_switch] = ACTIONS(5456), - [anon_sym_when] = ACTIONS(5456), - [anon_sym_DOT_DOT] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_AMP_AMP] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5456), - [anon_sym_QMARK_QMARK] = ACTIONS(5456), - [anon_sym_on] = ACTIONS(5456), - [anon_sym_equals] = ACTIONS(5456), - [anon_sym_by] = ACTIONS(5456), - [anon_sym_as] = ACTIONS(5456), - [anon_sym_is] = ACTIONS(5456), - [anon_sym_DASH_GT] = ACTIONS(5456), - [anon_sym_with] = ACTIONS(5456), - [aux_sym_preproc_if_token3] = ACTIONS(5456), - [aux_sym_preproc_else_token1] = ACTIONS(5456), - [aux_sym_preproc_elif_token1] = ACTIONS(5456), + [aux_sym_function_pointer_type_repeat1] = STATE(3490), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508088,26 +508123,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3490] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7582), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3490), [sym_preproc_endregion] = STATE(3490), [sym_preproc_line] = STATE(3490), @@ -508117,22 +508152,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3490), [sym_preproc_define] = STATE(3490), [sym_preproc_undef] = STATE(3490), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5583), - [anon_sym_async] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -508159,6 +508194,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3491] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7582), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3491), [sym_preproc_endregion] = STATE(3491), [sym_preproc_line] = STATE(3491), @@ -508168,56 +508223,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3491), [sym_preproc_define] = STATE(3491), [sym_preproc_undef] = STATE(3491), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5003), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_GT_GT_GT] = ACTIONS(5003), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5003), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5003), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_QMARK_QMARK] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [anon_sym_with] = ACTIONS(5003), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [aux_sym_function_pointer_type_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508230,6 +508265,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3492] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7632), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3492), [sym_preproc_endregion] = STATE(3492), [sym_preproc_line] = STATE(3492), @@ -508239,104 +508294,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3492), [sym_preproc_define] = STATE(3492), [sym_preproc_undef] = STATE(3492), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_RBRACK] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_PLUS_PLUS] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_LT_LT] = ACTIONS(5007), - [anon_sym_GT_GT] = ACTIONS(5009), - [anon_sym_GT_GT_GT] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(5007), - [anon_sym_BANG_EQ] = ACTIONS(5007), - [anon_sym_GT_EQ] = ACTIONS(5007), - [anon_sym_LT_EQ] = ACTIONS(5007), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_EQ_GT] = ACTIONS(5007), - [anon_sym_switch] = ACTIONS(5007), - [anon_sym_when] = ACTIONS(5007), - [anon_sym_DOT_DOT] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_or] = ACTIONS(5007), - [anon_sym_AMP_AMP] = ACTIONS(5007), - [anon_sym_PIPE_PIPE] = ACTIONS(5007), - [anon_sym_QMARK_QMARK] = ACTIONS(5007), - [anon_sym_on] = ACTIONS(5007), - [anon_sym_equals] = ACTIONS(5007), - [anon_sym_by] = ACTIONS(5007), - [anon_sym_as] = ACTIONS(5007), - [anon_sym_is] = ACTIONS(5007), - [anon_sym_DASH_GT] = ACTIONS(5007), - [anon_sym_with] = ACTIONS(5007), - [aux_sym_preproc_if_token3] = ACTIONS(5007), - [aux_sym_preproc_else_token1] = ACTIONS(5007), - [aux_sym_preproc_elif_token1] = ACTIONS(5007), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3493] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7488), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3493), - [sym_preproc_endregion] = STATE(3493), - [sym_preproc_line] = STATE(3493), - [sym_preproc_pragma] = STATE(3493), - [sym_preproc_nullable] = STATE(3493), - [sym_preproc_error] = STATE(3493), - [sym_preproc_warning] = STATE(3493), - [sym_preproc_define] = STATE(3493), - [sym_preproc_undef] = STATE(3493), - [aux_sym_function_pointer_type_repeat1] = STATE(3494), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -508344,7 +508308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -508371,27 +508335,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3493] = { + [sym_preproc_region] = STATE(3493), + [sym_preproc_endregion] = STATE(3493), + [sym_preproc_line] = STATE(3493), + [sym_preproc_pragma] = STATE(3493), + [sym_preproc_nullable] = STATE(3493), + [sym_preproc_error] = STATE(3493), + [sym_preproc_warning] = STATE(3493), + [sym_preproc_define] = STATE(3493), + [sym_preproc_undef] = STATE(3493), + [anon_sym_SEMI] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_COLON] = ACTIONS(5484), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_RBRACK] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_RPAREN] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5486), + [anon_sym_in] = ACTIONS(5484), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_BANG] = ACTIONS(5486), + [anon_sym_PLUS_PLUS] = ACTIONS(5484), + [anon_sym_DASH_DASH] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5486), + [anon_sym_PERCENT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5484), + [anon_sym_PIPE] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_GT_GT_GT] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5484), + [anon_sym_BANG_EQ] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5486), + [anon_sym_EQ_GT] = ACTIONS(5484), + [anon_sym_switch] = ACTIONS(5484), + [anon_sym_when] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_AMP_AMP] = ACTIONS(5484), + [anon_sym_PIPE_PIPE] = ACTIONS(5484), + [anon_sym_QMARK_QMARK] = ACTIONS(5484), + [anon_sym_on] = ACTIONS(5484), + [anon_sym_equals] = ACTIONS(5484), + [anon_sym_by] = ACTIONS(5484), + [anon_sym_as] = ACTIONS(5484), + [anon_sym_is] = ACTIONS(5484), + [anon_sym_DASH_GT] = ACTIONS(5484), + [anon_sym_with] = ACTIONS(5484), + [aux_sym_preproc_if_token3] = ACTIONS(5484), + [aux_sym_preproc_else_token1] = ACTIONS(5484), + [aux_sym_preproc_elif_token1] = ACTIONS(5484), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3494] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7580), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3494), [sym_preproc_endregion] = STATE(3494), [sym_preproc_line] = STATE(3494), @@ -508401,36 +508416,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3494), [sym_preproc_define] = STATE(3494), [sym_preproc_undef] = STATE(3494), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5564), + [anon_sym_DASH_EQ] = ACTIONS(5564), + [anon_sym_STAR_EQ] = ACTIONS(5564), + [anon_sym_SLASH_EQ] = ACTIONS(5564), + [anon_sym_PERCENT_EQ] = ACTIONS(5564), + [anon_sym_AMP_EQ] = ACTIONS(5564), + [anon_sym_CARET_EQ] = ACTIONS(5564), + [anon_sym_PIPE_EQ] = ACTIONS(5564), + [anon_sym_LT_LT_EQ] = ACTIONS(5564), + [anon_sym_GT_GT_EQ] = ACTIONS(5564), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5564), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5564), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508443,26 +508478,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3495] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7580), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3495), [sym_preproc_endregion] = STATE(3495), [sym_preproc_line] = STATE(3495), @@ -508472,22 +508507,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3495), [sym_preproc_define] = STATE(3495), [sym_preproc_undef] = STATE(3495), - [aux_sym_function_pointer_type_repeat1] = STATE(3497), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(5566), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -508523,56 +508558,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3496), [sym_preproc_define] = STATE(3496), [sym_preproc_undef] = STATE(3496), - [anon_sym_SEMI] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [anon_sym_COLON] = ACTIONS(5436), - [anon_sym_COMMA] = ACTIONS(5436), - [anon_sym_RBRACK] = ACTIONS(5436), - [anon_sym_LPAREN] = ACTIONS(5436), - [anon_sym_RPAREN] = ACTIONS(5436), - [anon_sym_RBRACE] = ACTIONS(5436), - [anon_sym_LT] = ACTIONS(5438), - [anon_sym_GT] = ACTIONS(5438), - [anon_sym_in] = ACTIONS(5436), - [anon_sym_QMARK] = ACTIONS(5438), - [anon_sym_BANG] = ACTIONS(5438), - [anon_sym_PLUS_PLUS] = ACTIONS(5436), - [anon_sym_DASH_DASH] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5438), - [anon_sym_STAR] = ACTIONS(5436), - [anon_sym_SLASH] = ACTIONS(5438), - [anon_sym_PERCENT] = ACTIONS(5436), - [anon_sym_CARET] = ACTIONS(5436), - [anon_sym_PIPE] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5438), - [anon_sym_LT_LT] = ACTIONS(5436), - [anon_sym_GT_GT] = ACTIONS(5438), - [anon_sym_GT_GT_GT] = ACTIONS(5436), - [anon_sym_EQ_EQ] = ACTIONS(5436), - [anon_sym_BANG_EQ] = ACTIONS(5436), - [anon_sym_GT_EQ] = ACTIONS(5436), - [anon_sym_LT_EQ] = ACTIONS(5436), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_EQ_GT] = ACTIONS(5436), - [anon_sym_switch] = ACTIONS(5436), - [anon_sym_when] = ACTIONS(5436), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_and] = ACTIONS(5436), - [anon_sym_or] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(5436), - [anon_sym_PIPE_PIPE] = ACTIONS(5436), - [anon_sym_QMARK_QMARK] = ACTIONS(5436), - [anon_sym_on] = ACTIONS(5436), - [anon_sym_equals] = ACTIONS(5436), - [anon_sym_by] = ACTIONS(5436), - [anon_sym_as] = ACTIONS(5436), - [anon_sym_is] = ACTIONS(5436), - [anon_sym_DASH_GT] = ACTIONS(5436), - [anon_sym_with] = ACTIONS(5436), - [aux_sym_preproc_if_token3] = ACTIONS(5436), - [aux_sym_preproc_else_token1] = ACTIONS(5436), - [aux_sym_preproc_elif_token1] = ACTIONS(5436), + [sym__identifier_token] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_alias] = ACTIONS(2977), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_file] = ACTIONS(2977), + [anon_sym_fixed] = ACTIONS(2977), + [anon_sym_internal] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_partial] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_protected] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_required] = ACTIONS(2977), + [anon_sym_sealed] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2977), + [anon_sym_notnull] = ACTIONS(2977), + [anon_sym_unmanaged] = ACTIONS(2977), + [anon_sym_get] = ACTIONS(2977), + [anon_sym_set] = ACTIONS(2977), + [anon_sym_add] = ACTIONS(2977), + [anon_sym_remove] = ACTIONS(2977), + [anon_sym_init] = ACTIONS(2977), + [anon_sym_scoped] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_when] = ACTIONS(2977), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_into] = ACTIONS(2977), + [anon_sym_join] = ACTIONS(2977), + [anon_sym_on] = ACTIONS(2977), + [anon_sym_equals] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_orderby] = ACTIONS(2977), + [anon_sym_ascending] = ACTIONS(2977), + [anon_sym_descending] = ACTIONS(2977), + [anon_sym_group] = ACTIONS(2977), + [anon_sym_by] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508585,26 +508620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3497] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7674), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3497), [sym_preproc_endregion] = STATE(3497), [sym_preproc_line] = STATE(3497), @@ -508614,13 +508629,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3497), [sym_preproc_define] = STATE(3497), [sym_preproc_undef] = STATE(3497), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [sym__identifier_token] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_global] = ACTIONS(3165), + [anon_sym_unsafe] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_file] = ACTIONS(3165), + [anon_sym_fixed] = ACTIONS(3165), + [anon_sym_internal] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_partial] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_readonly] = ACTIONS(3165), + [anon_sym_required] = ACTIONS(3165), + [anon_sym_sealed] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_notnull] = ACTIONS(3165), + [anon_sym_unmanaged] = ACTIONS(3165), + [anon_sym_get] = ACTIONS(3165), + [anon_sym_set] = ACTIONS(3165), + [anon_sym_add] = ACTIONS(3165), + [anon_sym_remove] = ACTIONS(3165), + [anon_sym_init] = ACTIONS(3165), + [anon_sym_scoped] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3165), + [anon_sym_when] = ACTIONS(3165), + [anon_sym_from] = ACTIONS(3165), + [anon_sym_into] = ACTIONS(3165), + [anon_sym_join] = ACTIONS(3165), + [anon_sym_on] = ACTIONS(3165), + [anon_sym_equals] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_orderby] = ACTIONS(3165), + [anon_sym_ascending] = ACTIONS(3165), + [anon_sym_descending] = ACTIONS(3165), + [anon_sym_group] = ACTIONS(3165), + [anon_sym_by] = ACTIONS(3165), + [anon_sym_select] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3498] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7494), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(3498), + [sym_preproc_endregion] = STATE(3498), + [sym_preproc_line] = STATE(3498), + [sym_preproc_pragma] = STATE(3498), + [sym_preproc_nullable] = STATE(3498), + [sym_preproc_error] = STATE(3498), + [sym_preproc_warning] = STATE(3498), + [sym_preproc_define] = STATE(3498), + [sym_preproc_undef] = STATE(3498), + [aux_sym_function_pointer_type_repeat1] = STATE(3499), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -508628,7 +508734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -508655,78 +508761,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3498] = { - [sym_preproc_region] = STATE(3498), - [sym_preproc_endregion] = STATE(3498), - [sym_preproc_line] = STATE(3498), - [sym_preproc_pragma] = STATE(3498), - [sym_preproc_nullable] = STATE(3498), - [sym_preproc_error] = STATE(3498), - [sym_preproc_warning] = STATE(3498), - [sym_preproc_define] = STATE(3498), - [sym_preproc_undef] = STATE(3498), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_CARET] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_LT_LT] = ACTIONS(5035), - [anon_sym_GT_GT] = ACTIONS(5037), - [anon_sym_GT_GT_GT] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_EQ_GT] = ACTIONS(5035), - [anon_sym_switch] = ACTIONS(5035), - [anon_sym_when] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_and] = ACTIONS(5035), - [anon_sym_or] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_QMARK_QMARK] = ACTIONS(5035), - [anon_sym_on] = ACTIONS(5035), - [anon_sym_equals] = ACTIONS(5035), - [anon_sym_by] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_DASH_GT] = ACTIONS(5035), - [anon_sym_with] = ACTIONS(5035), - [aux_sym_preproc_if_token3] = ACTIONS(5035), - [aux_sym_preproc_else_token1] = ACTIONS(5035), - [aux_sym_preproc_elif_token1] = ACTIONS(5035), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3499] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7421), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3499), [sym_preproc_endregion] = STATE(3499), [sym_preproc_line] = STATE(3499), @@ -508736,56 +508791,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3499), [sym_preproc_define] = STATE(3499), [sym_preproc_undef] = STATE(3499), - [anon_sym_EQ] = ACTIONS(5585), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5587), - [anon_sym_DASH_EQ] = ACTIONS(5587), - [anon_sym_STAR_EQ] = ACTIONS(5587), - [anon_sym_SLASH_EQ] = ACTIONS(5587), - [anon_sym_PERCENT_EQ] = ACTIONS(5587), - [anon_sym_AMP_EQ] = ACTIONS(5587), - [anon_sym_CARET_EQ] = ACTIONS(5587), - [anon_sym_PIPE_EQ] = ACTIONS(5587), - [anon_sym_LT_LT_EQ] = ACTIONS(5587), - [anon_sym_GT_GT_EQ] = ACTIONS(5587), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5587), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5587), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508798,6 +508833,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3500] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7421), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3500), [sym_preproc_endregion] = STATE(3500), [sym_preproc_line] = STATE(3500), @@ -508807,56 +508862,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3500), [sym_preproc_define] = STATE(3500), [sym_preproc_undef] = STATE(3500), - [anon_sym_EQ] = ACTIONS(5589), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5591), - [anon_sym_DASH_EQ] = ACTIONS(5591), - [anon_sym_STAR_EQ] = ACTIONS(5591), - [anon_sym_SLASH_EQ] = ACTIONS(5591), - [anon_sym_PERCENT_EQ] = ACTIONS(5591), - [anon_sym_AMP_EQ] = ACTIONS(5591), - [anon_sym_CARET_EQ] = ACTIONS(5591), - [anon_sym_PIPE_EQ] = ACTIONS(5591), - [anon_sym_LT_LT_EQ] = ACTIONS(5591), - [anon_sym_GT_GT_EQ] = ACTIONS(5591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5591), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5591), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508869,6 +508904,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3501] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7552), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3501), [sym_preproc_endregion] = STATE(3501), [sym_preproc_line] = STATE(3501), @@ -508878,56 +508933,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3501), [sym_preproc_define] = STATE(3501), [sym_preproc_undef] = STATE(3501), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COLON] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_RBRACK] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_RPAREN] = ACTIONS(3840), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_in] = ACTIONS(3840), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_when] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_on] = ACTIONS(3840), - [anon_sym_equals] = ACTIONS(3840), - [anon_sym_by] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(3840), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), - [aux_sym_preproc_if_token3] = ACTIONS(3840), - [aux_sym_preproc_else_token1] = ACTIONS(3840), - [aux_sym_preproc_elif_token1] = ACTIONS(3840), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508949,56 +508984,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3502), [sym_preproc_define] = STATE(3502), [sym_preproc_undef] = STATE(3502), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5057), - [anon_sym_GT_GT_GT] = ACTIONS(5055), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_GT_EQ] = ACTIONS(5055), - [anon_sym_LT_EQ] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_EQ_GT] = ACTIONS(5055), - [anon_sym_switch] = ACTIONS(5055), - [anon_sym_when] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5055), - [anon_sym_and] = ACTIONS(5055), - [anon_sym_or] = ACTIONS(5055), - [anon_sym_AMP_AMP] = ACTIONS(5055), - [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_QMARK_QMARK] = ACTIONS(5055), - [anon_sym_on] = ACTIONS(5055), - [anon_sym_equals] = ACTIONS(5055), - [anon_sym_by] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_with] = ACTIONS(5055), - [aux_sym_preproc_if_token3] = ACTIONS(5055), - [aux_sym_preproc_else_token1] = ACTIONS(5055), - [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5407), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COLON] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_RBRACK] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_RPAREN] = ACTIONS(5407), + [anon_sym_RBRACE] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_in] = ACTIONS(5407), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_EQ_GT] = ACTIONS(5407), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_when] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_on] = ACTIONS(5407), + [anon_sym_equals] = ACTIONS(5407), + [anon_sym_by] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5407), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), + [aux_sym_preproc_if_token3] = ACTIONS(5407), + [aux_sym_preproc_else_token1] = ACTIONS(5407), + [aux_sym_preproc_elif_token1] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509020,56 +509055,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3503), [sym_preproc_define] = STATE(3503), [sym_preproc_undef] = STATE(3503), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(5059), - [anon_sym_GT_GT] = ACTIONS(5061), - [anon_sym_GT_GT_GT] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_EQ_GT] = ACTIONS(5059), - [anon_sym_switch] = ACTIONS(5059), - [anon_sym_when] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_and] = ACTIONS(5059), - [anon_sym_or] = ACTIONS(5059), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_QMARK_QMARK] = ACTIONS(5059), - [anon_sym_on] = ACTIONS(5059), - [anon_sym_equals] = ACTIONS(5059), - [anon_sym_by] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5059), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5059), - [anon_sym_with] = ACTIONS(5059), - [aux_sym_preproc_if_token3] = ACTIONS(5059), - [aux_sym_preproc_else_token1] = ACTIONS(5059), - [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_COLON] = ACTIONS(5451), + [anon_sym_COMMA] = ACTIONS(5451), + [anon_sym_RBRACK] = ACTIONS(5451), + [anon_sym_LPAREN] = ACTIONS(5451), + [anon_sym_RPAREN] = ACTIONS(5451), + [anon_sym_RBRACE] = ACTIONS(5451), + [anon_sym_LT] = ACTIONS(5453), + [anon_sym_GT] = ACTIONS(5453), + [anon_sym_in] = ACTIONS(5451), + [anon_sym_QMARK] = ACTIONS(5453), + [anon_sym_BANG] = ACTIONS(5453), + [anon_sym_PLUS_PLUS] = ACTIONS(5451), + [anon_sym_DASH_DASH] = ACTIONS(5451), + [anon_sym_PLUS] = ACTIONS(5453), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_STAR] = ACTIONS(5451), + [anon_sym_SLASH] = ACTIONS(5453), + [anon_sym_PERCENT] = ACTIONS(5451), + [anon_sym_CARET] = ACTIONS(5451), + [anon_sym_PIPE] = ACTIONS(5453), + [anon_sym_AMP] = ACTIONS(5453), + [anon_sym_LT_LT] = ACTIONS(5451), + [anon_sym_GT_GT] = ACTIONS(5453), + [anon_sym_GT_GT_GT] = ACTIONS(5451), + [anon_sym_EQ_EQ] = ACTIONS(5451), + [anon_sym_BANG_EQ] = ACTIONS(5451), + [anon_sym_GT_EQ] = ACTIONS(5451), + [anon_sym_LT_EQ] = ACTIONS(5451), + [anon_sym_DOT] = ACTIONS(5453), + [anon_sym_EQ_GT] = ACTIONS(5451), + [anon_sym_switch] = ACTIONS(5451), + [anon_sym_when] = ACTIONS(5451), + [anon_sym_DOT_DOT] = ACTIONS(5451), + [anon_sym_and] = ACTIONS(5451), + [anon_sym_or] = ACTIONS(5451), + [anon_sym_AMP_AMP] = ACTIONS(5451), + [anon_sym_PIPE_PIPE] = ACTIONS(5451), + [anon_sym_QMARK_QMARK] = ACTIONS(5451), + [anon_sym_on] = ACTIONS(5451), + [anon_sym_equals] = ACTIONS(5451), + [anon_sym_by] = ACTIONS(5451), + [anon_sym_as] = ACTIONS(5451), + [anon_sym_is] = ACTIONS(5451), + [anon_sym_DASH_GT] = ACTIONS(5451), + [anon_sym_with] = ACTIONS(5451), + [aux_sym_preproc_if_token3] = ACTIONS(5451), + [aux_sym_preproc_else_token1] = ACTIONS(5451), + [aux_sym_preproc_elif_token1] = ACTIONS(5451), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509091,56 +509126,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3504), [sym_preproc_define] = STATE(3504), [sym_preproc_undef] = STATE(3504), - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COLON] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_RBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_RPAREN] = ACTIONS(5444), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_in] = ACTIONS(5444), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_EQ_GT] = ACTIONS(5444), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_when] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5444), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_on] = ACTIONS(5444), - [anon_sym_equals] = ACTIONS(5444), - [anon_sym_by] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5444), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), - [aux_sym_preproc_if_token3] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), + [anon_sym_SEMI] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_RBRACK] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_RPAREN] = ACTIONS(4999), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_in] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_BANG] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_AMP] = ACTIONS(5001), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_GT_GT_GT] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_EQ_GT] = ACTIONS(4999), + [anon_sym_switch] = ACTIONS(4999), + [anon_sym_when] = ACTIONS(4999), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_QMARK_QMARK] = ACTIONS(4999), + [anon_sym_on] = ACTIONS(4999), + [anon_sym_equals] = ACTIONS(4999), + [anon_sym_by] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(4999), + [anon_sym_is] = ACTIONS(4999), + [anon_sym_DASH_GT] = ACTIONS(4999), + [anon_sym_with] = ACTIONS(4999), + [aux_sym_preproc_if_token3] = ACTIONS(4999), + [aux_sym_preproc_else_token1] = ACTIONS(4999), + [aux_sym_preproc_elif_token1] = ACTIONS(4999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509153,26 +509188,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3505] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5965), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7650), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3505), [sym_preproc_endregion] = STATE(3505), [sym_preproc_line] = STATE(3505), @@ -509182,14 +509217,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3505), [sym_preproc_define] = STATE(3505), [sym_preproc_undef] = STATE(3505), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(3816), [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(5593), + [anon_sym_delegate] = ACTIONS(5568), [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), @@ -509224,6 +509259,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3506] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7448), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3506), [sym_preproc_endregion] = STATE(3506), [sym_preproc_line] = STATE(3506), @@ -509233,56 +509288,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3506), [sym_preproc_define] = STATE(3506), [sym_preproc_undef] = STATE(3506), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_LT_LT] = ACTIONS(5103), - [anon_sym_GT_GT] = ACTIONS(5105), - [anon_sym_GT_GT_GT] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_EQ_GT] = ACTIONS(5103), - [anon_sym_switch] = ACTIONS(5103), - [anon_sym_when] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_and] = ACTIONS(5103), - [anon_sym_or] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_QMARK_QMARK] = ACTIONS(5103), - [anon_sym_on] = ACTIONS(5103), - [anon_sym_equals] = ACTIONS(5103), - [anon_sym_by] = ACTIONS(5103), - [anon_sym_as] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5103), - [anon_sym_with] = ACTIONS(5103), - [aux_sym_preproc_if_token3] = ACTIONS(5103), - [aux_sym_preproc_else_token1] = ACTIONS(5103), - [aux_sym_preproc_elif_token1] = ACTIONS(5103), + [aux_sym_function_pointer_type_repeat1] = STATE(3507), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509295,6 +509330,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3507] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7381), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3507), [sym_preproc_endregion] = STATE(3507), [sym_preproc_line] = STATE(3507), @@ -509304,56 +509359,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3507), [sym_preproc_define] = STATE(3507), [sym_preproc_undef] = STATE(3507), - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COLON] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_RBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_RPAREN] = ACTIONS(5444), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_in] = ACTIONS(5444), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_EQ_GT] = ACTIONS(5444), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_when] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5444), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_on] = ACTIONS(5444), - [anon_sym_equals] = ACTIONS(5444), - [anon_sym_by] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5444), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), - [aux_sym_preproc_if_token3] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509366,6 +509401,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3508] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7381), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3508), [sym_preproc_endregion] = STATE(3508), [sym_preproc_line] = STATE(3508), @@ -509375,56 +509430,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3508), [sym_preproc_define] = STATE(3508), [sym_preproc_undef] = STATE(3508), - [anon_sym_SEMI] = ACTIONS(5114), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_COLON] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_RBRACK] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_RPAREN] = ACTIONS(5114), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_in] = ACTIONS(5114), - [anon_sym_QMARK] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5114), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5114), - [anon_sym_CARET] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5114), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_GT_GT_GT] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_EQ_GT] = ACTIONS(5114), - [anon_sym_switch] = ACTIONS(5114), - [anon_sym_when] = ACTIONS(5114), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_and] = ACTIONS(5114), - [anon_sym_or] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_QMARK_QMARK] = ACTIONS(5114), - [anon_sym_on] = ACTIONS(5114), - [anon_sym_equals] = ACTIONS(5114), - [anon_sym_by] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5114), - [anon_sym_is] = ACTIONS(5114), - [anon_sym_DASH_GT] = ACTIONS(5114), - [anon_sym_with] = ACTIONS(5114), - [aux_sym_preproc_if_token3] = ACTIONS(5114), - [aux_sym_preproc_else_token1] = ACTIONS(5114), - [aux_sym_preproc_elif_token1] = ACTIONS(5114), + [aux_sym_function_pointer_type_repeat1] = STATE(3509), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509437,26 +509472,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3509] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7661), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7607), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3509), [sym_preproc_endregion] = STATE(3509), [sym_preproc_line] = STATE(3509), @@ -509466,13 +509501,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3509), [sym_preproc_define] = STATE(3509), [sym_preproc_undef] = STATE(3509), - [aux_sym_function_pointer_type_repeat1] = STATE(3510), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -509480,7 +509515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -509508,26 +509543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3510] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7741), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3510), [sym_preproc_endregion] = STATE(3510), [sym_preproc_line] = STATE(3510), @@ -509537,36 +509552,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3510), [sym_preproc_define] = STATE(3510), [sym_preproc_undef] = STATE(3510), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_when] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5572), + [anon_sym_DASH_EQ] = ACTIONS(5572), + [anon_sym_STAR_EQ] = ACTIONS(5572), + [anon_sym_SLASH_EQ] = ACTIONS(5572), + [anon_sym_PERCENT_EQ] = ACTIONS(5572), + [anon_sym_AMP_EQ] = ACTIONS(5572), + [anon_sym_CARET_EQ] = ACTIONS(5572), + [anon_sym_PIPE_EQ] = ACTIONS(5572), + [anon_sym_LT_LT_EQ] = ACTIONS(5572), + [anon_sym_GT_GT_EQ] = ACTIONS(5572), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5572), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5572), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509579,26 +509614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3511] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7741), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3511), [sym_preproc_endregion] = STATE(3511), [sym_preproc_line] = STATE(3511), @@ -509608,36 +509623,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3511), [sym_preproc_define] = STATE(3511), [sym_preproc_undef] = STATE(3511), - [aux_sym_function_pointer_type_repeat1] = STATE(3512), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5576), + [anon_sym_DASH_EQ] = ACTIONS(5576), + [anon_sym_STAR_EQ] = ACTIONS(5576), + [anon_sym_SLASH_EQ] = ACTIONS(5576), + [anon_sym_PERCENT_EQ] = ACTIONS(5576), + [anon_sym_AMP_EQ] = ACTIONS(5576), + [anon_sym_CARET_EQ] = ACTIONS(5576), + [anon_sym_PIPE_EQ] = ACTIONS(5576), + [anon_sym_LT_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_GT_EQ] = ACTIONS(5576), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5576), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5576), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509650,26 +509685,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3512] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7364), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3512), [sym_preproc_endregion] = STATE(3512), [sym_preproc_line] = STATE(3512), @@ -509679,22 +509714,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3512), [sym_preproc_define] = STATE(3512), [sym_preproc_undef] = STATE(3512), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(5578), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -509721,6 +509756,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3513] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7495), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3513), [sym_preproc_endregion] = STATE(3513), [sym_preproc_line] = STATE(3513), @@ -509730,56 +509785,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3513), [sym_preproc_define] = STATE(3513), [sym_preproc_undef] = STATE(3513), - [anon_sym_EQ] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5597), - [anon_sym_DASH_EQ] = ACTIONS(5597), - [anon_sym_STAR_EQ] = ACTIONS(5597), - [anon_sym_SLASH_EQ] = ACTIONS(5597), - [anon_sym_PERCENT_EQ] = ACTIONS(5597), - [anon_sym_AMP_EQ] = ACTIONS(5597), - [anon_sym_CARET_EQ] = ACTIONS(5597), - [anon_sym_PIPE_EQ] = ACTIONS(5597), - [anon_sym_LT_LT_EQ] = ACTIONS(5597), - [anon_sym_GT_GT_EQ] = ACTIONS(5597), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5597), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5597), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3514), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509792,6 +509827,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3514] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7558), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3514), [sym_preproc_endregion] = STATE(3514), [sym_preproc_line] = STATE(3514), @@ -509801,56 +509856,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3514), [sym_preproc_define] = STATE(3514), [sym_preproc_undef] = STATE(3514), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_in] = ACTIONS(5118), - [anon_sym_QMARK] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_GT_GT_GT] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_EQ_GT] = ACTIONS(5118), - [anon_sym_switch] = ACTIONS(5118), - [anon_sym_when] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_QMARK_QMARK] = ACTIONS(5118), - [anon_sym_on] = ACTIONS(5118), - [anon_sym_equals] = ACTIONS(5118), - [anon_sym_by] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5118), - [anon_sym_is] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_with] = ACTIONS(5118), - [aux_sym_preproc_if_token3] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5118), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509863,26 +509898,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3515] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7456), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7558), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3515), [sym_preproc_endregion] = STATE(3515), [sym_preproc_line] = STATE(3515), @@ -509898,7 +509933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -509906,7 +509941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -509934,26 +509969,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3516] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7470), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7594), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3516), [sym_preproc_endregion] = STATE(3516), [sym_preproc_line] = STATE(3516), @@ -509963,13 +509998,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3516), [sym_preproc_define] = STATE(3516), [sym_preproc_undef] = STATE(3516), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -509977,7 +510012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -510005,26 +510040,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3517] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7470), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3517), [sym_preproc_endregion] = STATE(3517), [sym_preproc_line] = STATE(3517), @@ -510034,36 +510049,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3517), [sym_preproc_define] = STATE(3517), [sym_preproc_undef] = STATE(3517), - [aux_sym_function_pointer_type_repeat1] = STATE(3518), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5582), + [anon_sym_DASH_EQ] = ACTIONS(5582), + [anon_sym_STAR_EQ] = ACTIONS(5582), + [anon_sym_SLASH_EQ] = ACTIONS(5582), + [anon_sym_PERCENT_EQ] = ACTIONS(5582), + [anon_sym_AMP_EQ] = ACTIONS(5582), + [anon_sym_CARET_EQ] = ACTIONS(5582), + [anon_sym_PIPE_EQ] = ACTIONS(5582), + [anon_sym_LT_LT_EQ] = ACTIONS(5582), + [anon_sym_GT_GT_EQ] = ACTIONS(5582), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5582), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5582), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510076,26 +510111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3518] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7477), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3518), [sym_preproc_endregion] = STATE(3518), [sym_preproc_line] = STATE(3518), @@ -510105,13 +510120,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3518), [sym_preproc_define] = STATE(3518), [sym_preproc_undef] = STATE(3518), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_AMP] = ACTIONS(5147), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5147), + [anon_sym_GT_GT_GT] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_EQ_GT] = ACTIONS(5145), + [anon_sym_switch] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_QMARK_QMARK] = ACTIONS(5145), + [anon_sym_on] = ACTIONS(5145), + [anon_sym_equals] = ACTIONS(5145), + [anon_sym_by] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [anon_sym_with] = ACTIONS(5145), + [aux_sym_preproc_if_token3] = ACTIONS(5145), + [aux_sym_preproc_else_token1] = ACTIONS(5145), + [aux_sym_preproc_elif_token1] = ACTIONS(5145), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3519] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7578), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(3519), + [sym_preproc_endregion] = STATE(3519), + [sym_preproc_line] = STATE(3519), + [sym_preproc_pragma] = STATE(3519), + [sym_preproc_nullable] = STATE(3519), + [sym_preproc_error] = STATE(3519), + [sym_preproc_warning] = STATE(3519), + [sym_preproc_define] = STATE(3519), + [sym_preproc_undef] = STATE(3519), + [aux_sym_function_pointer_type_repeat1] = STATE(3520), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -510119,7 +510225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -510146,98 +510252,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3519] = { - [sym_preproc_region] = STATE(3519), - [sym_preproc_endregion] = STATE(3519), - [sym_preproc_line] = STATE(3519), - [sym_preproc_pragma] = STATE(3519), - [sym_preproc_nullable] = STATE(3519), - [sym_preproc_error] = STATE(3519), - [sym_preproc_warning] = STATE(3519), - [sym_preproc_define] = STATE(3519), - [sym_preproc_undef] = STATE(3519), - [anon_sym_EQ] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5601), - [anon_sym_DASH_EQ] = ACTIONS(5601), - [anon_sym_STAR_EQ] = ACTIONS(5601), - [anon_sym_SLASH_EQ] = ACTIONS(5601), - [anon_sym_PERCENT_EQ] = ACTIONS(5601), - [anon_sym_AMP_EQ] = ACTIONS(5601), - [anon_sym_CARET_EQ] = ACTIONS(5601), - [anon_sym_PIPE_EQ] = ACTIONS(5601), - [anon_sym_LT_LT_EQ] = ACTIONS(5601), - [anon_sym_GT_GT_EQ] = ACTIONS(5601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5601), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5601), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3520] = { - [sym_type_parameter_constraint] = STATE(6590), - [sym_constructor_constraint] = STATE(6645), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6665), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7411), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3520), [sym_preproc_endregion] = STATE(3520), [sym_preproc_line] = STATE(3520), @@ -510247,22 +510282,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3520), [sym_preproc_define] = STATE(3520), [sym_preproc_undef] = STATE(3520), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(5549), - [anon_sym_ref] = ACTIONS(5551), - [anon_sym_struct] = ACTIONS(5553), - [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(5555), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(5557), - [anon_sym_unmanaged] = ACTIONS(5557), - [anon_sym_scoped] = ACTIONS(5559), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -510289,6 +510324,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3521] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7411), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3521), [sym_preproc_endregion] = STATE(3521), [sym_preproc_line] = STATE(3521), @@ -510298,56 +510353,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3521), [sym_preproc_define] = STATE(3521), [sym_preproc_undef] = STATE(3521), - [anon_sym_EQ] = ACTIONS(5603), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5605), - [anon_sym_DASH_EQ] = ACTIONS(5605), - [anon_sym_STAR_EQ] = ACTIONS(5605), - [anon_sym_SLASH_EQ] = ACTIONS(5605), - [anon_sym_PERCENT_EQ] = ACTIONS(5605), - [anon_sym_AMP_EQ] = ACTIONS(5605), - [anon_sym_CARET_EQ] = ACTIONS(5605), - [anon_sym_PIPE_EQ] = ACTIONS(5605), - [anon_sym_LT_LT_EQ] = ACTIONS(5605), - [anon_sym_GT_GT_EQ] = ACTIONS(5605), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5605), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5605), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3522), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510360,26 +510395,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3522] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7646), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7458), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3522), [sym_preproc_endregion] = STATE(3522), [sym_preproc_line] = STATE(3522), @@ -510389,13 +510424,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3522), [sym_preproc_define] = STATE(3522), [sym_preproc_undef] = STATE(3522), - [aux_sym_function_pointer_type_repeat1] = STATE(3523), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -510403,7 +510438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -510431,26 +510466,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3523] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7561), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3523), [sym_preproc_endregion] = STATE(3523), [sym_preproc_line] = STATE(3523), @@ -510460,36 +510475,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3523), [sym_preproc_define] = STATE(3523), [sym_preproc_undef] = STATE(3523), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5584), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5586), + [anon_sym_DASH_EQ] = ACTIONS(5586), + [anon_sym_STAR_EQ] = ACTIONS(5586), + [anon_sym_SLASH_EQ] = ACTIONS(5586), + [anon_sym_PERCENT_EQ] = ACTIONS(5586), + [anon_sym_AMP_EQ] = ACTIONS(5586), + [anon_sym_CARET_EQ] = ACTIONS(5586), + [anon_sym_PIPE_EQ] = ACTIONS(5586), + [anon_sym_LT_LT_EQ] = ACTIONS(5586), + [anon_sym_GT_GT_EQ] = ACTIONS(5586), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5586), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5586), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510502,26 +510537,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3524] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7561), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3524), [sym_preproc_endregion] = STATE(3524), [sym_preproc_line] = STATE(3524), @@ -510531,36 +510546,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3524), [sym_preproc_define] = STATE(3524), [sym_preproc_undef] = STATE(3524), - [aux_sym_function_pointer_type_repeat1] = STATE(3525), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5590), + [anon_sym_DASH_EQ] = ACTIONS(5590), + [anon_sym_STAR_EQ] = ACTIONS(5590), + [anon_sym_SLASH_EQ] = ACTIONS(5590), + [anon_sym_PERCENT_EQ] = ACTIONS(5590), + [anon_sym_AMP_EQ] = ACTIONS(5590), + [anon_sym_CARET_EQ] = ACTIONS(5590), + [anon_sym_PIPE_EQ] = ACTIONS(5590), + [anon_sym_LT_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_GT_EQ] = ACTIONS(5590), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5590), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510573,26 +510608,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3525] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7779), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7359), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3525), [sym_preproc_endregion] = STATE(3525), [sym_preproc_line] = STATE(3525), @@ -510602,13 +510637,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3525), [sym_preproc_define] = STATE(3525), [sym_preproc_undef] = STATE(3525), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [aux_sym_function_pointer_type_repeat1] = STATE(3526), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), [anon_sym_in] = ACTIONS(5518), [anon_sym_out] = ACTIONS(5518), @@ -510616,7 +510651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -510644,6 +510679,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3526] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7513), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3526), [sym_preproc_endregion] = STATE(3526), [sym_preproc_line] = STATE(3526), @@ -510653,56 +510708,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3526), [sym_preproc_define] = STATE(3526), [sym_preproc_undef] = STATE(3526), - [anon_sym_EQ] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5609), - [anon_sym_DASH_EQ] = ACTIONS(5609), - [anon_sym_STAR_EQ] = ACTIONS(5609), - [anon_sym_SLASH_EQ] = ACTIONS(5609), - [anon_sym_PERCENT_EQ] = ACTIONS(5609), - [anon_sym_AMP_EQ] = ACTIONS(5609), - [anon_sym_CARET_EQ] = ACTIONS(5609), - [anon_sym_PIPE_EQ] = ACTIONS(5609), - [anon_sym_LT_LT_EQ] = ACTIONS(5609), - [anon_sym_GT_GT_EQ] = ACTIONS(5609), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5609), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510715,6 +510750,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3527] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7513), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3527), [sym_preproc_endregion] = STATE(3527), [sym_preproc_line] = STATE(3527), @@ -510724,56 +510779,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3527), [sym_preproc_define] = STATE(3527), [sym_preproc_undef] = STATE(3527), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5613), - [anon_sym_DASH_EQ] = ACTIONS(5613), - [anon_sym_STAR_EQ] = ACTIONS(5613), - [anon_sym_SLASH_EQ] = ACTIONS(5613), - [anon_sym_PERCENT_EQ] = ACTIONS(5613), - [anon_sym_AMP_EQ] = ACTIONS(5613), - [anon_sym_CARET_EQ] = ACTIONS(5613), - [anon_sym_PIPE_EQ] = ACTIONS(5613), - [anon_sym_LT_LT_EQ] = ACTIONS(5613), - [anon_sym_GT_GT_EQ] = ACTIONS(5613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5613), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [aux_sym_function_pointer_type_repeat1] = STATE(3528), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510786,26 +510821,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3528] = { - [sym_parameter_list] = STATE(7560), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5967), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__lambda_parameters] = STATE(7576), - [sym_identifier] = STATE(5822), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7575), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_function_pointer_parameter] = STATE(7405), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7407), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3528), [sym_preproc_endregion] = STATE(3528), [sym_preproc_line] = STATE(3528), @@ -510815,22 +510850,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3528), [sym_preproc_define] = STATE(3528), [sym_preproc_undef] = STATE(3528), - [aux_sym__lambda_expression_init_repeat1] = STATE(5890), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5516), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(5518), + [anon_sym_out] = ACTIONS(5518), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -510866,56 +510901,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3529), [sym_preproc_define] = STATE(3529), [sym_preproc_undef] = STATE(3529), - [anon_sym_SEMI] = ACTIONS(5476), - [anon_sym_LBRACK] = ACTIONS(5476), - [anon_sym_COLON] = ACTIONS(5476), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_RBRACK] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5476), - [anon_sym_RPAREN] = ACTIONS(5476), - [anon_sym_RBRACE] = ACTIONS(5476), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_in] = ACTIONS(5476), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5476), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5476), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5476), - [anon_sym_CARET] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5476), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_GT_GT_GT] = ACTIONS(5476), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_GT_EQ] = ACTIONS(5476), - [anon_sym_LT_EQ] = ACTIONS(5476), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_EQ_GT] = ACTIONS(5476), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_when] = ACTIONS(5476), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_and] = ACTIONS(5476), - [anon_sym_or] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(5476), - [anon_sym_PIPE_PIPE] = ACTIONS(5476), - [anon_sym_QMARK_QMARK] = ACTIONS(5476), - [anon_sym_on] = ACTIONS(5476), - [anon_sym_equals] = ACTIONS(5476), - [anon_sym_by] = ACTIONS(5476), - [anon_sym_as] = ACTIONS(5476), - [anon_sym_is] = ACTIONS(5476), - [anon_sym_DASH_GT] = ACTIONS(5476), - [anon_sym_with] = ACTIONS(5476), - [aux_sym_preproc_if_token3] = ACTIONS(5476), - [aux_sym_preproc_else_token1] = ACTIONS(5476), - [aux_sym_preproc_elif_token1] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(5592), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5594), + [anon_sym_DASH_EQ] = ACTIONS(5594), + [anon_sym_STAR_EQ] = ACTIONS(5594), + [anon_sym_SLASH_EQ] = ACTIONS(5594), + [anon_sym_PERCENT_EQ] = ACTIONS(5594), + [anon_sym_AMP_EQ] = ACTIONS(5594), + [anon_sym_CARET_EQ] = ACTIONS(5594), + [anon_sym_PIPE_EQ] = ACTIONS(5594), + [anon_sym_LT_LT_EQ] = ACTIONS(5594), + [anon_sym_GT_GT_EQ] = ACTIONS(5594), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5594), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5594), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510937,56 +510972,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3530), [sym_preproc_define] = STATE(3530), [sym_preproc_undef] = STATE(3530), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_COLON] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5136), - [anon_sym_RBRACK] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5136), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_in] = ACTIONS(5136), - [anon_sym_QMARK] = ACTIONS(5138), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_GT_GT_GT] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5136), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_EQ_GT] = ACTIONS(5136), - [anon_sym_switch] = ACTIONS(5136), - [anon_sym_when] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_QMARK_QMARK] = ACTIONS(5136), - [anon_sym_on] = ACTIONS(5136), - [anon_sym_equals] = ACTIONS(5136), - [anon_sym_by] = ACTIONS(5136), - [anon_sym_as] = ACTIONS(5136), - [anon_sym_is] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5136), - [anon_sym_with] = ACTIONS(5136), - [aux_sym_preproc_if_token3] = ACTIONS(5136), - [aux_sym_preproc_else_token1] = ACTIONS(5136), - [aux_sym_preproc_elif_token1] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5441), + [anon_sym_LBRACK] = ACTIONS(5441), + [anon_sym_COLON] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(5441), + [anon_sym_RBRACK] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_RPAREN] = ACTIONS(5441), + [anon_sym_RBRACE] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5443), + [anon_sym_GT] = ACTIONS(5443), + [anon_sym_in] = ACTIONS(5441), + [anon_sym_QMARK] = ACTIONS(5443), + [anon_sym_BANG] = ACTIONS(5443), + [anon_sym_PLUS_PLUS] = ACTIONS(5441), + [anon_sym_DASH_DASH] = ACTIONS(5441), + [anon_sym_PLUS] = ACTIONS(5443), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(5441), + [anon_sym_SLASH] = ACTIONS(5443), + [anon_sym_PERCENT] = ACTIONS(5441), + [anon_sym_CARET] = ACTIONS(5441), + [anon_sym_PIPE] = ACTIONS(5443), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym_LT_LT] = ACTIONS(5441), + [anon_sym_GT_GT] = ACTIONS(5443), + [anon_sym_GT_GT_GT] = ACTIONS(5441), + [anon_sym_EQ_EQ] = ACTIONS(5441), + [anon_sym_BANG_EQ] = ACTIONS(5441), + [anon_sym_GT_EQ] = ACTIONS(5441), + [anon_sym_LT_EQ] = ACTIONS(5441), + [anon_sym_DOT] = ACTIONS(5443), + [anon_sym_EQ_GT] = ACTIONS(5441), + [anon_sym_switch] = ACTIONS(5441), + [anon_sym_when] = ACTIONS(5441), + [anon_sym_DOT_DOT] = ACTIONS(5441), + [anon_sym_and] = ACTIONS(5441), + [anon_sym_or] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_PIPE_PIPE] = ACTIONS(5441), + [anon_sym_QMARK_QMARK] = ACTIONS(5441), + [anon_sym_on] = ACTIONS(5441), + [anon_sym_equals] = ACTIONS(5441), + [anon_sym_by] = ACTIONS(5441), + [anon_sym_as] = ACTIONS(5441), + [anon_sym_is] = ACTIONS(5441), + [anon_sym_DASH_GT] = ACTIONS(5441), + [anon_sym_with] = ACTIONS(5441), + [aux_sym_preproc_if_token3] = ACTIONS(5441), + [aux_sym_preproc_else_token1] = ACTIONS(5441), + [aux_sym_preproc_elif_token1] = ACTIONS(5441), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511008,56 +511043,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3531), [sym_preproc_define] = STATE(3531), [sym_preproc_undef] = STATE(3531), - [anon_sym_SEMI] = ACTIONS(5156), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_COLON] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_RBRACK] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5156), - [anon_sym_RPAREN] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5158), - [anon_sym_in] = ACTIONS(5156), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5158), - [anon_sym_GT_GT_GT] = ACTIONS(5156), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_EQ_GT] = ACTIONS(5156), - [anon_sym_switch] = ACTIONS(5156), - [anon_sym_when] = ACTIONS(5156), - [anon_sym_DOT_DOT] = ACTIONS(5156), - [anon_sym_and] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_QMARK_QMARK] = ACTIONS(5156), - [anon_sym_on] = ACTIONS(5156), - [anon_sym_equals] = ACTIONS(5156), - [anon_sym_by] = ACTIONS(5156), - [anon_sym_as] = ACTIONS(5156), - [anon_sym_is] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [anon_sym_with] = ACTIONS(5156), - [aux_sym_preproc_if_token3] = ACTIONS(5156), - [aux_sym_preproc_else_token1] = ACTIONS(5156), - [aux_sym_preproc_elif_token1] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_when] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511079,56 +511114,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3532), [sym_preproc_define] = STATE(3532), [sym_preproc_undef] = STATE(3532), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RBRACK] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_in] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5164), - [anon_sym_CARET] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_LT_LT] = ACTIONS(5164), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_GT_GT_GT] = ACTIONS(5164), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_EQ_GT] = ACTIONS(5164), - [anon_sym_switch] = ACTIONS(5164), - [anon_sym_when] = ACTIONS(5164), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [anon_sym_and] = ACTIONS(5164), - [anon_sym_or] = ACTIONS(5164), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_QMARK_QMARK] = ACTIONS(5164), - [anon_sym_on] = ACTIONS(5164), - [anon_sym_equals] = ACTIONS(5164), - [anon_sym_by] = ACTIONS(5164), - [anon_sym_as] = ACTIONS(5164), - [anon_sym_is] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), - [anon_sym_with] = ACTIONS(5164), - [aux_sym_preproc_if_token3] = ACTIONS(5164), - [aux_sym_preproc_else_token1] = ACTIONS(5164), - [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [anon_sym_EQ] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_COLON] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3731), + [anon_sym_DASH_DASH] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_CARET] = ACTIONS(3716), + [anon_sym_PIPE] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3716), + [anon_sym_GT_GT] = ACTIONS(3716), + [anon_sym_GT_GT_GT] = ACTIONS(3716), + [anon_sym_EQ_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3731), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(3731), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(3731), + [anon_sym_DASH_EQ] = ACTIONS(3731), + [anon_sym_STAR_EQ] = ACTIONS(3731), + [anon_sym_SLASH_EQ] = ACTIONS(3731), + [anon_sym_PERCENT_EQ] = ACTIONS(3731), + [anon_sym_AMP_EQ] = ACTIONS(3731), + [anon_sym_CARET_EQ] = ACTIONS(3731), + [anon_sym_PIPE_EQ] = ACTIONS(3731), + [anon_sym_LT_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3731), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3731), + [anon_sym_AMP_AMP] = ACTIONS(3731), + [anon_sym_PIPE_PIPE] = ACTIONS(3731), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3731), + [anon_sym_is] = ACTIONS(3731), + [anon_sym_DASH_GT] = ACTIONS(3731), + [anon_sym_with] = ACTIONS(3731), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511150,56 +511185,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3533), [sym_preproc_define] = STATE(3533), [sym_preproc_undef] = STATE(3533), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COLON] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RBRACK] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_in] = ACTIONS(5168), - [anon_sym_QMARK] = ACTIONS(5170), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_CARET] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5170), - [anon_sym_GT_GT_GT] = ACTIONS(5168), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_EQ_GT] = ACTIONS(5168), - [anon_sym_switch] = ACTIONS(5168), - [anon_sym_when] = ACTIONS(5168), - [anon_sym_DOT_DOT] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5168), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_QMARK_QMARK] = ACTIONS(5168), - [anon_sym_on] = ACTIONS(5168), - [anon_sym_equals] = ACTIONS(5168), - [anon_sym_by] = ACTIONS(5168), - [anon_sym_as] = ACTIONS(5168), - [anon_sym_is] = ACTIONS(5168), - [anon_sym_DASH_GT] = ACTIONS(5168), - [anon_sym_with] = ACTIONS(5168), - [aux_sym_preproc_if_token3] = ACTIONS(5168), - [aux_sym_preproc_else_token1] = ACTIONS(5168), - [aux_sym_preproc_elif_token1] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_in] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_EQ_GT] = ACTIONS(5388), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_when] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5388), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_on] = ACTIONS(5388), + [anon_sym_equals] = ACTIONS(5388), + [anon_sym_by] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5388), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), + [aux_sym_preproc_if_token3] = ACTIONS(5388), + [aux_sym_preproc_else_token1] = ACTIONS(5388), + [aux_sym_preproc_elif_token1] = ACTIONS(5388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511221,56 +511256,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3534), [sym_preproc_define] = STATE(3534), [sym_preproc_undef] = STATE(3534), - [anon_sym_SEMI] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(5180), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5180), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5180), - [anon_sym_PIPE] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_LT_LT] = ACTIONS(5180), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_GT_GT_GT] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5180), - [anon_sym_BANG_EQ] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5180), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_EQ_GT] = ACTIONS(5180), - [anon_sym_switch] = ACTIONS(5180), - [anon_sym_when] = ACTIONS(5180), - [anon_sym_DOT_DOT] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5180), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_QMARK_QMARK] = ACTIONS(5180), - [anon_sym_on] = ACTIONS(5180), - [anon_sym_equals] = ACTIONS(5180), - [anon_sym_by] = ACTIONS(5180), - [anon_sym_as] = ACTIONS(5180), - [anon_sym_is] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5180), - [anon_sym_with] = ACTIONS(5180), - [aux_sym_preproc_if_token3] = ACTIONS(5180), - [aux_sym_preproc_else_token1] = ACTIONS(5180), - [aux_sym_preproc_elif_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_in] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_EQ_GT] = ACTIONS(5388), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_when] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5388), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_on] = ACTIONS(5388), + [anon_sym_equals] = ACTIONS(5388), + [anon_sym_by] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5388), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), + [aux_sym_preproc_if_token3] = ACTIONS(5388), + [aux_sym_preproc_else_token1] = ACTIONS(5388), + [aux_sym_preproc_elif_token1] = ACTIONS(5388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511292,56 +511327,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3535), [sym_preproc_define] = STATE(3535), [sym_preproc_undef] = STATE(3535), - [anon_sym_SEMI] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_COLON] = ACTIONS(5424), - [anon_sym_COMMA] = ACTIONS(5424), - [anon_sym_RBRACK] = ACTIONS(5424), - [anon_sym_LPAREN] = ACTIONS(5424), - [anon_sym_RPAREN] = ACTIONS(5424), - [anon_sym_RBRACE] = ACTIONS(5424), - [anon_sym_LT] = ACTIONS(5426), - [anon_sym_GT] = ACTIONS(5426), - [anon_sym_in] = ACTIONS(5424), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(5426), - [anon_sym_PLUS_PLUS] = ACTIONS(5424), - [anon_sym_DASH_DASH] = ACTIONS(5424), - [anon_sym_PLUS] = ACTIONS(5426), - [anon_sym_DASH] = ACTIONS(5426), - [anon_sym_STAR] = ACTIONS(5424), - [anon_sym_SLASH] = ACTIONS(5426), - [anon_sym_PERCENT] = ACTIONS(5424), - [anon_sym_CARET] = ACTIONS(5424), - [anon_sym_PIPE] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(5426), - [anon_sym_LT_LT] = ACTIONS(5424), - [anon_sym_GT_GT] = ACTIONS(5426), - [anon_sym_GT_GT_GT] = ACTIONS(5424), - [anon_sym_EQ_EQ] = ACTIONS(5424), - [anon_sym_BANG_EQ] = ACTIONS(5424), - [anon_sym_GT_EQ] = ACTIONS(5424), - [anon_sym_LT_EQ] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_EQ_GT] = ACTIONS(5424), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_when] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5424), - [anon_sym_and] = ACTIONS(5424), - [anon_sym_or] = ACTIONS(5424), - [anon_sym_AMP_AMP] = ACTIONS(5424), - [anon_sym_PIPE_PIPE] = ACTIONS(5424), - [anon_sym_QMARK_QMARK] = ACTIONS(5424), - [anon_sym_on] = ACTIONS(5424), - [anon_sym_equals] = ACTIONS(5424), - [anon_sym_by] = ACTIONS(5424), - [anon_sym_as] = ACTIONS(5424), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(5424), - [anon_sym_with] = ACTIONS(5424), - [aux_sym_preproc_if_token3] = ACTIONS(5424), - [aux_sym_preproc_else_token1] = ACTIONS(5424), - [aux_sym_preproc_elif_token1] = ACTIONS(5424), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_COLON] = ACTIONS(5403), + [anon_sym_COMMA] = ACTIONS(5403), + [anon_sym_RBRACK] = ACTIONS(5403), + [anon_sym_LPAREN] = ACTIONS(5403), + [anon_sym_RPAREN] = ACTIONS(5403), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5405), + [anon_sym_GT] = ACTIONS(5405), + [anon_sym_in] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5405), + [anon_sym_BANG] = ACTIONS(5405), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5405), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5405), + [anon_sym_GT_GT_GT] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5403), + [anon_sym_BANG_EQ] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_DOT] = ACTIONS(5405), + [anon_sym_EQ_GT] = ACTIONS(5403), + [anon_sym_switch] = ACTIONS(5403), + [anon_sym_when] = ACTIONS(5403), + [anon_sym_DOT_DOT] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_or] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5403), + [anon_sym_QMARK_QMARK] = ACTIONS(5403), + [anon_sym_on] = ACTIONS(5403), + [anon_sym_equals] = ACTIONS(5403), + [anon_sym_by] = ACTIONS(5403), + [anon_sym_as] = ACTIONS(5403), + [anon_sym_is] = ACTIONS(5403), + [anon_sym_DASH_GT] = ACTIONS(5403), + [anon_sym_with] = ACTIONS(5403), + [aux_sym_preproc_if_token3] = ACTIONS(5403), + [aux_sym_preproc_else_token1] = ACTIONS(5403), + [aux_sym_preproc_elif_token1] = ACTIONS(5403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511363,56 +511398,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3536), [sym_preproc_define] = STATE(3536), [sym_preproc_undef] = STATE(3536), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_RBRACK] = ACTIONS(5480), - [anon_sym_LPAREN] = ACTIONS(5480), - [anon_sym_RPAREN] = ACTIONS(5480), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_in] = ACTIONS(5480), - [anon_sym_QMARK] = ACTIONS(5482), - [anon_sym_BANG] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5480), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5480), - [anon_sym_CARET] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5480), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_GT_GT_GT] = ACTIONS(5480), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_EQ_GT] = ACTIONS(5480), - [anon_sym_switch] = ACTIONS(5480), - [anon_sym_when] = ACTIONS(5480), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_and] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_QMARK_QMARK] = ACTIONS(5480), - [anon_sym_on] = ACTIONS(5480), - [anon_sym_equals] = ACTIONS(5480), - [anon_sym_by] = ACTIONS(5480), - [anon_sym_as] = ACTIONS(5480), - [anon_sym_is] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_with] = ACTIONS(5480), - [aux_sym_preproc_if_token3] = ACTIONS(5480), - [aux_sym_preproc_else_token1] = ACTIONS(5480), - [aux_sym_preproc_elif_token1] = ACTIONS(5480), + [anon_sym_SEMI] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_RBRACK] = ACTIONS(5411), + [anon_sym_LPAREN] = ACTIONS(5411), + [anon_sym_RPAREN] = ACTIONS(5411), + [anon_sym_RBRACE] = ACTIONS(5411), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_in] = ACTIONS(5411), + [anon_sym_QMARK] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5411), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_CARET] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5411), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_GT_GT_GT] = ACTIONS(5411), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_EQ_GT] = ACTIONS(5411), + [anon_sym_switch] = ACTIONS(5411), + [anon_sym_when] = ACTIONS(5411), + [anon_sym_DOT_DOT] = ACTIONS(5411), + [anon_sym_and] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5411), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_QMARK_QMARK] = ACTIONS(5411), + [anon_sym_on] = ACTIONS(5411), + [anon_sym_equals] = ACTIONS(5411), + [anon_sym_by] = ACTIONS(5411), + [anon_sym_as] = ACTIONS(5411), + [anon_sym_is] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_with] = ACTIONS(5411), + [aux_sym_preproc_if_token3] = ACTIONS(5411), + [aux_sym_preproc_else_token1] = ACTIONS(5411), + [aux_sym_preproc_elif_token1] = ACTIONS(5411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511434,56 +511469,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3537), [sym_preproc_define] = STATE(3537), [sym_preproc_undef] = STATE(3537), - [anon_sym_SEMI] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_RBRACK] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5188), - [anon_sym_RPAREN] = ACTIONS(5188), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_in] = ACTIONS(5188), - [anon_sym_QMARK] = ACTIONS(5190), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_PLUS_PLUS] = ACTIONS(5188), - [anon_sym_DASH_DASH] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_CARET] = ACTIONS(5188), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5188), - [anon_sym_GT_GT] = ACTIONS(5190), - [anon_sym_GT_GT_GT] = ACTIONS(5188), - [anon_sym_EQ_EQ] = ACTIONS(5188), - [anon_sym_BANG_EQ] = ACTIONS(5188), - [anon_sym_GT_EQ] = ACTIONS(5188), - [anon_sym_LT_EQ] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_EQ_GT] = ACTIONS(5188), - [anon_sym_switch] = ACTIONS(5188), - [anon_sym_when] = ACTIONS(5188), - [anon_sym_DOT_DOT] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_QMARK_QMARK] = ACTIONS(5188), - [anon_sym_on] = ACTIONS(5188), - [anon_sym_equals] = ACTIONS(5188), - [anon_sym_by] = ACTIONS(5188), - [anon_sym_as] = ACTIONS(5188), - [anon_sym_is] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_with] = ACTIONS(5188), - [aux_sym_preproc_if_token3] = ACTIONS(5188), - [aux_sym_preproc_else_token1] = ACTIONS(5188), - [aux_sym_preproc_elif_token1] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_when] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_equals] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [aux_sym_preproc_if_token3] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511505,56 +511540,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3538), [sym_preproc_define] = STATE(3538), [sym_preproc_undef] = STATE(3538), - [anon_sym_SEMI] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_COMMA] = ACTIONS(5224), - [anon_sym_RBRACK] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5224), - [anon_sym_RPAREN] = ACTIONS(5224), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_in] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_BANG] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_SLASH] = ACTIONS(5226), - [anon_sym_PERCENT] = ACTIONS(5224), - [anon_sym_CARET] = ACTIONS(5224), - [anon_sym_PIPE] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5224), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_GT_GT_GT] = ACTIONS(5224), - [anon_sym_EQ_EQ] = ACTIONS(5224), - [anon_sym_BANG_EQ] = ACTIONS(5224), - [anon_sym_GT_EQ] = ACTIONS(5224), - [anon_sym_LT_EQ] = ACTIONS(5224), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_EQ_GT] = ACTIONS(5224), - [anon_sym_switch] = ACTIONS(5224), - [anon_sym_when] = ACTIONS(5224), - [anon_sym_DOT_DOT] = ACTIONS(5224), - [anon_sym_and] = ACTIONS(5224), - [anon_sym_or] = ACTIONS(5224), - [anon_sym_AMP_AMP] = ACTIONS(5224), - [anon_sym_PIPE_PIPE] = ACTIONS(5224), - [anon_sym_QMARK_QMARK] = ACTIONS(5224), - [anon_sym_on] = ACTIONS(5224), - [anon_sym_equals] = ACTIONS(5224), - [anon_sym_by] = ACTIONS(5224), - [anon_sym_as] = ACTIONS(5224), - [anon_sym_is] = ACTIONS(5224), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_with] = ACTIONS(5224), - [aux_sym_preproc_if_token3] = ACTIONS(5224), - [aux_sym_preproc_else_token1] = ACTIONS(5224), - [aux_sym_preproc_elif_token1] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_RPAREN] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_when] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_and] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_on] = ACTIONS(3167), + [anon_sym_equals] = ACTIONS(3167), + [anon_sym_by] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [aux_sym_preproc_if_token3] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511576,56 +511611,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3539), [sym_preproc_define] = STATE(3539), [sym_preproc_undef] = STATE(3539), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(5507), - [anon_sym_BANG] = ACTIONS(5507), - [anon_sym_PLUS_PLUS] = ACTIONS(5504), - [anon_sym_DASH_DASH] = ACTIONS(5504), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5504), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_CARET] = ACTIONS(5504), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5504), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym_GT_GT_GT] = ACTIONS(5504), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_BANG_EQ] = ACTIONS(5504), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(5504), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(5504), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(5504), - [anon_sym_PIPE_PIPE] = ACTIONS(5504), - [anon_sym_QMARK_QMARK] = ACTIONS(5504), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5504), - [anon_sym_is] = ACTIONS(5504), - [anon_sym_DASH_GT] = ACTIONS(5504), - [anon_sym_with] = ACTIONS(5504), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [sym__identifier_token] = ACTIONS(5596), + [anon_sym_extern] = ACTIONS(5596), + [anon_sym_alias] = ACTIONS(5596), + [anon_sym_global] = ACTIONS(5596), + [anon_sym_unsafe] = ACTIONS(5596), + [anon_sym_static] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(5598), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_abstract] = ACTIONS(5596), + [anon_sym_async] = ACTIONS(5596), + [anon_sym_const] = ACTIONS(5596), + [anon_sym_file] = ACTIONS(5596), + [anon_sym_fixed] = ACTIONS(5596), + [anon_sym_internal] = ACTIONS(5596), + [anon_sym_new] = ACTIONS(5596), + [anon_sym_override] = ACTIONS(5596), + [anon_sym_partial] = ACTIONS(5596), + [anon_sym_private] = ACTIONS(5596), + [anon_sym_protected] = ACTIONS(5596), + [anon_sym_public] = ACTIONS(5596), + [anon_sym_readonly] = ACTIONS(5596), + [anon_sym_required] = ACTIONS(5596), + [anon_sym_sealed] = ACTIONS(5596), + [anon_sym_virtual] = ACTIONS(5596), + [anon_sym_volatile] = ACTIONS(5596), + [anon_sym_where] = ACTIONS(5596), + [anon_sym_notnull] = ACTIONS(5596), + [anon_sym_unmanaged] = ACTIONS(5596), + [anon_sym_get] = ACTIONS(5596), + [anon_sym_set] = ACTIONS(5596), + [anon_sym_add] = ACTIONS(5596), + [anon_sym_remove] = ACTIONS(5596), + [anon_sym_init] = ACTIONS(5596), + [anon_sym_scoped] = ACTIONS(5596), + [anon_sym_var] = ACTIONS(5596), + [anon_sym_yield] = ACTIONS(5596), + [anon_sym_when] = ACTIONS(5596), + [anon_sym_from] = ACTIONS(5596), + [anon_sym_into] = ACTIONS(5596), + [anon_sym_join] = ACTIONS(5596), + [anon_sym_on] = ACTIONS(5596), + [anon_sym_equals] = ACTIONS(5596), + [anon_sym_let] = ACTIONS(5596), + [anon_sym_orderby] = ACTIONS(5596), + [anon_sym_ascending] = ACTIONS(5596), + [anon_sym_descending] = ACTIONS(5596), + [anon_sym_group] = ACTIONS(5596), + [anon_sym_by] = ACTIONS(5596), + [anon_sym_select] = ACTIONS(5596), + [aux_sym_preproc_if_token1] = ACTIONS(5598), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511638,6 +511673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3540] = { + [sym_initializer_expression] = STATE(3101), [sym_preproc_region] = STATE(3540), [sym_preproc_endregion] = STATE(3540), [sym_preproc_line] = STATE(3540), @@ -511647,56 +511683,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3540), [sym_preproc_define] = STATE(3540), [sym_preproc_undef] = STATE(3540), - [anon_sym_SEMI] = ACTIONS(5236), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COMMA] = ACTIONS(5236), - [anon_sym_RBRACK] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_in] = ACTIONS(5236), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_BANG] = ACTIONS(5238), - [anon_sym_PLUS_PLUS] = ACTIONS(5236), - [anon_sym_DASH_DASH] = ACTIONS(5236), - [anon_sym_PLUS] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5236), - [anon_sym_SLASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_CARET] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5236), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_GT_GT_GT] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [anon_sym_GT_EQ] = ACTIONS(5236), - [anon_sym_LT_EQ] = ACTIONS(5236), - [anon_sym_DOT] = ACTIONS(5238), - [anon_sym_EQ_GT] = ACTIONS(5236), - [anon_sym_switch] = ACTIONS(5236), - [anon_sym_when] = ACTIONS(5236), - [anon_sym_DOT_DOT] = ACTIONS(5236), - [anon_sym_and] = ACTIONS(5236), - [anon_sym_or] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_QMARK_QMARK] = ACTIONS(5236), - [anon_sym_on] = ACTIONS(5236), - [anon_sym_equals] = ACTIONS(5236), - [anon_sym_by] = ACTIONS(5236), - [anon_sym_as] = ACTIONS(5236), - [anon_sym_is] = ACTIONS(5236), - [anon_sym_DASH_GT] = ACTIONS(5236), - [anon_sym_with] = ACTIONS(5236), - [aux_sym_preproc_if_token3] = ACTIONS(5236), - [aux_sym_preproc_else_token1] = ACTIONS(5236), - [aux_sym_preproc_elif_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(5600), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_GT_GT_GT] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_EQ_GT] = ACTIONS(4920), + [anon_sym_switch] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_QMARK_QMARK] = ACTIONS(4920), + [anon_sym_into] = ACTIONS(4920), + [anon_sym_on] = ACTIONS(4920), + [anon_sym_equals] = ACTIONS(4920), + [anon_sym_by] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_with] = ACTIONS(4920), + [aux_sym_preproc_if_token3] = ACTIONS(4920), + [aux_sym_preproc_else_token1] = ACTIONS(4920), + [aux_sym_preproc_elif_token1] = ACTIONS(4920), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511709,6 +511744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3541] = { + [sym_argument_list] = STATE(2969), + [sym_initializer_expression] = STATE(3106), [sym_preproc_region] = STATE(3541), [sym_preproc_endregion] = STATE(3541), [sym_preproc_line] = STATE(3541), @@ -511718,56 +511755,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3541), [sym_preproc_define] = STATE(3541), [sym_preproc_undef] = STATE(3541), - [anon_sym_SEMI] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(5510), - [anon_sym_COLON] = ACTIONS(4346), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_RBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5513), - [anon_sym_in] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_BANG] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5510), - [anon_sym_DASH_DASH] = ACTIONS(5510), - [anon_sym_PLUS] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5510), - [anon_sym_SLASH] = ACTIONS(5513), - [anon_sym_PERCENT] = ACTIONS(5510), - [anon_sym_CARET] = ACTIONS(5510), - [anon_sym_PIPE] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_LT_LT] = ACTIONS(5510), - [anon_sym_GT_GT] = ACTIONS(5513), - [anon_sym_GT_GT_GT] = ACTIONS(5510), - [anon_sym_EQ_EQ] = ACTIONS(5510), - [anon_sym_BANG_EQ] = ACTIONS(5510), - [anon_sym_GT_EQ] = ACTIONS(5510), - [anon_sym_LT_EQ] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(5513), - [anon_sym_EQ_GT] = ACTIONS(4346), - [anon_sym_switch] = ACTIONS(5510), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_DOT_DOT] = ACTIONS(5510), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(5510), - [anon_sym_PIPE_PIPE] = ACTIONS(5510), - [anon_sym_QMARK_QMARK] = ACTIONS(5510), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = ACTIONS(4346), - [anon_sym_by] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5510), - [anon_sym_is] = ACTIONS(5510), - [anon_sym_DASH_GT] = ACTIONS(5510), - [anon_sym_with] = ACTIONS(5510), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_GT_GT_GT] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4811), + [anon_sym_on] = ACTIONS(4811), + [anon_sym_equals] = ACTIONS(4811), + [anon_sym_by] = ACTIONS(4811), + [anon_sym_as] = ACTIONS(4811), + [anon_sym_is] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [anon_sym_with] = ACTIONS(4811), + [aux_sym_preproc_if_token3] = ACTIONS(4811), + [aux_sym_preproc_else_token1] = ACTIONS(4811), + [aux_sym_preproc_elif_token1] = ACTIONS(4811), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511780,6 +511815,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3542] = { + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3542), [sym_preproc_endregion] = STATE(3542), [sym_preproc_line] = STATE(3542), @@ -511789,56 +511833,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3542), [sym_preproc_define] = STATE(3542), [sym_preproc_undef] = STATE(3542), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_in] = ACTIONS(5484), - [anon_sym_QMARK] = ACTIONS(5486), - [anon_sym_BANG] = ACTIONS(5486), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5484), - [anon_sym_CARET] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5484), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_GT_GT_GT] = ACTIONS(5484), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_EQ_GT] = ACTIONS(5484), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_when] = ACTIONS(5484), - [anon_sym_DOT_DOT] = ACTIONS(5484), - [anon_sym_and] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_QMARK_QMARK] = ACTIONS(5484), - [anon_sym_on] = ACTIONS(5484), - [anon_sym_equals] = ACTIONS(5484), - [anon_sym_by] = ACTIONS(5484), - [anon_sym_as] = ACTIONS(5484), - [anon_sym_is] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_with] = ACTIONS(5484), - [aux_sym_preproc_if_token3] = ACTIONS(5484), - [aux_sym_preproc_else_token1] = ACTIONS(5484), - [aux_sym_preproc_elif_token1] = ACTIONS(5484), + [sym__identifier_token] = ACTIONS(3601), + [anon_sym_alias] = ACTIONS(3605), + [anon_sym_global] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(2719), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_file] = ACTIONS(3605), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(3605), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3605), + [anon_sym_unmanaged] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3605), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3605), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(3605), + [anon_sym_when] = ACTIONS(3605), + [anon_sym_from] = ACTIONS(3605), + [anon_sym_into] = ACTIONS(3605), + [anon_sym_join] = ACTIONS(3605), + [anon_sym_on] = ACTIONS(3605), + [anon_sym_equals] = ACTIONS(3605), + [anon_sym_let] = ACTIONS(3605), + [anon_sym_orderby] = ACTIONS(3605), + [anon_sym_ascending] = ACTIONS(3605), + [anon_sym_descending] = ACTIONS(3605), + [anon_sym_group] = ACTIONS(3605), + [anon_sym_by] = ACTIONS(3605), + [anon_sym_select] = ACTIONS(3605), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511860,56 +511895,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3543), [sym_preproc_define] = STATE(3543), [sym_preproc_undef] = STATE(3543), - [sym__identifier_token] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_alias] = ACTIONS(2985), - [anon_sym_global] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_abstract] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_file] = ACTIONS(2985), - [anon_sym_fixed] = ACTIONS(2985), - [anon_sym_internal] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_partial] = ACTIONS(2985), - [anon_sym_private] = ACTIONS(2985), - [anon_sym_protected] = ACTIONS(2985), - [anon_sym_public] = ACTIONS(2985), - [anon_sym_readonly] = ACTIONS(2985), - [anon_sym_required] = ACTIONS(2985), - [anon_sym_sealed] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2985), - [anon_sym_notnull] = ACTIONS(2985), - [anon_sym_unmanaged] = ACTIONS(2985), - [anon_sym_get] = ACTIONS(2985), - [anon_sym_set] = ACTIONS(2985), - [anon_sym_add] = ACTIONS(2985), - [anon_sym_remove] = ACTIONS(2985), - [anon_sym_init] = ACTIONS(2985), - [anon_sym_scoped] = ACTIONS(2985), - [anon_sym_var] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_when] = ACTIONS(2985), - [anon_sym_from] = ACTIONS(2985), - [anon_sym_into] = ACTIONS(2985), - [anon_sym_join] = ACTIONS(2985), - [anon_sym_on] = ACTIONS(2985), - [anon_sym_equals] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_orderby] = ACTIONS(2985), - [anon_sym_ascending] = ACTIONS(2985), - [anon_sym_descending] = ACTIONS(2985), - [anon_sym_group] = ACTIONS(2985), - [anon_sym_by] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2063), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_EQ_GT] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_when] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_and] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_QMARK_QMARK] = ACTIONS(2061), + [anon_sym_on] = ACTIONS(2061), + [anon_sym_equals] = ACTIONS(2061), + [anon_sym_by] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [aux_sym_preproc_if_token3] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2061), + [aux_sym_preproc_elif_token1] = ACTIONS(2061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511922,122 +511957,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3544] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6128), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3544), [sym_preproc_endregion] = STATE(3544), [sym_preproc_line] = STATE(3544), [sym_preproc_pragma] = STATE(3544), [sym_preproc_nullable] = STATE(3544), [sym_preproc_error] = STATE(3544), - [sym_preproc_warning] = STATE(3544), - [sym_preproc_define] = STATE(3544), - [sym_preproc_undef] = STATE(3544), - [sym__identifier_token] = ACTIONS(3593), - [anon_sym_alias] = ACTIONS(3597), - [anon_sym_global] = ACTIONS(3597), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(2719), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_file] = ACTIONS(3597), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(3597), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3597), - [anon_sym_unmanaged] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_this] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3597), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3597), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(3597), - [anon_sym_when] = ACTIONS(3597), - [anon_sym_from] = ACTIONS(3597), - [anon_sym_into] = ACTIONS(3597), - [anon_sym_join] = ACTIONS(3597), - [anon_sym_on] = ACTIONS(3597), - [anon_sym_equals] = ACTIONS(3597), - [anon_sym_let] = ACTIONS(3597), - [anon_sym_orderby] = ACTIONS(3597), - [anon_sym_ascending] = ACTIONS(3597), - [anon_sym_descending] = ACTIONS(3597), - [anon_sym_group] = ACTIONS(3597), - [anon_sym_by] = ACTIONS(3597), - [anon_sym_select] = ACTIONS(3597), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3545] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7671), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3545), - [sym_preproc_endregion] = STATE(3545), - [sym_preproc_line] = STATE(3545), - [sym_preproc_pragma] = STATE(3545), - [sym_preproc_nullable] = STATE(3545), - [sym_preproc_error] = STATE(3545), - [sym_preproc_warning] = STATE(3545), - [sym_preproc_define] = STATE(3545), - [sym_preproc_undef] = STATE(3545), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), + [sym_preproc_warning] = STATE(3544), + [sym_preproc_define] = STATE(3544), + [sym_preproc_undef] = STATE(3544), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5827), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_ref] = ACTIONS(4735), + [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), + [anon_sym_readonly] = ACTIONS(1125), + [anon_sym_in] = ACTIONS(1125), + [anon_sym_out] = ACTIONS(1125), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), + [anon_sym_this] = ACTIONS(1125), + [anon_sym_scoped] = ACTIONS(4737), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -512063,6 +512027,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3545] = { + [sym_preproc_region] = STATE(3545), + [sym_preproc_endregion] = STATE(3545), + [sym_preproc_line] = STATE(3545), + [sym_preproc_pragma] = STATE(3545), + [sym_preproc_nullable] = STATE(3545), + [sym_preproc_error] = STATE(3545), + [sym_preproc_warning] = STATE(3545), + [sym_preproc_define] = STATE(3545), + [sym_preproc_undef] = STATE(3545), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_COLON] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RBRACK] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_LT] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5498), + [anon_sym_in] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_BANG] = ACTIONS(5498), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5498), + [anon_sym_PERCENT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5496), + [anon_sym_PIPE] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_GT_GT_GT] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5496), + [anon_sym_BANG_EQ] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5498), + [anon_sym_EQ_GT] = ACTIONS(5496), + [anon_sym_switch] = ACTIONS(5496), + [anon_sym_when] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_PIPE_PIPE] = ACTIONS(5496), + [anon_sym_QMARK_QMARK] = ACTIONS(5496), + [anon_sym_on] = ACTIONS(5496), + [anon_sym_equals] = ACTIONS(5496), + [anon_sym_by] = ACTIONS(5496), + [anon_sym_as] = ACTIONS(5496), + [anon_sym_is] = ACTIONS(5496), + [anon_sym_DASH_GT] = ACTIONS(5496), + [anon_sym_with] = ACTIONS(5496), + [aux_sym_preproc_if_token3] = ACTIONS(5496), + [aux_sym_preproc_else_token1] = ACTIONS(5496), + [aux_sym_preproc_elif_token1] = ACTIONS(5496), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3546] = { [sym_preproc_region] = STATE(3546), [sym_preproc_endregion] = STATE(3546), @@ -512073,56 +512108,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3546), [sym_preproc_define] = STATE(3546), [sym_preproc_undef] = STATE(3546), - [sym__identifier_token] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_alias] = ACTIONS(3150), - [anon_sym_global] = ACTIONS(3150), - [anon_sym_unsafe] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_file] = ACTIONS(3150), - [anon_sym_fixed] = ACTIONS(3150), - [anon_sym_internal] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_partial] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_required] = ACTIONS(3150), - [anon_sym_sealed] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3150), - [anon_sym_notnull] = ACTIONS(3150), - [anon_sym_unmanaged] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_add] = ACTIONS(3150), - [anon_sym_remove] = ACTIONS(3150), - [anon_sym_init] = ACTIONS(3150), - [anon_sym_scoped] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_when] = ACTIONS(3150), - [anon_sym_from] = ACTIONS(3150), - [anon_sym_into] = ACTIONS(3150), - [anon_sym_join] = ACTIONS(3150), - [anon_sym_on] = ACTIONS(3150), - [anon_sym_equals] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_orderby] = ACTIONS(3150), - [anon_sym_ascending] = ACTIONS(3150), - [anon_sym_descending] = ACTIONS(3150), - [anon_sym_group] = ACTIONS(3150), - [anon_sym_by] = ACTIONS(3150), - [anon_sym_select] = ACTIONS(3150), - [aux_sym_preproc_if_token1] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_COMMA] = ACTIONS(5512), + [anon_sym_RBRACK] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5512), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_RBRACE] = ACTIONS(5512), + [anon_sym_LT] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5514), + [anon_sym_in] = ACTIONS(5512), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_BANG] = ACTIONS(5514), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5512), + [anon_sym_PIPE] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_GT_GT_GT] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5512), + [anon_sym_BANG_EQ] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5514), + [anon_sym_EQ_GT] = ACTIONS(5512), + [anon_sym_switch] = ACTIONS(5512), + [anon_sym_when] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_AMP_AMP] = ACTIONS(5512), + [anon_sym_PIPE_PIPE] = ACTIONS(5512), + [anon_sym_QMARK_QMARK] = ACTIONS(5512), + [anon_sym_on] = ACTIONS(5512), + [anon_sym_equals] = ACTIONS(5512), + [anon_sym_by] = ACTIONS(5512), + [anon_sym_as] = ACTIONS(5512), + [anon_sym_is] = ACTIONS(5512), + [anon_sym_DASH_GT] = ACTIONS(5512), + [anon_sym_with] = ACTIONS(5512), + [aux_sym_preproc_if_token3] = ACTIONS(5512), + [aux_sym_preproc_else_token1] = ACTIONS(5512), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512144,56 +512179,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3547), [sym_preproc_define] = STATE(3547), [sym_preproc_undef] = STATE(3547), - [anon_sym_SEMI] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_COLON] = ACTIONS(5176), - [anon_sym_COMMA] = ACTIONS(5176), - [anon_sym_RBRACK] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(5176), - [anon_sym_RBRACE] = ACTIONS(5176), - [anon_sym_LT] = ACTIONS(5178), - [anon_sym_GT] = ACTIONS(5178), - [anon_sym_in] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(5178), - [anon_sym_BANG] = ACTIONS(5178), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_PLUS] = ACTIONS(5178), - [anon_sym_DASH] = ACTIONS(5178), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_SLASH] = ACTIONS(5178), - [anon_sym_PERCENT] = ACTIONS(5176), - [anon_sym_CARET] = ACTIONS(5176), - [anon_sym_PIPE] = ACTIONS(5178), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LT_LT] = ACTIONS(5176), - [anon_sym_GT_GT] = ACTIONS(5178), - [anon_sym_GT_GT_GT] = ACTIONS(5176), - [anon_sym_EQ_EQ] = ACTIONS(5176), - [anon_sym_BANG_EQ] = ACTIONS(5176), - [anon_sym_GT_EQ] = ACTIONS(5176), - [anon_sym_LT_EQ] = ACTIONS(5176), - [anon_sym_DOT] = ACTIONS(5178), - [anon_sym_EQ_GT] = ACTIONS(5176), - [anon_sym_switch] = ACTIONS(5176), - [anon_sym_when] = ACTIONS(5176), - [anon_sym_DOT_DOT] = ACTIONS(5176), - [anon_sym_and] = ACTIONS(5176), - [anon_sym_or] = ACTIONS(5176), - [anon_sym_AMP_AMP] = ACTIONS(5176), - [anon_sym_PIPE_PIPE] = ACTIONS(5176), - [anon_sym_QMARK_QMARK] = ACTIONS(5176), - [anon_sym_on] = ACTIONS(5176), - [anon_sym_equals] = ACTIONS(5176), - [anon_sym_by] = ACTIONS(5176), - [anon_sym_as] = ACTIONS(5176), - [anon_sym_is] = ACTIONS(5176), - [anon_sym_DASH_GT] = ACTIONS(5176), - [anon_sym_with] = ACTIONS(5176), - [aux_sym_preproc_if_token3] = ACTIONS(5176), - [aux_sym_preproc_else_token1] = ACTIONS(5176), - [aux_sym_preproc_elif_token1] = ACTIONS(5176), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_RBRACK] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_in] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_EQ_GT] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_when] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_on] = ACTIONS(3881), + [anon_sym_equals] = ACTIONS(3881), + [anon_sym_by] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(3881), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), + [aux_sym_preproc_if_token3] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512206,24 +512241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3548] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6172), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3548), [sym_preproc_endregion] = STATE(3548), [sym_preproc_line] = STATE(3548), @@ -512233,38 +512250,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3548), [sym_preproc_define] = STATE(3548), [sym_preproc_undef] = STATE(3548), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5830), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_COLON] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(5488), + [anon_sym_RBRACK] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_RPAREN] = ACTIONS(5488), + [anon_sym_RBRACE] = ACTIONS(5488), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5490), + [anon_sym_in] = ACTIONS(5488), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_BANG] = ACTIONS(5490), + [anon_sym_PLUS_PLUS] = ACTIONS(5488), + [anon_sym_DASH_DASH] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5490), + [anon_sym_PERCENT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5488), + [anon_sym_PIPE] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_GT_GT_GT] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5488), + [anon_sym_BANG_EQ] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5490), + [anon_sym_EQ_GT] = ACTIONS(5488), + [anon_sym_switch] = ACTIONS(5488), + [anon_sym_when] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_AMP_AMP] = ACTIONS(5488), + [anon_sym_PIPE_PIPE] = ACTIONS(5488), + [anon_sym_QMARK_QMARK] = ACTIONS(5488), + [anon_sym_on] = ACTIONS(5488), + [anon_sym_equals] = ACTIONS(5488), + [anon_sym_by] = ACTIONS(5488), + [anon_sym_as] = ACTIONS(5488), + [anon_sym_is] = ACTIONS(5488), + [anon_sym_DASH_GT] = ACTIONS(5488), + [anon_sym_with] = ACTIONS(5488), + [aux_sym_preproc_if_token3] = ACTIONS(5488), + [aux_sym_preproc_else_token1] = ACTIONS(5488), + [aux_sym_preproc_elif_token1] = ACTIONS(5488), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512286,56 +512321,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3549), [sym_preproc_define] = STATE(3549), [sym_preproc_undef] = STATE(3549), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RBRACK] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_in] = ACTIONS(5212), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5214), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_GT_GT_GT] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5214), - [anon_sym_EQ_GT] = ACTIONS(5212), - [anon_sym_switch] = ACTIONS(5212), - [anon_sym_when] = ACTIONS(5212), - [anon_sym_DOT_DOT] = ACTIONS(5212), - [anon_sym_and] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_QMARK_QMARK] = ACTIONS(5212), - [anon_sym_on] = ACTIONS(5212), - [anon_sym_equals] = ACTIONS(5212), - [anon_sym_by] = ACTIONS(5212), - [anon_sym_as] = ACTIONS(5212), - [anon_sym_is] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [anon_sym_with] = ACTIONS(5212), - [aux_sym_preproc_if_token3] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_RBRACK] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_in] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_when] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_on] = ACTIONS(3881), + [anon_sym_equals] = ACTIONS(3881), + [anon_sym_by] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(3881), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), + [aux_sym_preproc_if_token3] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512348,24 +512383,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3550] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6170), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7385), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5964), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__lambda_parameters] = STATE(7534), + [sym_identifier] = STATE(5821), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3550), [sym_preproc_endregion] = STATE(3550), [sym_preproc_line] = STATE(3550), @@ -512375,22 +512412,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3550), [sym_preproc_define] = STATE(3550), [sym_preproc_undef] = STATE(3550), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5830), + [aux_sym__lambda_expression_init_repeat1] = STATE(5891), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(4733), - [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3816), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(5607), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_out] = ACTIONS(1117), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_this] = ACTIONS(1117), - [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(3021), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), @@ -512428,56 +512463,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3551), [sym_preproc_define] = STATE(3551), [sym_preproc_undef] = STATE(3551), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_COMMA] = ACTIONS(5216), - [anon_sym_RBRACK] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_in] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5218), - [anon_sym_BANG] = ACTIONS(5218), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5218), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5218), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5218), - [anon_sym_GT_GT_GT] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_DOT] = ACTIONS(5218), - [anon_sym_EQ_GT] = ACTIONS(5216), - [anon_sym_switch] = ACTIONS(5216), - [anon_sym_when] = ACTIONS(5216), - [anon_sym_DOT_DOT] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_QMARK_QMARK] = ACTIONS(5216), - [anon_sym_on] = ACTIONS(5216), - [anon_sym_equals] = ACTIONS(5216), - [anon_sym_by] = ACTIONS(5216), - [anon_sym_as] = ACTIONS(5216), - [anon_sym_is] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), - [anon_sym_with] = ACTIONS(5216), - [aux_sym_preproc_if_token3] = ACTIONS(5216), - [aux_sym_preproc_else_token1] = ACTIONS(5216), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), + [sym__identifier_token] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym_alias] = ACTIONS(5609), + [anon_sym_global] = ACTIONS(5609), + [anon_sym_unsafe] = ACTIONS(5609), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_abstract] = ACTIONS(5609), + [anon_sym_async] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_file] = ACTIONS(5609), + [anon_sym_fixed] = ACTIONS(5609), + [anon_sym_internal] = ACTIONS(5609), + [anon_sym_new] = ACTIONS(5609), + [anon_sym_override] = ACTIONS(5609), + [anon_sym_partial] = ACTIONS(5609), + [anon_sym_private] = ACTIONS(5609), + [anon_sym_protected] = ACTIONS(5609), + [anon_sym_public] = ACTIONS(5609), + [anon_sym_readonly] = ACTIONS(5609), + [anon_sym_required] = ACTIONS(5609), + [anon_sym_sealed] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_volatile] = ACTIONS(5609), + [anon_sym_where] = ACTIONS(5609), + [anon_sym_notnull] = ACTIONS(5609), + [anon_sym_unmanaged] = ACTIONS(5609), + [anon_sym_get] = ACTIONS(5609), + [anon_sym_set] = ACTIONS(5609), + [anon_sym_add] = ACTIONS(5609), + [anon_sym_remove] = ACTIONS(5609), + [anon_sym_init] = ACTIONS(5609), + [anon_sym_scoped] = ACTIONS(5609), + [anon_sym_var] = ACTIONS(5609), + [anon_sym_yield] = ACTIONS(5609), + [anon_sym_when] = ACTIONS(5609), + [anon_sym_from] = ACTIONS(5609), + [anon_sym_into] = ACTIONS(5609), + [anon_sym_join] = ACTIONS(5609), + [anon_sym_on] = ACTIONS(5609), + [anon_sym_equals] = ACTIONS(5609), + [anon_sym_let] = ACTIONS(5609), + [anon_sym_orderby] = ACTIONS(5609), + [anon_sym_ascending] = ACTIONS(5609), + [anon_sym_descending] = ACTIONS(5609), + [anon_sym_group] = ACTIONS(5609), + [anon_sym_by] = ACTIONS(5609), + [anon_sym_select] = ACTIONS(5609), + [aux_sym_preproc_if_token1] = ACTIONS(5611), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512499,56 +512534,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3552), [sym_preproc_define] = STATE(3552), [sym_preproc_undef] = STATE(3552), - [anon_sym_SEMI] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_COLON] = ACTIONS(5220), - [anon_sym_COMMA] = ACTIONS(5220), - [anon_sym_RBRACK] = ACTIONS(5220), - [anon_sym_LPAREN] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_in] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_BANG] = ACTIONS(5222), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5220), - [anon_sym_SLASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5220), - [anon_sym_CARET] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5220), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_GT_GT_GT] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_DOT] = ACTIONS(5222), - [anon_sym_EQ_GT] = ACTIONS(5220), - [anon_sym_switch] = ACTIONS(5220), - [anon_sym_when] = ACTIONS(5220), - [anon_sym_DOT_DOT] = ACTIONS(5220), - [anon_sym_and] = ACTIONS(5220), - [anon_sym_or] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_QMARK_QMARK] = ACTIONS(5220), - [anon_sym_on] = ACTIONS(5220), - [anon_sym_equals] = ACTIONS(5220), - [anon_sym_by] = ACTIONS(5220), - [anon_sym_as] = ACTIONS(5220), - [anon_sym_is] = ACTIONS(5220), - [anon_sym_DASH_GT] = ACTIONS(5220), - [anon_sym_with] = ACTIONS(5220), - [aux_sym_preproc_if_token3] = ACTIONS(5220), - [aux_sym_preproc_else_token1] = ACTIONS(5220), - [aux_sym_preproc_elif_token1] = ACTIONS(5220), + [anon_sym_SEMI] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_COMMA] = ACTIONS(5421), + [anon_sym_RBRACK] = ACTIONS(5421), + [anon_sym_LPAREN] = ACTIONS(5421), + [anon_sym_RPAREN] = ACTIONS(5421), + [anon_sym_RBRACE] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_in] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_BANG] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5423), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5423), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5423), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_GT_GT_GT] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5421), + [anon_sym_BANG_EQ] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5421), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_DOT] = ACTIONS(5423), + [anon_sym_EQ_GT] = ACTIONS(5421), + [anon_sym_switch] = ACTIONS(5421), + [anon_sym_when] = ACTIONS(5421), + [anon_sym_DOT_DOT] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_QMARK_QMARK] = ACTIONS(5421), + [anon_sym_on] = ACTIONS(5421), + [anon_sym_equals] = ACTIONS(5421), + [anon_sym_by] = ACTIONS(5421), + [anon_sym_as] = ACTIONS(5421), + [anon_sym_is] = ACTIONS(5421), + [anon_sym_DASH_GT] = ACTIONS(5421), + [anon_sym_with] = ACTIONS(5421), + [aux_sym_preproc_if_token3] = ACTIONS(5421), + [aux_sym_preproc_else_token1] = ACTIONS(5421), + [aux_sym_preproc_elif_token1] = ACTIONS(5421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512570,56 +512605,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3553), [sym_preproc_define] = STATE(3553), [sym_preproc_undef] = STATE(3553), - [anon_sym_SEMI] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_RBRACK] = ACTIONS(5144), - [anon_sym_LPAREN] = ACTIONS(5144), - [anon_sym_RPAREN] = ACTIONS(5144), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_in] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5146), - [anon_sym_BANG] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_GT_GT_GT] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_EQ_GT] = ACTIONS(5144), - [anon_sym_switch] = ACTIONS(5144), - [anon_sym_when] = ACTIONS(5144), - [anon_sym_DOT_DOT] = ACTIONS(5144), - [anon_sym_and] = ACTIONS(5144), - [anon_sym_or] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_QMARK_QMARK] = ACTIONS(5144), - [anon_sym_on] = ACTIONS(5144), - [anon_sym_equals] = ACTIONS(5144), - [anon_sym_by] = ACTIONS(5144), - [anon_sym_as] = ACTIONS(5144), - [anon_sym_is] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_with] = ACTIONS(5144), - [aux_sym_preproc_if_token3] = ACTIONS(5144), - [aux_sym_preproc_else_token1] = ACTIONS(5144), - [aux_sym_preproc_elif_token1] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_COLON] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(5613), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_in] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1997), + [anon_sym_switch] = ACTIONS(1997), + [anon_sym_when] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_and] = ACTIONS(1997), + [anon_sym_or] = ACTIONS(1997), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), + [anon_sym_on] = ACTIONS(1997), + [anon_sym_equals] = ACTIONS(1997), + [anon_sym_by] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_is] = ACTIONS(1997), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_with] = ACTIONS(1997), + [aux_sym_preproc_if_token3] = ACTIONS(1997), + [aux_sym_preproc_else_token1] = ACTIONS(1997), + [aux_sym_preproc_elif_token1] = ACTIONS(1997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512632,26 +512667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3554] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7736), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3554), [sym_preproc_endregion] = STATE(3554), [sym_preproc_line] = STATE(3554), @@ -512661,36 +512676,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3554), [sym_preproc_define] = STATE(3554), [sym_preproc_undef] = STATE(3554), - [aux_sym_function_pointer_type_repeat1] = STATE(3411), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_RBRACK] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_RPAREN] = ACTIONS(5417), + [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_in] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_EQ_GT] = ACTIONS(5417), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_when] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_on] = ACTIONS(5417), + [anon_sym_equals] = ACTIONS(5417), + [anon_sym_by] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5417), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), + [aux_sym_preproc_if_token3] = ACTIONS(5417), + [aux_sym_preproc_else_token1] = ACTIONS(5417), + [aux_sym_preproc_elif_token1] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512712,56 +512747,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3555), [sym_preproc_define] = STATE(3555), [sym_preproc_undef] = STATE(3555), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_in] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_CARET] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_LT_LT] = ACTIONS(5091), - [anon_sym_GT_GT] = ACTIONS(5093), - [anon_sym_GT_GT_GT] = ACTIONS(5091), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_GT_EQ] = ACTIONS(5091), - [anon_sym_LT_EQ] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_EQ_GT] = ACTIONS(5091), - [anon_sym_switch] = ACTIONS(5091), - [anon_sym_when] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5091), - [anon_sym_and] = ACTIONS(5091), - [anon_sym_or] = ACTIONS(5091), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_QMARK_QMARK] = ACTIONS(5091), - [anon_sym_on] = ACTIONS(5091), - [anon_sym_equals] = ACTIONS(5091), - [anon_sym_by] = ACTIONS(5091), - [anon_sym_as] = ACTIONS(5091), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_DASH_GT] = ACTIONS(5091), - [anon_sym_with] = ACTIONS(5091), - [aux_sym_preproc_if_token3] = ACTIONS(5091), - [aux_sym_preproc_else_token1] = ACTIONS(5091), - [aux_sym_preproc_elif_token1] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_RBRACK] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_RPAREN] = ACTIONS(5417), + [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_in] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_EQ_GT] = ACTIONS(5417), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_when] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_on] = ACTIONS(5417), + [anon_sym_equals] = ACTIONS(5417), + [anon_sym_by] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5417), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), + [aux_sym_preproc_if_token3] = ACTIONS(5417), + [aux_sym_preproc_else_token1] = ACTIONS(5417), + [aux_sym_preproc_elif_token1] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512774,6 +512809,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3556] = { + [sym_type_parameter_constraint] = STATE(6579), + [sym_constructor_constraint] = STATE(6678), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6523), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3556), [sym_preproc_endregion] = STATE(3556), [sym_preproc_line] = STATE(3556), @@ -512783,56 +512838,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3556), [sym_preproc_define] = STATE(3556), [sym_preproc_undef] = STATE(3556), - [anon_sym_EQ] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5617), - [anon_sym_DASH_EQ] = ACTIONS(5617), - [anon_sym_STAR_EQ] = ACTIONS(5617), - [anon_sym_SLASH_EQ] = ACTIONS(5617), - [anon_sym_PERCENT_EQ] = ACTIONS(5617), - [anon_sym_AMP_EQ] = ACTIONS(5617), - [anon_sym_CARET_EQ] = ACTIONS(5617), - [anon_sym_PIPE_EQ] = ACTIONS(5617), - [anon_sym_LT_LT_EQ] = ACTIONS(5617), - [anon_sym_GT_GT_EQ] = ACTIONS(5617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5617), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5617), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(5548), + [anon_sym_ref] = ACTIONS(5550), + [anon_sym_struct] = ACTIONS(5552), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(5554), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(5556), + [anon_sym_unmanaged] = ACTIONS(5556), + [anon_sym_scoped] = ACTIONS(5558), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512845,26 +512880,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3557] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7620), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_function_pointer_parameter] = STATE(7788), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7732), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3557), [sym_preproc_endregion] = STATE(3557), [sym_preproc_line] = STATE(3557), @@ -512874,36 +512889,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3557), [sym_preproc_define] = STATE(3557), [sym_preproc_undef] = STATE(3557), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5516), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(5518), - [anon_sym_out] = ACTIONS(5518), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512916,6 +512951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3558] = { + [sym_modifier] = STATE(3734), [sym_preproc_region] = STATE(3558), [sym_preproc_endregion] = STATE(3558), [sym_preproc_line] = STATE(3558), @@ -512925,55 +512961,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3558), [sym_preproc_define] = STATE(3558), [sym_preproc_undef] = STATE(3558), - [anon_sym_EQ] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5621), - [anon_sym_DASH_EQ] = ACTIONS(5621), - [anon_sym_STAR_EQ] = ACTIONS(5621), - [anon_sym_SLASH_EQ] = ACTIONS(5621), - [anon_sym_PERCENT_EQ] = ACTIONS(5621), - [anon_sym_AMP_EQ] = ACTIONS(5621), - [anon_sym_CARET_EQ] = ACTIONS(5621), - [anon_sym_PIPE_EQ] = ACTIONS(5621), - [anon_sym_LT_LT_EQ] = ACTIONS(5621), - [anon_sym_GT_GT_EQ] = ACTIONS(5621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5621), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5621), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3558), + [sym__identifier_token] = ACTIONS(5264), + [anon_sym_extern] = ACTIONS(5619), + [anon_sym_alias] = ACTIONS(5264), + [anon_sym_global] = ACTIONS(5264), + [anon_sym_unsafe] = ACTIONS(5619), + [anon_sym_static] = ACTIONS(5619), + [anon_sym_abstract] = ACTIONS(5619), + [anon_sym_async] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5619), + [anon_sym_file] = ACTIONS(5619), + [anon_sym_fixed] = ACTIONS(5619), + [anon_sym_internal] = ACTIONS(5619), + [anon_sym_new] = ACTIONS(5619), + [anon_sym_override] = ACTIONS(5619), + [anon_sym_partial] = ACTIONS(5619), + [anon_sym_private] = ACTIONS(5619), + [anon_sym_protected] = ACTIONS(5619), + [anon_sym_public] = ACTIONS(5619), + [anon_sym_readonly] = ACTIONS(5619), + [anon_sym_required] = ACTIONS(5619), + [anon_sym_sealed] = ACTIONS(5619), + [anon_sym_virtual] = ACTIONS(5619), + [anon_sym_volatile] = ACTIONS(5619), + [anon_sym_where] = ACTIONS(5264), + [anon_sym_notnull] = ACTIONS(5264), + [anon_sym_unmanaged] = ACTIONS(5264), + [anon_sym_get] = ACTIONS(5264), + [anon_sym_set] = ACTIONS(5264), + [anon_sym_add] = ACTIONS(5264), + [anon_sym_remove] = ACTIONS(5264), + [anon_sym_init] = ACTIONS(5264), + [anon_sym_scoped] = ACTIONS(5264), + [anon_sym_var] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_when] = ACTIONS(5264), + [anon_sym_from] = ACTIONS(5264), + [anon_sym_into] = ACTIONS(5264), + [anon_sym_join] = ACTIONS(5264), + [anon_sym_on] = ACTIONS(5264), + [anon_sym_equals] = ACTIONS(5264), + [anon_sym_let] = ACTIONS(5264), + [anon_sym_orderby] = ACTIONS(5264), + [anon_sym_ascending] = ACTIONS(5264), + [anon_sym_descending] = ACTIONS(5264), + [anon_sym_group] = ACTIONS(5264), + [anon_sym_by] = ACTIONS(5264), + [anon_sym_select] = ACTIONS(5264), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512995,55 +513030,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3559), [sym_preproc_define] = STATE(3559), [sym_preproc_undef] = STATE(3559), - [sym__identifier_token] = ACTIONS(5051), - [anon_sym_extern] = ACTIONS(5051), - [anon_sym_alias] = ACTIONS(5051), - [anon_sym_global] = ACTIONS(5051), - [anon_sym_unsafe] = ACTIONS(5051), - [anon_sym_static] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_async] = ACTIONS(5051), - [anon_sym_const] = ACTIONS(5051), - [anon_sym_file] = ACTIONS(5051), - [anon_sym_fixed] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_new] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_partial] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_readonly] = ACTIONS(5051), - [anon_sym_required] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_virtual] = ACTIONS(5051), - [anon_sym_volatile] = ACTIONS(5051), - [anon_sym_where] = ACTIONS(5051), - [anon_sym_notnull] = ACTIONS(5051), - [anon_sym_unmanaged] = ACTIONS(5051), - [anon_sym_get] = ACTIONS(5051), - [anon_sym_set] = ACTIONS(5051), - [anon_sym_add] = ACTIONS(5051), - [anon_sym_remove] = ACTIONS(5051), - [anon_sym_init] = ACTIONS(5051), - [anon_sym_scoped] = ACTIONS(5051), - [anon_sym_var] = ACTIONS(5051), - [anon_sym_yield] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_from] = ACTIONS(5051), - [anon_sym_into] = ACTIONS(5051), - [anon_sym_join] = ACTIONS(5051), - [anon_sym_on] = ACTIONS(5051), - [anon_sym_equals] = ACTIONS(5051), - [anon_sym_let] = ACTIONS(5051), - [anon_sym_orderby] = ACTIONS(5051), - [anon_sym_ascending] = ACTIONS(5051), - [anon_sym_descending] = ACTIONS(5051), - [anon_sym_group] = ACTIONS(5051), - [anon_sym_by] = ACTIONS(5051), - [anon_sym_select] = ACTIONS(5051), - [aux_sym_preproc_if_token1] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513056,25 +513091,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3560] = { - [sym_explicit_interface_specifier] = STATE(5945), - [sym__name] = STATE(6602), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7243), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3560), [sym_preproc_endregion] = STATE(3560), [sym_preproc_line] = STATE(3560), @@ -513084,36 +513100,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3560), [sym_preproc_define] = STATE(3560), [sym_preproc_undef] = STATE(3560), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4913), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5623), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_operator] = ACTIONS(5625), - [anon_sym_checked] = ACTIONS(5625), - [anon_sym_scoped] = ACTIONS(5627), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5628), + [anon_sym_DASH_EQ] = ACTIONS(5628), + [anon_sym_STAR_EQ] = ACTIONS(5628), + [anon_sym_SLASH_EQ] = ACTIONS(5628), + [anon_sym_PERCENT_EQ] = ACTIONS(5628), + [anon_sym_AMP_EQ] = ACTIONS(5628), + [anon_sym_CARET_EQ] = ACTIONS(5628), + [anon_sym_PIPE_EQ] = ACTIONS(5628), + [anon_sym_LT_LT_EQ] = ACTIONS(5628), + [anon_sym_GT_GT_EQ] = ACTIONS(5628), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5628), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5628), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513126,8 +513161,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3561] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2502), + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3561), [sym_preproc_endregion] = STATE(3561), [sym_preproc_line] = STATE(3561), @@ -513137,53 +513179,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3561), [sym_preproc_define] = STATE(3561), [sym_preproc_undef] = STATE(3561), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_in] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4898), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_CARET] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4896), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_GT_GT_GT] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4896), - [anon_sym_switch] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_QMARK_QMARK] = ACTIONS(4896), - [anon_sym_on] = ACTIONS(4896), - [anon_sym_equals] = ACTIONS(4896), - [anon_sym_by] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4896), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4896), - [aux_sym_preproc_if_token3] = ACTIONS(4896), - [aux_sym_preproc_else_token1] = ACTIONS(4896), - [aux_sym_preproc_elif_token1] = ACTIONS(4896), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3615), + [anon_sym_unmanaged] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3615), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_when] = ACTIONS(3615), + [sym_discard] = ACTIONS(3461), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_into] = ACTIONS(3615), + [anon_sym_join] = ACTIONS(3615), + [anon_sym_on] = ACTIONS(3615), + [anon_sym_equals] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_orderby] = ACTIONS(3615), + [anon_sym_ascending] = ACTIONS(3615), + [anon_sym_descending] = ACTIONS(3615), + [anon_sym_group] = ACTIONS(3615), + [anon_sym_by] = ACTIONS(3615), + [anon_sym_select] = ACTIONS(3615), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513196,6 +513231,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3562] = { + [sym_explicit_interface_specifier] = STATE(5951), + [sym__name] = STATE(6589), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7244), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3562), [sym_preproc_endregion] = STATE(3562), [sym_preproc_line] = STATE(3562), @@ -513205,109 +513259,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3562), [sym_preproc_define] = STATE(3562), [sym_preproc_undef] = STATE(3562), - [sym__identifier_token] = ACTIONS(4979), - [anon_sym_extern] = ACTIONS(4979), - [anon_sym_alias] = ACTIONS(4979), - [anon_sym_global] = ACTIONS(4979), - [anon_sym_unsafe] = ACTIONS(4979), - [anon_sym_static] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_async] = ACTIONS(4979), - [anon_sym_const] = ACTIONS(4979), - [anon_sym_file] = ACTIONS(4979), - [anon_sym_fixed] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_new] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_partial] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_readonly] = ACTIONS(4979), - [anon_sym_required] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_virtual] = ACTIONS(4979), - [anon_sym_volatile] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_notnull] = ACTIONS(4979), - [anon_sym_unmanaged] = ACTIONS(4979), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_add] = ACTIONS(4979), - [anon_sym_remove] = ACTIONS(4979), - [anon_sym_init] = ACTIONS(4979), - [anon_sym_scoped] = ACTIONS(4979), - [anon_sym_var] = ACTIONS(4979), - [anon_sym_yield] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4979), - [anon_sym_into] = ACTIONS(4979), - [anon_sym_join] = ACTIONS(4979), - [anon_sym_on] = ACTIONS(4979), - [anon_sym_equals] = ACTIONS(4979), - [anon_sym_let] = ACTIONS(4979), - [anon_sym_orderby] = ACTIONS(4979), - [anon_sym_ascending] = ACTIONS(4979), - [anon_sym_descending] = ACTIONS(4979), - [anon_sym_group] = ACTIONS(4979), - [anon_sym_by] = ACTIONS(4979), - [anon_sym_select] = ACTIONS(4979), - [aux_sym_preproc_if_token1] = ACTIONS(4981), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3563] = { - [sym_explicit_interface_specifier] = STATE(5945), - [sym__name] = STATE(6602), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7176), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3563), - [sym_preproc_endregion] = STATE(3563), - [sym_preproc_line] = STATE(3563), - [sym_preproc_pragma] = STATE(3563), - [sym_preproc_nullable] = STATE(3563), - [sym_preproc_error] = STATE(3563), - [sym_preproc_warning] = STATE(3563), - [sym_preproc_define] = STATE(3563), - [sym_preproc_undef] = STATE(3563), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4913), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(4904), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5623), + [anon_sym_ref] = ACTIONS(5630), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_operator] = ACTIONS(5625), - [anon_sym_checked] = ACTIONS(5625), - [anon_sym_scoped] = ACTIONS(5627), + [anon_sym_operator] = ACTIONS(5632), + [anon_sym_checked] = ACTIONS(5632), + [anon_sym_scoped] = ACTIONS(5634), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), @@ -513335,16 +513300,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3563] = { + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2500), + [sym_preproc_region] = STATE(3563), + [sym_preproc_endregion] = STATE(3563), + [sym_preproc_line] = STATE(3563), + [sym_preproc_pragma] = STATE(3563), + [sym_preproc_nullable] = STATE(3563), + [sym_preproc_error] = STATE(3563), + [sym_preproc_warning] = STATE(3563), + [sym_preproc_define] = STATE(3563), + [sym_preproc_undef] = STATE(3563), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_in] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_PERCENT] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4875), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_GT_GT_GT] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4875), + [anon_sym_switch] = ACTIONS(4875), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_QMARK_QMARK] = ACTIONS(4875), + [anon_sym_on] = ACTIONS(4875), + [anon_sym_equals] = ACTIONS(4875), + [anon_sym_by] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4875), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4875), + [aux_sym_preproc_if_token3] = ACTIONS(4875), + [aux_sym_preproc_else_token1] = ACTIONS(4875), + [aux_sym_preproc_elif_token1] = ACTIONS(4875), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3564] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2500), [sym_preproc_region] = STATE(3564), [sym_preproc_endregion] = STATE(3564), [sym_preproc_line] = STATE(3564), @@ -513354,46 +513382,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3564), [sym_preproc_define] = STATE(3564), [sym_preproc_undef] = STATE(3564), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3615), - [anon_sym_global] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3615), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3615), - [anon_sym_unmanaged] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3615), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3615), - [anon_sym_when] = ACTIONS(3615), - [sym_discard] = ACTIONS(3461), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3615), - [anon_sym_into] = ACTIONS(3615), - [anon_sym_join] = ACTIONS(3615), - [anon_sym_on] = ACTIONS(3615), - [anon_sym_equals] = ACTIONS(3615), - [anon_sym_let] = ACTIONS(3615), - [anon_sym_orderby] = ACTIONS(3615), - [anon_sym_ascending] = ACTIONS(3615), - [anon_sym_descending] = ACTIONS(3615), - [anon_sym_group] = ACTIONS(3615), - [anon_sym_by] = ACTIONS(3615), - [anon_sym_select] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_GT_GT_GT] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4908), + [anon_sym_switch] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_QMARK_QMARK] = ACTIONS(4908), + [anon_sym_on] = ACTIONS(4908), + [anon_sym_equals] = ACTIONS(4908), + [anon_sym_by] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4908), + [aux_sym_preproc_if_token3] = ACTIONS(4908), + [aux_sym_preproc_else_token1] = ACTIONS(4908), + [aux_sym_preproc_elif_token1] = ACTIONS(4908), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513415,55 +513450,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3565), [sym_preproc_define] = STATE(3565), [sym_preproc_undef] = STATE(3565), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_get] = ACTIONS(4747), - [anon_sym_set] = ACTIONS(4747), - [anon_sym_add] = ACTIONS(4747), - [anon_sym_remove] = ACTIONS(4747), - [anon_sym_init] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), + [sym__identifier_token] = ACTIONS(4807), + [anon_sym_extern] = ACTIONS(4807), + [anon_sym_alias] = ACTIONS(4807), + [anon_sym_global] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4809), + [anon_sym_abstract] = ACTIONS(4807), + [anon_sym_async] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4807), + [anon_sym_file] = ACTIONS(4807), + [anon_sym_fixed] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_new] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_partial] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_protected] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_readonly] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_sealed] = ACTIONS(4807), + [anon_sym_virtual] = ACTIONS(4807), + [anon_sym_volatile] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4807), + [anon_sym_notnull] = ACTIONS(4807), + [anon_sym_unmanaged] = ACTIONS(4807), + [anon_sym_get] = ACTIONS(4807), + [anon_sym_set] = ACTIONS(4807), + [anon_sym_add] = ACTIONS(4807), + [anon_sym_remove] = ACTIONS(4807), + [anon_sym_init] = ACTIONS(4807), + [anon_sym_scoped] = ACTIONS(4807), + [anon_sym_var] = ACTIONS(4807), + [anon_sym_yield] = ACTIONS(4807), + [anon_sym_when] = ACTIONS(4807), + [anon_sym_from] = ACTIONS(4807), + [anon_sym_into] = ACTIONS(4807), + [anon_sym_join] = ACTIONS(4807), + [anon_sym_on] = ACTIONS(4807), + [anon_sym_equals] = ACTIONS(4807), + [anon_sym_let] = ACTIONS(4807), + [anon_sym_orderby] = ACTIONS(4807), + [anon_sym_ascending] = ACTIONS(4807), + [anon_sym_descending] = ACTIONS(4807), + [anon_sym_group] = ACTIONS(4807), + [anon_sym_by] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [aux_sym_preproc_if_token1] = ACTIONS(4809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513485,55 +513520,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3566), [sym_preproc_define] = STATE(3566), [sym_preproc_undef] = STATE(3566), - [anon_sym_EQ] = ACTIONS(5631), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5633), - [anon_sym_DASH_EQ] = ACTIONS(5633), - [anon_sym_STAR_EQ] = ACTIONS(5633), - [anon_sym_SLASH_EQ] = ACTIONS(5633), - [anon_sym_PERCENT_EQ] = ACTIONS(5633), - [anon_sym_AMP_EQ] = ACTIONS(5633), - [anon_sym_CARET_EQ] = ACTIONS(5633), - [anon_sym_PIPE_EQ] = ACTIONS(5633), - [anon_sym_LT_LT_EQ] = ACTIONS(5633), - [anon_sym_GT_GT_EQ] = ACTIONS(5633), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5633), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5633), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(5055), + [anon_sym_extern] = ACTIONS(5055), + [anon_sym_alias] = ACTIONS(5055), + [anon_sym_global] = ACTIONS(5055), + [anon_sym_unsafe] = ACTIONS(5055), + [anon_sym_static] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_async] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5055), + [anon_sym_file] = ACTIONS(5055), + [anon_sym_fixed] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_new] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_partial] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_readonly] = ACTIONS(5055), + [anon_sym_required] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_virtual] = ACTIONS(5055), + [anon_sym_volatile] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_notnull] = ACTIONS(5055), + [anon_sym_unmanaged] = ACTIONS(5055), + [anon_sym_get] = ACTIONS(5055), + [anon_sym_set] = ACTIONS(5055), + [anon_sym_add] = ACTIONS(5055), + [anon_sym_remove] = ACTIONS(5055), + [anon_sym_init] = ACTIONS(5055), + [anon_sym_scoped] = ACTIONS(5055), + [anon_sym_var] = ACTIONS(5055), + [anon_sym_yield] = ACTIONS(5055), + [anon_sym_when] = ACTIONS(5055), + [anon_sym_from] = ACTIONS(5055), + [anon_sym_into] = ACTIONS(5055), + [anon_sym_join] = ACTIONS(5055), + [anon_sym_on] = ACTIONS(5055), + [anon_sym_equals] = ACTIONS(5055), + [anon_sym_let] = ACTIONS(5055), + [anon_sym_orderby] = ACTIONS(5055), + [anon_sym_ascending] = ACTIONS(5055), + [anon_sym_descending] = ACTIONS(5055), + [anon_sym_group] = ACTIONS(5055), + [anon_sym_by] = ACTIONS(5055), + [anon_sym_select] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5057), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513546,26 +513581,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3567] = { - [sym_parameter_list] = STATE(7150), - [sym_block] = STATE(3154), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6125), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_parameter_list] = STATE(7307), + [sym_block] = STATE(3124), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6184), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3567), [sym_preproc_endregion] = STATE(3567), [sym_preproc_line] = STATE(3567), @@ -513578,15 +513613,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(3816), [anon_sym_ref] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(5635), + [anon_sym_LBRACE] = ACTIONS(5638), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_STAR] = ACTIONS(5640), [anon_sym_scoped] = ACTIONS(3021), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), @@ -513616,7 +513651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3568] = { - [sym_modifier] = STATE(3702), [sym_preproc_region] = STATE(3568), [sym_preproc_endregion] = STATE(3568), [sym_preproc_line] = STATE(3568), @@ -513626,54 +513660,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3568), [sym_preproc_define] = STATE(3568), [sym_preproc_undef] = STATE(3568), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3568), - [sym__identifier_token] = ACTIONS(5266), - [anon_sym_extern] = ACTIONS(5639), - [anon_sym_alias] = ACTIONS(5266), - [anon_sym_global] = ACTIONS(5266), - [anon_sym_unsafe] = ACTIONS(5639), - [anon_sym_static] = ACTIONS(5639), - [anon_sym_abstract] = ACTIONS(5639), - [anon_sym_async] = ACTIONS(5639), - [anon_sym_const] = ACTIONS(5639), - [anon_sym_file] = ACTIONS(5639), - [anon_sym_fixed] = ACTIONS(5639), - [anon_sym_internal] = ACTIONS(5639), - [anon_sym_new] = ACTIONS(5639), - [anon_sym_override] = ACTIONS(5639), - [anon_sym_partial] = ACTIONS(5639), - [anon_sym_private] = ACTIONS(5639), - [anon_sym_protected] = ACTIONS(5639), - [anon_sym_public] = ACTIONS(5639), - [anon_sym_readonly] = ACTIONS(5639), - [anon_sym_required] = ACTIONS(5639), - [anon_sym_sealed] = ACTIONS(5639), - [anon_sym_virtual] = ACTIONS(5639), - [anon_sym_volatile] = ACTIONS(5639), - [anon_sym_where] = ACTIONS(5266), - [anon_sym_notnull] = ACTIONS(5266), - [anon_sym_unmanaged] = ACTIONS(5266), - [anon_sym_get] = ACTIONS(5266), - [anon_sym_set] = ACTIONS(5266), - [anon_sym_add] = ACTIONS(5266), - [anon_sym_remove] = ACTIONS(5266), - [anon_sym_init] = ACTIONS(5266), - [anon_sym_scoped] = ACTIONS(5266), - [anon_sym_var] = ACTIONS(5266), - [anon_sym_yield] = ACTIONS(5266), - [anon_sym_when] = ACTIONS(5266), - [anon_sym_from] = ACTIONS(5266), - [anon_sym_into] = ACTIONS(5266), - [anon_sym_join] = ACTIONS(5266), - [anon_sym_on] = ACTIONS(5266), - [anon_sym_equals] = ACTIONS(5266), - [anon_sym_let] = ACTIONS(5266), - [anon_sym_orderby] = ACTIONS(5266), - [anon_sym_ascending] = ACTIONS(5266), - [anon_sym_descending] = ACTIONS(5266), - [anon_sym_group] = ACTIONS(5266), - [anon_sym_by] = ACTIONS(5266), - [anon_sym_select] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5644), + [anon_sym_DASH_EQ] = ACTIONS(5644), + [anon_sym_STAR_EQ] = ACTIONS(5644), + [anon_sym_SLASH_EQ] = ACTIONS(5644), + [anon_sym_PERCENT_EQ] = ACTIONS(5644), + [anon_sym_AMP_EQ] = ACTIONS(5644), + [anon_sym_CARET_EQ] = ACTIONS(5644), + [anon_sym_PIPE_EQ] = ACTIONS(5644), + [anon_sym_LT_LT_EQ] = ACTIONS(5644), + [anon_sym_GT_GT_EQ] = ACTIONS(5644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5644), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_if_token3] = ACTIONS(4898), + [aux_sym_preproc_else_token1] = ACTIONS(4898), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513695,55 +513730,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3569), [sym_preproc_define] = STATE(3569), [sym_preproc_undef] = STATE(3569), - [sym__identifier_token] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_global] = ACTIONS(5011), - [anon_sym_unsafe] = ACTIONS(5011), - [anon_sym_static] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_async] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_file] = ACTIONS(5011), - [anon_sym_fixed] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_new] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_partial] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_readonly] = ACTIONS(5011), - [anon_sym_required] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_virtual] = ACTIONS(5011), - [anon_sym_volatile] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_notnull] = ACTIONS(5011), - [anon_sym_unmanaged] = ACTIONS(5011), - [anon_sym_get] = ACTIONS(5011), - [anon_sym_set] = ACTIONS(5011), - [anon_sym_add] = ACTIONS(5011), - [anon_sym_remove] = ACTIONS(5011), - [anon_sym_init] = ACTIONS(5011), - [anon_sym_scoped] = ACTIONS(5011), - [anon_sym_var] = ACTIONS(5011), - [anon_sym_yield] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), - [anon_sym_from] = ACTIONS(5011), - [anon_sym_into] = ACTIONS(5011), - [anon_sym_join] = ACTIONS(5011), - [anon_sym_on] = ACTIONS(5011), - [anon_sym_equals] = ACTIONS(5011), - [anon_sym_let] = ACTIONS(5011), - [anon_sym_orderby] = ACTIONS(5011), - [anon_sym_ascending] = ACTIONS(5011), - [anon_sym_descending] = ACTIONS(5011), - [anon_sym_group] = ACTIONS(5011), - [anon_sym_by] = ACTIONS(5011), - [anon_sym_select] = ACTIONS(5011), - [aux_sym_preproc_if_token1] = ACTIONS(5013), + [sym__identifier_token] = ACTIONS(5101), + [anon_sym_extern] = ACTIONS(5101), + [anon_sym_alias] = ACTIONS(5101), + [anon_sym_global] = ACTIONS(5101), + [anon_sym_unsafe] = ACTIONS(5101), + [anon_sym_static] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_async] = ACTIONS(5101), + [anon_sym_const] = ACTIONS(5101), + [anon_sym_file] = ACTIONS(5101), + [anon_sym_fixed] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_new] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_partial] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_readonly] = ACTIONS(5101), + [anon_sym_required] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_virtual] = ACTIONS(5101), + [anon_sym_volatile] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_notnull] = ACTIONS(5101), + [anon_sym_unmanaged] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_add] = ACTIONS(5101), + [anon_sym_remove] = ACTIONS(5101), + [anon_sym_init] = ACTIONS(5101), + [anon_sym_scoped] = ACTIONS(5101), + [anon_sym_var] = ACTIONS(5101), + [anon_sym_yield] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_from] = ACTIONS(5101), + [anon_sym_into] = ACTIONS(5101), + [anon_sym_join] = ACTIONS(5101), + [anon_sym_on] = ACTIONS(5101), + [anon_sym_equals] = ACTIONS(5101), + [anon_sym_let] = ACTIONS(5101), + [anon_sym_orderby] = ACTIONS(5101), + [anon_sym_ascending] = ACTIONS(5101), + [anon_sym_descending] = ACTIONS(5101), + [anon_sym_group] = ACTIONS(5101), + [anon_sym_by] = ACTIONS(5101), + [anon_sym_select] = ACTIONS(5101), + [aux_sym_preproc_if_token1] = ACTIONS(5103), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513765,55 +513800,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3570), [sym_preproc_define] = STATE(3570), [sym_preproc_undef] = STATE(3570), - [anon_sym_EQ] = ACTIONS(5603), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5642), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5605), - [anon_sym_DASH_EQ] = ACTIONS(5605), - [anon_sym_STAR_EQ] = ACTIONS(5605), - [anon_sym_SLASH_EQ] = ACTIONS(5605), - [anon_sym_PERCENT_EQ] = ACTIONS(5605), - [anon_sym_AMP_EQ] = ACTIONS(5605), - [anon_sym_CARET_EQ] = ACTIONS(5605), - [anon_sym_PIPE_EQ] = ACTIONS(5605), - [anon_sym_LT_LT_EQ] = ACTIONS(5605), - [anon_sym_GT_GT_EQ] = ACTIONS(5605), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5605), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5605), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_get] = ACTIONS(4743), + [anon_sym_set] = ACTIONS(4743), + [anon_sym_add] = ACTIONS(4743), + [anon_sym_remove] = ACTIONS(4743), + [anon_sym_init] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513835,55 +513870,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3571), [sym_preproc_define] = STATE(3571), [sym_preproc_undef] = STATE(3571), - [sym__identifier_token] = ACTIONS(4805), - [anon_sym_extern] = ACTIONS(4805), - [anon_sym_alias] = ACTIONS(4805), - [anon_sym_global] = ACTIONS(4805), - [anon_sym_unsafe] = ACTIONS(4805), - [anon_sym_static] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_abstract] = ACTIONS(4805), - [anon_sym_async] = ACTIONS(4805), - [anon_sym_const] = ACTIONS(4805), - [anon_sym_file] = ACTIONS(4805), - [anon_sym_fixed] = ACTIONS(4805), - [anon_sym_internal] = ACTIONS(4805), - [anon_sym_new] = ACTIONS(4805), - [anon_sym_override] = ACTIONS(4805), - [anon_sym_partial] = ACTIONS(4805), - [anon_sym_private] = ACTIONS(4805), - [anon_sym_protected] = ACTIONS(4805), - [anon_sym_public] = ACTIONS(4805), - [anon_sym_readonly] = ACTIONS(4805), - [anon_sym_required] = ACTIONS(4805), - [anon_sym_sealed] = ACTIONS(4805), - [anon_sym_virtual] = ACTIONS(4805), - [anon_sym_volatile] = ACTIONS(4805), - [anon_sym_where] = ACTIONS(4805), - [anon_sym_notnull] = ACTIONS(4805), - [anon_sym_unmanaged] = ACTIONS(4805), - [anon_sym_get] = ACTIONS(4805), - [anon_sym_set] = ACTIONS(4805), - [anon_sym_add] = ACTIONS(4805), - [anon_sym_remove] = ACTIONS(4805), - [anon_sym_init] = ACTIONS(4805), - [anon_sym_scoped] = ACTIONS(4805), - [anon_sym_var] = ACTIONS(4805), - [anon_sym_yield] = ACTIONS(4805), - [anon_sym_when] = ACTIONS(4805), - [anon_sym_from] = ACTIONS(4805), - [anon_sym_into] = ACTIONS(4805), - [anon_sym_join] = ACTIONS(4805), - [anon_sym_on] = ACTIONS(4805), - [anon_sym_equals] = ACTIONS(4805), - [anon_sym_let] = ACTIONS(4805), - [anon_sym_orderby] = ACTIONS(4805), - [anon_sym_ascending] = ACTIONS(4805), - [anon_sym_descending] = ACTIONS(4805), - [anon_sym_group] = ACTIONS(4805), - [anon_sym_by] = ACTIONS(4805), - [anon_sym_select] = ACTIONS(4805), - [aux_sym_preproc_if_token1] = ACTIONS(4807), + [sym__identifier_token] = ACTIONS(5059), + [anon_sym_extern] = ACTIONS(5059), + [anon_sym_alias] = ACTIONS(5059), + [anon_sym_global] = ACTIONS(5059), + [anon_sym_unsafe] = ACTIONS(5059), + [anon_sym_static] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_async] = ACTIONS(5059), + [anon_sym_const] = ACTIONS(5059), + [anon_sym_file] = ACTIONS(5059), + [anon_sym_fixed] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_new] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_partial] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_readonly] = ACTIONS(5059), + [anon_sym_required] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_virtual] = ACTIONS(5059), + [anon_sym_volatile] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_notnull] = ACTIONS(5059), + [anon_sym_unmanaged] = ACTIONS(5059), + [anon_sym_get] = ACTIONS(5059), + [anon_sym_set] = ACTIONS(5059), + [anon_sym_add] = ACTIONS(5059), + [anon_sym_remove] = ACTIONS(5059), + [anon_sym_init] = ACTIONS(5059), + [anon_sym_scoped] = ACTIONS(5059), + [anon_sym_var] = ACTIONS(5059), + [anon_sym_yield] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_from] = ACTIONS(5059), + [anon_sym_into] = ACTIONS(5059), + [anon_sym_join] = ACTIONS(5059), + [anon_sym_on] = ACTIONS(5059), + [anon_sym_equals] = ACTIONS(5059), + [anon_sym_let] = ACTIONS(5059), + [anon_sym_orderby] = ACTIONS(5059), + [anon_sym_ascending] = ACTIONS(5059), + [anon_sym_descending] = ACTIONS(5059), + [anon_sym_group] = ACTIONS(5059), + [anon_sym_by] = ACTIONS(5059), + [anon_sym_select] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513905,55 +513940,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3572), [sym_preproc_define] = STATE(3572), [sym_preproc_undef] = STATE(3572), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(5644), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5646), - [anon_sym_DASH_EQ] = ACTIONS(5646), - [anon_sym_STAR_EQ] = ACTIONS(5646), - [anon_sym_SLASH_EQ] = ACTIONS(5646), - [anon_sym_PERCENT_EQ] = ACTIONS(5646), - [anon_sym_AMP_EQ] = ACTIONS(5646), - [anon_sym_CARET_EQ] = ACTIONS(5646), - [anon_sym_PIPE_EQ] = ACTIONS(5646), - [anon_sym_LT_LT_EQ] = ACTIONS(5646), - [anon_sym_GT_GT_EQ] = ACTIONS(5646), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5646), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5646), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5648), + [anon_sym_DASH_EQ] = ACTIONS(5648), + [anon_sym_STAR_EQ] = ACTIONS(5648), + [anon_sym_SLASH_EQ] = ACTIONS(5648), + [anon_sym_PERCENT_EQ] = ACTIONS(5648), + [anon_sym_AMP_EQ] = ACTIONS(5648), + [anon_sym_CARET_EQ] = ACTIONS(5648), + [anon_sym_PIPE_EQ] = ACTIONS(5648), + [anon_sym_LT_LT_EQ] = ACTIONS(5648), + [anon_sym_GT_GT_EQ] = ACTIONS(5648), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5648), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5648), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513975,55 +514010,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3573), [sym_preproc_define] = STATE(3573), [sym_preproc_undef] = STATE(3573), - [sym__identifier_token] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym_alias] = ACTIONS(4852), - [anon_sym_global] = ACTIONS(4852), - [anon_sym_unsafe] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_async] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_file] = ACTIONS(4852), - [anon_sym_fixed] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_new] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_partial] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_readonly] = ACTIONS(4852), - [anon_sym_required] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_notnull] = ACTIONS(4852), - [anon_sym_unmanaged] = ACTIONS(4852), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_add] = ACTIONS(4852), - [anon_sym_remove] = ACTIONS(4852), - [anon_sym_init] = ACTIONS(4852), - [anon_sym_scoped] = ACTIONS(4852), - [anon_sym_var] = ACTIONS(4852), - [anon_sym_yield] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_from] = ACTIONS(4852), - [anon_sym_into] = ACTIONS(4852), - [anon_sym_join] = ACTIONS(4852), - [anon_sym_on] = ACTIONS(4852), - [anon_sym_equals] = ACTIONS(4852), - [anon_sym_let] = ACTIONS(4852), - [anon_sym_orderby] = ACTIONS(4852), - [anon_sym_ascending] = ACTIONS(4852), - [anon_sym_descending] = ACTIONS(4852), - [anon_sym_group] = ACTIONS(4852), - [anon_sym_by] = ACTIONS(4852), - [anon_sym_select] = ACTIONS(4852), - [aux_sym_preproc_if_token1] = ACTIONS(4854), + [anon_sym_EQ] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5590), + [anon_sym_DASH_EQ] = ACTIONS(5590), + [anon_sym_STAR_EQ] = ACTIONS(5590), + [anon_sym_SLASH_EQ] = ACTIONS(5590), + [anon_sym_PERCENT_EQ] = ACTIONS(5590), + [anon_sym_AMP_EQ] = ACTIONS(5590), + [anon_sym_CARET_EQ] = ACTIONS(5590), + [anon_sym_PIPE_EQ] = ACTIONS(5590), + [anon_sym_LT_LT_EQ] = ACTIONS(5590), + [anon_sym_GT_GT_EQ] = ACTIONS(5590), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5590), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5590), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514045,55 +514080,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3574), [sym_preproc_define] = STATE(3574), [sym_preproc_undef] = STATE(3574), - [sym__identifier_token] = ACTIONS(4811), - [anon_sym_extern] = ACTIONS(4811), - [anon_sym_alias] = ACTIONS(4811), - [anon_sym_global] = ACTIONS(4811), - [anon_sym_unsafe] = ACTIONS(4811), - [anon_sym_static] = ACTIONS(4811), - [anon_sym_LBRACK] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4811), - [anon_sym_async] = ACTIONS(4811), - [anon_sym_const] = ACTIONS(4811), - [anon_sym_file] = ACTIONS(4811), - [anon_sym_fixed] = ACTIONS(4811), - [anon_sym_internal] = ACTIONS(4811), - [anon_sym_new] = ACTIONS(4811), - [anon_sym_override] = ACTIONS(4811), - [anon_sym_partial] = ACTIONS(4811), - [anon_sym_private] = ACTIONS(4811), - [anon_sym_protected] = ACTIONS(4811), - [anon_sym_public] = ACTIONS(4811), - [anon_sym_readonly] = ACTIONS(4811), - [anon_sym_required] = ACTIONS(4811), - [anon_sym_sealed] = ACTIONS(4811), - [anon_sym_virtual] = ACTIONS(4811), - [anon_sym_volatile] = ACTIONS(4811), - [anon_sym_where] = ACTIONS(4811), - [anon_sym_notnull] = ACTIONS(4811), - [anon_sym_unmanaged] = ACTIONS(4811), - [anon_sym_get] = ACTIONS(4811), - [anon_sym_set] = ACTIONS(4811), - [anon_sym_add] = ACTIONS(4811), - [anon_sym_remove] = ACTIONS(4811), - [anon_sym_init] = ACTIONS(4811), - [anon_sym_scoped] = ACTIONS(4811), - [anon_sym_var] = ACTIONS(4811), - [anon_sym_yield] = ACTIONS(4811), - [anon_sym_when] = ACTIONS(4811), - [anon_sym_from] = ACTIONS(4811), - [anon_sym_into] = ACTIONS(4811), - [anon_sym_join] = ACTIONS(4811), - [anon_sym_on] = ACTIONS(4811), - [anon_sym_equals] = ACTIONS(4811), - [anon_sym_let] = ACTIONS(4811), - [anon_sym_orderby] = ACTIONS(4811), - [anon_sym_ascending] = ACTIONS(4811), - [anon_sym_descending] = ACTIONS(4811), - [anon_sym_group] = ACTIONS(4811), - [anon_sym_by] = ACTIONS(4811), - [anon_sym_select] = ACTIONS(4811), - [aux_sym_preproc_if_token1] = ACTIONS(4813), + [sym__identifier_token] = ACTIONS(4823), + [anon_sym_extern] = ACTIONS(4823), + [anon_sym_alias] = ACTIONS(4823), + [anon_sym_global] = ACTIONS(4823), + [anon_sym_unsafe] = ACTIONS(4823), + [anon_sym_static] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4825), + [anon_sym_abstract] = ACTIONS(4823), + [anon_sym_async] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_file] = ACTIONS(4823), + [anon_sym_fixed] = ACTIONS(4823), + [anon_sym_internal] = ACTIONS(4823), + [anon_sym_new] = ACTIONS(4823), + [anon_sym_override] = ACTIONS(4823), + [anon_sym_partial] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(4823), + [anon_sym_protected] = ACTIONS(4823), + [anon_sym_public] = ACTIONS(4823), + [anon_sym_readonly] = ACTIONS(4823), + [anon_sym_required] = ACTIONS(4823), + [anon_sym_sealed] = ACTIONS(4823), + [anon_sym_virtual] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_where] = ACTIONS(4823), + [anon_sym_notnull] = ACTIONS(4823), + [anon_sym_unmanaged] = ACTIONS(4823), + [anon_sym_get] = ACTIONS(4823), + [anon_sym_set] = ACTIONS(4823), + [anon_sym_add] = ACTIONS(4823), + [anon_sym_remove] = ACTIONS(4823), + [anon_sym_init] = ACTIONS(4823), + [anon_sym_scoped] = ACTIONS(4823), + [anon_sym_var] = ACTIONS(4823), + [anon_sym_yield] = ACTIONS(4823), + [anon_sym_when] = ACTIONS(4823), + [anon_sym_from] = ACTIONS(4823), + [anon_sym_into] = ACTIONS(4823), + [anon_sym_join] = ACTIONS(4823), + [anon_sym_on] = ACTIONS(4823), + [anon_sym_equals] = ACTIONS(4823), + [anon_sym_let] = ACTIONS(4823), + [anon_sym_orderby] = ACTIONS(4823), + [anon_sym_ascending] = ACTIONS(4823), + [anon_sym_descending] = ACTIONS(4823), + [anon_sym_group] = ACTIONS(4823), + [anon_sym_by] = ACTIONS(4823), + [anon_sym_select] = ACTIONS(4823), + [aux_sym_preproc_if_token1] = ACTIONS(4825), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514115,55 +514150,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3575), [sym_preproc_define] = STATE(3575), [sym_preproc_undef] = STATE(3575), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4125), - [anon_sym_COLON] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(4058), - [anon_sym_RBRACK] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4056), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_LT] = ACTIONS(4058), - [anon_sym_GT_GT] = ACTIONS(4056), - [anon_sym_GT_GT_GT] = ACTIONS(4058), - [anon_sym_EQ_EQ] = ACTIONS(4058), - [anon_sym_BANG_EQ] = ACTIONS(4058), - [anon_sym_GT_EQ] = ACTIONS(4058), - [anon_sym_LT_EQ] = ACTIONS(4058), - [anon_sym_DOT] = ACTIONS(5648), - [anon_sym_EQ_GT] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_QMARK_QMARK] = ACTIONS(4058), - [anon_sym_into] = ACTIONS(4058), - [anon_sym_on] = ACTIONS(4058), - [anon_sym_equals] = ACTIONS(4058), - [anon_sym_by] = ACTIONS(4058), - [anon_sym_as] = ACTIONS(4058), - [anon_sym_is] = ACTIONS(4058), - [anon_sym_DASH_GT] = ACTIONS(4058), - [anon_sym_with] = ACTIONS(4058), - [aux_sym_preproc_if_token3] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(5652), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5654), + [anon_sym_DASH_EQ] = ACTIONS(5654), + [anon_sym_STAR_EQ] = ACTIONS(5654), + [anon_sym_SLASH_EQ] = ACTIONS(5654), + [anon_sym_PERCENT_EQ] = ACTIONS(5654), + [anon_sym_AMP_EQ] = ACTIONS(5654), + [anon_sym_CARET_EQ] = ACTIONS(5654), + [anon_sym_PIPE_EQ] = ACTIONS(5654), + [anon_sym_LT_LT_EQ] = ACTIONS(5654), + [anon_sym_GT_GT_EQ] = ACTIONS(5654), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5654), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5654), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514176,6 +514211,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3576] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3576), [sym_preproc_endregion] = STATE(3576), [sym_preproc_line] = STATE(3576), @@ -514185,55 +514238,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3576), [sym_preproc_define] = STATE(3576), [sym_preproc_undef] = STATE(3576), - [anon_sym_SEMI] = ACTIONS(4015), - [anon_sym_LBRACK] = ACTIONS(4015), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COMMA] = ACTIONS(4015), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym_RPAREN] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_LT] = ACTIONS(4013), - [anon_sym_GT] = ACTIONS(4013), - [anon_sym_in] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_PLUS_PLUS] = ACTIONS(4015), - [anon_sym_DASH_DASH] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_SLASH] = ACTIONS(4013), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_PIPE] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_LT] = ACTIONS(4015), - [anon_sym_GT_GT] = ACTIONS(4013), - [anon_sym_GT_GT_GT] = ACTIONS(4015), - [anon_sym_EQ_EQ] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(4015), - [anon_sym_GT_EQ] = ACTIONS(4015), - [anon_sym_LT_EQ] = ACTIONS(4015), - [anon_sym_DOT] = ACTIONS(5648), - [anon_sym_EQ_GT] = ACTIONS(4015), - [anon_sym_switch] = ACTIONS(4015), - [anon_sym_DOT_DOT] = ACTIONS(4015), - [anon_sym_AMP_AMP] = ACTIONS(4015), - [anon_sym_PIPE_PIPE] = ACTIONS(4015), - [anon_sym_QMARK_QMARK] = ACTIONS(4015), - [anon_sym_into] = ACTIONS(4015), - [anon_sym_on] = ACTIONS(4015), - [anon_sym_equals] = ACTIONS(4015), - [anon_sym_by] = ACTIONS(4015), - [anon_sym_as] = ACTIONS(4015), - [anon_sym_is] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_with] = ACTIONS(4015), - [aux_sym_preproc_if_token3] = ACTIONS(4015), - [aux_sym_preproc_else_token1] = ACTIONS(4015), - [aux_sym_preproc_elif_token1] = ACTIONS(4015), + [sym__identifier_token] = ACTIONS(2719), + [anon_sym_alias] = ACTIONS(2719), + [anon_sym_global] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_ref] = ACTIONS(2719), + [anon_sym_delegate] = ACTIONS(2719), + [anon_sym_file] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_out] = ACTIONS(2719), + [anon_sym_where] = ACTIONS(2719), + [anon_sym_notnull] = ACTIONS(2719), + [anon_sym_unmanaged] = ACTIONS(2719), + [anon_sym_this] = ACTIONS(2719), + [anon_sym_scoped] = ACTIONS(2719), + [anon_sym_var] = ACTIONS(2719), + [sym_predefined_type] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_when] = ACTIONS(2719), + [anon_sym_from] = ACTIONS(2719), + [anon_sym_into] = ACTIONS(2719), + [anon_sym_join] = ACTIONS(2719), + [anon_sym_on] = ACTIONS(2719), + [anon_sym_equals] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_orderby] = ACTIONS(2719), + [anon_sym_ascending] = ACTIONS(2719), + [anon_sym_descending] = ACTIONS(2719), + [anon_sym_group] = ACTIONS(2719), + [anon_sym_by] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514246,8 +514281,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3577] = { - [sym_argument_list] = STATE(3661), - [sym_initializer_expression] = STATE(3802), [sym_preproc_region] = STATE(3577), [sym_preproc_endregion] = STATE(3577), [sym_preproc_line] = STATE(3577), @@ -514257,53 +514290,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3577), [sym_preproc_define] = STATE(3577), [sym_preproc_undef] = STATE(3577), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_COMMA] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(4848), - [anon_sym_GT] = ACTIONS(4848), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_QMARK] = ACTIONS(4848), - [anon_sym_BANG] = ACTIONS(4848), - [anon_sym_PLUS_PLUS] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_PLUS] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_CARET] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_LT_LT] = ACTIONS(4844), - [anon_sym_GT_GT] = ACTIONS(4848), - [anon_sym_GT_GT_GT] = ACTIONS(4844), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_GT_EQ] = ACTIONS(4844), - [anon_sym_LT_EQ] = ACTIONS(4844), - [anon_sym_DOT] = ACTIONS(4848), - [anon_sym_switch] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_and] = ACTIONS(4844), - [anon_sym_or] = ACTIONS(4848), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_QMARK_QMARK] = ACTIONS(4844), - [anon_sym_from] = ACTIONS(4844), - [anon_sym_into] = ACTIONS(4844), - [anon_sym_join] = ACTIONS(4844), - [anon_sym_let] = ACTIONS(4844), - [anon_sym_orderby] = ACTIONS(4844), - [anon_sym_ascending] = ACTIONS(4844), - [anon_sym_descending] = ACTIONS(4844), - [anon_sym_group] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4848), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), + [sym__identifier_token] = ACTIONS(5071), + [anon_sym_extern] = ACTIONS(5071), + [anon_sym_alias] = ACTIONS(5071), + [anon_sym_global] = ACTIONS(5071), + [anon_sym_unsafe] = ACTIONS(5071), + [anon_sym_static] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_async] = ACTIONS(5071), + [anon_sym_const] = ACTIONS(5071), + [anon_sym_file] = ACTIONS(5071), + [anon_sym_fixed] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_new] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_partial] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_readonly] = ACTIONS(5071), + [anon_sym_required] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_virtual] = ACTIONS(5071), + [anon_sym_volatile] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_notnull] = ACTIONS(5071), + [anon_sym_unmanaged] = ACTIONS(5071), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_add] = ACTIONS(5071), + [anon_sym_remove] = ACTIONS(5071), + [anon_sym_init] = ACTIONS(5071), + [anon_sym_scoped] = ACTIONS(5071), + [anon_sym_var] = ACTIONS(5071), + [anon_sym_yield] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_from] = ACTIONS(5071), + [anon_sym_into] = ACTIONS(5071), + [anon_sym_join] = ACTIONS(5071), + [anon_sym_on] = ACTIONS(5071), + [anon_sym_equals] = ACTIONS(5071), + [anon_sym_let] = ACTIONS(5071), + [anon_sym_orderby] = ACTIONS(5071), + [anon_sym_ascending] = ACTIONS(5071), + [anon_sym_descending] = ACTIONS(5071), + [anon_sym_group] = ACTIONS(5071), + [anon_sym_by] = ACTIONS(5071), + [anon_sym_select] = ACTIONS(5071), + [aux_sym_preproc_if_token1] = ACTIONS(5073), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514325,55 +514360,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3578), [sym_preproc_define] = STATE(3578), [sym_preproc_undef] = STATE(3578), - [anon_sym_EQ] = ACTIONS(5652), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5654), - [anon_sym_DASH_EQ] = ACTIONS(5654), - [anon_sym_STAR_EQ] = ACTIONS(5654), - [anon_sym_SLASH_EQ] = ACTIONS(5654), - [anon_sym_PERCENT_EQ] = ACTIONS(5654), - [anon_sym_AMP_EQ] = ACTIONS(5654), - [anon_sym_CARET_EQ] = ACTIONS(5654), - [anon_sym_PIPE_EQ] = ACTIONS(5654), - [anon_sym_LT_LT_EQ] = ACTIONS(5654), - [anon_sym_GT_GT_EQ] = ACTIONS(5654), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5654), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5654), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(5656), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5658), + [anon_sym_DASH_EQ] = ACTIONS(5658), + [anon_sym_STAR_EQ] = ACTIONS(5658), + [anon_sym_SLASH_EQ] = ACTIONS(5658), + [anon_sym_PERCENT_EQ] = ACTIONS(5658), + [anon_sym_AMP_EQ] = ACTIONS(5658), + [anon_sym_CARET_EQ] = ACTIONS(5658), + [anon_sym_PIPE_EQ] = ACTIONS(5658), + [anon_sym_LT_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_GT_EQ] = ACTIONS(5658), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5658), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514386,6 +514421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3579] = { + [sym_argument_list] = STATE(3488), + [sym_bracketed_argument_list] = STATE(2500), [sym_preproc_region] = STATE(3579), [sym_preproc_endregion] = STATE(3579), [sym_preproc_line] = STATE(3579), @@ -514395,55 +514432,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3579), [sym_preproc_define] = STATE(3579), [sym_preproc_undef] = STATE(3579), - [anon_sym_EQ] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5658), - [anon_sym_DASH_EQ] = ACTIONS(5658), - [anon_sym_STAR_EQ] = ACTIONS(5658), - [anon_sym_SLASH_EQ] = ACTIONS(5658), - [anon_sym_PERCENT_EQ] = ACTIONS(5658), - [anon_sym_AMP_EQ] = ACTIONS(5658), - [anon_sym_CARET_EQ] = ACTIONS(5658), - [anon_sym_PIPE_EQ] = ACTIONS(5658), - [anon_sym_LT_LT_EQ] = ACTIONS(5658), - [anon_sym_GT_GT_EQ] = ACTIONS(5658), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5658), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4887), + [anon_sym_GT_GT_GT] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_GT_EQ] = ACTIONS(4885), + [anon_sym_LT_EQ] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_EQ_GT] = ACTIONS(4885), + [anon_sym_switch] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_QMARK_QMARK] = ACTIONS(4885), + [anon_sym_on] = ACTIONS(4885), + [anon_sym_equals] = ACTIONS(4885), + [anon_sym_by] = ACTIONS(4885), + [anon_sym_as] = ACTIONS(4885), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4160), + [anon_sym_with] = ACTIONS(4885), + [aux_sym_preproc_if_token3] = ACTIONS(4885), + [aux_sym_preproc_else_token1] = ACTIONS(4885), + [aux_sym_preproc_elif_token1] = ACTIONS(4885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514456,24 +514491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3580] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3580), [sym_preproc_endregion] = STATE(3580), [sym_preproc_line] = STATE(3580), @@ -514483,37 +514500,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3580), [sym_preproc_define] = STATE(3580), [sym_preproc_undef] = STATE(3580), - [sym__identifier_token] = ACTIONS(2719), - [anon_sym_alias] = ACTIONS(2719), - [anon_sym_global] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_ref] = ACTIONS(2719), - [anon_sym_delegate] = ACTIONS(2719), - [anon_sym_file] = ACTIONS(2719), - [anon_sym_readonly] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_out] = ACTIONS(2719), - [anon_sym_where] = ACTIONS(2719), - [anon_sym_notnull] = ACTIONS(2719), - [anon_sym_unmanaged] = ACTIONS(2719), - [anon_sym_this] = ACTIONS(2719), - [anon_sym_scoped] = ACTIONS(2719), - [anon_sym_var] = ACTIONS(2719), - [sym_predefined_type] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_when] = ACTIONS(2719), - [anon_sym_from] = ACTIONS(2719), - [anon_sym_into] = ACTIONS(2719), - [anon_sym_join] = ACTIONS(2719), - [anon_sym_on] = ACTIONS(2719), - [anon_sym_equals] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_orderby] = ACTIONS(2719), - [anon_sym_ascending] = ACTIONS(2719), - [anon_sym_descending] = ACTIONS(2719), - [anon_sym_group] = ACTIONS(2719), - [anon_sym_by] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), + [sym__identifier_token] = ACTIONS(4833), + [anon_sym_extern] = ACTIONS(4833), + [anon_sym_alias] = ACTIONS(4833), + [anon_sym_global] = ACTIONS(4833), + [anon_sym_unsafe] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_async] = ACTIONS(4833), + [anon_sym_const] = ACTIONS(4833), + [anon_sym_file] = ACTIONS(4833), + [anon_sym_fixed] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_new] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_partial] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_readonly] = ACTIONS(4833), + [anon_sym_required] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_virtual] = ACTIONS(4833), + [anon_sym_volatile] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_notnull] = ACTIONS(4833), + [anon_sym_unmanaged] = ACTIONS(4833), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_add] = ACTIONS(4833), + [anon_sym_remove] = ACTIONS(4833), + [anon_sym_init] = ACTIONS(4833), + [anon_sym_scoped] = ACTIONS(4833), + [anon_sym_var] = ACTIONS(4833), + [anon_sym_yield] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_from] = ACTIONS(4833), + [anon_sym_into] = ACTIONS(4833), + [anon_sym_join] = ACTIONS(4833), + [anon_sym_on] = ACTIONS(4833), + [anon_sym_equals] = ACTIONS(4833), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_orderby] = ACTIONS(4833), + [anon_sym_ascending] = ACTIONS(4833), + [anon_sym_descending] = ACTIONS(4833), + [anon_sym_group] = ACTIONS(4833), + [anon_sym_by] = ACTIONS(4833), + [anon_sym_select] = ACTIONS(4833), + [aux_sym_preproc_if_token1] = ACTIONS(4835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514536,35 +514571,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3581), [sym_preproc_undef] = STATE(3581), [anon_sym_EQ] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), [anon_sym_PLUS_EQ] = ACTIONS(5662), [anon_sym_DASH_EQ] = ACTIONS(5662), [anon_sym_STAR_EQ] = ACTIONS(5662), @@ -514577,13 +514611,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5662), [anon_sym_GT_GT_GT_EQ] = ACTIONS(5662), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5662), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514594,6 +514628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4898), }, [3582] = { [sym_preproc_region] = STATE(3582), @@ -514606,34 +514641,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3582), [sym_preproc_undef] = STATE(3582), [anon_sym_EQ] = ACTIONS(5664), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), [anon_sym_PLUS_EQ] = ACTIONS(5666), [anon_sym_DASH_EQ] = ACTIONS(5666), [anon_sym_STAR_EQ] = ACTIONS(5666), @@ -514646,13 +514681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5666), [anon_sym_GT_GT_GT_EQ] = ACTIONS(5666), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5666), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514663,11 +514699,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4906), }, [3583] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2502), + [sym_argument_list] = STATE(3673), + [sym_initializer_expression] = STATE(3782), [sym_preproc_region] = STATE(3583), [sym_preproc_endregion] = STATE(3583), [sym_preproc_line] = STATE(3583), @@ -514677,53 +514712,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3583), [sym_preproc_define] = STATE(3583), [sym_preproc_undef] = STATE(3583), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4880), - [anon_sym_GT] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4876), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_CARET] = ACTIONS(4876), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LT_LT] = ACTIONS(4876), - [anon_sym_GT_GT] = ACTIONS(4880), - [anon_sym_GT_GT_GT] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4876), - [anon_sym_switch] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_QMARK_QMARK] = ACTIONS(4876), - [anon_sym_on] = ACTIONS(4876), - [anon_sym_equals] = ACTIONS(4876), - [anon_sym_by] = ACTIONS(4876), - [anon_sym_as] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4876), - [aux_sym_preproc_if_token3] = ACTIONS(4876), - [aux_sym_preproc_else_token1] = ACTIONS(4876), - [aux_sym_preproc_elif_token1] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4815), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_GT_GT_GT] = ACTIONS(4811), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4811), + [anon_sym_from] = ACTIONS(4811), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_join] = ACTIONS(4811), + [anon_sym_let] = ACTIONS(4811), + [anon_sym_orderby] = ACTIONS(4811), + [anon_sym_ascending] = ACTIONS(4811), + [anon_sym_descending] = ACTIONS(4811), + [anon_sym_group] = ACTIONS(4811), + [anon_sym_select] = ACTIONS(4811), + [anon_sym_as] = ACTIONS(4815), + [anon_sym_is] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [anon_sym_with] = ACTIONS(4811), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514745,55 +514780,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3584), [sym_preproc_define] = STATE(3584), [sym_preproc_undef] = STATE(3584), - [sym__identifier_token] = ACTIONS(5043), - [anon_sym_extern] = ACTIONS(5043), - [anon_sym_alias] = ACTIONS(5043), - [anon_sym_global] = ACTIONS(5043), - [anon_sym_unsafe] = ACTIONS(5043), - [anon_sym_static] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_async] = ACTIONS(5043), - [anon_sym_const] = ACTIONS(5043), - [anon_sym_file] = ACTIONS(5043), - [anon_sym_fixed] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_new] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_partial] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_readonly] = ACTIONS(5043), - [anon_sym_required] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_virtual] = ACTIONS(5043), - [anon_sym_volatile] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_notnull] = ACTIONS(5043), - [anon_sym_unmanaged] = ACTIONS(5043), - [anon_sym_get] = ACTIONS(5043), - [anon_sym_set] = ACTIONS(5043), - [anon_sym_add] = ACTIONS(5043), - [anon_sym_remove] = ACTIONS(5043), - [anon_sym_init] = ACTIONS(5043), - [anon_sym_scoped] = ACTIONS(5043), - [anon_sym_var] = ACTIONS(5043), - [anon_sym_yield] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), - [anon_sym_from] = ACTIONS(5043), - [anon_sym_into] = ACTIONS(5043), - [anon_sym_join] = ACTIONS(5043), - [anon_sym_on] = ACTIONS(5043), - [anon_sym_equals] = ACTIONS(5043), - [anon_sym_let] = ACTIONS(5043), - [anon_sym_orderby] = ACTIONS(5043), - [anon_sym_ascending] = ACTIONS(5043), - [anon_sym_descending] = ACTIONS(5043), - [anon_sym_group] = ACTIONS(5043), - [anon_sym_by] = ACTIONS(5043), - [anon_sym_select] = ACTIONS(5043), - [aux_sym_preproc_if_token1] = ACTIONS(5045), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COMMA] = ACTIONS(4024), + [anon_sym_RBRACK] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym_RPAREN] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(4022), + [anon_sym_GT] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4022), + [anon_sym_QMARK] = ACTIONS(4949), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_LT_LT] = ACTIONS(4024), + [anon_sym_GT_GT] = ACTIONS(4022), + [anon_sym_GT_GT_GT] = ACTIONS(4024), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_GT_EQ] = ACTIONS(4024), + [anon_sym_LT_EQ] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_EQ_GT] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_PIPE_PIPE] = ACTIONS(4024), + [anon_sym_QMARK_QMARK] = ACTIONS(4024), + [anon_sym_into] = ACTIONS(4024), + [anon_sym_on] = ACTIONS(4024), + [anon_sym_equals] = ACTIONS(4024), + [anon_sym_by] = ACTIONS(4024), + [anon_sym_as] = ACTIONS(4024), + [anon_sym_is] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4024), + [aux_sym_preproc_if_token3] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514806,6 +514841,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3585] = { + [sym_explicit_interface_specifier] = STATE(5951), + [sym__name] = STATE(6589), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7308), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3585), [sym_preproc_endregion] = STATE(3585), [sym_preproc_line] = STATE(3585), @@ -514815,55 +514869,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3585), [sym_preproc_define] = STATE(3585), [sym_preproc_undef] = STATE(3585), - [anon_sym_EQ] = ACTIONS(5668), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5670), - [anon_sym_DASH_EQ] = ACTIONS(5670), - [anon_sym_STAR_EQ] = ACTIONS(5670), - [anon_sym_SLASH_EQ] = ACTIONS(5670), - [anon_sym_PERCENT_EQ] = ACTIONS(5670), - [anon_sym_AMP_EQ] = ACTIONS(5670), - [anon_sym_CARET_EQ] = ACTIONS(5670), - [anon_sym_PIPE_EQ] = ACTIONS(5670), - [anon_sym_LT_LT_EQ] = ACTIONS(5670), - [anon_sym_GT_GT_EQ] = ACTIONS(5670), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5670), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(4904), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5630), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(5632), + [anon_sym_checked] = ACTIONS(5632), + [anon_sym_scoped] = ACTIONS(5634), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514876,8 +514911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3586] = { - [sym_argument_list] = STATE(3403), - [sym_bracketed_argument_list] = STATE(2502), [sym_preproc_region] = STATE(3586), [sym_preproc_endregion] = STATE(3586), [sym_preproc_line] = STATE(3586), @@ -514887,53 +514920,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3586), [sym_preproc_define] = STATE(3586), [sym_preproc_undef] = STATE(3586), - [anon_sym_SEMI] = ACTIONS(4900), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_COLON] = ACTIONS(4900), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_RBRACK] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4900), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(5346), - [anon_sym_PLUS_PLUS] = ACTIONS(5348), - [anon_sym_DASH_DASH] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_CARET] = ACTIONS(4900), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4900), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_GT_GT_GT] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_EQ_GT] = ACTIONS(4900), - [anon_sym_switch] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_QMARK_QMARK] = ACTIONS(4900), - [anon_sym_on] = ACTIONS(4900), - [anon_sym_equals] = ACTIONS(4900), - [anon_sym_by] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4136), - [anon_sym_with] = ACTIONS(4900), - [aux_sym_preproc_if_token3] = ACTIONS(4900), - [aux_sym_preproc_else_token1] = ACTIONS(4900), - [aux_sym_preproc_elif_token1] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_COMMA] = ACTIONS(4028), + [anon_sym_RBRACK] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym_RPAREN] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_LT] = ACTIONS(4026), + [anon_sym_GT] = ACTIONS(4026), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_SLASH] = ACTIONS(4026), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_PIPE] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LT_LT] = ACTIONS(4028), + [anon_sym_GT_GT] = ACTIONS(4026), + [anon_sym_GT_GT_GT] = ACTIONS(4028), + [anon_sym_EQ_EQ] = ACTIONS(4028), + [anon_sym_BANG_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_DOT] = ACTIONS(5670), + [anon_sym_EQ_GT] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_PIPE_PIPE] = ACTIONS(4028), + [anon_sym_QMARK_QMARK] = ACTIONS(4028), + [anon_sym_into] = ACTIONS(4028), + [anon_sym_on] = ACTIONS(4028), + [anon_sym_equals] = ACTIONS(4028), + [anon_sym_by] = ACTIONS(4028), + [anon_sym_as] = ACTIONS(4028), + [anon_sym_is] = ACTIONS(4028), + [anon_sym_DASH_GT] = ACTIONS(4028), + [anon_sym_with] = ACTIONS(4028), + [aux_sym_preproc_if_token3] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514946,6 +514981,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3587] = { + [sym_explicit_interface_specifier] = STATE(5951), + [sym__name] = STATE(6589), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7283), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3587), [sym_preproc_endregion] = STATE(3587), [sym_preproc_line] = STATE(3587), @@ -514955,55 +515009,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3587), [sym_preproc_define] = STATE(3587), [sym_preproc_undef] = STATE(3587), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_extern] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_unsafe] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_const] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_fixed] = ACTIONS(3785), - [anon_sym_internal] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3785), - [anon_sym_override] = ACTIONS(3785), - [anon_sym_partial] = ACTIONS(3785), - [anon_sym_private] = ACTIONS(3785), - [anon_sym_protected] = ACTIONS(3785), - [anon_sym_public] = ACTIONS(3785), - [anon_sym_readonly] = ACTIONS(3785), - [anon_sym_required] = ACTIONS(3785), - [anon_sym_sealed] = ACTIONS(3785), - [anon_sym_virtual] = ACTIONS(3785), - [anon_sym_volatile] = ACTIONS(3785), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_get] = ACTIONS(3785), - [anon_sym_set] = ACTIONS(3785), - [anon_sym_add] = ACTIONS(3785), - [anon_sym_remove] = ACTIONS(3785), - [anon_sym_init] = ACTIONS(3785), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_var] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [aux_sym_preproc_if_token1] = ACTIONS(3787), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(4904), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5630), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(5632), + [anon_sym_checked] = ACTIONS(5632), + [anon_sym_scoped] = ACTIONS(5634), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515025,55 +515060,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3588), [sym_preproc_define] = STATE(3588), [sym_preproc_undef] = STATE(3588), - [sym__identifier_token] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_alias] = ACTIONS(4856), - [anon_sym_global] = ACTIONS(4856), - [anon_sym_unsafe] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_async] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_file] = ACTIONS(4856), - [anon_sym_fixed] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_partial] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_readonly] = ACTIONS(4856), - [anon_sym_required] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_notnull] = ACTIONS(4856), - [anon_sym_unmanaged] = ACTIONS(4856), - [anon_sym_get] = ACTIONS(4856), - [anon_sym_set] = ACTIONS(4856), - [anon_sym_add] = ACTIONS(4856), - [anon_sym_remove] = ACTIONS(4856), - [anon_sym_init] = ACTIONS(4856), - [anon_sym_scoped] = ACTIONS(4856), - [anon_sym_var] = ACTIONS(4856), - [anon_sym_yield] = ACTIONS(4856), - [anon_sym_when] = ACTIONS(4856), - [anon_sym_from] = ACTIONS(4856), - [anon_sym_into] = ACTIONS(4856), - [anon_sym_join] = ACTIONS(4856), - [anon_sym_on] = ACTIONS(4856), - [anon_sym_equals] = ACTIONS(4856), - [anon_sym_let] = ACTIONS(4856), - [anon_sym_orderby] = ACTIONS(4856), - [anon_sym_ascending] = ACTIONS(4856), - [anon_sym_descending] = ACTIONS(4856), - [anon_sym_group] = ACTIONS(4856), - [anon_sym_by] = ACTIONS(4856), - [anon_sym_select] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4858), + [sym__identifier_token] = ACTIONS(4817), + [anon_sym_extern] = ACTIONS(4817), + [anon_sym_alias] = ACTIONS(4817), + [anon_sym_global] = ACTIONS(4817), + [anon_sym_unsafe] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4817), + [anon_sym_async] = ACTIONS(4817), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_file] = ACTIONS(4817), + [anon_sym_fixed] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_new] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_partial] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_protected] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_readonly] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_sealed] = ACTIONS(4817), + [anon_sym_virtual] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_where] = ACTIONS(4817), + [anon_sym_notnull] = ACTIONS(4817), + [anon_sym_unmanaged] = ACTIONS(4817), + [anon_sym_get] = ACTIONS(4817), + [anon_sym_set] = ACTIONS(4817), + [anon_sym_add] = ACTIONS(4817), + [anon_sym_remove] = ACTIONS(4817), + [anon_sym_init] = ACTIONS(4817), + [anon_sym_scoped] = ACTIONS(4817), + [anon_sym_var] = ACTIONS(4817), + [anon_sym_yield] = ACTIONS(4817), + [anon_sym_when] = ACTIONS(4817), + [anon_sym_from] = ACTIONS(4817), + [anon_sym_into] = ACTIONS(4817), + [anon_sym_join] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_let] = ACTIONS(4817), + [anon_sym_orderby] = ACTIONS(4817), + [anon_sym_ascending] = ACTIONS(4817), + [anon_sym_descending] = ACTIONS(4817), + [anon_sym_group] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_select] = ACTIONS(4817), + [aux_sym_preproc_if_token1] = ACTIONS(4819), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515086,25 +515121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3589] = { - [sym_explicit_interface_specifier] = STATE(5945), - [sym__name] = STATE(6602), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7332), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3589), [sym_preproc_endregion] = STATE(3589), [sym_preproc_line] = STATE(3589), @@ -515114,36 +515130,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3589), [sym_preproc_define] = STATE(3589), [sym_preproc_undef] = STATE(3589), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4913), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5623), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_operator] = ACTIONS(5625), - [anon_sym_checked] = ACTIONS(5625), - [anon_sym_scoped] = ACTIONS(5627), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_extern] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_unsafe] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_const] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_fixed] = ACTIONS(3785), + [anon_sym_internal] = ACTIONS(3785), + [anon_sym_new] = ACTIONS(3785), + [anon_sym_override] = ACTIONS(3785), + [anon_sym_partial] = ACTIONS(3785), + [anon_sym_private] = ACTIONS(3785), + [anon_sym_protected] = ACTIONS(3785), + [anon_sym_public] = ACTIONS(3785), + [anon_sym_readonly] = ACTIONS(3785), + [anon_sym_required] = ACTIONS(3785), + [anon_sym_sealed] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3785), + [anon_sym_volatile] = ACTIONS(3785), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_get] = ACTIONS(3785), + [anon_sym_set] = ACTIONS(3785), + [anon_sym_add] = ACTIONS(3785), + [anon_sym_remove] = ACTIONS(3785), + [anon_sym_init] = ACTIONS(3785), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_var] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515166,35 +515201,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3590), [sym_preproc_undef] = STATE(3590), [anon_sym_EQ] = ACTIONS(5672), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4898), [anon_sym_PLUS_EQ] = ACTIONS(5674), [anon_sym_DASH_EQ] = ACTIONS(5674), [anon_sym_STAR_EQ] = ACTIONS(5674), @@ -515207,13 +515241,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5674), [anon_sym_GT_GT_GT_EQ] = ACTIONS(5674), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5674), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515226,6 +515261,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3591] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7026), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3591), [sym_preproc_endregion] = STATE(3591), [sym_preproc_line] = STATE(3591), @@ -515235,54 +515288,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3591), [sym_preproc_define] = STATE(3591), [sym_preproc_undef] = STATE(3591), - [anon_sym_EQ] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5678), - [anon_sym_DASH_EQ] = ACTIONS(5678), - [anon_sym_STAR_EQ] = ACTIONS(5678), - [anon_sym_SLASH_EQ] = ACTIONS(5678), - [anon_sym_PERCENT_EQ] = ACTIONS(5678), - [anon_sym_AMP_EQ] = ACTIONS(5678), - [anon_sym_CARET_EQ] = ACTIONS(5678), - [anon_sym_PIPE_EQ] = ACTIONS(5678), - [anon_sym_LT_LT_EQ] = ACTIONS(5678), - [anon_sym_GT_GT_EQ] = ACTIONS(5678), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5678), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5678), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_type_argument_list_repeat1] = STATE(7027), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515295,24 +515330,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3592] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6911), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7022), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3592), [sym_preproc_endregion] = STATE(3592), [sym_preproc_line] = STATE(3592), @@ -515322,22 +515357,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3592), [sym_preproc_define] = STATE(3592), [sym_preproc_undef] = STATE(3592), - [aux_sym_type_argument_list_repeat1] = STATE(6916), + [aux_sym_type_argument_list_repeat1] = STATE(7023), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5077), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5680), + [anon_sym_GT] = ACTIONS(5678), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -515364,8 +515399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3593] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3593), [sym_preproc_endregion] = STATE(3593), [sym_preproc_line] = STATE(3593), @@ -515375,52 +515410,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3593), [sym_preproc_define] = STATE(3593), [sym_preproc_undef] = STATE(3593), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515433,8 +515468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3594] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3594), [sym_preproc_endregion] = STATE(3594), [sym_preproc_line] = STATE(3594), @@ -515444,52 +515479,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3594), [sym_preproc_define] = STATE(3594), [sym_preproc_undef] = STATE(3594), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5694), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5694), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5694), - [anon_sym_or] = ACTIONS(5722), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5694), - [anon_sym_into] = ACTIONS(5694), - [anon_sym_join] = ACTIONS(5694), - [anon_sym_let] = ACTIONS(5694), - [anon_sym_orderby] = ACTIONS(5694), - [anon_sym_ascending] = ACTIONS(5694), - [anon_sym_descending] = ACTIONS(5694), - [anon_sym_group] = ACTIONS(5694), - [anon_sym_select] = ACTIONS(5694), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515502,8 +515537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3595] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3595), [sym_preproc_endregion] = STATE(3595), [sym_preproc_line] = STATE(3595), @@ -515513,52 +515548,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3595), [sym_preproc_define] = STATE(3595), [sym_preproc_undef] = STATE(3595), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5736), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5736), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5736), - [anon_sym_or] = ACTIONS(5738), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5736), - [anon_sym_into] = ACTIONS(5736), - [anon_sym_join] = ACTIONS(5736), - [anon_sym_let] = ACTIONS(5736), - [anon_sym_orderby] = ACTIONS(5736), - [anon_sym_ascending] = ACTIONS(5736), - [anon_sym_descending] = ACTIONS(5736), - [anon_sym_group] = ACTIONS(5736), - [anon_sym_select] = ACTIONS(5736), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5682), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515571,25 +515606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3596] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3323), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3596), [sym_preproc_endregion] = STATE(3596), [sym_preproc_line] = STATE(3596), @@ -515599,35 +515617,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3596), [sym_preproc_define] = STATE(3596), [sym_preproc_undef] = STATE(3596), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5748), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515640,8 +515675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3597] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3597), [sym_preproc_endregion] = STATE(3597), [sym_preproc_line] = STATE(3597), @@ -515651,52 +515686,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3597), [sym_preproc_define] = STATE(3597), [sym_preproc_undef] = STATE(3597), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_where] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_LT_LT] = ACTIONS(4885), + [anon_sym_GT_GT] = ACTIONS(4887), + [anon_sym_GT_GT_GT] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [anon_sym_GT_EQ] = ACTIONS(4885), + [anon_sym_LT_EQ] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(4885), + [anon_sym_DOT_DOT] = ACTIONS(4885), + [anon_sym_and] = ACTIONS(4885), + [anon_sym_or] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_QMARK_QMARK] = ACTIONS(4885), + [anon_sym_from] = ACTIONS(4885), + [anon_sym_into] = ACTIONS(4885), + [anon_sym_join] = ACTIONS(4885), + [anon_sym_let] = ACTIONS(4885), + [anon_sym_orderby] = ACTIONS(4885), + [anon_sym_ascending] = ACTIONS(4885), + [anon_sym_descending] = ACTIONS(4885), + [anon_sym_group] = ACTIONS(4885), + [anon_sym_select] = ACTIONS(4885), + [anon_sym_as] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515709,8 +515744,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3598] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3269), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3598), [sym_preproc_endregion] = STATE(3598), [sym_preproc_line] = STATE(3598), @@ -515720,52 +515772,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3598), [sym_preproc_define] = STATE(3598), [sym_preproc_undef] = STATE(3598), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(3802), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5714), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515778,6 +515813,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3599] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6828), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3599), [sym_preproc_endregion] = STATE(3599), [sym_preproc_line] = STATE(3599), @@ -515787,54 +515840,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3599), [sym_preproc_define] = STATE(3599), [sym_preproc_undef] = STATE(3599), - [sym__identifier_token] = ACTIONS(4979), - [anon_sym_extern] = ACTIONS(4979), - [anon_sym_alias] = ACTIONS(4979), - [anon_sym_global] = ACTIONS(4979), - [anon_sym_unsafe] = ACTIONS(4979), - [anon_sym_static] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_ref] = ACTIONS(4979), - [anon_sym_delegate] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_async] = ACTIONS(4979), - [anon_sym_const] = ACTIONS(4979), - [anon_sym_file] = ACTIONS(4979), - [anon_sym_fixed] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_new] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_partial] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_readonly] = ACTIONS(4979), - [anon_sym_required] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_virtual] = ACTIONS(4979), - [anon_sym_volatile] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_notnull] = ACTIONS(4979), - [anon_sym_unmanaged] = ACTIONS(4979), - [anon_sym_scoped] = ACTIONS(4979), - [anon_sym_var] = ACTIONS(4979), - [sym_predefined_type] = ACTIONS(4979), - [anon_sym_yield] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4979), - [anon_sym_into] = ACTIONS(4979), - [anon_sym_join] = ACTIONS(4979), - [anon_sym_on] = ACTIONS(4979), - [anon_sym_equals] = ACTIONS(4979), - [anon_sym_let] = ACTIONS(4979), - [anon_sym_orderby] = ACTIONS(4979), - [anon_sym_ascending] = ACTIONS(4979), - [anon_sym_descending] = ACTIONS(4979), - [anon_sym_group] = ACTIONS(4979), - [anon_sym_by] = ACTIONS(4979), - [anon_sym_select] = ACTIONS(4979), - [aux_sym_preproc_if_token1] = ACTIONS(4981), + [aux_sym_type_argument_list_repeat1] = STATE(6829), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5720), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515847,8 +515882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3600] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_block] = STATE(2117), [sym_preproc_region] = STATE(3600), [sym_preproc_endregion] = STATE(3600), [sym_preproc_line] = STATE(3600), @@ -515858,52 +515892,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3600), [sym_preproc_define] = STATE(3600), [sym_preproc_undef] = STATE(3600), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5756), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5722), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515916,8 +515951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3601] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3601), [sym_preproc_endregion] = STATE(3601), [sym_preproc_line] = STATE(3601), @@ -515927,52 +515960,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3601), [sym_preproc_define] = STATE(3601), [sym_preproc_undef] = STATE(3601), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(4817), + [anon_sym_extern] = ACTIONS(4817), + [anon_sym_alias] = ACTIONS(4817), + [anon_sym_global] = ACTIONS(4817), + [anon_sym_unsafe] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4819), + [anon_sym_ref] = ACTIONS(4817), + [anon_sym_delegate] = ACTIONS(4817), + [anon_sym_abstract] = ACTIONS(4817), + [anon_sym_async] = ACTIONS(4817), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_file] = ACTIONS(4817), + [anon_sym_fixed] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_new] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_partial] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_protected] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_readonly] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_sealed] = ACTIONS(4817), + [anon_sym_virtual] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_where] = ACTIONS(4817), + [anon_sym_notnull] = ACTIONS(4817), + [anon_sym_unmanaged] = ACTIONS(4817), + [anon_sym_scoped] = ACTIONS(4817), + [anon_sym_var] = ACTIONS(4817), + [sym_predefined_type] = ACTIONS(4817), + [anon_sym_yield] = ACTIONS(4817), + [anon_sym_when] = ACTIONS(4817), + [anon_sym_from] = ACTIONS(4817), + [anon_sym_into] = ACTIONS(4817), + [anon_sym_join] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_let] = ACTIONS(4817), + [anon_sym_orderby] = ACTIONS(4817), + [anon_sym_ascending] = ACTIONS(4817), + [anon_sym_descending] = ACTIONS(4817), + [anon_sym_group] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_select] = ACTIONS(4817), + [aux_sym_preproc_if_token1] = ACTIONS(4819), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515985,7 +516020,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3602] = { - [sym_initializer_expression] = STATE(3830), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6800), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3602), [sym_preproc_endregion] = STATE(3602), [sym_preproc_line] = STATE(3602), @@ -515995,110 +516047,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3602), [sym_preproc_define] = STATE(3602), [sym_preproc_undef] = STATE(3602), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(5758), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(5761), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_from] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_join] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_orderby] = ACTIONS(4962), - [anon_sym_ascending] = ACTIONS(4962), - [anon_sym_descending] = ACTIONS(4962), - [anon_sym_group] = ACTIONS(4962), - [anon_sym_select] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3603] = { - [sym_tuple_pattern] = STATE(7097), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_identifier] = STATE(5785), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3603), - [sym_preproc_endregion] = STATE(3603), - [sym_preproc_line] = STATE(3603), - [sym_preproc_pragma] = STATE(3603), - [sym_preproc_nullable] = STATE(3603), - [sym_preproc_error] = STATE(3603), - [sym_preproc_warning] = STATE(3603), - [sym_preproc_define] = STATE(3603), - [sym_preproc_undef] = STATE(3603), + [aux_sym_type_argument_list_repeat1] = STATE(6801), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5724), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), - [sym_discard] = ACTIONS(4745), [anon_sym_from] = ACTIONS(2997), [anon_sym_into] = ACTIONS(2997), [anon_sym_join] = ACTIONS(2997), @@ -516122,8 +516088,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3603] = { + [sym_argument_list] = STATE(4353), + [sym__name] = STATE(4497), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_type] = STATE(4249), + [sym_implicit_type] = STATE(4407), + [sym_array_type] = STATE(4378), + [sym__array_base_type] = STATE(7286), + [sym_nullable_type] = STATE(4519), + [sym_pointer_type] = STATE(4519), + [sym__pointer_base_type] = STATE(7680), + [sym_function_pointer_type] = STATE(4519), + [sym_ref_type] = STATE(4407), + [sym_scoped_type] = STATE(4407), + [sym_tuple_type] = STATE(4520), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), + [sym_preproc_region] = STATE(3603), + [sym_preproc_endregion] = STATE(3603), + [sym_preproc_line] = STATE(3603), + [sym_preproc_pragma] = STATE(3603), + [sym_preproc_nullable] = STATE(3603), + [sym_preproc_error] = STATE(3603), + [sym_preproc_warning] = STATE(3603), + [sym_preproc_define] = STATE(3603), + [sym_preproc_undef] = STATE(3603), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_LPAREN] = ACTIONS(5728), + [anon_sym_ref] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_delegate] = ACTIONS(5732), + [anon_sym_file] = ACTIONS(4011), + [anon_sym_where] = ACTIONS(4011), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), + [anon_sym_scoped] = ACTIONS(5734), + [anon_sym_var] = ACTIONS(5736), + [sym_predefined_type] = ACTIONS(5738), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_when] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4011), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3604] = { - [sym_block] = STATE(1978), [sym_preproc_region] = STATE(3604), [sym_preproc_endregion] = STATE(3604), [sym_preproc_line] = STATE(3604), @@ -516133,53 +516167,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3604), [sym_preproc_define] = STATE(3604), [sym_preproc_undef] = STATE(3604), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5316), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [sym__identifier_token] = ACTIONS(5059), + [anon_sym_extern] = ACTIONS(5059), + [anon_sym_alias] = ACTIONS(5059), + [anon_sym_global] = ACTIONS(5059), + [anon_sym_unsafe] = ACTIONS(5059), + [anon_sym_static] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_ref] = ACTIONS(5059), + [anon_sym_delegate] = ACTIONS(5059), + [anon_sym_abstract] = ACTIONS(5059), + [anon_sym_async] = ACTIONS(5059), + [anon_sym_const] = ACTIONS(5059), + [anon_sym_file] = ACTIONS(5059), + [anon_sym_fixed] = ACTIONS(5059), + [anon_sym_internal] = ACTIONS(5059), + [anon_sym_new] = ACTIONS(5059), + [anon_sym_override] = ACTIONS(5059), + [anon_sym_partial] = ACTIONS(5059), + [anon_sym_private] = ACTIONS(5059), + [anon_sym_protected] = ACTIONS(5059), + [anon_sym_public] = ACTIONS(5059), + [anon_sym_readonly] = ACTIONS(5059), + [anon_sym_required] = ACTIONS(5059), + [anon_sym_sealed] = ACTIONS(5059), + [anon_sym_virtual] = ACTIONS(5059), + [anon_sym_volatile] = ACTIONS(5059), + [anon_sym_where] = ACTIONS(5059), + [anon_sym_notnull] = ACTIONS(5059), + [anon_sym_unmanaged] = ACTIONS(5059), + [anon_sym_scoped] = ACTIONS(5059), + [anon_sym_var] = ACTIONS(5059), + [sym_predefined_type] = ACTIONS(5059), + [anon_sym_yield] = ACTIONS(5059), + [anon_sym_when] = ACTIONS(5059), + [anon_sym_from] = ACTIONS(5059), + [anon_sym_into] = ACTIONS(5059), + [anon_sym_join] = ACTIONS(5059), + [anon_sym_on] = ACTIONS(5059), + [anon_sym_equals] = ACTIONS(5059), + [anon_sym_let] = ACTIONS(5059), + [anon_sym_orderby] = ACTIONS(5059), + [anon_sym_ascending] = ACTIONS(5059), + [anon_sym_descending] = ACTIONS(5059), + [anon_sym_group] = ACTIONS(5059), + [anon_sym_by] = ACTIONS(5059), + [anon_sym_select] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516192,6 +516227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3605] = { + [sym_modifier] = STATE(3740), [sym_preproc_region] = STATE(3605), [sym_preproc_endregion] = STATE(3605), [sym_preproc_line] = STATE(3605), @@ -516201,54 +516237,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3605), [sym_preproc_define] = STATE(3605), [sym_preproc_undef] = STATE(3605), - [sym__identifier_token] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_global] = ACTIONS(5011), - [anon_sym_unsafe] = ACTIONS(5011), - [anon_sym_static] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_ref] = ACTIONS(5011), - [anon_sym_delegate] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_async] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_file] = ACTIONS(5011), - [anon_sym_fixed] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_new] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_partial] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_readonly] = ACTIONS(5011), - [anon_sym_required] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_virtual] = ACTIONS(5011), - [anon_sym_volatile] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_notnull] = ACTIONS(5011), - [anon_sym_unmanaged] = ACTIONS(5011), - [anon_sym_scoped] = ACTIONS(5011), - [anon_sym_var] = ACTIONS(5011), - [sym_predefined_type] = ACTIONS(5011), - [anon_sym_yield] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), - [anon_sym_from] = ACTIONS(5011), - [anon_sym_into] = ACTIONS(5011), - [anon_sym_join] = ACTIONS(5011), - [anon_sym_on] = ACTIONS(5011), - [anon_sym_equals] = ACTIONS(5011), - [anon_sym_let] = ACTIONS(5011), - [anon_sym_orderby] = ACTIONS(5011), - [anon_sym_ascending] = ACTIONS(5011), - [anon_sym_descending] = ACTIONS(5011), - [anon_sym_group] = ACTIONS(5011), - [anon_sym_by] = ACTIONS(5011), - [anon_sym_select] = ACTIONS(5011), - [aux_sym_preproc_if_token1] = ACTIONS(5013), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3605), + [sym__identifier_token] = ACTIONS(5264), + [anon_sym_extern] = ACTIONS(5740), + [anon_sym_alias] = ACTIONS(5264), + [anon_sym_global] = ACTIONS(5264), + [anon_sym_unsafe] = ACTIONS(5740), + [anon_sym_static] = ACTIONS(5740), + [anon_sym_LPAREN] = ACTIONS(5269), + [anon_sym_ref] = ACTIONS(5264), + [anon_sym_delegate] = ACTIONS(5264), + [anon_sym_abstract] = ACTIONS(5740), + [anon_sym_async] = ACTIONS(5740), + [anon_sym_const] = ACTIONS(5740), + [anon_sym_file] = ACTIONS(5740), + [anon_sym_fixed] = ACTIONS(5740), + [anon_sym_internal] = ACTIONS(5740), + [anon_sym_new] = ACTIONS(5740), + [anon_sym_override] = ACTIONS(5740), + [anon_sym_partial] = ACTIONS(5740), + [anon_sym_private] = ACTIONS(5740), + [anon_sym_protected] = ACTIONS(5740), + [anon_sym_public] = ACTIONS(5740), + [anon_sym_readonly] = ACTIONS(5740), + [anon_sym_required] = ACTIONS(5740), + [anon_sym_sealed] = ACTIONS(5740), + [anon_sym_virtual] = ACTIONS(5740), + [anon_sym_volatile] = ACTIONS(5740), + [anon_sym_where] = ACTIONS(5264), + [anon_sym_notnull] = ACTIONS(5264), + [anon_sym_unmanaged] = ACTIONS(5264), + [anon_sym_scoped] = ACTIONS(5264), + [anon_sym_var] = ACTIONS(5264), + [sym_predefined_type] = ACTIONS(5264), + [anon_sym_yield] = ACTIONS(5264), + [anon_sym_when] = ACTIONS(5264), + [anon_sym_from] = ACTIONS(5264), + [anon_sym_into] = ACTIONS(5264), + [anon_sym_join] = ACTIONS(5264), + [anon_sym_on] = ACTIONS(5264), + [anon_sym_equals] = ACTIONS(5264), + [anon_sym_let] = ACTIONS(5264), + [anon_sym_orderby] = ACTIONS(5264), + [anon_sym_ascending] = ACTIONS(5264), + [anon_sym_descending] = ACTIONS(5264), + [anon_sym_group] = ACTIONS(5264), + [anon_sym_by] = ACTIONS(5264), + [anon_sym_select] = ACTIONS(5264), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516261,24 +516296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3606] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6984), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3606), [sym_preproc_endregion] = STATE(3606), [sym_preproc_line] = STATE(3606), @@ -516288,36 +516305,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3606), [sym_preproc_define] = STATE(3606), [sym_preproc_undef] = STATE(3606), - [aux_sym_type_argument_list_repeat1] = STATE(6985), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5767), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(5071), + [anon_sym_extern] = ACTIONS(5071), + [anon_sym_alias] = ACTIONS(5071), + [anon_sym_global] = ACTIONS(5071), + [anon_sym_unsafe] = ACTIONS(5071), + [anon_sym_static] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5073), + [anon_sym_ref] = ACTIONS(5071), + [anon_sym_delegate] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_async] = ACTIONS(5071), + [anon_sym_const] = ACTIONS(5071), + [anon_sym_file] = ACTIONS(5071), + [anon_sym_fixed] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_new] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_partial] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_readonly] = ACTIONS(5071), + [anon_sym_required] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_virtual] = ACTIONS(5071), + [anon_sym_volatile] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_notnull] = ACTIONS(5071), + [anon_sym_unmanaged] = ACTIONS(5071), + [anon_sym_scoped] = ACTIONS(5071), + [anon_sym_var] = ACTIONS(5071), + [sym_predefined_type] = ACTIONS(5071), + [anon_sym_yield] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_from] = ACTIONS(5071), + [anon_sym_into] = ACTIONS(5071), + [anon_sym_join] = ACTIONS(5071), + [anon_sym_on] = ACTIONS(5071), + [anon_sym_equals] = ACTIONS(5071), + [anon_sym_let] = ACTIONS(5071), + [anon_sym_orderby] = ACTIONS(5071), + [anon_sym_ascending] = ACTIONS(5071), + [anon_sym_descending] = ACTIONS(5071), + [anon_sym_group] = ACTIONS(5071), + [anon_sym_by] = ACTIONS(5071), + [anon_sym_select] = ACTIONS(5071), + [aux_sym_preproc_if_token1] = ACTIONS(5073), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516330,8 +516365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3607] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_initializer_expression] = STATE(3824), [sym_preproc_region] = STATE(3607), [sym_preproc_endregion] = STATE(3607), [sym_preproc_line] = STATE(3607), @@ -516341,52 +516375,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3607), [sym_preproc_define] = STATE(3607), [sym_preproc_undef] = STATE(3607), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5769), - [anon_sym_or] = ACTIONS(5771), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5769), - [anon_sym_into] = ACTIONS(5769), - [anon_sym_join] = ACTIONS(5769), - [anon_sym_let] = ACTIONS(5769), - [anon_sym_orderby] = ACTIONS(5769), - [anon_sym_ascending] = ACTIONS(5769), - [anon_sym_descending] = ACTIONS(5769), - [anon_sym_group] = ACTIONS(5769), - [anon_sym_select] = ACTIONS(5769), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_where] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4889), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_GT_GT_GT] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_GT_EQ] = ACTIONS(4889), + [anon_sym_LT_EQ] = ACTIONS(4889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_switch] = ACTIONS(4889), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_and] = ACTIONS(4889), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_QMARK_QMARK] = ACTIONS(4889), + [anon_sym_from] = ACTIONS(4889), + [anon_sym_into] = ACTIONS(4889), + [anon_sym_join] = ACTIONS(4889), + [anon_sym_let] = ACTIONS(4889), + [anon_sym_orderby] = ACTIONS(4889), + [anon_sym_ascending] = ACTIONS(4889), + [anon_sym_descending] = ACTIONS(4889), + [anon_sym_group] = ACTIONS(4889), + [anon_sym_select] = ACTIONS(4889), + [anon_sym_as] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4889), + [anon_sym_DASH_GT] = ACTIONS(4889), + [anon_sym_with] = ACTIONS(4889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516399,6 +516434,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3608] = { + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(5187), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(4944), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(4595), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3608), [sym_preproc_endregion] = STATE(3608), [sym_preproc_line] = STATE(3608), @@ -516408,54 +516462,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3608), [sym_preproc_define] = STATE(3608), [sym_preproc_undef] = STATE(3608), - [anon_sym_EQ] = ACTIONS(5773), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5775), - [anon_sym_DASH_EQ] = ACTIONS(5775), - [anon_sym_STAR_EQ] = ACTIONS(5775), - [anon_sym_SLASH_EQ] = ACTIONS(5775), - [anon_sym_PERCENT_EQ] = ACTIONS(5775), - [anon_sym_AMP_EQ] = ACTIONS(5775), - [anon_sym_CARET_EQ] = ACTIONS(5775), - [anon_sym_PIPE_EQ] = ACTIONS(5775), - [anon_sym_LT_LT_EQ] = ACTIONS(5775), - [anon_sym_GT_GT_EQ] = ACTIONS(5775), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5775), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5775), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5743), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516468,8 +516503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3609] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_block] = STATE(7163), [sym_preproc_region] = STATE(3609), [sym_preproc_endregion] = STATE(3609), [sym_preproc_line] = STATE(3609), @@ -516479,52 +516513,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3609), [sym_preproc_define] = STATE(3609), [sym_preproc_undef] = STATE(3609), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5777), - [anon_sym_into] = ACTIONS(5777), - [anon_sym_join] = ACTIONS(5777), - [anon_sym_let] = ACTIONS(5777), - [anon_sym_orderby] = ACTIONS(5777), - [anon_sym_ascending] = ACTIONS(5777), - [anon_sym_descending] = ACTIONS(5777), - [anon_sym_group] = ACTIONS(5777), - [anon_sym_select] = ACTIONS(5777), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5638), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516537,8 +516572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3610] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_initializer_expression] = STATE(3784), [sym_preproc_region] = STATE(3610), [sym_preproc_endregion] = STATE(3610), [sym_preproc_line] = STATE(3610), @@ -516548,52 +516582,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3610), [sym_preproc_define] = STATE(3610), [sym_preproc_undef] = STATE(3610), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_ascending] = ACTIONS(5172), - [anon_sym_descending] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(5748), + [anon_sym_BANG] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_GT_GT_GT] = ACTIONS(4920), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_switch] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4920), + [anon_sym_and] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_QMARK_QMARK] = ACTIONS(4920), + [anon_sym_from] = ACTIONS(4920), + [anon_sym_into] = ACTIONS(4920), + [anon_sym_join] = ACTIONS(4920), + [anon_sym_let] = ACTIONS(4920), + [anon_sym_orderby] = ACTIONS(4920), + [anon_sym_ascending] = ACTIONS(4920), + [anon_sym_descending] = ACTIONS(4920), + [anon_sym_group] = ACTIONS(4920), + [anon_sym_select] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_with] = ACTIONS(4920), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516606,25 +516641,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3611] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_argument_list] = STATE(3172), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3168), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3187), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3611), [sym_preproc_endregion] = STATE(3611), [sym_preproc_line] = STATE(3611), @@ -516634,35 +516669,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3611), [sym_preproc_define] = STATE(3611), [sym_preproc_undef] = STATE(3611), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5781), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_ref] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5760), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516675,8 +516710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3612] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3612), [sym_preproc_endregion] = STATE(3612), [sym_preproc_line] = STATE(3612), @@ -516686,52 +516719,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3612), [sym_preproc_define] = STATE(3612), [sym_preproc_undef] = STATE(3612), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5783), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5783), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5783), - [anon_sym_or] = ACTIONS(5785), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5783), - [anon_sym_into] = ACTIONS(5783), - [anon_sym_join] = ACTIONS(5783), - [anon_sym_let] = ACTIONS(5783), - [anon_sym_orderby] = ACTIONS(5783), - [anon_sym_ascending] = ACTIONS(5783), - [anon_sym_descending] = ACTIONS(5783), - [anon_sym_group] = ACTIONS(5783), - [anon_sym_select] = ACTIONS(5783), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3785), + [anon_sym_extern] = ACTIONS(3785), + [anon_sym_alias] = ACTIONS(3785), + [anon_sym_global] = ACTIONS(3785), + [anon_sym_unsafe] = ACTIONS(3785), + [anon_sym_static] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3787), + [anon_sym_ref] = ACTIONS(3785), + [anon_sym_delegate] = ACTIONS(3785), + [anon_sym_abstract] = ACTIONS(3785), + [anon_sym_async] = ACTIONS(3785), + [anon_sym_const] = ACTIONS(3785), + [anon_sym_file] = ACTIONS(3785), + [anon_sym_fixed] = ACTIONS(3785), + [anon_sym_internal] = ACTIONS(3785), + [anon_sym_new] = ACTIONS(3785), + [anon_sym_override] = ACTIONS(3785), + [anon_sym_partial] = ACTIONS(3785), + [anon_sym_private] = ACTIONS(3785), + [anon_sym_protected] = ACTIONS(3785), + [anon_sym_public] = ACTIONS(3785), + [anon_sym_readonly] = ACTIONS(3785), + [anon_sym_required] = ACTIONS(3785), + [anon_sym_sealed] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3785), + [anon_sym_volatile] = ACTIONS(3785), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_notnull] = ACTIONS(3785), + [anon_sym_unmanaged] = ACTIONS(3785), + [anon_sym_scoped] = ACTIONS(3785), + [anon_sym_var] = ACTIONS(3785), + [sym_predefined_type] = ACTIONS(3785), + [anon_sym_yield] = ACTIONS(3785), + [anon_sym_when] = ACTIONS(3785), + [anon_sym_from] = ACTIONS(3785), + [anon_sym_into] = ACTIONS(3785), + [anon_sym_join] = ACTIONS(3785), + [anon_sym_on] = ACTIONS(3785), + [anon_sym_equals] = ACTIONS(3785), + [anon_sym_let] = ACTIONS(3785), + [anon_sym_orderby] = ACTIONS(3785), + [anon_sym_ascending] = ACTIONS(3785), + [anon_sym_descending] = ACTIONS(3785), + [anon_sym_group] = ACTIONS(3785), + [anon_sym_by] = ACTIONS(3785), + [anon_sym_select] = ACTIONS(3785), + [aux_sym_preproc_if_token1] = ACTIONS(3787), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516744,6 +516779,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3613] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6865), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3613), [sym_preproc_endregion] = STATE(3613), [sym_preproc_line] = STATE(3613), @@ -516753,54 +516806,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3613), [sym_preproc_define] = STATE(3613), [sym_preproc_undef] = STATE(3613), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5787), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [aux_sym_type_argument_list_repeat1] = STATE(6867), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516813,25 +516848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3614] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3323), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3614), [sym_preproc_endregion] = STATE(3614), [sym_preproc_line] = STATE(3614), @@ -516841,35 +516857,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3614), [sym_preproc_define] = STATE(3614), [sym_preproc_undef] = STATE(3614), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(3816), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5789), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(4823), + [anon_sym_extern] = ACTIONS(4823), + [anon_sym_alias] = ACTIONS(4823), + [anon_sym_global] = ACTIONS(4823), + [anon_sym_unsafe] = ACTIONS(4823), + [anon_sym_static] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4825), + [anon_sym_ref] = ACTIONS(4823), + [anon_sym_delegate] = ACTIONS(4823), + [anon_sym_abstract] = ACTIONS(4823), + [anon_sym_async] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_file] = ACTIONS(4823), + [anon_sym_fixed] = ACTIONS(4823), + [anon_sym_internal] = ACTIONS(4823), + [anon_sym_new] = ACTIONS(4823), + [anon_sym_override] = ACTIONS(4823), + [anon_sym_partial] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(4823), + [anon_sym_protected] = ACTIONS(4823), + [anon_sym_public] = ACTIONS(4823), + [anon_sym_readonly] = ACTIONS(4823), + [anon_sym_required] = ACTIONS(4823), + [anon_sym_sealed] = ACTIONS(4823), + [anon_sym_virtual] = ACTIONS(4823), + [anon_sym_volatile] = ACTIONS(4823), + [anon_sym_where] = ACTIONS(4823), + [anon_sym_notnull] = ACTIONS(4823), + [anon_sym_unmanaged] = ACTIONS(4823), + [anon_sym_scoped] = ACTIONS(4823), + [anon_sym_var] = ACTIONS(4823), + [sym_predefined_type] = ACTIONS(4823), + [anon_sym_yield] = ACTIONS(4823), + [anon_sym_when] = ACTIONS(4823), + [anon_sym_from] = ACTIONS(4823), + [anon_sym_into] = ACTIONS(4823), + [anon_sym_join] = ACTIONS(4823), + [anon_sym_on] = ACTIONS(4823), + [anon_sym_equals] = ACTIONS(4823), + [anon_sym_let] = ACTIONS(4823), + [anon_sym_orderby] = ACTIONS(4823), + [anon_sym_ascending] = ACTIONS(4823), + [anon_sym_descending] = ACTIONS(4823), + [anon_sym_group] = ACTIONS(4823), + [anon_sym_by] = ACTIONS(4823), + [anon_sym_select] = ACTIONS(4823), + [aux_sym_preproc_if_token1] = ACTIONS(4825), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516882,8 +516917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3615] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3615), [sym_preproc_endregion] = STATE(3615), [sym_preproc_line] = STATE(3615), @@ -516893,52 +516928,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3615), [sym_preproc_define] = STATE(3615), [sym_preproc_undef] = STATE(3615), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(1229), + [anon_sym_into] = ACTIONS(1229), + [anon_sym_join] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_orderby] = ACTIONS(1229), + [anon_sym_ascending] = ACTIONS(1229), + [anon_sym_descending] = ACTIONS(1229), + [anon_sym_group] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1229), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516951,6 +516986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3616] = { + [sym_initializer_expression] = STATE(3777), [sym_preproc_region] = STATE(3616), [sym_preproc_endregion] = STATE(3616), [sym_preproc_line] = STATE(3616), @@ -516960,54 +516996,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3616), [sym_preproc_define] = STATE(3616), [sym_preproc_undef] = STATE(3616), - [anon_sym_EQ] = ACTIONS(5791), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5793), - [anon_sym_DASH_EQ] = ACTIONS(5793), - [anon_sym_STAR_EQ] = ACTIONS(5793), - [anon_sym_SLASH_EQ] = ACTIONS(5793), - [anon_sym_PERCENT_EQ] = ACTIONS(5793), - [anon_sym_AMP_EQ] = ACTIONS(5793), - [anon_sym_CARET_EQ] = ACTIONS(5793), - [anon_sym_PIPE_EQ] = ACTIONS(5793), - [anon_sym_LT_LT_EQ] = ACTIONS(5793), - [anon_sym_GT_GT_EQ] = ACTIONS(5793), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5793), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5793), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_where] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4871), + [anon_sym_DASH_DASH] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4871), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_CARET] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_GT_GT_GT] = ACTIONS(4871), + [anon_sym_EQ_EQ] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4871), + [anon_sym_GT_EQ] = ACTIONS(4871), + [anon_sym_LT_EQ] = ACTIONS(4871), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_switch] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4871), + [anon_sym_and] = ACTIONS(4871), + [anon_sym_or] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_QMARK_QMARK] = ACTIONS(4871), + [anon_sym_from] = ACTIONS(4871), + [anon_sym_into] = ACTIONS(4871), + [anon_sym_join] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4871), + [anon_sym_orderby] = ACTIONS(4871), + [anon_sym_ascending] = ACTIONS(4871), + [anon_sym_descending] = ACTIONS(4871), + [anon_sym_group] = ACTIONS(4871), + [anon_sym_select] = ACTIONS(4871), + [anon_sym_as] = ACTIONS(4873), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_DASH_GT] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517020,8 +517055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3617] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3617), [sym_preproc_endregion] = STATE(3617), [sym_preproc_line] = STATE(3617), @@ -517031,52 +517064,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3617), [sym_preproc_define] = STATE(3617), [sym_preproc_undef] = STATE(3617), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(5055), + [anon_sym_extern] = ACTIONS(5055), + [anon_sym_alias] = ACTIONS(5055), + [anon_sym_global] = ACTIONS(5055), + [anon_sym_unsafe] = ACTIONS(5055), + [anon_sym_static] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_ref] = ACTIONS(5055), + [anon_sym_delegate] = ACTIONS(5055), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_async] = ACTIONS(5055), + [anon_sym_const] = ACTIONS(5055), + [anon_sym_file] = ACTIONS(5055), + [anon_sym_fixed] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_new] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_partial] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_readonly] = ACTIONS(5055), + [anon_sym_required] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_virtual] = ACTIONS(5055), + [anon_sym_volatile] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_notnull] = ACTIONS(5055), + [anon_sym_unmanaged] = ACTIONS(5055), + [anon_sym_scoped] = ACTIONS(5055), + [anon_sym_var] = ACTIONS(5055), + [sym_predefined_type] = ACTIONS(5055), + [anon_sym_yield] = ACTIONS(5055), + [anon_sym_when] = ACTIONS(5055), + [anon_sym_from] = ACTIONS(5055), + [anon_sym_into] = ACTIONS(5055), + [anon_sym_join] = ACTIONS(5055), + [anon_sym_on] = ACTIONS(5055), + [anon_sym_equals] = ACTIONS(5055), + [anon_sym_let] = ACTIONS(5055), + [anon_sym_orderby] = ACTIONS(5055), + [anon_sym_ascending] = ACTIONS(5055), + [anon_sym_descending] = ACTIONS(5055), + [anon_sym_group] = ACTIONS(5055), + [anon_sym_by] = ACTIONS(5055), + [anon_sym_select] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5057), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517089,8 +517124,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3618] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3269), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3618), [sym_preproc_endregion] = STATE(3618), [sym_preproc_line] = STATE(3618), @@ -517100,52 +517152,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3618), [sym_preproc_define] = STATE(3618), [sym_preproc_undef] = STATE(3618), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5768), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517158,8 +517193,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3619] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3172), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3168), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3187), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3619), [sym_preproc_endregion] = STATE(3619), [sym_preproc_line] = STATE(3619), @@ -517169,52 +517221,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3619), [sym_preproc_define] = STATE(3619), [sym_preproc_undef] = STATE(3619), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_ref] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5770), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517227,8 +517262,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3620] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(2939), + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2915), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(3540), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3620), [sym_preproc_endregion] = STATE(3620), [sym_preproc_line] = STATE(3620), @@ -517238,52 +517290,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3620), [sym_preproc_define] = STATE(3620), [sym_preproc_undef] = STATE(3620), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_ref] = ACTIONS(4257), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5780), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517296,8 +517331,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3621] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(2939), + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2915), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(3540), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3621), [sym_preproc_endregion] = STATE(3621), [sym_preproc_line] = STATE(3621), @@ -517307,52 +517359,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3621), [sym_preproc_define] = STATE(3621), [sym_preproc_undef] = STATE(3621), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_ref] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5786), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517365,8 +517400,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3622] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3269), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3622), [sym_preproc_endregion] = STATE(3622), [sym_preproc_line] = STATE(3622), @@ -517376,52 +517428,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3622), [sym_preproc_define] = STATE(3622), [sym_preproc_undef] = STATE(3622), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5788), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517434,7 +517469,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3623] = { - [sym_modifier] = STATE(3870), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6874), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3623), [sym_preproc_endregion] = STATE(3623), [sym_preproc_line] = STATE(3623), @@ -517444,53 +517496,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3623), [sym_preproc_define] = STATE(3623), [sym_preproc_undef] = STATE(3623), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3623), - [sym__identifier_token] = ACTIONS(5266), - [anon_sym_extern] = ACTIONS(5795), - [anon_sym_alias] = ACTIONS(5266), - [anon_sym_global] = ACTIONS(5266), - [anon_sym_unsafe] = ACTIONS(5795), - [anon_sym_static] = ACTIONS(5795), - [anon_sym_LPAREN] = ACTIONS(5271), - [anon_sym_ref] = ACTIONS(5266), - [anon_sym_delegate] = ACTIONS(5266), - [anon_sym_abstract] = ACTIONS(5795), - [anon_sym_async] = ACTIONS(5795), - [anon_sym_const] = ACTIONS(5795), - [anon_sym_file] = ACTIONS(5795), - [anon_sym_fixed] = ACTIONS(5795), - [anon_sym_internal] = ACTIONS(5795), - [anon_sym_new] = ACTIONS(5795), - [anon_sym_override] = ACTIONS(5795), - [anon_sym_partial] = ACTIONS(5795), - [anon_sym_private] = ACTIONS(5795), - [anon_sym_protected] = ACTIONS(5795), - [anon_sym_public] = ACTIONS(5795), - [anon_sym_readonly] = ACTIONS(5795), - [anon_sym_required] = ACTIONS(5795), - [anon_sym_sealed] = ACTIONS(5795), - [anon_sym_virtual] = ACTIONS(5795), - [anon_sym_volatile] = ACTIONS(5795), - [anon_sym_where] = ACTIONS(5266), - [anon_sym_notnull] = ACTIONS(5266), - [anon_sym_unmanaged] = ACTIONS(5266), - [anon_sym_scoped] = ACTIONS(5266), - [anon_sym_var] = ACTIONS(5266), - [sym_predefined_type] = ACTIONS(5266), - [anon_sym_yield] = ACTIONS(5266), - [anon_sym_when] = ACTIONS(5266), - [anon_sym_from] = ACTIONS(5266), - [anon_sym_into] = ACTIONS(5266), - [anon_sym_join] = ACTIONS(5266), - [anon_sym_on] = ACTIONS(5266), - [anon_sym_equals] = ACTIONS(5266), - [anon_sym_let] = ACTIONS(5266), - [anon_sym_orderby] = ACTIONS(5266), - [anon_sym_ascending] = ACTIONS(5266), - [anon_sym_descending] = ACTIONS(5266), - [anon_sym_group] = ACTIONS(5266), - [anon_sym_by] = ACTIONS(5266), - [anon_sym_select] = ACTIONS(5266), + [aux_sym_type_argument_list_repeat1] = STATE(6877), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5790), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517503,25 +517538,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3624] = { - [sym_argument_list] = STATE(3184), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3176), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3269), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3624), [sym_preproc_endregion] = STATE(3624), [sym_preproc_line] = STATE(3624), @@ -517531,35 +517566,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3624), [sym_preproc_define] = STATE(3624), [sym_preproc_undef] = STATE(3624), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(5798), - [anon_sym_LPAREN] = ACTIONS(5800), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(5802), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5806), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5792), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517572,24 +517607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3625] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7054), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3625), [sym_preproc_endregion] = STATE(3625), [sym_preproc_line] = STATE(3625), @@ -517599,36 +517618,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3625), [sym_preproc_define] = STATE(3625), [sym_preproc_undef] = STATE(3625), - [aux_sym_type_argument_list_repeat1] = STATE(7057), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5812), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5794), + [anon_sym_or] = ACTIONS(5810), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5794), + [anon_sym_into] = ACTIONS(5794), + [anon_sym_join] = ACTIONS(5794), + [anon_sym_let] = ACTIONS(5794), + [anon_sym_orderby] = ACTIONS(5794), + [anon_sym_ascending] = ACTIONS(5794), + [anon_sym_descending] = ACTIONS(5794), + [anon_sym_group] = ACTIONS(5794), + [anon_sym_select] = ACTIONS(5794), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517641,7 +517676,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3626] = { - [sym_block] = STATE(2119), [sym_preproc_region] = STATE(3626), [sym_preproc_endregion] = STATE(3626), [sym_preproc_line] = STATE(3626), @@ -517651,53 +517685,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3626), [sym_preproc_define] = STATE(3626), [sym_preproc_undef] = STATE(3626), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5814), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_EQ] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5824), + [anon_sym_DASH_EQ] = ACTIONS(5824), + [anon_sym_STAR_EQ] = ACTIONS(5824), + [anon_sym_SLASH_EQ] = ACTIONS(5824), + [anon_sym_PERCENT_EQ] = ACTIONS(5824), + [anon_sym_AMP_EQ] = ACTIONS(5824), + [anon_sym_CARET_EQ] = ACTIONS(5824), + [anon_sym_PIPE_EQ] = ACTIONS(5824), + [anon_sym_LT_LT_EQ] = ACTIONS(5824), + [anon_sym_GT_GT_EQ] = ACTIONS(5824), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5824), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5824), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517710,24 +517745,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3627] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7091), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3627), [sym_preproc_endregion] = STATE(3627), [sym_preproc_line] = STATE(3627), @@ -517737,36 +517773,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3627), [sym_preproc_define] = STATE(3627), [sym_preproc_undef] = STATE(3627), - [aux_sym_type_argument_list_repeat1] = STATE(7098), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5826), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517779,6 +517814,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3628] = { + [sym_argument_list] = STATE(3172), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3168), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3187), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3628), [sym_preproc_endregion] = STATE(3628), [sym_preproc_line] = STATE(3628), @@ -517788,54 +517842,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3628), [sym_preproc_define] = STATE(3628), [sym_preproc_undef] = STATE(3628), - [sym__identifier_token] = ACTIONS(3785), - [anon_sym_extern] = ACTIONS(3785), - [anon_sym_alias] = ACTIONS(3785), - [anon_sym_global] = ACTIONS(3785), - [anon_sym_unsafe] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_ref] = ACTIONS(3785), - [anon_sym_delegate] = ACTIONS(3785), - [anon_sym_abstract] = ACTIONS(3785), - [anon_sym_async] = ACTIONS(3785), - [anon_sym_const] = ACTIONS(3785), - [anon_sym_file] = ACTIONS(3785), - [anon_sym_fixed] = ACTIONS(3785), - [anon_sym_internal] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3785), - [anon_sym_override] = ACTIONS(3785), - [anon_sym_partial] = ACTIONS(3785), - [anon_sym_private] = ACTIONS(3785), - [anon_sym_protected] = ACTIONS(3785), - [anon_sym_public] = ACTIONS(3785), - [anon_sym_readonly] = ACTIONS(3785), - [anon_sym_required] = ACTIONS(3785), - [anon_sym_sealed] = ACTIONS(3785), - [anon_sym_virtual] = ACTIONS(3785), - [anon_sym_volatile] = ACTIONS(3785), - [anon_sym_where] = ACTIONS(3785), - [anon_sym_notnull] = ACTIONS(3785), - [anon_sym_unmanaged] = ACTIONS(3785), - [anon_sym_scoped] = ACTIONS(3785), - [anon_sym_var] = ACTIONS(3785), - [sym_predefined_type] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3785), - [anon_sym_when] = ACTIONS(3785), - [anon_sym_from] = ACTIONS(3785), - [anon_sym_into] = ACTIONS(3785), - [anon_sym_join] = ACTIONS(3785), - [anon_sym_on] = ACTIONS(3785), - [anon_sym_equals] = ACTIONS(3785), - [anon_sym_let] = ACTIONS(3785), - [anon_sym_orderby] = ACTIONS(3785), - [anon_sym_ascending] = ACTIONS(3785), - [anon_sym_descending] = ACTIONS(3785), - [anon_sym_group] = ACTIONS(3785), - [anon_sym_by] = ACTIONS(3785), - [anon_sym_select] = ACTIONS(3785), - [aux_sym_preproc_if_token1] = ACTIONS(3787), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_ref] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5828), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517848,25 +517883,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3629] = { - [sym_argument_list] = STATE(2938), - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2922), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(3408), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(3172), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3168), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3187), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3629), [sym_preproc_endregion] = STATE(3629), [sym_preproc_line] = STATE(3629), @@ -517876,35 +517911,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3629), [sym_preproc_define] = STATE(3629), [sym_preproc_undef] = STATE(3629), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(5818), - [anon_sym_ref] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5824), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_ref] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5830), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517917,6 +517952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3630] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3630), [sym_preproc_endregion] = STATE(3630), [sym_preproc_line] = STATE(3630), @@ -517926,54 +517963,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3630), [sym_preproc_define] = STATE(3630), [sym_preproc_undef] = STATE(3630), - [sym__identifier_token] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym_alias] = ACTIONS(4852), - [anon_sym_global] = ACTIONS(4852), - [anon_sym_unsafe] = ACTIONS(4852), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_ref] = ACTIONS(4852), - [anon_sym_delegate] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_async] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_file] = ACTIONS(4852), - [anon_sym_fixed] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_new] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_partial] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_readonly] = ACTIONS(4852), - [anon_sym_required] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_virtual] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_notnull] = ACTIONS(4852), - [anon_sym_unmanaged] = ACTIONS(4852), - [anon_sym_scoped] = ACTIONS(4852), - [anon_sym_var] = ACTIONS(4852), - [sym_predefined_type] = ACTIONS(4852), - [anon_sym_yield] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_from] = ACTIONS(4852), - [anon_sym_into] = ACTIONS(4852), - [anon_sym_join] = ACTIONS(4852), - [anon_sym_on] = ACTIONS(4852), - [anon_sym_equals] = ACTIONS(4852), - [anon_sym_let] = ACTIONS(4852), - [anon_sym_orderby] = ACTIONS(4852), - [anon_sym_ascending] = ACTIONS(4852), - [anon_sym_descending] = ACTIONS(4852), - [anon_sym_group] = ACTIONS(4852), - [anon_sym_by] = ACTIONS(4852), - [anon_sym_select] = ACTIONS(4852), - [aux_sym_preproc_if_token1] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_where] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_PERCENT] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_LT_LT] = ACTIONS(4875), + [anon_sym_GT_GT] = ACTIONS(4879), + [anon_sym_GT_GT_GT] = ACTIONS(4875), + [anon_sym_EQ_EQ] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4875), + [anon_sym_GT_EQ] = ACTIONS(4875), + [anon_sym_LT_EQ] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(4875), + [anon_sym_DOT_DOT] = ACTIONS(4875), + [anon_sym_and] = ACTIONS(4875), + [anon_sym_or] = ACTIONS(4879), + [anon_sym_AMP_AMP] = ACTIONS(4875), + [anon_sym_PIPE_PIPE] = ACTIONS(4875), + [anon_sym_QMARK_QMARK] = ACTIONS(4875), + [anon_sym_from] = ACTIONS(4875), + [anon_sym_into] = ACTIONS(4875), + [anon_sym_join] = ACTIONS(4875), + [anon_sym_let] = ACTIONS(4875), + [anon_sym_orderby] = ACTIONS(4875), + [anon_sym_ascending] = ACTIONS(4875), + [anon_sym_descending] = ACTIONS(4875), + [anon_sym_group] = ACTIONS(4875), + [anon_sym_select] = ACTIONS(4875), + [anon_sym_as] = ACTIONS(4879), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4875), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517986,7 +518021,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3631] = { - [sym_block] = STATE(7156), + [sym_argument_list] = STATE(3172), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3168), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3187), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3631), [sym_preproc_endregion] = STATE(3631), [sym_preproc_line] = STATE(3631), @@ -517996,53 +518049,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3631), [sym_preproc_define] = STATE(3631), [sym_preproc_undef] = STATE(3631), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_ref] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5832), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518055,25 +518090,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3632] = { - [sym_argument_list] = STATE(3656), - [sym__name] = STATE(2456), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(3577), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(3602), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), + [sym_argument_list] = STATE(3216), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3176), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3269), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3632), [sym_preproc_endregion] = STATE(3632), [sym_preproc_line] = STATE(3632), @@ -518083,35 +518118,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3632), [sym_preproc_define] = STATE(3632), [sym_preproc_undef] = STATE(3632), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5832), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(5834), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(5836), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5706), + [anon_sym_LPAREN] = ACTIONS(5708), + [anon_sym_ref] = ACTIONS(4081), + [anon_sym_LBRACE] = ACTIONS(5710), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5834), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518124,8 +518159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3633] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3633), [sym_preproc_endregion] = STATE(3633), [sym_preproc_line] = STATE(3633), @@ -518135,52 +518168,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3633), [sym_preproc_define] = STATE(3633), [sym_preproc_undef] = STATE(3633), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(1229), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_from] = ACTIONS(1229), - [anon_sym_into] = ACTIONS(1229), - [anon_sym_join] = ACTIONS(1229), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_orderby] = ACTIONS(1229), - [anon_sym_ascending] = ACTIONS(1229), - [anon_sym_descending] = ACTIONS(1229), - [anon_sym_group] = ACTIONS(1229), - [anon_sym_select] = ACTIONS(1229), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1229), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5836), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518193,25 +518228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3634] = { - [sym_argument_list] = STATE(4378), - [sym__name] = STATE(4447), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_type] = STATE(4278), - [sym_implicit_type] = STATE(4446), - [sym_array_type] = STATE(4351), - [sym__array_base_type] = STATE(7343), - [sym_nullable_type] = STATE(4453), - [sym_pointer_type] = STATE(4453), - [sym__pointer_base_type] = STATE(7426), - [sym_function_pointer_type] = STATE(4453), - [sym_ref_type] = STATE(4446), - [sym_scoped_type] = STATE(4446), - [sym_tuple_type] = STATE(4513), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), [sym_preproc_region] = STATE(3634), [sym_preproc_endregion] = STATE(3634), [sym_preproc_line] = STATE(3634), @@ -518221,35 +518237,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3634), [sym_preproc_define] = STATE(3634), [sym_preproc_undef] = STATE(3634), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5844), - [anon_sym_ref] = ACTIONS(4039), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_delegate] = ACTIONS(5848), - [anon_sym_file] = ACTIONS(4037), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), - [anon_sym_scoped] = ACTIONS(5850), - [anon_sym_var] = ACTIONS(5852), - [sym_predefined_type] = ACTIONS(5854), - [anon_sym_yield] = ACTIONS(4037), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(5838), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5840), + [anon_sym_DASH_EQ] = ACTIONS(5840), + [anon_sym_STAR_EQ] = ACTIONS(5840), + [anon_sym_SLASH_EQ] = ACTIONS(5840), + [anon_sym_PERCENT_EQ] = ACTIONS(5840), + [anon_sym_AMP_EQ] = ACTIONS(5840), + [anon_sym_CARET_EQ] = ACTIONS(5840), + [anon_sym_PIPE_EQ] = ACTIONS(5840), + [anon_sym_LT_LT_EQ] = ACTIONS(5840), + [anon_sym_GT_GT_EQ] = ACTIONS(5840), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5840), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5840), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518262,6 +518297,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3635] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6948), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3635), [sym_preproc_endregion] = STATE(3635), [sym_preproc_line] = STATE(3635), @@ -518271,54 +518324,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3635), [sym_preproc_define] = STATE(3635), [sym_preproc_undef] = STATE(3635), - [sym__identifier_token] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_alias] = ACTIONS(4856), - [anon_sym_global] = ACTIONS(4856), - [anon_sym_unsafe] = ACTIONS(4856), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_ref] = ACTIONS(4856), - [anon_sym_delegate] = ACTIONS(4856), - [anon_sym_abstract] = ACTIONS(4856), - [anon_sym_async] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_file] = ACTIONS(4856), - [anon_sym_fixed] = ACTIONS(4856), - [anon_sym_internal] = ACTIONS(4856), - [anon_sym_new] = ACTIONS(4856), - [anon_sym_override] = ACTIONS(4856), - [anon_sym_partial] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [anon_sym_readonly] = ACTIONS(4856), - [anon_sym_required] = ACTIONS(4856), - [anon_sym_sealed] = ACTIONS(4856), - [anon_sym_virtual] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4856), - [anon_sym_notnull] = ACTIONS(4856), - [anon_sym_unmanaged] = ACTIONS(4856), - [anon_sym_scoped] = ACTIONS(4856), - [anon_sym_var] = ACTIONS(4856), - [sym_predefined_type] = ACTIONS(4856), - [anon_sym_yield] = ACTIONS(4856), - [anon_sym_when] = ACTIONS(4856), - [anon_sym_from] = ACTIONS(4856), - [anon_sym_into] = ACTIONS(4856), - [anon_sym_join] = ACTIONS(4856), - [anon_sym_on] = ACTIONS(4856), - [anon_sym_equals] = ACTIONS(4856), - [anon_sym_let] = ACTIONS(4856), - [anon_sym_orderby] = ACTIONS(4856), - [anon_sym_ascending] = ACTIONS(4856), - [anon_sym_descending] = ACTIONS(4856), - [anon_sym_group] = ACTIONS(4856), - [anon_sym_by] = ACTIONS(4856), - [anon_sym_select] = ACTIONS(4856), - [aux_sym_preproc_if_token1] = ACTIONS(4858), + [aux_sym_type_argument_list_repeat1] = STATE(6949), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5842), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518331,63 +518366,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3636] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6979), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3636), [sym_preproc_endregion] = STATE(3636), [sym_preproc_line] = STATE(3636), - [sym_preproc_pragma] = STATE(3636), - [sym_preproc_nullable] = STATE(3636), - [sym_preproc_error] = STATE(3636), - [sym_preproc_warning] = STATE(3636), - [sym_preproc_define] = STATE(3636), - [sym_preproc_undef] = STATE(3636), - [sym__identifier_token] = ACTIONS(4811), - [anon_sym_extern] = ACTIONS(4811), - [anon_sym_alias] = ACTIONS(4811), - [anon_sym_global] = ACTIONS(4811), - [anon_sym_unsafe] = ACTIONS(4811), - [anon_sym_static] = ACTIONS(4811), - [anon_sym_LBRACK] = ACTIONS(4813), - [anon_sym_LPAREN] = ACTIONS(4813), - [anon_sym_ref] = ACTIONS(4811), - [anon_sym_delegate] = ACTIONS(4811), - [anon_sym_abstract] = ACTIONS(4811), - [anon_sym_async] = ACTIONS(4811), - [anon_sym_const] = ACTIONS(4811), - [anon_sym_file] = ACTIONS(4811), - [anon_sym_fixed] = ACTIONS(4811), - [anon_sym_internal] = ACTIONS(4811), - [anon_sym_new] = ACTIONS(4811), - [anon_sym_override] = ACTIONS(4811), - [anon_sym_partial] = ACTIONS(4811), - [anon_sym_private] = ACTIONS(4811), - [anon_sym_protected] = ACTIONS(4811), - [anon_sym_public] = ACTIONS(4811), - [anon_sym_readonly] = ACTIONS(4811), - [anon_sym_required] = ACTIONS(4811), - [anon_sym_sealed] = ACTIONS(4811), - [anon_sym_virtual] = ACTIONS(4811), - [anon_sym_volatile] = ACTIONS(4811), - [anon_sym_where] = ACTIONS(4811), - [anon_sym_notnull] = ACTIONS(4811), - [anon_sym_unmanaged] = ACTIONS(4811), - [anon_sym_scoped] = ACTIONS(4811), - [anon_sym_var] = ACTIONS(4811), - [sym_predefined_type] = ACTIONS(4811), - [anon_sym_yield] = ACTIONS(4811), - [anon_sym_when] = ACTIONS(4811), - [anon_sym_from] = ACTIONS(4811), - [anon_sym_into] = ACTIONS(4811), - [anon_sym_join] = ACTIONS(4811), - [anon_sym_on] = ACTIONS(4811), - [anon_sym_equals] = ACTIONS(4811), - [anon_sym_let] = ACTIONS(4811), - [anon_sym_orderby] = ACTIONS(4811), - [anon_sym_ascending] = ACTIONS(4811), - [anon_sym_descending] = ACTIONS(4811), - [anon_sym_group] = ACTIONS(4811), - [anon_sym_by] = ACTIONS(4811), - [anon_sym_select] = ACTIONS(4811), - [aux_sym_preproc_if_token1] = ACTIONS(4813), + [sym_preproc_pragma] = STATE(3636), + [sym_preproc_nullable] = STATE(3636), + [sym_preproc_error] = STATE(3636), + [sym_preproc_warning] = STATE(3636), + [sym_preproc_define] = STATE(3636), + [sym_preproc_undef] = STATE(3636), + [aux_sym_type_argument_list_repeat1] = STATE(6980), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5844), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518400,25 +518435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3637] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(4952), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(4461), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(3637), [sym_preproc_endregion] = STATE(3637), [sym_preproc_line] = STATE(3637), @@ -518428,35 +518444,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3637), [sym_preproc_define] = STATE(3637), [sym_preproc_undef] = STATE(3637), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(4077), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5856), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(4743), + [anon_sym_extern] = ACTIONS(4743), + [anon_sym_alias] = ACTIONS(4743), + [anon_sym_global] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_ref] = ACTIONS(4743), + [anon_sym_delegate] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_async] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_file] = ACTIONS(4743), + [anon_sym_fixed] = ACTIONS(4743), + [anon_sym_internal] = ACTIONS(4743), + [anon_sym_new] = ACTIONS(4743), + [anon_sym_override] = ACTIONS(4743), + [anon_sym_partial] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_protected] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_readonly] = ACTIONS(4743), + [anon_sym_required] = ACTIONS(4743), + [anon_sym_sealed] = ACTIONS(4743), + [anon_sym_virtual] = ACTIONS(4743), + [anon_sym_volatile] = ACTIONS(4743), + [anon_sym_where] = ACTIONS(4743), + [anon_sym_notnull] = ACTIONS(4743), + [anon_sym_unmanaged] = ACTIONS(4743), + [anon_sym_scoped] = ACTIONS(4743), + [anon_sym_var] = ACTIONS(4743), + [sym_predefined_type] = ACTIONS(4743), + [anon_sym_yield] = ACTIONS(4743), + [anon_sym_when] = ACTIONS(4743), + [anon_sym_from] = ACTIONS(4743), + [anon_sym_into] = ACTIONS(4743), + [anon_sym_join] = ACTIONS(4743), + [anon_sym_on] = ACTIONS(4743), + [anon_sym_equals] = ACTIONS(4743), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_orderby] = ACTIONS(4743), + [anon_sym_ascending] = ACTIONS(4743), + [anon_sym_descending] = ACTIONS(4743), + [anon_sym_group] = ACTIONS(4743), + [anon_sym_by] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [aux_sym_preproc_if_token1] = ACTIONS(4745), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518469,24 +518504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3638] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6992), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3638), [sym_preproc_endregion] = STATE(3638), [sym_preproc_line] = STATE(3638), @@ -518496,36 +518513,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3638), [sym_preproc_define] = STATE(3638), [sym_preproc_undef] = STATE(3638), - [aux_sym_type_argument_list_repeat1] = STATE(6993), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5848), + [anon_sym_DASH_EQ] = ACTIONS(5848), + [anon_sym_STAR_EQ] = ACTIONS(5848), + [anon_sym_SLASH_EQ] = ACTIONS(5848), + [anon_sym_PERCENT_EQ] = ACTIONS(5848), + [anon_sym_AMP_EQ] = ACTIONS(5848), + [anon_sym_CARET_EQ] = ACTIONS(5848), + [anon_sym_PIPE_EQ] = ACTIONS(5848), + [anon_sym_LT_LT_EQ] = ACTIONS(5848), + [anon_sym_GT_GT_EQ] = ACTIONS(5848), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5848), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5848), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518538,25 +518573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3639] = { - [sym_argument_list] = STATE(2938), - [sym__name] = STATE(4161), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2922), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(4031), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3795), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3639), [sym_preproc_endregion] = STATE(3639), [sym_preproc_line] = STATE(3639), @@ -518566,35 +518584,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3639), [sym_preproc_define] = STATE(3639), [sym_preproc_undef] = STATE(3639), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(5818), - [anon_sym_ref] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5860), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5850), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5850), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5850), + [anon_sym_into] = ACTIONS(5850), + [anon_sym_join] = ACTIONS(5850), + [anon_sym_let] = ACTIONS(5850), + [anon_sym_orderby] = ACTIONS(5850), + [anon_sym_ascending] = ACTIONS(5850), + [anon_sym_descending] = ACTIONS(5850), + [anon_sym_group] = ACTIONS(5850), + [anon_sym_select] = ACTIONS(5850), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518607,24 +518642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3640] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6909), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_block] = STATE(1986), [sym_preproc_region] = STATE(3640), [sym_preproc_endregion] = STATE(3640), [sym_preproc_line] = STATE(3640), @@ -518634,36 +518652,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3640), [sym_preproc_define] = STATE(3640), [sym_preproc_undef] = STATE(3640), - [aux_sym_type_argument_list_repeat1] = STATE(6910), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5327), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518685,54 +518720,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3641), [sym_preproc_define] = STATE(3641), [sym_preproc_undef] = STATE(3641), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5864), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5854), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5856), + [anon_sym_DASH_EQ] = ACTIONS(5856), + [anon_sym_STAR_EQ] = ACTIONS(5856), + [anon_sym_SLASH_EQ] = ACTIONS(5856), + [anon_sym_PERCENT_EQ] = ACTIONS(5856), + [anon_sym_AMP_EQ] = ACTIONS(5856), + [anon_sym_CARET_EQ] = ACTIONS(5856), + [anon_sym_PIPE_EQ] = ACTIONS(5856), + [anon_sym_LT_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_GT_EQ] = ACTIONS(5856), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5856), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5856), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518745,25 +518780,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3642] = { - [sym_argument_list] = STATE(2938), - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2922), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(3408), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3642), [sym_preproc_endregion] = STATE(3642), [sym_preproc_line] = STATE(3642), @@ -518773,35 +518808,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3642), [sym_preproc_define] = STATE(3642), [sym_preproc_undef] = STATE(3642), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(5818), - [anon_sym_ref] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5866), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5858), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518823,54 +518858,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3643), [sym_preproc_define] = STATE(3643), [sym_preproc_undef] = STATE(3643), - [sym__identifier_token] = ACTIONS(4805), - [anon_sym_extern] = ACTIONS(4805), - [anon_sym_alias] = ACTIONS(4805), - [anon_sym_global] = ACTIONS(4805), - [anon_sym_unsafe] = ACTIONS(4805), - [anon_sym_static] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_ref] = ACTIONS(4805), - [anon_sym_delegate] = ACTIONS(4805), - [anon_sym_abstract] = ACTIONS(4805), - [anon_sym_async] = ACTIONS(4805), - [anon_sym_const] = ACTIONS(4805), - [anon_sym_file] = ACTIONS(4805), - [anon_sym_fixed] = ACTIONS(4805), - [anon_sym_internal] = ACTIONS(4805), - [anon_sym_new] = ACTIONS(4805), - [anon_sym_override] = ACTIONS(4805), - [anon_sym_partial] = ACTIONS(4805), - [anon_sym_private] = ACTIONS(4805), - [anon_sym_protected] = ACTIONS(4805), - [anon_sym_public] = ACTIONS(4805), - [anon_sym_readonly] = ACTIONS(4805), - [anon_sym_required] = ACTIONS(4805), - [anon_sym_sealed] = ACTIONS(4805), - [anon_sym_virtual] = ACTIONS(4805), - [anon_sym_volatile] = ACTIONS(4805), - [anon_sym_where] = ACTIONS(4805), - [anon_sym_notnull] = ACTIONS(4805), - [anon_sym_unmanaged] = ACTIONS(4805), - [anon_sym_scoped] = ACTIONS(4805), - [anon_sym_var] = ACTIONS(4805), - [sym_predefined_type] = ACTIONS(4805), - [anon_sym_yield] = ACTIONS(4805), - [anon_sym_when] = ACTIONS(4805), - [anon_sym_from] = ACTIONS(4805), - [anon_sym_into] = ACTIONS(4805), - [anon_sym_join] = ACTIONS(4805), - [anon_sym_on] = ACTIONS(4805), - [anon_sym_equals] = ACTIONS(4805), - [anon_sym_let] = ACTIONS(4805), - [anon_sym_orderby] = ACTIONS(4805), - [anon_sym_ascending] = ACTIONS(4805), - [anon_sym_descending] = ACTIONS(4805), - [anon_sym_group] = ACTIONS(4805), - [anon_sym_by] = ACTIONS(4805), - [anon_sym_select] = ACTIONS(4805), - [aux_sym_preproc_if_token1] = ACTIONS(4807), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5860), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518883,6 +518918,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3644] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7004), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3644), [sym_preproc_endregion] = STATE(3644), [sym_preproc_line] = STATE(3644), @@ -518892,54 +518945,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3644), [sym_preproc_define] = STATE(3644), [sym_preproc_undef] = STATE(3644), - [sym__identifier_token] = ACTIONS(5051), - [anon_sym_extern] = ACTIONS(5051), - [anon_sym_alias] = ACTIONS(5051), - [anon_sym_global] = ACTIONS(5051), - [anon_sym_unsafe] = ACTIONS(5051), - [anon_sym_static] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5053), - [anon_sym_ref] = ACTIONS(5051), - [anon_sym_delegate] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_async] = ACTIONS(5051), - [anon_sym_const] = ACTIONS(5051), - [anon_sym_file] = ACTIONS(5051), - [anon_sym_fixed] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_new] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_partial] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_readonly] = ACTIONS(5051), - [anon_sym_required] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_virtual] = ACTIONS(5051), - [anon_sym_volatile] = ACTIONS(5051), - [anon_sym_where] = ACTIONS(5051), - [anon_sym_notnull] = ACTIONS(5051), - [anon_sym_unmanaged] = ACTIONS(5051), - [anon_sym_scoped] = ACTIONS(5051), - [anon_sym_var] = ACTIONS(5051), - [sym_predefined_type] = ACTIONS(5051), - [anon_sym_yield] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_from] = ACTIONS(5051), - [anon_sym_into] = ACTIONS(5051), - [anon_sym_join] = ACTIONS(5051), - [anon_sym_on] = ACTIONS(5051), - [anon_sym_equals] = ACTIONS(5051), - [anon_sym_let] = ACTIONS(5051), - [anon_sym_orderby] = ACTIONS(5051), - [anon_sym_ascending] = ACTIONS(5051), - [anon_sym_descending] = ACTIONS(5051), - [anon_sym_group] = ACTIONS(5051), - [anon_sym_by] = ACTIONS(5051), - [anon_sym_select] = ACTIONS(5051), - [aux_sym_preproc_if_token1] = ACTIONS(5053), + [aux_sym_type_argument_list_repeat1] = STATE(7005), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518952,25 +518987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3645] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3323), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3645), [sym_preproc_endregion] = STATE(3645), [sym_preproc_line] = STATE(3645), @@ -518980,35 +518996,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3645), [sym_preproc_define] = STATE(3645), [sym_preproc_undef] = STATE(3645), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(4174), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5868), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(5101), + [anon_sym_extern] = ACTIONS(5101), + [anon_sym_alias] = ACTIONS(5101), + [anon_sym_global] = ACTIONS(5101), + [anon_sym_unsafe] = ACTIONS(5101), + [anon_sym_static] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_ref] = ACTIONS(5101), + [anon_sym_delegate] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_async] = ACTIONS(5101), + [anon_sym_const] = ACTIONS(5101), + [anon_sym_file] = ACTIONS(5101), + [anon_sym_fixed] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_new] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_partial] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_readonly] = ACTIONS(5101), + [anon_sym_required] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_virtual] = ACTIONS(5101), + [anon_sym_volatile] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_notnull] = ACTIONS(5101), + [anon_sym_unmanaged] = ACTIONS(5101), + [anon_sym_scoped] = ACTIONS(5101), + [anon_sym_var] = ACTIONS(5101), + [sym_predefined_type] = ACTIONS(5101), + [anon_sym_yield] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_from] = ACTIONS(5101), + [anon_sym_into] = ACTIONS(5101), + [anon_sym_join] = ACTIONS(5101), + [anon_sym_on] = ACTIONS(5101), + [anon_sym_equals] = ACTIONS(5101), + [anon_sym_let] = ACTIONS(5101), + [anon_sym_orderby] = ACTIONS(5101), + [anon_sym_ascending] = ACTIONS(5101), + [anon_sym_descending] = ACTIONS(5101), + [anon_sym_group] = ACTIONS(5101), + [anon_sym_by] = ACTIONS(5101), + [anon_sym_select] = ACTIONS(5101), + [aux_sym_preproc_if_token1] = ACTIONS(5103), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519021,8 +519056,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3646] = { - [sym_identifier] = STATE(7368), - [sym__reserved_identifier] = STATE(2182), + [sym_argument_list] = STATE(2939), + [sym__name] = STATE(4107), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2915), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(4094), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3787), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3646), [sym_preproc_endregion] = STATE(3646), [sym_preproc_line] = STATE(3646), @@ -519032,52 +519084,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3646), [sym_preproc_define] = STATE(3646), [sym_preproc_undef] = STATE(3646), - [sym__identifier_token] = ACTIONS(5870), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(5874), - [anon_sym_global] = ACTIONS(5874), - [anon_sym_unsafe] = ACTIONS(5878), - [anon_sym_static] = ACTIONS(5878), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(5874), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(5874), - [anon_sym_notnull] = ACTIONS(5874), - [anon_sym_unmanaged] = ACTIONS(5874), - [anon_sym_scoped] = ACTIONS(5874), - [anon_sym_var] = ACTIONS(5874), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(5874), - [anon_sym_when] = ACTIONS(5874), - [anon_sym_from] = ACTIONS(5874), - [anon_sym_into] = ACTIONS(5874), - [anon_sym_join] = ACTIONS(5874), - [anon_sym_on] = ACTIONS(5874), - [anon_sym_equals] = ACTIONS(5874), - [anon_sym_let] = ACTIONS(5874), - [anon_sym_orderby] = ACTIONS(5874), - [anon_sym_ascending] = ACTIONS(5874), - [anon_sym_descending] = ACTIONS(5874), - [anon_sym_group] = ACTIONS(5874), - [anon_sym_by] = ACTIONS(5874), - [anon_sym_select] = ACTIONS(5874), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_ref] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5864), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519090,25 +519125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3647] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3323), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3647), [sym_preproc_endregion] = STATE(3647), [sym_preproc_line] = STATE(3647), @@ -519118,35 +519136,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3647), [sym_preproc_define] = STATE(3647), [sym_preproc_undef] = STATE(3647), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5881), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5866), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5866), + [anon_sym_into] = ACTIONS(5866), + [anon_sym_join] = ACTIONS(5866), + [anon_sym_let] = ACTIONS(5866), + [anon_sym_orderby] = ACTIONS(5866), + [anon_sym_ascending] = ACTIONS(5866), + [anon_sym_descending] = ACTIONS(5866), + [anon_sym_group] = ACTIONS(5866), + [anon_sym_select] = ACTIONS(5866), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519159,25 +519194,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3648] = { - [sym_argument_list] = STATE(3184), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3176), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3648), [sym_preproc_endregion] = STATE(3648), [sym_preproc_line] = STATE(3648), @@ -519187,35 +519205,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3648), [sym_preproc_define] = STATE(3648), [sym_preproc_undef] = STATE(3648), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(5798), - [anon_sym_LPAREN] = ACTIONS(5800), - [anon_sym_ref] = ACTIONS(4178), - [anon_sym_LBRACE] = ACTIONS(5802), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5883), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5870), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5870), + [anon_sym_into] = ACTIONS(5870), + [anon_sym_join] = ACTIONS(5870), + [anon_sym_let] = ACTIONS(5870), + [anon_sym_orderby] = ACTIONS(5870), + [anon_sym_ascending] = ACTIONS(5870), + [anon_sym_descending] = ACTIONS(5870), + [anon_sym_group] = ACTIONS(5870), + [anon_sym_select] = ACTIONS(5870), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519228,24 +519263,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3649] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6899), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3649), [sym_preproc_endregion] = STATE(3649), [sym_preproc_line] = STATE(3649), @@ -519255,36 +519274,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3649), [sym_preproc_define] = STATE(3649), [sym_preproc_undef] = STATE(3649), - [aux_sym_type_argument_list_repeat1] = STATE(6928), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_ascending] = ACTIONS(5238), + [anon_sym_descending] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519297,25 +519332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3650] = { - [sym_argument_list] = STATE(3184), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3176), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3650), [sym_preproc_endregion] = STATE(3650), [sym_preproc_line] = STATE(3650), @@ -519325,35 +519343,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3650), [sym_preproc_define] = STATE(3650), [sym_preproc_undef] = STATE(3650), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(5798), - [anon_sym_LPAREN] = ACTIONS(5800), - [anon_sym_ref] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(5802), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5887), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5874), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5874), + [anon_sym_into] = ACTIONS(5874), + [anon_sym_join] = ACTIONS(5874), + [anon_sym_let] = ACTIONS(5874), + [anon_sym_orderby] = ACTIONS(5874), + [anon_sym_ascending] = ACTIONS(5874), + [anon_sym_descending] = ACTIONS(5874), + [anon_sym_group] = ACTIONS(5874), + [anon_sym_select] = ACTIONS(5874), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519366,25 +519401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3651] = { - [sym_argument_list] = STATE(4378), - [sym__name] = STATE(4447), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_type] = STATE(4278), - [sym_implicit_type] = STATE(4446), - [sym_array_type] = STATE(4351), - [sym__array_base_type] = STATE(7343), - [sym_nullable_type] = STATE(4453), - [sym_pointer_type] = STATE(4453), - [sym__pointer_base_type] = STATE(7426), - [sym_function_pointer_type] = STATE(4453), - [sym_ref_type] = STATE(4446), - [sym_scoped_type] = STATE(4446), - [sym_tuple_type] = STATE(4513), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), [sym_preproc_region] = STATE(3651), [sym_preproc_endregion] = STATE(3651), [sym_preproc_line] = STATE(3651), @@ -519394,35 +519410,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3651), [sym_preproc_define] = STATE(3651), [sym_preproc_undef] = STATE(3651), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5844), - [anon_sym_ref] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_delegate] = ACTIONS(5848), - [anon_sym_file] = ACTIONS(4037), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), - [anon_sym_scoped] = ACTIONS(5889), - [anon_sym_var] = ACTIONS(5852), - [sym_predefined_type] = ACTIONS(5854), - [anon_sym_yield] = ACTIONS(4037), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), + [sym__identifier_token] = ACTIONS(4807), + [anon_sym_extern] = ACTIONS(4807), + [anon_sym_alias] = ACTIONS(4807), + [anon_sym_global] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(4809), + [anon_sym_ref] = ACTIONS(4807), + [anon_sym_delegate] = ACTIONS(4807), + [anon_sym_abstract] = ACTIONS(4807), + [anon_sym_async] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4807), + [anon_sym_file] = ACTIONS(4807), + [anon_sym_fixed] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_new] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_partial] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_protected] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_readonly] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_sealed] = ACTIONS(4807), + [anon_sym_virtual] = ACTIONS(4807), + [anon_sym_volatile] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4807), + [anon_sym_notnull] = ACTIONS(4807), + [anon_sym_unmanaged] = ACTIONS(4807), + [anon_sym_scoped] = ACTIONS(4807), + [anon_sym_var] = ACTIONS(4807), + [sym_predefined_type] = ACTIONS(4807), + [anon_sym_yield] = ACTIONS(4807), + [anon_sym_when] = ACTIONS(4807), + [anon_sym_from] = ACTIONS(4807), + [anon_sym_into] = ACTIONS(4807), + [anon_sym_join] = ACTIONS(4807), + [anon_sym_on] = ACTIONS(4807), + [anon_sym_equals] = ACTIONS(4807), + [anon_sym_let] = ACTIONS(4807), + [anon_sym_orderby] = ACTIONS(4807), + [anon_sym_ascending] = ACTIONS(4807), + [anon_sym_descending] = ACTIONS(4807), + [anon_sym_group] = ACTIONS(4807), + [anon_sym_by] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [aux_sym_preproc_if_token1] = ACTIONS(4809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519435,8 +519470,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3652] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(4377), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3652), [sym_preproc_endregion] = STATE(3652), [sym_preproc_line] = STATE(3652), @@ -519446,52 +519498,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3652), [sym_preproc_define] = STATE(3652), [sym_preproc_undef] = STATE(3652), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5891), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5891), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5891), - [anon_sym_or] = ACTIONS(5893), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5891), - [anon_sym_into] = ACTIONS(5891), - [anon_sym_join] = ACTIONS(5891), - [anon_sym_let] = ACTIONS(5891), - [anon_sym_orderby] = ACTIONS(5891), - [anon_sym_ascending] = ACTIONS(5891), - [anon_sym_descending] = ACTIONS(5891), - [anon_sym_group] = ACTIONS(5891), - [anon_sym_select] = ACTIONS(5891), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519504,24 +519539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3653] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6830), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3653), [sym_preproc_endregion] = STATE(3653), [sym_preproc_line] = STATE(3653), @@ -519531,36 +519550,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3653), [sym_preproc_define] = STATE(3653), [sym_preproc_undef] = STATE(3653), - [aux_sym_type_argument_list_repeat1] = STATE(6831), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5895), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519573,25 +519608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3654] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3944), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3654), [sym_preproc_endregion] = STATE(3654), [sym_preproc_line] = STATE(3654), @@ -519601,35 +519619,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3654), [sym_preproc_define] = STATE(3654), [sym_preproc_undef] = STATE(3654), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(5897), - [anon_sym_ref] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5899), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519642,25 +519677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3655] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3323), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3655), [sym_preproc_endregion] = STATE(3655), [sym_preproc_line] = STATE(3655), @@ -519670,35 +519688,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3655), [sym_preproc_define] = STATE(3655), [sym_preproc_undef] = STATE(3655), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5901), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5878), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5878), + [anon_sym_or] = ACTIONS(5880), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5878), + [anon_sym_into] = ACTIONS(5878), + [anon_sym_join] = ACTIONS(5878), + [anon_sym_let] = ACTIONS(5878), + [anon_sym_orderby] = ACTIONS(5878), + [anon_sym_ascending] = ACTIONS(5878), + [anon_sym_descending] = ACTIONS(5878), + [anon_sym_group] = ACTIONS(5878), + [anon_sym_select] = ACTIONS(5878), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519711,7 +519746,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3656] = { - [sym_initializer_expression] = STATE(3772), + [sym_argument_list] = STATE(2939), + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2915), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(3540), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3656), [sym_preproc_endregion] = STATE(3656), [sym_preproc_line] = STATE(3656), @@ -519721,53 +519774,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3656), [sym_preproc_define] = STATE(3656), [sym_preproc_undef] = STATE(3656), - [anon_sym_LBRACK] = ACTIONS(4872), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4872), - [anon_sym_QMARK] = ACTIONS(4874), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_PLUS_PLUS] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4872), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4872), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_CARET] = ACTIONS(4872), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(4874), - [anon_sym_LT_LT] = ACTIONS(4872), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_GT_GT_GT] = ACTIONS(4872), - [anon_sym_EQ_EQ] = ACTIONS(4872), - [anon_sym_BANG_EQ] = ACTIONS(4872), - [anon_sym_GT_EQ] = ACTIONS(4872), - [anon_sym_LT_EQ] = ACTIONS(4872), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_switch] = ACTIONS(4872), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_and] = ACTIONS(4872), - [anon_sym_or] = ACTIONS(4874), - [anon_sym_AMP_AMP] = ACTIONS(4872), - [anon_sym_PIPE_PIPE] = ACTIONS(4872), - [anon_sym_QMARK_QMARK] = ACTIONS(4872), - [anon_sym_from] = ACTIONS(4872), - [anon_sym_into] = ACTIONS(4872), - [anon_sym_join] = ACTIONS(4872), - [anon_sym_let] = ACTIONS(4872), - [anon_sym_orderby] = ACTIONS(4872), - [anon_sym_ascending] = ACTIONS(4872), - [anon_sym_descending] = ACTIONS(4872), - [anon_sym_group] = ACTIONS(4872), - [anon_sym_select] = ACTIONS(4872), - [anon_sym_as] = ACTIONS(4874), - [anon_sym_is] = ACTIONS(4872), - [anon_sym_DASH_GT] = ACTIONS(4872), - [anon_sym_with] = ACTIONS(4872), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_ref] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5882), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519780,25 +519815,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3657] = { - [sym_argument_list] = STATE(3247), - [sym__name] = STATE(5236), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3174), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(4935), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(4593), - [sym__reserved_identifier] = STATE(3208), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3657), [sym_preproc_endregion] = STATE(3657), [sym_preproc_line] = STATE(3657), @@ -519808,35 +519826,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3657), [sym_preproc_define] = STATE(3657), [sym_preproc_undef] = STATE(3657), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(5740), - [anon_sym_LPAREN] = ACTIONS(5742), - [anon_sym_ref] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(5744), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5903), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519858,54 +519893,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3658), [sym_preproc_define] = STATE(3658), [sym_preproc_undef] = STATE(3658), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5642), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5884), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519918,8 +519953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3659] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3659), [sym_preproc_endregion] = STATE(3659), [sym_preproc_line] = STATE(3659), @@ -519929,52 +519964,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3659), [sym_preproc_define] = STATE(3659), [sym_preproc_undef] = STATE(3659), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4898), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(4898), - [anon_sym_DASH] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_SLASH] = ACTIONS(4898), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_CARET] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4898), - [anon_sym_AMP] = ACTIONS(4898), - [anon_sym_LT_LT] = ACTIONS(4896), - [anon_sym_GT_GT] = ACTIONS(4898), - [anon_sym_GT_GT_GT] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_and] = ACTIONS(4896), - [anon_sym_or] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_QMARK_QMARK] = ACTIONS(4896), - [anon_sym_from] = ACTIONS(4896), - [anon_sym_into] = ACTIONS(4896), - [anon_sym_join] = ACTIONS(4896), - [anon_sym_let] = ACTIONS(4896), - [anon_sym_orderby] = ACTIONS(4896), - [anon_sym_ascending] = ACTIONS(4896), - [anon_sym_descending] = ACTIONS(4896), - [anon_sym_group] = ACTIONS(4896), - [anon_sym_select] = ACTIONS(4896), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_is] = ACTIONS(4896), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5798), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5886), + [anon_sym_or] = ACTIONS(5888), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5886), + [anon_sym_into] = ACTIONS(5886), + [anon_sym_join] = ACTIONS(5886), + [anon_sym_let] = ACTIONS(5886), + [anon_sym_orderby] = ACTIONS(5886), + [anon_sym_ascending] = ACTIONS(5886), + [anon_sym_descending] = ACTIONS(5886), + [anon_sym_group] = ACTIONS(5886), + [anon_sym_select] = ACTIONS(5886), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519987,6 +520022,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3660] = { + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(4951), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(4435), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3660), [sym_preproc_endregion] = STATE(3660), [sym_preproc_line] = STATE(3660), @@ -519996,54 +520050,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3660), [sym_preproc_define] = STATE(3660), [sym_preproc_undef] = STATE(3660), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5905), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5890), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520056,7 +520091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3661] = { - [sym_initializer_expression] = STATE(3930), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3661), [sym_preproc_endregion] = STATE(3661), [sym_preproc_line] = STATE(3661), @@ -520066,53 +520102,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3661), [sym_preproc_define] = STATE(3661), [sym_preproc_undef] = STATE(3661), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_ascending] = ACTIONS(4868), - [anon_sym_descending] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520125,25 +520160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3662] = { - [sym_argument_list] = STATE(3184), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3176), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3662), [sym_preproc_endregion] = STATE(3662), [sym_preproc_line] = STATE(3662), @@ -520153,35 +520171,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3662), [sym_preproc_define] = STATE(3662), [sym_preproc_undef] = STATE(3662), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(5798), - [anon_sym_LPAREN] = ACTIONS(5800), - [anon_sym_ref] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(5802), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5907), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520194,25 +520229,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3663] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(4336), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_argument_list] = STATE(3616), + [sym__name] = STATE(2450), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(3583), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(3610), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3663), [sym_preproc_endregion] = STATE(3663), [sym_preproc_line] = STATE(3663), @@ -520222,35 +520257,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3663), [sym_preproc_define] = STATE(3663), [sym_preproc_undef] = STATE(3663), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_ref] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(5896), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(5898), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520263,8 +520298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3664] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3664), [sym_preproc_endregion] = STATE(3664), [sym_preproc_line] = STATE(3664), @@ -520274,52 +520309,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3664), [sym_preproc_define] = STATE(3664), [sym_preproc_undef] = STATE(3664), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5909), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5696), - [anon_sym_GT] = ACTIONS(5696), - [anon_sym_where] = ACTIONS(5909), - [anon_sym_QMARK] = ACTIONS(5698), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5700), - [anon_sym_DASH] = ACTIONS(5700), - [anon_sym_STAR] = ACTIONS(5702), - [anon_sym_SLASH] = ACTIONS(5704), - [anon_sym_PERCENT] = ACTIONS(5702), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_AMP] = ACTIONS(5710), - [anon_sym_LT_LT] = ACTIONS(5712), - [anon_sym_GT_GT] = ACTIONS(5714), - [anon_sym_GT_GT_GT] = ACTIONS(5712), - [anon_sym_EQ_EQ] = ACTIONS(5716), - [anon_sym_BANG_EQ] = ACTIONS(5716), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5692), - [anon_sym_and] = ACTIONS(5909), - [anon_sym_or] = ACTIONS(5911), - [anon_sym_AMP_AMP] = ACTIONS(5724), - [anon_sym_PIPE_PIPE] = ACTIONS(5726), - [anon_sym_QMARK_QMARK] = ACTIONS(5728), - [anon_sym_from] = ACTIONS(5909), - [anon_sym_into] = ACTIONS(5909), - [anon_sym_join] = ACTIONS(5909), - [anon_sym_let] = ACTIONS(5909), - [anon_sym_orderby] = ACTIONS(5909), - [anon_sym_ascending] = ACTIONS(5909), - [anon_sym_descending] = ACTIONS(5909), - [anon_sym_group] = ACTIONS(5909), - [anon_sym_select] = ACTIONS(5909), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(5732), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520332,8 +520367,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3665] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7018), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3665), [sym_preproc_endregion] = STATE(3665), [sym_preproc_line] = STATE(3665), @@ -520343,52 +520394,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3665), [sym_preproc_define] = STATE(3665), [sym_preproc_undef] = STATE(3665), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(4902), - [anon_sym_GT] = ACTIONS(4902), - [anon_sym_where] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_CARET] = ACTIONS(4900), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_AMP] = ACTIONS(4902), - [anon_sym_LT_LT] = ACTIONS(4900), - [anon_sym_GT_GT] = ACTIONS(4902), - [anon_sym_GT_GT_GT] = ACTIONS(4900), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_GT_EQ] = ACTIONS(4900), - [anon_sym_LT_EQ] = ACTIONS(4900), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4900), - [anon_sym_and] = ACTIONS(4900), - [anon_sym_or] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4900), - [anon_sym_PIPE_PIPE] = ACTIONS(4900), - [anon_sym_QMARK_QMARK] = ACTIONS(4900), - [anon_sym_from] = ACTIONS(4900), - [anon_sym_into] = ACTIONS(4900), - [anon_sym_join] = ACTIONS(4900), - [anon_sym_let] = ACTIONS(4900), - [anon_sym_orderby] = ACTIONS(4900), - [anon_sym_ascending] = ACTIONS(4900), - [anon_sym_descending] = ACTIONS(4900), - [anon_sym_group] = ACTIONS(4900), - [anon_sym_select] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4900), + [aux_sym_type_argument_list_repeat1] = STATE(7019), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5904), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520410,54 +520445,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3666), [sym_preproc_define] = STATE(3666), [sym_preproc_undef] = STATE(3666), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5913), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520470,6 +520505,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3667] = { + [sym_tuple_pattern] = STATE(7084), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_identifier] = STATE(5794), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3667), [sym_preproc_endregion] = STATE(3667), [sym_preproc_line] = STATE(3667), @@ -520479,54 +520534,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3667), [sym_preproc_define] = STATE(3667), [sym_preproc_undef] = STATE(3667), - [anon_sym_EQ] = ACTIONS(5915), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5917), - [anon_sym_DASH_EQ] = ACTIONS(5917), - [anon_sym_STAR_EQ] = ACTIONS(5917), - [anon_sym_SLASH_EQ] = ACTIONS(5917), - [anon_sym_PERCENT_EQ] = ACTIONS(5917), - [anon_sym_AMP_EQ] = ACTIONS(5917), - [anon_sym_CARET_EQ] = ACTIONS(5917), - [anon_sym_PIPE_EQ] = ACTIONS(5917), - [anon_sym_LT_LT_EQ] = ACTIONS(5917), - [anon_sym_GT_GT_EQ] = ACTIONS(5917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5917), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5917), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [sym_discard] = ACTIONS(4739), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520539,7 +520574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3668] = { - [sym_initializer_expression] = STATE(3796), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3668), [sym_preproc_endregion] = STATE(3668), [sym_preproc_line] = STATE(3668), @@ -520549,53 +520585,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3668), [sym_preproc_define] = STATE(3668), [sym_preproc_undef] = STATE(3668), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_ascending] = ACTIONS(4886), - [anon_sym_descending] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4891), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5796), + [anon_sym_GT] = ACTIONS(5796), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(5690), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_SLASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_PIPE] = ACTIONS(5802), + [anon_sym_AMP] = ACTIONS(5804), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_GT_GT_GT] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5806), + [anon_sym_BANG_EQ] = ACTIONS(5806), + [anon_sym_GT_EQ] = ACTIONS(5808), + [anon_sym_LT_EQ] = ACTIONS(5808), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5812), + [anon_sym_PIPE_PIPE] = ACTIONS(5814), + [anon_sym_QMARK_QMARK] = ACTIONS(5816), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(5820), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520608,8 +520643,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3669] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3616), + [sym__name] = STATE(2450), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(3583), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(3610), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3669), [sym_preproc_endregion] = STATE(3669), [sym_preproc_line] = STATE(3669), @@ -520619,52 +520671,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3669), [sym_preproc_define] = STATE(3669), [sym_preproc_undef] = STATE(3669), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(4880), - [anon_sym_GT] = ACTIONS(4880), - [anon_sym_where] = ACTIONS(4876), - [anon_sym_QMARK] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4876), - [anon_sym_SLASH] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_CARET] = ACTIONS(4876), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LT_LT] = ACTIONS(4876), - [anon_sym_GT_GT] = ACTIONS(4880), - [anon_sym_GT_GT_GT] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(4876), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_and] = ACTIONS(4876), - [anon_sym_or] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_QMARK_QMARK] = ACTIONS(4876), - [anon_sym_from] = ACTIONS(4876), - [anon_sym_into] = ACTIONS(4876), - [anon_sym_join] = ACTIONS(4876), - [anon_sym_let] = ACTIONS(4876), - [anon_sym_orderby] = ACTIONS(4876), - [anon_sym_ascending] = ACTIONS(4876), - [anon_sym_descending] = ACTIONS(4876), - [anon_sym_group] = ACTIONS(4876), - [anon_sym_select] = ACTIONS(4876), - [anon_sym_as] = ACTIONS(4880), - [anon_sym_is] = ACTIONS(4876), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(4876), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5894), + [anon_sym_ref] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(5896), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(5908), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520677,25 +520712,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3670] = { - [sym_argument_list] = STATE(2938), - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2922), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(3408), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6950), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3670), [sym_preproc_endregion] = STATE(3670), [sym_preproc_line] = STATE(3670), @@ -520705,35 +520739,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3670), [sym_preproc_define] = STATE(3670), [sym_preproc_undef] = STATE(3670), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(5818), - [anon_sym_ref] = ACTIONS(3846), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5919), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [aux_sym_type_argument_list_repeat1] = STATE(6956), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520746,6 +520781,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3671] = { + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(4086), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3671), [sym_preproc_endregion] = STATE(3671), [sym_preproc_line] = STATE(3671), @@ -520755,109 +520809,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3671), [sym_preproc_define] = STATE(3671), [sym_preproc_undef] = STATE(3671), - [anon_sym_EQ] = ACTIONS(5533), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(5921), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5535), - [anon_sym_DASH_EQ] = ACTIONS(5535), - [anon_sym_STAR_EQ] = ACTIONS(5535), - [anon_sym_SLASH_EQ] = ACTIONS(5535), - [anon_sym_PERCENT_EQ] = ACTIONS(5535), - [anon_sym_AMP_EQ] = ACTIONS(5535), - [anon_sym_CARET_EQ] = ACTIONS(5535), - [anon_sym_PIPE_EQ] = ACTIONS(5535), - [anon_sym_LT_LT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5535), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5535), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3672] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(3672), - [sym_preproc_endregion] = STATE(3672), - [sym_preproc_line] = STATE(3672), - [sym_preproc_pragma] = STATE(3672), - [sym_preproc_nullable] = STATE(3672), - [sym_preproc_error] = STATE(3672), - [sym_preproc_warning] = STATE(3672), - [sym_preproc_define] = STATE(3672), - [sym_preproc_undef] = STATE(3672), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(4255), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(5910), + [anon_sym_ref] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), [anon_sym_file] = ACTIONS(3893), [anon_sym_where] = ACTIONS(3893), [anon_sym_notnull] = ACTIONS(3893), [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5923), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), + [anon_sym_scoped] = ACTIONS(5912), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), [anon_sym_yield] = ACTIONS(3893), [anon_sym_when] = ACTIONS(3893), [anon_sym_from] = ACTIONS(3893), @@ -520883,25 +520849,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3672] = { + [sym_preproc_region] = STATE(3672), + [sym_preproc_endregion] = STATE(3672), + [sym_preproc_line] = STATE(3672), + [sym_preproc_pragma] = STATE(3672), + [sym_preproc_nullable] = STATE(3672), + [sym_preproc_error] = STATE(3672), + [sym_preproc_warning] = STATE(3672), + [sym_preproc_define] = STATE(3672), + [sym_preproc_undef] = STATE(3672), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5914), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3673] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6858), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_initializer_expression] = STATE(3916), [sym_preproc_region] = STATE(3673), [sym_preproc_endregion] = STATE(3673), [sym_preproc_line] = STATE(3673), @@ -520911,36 +520929,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3673), [sym_preproc_define] = STATE(3673), [sym_preproc_undef] = STATE(3673), - [aux_sym_type_argument_list_repeat1] = STATE(6859), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5925), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_GT_GT_GT] = ACTIONS(4904), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_switch] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4904), + [anon_sym_and] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_QMARK_QMARK] = ACTIONS(4904), + [anon_sym_from] = ACTIONS(4904), + [anon_sym_into] = ACTIONS(4904), + [anon_sym_join] = ACTIONS(4904), + [anon_sym_let] = ACTIONS(4904), + [anon_sym_orderby] = ACTIONS(4904), + [anon_sym_ascending] = ACTIONS(4904), + [anon_sym_descending] = ACTIONS(4904), + [anon_sym_group] = ACTIONS(4904), + [anon_sym_select] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_with] = ACTIONS(4904), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520953,25 +520988,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3674] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(7014), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3674), [sym_preproc_endregion] = STATE(3674), [sym_preproc_line] = STATE(3674), @@ -520981,90 +521015,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3674), [sym_preproc_define] = STATE(3674), [sym_preproc_undef] = STATE(3674), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(4245), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5927), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3675] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6874), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3675), - [sym_preproc_endregion] = STATE(3675), - [sym_preproc_line] = STATE(3675), - [sym_preproc_pragma] = STATE(3675), - [sym_preproc_nullable] = STATE(3675), - [sym_preproc_error] = STATE(3675), - [sym_preproc_warning] = STATE(3675), - [sym_preproc_define] = STATE(3675), - [sym_preproc_undef] = STATE(3675), - [aux_sym_type_argument_list_repeat1] = STATE(6875), + [aux_sym_type_argument_list_repeat1] = STATE(7015), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5077), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5929), + [anon_sym_GT] = ACTIONS(5916), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -521090,25 +521056,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3675] = { + [sym_argument_list] = STATE(4353), + [sym__name] = STATE(4497), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_type] = STATE(4249), + [sym_implicit_type] = STATE(4407), + [sym_array_type] = STATE(4378), + [sym__array_base_type] = STATE(7286), + [sym_nullable_type] = STATE(4519), + [sym_pointer_type] = STATE(4519), + [sym__pointer_base_type] = STATE(7680), + [sym_function_pointer_type] = STATE(4519), + [sym_ref_type] = STATE(4407), + [sym_scoped_type] = STATE(4407), + [sym_tuple_type] = STATE(4520), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), + [sym_preproc_region] = STATE(3675), + [sym_preproc_endregion] = STATE(3675), + [sym_preproc_line] = STATE(3675), + [sym_preproc_pragma] = STATE(3675), + [sym_preproc_nullable] = STATE(3675), + [sym_preproc_error] = STATE(3675), + [sym_preproc_warning] = STATE(3675), + [sym_preproc_define] = STATE(3675), + [sym_preproc_undef] = STATE(3675), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_LPAREN] = ACTIONS(5728), + [anon_sym_ref] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_delegate] = ACTIONS(5732), + [anon_sym_file] = ACTIONS(4011), + [anon_sym_where] = ACTIONS(4011), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), + [anon_sym_scoped] = ACTIONS(5918), + [anon_sym_var] = ACTIONS(5736), + [sym_predefined_type] = ACTIONS(5738), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_when] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4011), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3676] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7000), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3676), [sym_preproc_endregion] = STATE(3676), [sym_preproc_line] = STATE(3676), @@ -521118,36 +521154,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3676), [sym_preproc_define] = STATE(3676), [sym_preproc_undef] = STATE(3676), - [aux_sym_type_argument_list_repeat1] = STATE(7001), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5931), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521160,25 +521195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3677] = { - [sym_argument_list] = STATE(3184), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3176), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym_block] = STATE(2031), [sym_preproc_region] = STATE(3677), [sym_preproc_endregion] = STATE(3677), [sym_preproc_line] = STATE(3677), @@ -521188,35 +521205,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3677), [sym_preproc_define] = STATE(3677), [sym_preproc_undef] = STATE(3677), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LBRACK] = ACTIONS(5798), - [anon_sym_LPAREN] = ACTIONS(5800), - [anon_sym_ref] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(5802), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5933), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(5322), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521229,25 +521264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3678] = { - [sym_argument_list] = STATE(3656), - [sym__name] = STATE(2456), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(3577), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(3602), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(3678), [sym_preproc_endregion] = STATE(3678), [sym_preproc_line] = STATE(3678), @@ -521257,35 +521273,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3678), [sym_preproc_define] = STATE(3678), [sym_preproc_undef] = STATE(3678), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5832), - [anon_sym_ref] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(5834), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(5935), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5534), + [anon_sym_DASH_EQ] = ACTIONS(5534), + [anon_sym_STAR_EQ] = ACTIONS(5534), + [anon_sym_SLASH_EQ] = ACTIONS(5534), + [anon_sym_PERCENT_EQ] = ACTIONS(5534), + [anon_sym_AMP_EQ] = ACTIONS(5534), + [anon_sym_CARET_EQ] = ACTIONS(5534), + [anon_sym_PIPE_EQ] = ACTIONS(5534), + [anon_sym_LT_LT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5534), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521298,24 +521333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3679] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6825), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3679), [sym_preproc_endregion] = STATE(3679), [sym_preproc_line] = STATE(3679), @@ -521325,36 +521342,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3679), [sym_preproc_define] = STATE(3679), [sym_preproc_undef] = STATE(3679), - [aux_sym_type_argument_list_repeat1] = STATE(6826), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5937), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(4833), + [anon_sym_extern] = ACTIONS(4833), + [anon_sym_alias] = ACTIONS(4833), + [anon_sym_global] = ACTIONS(4833), + [anon_sym_unsafe] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_ref] = ACTIONS(4833), + [anon_sym_delegate] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_async] = ACTIONS(4833), + [anon_sym_const] = ACTIONS(4833), + [anon_sym_file] = ACTIONS(4833), + [anon_sym_fixed] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_new] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_partial] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_protected] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_readonly] = ACTIONS(4833), + [anon_sym_required] = ACTIONS(4833), + [anon_sym_sealed] = ACTIONS(4833), + [anon_sym_virtual] = ACTIONS(4833), + [anon_sym_volatile] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4833), + [anon_sym_notnull] = ACTIONS(4833), + [anon_sym_unmanaged] = ACTIONS(4833), + [anon_sym_scoped] = ACTIONS(4833), + [anon_sym_var] = ACTIONS(4833), + [sym_predefined_type] = ACTIONS(4833), + [anon_sym_yield] = ACTIONS(4833), + [anon_sym_when] = ACTIONS(4833), + [anon_sym_from] = ACTIONS(4833), + [anon_sym_into] = ACTIONS(4833), + [anon_sym_join] = ACTIONS(4833), + [anon_sym_on] = ACTIONS(4833), + [anon_sym_equals] = ACTIONS(4833), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_orderby] = ACTIONS(4833), + [anon_sym_ascending] = ACTIONS(4833), + [anon_sym_descending] = ACTIONS(4833), + [anon_sym_group] = ACTIONS(4833), + [anon_sym_by] = ACTIONS(4833), + [anon_sym_select] = ACTIONS(4833), + [aux_sym_preproc_if_token1] = ACTIONS(4835), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521367,24 +521402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3680] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(7104), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3680), [sym_preproc_endregion] = STATE(3680), [sym_preproc_line] = STATE(3680), @@ -521394,36 +521413,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3680), [sym_preproc_define] = STATE(3680), [sym_preproc_undef] = STATE(3680), - [aux_sym_type_argument_list_repeat1] = STATE(6818), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5939), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_GT_GT_GT] = ACTIONS(4908), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_and] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_QMARK_QMARK] = ACTIONS(4908), + [anon_sym_from] = ACTIONS(4908), + [anon_sym_into] = ACTIONS(4908), + [anon_sym_join] = ACTIONS(4908), + [anon_sym_let] = ACTIONS(4908), + [anon_sym_orderby] = ACTIONS(4908), + [anon_sym_ascending] = ACTIONS(4908), + [anon_sym_descending] = ACTIONS(4908), + [anon_sym_group] = ACTIONS(4908), + [anon_sym_select] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(4908), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521436,24 +521471,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3681] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6894), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6835), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3681), [sym_preproc_endregion] = STATE(3681), [sym_preproc_line] = STATE(3681), @@ -521463,22 +521498,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3681), [sym_preproc_define] = STATE(3681), [sym_preproc_undef] = STATE(3681), - [aux_sym_type_argument_list_repeat1] = STATE(6796), + [aux_sym_type_argument_list_repeat1] = STATE(6837), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5077), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), [anon_sym_file] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5922), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), [anon_sym_from] = ACTIONS(2997), @@ -521505,7 +521540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3682] = { - [sym_block] = STATE(2042), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3682), [sym_preproc_endregion] = STATE(3682), [sym_preproc_line] = STATE(3682), @@ -521515,53 +521551,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3682), [sym_preproc_define] = STATE(3682), [sym_preproc_undef] = STATE(3682), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(5304), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5926), + [anon_sym_where] = ACTIONS(5924), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_PERCENT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5924), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_GT_GT_GT] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5924), + [anon_sym_BANG_EQ] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5702), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5926), + [anon_sym_AMP_AMP] = ACTIONS(5924), + [anon_sym_PIPE_PIPE] = ACTIONS(5924), + [anon_sym_QMARK_QMARK] = ACTIONS(5924), + [anon_sym_from] = ACTIONS(5924), + [anon_sym_into] = ACTIONS(5924), + [anon_sym_join] = ACTIONS(5924), + [anon_sym_let] = ACTIONS(5924), + [anon_sym_orderby] = ACTIONS(5924), + [anon_sym_ascending] = ACTIONS(5924), + [anon_sym_descending] = ACTIONS(5924), + [anon_sym_group] = ACTIONS(5924), + [anon_sym_select] = ACTIONS(5924), + [anon_sym_as] = ACTIONS(5926), + [anon_sym_is] = ACTIONS(5924), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521574,6 +521609,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3683] = { + [sym_argument_list] = STATE(2939), + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2915), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(3540), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3683), [sym_preproc_endregion] = STATE(3683), [sym_preproc_line] = STATE(3683), @@ -521583,54 +521637,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3683), [sym_preproc_define] = STATE(3683), [sym_preproc_undef] = STATE(3683), - [sym__identifier_token] = ACTIONS(4747), - [anon_sym_extern] = ACTIONS(4747), - [anon_sym_alias] = ACTIONS(4747), - [anon_sym_global] = ACTIONS(4747), - [anon_sym_unsafe] = ACTIONS(4747), - [anon_sym_static] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_ref] = ACTIONS(4747), - [anon_sym_delegate] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4747), - [anon_sym_async] = ACTIONS(4747), - [anon_sym_const] = ACTIONS(4747), - [anon_sym_file] = ACTIONS(4747), - [anon_sym_fixed] = ACTIONS(4747), - [anon_sym_internal] = ACTIONS(4747), - [anon_sym_new] = ACTIONS(4747), - [anon_sym_override] = ACTIONS(4747), - [anon_sym_partial] = ACTIONS(4747), - [anon_sym_private] = ACTIONS(4747), - [anon_sym_protected] = ACTIONS(4747), - [anon_sym_public] = ACTIONS(4747), - [anon_sym_readonly] = ACTIONS(4747), - [anon_sym_required] = ACTIONS(4747), - [anon_sym_sealed] = ACTIONS(4747), - [anon_sym_virtual] = ACTIONS(4747), - [anon_sym_volatile] = ACTIONS(4747), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_notnull] = ACTIONS(4747), - [anon_sym_unmanaged] = ACTIONS(4747), - [anon_sym_scoped] = ACTIONS(4747), - [anon_sym_var] = ACTIONS(4747), - [sym_predefined_type] = ACTIONS(4747), - [anon_sym_yield] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_let] = ACTIONS(4747), - [anon_sym_orderby] = ACTIONS(4747), - [anon_sym_ascending] = ACTIONS(4747), - [anon_sym_descending] = ACTIONS(4747), - [anon_sym_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [aux_sym_preproc_if_token1] = ACTIONS(4749), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_ref] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5928), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521643,7 +521678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3684] = { - [sym_identifier] = STATE(7602), + [sym_identifier] = STATE(7601), [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3684), [sym_preproc_endregion] = STATE(3684), @@ -521654,19 +521689,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3684), [sym_preproc_define] = STATE(3684), [sym_preproc_undef] = STATE(3684), - [sym__identifier_token] = ACTIONS(5870), + [sym__identifier_token] = ACTIONS(5930), [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(5874), - [anon_sym_global] = ACTIONS(5874), - [anon_sym_unsafe] = ACTIONS(5878), - [anon_sym_static] = ACTIONS(5878), - [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_alias] = ACTIONS(5934), + [anon_sym_global] = ACTIONS(5934), + [anon_sym_unsafe] = ACTIONS(5938), + [anon_sym_static] = ACTIONS(5938), + [anon_sym_LPAREN] = ACTIONS(5143), [anon_sym_ref] = ACTIONS(3494), [anon_sym_delegate] = ACTIONS(3494), [anon_sym_abstract] = ACTIONS(3494), [anon_sym_async] = ACTIONS(3494), [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(5874), + [anon_sym_file] = ACTIONS(5934), [anon_sym_fixed] = ACTIONS(3494), [anon_sym_internal] = ACTIONS(3494), [anon_sym_new] = ACTIONS(3494), @@ -521680,26 +521715,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(3494), [anon_sym_virtual] = ACTIONS(3494), [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(5874), - [anon_sym_notnull] = ACTIONS(5874), - [anon_sym_unmanaged] = ACTIONS(5874), - [anon_sym_scoped] = ACTIONS(5874), - [anon_sym_var] = ACTIONS(5874), + [anon_sym_where] = ACTIONS(5934), + [anon_sym_notnull] = ACTIONS(5934), + [anon_sym_unmanaged] = ACTIONS(5934), + [anon_sym_scoped] = ACTIONS(5934), + [anon_sym_var] = ACTIONS(5934), [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(5874), - [anon_sym_when] = ACTIONS(5874), - [anon_sym_from] = ACTIONS(5874), - [anon_sym_into] = ACTIONS(5874), - [anon_sym_join] = ACTIONS(5874), - [anon_sym_on] = ACTIONS(5874), - [anon_sym_equals] = ACTIONS(5874), - [anon_sym_let] = ACTIONS(5874), - [anon_sym_orderby] = ACTIONS(5874), - [anon_sym_ascending] = ACTIONS(5874), - [anon_sym_descending] = ACTIONS(5874), - [anon_sym_group] = ACTIONS(5874), - [anon_sym_by] = ACTIONS(5874), - [anon_sym_select] = ACTIONS(5874), + [anon_sym_yield] = ACTIONS(5934), + [anon_sym_when] = ACTIONS(5934), + [anon_sym_from] = ACTIONS(5934), + [anon_sym_into] = ACTIONS(5934), + [anon_sym_join] = ACTIONS(5934), + [anon_sym_on] = ACTIONS(5934), + [anon_sym_equals] = ACTIONS(5934), + [anon_sym_let] = ACTIONS(5934), + [anon_sym_orderby] = ACTIONS(5934), + [anon_sym_ascending] = ACTIONS(5934), + [anon_sym_descending] = ACTIONS(5934), + [anon_sym_group] = ACTIONS(5934), + [anon_sym_by] = ACTIONS(5934), + [anon_sym_select] = ACTIONS(5934), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521712,6 +521747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3685] = { + [sym_identifier] = STATE(7705), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3685), [sym_preproc_endregion] = STATE(3685), [sym_preproc_line] = STATE(3685), @@ -521721,54 +521758,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3685), [sym_preproc_define] = STATE(3685), [sym_preproc_undef] = STATE(3685), - [anon_sym_EQ] = ACTIONS(5943), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5945), - [anon_sym_DASH_EQ] = ACTIONS(5945), - [anon_sym_STAR_EQ] = ACTIONS(5945), - [anon_sym_SLASH_EQ] = ACTIONS(5945), - [anon_sym_PERCENT_EQ] = ACTIONS(5945), - [anon_sym_AMP_EQ] = ACTIONS(5945), - [anon_sym_CARET_EQ] = ACTIONS(5945), - [anon_sym_PIPE_EQ] = ACTIONS(5945), - [anon_sym_LT_LT_EQ] = ACTIONS(5945), - [anon_sym_GT_GT_EQ] = ACTIONS(5945), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5945), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5945), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(5930), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(5934), + [anon_sym_global] = ACTIONS(5934), + [anon_sym_unsafe] = ACTIONS(5938), + [anon_sym_static] = ACTIONS(5938), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(5934), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(5934), + [anon_sym_notnull] = ACTIONS(5934), + [anon_sym_unmanaged] = ACTIONS(5934), + [anon_sym_scoped] = ACTIONS(5934), + [anon_sym_var] = ACTIONS(5934), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(5934), + [anon_sym_when] = ACTIONS(5934), + [anon_sym_from] = ACTIONS(5934), + [anon_sym_into] = ACTIONS(5934), + [anon_sym_join] = ACTIONS(5934), + [anon_sym_on] = ACTIONS(5934), + [anon_sym_equals] = ACTIONS(5934), + [anon_sym_let] = ACTIONS(5934), + [anon_sym_orderby] = ACTIONS(5934), + [anon_sym_ascending] = ACTIONS(5934), + [anon_sym_descending] = ACTIONS(5934), + [anon_sym_group] = ACTIONS(5934), + [anon_sym_by] = ACTIONS(5934), + [anon_sym_select] = ACTIONS(5934), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521781,25 +521816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3686] = { - [sym_argument_list] = STATE(2972), - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3434), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(2997), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(3686), [sym_preproc_endregion] = STATE(3686), [sym_preproc_line] = STATE(3686), @@ -521809,35 +521825,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3686), [sym_preproc_define] = STATE(3686), [sym_preproc_undef] = STATE(3686), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [anon_sym_EQ] = ACTIONS(5941), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(5943), + [anon_sym_DASH_EQ] = ACTIONS(5943), + [anon_sym_STAR_EQ] = ACTIONS(5943), + [anon_sym_SLASH_EQ] = ACTIONS(5943), + [anon_sym_PERCENT_EQ] = ACTIONS(5943), + [anon_sym_AMP_EQ] = ACTIONS(5943), + [anon_sym_CARET_EQ] = ACTIONS(5943), + [anon_sym_PIPE_EQ] = ACTIONS(5943), + [anon_sym_LT_LT_EQ] = ACTIONS(5943), + [anon_sym_GT_GT_EQ] = ACTIONS(5943), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5943), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521850,25 +521885,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3687] = { - [sym_argument_list] = STATE(2938), - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2922), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(3408), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(2970), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3541), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(2956), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3687), [sym_preproc_endregion] = STATE(3687), [sym_preproc_line] = STATE(3687), @@ -521878,35 +521913,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3687), [sym_preproc_define] = STATE(3687), [sym_preproc_undef] = STATE(3687), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(5818), - [anon_sym_ref] = ACTIONS(4257), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5947), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_ref] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5945), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521919,6 +521954,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3688] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6899), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3688), [sym_preproc_endregion] = STATE(3688), [sym_preproc_line] = STATE(3688), @@ -521928,54 +521981,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3688), [sym_preproc_define] = STATE(3688), [sym_preproc_undef] = STATE(3688), - [sym__identifier_token] = ACTIONS(5043), - [anon_sym_extern] = ACTIONS(5043), - [anon_sym_alias] = ACTIONS(5043), - [anon_sym_global] = ACTIONS(5043), - [anon_sym_unsafe] = ACTIONS(5043), - [anon_sym_static] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_ref] = ACTIONS(5043), - [anon_sym_delegate] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_async] = ACTIONS(5043), - [anon_sym_const] = ACTIONS(5043), - [anon_sym_file] = ACTIONS(5043), - [anon_sym_fixed] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_new] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_partial] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_readonly] = ACTIONS(5043), - [anon_sym_required] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_virtual] = ACTIONS(5043), - [anon_sym_volatile] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_notnull] = ACTIONS(5043), - [anon_sym_unmanaged] = ACTIONS(5043), - [anon_sym_scoped] = ACTIONS(5043), - [anon_sym_var] = ACTIONS(5043), - [sym_predefined_type] = ACTIONS(5043), - [anon_sym_yield] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), - [anon_sym_from] = ACTIONS(5043), - [anon_sym_into] = ACTIONS(5043), - [anon_sym_join] = ACTIONS(5043), - [anon_sym_on] = ACTIONS(5043), - [anon_sym_equals] = ACTIONS(5043), - [anon_sym_let] = ACTIONS(5043), - [anon_sym_orderby] = ACTIONS(5043), - [anon_sym_ascending] = ACTIONS(5043), - [anon_sym_descending] = ACTIONS(5043), - [anon_sym_group] = ACTIONS(5043), - [anon_sym_by] = ACTIONS(5043), - [anon_sym_select] = ACTIONS(5043), - [aux_sym_preproc_if_token1] = ACTIONS(5045), + [aux_sym_type_argument_list_repeat1] = STATE(6900), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(5947), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521988,6 +522023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3689] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3689), [sym_preproc_endregion] = STATE(3689), [sym_preproc_line] = STATE(3689), @@ -521997,53 +522034,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3689), [sym_preproc_define] = STATE(3689), [sym_preproc_undef] = STATE(3689), - [sym__identifier_token] = ACTIONS(3461), - [anon_sym_alias] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_GT] = ACTIONS(3459), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3461), - [anon_sym_unmanaged] = ACTIONS(3461), - [anon_sym_operator] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_this] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3461), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_when] = ACTIONS(3461), - [sym_discard] = ACTIONS(3461), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3461), - [anon_sym_into] = ACTIONS(3461), - [anon_sym_join] = ACTIONS(3461), - [anon_sym_on] = ACTIONS(3461), - [anon_sym_equals] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_orderby] = ACTIONS(3461), - [anon_sym_ascending] = ACTIONS(3461), - [anon_sym_descending] = ACTIONS(3461), - [anon_sym_group] = ACTIONS(3461), - [anon_sym_by] = ACTIONS(3461), - [anon_sym_select] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522056,8 +522091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3690] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3690), [sym_preproc_endregion] = STATE(3690), [sym_preproc_line] = STATE(3690), @@ -522067,51 +522102,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3690), [sym_preproc_define] = STATE(3690), [sym_preproc_undef] = STATE(3690), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522124,24 +522159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3691] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3691), [sym_preproc_endregion] = STATE(3691), [sym_preproc_line] = STATE(3691), @@ -522151,35 +522170,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3691), [sym_preproc_define] = STATE(3691), [sym_preproc_undef] = STATE(3691), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_QMARK_QMARK] = ACTIONS(5981), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522192,8 +522227,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3692] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3692), [sym_preproc_endregion] = STATE(3692), [sym_preproc_line] = STATE(3692), @@ -522203,51 +522236,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3692), [sym_preproc_define] = STATE(3692), [sym_preproc_undef] = STATE(3692), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_CARET] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_GT_GT_GT] = ACTIONS(4952), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_switch] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4952), + [anon_sym_and] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_QMARK_QMARK] = ACTIONS(4952), + [anon_sym_from] = ACTIONS(4952), + [anon_sym_into] = ACTIONS(4952), + [anon_sym_join] = ACTIONS(4952), + [anon_sym_let] = ACTIONS(4952), + [anon_sym_orderby] = ACTIONS(4952), + [anon_sym_ascending] = ACTIONS(4952), + [anon_sym_descending] = ACTIONS(4952), + [anon_sym_group] = ACTIONS(4952), + [anon_sym_select] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_with] = ACTIONS(4952), + [sym_string_literal_encoding] = ACTIONS(5983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522260,6 +522295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3693] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3693), [sym_preproc_endregion] = STATE(3693), [sym_preproc_line] = STATE(3693), @@ -522269,53 +522306,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3693), [sym_preproc_define] = STATE(3693), [sym_preproc_undef] = STATE(3693), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_where] = ACTIONS(3840), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_from] = ACTIONS(3840), - [anon_sym_into] = ACTIONS(3840), - [anon_sym_join] = ACTIONS(3840), - [anon_sym_let] = ACTIONS(3840), - [anon_sym_orderby] = ACTIONS(3840), - [anon_sym_ascending] = ACTIONS(3840), - [anon_sym_descending] = ACTIONS(3840), - [anon_sym_group] = ACTIONS(3840), - [anon_sym_select] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(5390), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_QMARK_QMARK] = ACTIONS(5981), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_ascending] = ACTIONS(5238), + [anon_sym_descending] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522328,8 +522363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3694] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3694), [sym_preproc_endregion] = STATE(3694), [sym_preproc_line] = STATE(3694), @@ -522339,51 +522374,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3694), [sym_preproc_define] = STATE(3694), [sym_preproc_undef] = STATE(3694), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5794), + [anon_sym_or] = ACTIONS(5810), + [anon_sym_AMP_AMP] = ACTIONS(5973), [anon_sym_PIPE_PIPE] = ACTIONS(5979), [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_from] = ACTIONS(5794), + [anon_sym_join] = ACTIONS(5794), + [anon_sym_let] = ACTIONS(5794), + [anon_sym_orderby] = ACTIONS(5794), + [anon_sym_ascending] = ACTIONS(5794), + [anon_sym_descending] = ACTIONS(5794), + [anon_sym_group] = ACTIONS(5794), + [anon_sym_select] = ACTIONS(5794), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522396,6 +522431,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3695] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3695), [sym_preproc_endregion] = STATE(3695), [sym_preproc_line] = STATE(3695), @@ -522405,53 +522442,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3695), [sym_preproc_define] = STATE(3695), [sym_preproc_undef] = STATE(3695), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4912), - [anon_sym_LT] = ACTIONS(4914), - [anon_sym_GT] = ACTIONS(4914), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_QMARK] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4912), - [anon_sym_DASH_DASH] = ACTIONS(4912), - [anon_sym_PLUS] = ACTIONS(4914), - [anon_sym_DASH] = ACTIONS(4914), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4914), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_CARET] = ACTIONS(4912), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_LT_LT] = ACTIONS(4912), - [anon_sym_GT_GT] = ACTIONS(4914), - [anon_sym_GT_GT_GT] = ACTIONS(4912), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_GT_EQ] = ACTIONS(4912), - [anon_sym_LT_EQ] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4914), - [anon_sym_switch] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4912), - [anon_sym_and] = ACTIONS(4912), - [anon_sym_or] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4912), - [anon_sym_PIPE_PIPE] = ACTIONS(4912), - [anon_sym_QMARK_QMARK] = ACTIONS(4912), - [anon_sym_from] = ACTIONS(4912), - [anon_sym_into] = ACTIONS(4912), - [anon_sym_join] = ACTIONS(4912), - [anon_sym_let] = ACTIONS(4912), - [anon_sym_orderby] = ACTIONS(4912), - [anon_sym_ascending] = ACTIONS(4912), - [anon_sym_descending] = ACTIONS(4912), - [anon_sym_group] = ACTIONS(4912), - [anon_sym_select] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4912), - [anon_sym_with] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5874), + [anon_sym_or] = ACTIONS(5876), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_QMARK_QMARK] = ACTIONS(5981), + [anon_sym_from] = ACTIONS(5874), + [anon_sym_join] = ACTIONS(5874), + [anon_sym_let] = ACTIONS(5874), + [anon_sym_orderby] = ACTIONS(5874), + [anon_sym_ascending] = ACTIONS(5874), + [anon_sym_descending] = ACTIONS(5874), + [anon_sym_group] = ACTIONS(5874), + [anon_sym_select] = ACTIONS(5874), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522464,8 +522499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3696] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3696), [sym_preproc_endregion] = STATE(3696), [sym_preproc_line] = STATE(3696), @@ -522475,51 +522510,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3696), [sym_preproc_define] = STATE(3696), [sym_preproc_undef] = STATE(3696), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5909), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5909), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5909), - [anon_sym_or] = ACTIONS(5911), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5909), - [anon_sym_join] = ACTIONS(5909), - [anon_sym_let] = ACTIONS(5909), - [anon_sym_orderby] = ACTIONS(5909), - [anon_sym_ascending] = ACTIONS(5909), - [anon_sym_descending] = ACTIONS(5909), - [anon_sym_group] = ACTIONS(5909), - [anon_sym_select] = ACTIONS(5909), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(1229), + [anon_sym_join] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_orderby] = ACTIONS(1229), + [anon_sym_ascending] = ACTIONS(1229), + [anon_sym_descending] = ACTIONS(1229), + [anon_sym_group] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1229), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522532,8 +522567,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3697] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(6683), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_implicit_type] = STATE(7424), + [sym_array_type] = STATE(6850), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6851), + [sym_pointer_type] = STATE(6851), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(6851), + [sym_function_pointer_parameter] = STATE(7405), + [sym__ref_base_type] = STATE(7407), + [sym_tuple_type] = STATE(6783), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3697), [sym_preproc_endregion] = STATE(3697), [sym_preproc_line] = STATE(3697), @@ -522543,51 +522593,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3697), [sym_preproc_define] = STATE(3697), [sym_preproc_undef] = STATE(3697), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5684), + [aux_sym_function_pointer_type_repeat1] = STATE(3697), + [sym__identifier_token] = ACTIONS(5987), + [anon_sym_alias] = ACTIONS(5990), + [anon_sym_global] = ACTIONS(5990), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_ref] = ACTIONS(5996), + [anon_sym_delegate] = ACTIONS(5999), + [anon_sym_file] = ACTIONS(5990), + [anon_sym_in] = ACTIONS(5996), + [anon_sym_out] = ACTIONS(5996), + [anon_sym_where] = ACTIONS(5990), + [anon_sym_notnull] = ACTIONS(5990), + [anon_sym_unmanaged] = ACTIONS(5990), + [anon_sym_scoped] = ACTIONS(5990), + [anon_sym_var] = ACTIONS(6002), + [sym_predefined_type] = ACTIONS(6005), + [anon_sym_yield] = ACTIONS(5990), + [anon_sym_when] = ACTIONS(5990), + [anon_sym_from] = ACTIONS(5990), + [anon_sym_into] = ACTIONS(5990), + [anon_sym_join] = ACTIONS(5990), + [anon_sym_on] = ACTIONS(5990), + [anon_sym_equals] = ACTIONS(5990), + [anon_sym_let] = ACTIONS(5990), + [anon_sym_orderby] = ACTIONS(5990), + [anon_sym_ascending] = ACTIONS(5990), + [anon_sym_descending] = ACTIONS(5990), + [anon_sym_group] = ACTIONS(5990), + [anon_sym_by] = ACTIONS(5990), + [anon_sym_select] = ACTIONS(5990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522600,24 +522635,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3698] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3698), [sym_preproc_endregion] = STATE(3698), [sym_preproc_line] = STATE(3698), @@ -522627,35 +522644,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3698), [sym_preproc_define] = STATE(3698), [sym_preproc_undef] = STATE(3698), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(5985), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [aux_sym__query_body_repeat2] = STATE(3699), + [anon_sym_LBRACK] = ACTIONS(6008), + [anon_sym_COMMA] = ACTIONS(6008), + [anon_sym_LPAREN] = ACTIONS(6008), + [anon_sym_LT] = ACTIONS(6010), + [anon_sym_GT] = ACTIONS(6010), + [anon_sym_where] = ACTIONS(6008), + [anon_sym_QMARK] = ACTIONS(6010), + [anon_sym_BANG] = ACTIONS(6010), + [anon_sym_PLUS_PLUS] = ACTIONS(6008), + [anon_sym_DASH_DASH] = ACTIONS(6008), + [anon_sym_PLUS] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(6010), + [anon_sym_STAR] = ACTIONS(6008), + [anon_sym_SLASH] = ACTIONS(6010), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_CARET] = ACTIONS(6008), + [anon_sym_PIPE] = ACTIONS(6010), + [anon_sym_AMP] = ACTIONS(6010), + [anon_sym_LT_LT] = ACTIONS(6008), + [anon_sym_GT_GT] = ACTIONS(6010), + [anon_sym_GT_GT_GT] = ACTIONS(6008), + [anon_sym_EQ_EQ] = ACTIONS(6008), + [anon_sym_BANG_EQ] = ACTIONS(6008), + [anon_sym_GT_EQ] = ACTIONS(6008), + [anon_sym_LT_EQ] = ACTIONS(6008), + [anon_sym_DOT] = ACTIONS(6010), + [anon_sym_switch] = ACTIONS(6008), + [anon_sym_DOT_DOT] = ACTIONS(6008), + [anon_sym_and] = ACTIONS(6008), + [anon_sym_or] = ACTIONS(6010), + [anon_sym_AMP_AMP] = ACTIONS(6008), + [anon_sym_PIPE_PIPE] = ACTIONS(6008), + [anon_sym_QMARK_QMARK] = ACTIONS(6008), + [anon_sym_from] = ACTIONS(6008), + [anon_sym_into] = ACTIONS(6012), + [anon_sym_join] = ACTIONS(6008), + [anon_sym_let] = ACTIONS(6008), + [anon_sym_orderby] = ACTIONS(6008), + [anon_sym_ascending] = ACTIONS(6008), + [anon_sym_descending] = ACTIONS(6008), + [anon_sym_group] = ACTIONS(6008), + [anon_sym_select] = ACTIONS(6008), + [anon_sym_as] = ACTIONS(6010), + [anon_sym_is] = ACTIONS(6008), + [anon_sym_DASH_GT] = ACTIONS(6008), + [anon_sym_with] = ACTIONS(6008), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522668,8 +522703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3699] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3699), [sym_preproc_endregion] = STATE(3699), [sym_preproc_line] = STATE(3699), @@ -522679,51 +522712,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3699), [sym_preproc_define] = STATE(3699), [sym_preproc_undef] = STATE(3699), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [aux_sym__query_body_repeat2] = STATE(3701), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_COMMA] = ACTIONS(6014), + [anon_sym_LPAREN] = ACTIONS(6014), + [anon_sym_LT] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6016), + [anon_sym_where] = ACTIONS(6014), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_BANG] = ACTIONS(6016), + [anon_sym_PLUS_PLUS] = ACTIONS(6014), + [anon_sym_DASH_DASH] = ACTIONS(6014), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6014), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_CARET] = ACTIONS(6014), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_LT_LT] = ACTIONS(6014), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_GT_GT_GT] = ACTIONS(6014), + [anon_sym_EQ_EQ] = ACTIONS(6014), + [anon_sym_BANG_EQ] = ACTIONS(6014), + [anon_sym_GT_EQ] = ACTIONS(6014), + [anon_sym_LT_EQ] = ACTIONS(6014), + [anon_sym_DOT] = ACTIONS(6016), + [anon_sym_switch] = ACTIONS(6014), + [anon_sym_DOT_DOT] = ACTIONS(6014), + [anon_sym_and] = ACTIONS(6014), + [anon_sym_or] = ACTIONS(6016), + [anon_sym_AMP_AMP] = ACTIONS(6014), + [anon_sym_PIPE_PIPE] = ACTIONS(6014), + [anon_sym_QMARK_QMARK] = ACTIONS(6014), + [anon_sym_from] = ACTIONS(6014), + [anon_sym_into] = ACTIONS(6012), + [anon_sym_join] = ACTIONS(6014), + [anon_sym_let] = ACTIONS(6014), + [anon_sym_orderby] = ACTIONS(6014), + [anon_sym_ascending] = ACTIONS(6014), + [anon_sym_descending] = ACTIONS(6014), + [anon_sym_group] = ACTIONS(6014), + [anon_sym_select] = ACTIONS(6014), + [anon_sym_as] = ACTIONS(6016), + [anon_sym_is] = ACTIONS(6014), + [anon_sym_DASH_GT] = ACTIONS(6014), + [anon_sym_with] = ACTIONS(6014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522736,8 +522771,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3700] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3700), [sym_preproc_endregion] = STATE(3700), [sym_preproc_line] = STATE(3700), @@ -522747,51 +522780,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3700), [sym_preproc_define] = STATE(3700), [sym_preproc_undef] = STATE(3700), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_ascending] = ACTIONS(5172), - [anon_sym_descending] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [aux_sym__query_body_repeat2] = STATE(3702), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_COMMA] = ACTIONS(6014), + [anon_sym_LPAREN] = ACTIONS(6014), + [anon_sym_LT] = ACTIONS(6016), + [anon_sym_GT] = ACTIONS(6016), + [anon_sym_where] = ACTIONS(6014), + [anon_sym_QMARK] = ACTIONS(6016), + [anon_sym_BANG] = ACTIONS(6016), + [anon_sym_PLUS_PLUS] = ACTIONS(6014), + [anon_sym_DASH_DASH] = ACTIONS(6014), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6014), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_CARET] = ACTIONS(6014), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_LT_LT] = ACTIONS(6014), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_GT_GT_GT] = ACTIONS(6014), + [anon_sym_EQ_EQ] = ACTIONS(6014), + [anon_sym_BANG_EQ] = ACTIONS(6014), + [anon_sym_GT_EQ] = ACTIONS(6014), + [anon_sym_LT_EQ] = ACTIONS(6014), + [anon_sym_DOT] = ACTIONS(6016), + [anon_sym_switch] = ACTIONS(6014), + [anon_sym_DOT_DOT] = ACTIONS(6014), + [anon_sym_and] = ACTIONS(6014), + [anon_sym_or] = ACTIONS(6016), + [anon_sym_AMP_AMP] = ACTIONS(6014), + [anon_sym_PIPE_PIPE] = ACTIONS(6014), + [anon_sym_QMARK_QMARK] = ACTIONS(6014), + [anon_sym_from] = ACTIONS(6014), + [anon_sym_into] = ACTIONS(6012), + [anon_sym_join] = ACTIONS(6014), + [anon_sym_let] = ACTIONS(6014), + [anon_sym_orderby] = ACTIONS(6014), + [anon_sym_ascending] = ACTIONS(6014), + [anon_sym_descending] = ACTIONS(6014), + [anon_sym_group] = ACTIONS(6014), + [anon_sym_select] = ACTIONS(6014), + [anon_sym_as] = ACTIONS(6016), + [anon_sym_is] = ACTIONS(6014), + [anon_sym_DASH_GT] = ACTIONS(6014), + [anon_sym_with] = ACTIONS(6014), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522804,8 +522839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3701] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3701), [sym_preproc_endregion] = STATE(3701), [sym_preproc_line] = STATE(3701), @@ -522815,51 +522848,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3701), [sym_preproc_define] = STATE(3701), [sym_preproc_undef] = STATE(3701), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5783), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5783), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5783), - [anon_sym_or] = ACTIONS(5785), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5783), - [anon_sym_join] = ACTIONS(5783), - [anon_sym_let] = ACTIONS(5783), - [anon_sym_orderby] = ACTIONS(5783), - [anon_sym_ascending] = ACTIONS(5783), - [anon_sym_descending] = ACTIONS(5783), - [anon_sym_group] = ACTIONS(5783), - [anon_sym_select] = ACTIONS(5783), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [aux_sym__query_body_repeat2] = STATE(3701), + [anon_sym_LBRACK] = ACTIONS(6018), + [anon_sym_COMMA] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6020), + [anon_sym_where] = ACTIONS(6018), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_BANG] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6018), + [anon_sym_DASH_DASH] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_STAR] = ACTIONS(6018), + [anon_sym_SLASH] = ACTIONS(6020), + [anon_sym_PERCENT] = ACTIONS(6018), + [anon_sym_CARET] = ACTIONS(6018), + [anon_sym_PIPE] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6020), + [anon_sym_LT_LT] = ACTIONS(6018), + [anon_sym_GT_GT] = ACTIONS(6020), + [anon_sym_GT_GT_GT] = ACTIONS(6018), + [anon_sym_EQ_EQ] = ACTIONS(6018), + [anon_sym_BANG_EQ] = ACTIONS(6018), + [anon_sym_GT_EQ] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6020), + [anon_sym_switch] = ACTIONS(6018), + [anon_sym_DOT_DOT] = ACTIONS(6018), + [anon_sym_and] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6020), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_PIPE_PIPE] = ACTIONS(6018), + [anon_sym_QMARK_QMARK] = ACTIONS(6018), + [anon_sym_from] = ACTIONS(6018), + [anon_sym_into] = ACTIONS(6022), + [anon_sym_join] = ACTIONS(6018), + [anon_sym_let] = ACTIONS(6018), + [anon_sym_orderby] = ACTIONS(6018), + [anon_sym_ascending] = ACTIONS(6018), + [anon_sym_descending] = ACTIONS(6018), + [anon_sym_group] = ACTIONS(6018), + [anon_sym_select] = ACTIONS(6018), + [anon_sym_as] = ACTIONS(6020), + [anon_sym_is] = ACTIONS(6018), + [anon_sym_DASH_GT] = ACTIONS(6018), + [anon_sym_with] = ACTIONS(6018), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522881,53 +522916,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3702), [sym_preproc_define] = STATE(3702), [sym_preproc_undef] = STATE(3702), - [sym__identifier_token] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym_alias] = ACTIONS(5294), - [anon_sym_global] = ACTIONS(5294), - [anon_sym_unsafe] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_abstract] = ACTIONS(5294), - [anon_sym_async] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_file] = ACTIONS(5294), - [anon_sym_fixed] = ACTIONS(5294), - [anon_sym_internal] = ACTIONS(5294), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), - [anon_sym_partial] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_readonly] = ACTIONS(5294), - [anon_sym_required] = ACTIONS(5294), - [anon_sym_sealed] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5294), - [anon_sym_notnull] = ACTIONS(5294), - [anon_sym_unmanaged] = ACTIONS(5294), - [anon_sym_get] = ACTIONS(5294), - [anon_sym_set] = ACTIONS(5294), - [anon_sym_add] = ACTIONS(5294), - [anon_sym_remove] = ACTIONS(5294), - [anon_sym_init] = ACTIONS(5294), - [anon_sym_scoped] = ACTIONS(5294), - [anon_sym_var] = ACTIONS(5294), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_when] = ACTIONS(5294), - [anon_sym_from] = ACTIONS(5294), - [anon_sym_into] = ACTIONS(5294), - [anon_sym_join] = ACTIONS(5294), - [anon_sym_on] = ACTIONS(5294), - [anon_sym_equals] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_orderby] = ACTIONS(5294), - [anon_sym_ascending] = ACTIONS(5294), - [anon_sym_descending] = ACTIONS(5294), - [anon_sym_group] = ACTIONS(5294), - [anon_sym_by] = ACTIONS(5294), - [anon_sym_select] = ACTIONS(5294), + [aux_sym__query_body_repeat2] = STATE(3701), + [anon_sym_LBRACK] = ACTIONS(6025), + [anon_sym_COMMA] = ACTIONS(6025), + [anon_sym_LPAREN] = ACTIONS(6025), + [anon_sym_LT] = ACTIONS(6027), + [anon_sym_GT] = ACTIONS(6027), + [anon_sym_where] = ACTIONS(6025), + [anon_sym_QMARK] = ACTIONS(6027), + [anon_sym_BANG] = ACTIONS(6027), + [anon_sym_PLUS_PLUS] = ACTIONS(6025), + [anon_sym_DASH_DASH] = ACTIONS(6025), + [anon_sym_PLUS] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_STAR] = ACTIONS(6025), + [anon_sym_SLASH] = ACTIONS(6027), + [anon_sym_PERCENT] = ACTIONS(6025), + [anon_sym_CARET] = ACTIONS(6025), + [anon_sym_PIPE] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), + [anon_sym_LT_LT] = ACTIONS(6025), + [anon_sym_GT_GT] = ACTIONS(6027), + [anon_sym_GT_GT_GT] = ACTIONS(6025), + [anon_sym_EQ_EQ] = ACTIONS(6025), + [anon_sym_BANG_EQ] = ACTIONS(6025), + [anon_sym_GT_EQ] = ACTIONS(6025), + [anon_sym_LT_EQ] = ACTIONS(6025), + [anon_sym_DOT] = ACTIONS(6027), + [anon_sym_switch] = ACTIONS(6025), + [anon_sym_DOT_DOT] = ACTIONS(6025), + [anon_sym_and] = ACTIONS(6025), + [anon_sym_or] = ACTIONS(6027), + [anon_sym_AMP_AMP] = ACTIONS(6025), + [anon_sym_PIPE_PIPE] = ACTIONS(6025), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_from] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(6012), + [anon_sym_join] = ACTIONS(6025), + [anon_sym_let] = ACTIONS(6025), + [anon_sym_orderby] = ACTIONS(6025), + [anon_sym_ascending] = ACTIONS(6025), + [anon_sym_descending] = ACTIONS(6025), + [anon_sym_group] = ACTIONS(6025), + [anon_sym_select] = ACTIONS(6025), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6025), + [anon_sym_DASH_GT] = ACTIONS(6025), + [anon_sym_with] = ACTIONS(6025), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522949,53 +522984,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3703), [sym_preproc_define] = STATE(3703), [sym_preproc_undef] = STATE(3703), - [anon_sym_EQ] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5989), - [anon_sym_DASH_EQ] = ACTIONS(5989), - [anon_sym_STAR_EQ] = ACTIONS(5989), - [anon_sym_SLASH_EQ] = ACTIONS(5989), - [anon_sym_PERCENT_EQ] = ACTIONS(5989), - [anon_sym_AMP_EQ] = ACTIONS(5989), - [anon_sym_CARET_EQ] = ACTIONS(5989), - [anon_sym_PIPE_EQ] = ACTIONS(5989), - [anon_sym_LT_LT_EQ] = ACTIONS(5989), - [anon_sym_GT_GT_EQ] = ACTIONS(5989), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5989), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5989), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_where] = ACTIONS(4933), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_from] = ACTIONS(4933), + [anon_sym_into] = ACTIONS(4933), + [anon_sym_join] = ACTIONS(4933), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_orderby] = ACTIONS(4933), + [anon_sym_ascending] = ACTIONS(4933), + [anon_sym_descending] = ACTIONS(4933), + [anon_sym_group] = ACTIONS(4933), + [anon_sym_select] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4935), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523008,8 +523043,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3704] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3704), [sym_preproc_endregion] = STATE(3704), [sym_preproc_line] = STATE(3704), @@ -523019,51 +523054,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3704), [sym_preproc_define] = STATE(3704), [sym_preproc_undef] = STATE(3704), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5769), - [anon_sym_or] = ACTIONS(5771), - [anon_sym_AMP_AMP] = ACTIONS(5977), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5850), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5850), + [anon_sym_or] = ACTIONS(5852), + [anon_sym_AMP_AMP] = ACTIONS(5973), [anon_sym_PIPE_PIPE] = ACTIONS(5979), [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5769), - [anon_sym_join] = ACTIONS(5769), - [anon_sym_let] = ACTIONS(5769), - [anon_sym_orderby] = ACTIONS(5769), - [anon_sym_ascending] = ACTIONS(5769), - [anon_sym_descending] = ACTIONS(5769), - [anon_sym_group] = ACTIONS(5769), - [anon_sym_select] = ACTIONS(5769), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_from] = ACTIONS(5850), + [anon_sym_join] = ACTIONS(5850), + [anon_sym_let] = ACTIONS(5850), + [anon_sym_orderby] = ACTIONS(5850), + [anon_sym_ascending] = ACTIONS(5850), + [anon_sym_descending] = ACTIONS(5850), + [anon_sym_group] = ACTIONS(5850), + [anon_sym_select] = ACTIONS(5850), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523076,24 +523111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3705] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3705), [sym_preproc_endregion] = STATE(3705), [sym_preproc_line] = STATE(3705), @@ -523103,35 +523120,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3705), [sym_preproc_define] = STATE(3705), [sym_preproc_undef] = STATE(3705), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3461), + [anon_sym_alias] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_RBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3459), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3461), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3461), + [anon_sym_unmanaged] = ACTIONS(3461), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3461), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3461), + [anon_sym_yield] = ACTIONS(3461), + [anon_sym_when] = ACTIONS(3461), + [sym_discard] = ACTIONS(3461), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3461), + [anon_sym_into] = ACTIONS(3461), + [anon_sym_join] = ACTIONS(3461), + [anon_sym_on] = ACTIONS(3461), + [anon_sym_equals] = ACTIONS(3461), + [anon_sym_let] = ACTIONS(3461), + [anon_sym_orderby] = ACTIONS(3461), + [anon_sym_ascending] = ACTIONS(3461), + [anon_sym_descending] = ACTIONS(3461), + [anon_sym_group] = ACTIONS(3461), + [anon_sym_by] = ACTIONS(3461), + [anon_sym_select] = ACTIONS(3461), + [anon_sym_DASH_GT] = ACTIONS(3459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523144,6 +523179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3706] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3706), [sym_preproc_endregion] = STATE(3706), [sym_preproc_line] = STATE(3706), @@ -523153,53 +523190,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3706), [sym_preproc_define] = STATE(3706), [sym_preproc_undef] = STATE(3706), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5993), - [anon_sym_DASH_EQ] = ACTIONS(5993), - [anon_sym_STAR_EQ] = ACTIONS(5993), - [anon_sym_SLASH_EQ] = ACTIONS(5993), - [anon_sym_PERCENT_EQ] = ACTIONS(5993), - [anon_sym_AMP_EQ] = ACTIONS(5993), - [anon_sym_CARET_EQ] = ACTIONS(5993), - [anon_sym_PIPE_EQ] = ACTIONS(5993), - [anon_sym_LT_LT_EQ] = ACTIONS(5993), - [anon_sym_GT_GT_EQ] = ACTIONS(5993), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5993), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5870), + [anon_sym_or] = ACTIONS(5872), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_QMARK_QMARK] = ACTIONS(5981), + [anon_sym_from] = ACTIONS(5870), + [anon_sym_join] = ACTIONS(5870), + [anon_sym_let] = ACTIONS(5870), + [anon_sym_orderby] = ACTIONS(5870), + [anon_sym_ascending] = ACTIONS(5870), + [anon_sym_descending] = ACTIONS(5870), + [anon_sym_group] = ACTIONS(5870), + [anon_sym_select] = ACTIONS(5870), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523212,8 +523247,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3707] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3707), [sym_preproc_endregion] = STATE(3707), [sym_preproc_line] = STATE(3707), @@ -523223,51 +523256,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3707), [sym_preproc_define] = STATE(3707), [sym_preproc_undef] = STATE(3707), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_from] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_join] = ACTIONS(4967), + [anon_sym_let] = ACTIONS(4967), + [anon_sym_orderby] = ACTIONS(4967), + [anon_sym_ascending] = ACTIONS(4967), + [anon_sym_descending] = ACTIONS(4967), + [anon_sym_group] = ACTIONS(4967), + [anon_sym_select] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), + [sym_string_literal_encoding] = ACTIONS(6029), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523280,8 +523315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3708] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3708), [sym_preproc_endregion] = STATE(3708), [sym_preproc_line] = STATE(3708), @@ -523291,51 +523324,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3708), [sym_preproc_define] = STATE(3708), [sym_preproc_undef] = STATE(3708), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4960), + [anon_sym_LT_LT] = ACTIONS(4958), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_GT_GT_GT] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_switch] = ACTIONS(4958), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_or] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_QMARK_QMARK] = ACTIONS(4958), + [anon_sym_from] = ACTIONS(4958), + [anon_sym_into] = ACTIONS(4958), + [anon_sym_join] = ACTIONS(4958), + [anon_sym_let] = ACTIONS(4958), + [anon_sym_orderby] = ACTIONS(4958), + [anon_sym_ascending] = ACTIONS(4958), + [anon_sym_descending] = ACTIONS(4958), + [anon_sym_group] = ACTIONS(4958), + [anon_sym_select] = ACTIONS(4958), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_is] = ACTIONS(4958), + [anon_sym_DASH_GT] = ACTIONS(4958), + [anon_sym_with] = ACTIONS(4958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523357,53 +523392,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3709), [sym_preproc_define] = STATE(3709), [sym_preproc_undef] = STATE(3709), - [sym__identifier_token] = ACTIONS(3662), - [anon_sym_alias] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_global] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_file] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3664), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3664), - [anon_sym_notnull] = ACTIONS(3662), - [anon_sym_unmanaged] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_this] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_scoped] = ACTIONS(3662), - [anon_sym_EQ_GT] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6033), + [anon_sym_DASH_EQ] = ACTIONS(6033), + [anon_sym_STAR_EQ] = ACTIONS(6033), + [anon_sym_SLASH_EQ] = ACTIONS(6033), + [anon_sym_PERCENT_EQ] = ACTIONS(6033), + [anon_sym_AMP_EQ] = ACTIONS(6033), + [anon_sym_CARET_EQ] = ACTIONS(6033), + [anon_sym_PIPE_EQ] = ACTIONS(6033), + [anon_sym_LT_LT_EQ] = ACTIONS(6033), + [anon_sym_GT_GT_EQ] = ACTIONS(6033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_by] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523416,6 +523451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3710] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3710), [sym_preproc_endregion] = STATE(3710), [sym_preproc_line] = STATE(3710), @@ -523425,53 +523462,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3710), [sym_preproc_define] = STATE(3710), [sym_preproc_undef] = STATE(3710), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_where] = ACTIONS(4949), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_PLUS_PLUS] = ACTIONS(4949), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), - [anon_sym_LT_LT] = ACTIONS(4949), - [anon_sym_GT_GT] = ACTIONS(4951), - [anon_sym_GT_GT_GT] = ACTIONS(4949), - [anon_sym_EQ_EQ] = ACTIONS(4949), - [anon_sym_BANG_EQ] = ACTIONS(4949), - [anon_sym_GT_EQ] = ACTIONS(4949), - [anon_sym_LT_EQ] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_switch] = ACTIONS(4949), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_and] = ACTIONS(4949), - [anon_sym_or] = ACTIONS(4951), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_QMARK_QMARK] = ACTIONS(4949), - [anon_sym_from] = ACTIONS(4949), - [anon_sym_into] = ACTIONS(4949), - [anon_sym_join] = ACTIONS(4949), - [anon_sym_let] = ACTIONS(4949), - [anon_sym_orderby] = ACTIONS(4949), - [anon_sym_ascending] = ACTIONS(4949), - [anon_sym_descending] = ACTIONS(4949), - [anon_sym_group] = ACTIONS(4949), - [anon_sym_select] = ACTIONS(4949), - [anon_sym_as] = ACTIONS(4951), - [anon_sym_is] = ACTIONS(4949), - [anon_sym_DASH_GT] = ACTIONS(4949), - [anon_sym_with] = ACTIONS(4949), - [aux_sym_raw_string_literal_token1] = ACTIONS(5995), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5926), + [anon_sym_where] = ACTIONS(5924), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_PERCENT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5924), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_GT_GT_GT] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5924), + [anon_sym_BANG_EQ] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5926), + [anon_sym_AMP_AMP] = ACTIONS(5924), + [anon_sym_PIPE_PIPE] = ACTIONS(5924), + [anon_sym_QMARK_QMARK] = ACTIONS(5924), + [anon_sym_from] = ACTIONS(5924), + [anon_sym_join] = ACTIONS(5924), + [anon_sym_let] = ACTIONS(5924), + [anon_sym_orderby] = ACTIONS(5924), + [anon_sym_ascending] = ACTIONS(5924), + [anon_sym_descending] = ACTIONS(5924), + [anon_sym_group] = ACTIONS(5924), + [anon_sym_select] = ACTIONS(5924), + [anon_sym_as] = ACTIONS(5926), + [anon_sym_is] = ACTIONS(5924), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523493,53 +523528,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3711), [sym_preproc_define] = STATE(3711), [sym_preproc_undef] = STATE(3711), - [anon_sym_EQ] = ACTIONS(5997), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(5999), - [anon_sym_DASH_EQ] = ACTIONS(5999), - [anon_sym_STAR_EQ] = ACTIONS(5999), - [anon_sym_SLASH_EQ] = ACTIONS(5999), - [anon_sym_PERCENT_EQ] = ACTIONS(5999), - [anon_sym_AMP_EQ] = ACTIONS(5999), - [anon_sym_CARET_EQ] = ACTIONS(5999), - [anon_sym_PIPE_EQ] = ACTIONS(5999), - [anon_sym_LT_LT_EQ] = ACTIONS(5999), - [anon_sym_GT_GT_EQ] = ACTIONS(5999), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5999), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5999), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4941), + [anon_sym_GT] = ACTIONS(4941), + [anon_sym_where] = ACTIONS(4939), + [anon_sym_QMARK] = ACTIONS(4941), + [anon_sym_BANG] = ACTIONS(4941), + [anon_sym_PLUS_PLUS] = ACTIONS(4939), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4941), + [anon_sym_DASH] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4941), + [anon_sym_PERCENT] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4941), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(4939), + [anon_sym_GT_GT] = ACTIONS(4941), + [anon_sym_GT_GT_GT] = ACTIONS(4939), + [anon_sym_EQ_EQ] = ACTIONS(4939), + [anon_sym_BANG_EQ] = ACTIONS(4939), + [anon_sym_GT_EQ] = ACTIONS(4939), + [anon_sym_LT_EQ] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4941), + [anon_sym_switch] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_and] = ACTIONS(4939), + [anon_sym_or] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4939), + [anon_sym_PIPE_PIPE] = ACTIONS(4939), + [anon_sym_QMARK_QMARK] = ACTIONS(4939), + [anon_sym_from] = ACTIONS(4939), + [anon_sym_into] = ACTIONS(4939), + [anon_sym_join] = ACTIONS(4939), + [anon_sym_let] = ACTIONS(4939), + [anon_sym_orderby] = ACTIONS(4939), + [anon_sym_ascending] = ACTIONS(4939), + [anon_sym_descending] = ACTIONS(4939), + [anon_sym_group] = ACTIONS(4939), + [anon_sym_select] = ACTIONS(4939), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_DASH_GT] = ACTIONS(4939), + [anon_sym_with] = ACTIONS(4939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523561,53 +523596,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3712), [sym_preproc_define] = STATE(3712), [sym_preproc_undef] = STATE(3712), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_COMMA] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4920), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_CARET] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4920), - [anon_sym_GT_GT] = ACTIONS(4922), - [anon_sym_GT_GT_GT] = ACTIONS(4920), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_GT_EQ] = ACTIONS(4920), - [anon_sym_LT_EQ] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4922), - [anon_sym_switch] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4920), - [anon_sym_and] = ACTIONS(4920), - [anon_sym_or] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4920), - [anon_sym_PIPE_PIPE] = ACTIONS(4920), - [anon_sym_QMARK_QMARK] = ACTIONS(4920), - [anon_sym_from] = ACTIONS(4920), - [anon_sym_into] = ACTIONS(4920), - [anon_sym_join] = ACTIONS(4920), - [anon_sym_let] = ACTIONS(4920), - [anon_sym_orderby] = ACTIONS(4920), - [anon_sym_ascending] = ACTIONS(4920), - [anon_sym_descending] = ACTIONS(4920), - [anon_sym_group] = ACTIONS(4920), - [anon_sym_select] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4920), - [anon_sym_with] = ACTIONS(4920), - [sym_string_literal_encoding] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4945), + [anon_sym_GT] = ACTIONS(4945), + [anon_sym_where] = ACTIONS(4943), + [anon_sym_QMARK] = ACTIONS(4945), + [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_PLUS_PLUS] = ACTIONS(4943), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4945), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4945), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4945), + [anon_sym_AMP] = ACTIONS(4945), + [anon_sym_LT_LT] = ACTIONS(4943), + [anon_sym_GT_GT] = ACTIONS(4945), + [anon_sym_GT_GT_GT] = ACTIONS(4943), + [anon_sym_EQ_EQ] = ACTIONS(4943), + [anon_sym_BANG_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_switch] = ACTIONS(4943), + [anon_sym_DOT_DOT] = ACTIONS(4943), + [anon_sym_and] = ACTIONS(4943), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4943), + [anon_sym_PIPE_PIPE] = ACTIONS(4943), + [anon_sym_QMARK_QMARK] = ACTIONS(4943), + [anon_sym_from] = ACTIONS(4943), + [anon_sym_into] = ACTIONS(4943), + [anon_sym_join] = ACTIONS(4943), + [anon_sym_let] = ACTIONS(4943), + [anon_sym_orderby] = ACTIONS(4943), + [anon_sym_ascending] = ACTIONS(4943), + [anon_sym_descending] = ACTIONS(4943), + [anon_sym_group] = ACTIONS(4943), + [anon_sym_select] = ACTIONS(4943), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_is] = ACTIONS(4943), + [anon_sym_DASH_GT] = ACTIONS(4943), + [anon_sym_with] = ACTIONS(4943), + [aux_sym_raw_string_literal_token1] = ACTIONS(6035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523620,8 +523655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3713] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3713), [sym_preproc_endregion] = STATE(3713), [sym_preproc_line] = STATE(3713), @@ -523631,51 +523666,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3713), [sym_preproc_define] = STATE(3713), [sym_preproc_undef] = STATE(3713), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5985), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5866), + [anon_sym_or] = ACTIONS(5868), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5979), + [anon_sym_QMARK_QMARK] = ACTIONS(5981), + [anon_sym_from] = ACTIONS(5866), + [anon_sym_join] = ACTIONS(5866), + [anon_sym_let] = ACTIONS(5866), + [anon_sym_orderby] = ACTIONS(5866), + [anon_sym_ascending] = ACTIONS(5866), + [anon_sym_descending] = ACTIONS(5866), + [anon_sym_group] = ACTIONS(5866), + [anon_sym_select] = ACTIONS(5866), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523697,53 +523732,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3714), [sym_preproc_define] = STATE(3714), [sym_preproc_undef] = STATE(3714), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_add] = ACTIONS(3494), - [anon_sym_remove] = ACTIONS(3494), - [anon_sym_init] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_EQ] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6039), + [anon_sym_DASH_EQ] = ACTIONS(6039), + [anon_sym_STAR_EQ] = ACTIONS(6039), + [anon_sym_SLASH_EQ] = ACTIONS(6039), + [anon_sym_PERCENT_EQ] = ACTIONS(6039), + [anon_sym_AMP_EQ] = ACTIONS(6039), + [anon_sym_CARET_EQ] = ACTIONS(6039), + [anon_sym_PIPE_EQ] = ACTIONS(6039), + [anon_sym_LT_LT_EQ] = ACTIONS(6039), + [anon_sym_GT_GT_EQ] = ACTIONS(6039), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6039), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6039), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_equals] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523756,8 +523791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3715] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3715), [sym_preproc_endregion] = STATE(3715), [sym_preproc_line] = STATE(3715), @@ -523767,51 +523802,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3715), [sym_preproc_define] = STATE(3715), [sym_preproc_undef] = STATE(3715), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5891), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5891), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5891), - [anon_sym_or] = ACTIONS(5893), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5891), - [anon_sym_join] = ACTIONS(5891), - [anon_sym_let] = ACTIONS(5891), - [anon_sym_orderby] = ACTIONS(5891), - [anon_sym_ascending] = ACTIONS(5891), - [anon_sym_descending] = ACTIONS(5891), - [anon_sym_group] = ACTIONS(5891), - [anon_sym_select] = ACTIONS(5891), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523824,6 +523859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3716] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3716), [sym_preproc_endregion] = STATE(3716), [sym_preproc_line] = STATE(3716), @@ -523833,53 +523870,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3716), [sym_preproc_define] = STATE(3716), [sym_preproc_undef] = STATE(3716), - [anon_sym_EQ] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(6005), - [anon_sym_DASH_EQ] = ACTIONS(6005), - [anon_sym_STAR_EQ] = ACTIONS(6005), - [anon_sym_SLASH_EQ] = ACTIONS(6005), - [anon_sym_PERCENT_EQ] = ACTIONS(6005), - [anon_sym_AMP_EQ] = ACTIONS(6005), - [anon_sym_CARET_EQ] = ACTIONS(6005), - [anon_sym_PIPE_EQ] = ACTIONS(6005), - [anon_sym_LT_LT_EQ] = ACTIONS(6005), - [anon_sym_GT_GT_EQ] = ACTIONS(6005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523892,8 +523927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3717] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3717), [sym_preproc_endregion] = STATE(3717), [sym_preproc_line] = STATE(3717), @@ -523903,51 +523938,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3717), [sym_preproc_define] = STATE(3717), [sym_preproc_undef] = STATE(3717), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_PIPE] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_PIPE_PIPE] = ACTIONS(5979), - [anon_sym_QMARK_QMARK] = ACTIONS(5981), - [anon_sym_from] = ACTIONS(5777), - [anon_sym_join] = ACTIONS(5777), - [anon_sym_let] = ACTIONS(5777), - [anon_sym_orderby] = ACTIONS(5777), - [anon_sym_ascending] = ACTIONS(5777), - [anon_sym_descending] = ACTIONS(5777), - [anon_sym_group] = ACTIONS(5777), - [anon_sym_select] = ACTIONS(5777), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5682), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523960,6 +523995,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3718] = { + [sym__name] = STATE(6463), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(7226), + [sym_array_type] = STATE(6726), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(6760), + [sym_pointer_type] = STATE(6760), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(6760), + [sym_ref_type] = STATE(7331), + [sym__ref_base_type] = STATE(7413), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6542), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3718), [sym_preproc_endregion] = STATE(3718), [sym_preproc_line] = STATE(3718), @@ -523969,53 +524023,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3718), [sym_preproc_define] = STATE(3718), [sym_preproc_undef] = STATE(3718), - [anon_sym_LBRACK] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_where] = ACTIONS(4937), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_PLUS_PLUS] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4937), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4937), - [anon_sym_CARET] = ACTIONS(4937), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4939), - [anon_sym_LT_LT] = ACTIONS(4937), - [anon_sym_GT_GT] = ACTIONS(4939), - [anon_sym_GT_GT_GT] = ACTIONS(4937), - [anon_sym_EQ_EQ] = ACTIONS(4937), - [anon_sym_BANG_EQ] = ACTIONS(4937), - [anon_sym_GT_EQ] = ACTIONS(4937), - [anon_sym_LT_EQ] = ACTIONS(4937), - [anon_sym_DOT] = ACTIONS(4939), - [anon_sym_switch] = ACTIONS(4937), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_and] = ACTIONS(4937), - [anon_sym_or] = ACTIONS(4939), - [anon_sym_AMP_AMP] = ACTIONS(4937), - [anon_sym_PIPE_PIPE] = ACTIONS(4937), - [anon_sym_QMARK_QMARK] = ACTIONS(4937), - [anon_sym_from] = ACTIONS(4937), - [anon_sym_into] = ACTIONS(4937), - [anon_sym_join] = ACTIONS(4937), - [anon_sym_let] = ACTIONS(4937), - [anon_sym_orderby] = ACTIONS(4937), - [anon_sym_ascending] = ACTIONS(4937), - [anon_sym_descending] = ACTIONS(4937), - [anon_sym_group] = ACTIONS(4937), - [anon_sym_select] = ACTIONS(4937), - [anon_sym_as] = ACTIONS(4939), - [anon_sym_is] = ACTIONS(4937), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_with] = ACTIONS(4937), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(6041), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5522), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524037,53 +524072,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3719), [sym_preproc_define] = STATE(3719), [sym_preproc_undef] = STATE(3719), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(6009), - [anon_sym_DASH_EQ] = ACTIONS(6009), - [anon_sym_STAR_EQ] = ACTIONS(6009), - [anon_sym_SLASH_EQ] = ACTIONS(6009), - [anon_sym_PERCENT_EQ] = ACTIONS(6009), - [anon_sym_AMP_EQ] = ACTIONS(6009), - [anon_sym_CARET_EQ] = ACTIONS(6009), - [anon_sym_PIPE_EQ] = ACTIONS(6009), - [anon_sym_LT_LT_EQ] = ACTIONS(6009), - [anon_sym_GT_GT_EQ] = ACTIONS(6009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6047), + [anon_sym_DASH_EQ] = ACTIONS(6047), + [anon_sym_STAR_EQ] = ACTIONS(6047), + [anon_sym_SLASH_EQ] = ACTIONS(6047), + [anon_sym_PERCENT_EQ] = ACTIONS(6047), + [anon_sym_AMP_EQ] = ACTIONS(6047), + [anon_sym_CARET_EQ] = ACTIONS(6047), + [anon_sym_PIPE_EQ] = ACTIONS(6047), + [anon_sym_LT_LT_EQ] = ACTIONS(6047), + [anon_sym_GT_GT_EQ] = ACTIONS(6047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524096,23 +524131,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3720] = { - [sym__name] = STATE(6543), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_implicit_type] = STATE(7742), - [sym_array_type] = STATE(6871), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6877), - [sym_pointer_type] = STATE(6877), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(6877), - [sym_function_pointer_parameter] = STATE(7788), - [sym__ref_base_type] = STATE(7732), - [sym_tuple_type] = STATE(6776), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3720), [sym_preproc_endregion] = STATE(3720), [sym_preproc_line] = STATE(3720), @@ -524122,36 +524140,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3720), [sym_preproc_define] = STATE(3720), [sym_preproc_undef] = STATE(3720), - [aux_sym_function_pointer_type_repeat1] = STATE(3720), - [sym__identifier_token] = ACTIONS(6011), - [anon_sym_alias] = ACTIONS(6014), - [anon_sym_global] = ACTIONS(6014), - [anon_sym_LPAREN] = ACTIONS(6017), - [anon_sym_ref] = ACTIONS(6020), - [anon_sym_delegate] = ACTIONS(6023), - [anon_sym_file] = ACTIONS(6014), - [anon_sym_in] = ACTIONS(6020), - [anon_sym_out] = ACTIONS(6020), - [anon_sym_where] = ACTIONS(6014), - [anon_sym_notnull] = ACTIONS(6014), - [anon_sym_unmanaged] = ACTIONS(6014), - [anon_sym_scoped] = ACTIONS(6014), - [anon_sym_var] = ACTIONS(6026), - [sym_predefined_type] = ACTIONS(6029), - [anon_sym_yield] = ACTIONS(6014), - [anon_sym_when] = ACTIONS(6014), - [anon_sym_from] = ACTIONS(6014), - [anon_sym_into] = ACTIONS(6014), - [anon_sym_join] = ACTIONS(6014), - [anon_sym_on] = ACTIONS(6014), - [anon_sym_equals] = ACTIONS(6014), - [anon_sym_let] = ACTIONS(6014), - [anon_sym_orderby] = ACTIONS(6014), - [anon_sym_ascending] = ACTIONS(6014), - [anon_sym_descending] = ACTIONS(6014), - [anon_sym_group] = ACTIONS(6014), - [anon_sym_by] = ACTIONS(6014), - [anon_sym_select] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(6049), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6051), + [anon_sym_DASH_EQ] = ACTIONS(6051), + [anon_sym_STAR_EQ] = ACTIONS(6051), + [anon_sym_SLASH_EQ] = ACTIONS(6051), + [anon_sym_PERCENT_EQ] = ACTIONS(6051), + [anon_sym_AMP_EQ] = ACTIONS(6051), + [anon_sym_CARET_EQ] = ACTIONS(6051), + [anon_sym_PIPE_EQ] = ACTIONS(6051), + [anon_sym_LT_LT_EQ] = ACTIONS(6051), + [anon_sym_GT_GT_EQ] = ACTIONS(6051), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6051), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_on] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524164,6 +524199,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3721] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3721), [sym_preproc_endregion] = STATE(3721), [sym_preproc_line] = STATE(3721), @@ -524173,53 +524226,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3721), [sym_preproc_define] = STATE(3721), [sym_preproc_undef] = STATE(3721), - [anon_sym_LBRACK] = ACTIONS(4916), - [anon_sym_COMMA] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4918), - [anon_sym_GT] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(4918), - [anon_sym_BANG] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4918), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4918), - [anon_sym_AMP] = ACTIONS(4918), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4918), - [anon_sym_GT_GT_GT] = ACTIONS(4916), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_GT_EQ] = ACTIONS(4916), - [anon_sym_LT_EQ] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4918), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_and] = ACTIONS(4916), - [anon_sym_or] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4916), - [anon_sym_PIPE_PIPE] = ACTIONS(4916), - [anon_sym_QMARK_QMARK] = ACTIONS(4916), - [anon_sym_from] = ACTIONS(4916), - [anon_sym_into] = ACTIONS(4916), - [anon_sym_join] = ACTIONS(4916), - [anon_sym_let] = ACTIONS(4916), - [anon_sym_orderby] = ACTIONS(4916), - [anon_sym_ascending] = ACTIONS(4916), - [anon_sym_descending] = ACTIONS(4916), - [anon_sym_group] = ACTIONS(4916), - [anon_sym_select] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_with] = ACTIONS(4916), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3957), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524232,8 +524267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3722] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3722), [sym_preproc_endregion] = STATE(3722), [sym_preproc_line] = STATE(3722), @@ -524243,51 +524278,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3722), [sym_preproc_define] = STATE(3722), [sym_preproc_undef] = STATE(3722), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5756), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524309,53 +524344,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3723), [sym_preproc_define] = STATE(3723), [sym_preproc_undef] = STATE(3723), - [anon_sym_EQ] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_CARET] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4908), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4908), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(6034), - [anon_sym_DASH_EQ] = ACTIONS(6034), - [anon_sym_STAR_EQ] = ACTIONS(6034), - [anon_sym_SLASH_EQ] = ACTIONS(6034), - [anon_sym_PERCENT_EQ] = ACTIONS(6034), - [anon_sym_AMP_EQ] = ACTIONS(6034), - [anon_sym_CARET_EQ] = ACTIONS(6034), - [anon_sym_PIPE_EQ] = ACTIONS(6034), - [anon_sym_LT_LT_EQ] = ACTIONS(6034), - [anon_sym_GT_GT_EQ] = ACTIONS(6034), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6034), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6034), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(6053), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_EQ_GT] = ACTIONS(4898), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6055), + [anon_sym_DASH_EQ] = ACTIONS(6055), + [anon_sym_STAR_EQ] = ACTIONS(6055), + [anon_sym_SLASH_EQ] = ACTIONS(6055), + [anon_sym_PERCENT_EQ] = ACTIONS(6055), + [anon_sym_AMP_EQ] = ACTIONS(6055), + [anon_sym_CARET_EQ] = ACTIONS(6055), + [anon_sym_PIPE_EQ] = ACTIONS(6055), + [anon_sym_LT_LT_EQ] = ACTIONS(6055), + [anon_sym_GT_GT_EQ] = ACTIONS(6055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6055), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524368,8 +524403,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3724] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3724), [sym_preproc_endregion] = STATE(3724), [sym_preproc_line] = STATE(3724), @@ -524379,51 +524430,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3724), [sym_preproc_define] = STATE(3724), [sym_preproc_undef] = STATE(3724), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(1229), - [anon_sym_or] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_from] = ACTIONS(1229), - [anon_sym_join] = ACTIONS(1229), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_orderby] = ACTIONS(1229), - [anon_sym_ascending] = ACTIONS(1229), - [anon_sym_descending] = ACTIONS(1229), - [anon_sym_group] = ACTIONS(1229), - [anon_sym_select] = ACTIONS(1229), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1229), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(1229), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(6057), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524436,8 +524471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3725] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3725), [sym_preproc_endregion] = STATE(3725), [sym_preproc_line] = STATE(3725), @@ -524447,51 +524480,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3725), [sym_preproc_define] = STATE(3725), [sym_preproc_undef] = STATE(3725), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5961), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_add] = ACTIONS(3494), + [anon_sym_remove] = ACTIONS(3494), + [anon_sym_init] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524504,6 +524539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3726] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3726), [sym_preproc_endregion] = STATE(3726), [sym_preproc_line] = STATE(3726), @@ -524513,53 +524550,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3726), [sym_preproc_define] = STATE(3726), [sym_preproc_undef] = STATE(3726), - [aux_sym__query_body_repeat2] = STATE(3727), - [anon_sym_LBRACK] = ACTIONS(6036), - [anon_sym_COMMA] = ACTIONS(6036), - [anon_sym_LPAREN] = ACTIONS(6036), - [anon_sym_LT] = ACTIONS(6038), - [anon_sym_GT] = ACTIONS(6038), - [anon_sym_where] = ACTIONS(6036), - [anon_sym_QMARK] = ACTIONS(6038), - [anon_sym_BANG] = ACTIONS(6038), - [anon_sym_PLUS_PLUS] = ACTIONS(6036), - [anon_sym_DASH_DASH] = ACTIONS(6036), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_STAR] = ACTIONS(6036), - [anon_sym_SLASH] = ACTIONS(6038), - [anon_sym_PERCENT] = ACTIONS(6036), - [anon_sym_CARET] = ACTIONS(6036), - [anon_sym_PIPE] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(6038), - [anon_sym_LT_LT] = ACTIONS(6036), - [anon_sym_GT_GT] = ACTIONS(6038), - [anon_sym_GT_GT_GT] = ACTIONS(6036), - [anon_sym_EQ_EQ] = ACTIONS(6036), - [anon_sym_BANG_EQ] = ACTIONS(6036), - [anon_sym_GT_EQ] = ACTIONS(6036), - [anon_sym_LT_EQ] = ACTIONS(6036), - [anon_sym_DOT] = ACTIONS(6038), - [anon_sym_switch] = ACTIONS(6036), - [anon_sym_DOT_DOT] = ACTIONS(6036), - [anon_sym_and] = ACTIONS(6036), - [anon_sym_or] = ACTIONS(6038), - [anon_sym_AMP_AMP] = ACTIONS(6036), - [anon_sym_PIPE_PIPE] = ACTIONS(6036), - [anon_sym_QMARK_QMARK] = ACTIONS(6036), - [anon_sym_from] = ACTIONS(6036), - [anon_sym_into] = ACTIONS(6040), - [anon_sym_join] = ACTIONS(6036), - [anon_sym_let] = ACTIONS(6036), - [anon_sym_orderby] = ACTIONS(6036), - [anon_sym_ascending] = ACTIONS(6036), - [anon_sym_descending] = ACTIONS(6036), - [anon_sym_group] = ACTIONS(6036), - [anon_sym_select] = ACTIONS(6036), - [anon_sym_as] = ACTIONS(6038), - [anon_sym_is] = ACTIONS(6036), - [anon_sym_DASH_GT] = ACTIONS(6036), - [anon_sym_with] = ACTIONS(6036), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524572,6 +524607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3727] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3727), [sym_preproc_endregion] = STATE(3727), [sym_preproc_line] = STATE(3727), @@ -524581,53 +524618,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3727), [sym_preproc_define] = STATE(3727), [sym_preproc_undef] = STATE(3727), - [aux_sym__query_body_repeat2] = STATE(3729), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_COMMA] = ACTIONS(6042), - [anon_sym_LPAREN] = ACTIONS(6042), - [anon_sym_LT] = ACTIONS(6044), - [anon_sym_GT] = ACTIONS(6044), - [anon_sym_where] = ACTIONS(6042), - [anon_sym_QMARK] = ACTIONS(6044), - [anon_sym_BANG] = ACTIONS(6044), - [anon_sym_PLUS_PLUS] = ACTIONS(6042), - [anon_sym_DASH_DASH] = ACTIONS(6042), - [anon_sym_PLUS] = ACTIONS(6044), - [anon_sym_DASH] = ACTIONS(6044), - [anon_sym_STAR] = ACTIONS(6042), - [anon_sym_SLASH] = ACTIONS(6044), - [anon_sym_PERCENT] = ACTIONS(6042), - [anon_sym_CARET] = ACTIONS(6042), - [anon_sym_PIPE] = ACTIONS(6044), - [anon_sym_AMP] = ACTIONS(6044), - [anon_sym_LT_LT] = ACTIONS(6042), - [anon_sym_GT_GT] = ACTIONS(6044), - [anon_sym_GT_GT_GT] = ACTIONS(6042), - [anon_sym_EQ_EQ] = ACTIONS(6042), - [anon_sym_BANG_EQ] = ACTIONS(6042), - [anon_sym_GT_EQ] = ACTIONS(6042), - [anon_sym_LT_EQ] = ACTIONS(6042), - [anon_sym_DOT] = ACTIONS(6044), - [anon_sym_switch] = ACTIONS(6042), - [anon_sym_DOT_DOT] = ACTIONS(6042), - [anon_sym_and] = ACTIONS(6042), - [anon_sym_or] = ACTIONS(6044), - [anon_sym_AMP_AMP] = ACTIONS(6042), - [anon_sym_PIPE_PIPE] = ACTIONS(6042), - [anon_sym_QMARK_QMARK] = ACTIONS(6042), - [anon_sym_from] = ACTIONS(6042), - [anon_sym_into] = ACTIONS(6040), - [anon_sym_join] = ACTIONS(6042), - [anon_sym_let] = ACTIONS(6042), - [anon_sym_orderby] = ACTIONS(6042), - [anon_sym_ascending] = ACTIONS(6042), - [anon_sym_descending] = ACTIONS(6042), - [anon_sym_group] = ACTIONS(6042), - [anon_sym_select] = ACTIONS(6042), - [anon_sym_as] = ACTIONS(6044), - [anon_sym_is] = ACTIONS(6042), - [anon_sym_DASH_GT] = ACTIONS(6042), - [anon_sym_with] = ACTIONS(6042), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524649,53 +524684,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3728), [sym_preproc_define] = STATE(3728), [sym_preproc_undef] = STATE(3728), - [aux_sym__query_body_repeat2] = STATE(3730), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_COMMA] = ACTIONS(6042), - [anon_sym_LPAREN] = ACTIONS(6042), - [anon_sym_LT] = ACTIONS(6044), - [anon_sym_GT] = ACTIONS(6044), - [anon_sym_where] = ACTIONS(6042), - [anon_sym_QMARK] = ACTIONS(6044), - [anon_sym_BANG] = ACTIONS(6044), - [anon_sym_PLUS_PLUS] = ACTIONS(6042), - [anon_sym_DASH_DASH] = ACTIONS(6042), - [anon_sym_PLUS] = ACTIONS(6044), - [anon_sym_DASH] = ACTIONS(6044), - [anon_sym_STAR] = ACTIONS(6042), - [anon_sym_SLASH] = ACTIONS(6044), - [anon_sym_PERCENT] = ACTIONS(6042), - [anon_sym_CARET] = ACTIONS(6042), - [anon_sym_PIPE] = ACTIONS(6044), - [anon_sym_AMP] = ACTIONS(6044), - [anon_sym_LT_LT] = ACTIONS(6042), - [anon_sym_GT_GT] = ACTIONS(6044), - [anon_sym_GT_GT_GT] = ACTIONS(6042), - [anon_sym_EQ_EQ] = ACTIONS(6042), - [anon_sym_BANG_EQ] = ACTIONS(6042), - [anon_sym_GT_EQ] = ACTIONS(6042), - [anon_sym_LT_EQ] = ACTIONS(6042), - [anon_sym_DOT] = ACTIONS(6044), - [anon_sym_switch] = ACTIONS(6042), - [anon_sym_DOT_DOT] = ACTIONS(6042), - [anon_sym_and] = ACTIONS(6042), - [anon_sym_or] = ACTIONS(6044), - [anon_sym_AMP_AMP] = ACTIONS(6042), - [anon_sym_PIPE_PIPE] = ACTIONS(6042), - [anon_sym_QMARK_QMARK] = ACTIONS(6042), - [anon_sym_from] = ACTIONS(6042), - [anon_sym_into] = ACTIONS(6040), - [anon_sym_join] = ACTIONS(6042), - [anon_sym_let] = ACTIONS(6042), - [anon_sym_orderby] = ACTIONS(6042), - [anon_sym_ascending] = ACTIONS(6042), - [anon_sym_descending] = ACTIONS(6042), - [anon_sym_group] = ACTIONS(6042), - [anon_sym_select] = ACTIONS(6042), - [anon_sym_as] = ACTIONS(6044), - [anon_sym_is] = ACTIONS(6042), - [anon_sym_DASH_GT] = ACTIONS(6042), - [anon_sym_with] = ACTIONS(6042), + [sym__identifier_token] = ACTIONS(3662), + [anon_sym_alias] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_global] = ACTIONS(3662), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_file] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_GT] = ACTIONS(3664), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_where] = ACTIONS(3662), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_notnull] = ACTIONS(3662), + [anon_sym_unmanaged] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_this] = ACTIONS(3662), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_scoped] = ACTIONS(3662), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_when] = ACTIONS(3662), + [sym_discard] = ACTIONS(3662), + [anon_sym_and] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_into] = ACTIONS(3662), + [anon_sym_join] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_equals] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_orderby] = ACTIONS(3662), + [anon_sym_ascending] = ACTIONS(3662), + [anon_sym_descending] = ACTIONS(3662), + [anon_sym_group] = ACTIONS(3662), + [anon_sym_by] = ACTIONS(3662), + [anon_sym_select] = ACTIONS(3662), + [anon_sym_DASH_GT] = ACTIONS(3664), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524717,53 +524752,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3729), [sym_preproc_define] = STATE(3729), [sym_preproc_undef] = STATE(3729), - [aux_sym__query_body_repeat2] = STATE(3729), - [anon_sym_LBRACK] = ACTIONS(6046), - [anon_sym_COMMA] = ACTIONS(6046), - [anon_sym_LPAREN] = ACTIONS(6046), - [anon_sym_LT] = ACTIONS(6048), - [anon_sym_GT] = ACTIONS(6048), - [anon_sym_where] = ACTIONS(6046), - [anon_sym_QMARK] = ACTIONS(6048), - [anon_sym_BANG] = ACTIONS(6048), - [anon_sym_PLUS_PLUS] = ACTIONS(6046), - [anon_sym_DASH_DASH] = ACTIONS(6046), - [anon_sym_PLUS] = ACTIONS(6048), - [anon_sym_DASH] = ACTIONS(6048), - [anon_sym_STAR] = ACTIONS(6046), - [anon_sym_SLASH] = ACTIONS(6048), - [anon_sym_PERCENT] = ACTIONS(6046), - [anon_sym_CARET] = ACTIONS(6046), - [anon_sym_PIPE] = ACTIONS(6048), - [anon_sym_AMP] = ACTIONS(6048), - [anon_sym_LT_LT] = ACTIONS(6046), - [anon_sym_GT_GT] = ACTIONS(6048), - [anon_sym_GT_GT_GT] = ACTIONS(6046), - [anon_sym_EQ_EQ] = ACTIONS(6046), - [anon_sym_BANG_EQ] = ACTIONS(6046), - [anon_sym_GT_EQ] = ACTIONS(6046), - [anon_sym_LT_EQ] = ACTIONS(6046), - [anon_sym_DOT] = ACTIONS(6048), - [anon_sym_switch] = ACTIONS(6046), - [anon_sym_DOT_DOT] = ACTIONS(6046), - [anon_sym_and] = ACTIONS(6046), - [anon_sym_or] = ACTIONS(6048), - [anon_sym_AMP_AMP] = ACTIONS(6046), - [anon_sym_PIPE_PIPE] = ACTIONS(6046), - [anon_sym_QMARK_QMARK] = ACTIONS(6046), - [anon_sym_from] = ACTIONS(6046), - [anon_sym_into] = ACTIONS(6050), - [anon_sym_join] = ACTIONS(6046), - [anon_sym_let] = ACTIONS(6046), - [anon_sym_orderby] = ACTIONS(6046), - [anon_sym_ascending] = ACTIONS(6046), - [anon_sym_descending] = ACTIONS(6046), - [anon_sym_group] = ACTIONS(6046), - [anon_sym_select] = ACTIONS(6046), - [anon_sym_as] = ACTIONS(6048), - [anon_sym_is] = ACTIONS(6046), - [anon_sym_DASH_GT] = ACTIONS(6046), - [anon_sym_with] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_where] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_EQ_GT] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(5455), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_from] = ACTIONS(3881), + [anon_sym_into] = ACTIONS(3881), + [anon_sym_join] = ACTIONS(3881), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_orderby] = ACTIONS(3881), + [anon_sym_ascending] = ACTIONS(3881), + [anon_sym_descending] = ACTIONS(3881), + [anon_sym_group] = ACTIONS(3881), + [anon_sym_select] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(5455), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524776,6 +524811,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3730] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3730), [sym_preproc_endregion] = STATE(3730), [sym_preproc_line] = STATE(3730), @@ -524785,53 +524838,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3730), [sym_preproc_define] = STATE(3730), [sym_preproc_undef] = STATE(3730), - [aux_sym__query_body_repeat2] = STATE(3729), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_COMMA] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_where] = ACTIONS(6053), - [anon_sym_QMARK] = ACTIONS(6055), - [anon_sym_BANG] = ACTIONS(6055), - [anon_sym_PLUS_PLUS] = ACTIONS(6053), - [anon_sym_DASH_DASH] = ACTIONS(6053), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6053), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_PERCENT] = ACTIONS(6053), - [anon_sym_CARET] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6053), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_GT_GT_GT] = ACTIONS(6053), - [anon_sym_EQ_EQ] = ACTIONS(6053), - [anon_sym_BANG_EQ] = ACTIONS(6053), - [anon_sym_GT_EQ] = ACTIONS(6053), - [anon_sym_LT_EQ] = ACTIONS(6053), - [anon_sym_DOT] = ACTIONS(6055), - [anon_sym_switch] = ACTIONS(6053), - [anon_sym_DOT_DOT] = ACTIONS(6053), - [anon_sym_and] = ACTIONS(6053), - [anon_sym_or] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_QMARK_QMARK] = ACTIONS(6053), - [anon_sym_from] = ACTIONS(6053), - [anon_sym_into] = ACTIONS(6040), - [anon_sym_join] = ACTIONS(6053), - [anon_sym_let] = ACTIONS(6053), - [anon_sym_orderby] = ACTIONS(6053), - [anon_sym_ascending] = ACTIONS(6053), - [anon_sym_descending] = ACTIONS(6053), - [anon_sym_group] = ACTIONS(6053), - [anon_sym_select] = ACTIONS(6053), - [anon_sym_as] = ACTIONS(6055), - [anon_sym_is] = ACTIONS(6053), - [anon_sym_DASH_GT] = ACTIONS(6053), - [anon_sym_with] = ACTIONS(6053), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524844,8 +524879,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3731] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3731), [sym_preproc_endregion] = STATE(3731), [sym_preproc_line] = STATE(3731), @@ -524855,51 +524888,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3731), [sym_preproc_define] = STATE(3731), [sym_preproc_undef] = STATE(3731), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4900), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(6061), + [anon_sym_DASH_EQ] = ACTIONS(6061), + [anon_sym_STAR_EQ] = ACTIONS(6061), + [anon_sym_SLASH_EQ] = ACTIONS(6061), + [anon_sym_PERCENT_EQ] = ACTIONS(6061), + [anon_sym_AMP_EQ] = ACTIONS(6061), + [anon_sym_CARET_EQ] = ACTIONS(6061), + [anon_sym_PIPE_EQ] = ACTIONS(6061), + [anon_sym_LT_LT_EQ] = ACTIONS(6061), + [anon_sym_GT_GT_EQ] = ACTIONS(6061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(6061), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524912,6 +524947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3732] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3732), [sym_preproc_endregion] = STATE(3732), [sym_preproc_line] = STATE(3732), @@ -524921,53 +524958,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3732), [sym_preproc_define] = STATE(3732), [sym_preproc_undef] = STATE(3732), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_from] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_join] = ACTIONS(4931), - [anon_sym_let] = ACTIONS(4931), - [anon_sym_orderby] = ACTIONS(4931), - [anon_sym_ascending] = ACTIONS(4931), - [anon_sym_descending] = ACTIONS(4931), - [anon_sym_group] = ACTIONS(4931), - [anon_sym_select] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), - [sym_string_literal_encoding] = ACTIONS(6057), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524980,8 +525015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3733] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3733), [sym_preproc_endregion] = STATE(3733), [sym_preproc_line] = STATE(3733), @@ -524991,51 +525026,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3733), [sym_preproc_define] = STATE(3733), [sym_preproc_undef] = STATE(3733), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5949), - [anon_sym_GT] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_SLASH] = ACTIONS(5955), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5963), - [anon_sym_GT_GT] = ACTIONS(5965), - [anon_sym_GT_GT_GT] = ACTIONS(5963), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5969), - [anon_sym_LT_EQ] = ACTIONS(5969), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5973), - [anon_sym_is] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5967), + [anon_sym_GT_GT_GT] = ACTIONS(5965), + [anon_sym_EQ_EQ] = ACTIONS(5969), + [anon_sym_BANG_EQ] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5971), + [anon_sym_LT_EQ] = ACTIONS(5971), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(5955), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5975), + [anon_sym_is] = ACTIONS(5977), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525048,25 +525083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3734] = { - [sym__name] = STATE(6446), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(7307), - [sym_array_type] = STATE(6781), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(6794), - [sym_pointer_type] = STATE(6794), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(6794), - [sym_ref_type] = STATE(7128), - [sym__ref_base_type] = STATE(7613), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6683), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3734), [sym_preproc_endregion] = STATE(3734), [sym_preproc_line] = STATE(3734), @@ -525076,34 +525092,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3734), [sym_preproc_define] = STATE(3734), [sym_preproc_undef] = STATE(3734), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(6059), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6061), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5522), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(5298), + [anon_sym_extern] = ACTIONS(5298), + [anon_sym_alias] = ACTIONS(5298), + [anon_sym_global] = ACTIONS(5298), + [anon_sym_unsafe] = ACTIONS(5298), + [anon_sym_static] = ACTIONS(5298), + [anon_sym_abstract] = ACTIONS(5298), + [anon_sym_async] = ACTIONS(5298), + [anon_sym_const] = ACTIONS(5298), + [anon_sym_file] = ACTIONS(5298), + [anon_sym_fixed] = ACTIONS(5298), + [anon_sym_internal] = ACTIONS(5298), + [anon_sym_new] = ACTIONS(5298), + [anon_sym_override] = ACTIONS(5298), + [anon_sym_partial] = ACTIONS(5298), + [anon_sym_private] = ACTIONS(5298), + [anon_sym_protected] = ACTIONS(5298), + [anon_sym_public] = ACTIONS(5298), + [anon_sym_readonly] = ACTIONS(5298), + [anon_sym_required] = ACTIONS(5298), + [anon_sym_sealed] = ACTIONS(5298), + [anon_sym_virtual] = ACTIONS(5298), + [anon_sym_volatile] = ACTIONS(5298), + [anon_sym_where] = ACTIONS(5298), + [anon_sym_notnull] = ACTIONS(5298), + [anon_sym_unmanaged] = ACTIONS(5298), + [anon_sym_get] = ACTIONS(5298), + [anon_sym_set] = ACTIONS(5298), + [anon_sym_add] = ACTIONS(5298), + [anon_sym_remove] = ACTIONS(5298), + [anon_sym_init] = ACTIONS(5298), + [anon_sym_scoped] = ACTIONS(5298), + [anon_sym_var] = ACTIONS(5298), + [anon_sym_yield] = ACTIONS(5298), + [anon_sym_when] = ACTIONS(5298), + [anon_sym_from] = ACTIONS(5298), + [anon_sym_into] = ACTIONS(5298), + [anon_sym_join] = ACTIONS(5298), + [anon_sym_on] = ACTIONS(5298), + [anon_sym_equals] = ACTIONS(5298), + [anon_sym_let] = ACTIONS(5298), + [anon_sym_orderby] = ACTIONS(5298), + [anon_sym_ascending] = ACTIONS(5298), + [anon_sym_descending] = ACTIONS(5298), + [anon_sym_group] = ACTIONS(5298), + [anon_sym_by] = ACTIONS(5298), + [anon_sym_select] = ACTIONS(5298), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525125,52 +525160,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3735), [sym_preproc_define] = STATE(3735), [sym_preproc_undef] = STATE(3735), - [anon_sym_LBRACK] = ACTIONS(5148), - [anon_sym_COMMA] = ACTIONS(5148), - [anon_sym_LPAREN] = ACTIONS(5148), - [anon_sym_LT] = ACTIONS(5150), - [anon_sym_GT] = ACTIONS(5150), - [anon_sym_where] = ACTIONS(5148), - [anon_sym_QMARK] = ACTIONS(5150), - [anon_sym_BANG] = ACTIONS(5150), - [anon_sym_PLUS_PLUS] = ACTIONS(5148), - [anon_sym_DASH_DASH] = ACTIONS(5148), - [anon_sym_PLUS] = ACTIONS(5150), - [anon_sym_DASH] = ACTIONS(5150), - [anon_sym_STAR] = ACTIONS(5148), - [anon_sym_SLASH] = ACTIONS(5150), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_CARET] = ACTIONS(5148), - [anon_sym_PIPE] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5150), - [anon_sym_LT_LT] = ACTIONS(5148), - [anon_sym_GT_GT] = ACTIONS(5150), - [anon_sym_GT_GT_GT] = ACTIONS(5148), - [anon_sym_EQ_EQ] = ACTIONS(5148), - [anon_sym_BANG_EQ] = ACTIONS(5148), - [anon_sym_GT_EQ] = ACTIONS(5148), - [anon_sym_LT_EQ] = ACTIONS(5148), - [anon_sym_DOT] = ACTIONS(5150), - [anon_sym_switch] = ACTIONS(5148), - [anon_sym_DOT_DOT] = ACTIONS(5148), - [anon_sym_and] = ACTIONS(5148), - [anon_sym_or] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5148), - [anon_sym_PIPE_PIPE] = ACTIONS(5148), - [anon_sym_QMARK_QMARK] = ACTIONS(5148), - [anon_sym_from] = ACTIONS(5148), - [anon_sym_into] = ACTIONS(5148), - [anon_sym_join] = ACTIONS(5148), - [anon_sym_let] = ACTIONS(5148), - [anon_sym_orderby] = ACTIONS(5148), - [anon_sym_ascending] = ACTIONS(5148), - [anon_sym_descending] = ACTIONS(5148), - [anon_sym_group] = ACTIONS(5148), - [anon_sym_select] = ACTIONS(5148), - [anon_sym_as] = ACTIONS(5150), - [anon_sym_is] = ACTIONS(5148), - [anon_sym_DASH_GT] = ACTIONS(5148), - [anon_sym_with] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_where] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4977), + [anon_sym_BANG] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4975), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4975), + [anon_sym_CARET] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4975), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_GT_GT_GT] = ACTIONS(4975), + [anon_sym_EQ_EQ] = ACTIONS(4975), + [anon_sym_BANG_EQ] = ACTIONS(4975), + [anon_sym_GT_EQ] = ACTIONS(4975), + [anon_sym_LT_EQ] = ACTIONS(4975), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_switch] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4975), + [anon_sym_and] = ACTIONS(4975), + [anon_sym_or] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4975), + [anon_sym_PIPE_PIPE] = ACTIONS(4975), + [anon_sym_QMARK_QMARK] = ACTIONS(4975), + [anon_sym_from] = ACTIONS(4975), + [anon_sym_into] = ACTIONS(4975), + [anon_sym_join] = ACTIONS(4975), + [anon_sym_let] = ACTIONS(4975), + [anon_sym_orderby] = ACTIONS(4975), + [anon_sym_ascending] = ACTIONS(4975), + [anon_sym_descending] = ACTIONS(4975), + [anon_sym_group] = ACTIONS(4975), + [anon_sym_select] = ACTIONS(4975), + [anon_sym_as] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_DASH_GT] = ACTIONS(4975), + [anon_sym_with] = ACTIONS(4975), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525183,24 +525218,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3736] = { - [sym__name] = STATE(2865), - [sym_alias_qualified_name] = STATE(2831), - [sym__simple_name] = STATE(2831), - [sym_qualified_name] = STATE(2831), - [sym_generic_name] = STATE(2790), - [sym_type] = STATE(2823), - [sym_implicit_type] = STATE(2688), - [sym_array_type] = STATE(2810), - [sym__array_base_type] = STATE(7272), - [sym_nullable_type] = STATE(2828), - [sym_pointer_type] = STATE(2828), - [sym__pointer_base_type] = STATE(7745), - [sym_function_pointer_type] = STATE(2828), - [sym_ref_type] = STATE(2688), - [sym_scoped_type] = STATE(2688), - [sym_tuple_type] = STATE(2832), - [sym_identifier] = STATE(2612), - [sym__reserved_identifier] = STATE(2650), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3736), [sym_preproc_endregion] = STATE(3736), [sym_preproc_line] = STATE(3736), @@ -525210,101 +525245,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3736), [sym_preproc_define] = STATE(3736), [sym_preproc_undef] = STATE(3736), - [sym__identifier_token] = ACTIONS(6063), - [anon_sym_alias] = ACTIONS(6065), - [anon_sym_global] = ACTIONS(6065), - [anon_sym_LPAREN] = ACTIONS(6067), - [anon_sym_ref] = ACTIONS(3650), - [anon_sym_delegate] = ACTIONS(6069), - [anon_sym_file] = ACTIONS(6065), - [anon_sym_readonly] = ACTIONS(2925), - [anon_sym_where] = ACTIONS(6065), - [anon_sym_notnull] = ACTIONS(6065), - [anon_sym_unmanaged] = ACTIONS(6065), - [anon_sym_scoped] = ACTIONS(6071), - [anon_sym_var] = ACTIONS(6073), - [sym_predefined_type] = ACTIONS(6075), - [anon_sym_yield] = ACTIONS(6065), - [anon_sym_when] = ACTIONS(6065), - [anon_sym_from] = ACTIONS(6065), - [anon_sym_into] = ACTIONS(6065), - [anon_sym_join] = ACTIONS(6065), - [anon_sym_on] = ACTIONS(6065), - [anon_sym_equals] = ACTIONS(6065), - [anon_sym_let] = ACTIONS(6065), - [anon_sym_orderby] = ACTIONS(6065), - [anon_sym_ascending] = ACTIONS(6065), - [anon_sym_descending] = ACTIONS(6065), - [anon_sym_group] = ACTIONS(6065), - [anon_sym_by] = ACTIONS(6065), - [anon_sym_select] = ACTIONS(6065), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3737] = { - [sym_preproc_region] = STATE(3737), - [sym_preproc_endregion] = STATE(3737), - [sym_preproc_line] = STATE(3737), - [sym_preproc_pragma] = STATE(3737), - [sym_preproc_nullable] = STATE(3737), - [sym_preproc_error] = STATE(3737), - [sym_preproc_warning] = STATE(3737), - [sym_preproc_define] = STATE(3737), - [sym_preproc_undef] = STATE(3737), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5031), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_GT_GT_GT] = ACTIONS(5031), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_switch] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_and] = ACTIONS(5031), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_QMARK_QMARK] = ACTIONS(5031), - [anon_sym_from] = ACTIONS(5031), - [anon_sym_into] = ACTIONS(5031), - [anon_sym_join] = ACTIONS(5031), - [anon_sym_let] = ACTIONS(5031), - [anon_sym_orderby] = ACTIONS(5031), - [anon_sym_ascending] = ACTIONS(5031), - [anon_sym_descending] = ACTIONS(5031), - [anon_sym_group] = ACTIONS(5031), - [anon_sym_select] = ACTIONS(5031), - [anon_sym_as] = ACTIONS(5033), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_DASH_GT] = ACTIONS(5031), - [anon_sym_with] = ACTIONS(5031), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(4259), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_readonly] = ACTIONS(6065), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5945), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3737] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), + [sym_preproc_region] = STATE(3737), + [sym_preproc_endregion] = STATE(3737), + [sym_preproc_line] = STATE(3737), + [sym_preproc_pragma] = STATE(3737), + [sym_preproc_nullable] = STATE(3737), + [sym_preproc_error] = STATE(3737), + [sym_preproc_warning] = STATE(3737), + [sym_preproc_define] = STATE(3737), + [sym_preproc_undef] = STATE(3737), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_into] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_is] = ACTIONS(1229), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(1229), + [aux_sym_preproc_if_token3] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525317,8 +525352,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3738] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3738), [sym_preproc_endregion] = STATE(3738), [sym_preproc_line] = STATE(3738), @@ -525328,50 +525379,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3738), [sym_preproc_define] = STATE(3738), [sym_preproc_undef] = STATE(3738), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(6041), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5520), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525384,6 +525419,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3739] = { + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3739), [sym_preproc_endregion] = STATE(3739), [sym_preproc_line] = STATE(3739), @@ -525393,52 +525437,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3739), [sym_preproc_define] = STATE(3739), [sym_preproc_undef] = STATE(3739), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_COMMA] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_GT] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5130), - [anon_sym_QMARK] = ACTIONS(5132), - [anon_sym_BANG] = ACTIONS(5132), - [anon_sym_PLUS_PLUS] = ACTIONS(5130), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_PLUS] = ACTIONS(5132), - [anon_sym_DASH] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5130), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5130), - [anon_sym_CARET] = ACTIONS(5130), - [anon_sym_PIPE] = ACTIONS(5132), - [anon_sym_AMP] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(5130), - [anon_sym_GT_GT] = ACTIONS(5132), - [anon_sym_GT_GT_GT] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5130), - [anon_sym_BANG_EQ] = ACTIONS(5130), - [anon_sym_GT_EQ] = ACTIONS(5130), - [anon_sym_LT_EQ] = ACTIONS(5130), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_switch] = ACTIONS(5130), - [anon_sym_DOT_DOT] = ACTIONS(5130), - [anon_sym_and] = ACTIONS(5130), - [anon_sym_or] = ACTIONS(5132), - [anon_sym_AMP_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5130), - [anon_sym_QMARK_QMARK] = ACTIONS(5130), - [anon_sym_from] = ACTIONS(5130), - [anon_sym_into] = ACTIONS(5130), - [anon_sym_join] = ACTIONS(5130), - [anon_sym_let] = ACTIONS(5130), - [anon_sym_orderby] = ACTIONS(5130), - [anon_sym_ascending] = ACTIONS(5130), - [anon_sym_descending] = ACTIONS(5130), - [anon_sym_group] = ACTIONS(5130), - [anon_sym_select] = ACTIONS(5130), - [anon_sym_as] = ACTIONS(5132), - [anon_sym_is] = ACTIONS(5130), - [anon_sym_DASH_GT] = ACTIONS(5130), - [anon_sym_with] = ACTIONS(5130), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3615), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_file] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_where] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3615), + [anon_sym_unmanaged] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3615), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_when] = ACTIONS(3615), + [sym_discard] = ACTIONS(3461), + [anon_sym_and] = ACTIONS(3461), + [anon_sym_or] = ACTIONS(3461), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_into] = ACTIONS(3615), + [anon_sym_join] = ACTIONS(3615), + [anon_sym_on] = ACTIONS(3615), + [anon_sym_equals] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_orderby] = ACTIONS(3615), + [anon_sym_ascending] = ACTIONS(3615), + [anon_sym_descending] = ACTIONS(3615), + [anon_sym_group] = ACTIONS(3615), + [anon_sym_by] = ACTIONS(3615), + [anon_sym_select] = ACTIONS(3615), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525451,24 +525486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3740] = { - [sym__name] = STATE(6337), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(6309), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3740), [sym_preproc_endregion] = STATE(3740), [sym_preproc_line] = STATE(3740), @@ -525478,34 +525495,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3740), [sym_preproc_define] = STATE(3740), [sym_preproc_undef] = STATE(3740), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(6085), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6087), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6089), - [anon_sym_var] = ACTIONS(6091), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(5298), + [anon_sym_extern] = ACTIONS(5298), + [anon_sym_alias] = ACTIONS(5298), + [anon_sym_global] = ACTIONS(5298), + [anon_sym_unsafe] = ACTIONS(5298), + [anon_sym_static] = ACTIONS(5298), + [anon_sym_LPAREN] = ACTIONS(5300), + [anon_sym_ref] = ACTIONS(5298), + [anon_sym_delegate] = ACTIONS(5298), + [anon_sym_abstract] = ACTIONS(5298), + [anon_sym_async] = ACTIONS(5298), + [anon_sym_const] = ACTIONS(5298), + [anon_sym_file] = ACTIONS(5298), + [anon_sym_fixed] = ACTIONS(5298), + [anon_sym_internal] = ACTIONS(5298), + [anon_sym_new] = ACTIONS(5298), + [anon_sym_override] = ACTIONS(5298), + [anon_sym_partial] = ACTIONS(5298), + [anon_sym_private] = ACTIONS(5298), + [anon_sym_protected] = ACTIONS(5298), + [anon_sym_public] = ACTIONS(5298), + [anon_sym_readonly] = ACTIONS(5298), + [anon_sym_required] = ACTIONS(5298), + [anon_sym_sealed] = ACTIONS(5298), + [anon_sym_virtual] = ACTIONS(5298), + [anon_sym_volatile] = ACTIONS(5298), + [anon_sym_where] = ACTIONS(5298), + [anon_sym_notnull] = ACTIONS(5298), + [anon_sym_unmanaged] = ACTIONS(5298), + [anon_sym_scoped] = ACTIONS(5298), + [anon_sym_var] = ACTIONS(5298), + [sym_predefined_type] = ACTIONS(5298), + [anon_sym_yield] = ACTIONS(5298), + [anon_sym_when] = ACTIONS(5298), + [anon_sym_from] = ACTIONS(5298), + [anon_sym_into] = ACTIONS(5298), + [anon_sym_join] = ACTIONS(5298), + [anon_sym_on] = ACTIONS(5298), + [anon_sym_equals] = ACTIONS(5298), + [anon_sym_let] = ACTIONS(5298), + [anon_sym_orderby] = ACTIONS(5298), + [anon_sym_ascending] = ACTIONS(5298), + [anon_sym_descending] = ACTIONS(5298), + [anon_sym_group] = ACTIONS(5298), + [anon_sym_by] = ACTIONS(5298), + [anon_sym_select] = ACTIONS(5298), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525518,25 +525553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3741] = { - [sym_variable_declaration] = STATE(7345), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5973), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3741), [sym_preproc_endregion] = STATE(3741), [sym_preproc_line] = STATE(3741), @@ -525546,33 +525564,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3741), [sym_preproc_define] = STATE(3741), [sym_preproc_undef] = STATE(3741), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525585,24 +525620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3742] = { - [sym__name] = STATE(2456), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(2408), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3742), [sym_preproc_endregion] = STATE(3742), [sym_preproc_line] = STATE(3742), @@ -525612,34 +525631,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3742), [sym_preproc_define] = STATE(3742), [sym_preproc_undef] = STATE(3742), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_ref] = ACTIONS(4112), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_readonly] = ACTIONS(6095), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(5935), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525652,24 +525687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3743] = { - [sym__name] = STATE(4447), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_type] = STATE(4465), - [sym_implicit_type] = STATE(4446), - [sym_array_type] = STATE(4523), - [sym__array_base_type] = STATE(7343), - [sym_nullable_type] = STATE(4453), - [sym_pointer_type] = STATE(4453), - [sym__pointer_base_type] = STATE(7426), - [sym_function_pointer_type] = STATE(4453), - [sym_ref_type] = STATE(4446), - [sym_scoped_type] = STATE(4446), - [sym_tuple_type] = STATE(4513), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3743), [sym_preproc_endregion] = STATE(3743), [sym_preproc_line] = STATE(3743), @@ -525679,34 +525698,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3743), [sym_preproc_define] = STATE(3743), [sym_preproc_undef] = STATE(3743), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_ref] = ACTIONS(4039), - [anon_sym_delegate] = ACTIONS(5848), - [anon_sym_file] = ACTIONS(4037), - [anon_sym_readonly] = ACTIONS(6099), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), - [anon_sym_scoped] = ACTIONS(5850), - [anon_sym_var] = ACTIONS(5852), - [sym_predefined_type] = ACTIONS(5854), - [anon_sym_yield] = ACTIONS(4037), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5682), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525719,8 +525754,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3744] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6167), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3744), [sym_preproc_endregion] = STATE(3744), [sym_preproc_line] = STATE(3744), @@ -525730,50 +525781,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3744), [sym_preproc_define] = STATE(3744), [sym_preproc_undef] = STATE(3744), - [anon_sym_SEMI] = ACTIONS(5891), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5891), - [anon_sym_RBRACK] = ACTIONS(5891), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5891), - [anon_sym_RBRACE] = ACTIONS(5891), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5891), - [anon_sym_or] = ACTIONS(5891), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5891), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5891), - [aux_sym_preproc_else_token1] = ACTIONS(5891), - [aux_sym_preproc_elif_token1] = ACTIONS(5891), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(5640), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525786,6 +525821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3745] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3745), [sym_preproc_endregion] = STATE(3745), [sym_preproc_line] = STATE(3745), @@ -525795,52 +525832,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3745), [sym_preproc_define] = STATE(3745), [sym_preproc_undef] = STATE(3745), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_where] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_GT_GT_GT] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_switch] = ACTIONS(5099), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_or] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_QMARK_QMARK] = ACTIONS(5099), - [anon_sym_from] = ACTIONS(5099), - [anon_sym_into] = ACTIONS(5099), - [anon_sym_join] = ACTIONS(5099), - [anon_sym_let] = ACTIONS(5099), - [anon_sym_orderby] = ACTIONS(5099), - [anon_sym_ascending] = ACTIONS(5099), - [anon_sym_descending] = ACTIONS(5099), - [anon_sym_group] = ACTIONS(5099), - [anon_sym_select] = ACTIONS(5099), - [anon_sym_as] = ACTIONS(5101), - [anon_sym_is] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_with] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5684), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525862,52 +525897,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3746), [sym_preproc_define] = STATE(3746), [sym_preproc_undef] = STATE(3746), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4985), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4985), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4983), - [anon_sym_GT_GT] = ACTIONS(4985), - [anon_sym_GT_GT_GT] = ACTIONS(4983), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_GT_EQ] = ACTIONS(4983), - [anon_sym_LT_EQ] = ACTIONS(4983), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_switch] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4983), - [anon_sym_and] = ACTIONS(4983), - [anon_sym_or] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_QMARK_QMARK] = ACTIONS(4983), - [anon_sym_from] = ACTIONS(4983), - [anon_sym_into] = ACTIONS(4983), - [anon_sym_join] = ACTIONS(4983), - [anon_sym_let] = ACTIONS(4983), - [anon_sym_orderby] = ACTIONS(4983), - [anon_sym_ascending] = ACTIONS(4983), - [anon_sym_descending] = ACTIONS(4983), - [anon_sym_group] = ACTIONS(4983), - [anon_sym_select] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(4983), - [anon_sym_with] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_and] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2983), + [anon_sym_into] = ACTIONS(2983), + [anon_sym_join] = ACTIONS(2983), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_orderby] = ACTIONS(2983), + [anon_sym_ascending] = ACTIONS(2983), + [anon_sym_descending] = ACTIONS(2983), + [anon_sym_group] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_DASH_GT] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525920,24 +525955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3747] = { - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3747), [sym_preproc_endregion] = STATE(3747), [sym_preproc_line] = STATE(3747), @@ -525947,34 +525964,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3747), [sym_preproc_define] = STATE(3747), [sym_preproc_undef] = STATE(3747), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(4079), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6143), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5901), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3167), + [anon_sym_and] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_into] = ACTIONS(3167), + [anon_sym_join] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_orderby] = ACTIONS(3167), + [anon_sym_ascending] = ACTIONS(3167), + [anon_sym_descending] = ACTIONS(3167), + [anon_sym_group] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525987,24 +526022,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3748] = { - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2958), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(2986), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3748), [sym_preproc_endregion] = STATE(3748), [sym_preproc_line] = STATE(3748), @@ -526014,34 +526049,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3748), [sym_preproc_define] = STATE(3748), [sym_preproc_undef] = STATE(3748), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(6145), - [anon_sym_ref] = ACTIONS(3846), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_readonly] = ACTIONS(6147), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5919), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(4265), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_readonly] = ACTIONS(6081), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5826), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526054,24 +526089,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3749] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(5785), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(5462), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3749), [sym_preproc_endregion] = STATE(3749), [sym_preproc_line] = STATE(3749), @@ -526085,14 +526120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3682), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2891), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_scoped] = ACTIONS(6083), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), @@ -526121,8 +526156,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3750] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3750), [sym_preproc_endregion] = STATE(3750), [sym_preproc_line] = STATE(3750), @@ -526132,50 +526183,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3750), [sym_preproc_define] = STATE(3750), [sym_preproc_undef] = STATE(3750), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(4081), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6087), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5834), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526188,8 +526223,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3751] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_variable_declaration] = STATE(7374), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5969), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3751), [sym_preproc_endregion] = STATE(3751), [sym_preproc_line] = STATE(3751), @@ -526199,50 +526251,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3751), [sym_preproc_define] = STATE(3751), [sym_preproc_undef] = STATE(3751), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526255,8 +526290,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3752] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3752), [sym_preproc_endregion] = STATE(3752), [sym_preproc_line] = STATE(3752), @@ -526266,50 +526317,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3752), [sym_preproc_define] = STATE(3752), [sym_preproc_undef] = STATE(3752), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3660), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(6089), + [anon_sym_var] = ACTIONS(6091), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526322,8 +526357,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3753] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4497), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_type] = STATE(4498), + [sym_implicit_type] = STATE(4407), + [sym_array_type] = STATE(4484), + [sym__array_base_type] = STATE(7286), + [sym_nullable_type] = STATE(4519), + [sym_pointer_type] = STATE(4519), + [sym__pointer_base_type] = STATE(7680), + [sym_function_pointer_type] = STATE(4519), + [sym_ref_type] = STATE(4407), + [sym_scoped_type] = STATE(4407), + [sym_tuple_type] = STATE(4520), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), [sym_preproc_region] = STATE(3753), [sym_preproc_endregion] = STATE(3753), [sym_preproc_line] = STATE(3753), @@ -526333,50 +526384,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3753), [sym_preproc_define] = STATE(3753), [sym_preproc_undef] = STATE(3753), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(6093), + [anon_sym_ref] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(5732), + [anon_sym_file] = ACTIONS(4011), + [anon_sym_readonly] = ACTIONS(6095), + [anon_sym_where] = ACTIONS(4011), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), + [anon_sym_scoped] = ACTIONS(5734), + [anon_sym_var] = ACTIONS(5736), + [sym_predefined_type] = ACTIONS(5738), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_when] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4011), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526389,24 +526424,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3754] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7232), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3754), [sym_preproc_endregion] = STATE(3754), [sym_preproc_line] = STATE(3754), @@ -526420,15 +526456,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5551), + [anon_sym_ref] = ACTIONS(3618), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6165), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5559), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -526456,8 +526491,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3755] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7154), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3755), [sym_preproc_endregion] = STATE(3755), [sym_preproc_line] = STATE(3755), @@ -526467,50 +526519,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3755), [sym_preproc_define] = STATE(3755), [sym_preproc_undef] = STATE(3755), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526523,8 +526558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3756] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3756), [sym_preproc_endregion] = STATE(3756), [sym_preproc_line] = STATE(3756), @@ -526534,50 +526567,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3756), [sym_preproc_define] = STATE(3756), [sym_preproc_undef] = STATE(3756), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_where] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_BANG] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5218), + [anon_sym_DASH_DASH] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_CARET] = ACTIONS(5218), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5218), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_GT_GT_GT] = ACTIONS(5218), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_GT_EQ] = ACTIONS(5218), + [anon_sym_LT_EQ] = ACTIONS(5218), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_switch] = ACTIONS(5218), + [anon_sym_DOT_DOT] = ACTIONS(5218), + [anon_sym_and] = ACTIONS(5218), + [anon_sym_or] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5218), + [anon_sym_PIPE_PIPE] = ACTIONS(5218), + [anon_sym_QMARK_QMARK] = ACTIONS(5218), + [anon_sym_from] = ACTIONS(5218), + [anon_sym_into] = ACTIONS(5218), + [anon_sym_join] = ACTIONS(5218), + [anon_sym_let] = ACTIONS(5218), + [anon_sym_orderby] = ACTIONS(5218), + [anon_sym_ascending] = ACTIONS(5218), + [anon_sym_descending] = ACTIONS(5218), + [anon_sym_group] = ACTIONS(5218), + [anon_sym_select] = ACTIONS(5218), + [anon_sym_as] = ACTIONS(5220), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_DASH_GT] = ACTIONS(5218), + [anon_sym_with] = ACTIONS(5218), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526590,24 +526625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3757] = { - [sym__name] = STATE(5789), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(5487), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3757), [sym_preproc_endregion] = STATE(3757), [sym_preproc_line] = STATE(3757), @@ -526617,34 +526634,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3757), [sym_preproc_define] = STATE(3757), [sym_preproc_undef] = STATE(3757), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3678), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2907), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6171), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_QMARK] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_AMP] = ACTIONS(5021), + [anon_sym_LT_LT] = ACTIONS(5019), + [anon_sym_GT_GT] = ACTIONS(5021), + [anon_sym_GT_GT_GT] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5021), + [anon_sym_switch] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_and] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5021), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_QMARK_QMARK] = ACTIONS(5019), + [anon_sym_from] = ACTIONS(5019), + [anon_sym_into] = ACTIONS(5019), + [anon_sym_join] = ACTIONS(5019), + [anon_sym_let] = ACTIONS(5019), + [anon_sym_orderby] = ACTIONS(5019), + [anon_sym_ascending] = ACTIONS(5019), + [anon_sym_descending] = ACTIONS(5019), + [anon_sym_group] = ACTIONS(5019), + [anon_sym_select] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5021), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526657,8 +526692,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3758] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3758), [sym_preproc_endregion] = STATE(3758), [sym_preproc_line] = STATE(3758), @@ -526668,102 +526719,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3758), [sym_preproc_define] = STATE(3758), [sym_preproc_undef] = STATE(3758), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3759] = { - [sym_variable_declaration] = STATE(7649), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5973), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3759), - [sym_preproc_endregion] = STATE(3759), - [sym_preproc_line] = STATE(3759), - [sym_preproc_pragma] = STATE(3759), - [sym_preproc_nullable] = STATE(3759), - [sym_preproc_error] = STATE(3759), - [sym_preproc_warning] = STATE(3759), - [sym_preproc_define] = STATE(3759), - [sym_preproc_undef] = STATE(3759), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(5550), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6097), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), + [anon_sym_scoped] = ACTIONS(5558), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -526790,6 +526758,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3759] = { + [sym_preproc_region] = STATE(3759), + [sym_preproc_endregion] = STATE(3759), + [sym_preproc_line] = STATE(3759), + [sym_preproc_pragma] = STATE(3759), + [sym_preproc_nullable] = STATE(3759), + [sym_preproc_error] = STATE(3759), + [sym_preproc_warning] = STATE(3759), + [sym_preproc_define] = STATE(3759), + [sym_preproc_undef] = STATE(3759), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5459), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3760] = { [sym_preproc_region] = STATE(3760), [sym_preproc_endregion] = STATE(3760), @@ -526800,52 +526835,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3760), [sym_preproc_define] = STATE(3760), [sym_preproc_undef] = STATE(3760), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_LT_LT] = ACTIONS(4987), - [anon_sym_GT_GT] = ACTIONS(4989), - [anon_sym_GT_GT_GT] = ACTIONS(4987), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_GT_EQ] = ACTIONS(4987), - [anon_sym_LT_EQ] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_switch] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_and] = ACTIONS(4987), - [anon_sym_or] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4987), - [anon_sym_PIPE_PIPE] = ACTIONS(4987), - [anon_sym_QMARK_QMARK] = ACTIONS(4987), - [anon_sym_from] = ACTIONS(4987), - [anon_sym_into] = ACTIONS(4987), - [anon_sym_join] = ACTIONS(4987), - [anon_sym_let] = ACTIONS(4987), - [anon_sym_orderby] = ACTIONS(4987), - [anon_sym_ascending] = ACTIONS(4987), - [anon_sym_descending] = ACTIONS(4987), - [anon_sym_group] = ACTIONS(4987), - [anon_sym_select] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4987), - [anon_sym_with] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_QMARK] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5099), + [anon_sym_AMP] = ACTIONS(5099), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5099), + [anon_sym_GT_GT_GT] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_switch] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_and] = ACTIONS(5097), + [anon_sym_or] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_QMARK_QMARK] = ACTIONS(5097), + [anon_sym_from] = ACTIONS(5097), + [anon_sym_into] = ACTIONS(5097), + [anon_sym_join] = ACTIONS(5097), + [anon_sym_let] = ACTIONS(5097), + [anon_sym_orderby] = ACTIONS(5097), + [anon_sym_ascending] = ACTIONS(5097), + [anon_sym_descending] = ACTIONS(5097), + [anon_sym_group] = ACTIONS(5097), + [anon_sym_select] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5097), + [anon_sym_with] = ACTIONS(5097), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526858,6 +526893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3761] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3761), [sym_preproc_endregion] = STATE(3761), [sym_preproc_line] = STATE(3761), @@ -526867,52 +526904,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3761), [sym_preproc_define] = STATE(3761), [sym_preproc_undef] = STATE(3761), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_LPAREN] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_where] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(5234), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_CARET] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5232), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_GT_GT_GT] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5234), - [anon_sym_switch] = ACTIONS(5232), - [anon_sym_DOT_DOT] = ACTIONS(5232), - [anon_sym_and] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_QMARK_QMARK] = ACTIONS(5232), - [anon_sym_from] = ACTIONS(5232), - [anon_sym_into] = ACTIONS(5232), - [anon_sym_join] = ACTIONS(5232), - [anon_sym_let] = ACTIONS(5232), - [anon_sym_orderby] = ACTIONS(5232), - [anon_sym_ascending] = ACTIONS(5232), - [anon_sym_descending] = ACTIONS(5232), - [anon_sym_group] = ACTIONS(5232), - [anon_sym_select] = ACTIONS(5232), - [anon_sym_as] = ACTIONS(5234), - [anon_sym_is] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_with] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5794), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5794), + [anon_sym_into] = ACTIONS(5794), + [anon_sym_join] = ACTIONS(5794), + [anon_sym_let] = ACTIONS(5794), + [anon_sym_orderby] = ACTIONS(5794), + [anon_sym_ascending] = ACTIONS(5794), + [anon_sym_descending] = ACTIONS(5794), + [anon_sym_group] = ACTIONS(5794), + [anon_sym_select] = ACTIONS(5794), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526925,24 +526960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3762] = { - [sym__name] = STATE(4447), - [sym_alias_qualified_name] = STATE(4481), - [sym__simple_name] = STATE(4481), - [sym_qualified_name] = STATE(4481), - [sym_generic_name] = STATE(4497), - [sym_type] = STATE(4465), - [sym_implicit_type] = STATE(4446), - [sym_array_type] = STATE(4523), - [sym__array_base_type] = STATE(7343), - [sym_nullable_type] = STATE(4453), - [sym_pointer_type] = STATE(4453), - [sym__pointer_base_type] = STATE(7426), - [sym_function_pointer_type] = STATE(4453), - [sym_ref_type] = STATE(4446), - [sym_scoped_type] = STATE(4446), - [sym_tuple_type] = STATE(4513), - [sym_identifier] = STATE(4290), - [sym__reserved_identifier] = STATE(4343), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3762), [sym_preproc_endregion] = STATE(3762), [sym_preproc_line] = STATE(3762), @@ -526952,34 +526971,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3762), [sym_preproc_define] = STATE(3762), [sym_preproc_undef] = STATE(3762), - [sym__identifier_token] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4037), - [anon_sym_global] = ACTIONS(4037), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_ref] = ACTIONS(4047), - [anon_sym_delegate] = ACTIONS(5848), - [anon_sym_file] = ACTIONS(4037), - [anon_sym_readonly] = ACTIONS(6177), - [anon_sym_where] = ACTIONS(4037), - [anon_sym_notnull] = ACTIONS(4037), - [anon_sym_unmanaged] = ACTIONS(4037), - [anon_sym_scoped] = ACTIONS(5889), - [anon_sym_var] = ACTIONS(5852), - [sym_predefined_type] = ACTIONS(5854), - [anon_sym_yield] = ACTIONS(4037), - [anon_sym_when] = ACTIONS(4037), - [anon_sym_from] = ACTIONS(4037), - [anon_sym_into] = ACTIONS(4037), - [anon_sym_join] = ACTIONS(4037), - [anon_sym_on] = ACTIONS(4037), - [anon_sym_equals] = ACTIONS(4037), - [anon_sym_let] = ACTIONS(4037), - [anon_sym_orderby] = ACTIONS(4037), - [anon_sym_ascending] = ACTIONS(4037), - [anon_sym_descending] = ACTIONS(4037), - [anon_sym_group] = ACTIONS(4037), - [anon_sym_by] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_GT_GT_GT] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_QMARK_QMARK] = ACTIONS(1229), + [anon_sym_from] = ACTIONS(1229), + [anon_sym_into] = ACTIONS(1229), + [anon_sym_join] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_orderby] = ACTIONS(1229), + [anon_sym_ascending] = ACTIONS(1229), + [anon_sym_descending] = ACTIONS(1229), + [anon_sym_group] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_is] = ACTIONS(1229), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(1229), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526992,25 +527027,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3763] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7236), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4107), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2961), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(2979), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3787), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3763), [sym_preproc_endregion] = STATE(3763), [sym_preproc_line] = STATE(3763), @@ -527020,33 +527054,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3763), [sym_preproc_define] = STATE(3763), [sym_preproc_undef] = STATE(3763), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_ref] = ACTIONS(4231), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(6123), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5864), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527059,8 +527094,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3764] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3764), [sym_preproc_endregion] = STATE(3764), [sym_preproc_line] = STATE(3764), @@ -527070,50 +527103,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3764), [sym_preproc_define] = STATE(3764), [sym_preproc_undef] = STATE(3764), - [anon_sym_SEMI] = ACTIONS(5769), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_RBRACK] = ACTIONS(5769), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5769), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5769), - [anon_sym_or] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5769), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5769), - [aux_sym_preproc_else_token1] = ACTIONS(5769), - [aux_sym_preproc_elif_token1] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_QMARK] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_AMP] = ACTIONS(5115), + [anon_sym_LT_LT] = ACTIONS(5113), + [anon_sym_GT_GT] = ACTIONS(5115), + [anon_sym_GT_GT_GT] = ACTIONS(5113), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_GT_EQ] = ACTIONS(5113), + [anon_sym_LT_EQ] = ACTIONS(5113), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_switch] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_and] = ACTIONS(5113), + [anon_sym_or] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5113), + [anon_sym_PIPE_PIPE] = ACTIONS(5113), + [anon_sym_QMARK_QMARK] = ACTIONS(5113), + [anon_sym_from] = ACTIONS(5113), + [anon_sym_into] = ACTIONS(5113), + [anon_sym_join] = ACTIONS(5113), + [anon_sym_let] = ACTIONS(5113), + [anon_sym_orderby] = ACTIONS(5113), + [anon_sym_ascending] = ACTIONS(5113), + [anon_sym_descending] = ACTIONS(5113), + [anon_sym_group] = ACTIONS(5113), + [anon_sym_select] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5115), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5113), + [anon_sym_with] = ACTIONS(5113), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527126,24 +527161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3765] = { - [sym__name] = STATE(2456), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(2408), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3765), [sym_preproc_endregion] = STATE(3765), [sym_preproc_line] = STATE(3765), @@ -527153,34 +527172,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3765), [sym_preproc_define] = STATE(3765), [sym_preproc_undef] = STATE(3765), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_ref] = ACTIONS(3610), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_readonly] = ACTIONS(2887), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(6179), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_RBRACK] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5886), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5886), + [anon_sym_or] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5886), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5886), + [aux_sym_preproc_else_token1] = ACTIONS(5886), + [aux_sym_preproc_elif_token1] = ACTIONS(5886), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527202,52 +527237,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3766), [sym_preproc_define] = STATE(3766), [sym_preproc_undef] = STATE(3766), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5188), - [anon_sym_LT] = ACTIONS(5190), - [anon_sym_GT] = ACTIONS(5190), - [anon_sym_where] = ACTIONS(5188), - [anon_sym_QMARK] = ACTIONS(5190), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_PLUS_PLUS] = ACTIONS(5188), - [anon_sym_DASH_DASH] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5190), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_CARET] = ACTIONS(5188), - [anon_sym_PIPE] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LT_LT] = ACTIONS(5188), - [anon_sym_GT_GT] = ACTIONS(5190), - [anon_sym_GT_GT_GT] = ACTIONS(5188), - [anon_sym_EQ_EQ] = ACTIONS(5188), - [anon_sym_BANG_EQ] = ACTIONS(5188), - [anon_sym_GT_EQ] = ACTIONS(5188), - [anon_sym_LT_EQ] = ACTIONS(5188), - [anon_sym_DOT] = ACTIONS(5190), - [anon_sym_switch] = ACTIONS(5188), - [anon_sym_DOT_DOT] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_QMARK_QMARK] = ACTIONS(5188), - [anon_sym_from] = ACTIONS(5188), - [anon_sym_into] = ACTIONS(5188), - [anon_sym_join] = ACTIONS(5188), - [anon_sym_let] = ACTIONS(5188), - [anon_sym_orderby] = ACTIONS(5188), - [anon_sym_ascending] = ACTIONS(5188), - [anon_sym_descending] = ACTIONS(5188), - [anon_sym_group] = ACTIONS(5188), - [anon_sym_select] = ACTIONS(5188), - [anon_sym_as] = ACTIONS(5190), - [anon_sym_is] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_with] = ACTIONS(5188), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4293), + [anon_sym_where] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_PIPE] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_LT] = ACTIONS(4291), + [anon_sym_GT_GT] = ACTIONS(4293), + [anon_sym_GT_GT_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_switch] = ACTIONS(4291), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_and] = ACTIONS(4291), + [anon_sym_or] = ACTIONS(4293), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_PIPE_PIPE] = ACTIONS(4291), + [anon_sym_QMARK_QMARK] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4291), + [anon_sym_into] = ACTIONS(4291), + [anon_sym_join] = ACTIONS(4291), + [anon_sym_let] = ACTIONS(4291), + [anon_sym_orderby] = ACTIONS(4291), + [anon_sym_ascending] = ACTIONS(4291), + [anon_sym_descending] = ACTIONS(4291), + [anon_sym_group] = ACTIONS(4291), + [anon_sym_select] = ACTIONS(4291), + [anon_sym_as] = ACTIONS(4293), + [anon_sym_is] = ACTIONS(4291), + [anon_sym_DASH_GT] = ACTIONS(4291), + [anon_sym_with] = ACTIONS(4291), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527269,52 +527304,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3767), [sym_preproc_define] = STATE(3767), [sym_preproc_undef] = STATE(3767), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_COMMA] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5138), - [anon_sym_GT] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5136), - [anon_sym_QMARK] = ACTIONS(5138), - [anon_sym_BANG] = ACTIONS(5138), - [anon_sym_PLUS_PLUS] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_AMP] = ACTIONS(5138), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5138), - [anon_sym_GT_GT_GT] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5136), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_DOT] = ACTIONS(5138), - [anon_sym_switch] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_or] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_QMARK_QMARK] = ACTIONS(5136), - [anon_sym_from] = ACTIONS(5136), - [anon_sym_into] = ACTIONS(5136), - [anon_sym_join] = ACTIONS(5136), - [anon_sym_let] = ACTIONS(5136), - [anon_sym_orderby] = ACTIONS(5136), - [anon_sym_ascending] = ACTIONS(5136), - [anon_sym_descending] = ACTIONS(5136), - [anon_sym_group] = ACTIONS(5136), - [anon_sym_select] = ACTIONS(5136), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_is] = ACTIONS(5136), - [anon_sym_DASH_GT] = ACTIONS(5136), - [anon_sym_with] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_QMARK] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_CARET] = ACTIONS(5117), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(5119), + [anon_sym_LT_LT] = ACTIONS(5117), + [anon_sym_GT_GT] = ACTIONS(5119), + [anon_sym_GT_GT_GT] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_switch] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_and] = ACTIONS(5117), + [anon_sym_or] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_QMARK_QMARK] = ACTIONS(5117), + [anon_sym_from] = ACTIONS(5117), + [anon_sym_into] = ACTIONS(5117), + [anon_sym_join] = ACTIONS(5117), + [anon_sym_let] = ACTIONS(5117), + [anon_sym_orderby] = ACTIONS(5117), + [anon_sym_ascending] = ACTIONS(5117), + [anon_sym_descending] = ACTIONS(5117), + [anon_sym_group] = ACTIONS(5117), + [anon_sym_select] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_DASH_GT] = ACTIONS(5117), + [anon_sym_with] = ACTIONS(5117), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527336,52 +527371,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3768), [sym_preproc_define] = STATE(3768), [sym_preproc_undef] = STATE(3768), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5410), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_CARET] = ACTIONS(5121), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5123), + [anon_sym_LT_LT] = ACTIONS(5121), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_GT_GT_GT] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_switch] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_and] = ACTIONS(5121), + [anon_sym_or] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_QMARK_QMARK] = ACTIONS(5121), + [anon_sym_from] = ACTIONS(5121), + [anon_sym_into] = ACTIONS(5121), + [anon_sym_join] = ACTIONS(5121), + [anon_sym_let] = ACTIONS(5121), + [anon_sym_orderby] = ACTIONS(5121), + [anon_sym_ascending] = ACTIONS(5121), + [anon_sym_descending] = ACTIONS(5121), + [anon_sym_group] = ACTIONS(5121), + [anon_sym_select] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5121), + [anon_sym_with] = ACTIONS(5121), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527394,8 +527429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3769] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3769), [sym_preproc_endregion] = STATE(3769), [sym_preproc_line] = STATE(3769), @@ -527405,50 +527438,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3769), [sym_preproc_define] = STATE(3769), [sym_preproc_undef] = STATE(3769), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5909), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5909), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5909), - [anon_sym_into] = ACTIONS(5909), - [anon_sym_join] = ACTIONS(5909), - [anon_sym_let] = ACTIONS(5909), - [anon_sym_orderby] = ACTIONS(5909), - [anon_sym_ascending] = ACTIONS(5909), - [anon_sym_descending] = ACTIONS(5909), - [anon_sym_group] = ACTIONS(5909), - [anon_sym_select] = ACTIONS(5909), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_QMARK] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5027), + [anon_sym_DASH_DASH] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5027), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_CARET] = ACTIONS(5027), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5027), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_GT_GT_GT] = ACTIONS(5027), + [anon_sym_EQ_EQ] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5027), + [anon_sym_GT_EQ] = ACTIONS(5027), + [anon_sym_LT_EQ] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_switch] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5027), + [anon_sym_and] = ACTIONS(5027), + [anon_sym_or] = ACTIONS(5029), + [anon_sym_AMP_AMP] = ACTIONS(5027), + [anon_sym_PIPE_PIPE] = ACTIONS(5027), + [anon_sym_QMARK_QMARK] = ACTIONS(5027), + [anon_sym_from] = ACTIONS(5027), + [anon_sym_into] = ACTIONS(5027), + [anon_sym_join] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_orderby] = ACTIONS(5027), + [anon_sym_ascending] = ACTIONS(5027), + [anon_sym_descending] = ACTIONS(5027), + [anon_sym_group] = ACTIONS(5027), + [anon_sym_select] = ACTIONS(5027), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_DASH_GT] = ACTIONS(5027), + [anon_sym_with] = ACTIONS(5027), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527461,8 +527496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3770] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3770), [sym_preproc_endregion] = STATE(3770), [sym_preproc_line] = STATE(3770), @@ -527472,50 +527505,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3770), [sym_preproc_define] = STATE(3770), [sym_preproc_undef] = STATE(3770), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_from] = ACTIONS(1229), - [anon_sym_into] = ACTIONS(1229), - [anon_sym_join] = ACTIONS(1229), - [anon_sym_let] = ACTIONS(1229), - [anon_sym_orderby] = ACTIONS(1229), - [anon_sym_ascending] = ACTIONS(1229), - [anon_sym_descending] = ACTIONS(1229), - [anon_sym_group] = ACTIONS(1229), - [anon_sym_select] = ACTIONS(1229), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_is] = ACTIONS(1229), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_QMARK] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5047), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5047), + [anon_sym_CARET] = ACTIONS(5047), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_AMP] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(5047), + [anon_sym_GT_GT] = ACTIONS(5049), + [anon_sym_GT_GT_GT] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_switch] = ACTIONS(5047), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_and] = ACTIONS(5047), + [anon_sym_or] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_QMARK_QMARK] = ACTIONS(5047), + [anon_sym_from] = ACTIONS(5047), + [anon_sym_into] = ACTIONS(5047), + [anon_sym_join] = ACTIONS(5047), + [anon_sym_let] = ACTIONS(5047), + [anon_sym_orderby] = ACTIONS(5047), + [anon_sym_ascending] = ACTIONS(5047), + [anon_sym_descending] = ACTIONS(5047), + [anon_sym_group] = ACTIONS(5047), + [anon_sym_select] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5049), + [anon_sym_is] = ACTIONS(5047), + [anon_sym_DASH_GT] = ACTIONS(5047), + [anon_sym_with] = ACTIONS(5047), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527528,8 +527563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3771] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3771), [sym_preproc_endregion] = STATE(3771), [sym_preproc_line] = STATE(3771), @@ -527539,50 +527574,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3771), [sym_preproc_define] = STATE(3771), [sym_preproc_undef] = STATE(3771), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5926), + [anon_sym_where] = ACTIONS(5924), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_PERCENT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5924), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_GT_GT_GT] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5924), + [anon_sym_BANG_EQ] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5924), + [anon_sym_PIPE_PIPE] = ACTIONS(5924), + [anon_sym_QMARK_QMARK] = ACTIONS(5924), + [anon_sym_from] = ACTIONS(5924), + [anon_sym_into] = ACTIONS(5924), + [anon_sym_join] = ACTIONS(5924), + [anon_sym_let] = ACTIONS(5924), + [anon_sym_orderby] = ACTIONS(5924), + [anon_sym_ascending] = ACTIONS(5924), + [anon_sym_descending] = ACTIONS(5924), + [anon_sym_group] = ACTIONS(5924), + [anon_sym_select] = ACTIONS(5924), + [anon_sym_as] = ACTIONS(5926), + [anon_sym_is] = ACTIONS(5924), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527604,52 +527639,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3772), [sym_preproc_define] = STATE(3772), [sym_preproc_undef] = STATE(3772), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_LT_LT] = ACTIONS(5039), - [anon_sym_GT_GT] = ACTIONS(5041), - [anon_sym_GT_GT_GT] = ACTIONS(5039), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_switch] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5039), - [anon_sym_and] = ACTIONS(5039), - [anon_sym_or] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5039), - [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_QMARK_QMARK] = ACTIONS(5039), - [anon_sym_from] = ACTIONS(5039), - [anon_sym_into] = ACTIONS(5039), - [anon_sym_join] = ACTIONS(5039), - [anon_sym_let] = ACTIONS(5039), - [anon_sym_orderby] = ACTIONS(5039), - [anon_sym_ascending] = ACTIONS(5039), - [anon_sym_descending] = ACTIONS(5039), - [anon_sym_group] = ACTIONS(5039), - [anon_sym_select] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5041), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_DASH_GT] = ACTIONS(5039), - [anon_sym_with] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_COMMA] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_BANG] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_AMP] = ACTIONS(5001), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_GT_GT_GT] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(4999), + [anon_sym_BANG_EQ] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_switch] = ACTIONS(4999), + [anon_sym_DOT_DOT] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_or] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(4999), + [anon_sym_QMARK_QMARK] = ACTIONS(4999), + [anon_sym_from] = ACTIONS(4999), + [anon_sym_into] = ACTIONS(4999), + [anon_sym_join] = ACTIONS(4999), + [anon_sym_let] = ACTIONS(4999), + [anon_sym_orderby] = ACTIONS(4999), + [anon_sym_ascending] = ACTIONS(4999), + [anon_sym_descending] = ACTIONS(4999), + [anon_sym_group] = ACTIONS(4999), + [anon_sym_select] = ACTIONS(4999), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_is] = ACTIONS(4999), + [anon_sym_DASH_GT] = ACTIONS(4999), + [anon_sym_with] = ACTIONS(4999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527671,52 +527706,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3773), [sym_preproc_define] = STATE(3773), [sym_preproc_undef] = STATE(3773), - [anon_sym_LBRACK] = ACTIONS(5254), - [anon_sym_COMMA] = ACTIONS(5254), - [anon_sym_LPAREN] = ACTIONS(5254), - [anon_sym_LT] = ACTIONS(5256), - [anon_sym_GT] = ACTIONS(5256), - [anon_sym_where] = ACTIONS(5254), - [anon_sym_QMARK] = ACTIONS(5256), - [anon_sym_BANG] = ACTIONS(5256), - [anon_sym_PLUS_PLUS] = ACTIONS(5254), - [anon_sym_DASH_DASH] = ACTIONS(5254), - [anon_sym_PLUS] = ACTIONS(5256), - [anon_sym_DASH] = ACTIONS(5256), - [anon_sym_STAR] = ACTIONS(5254), - [anon_sym_SLASH] = ACTIONS(5256), - [anon_sym_PERCENT] = ACTIONS(5254), - [anon_sym_CARET] = ACTIONS(5254), - [anon_sym_PIPE] = ACTIONS(5256), - [anon_sym_AMP] = ACTIONS(5256), - [anon_sym_LT_LT] = ACTIONS(5254), - [anon_sym_GT_GT] = ACTIONS(5256), - [anon_sym_GT_GT_GT] = ACTIONS(5254), - [anon_sym_EQ_EQ] = ACTIONS(5254), - [anon_sym_BANG_EQ] = ACTIONS(5254), - [anon_sym_GT_EQ] = ACTIONS(5254), - [anon_sym_LT_EQ] = ACTIONS(5254), - [anon_sym_DOT] = ACTIONS(5256), - [anon_sym_switch] = ACTIONS(5254), - [anon_sym_DOT_DOT] = ACTIONS(5254), - [anon_sym_and] = ACTIONS(5254), - [anon_sym_or] = ACTIONS(5256), - [anon_sym_AMP_AMP] = ACTIONS(5254), - [anon_sym_PIPE_PIPE] = ACTIONS(5254), - [anon_sym_QMARK_QMARK] = ACTIONS(5254), - [anon_sym_from] = ACTIONS(5254), - [anon_sym_into] = ACTIONS(5254), - [anon_sym_join] = ACTIONS(5254), - [anon_sym_let] = ACTIONS(5254), - [anon_sym_orderby] = ACTIONS(5254), - [anon_sym_ascending] = ACTIONS(5254), - [anon_sym_descending] = ACTIONS(5254), - [anon_sym_group] = ACTIONS(5254), - [anon_sym_select] = ACTIONS(5254), - [anon_sym_as] = ACTIONS(5256), - [anon_sym_is] = ACTIONS(5254), - [anon_sym_DASH_GT] = ACTIONS(5254), - [anon_sym_with] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_where] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PLUS_PLUS] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4967), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_CARET] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), + [anon_sym_LT_LT] = ACTIONS(4967), + [anon_sym_GT_GT] = ACTIONS(4969), + [anon_sym_GT_GT_GT] = ACTIONS(4967), + [anon_sym_EQ_EQ] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4967), + [anon_sym_GT_EQ] = ACTIONS(4967), + [anon_sym_LT_EQ] = ACTIONS(4967), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_switch] = ACTIONS(4967), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_and] = ACTIONS(4967), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4967), + [anon_sym_PIPE_PIPE] = ACTIONS(4967), + [anon_sym_QMARK_QMARK] = ACTIONS(4967), + [anon_sym_from] = ACTIONS(4967), + [anon_sym_into] = ACTIONS(4967), + [anon_sym_join] = ACTIONS(4967), + [anon_sym_let] = ACTIONS(4967), + [anon_sym_orderby] = ACTIONS(4967), + [anon_sym_ascending] = ACTIONS(4967), + [anon_sym_descending] = ACTIONS(4967), + [anon_sym_group] = ACTIONS(4967), + [anon_sym_select] = ACTIONS(4967), + [anon_sym_as] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4967), + [anon_sym_DASH_GT] = ACTIONS(4967), + [anon_sym_with] = ACTIONS(4967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527729,8 +527764,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3774] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3263), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3234), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3774), [sym_preproc_endregion] = STATE(3774), [sym_preproc_line] = STATE(3774), @@ -527740,50 +527791,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3774), [sym_preproc_define] = STATE(3774), [sym_preproc_undef] = STATE(3774), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(6163), + [anon_sym_ref] = ACTIONS(4062), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(6165), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5770), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527796,8 +527831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3775] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3775), [sym_preproc_endregion] = STATE(3775), [sym_preproc_line] = STATE(3775), @@ -527807,50 +527840,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3775), [sym_preproc_define] = STATE(3775), [sym_preproc_undef] = STATE(3775), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5756), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_where] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5234), + [anon_sym_CARET] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5234), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_GT_GT_GT] = ACTIONS(5234), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_switch] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(5234), + [anon_sym_and] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_QMARK_QMARK] = ACTIONS(5234), + [anon_sym_from] = ACTIONS(5234), + [anon_sym_into] = ACTIONS(5234), + [anon_sym_join] = ACTIONS(5234), + [anon_sym_let] = ACTIONS(5234), + [anon_sym_orderby] = ACTIONS(5234), + [anon_sym_ascending] = ACTIONS(5234), + [anon_sym_descending] = ACTIONS(5234), + [anon_sym_group] = ACTIONS(5234), + [anon_sym_select] = ACTIONS(5234), + [anon_sym_as] = ACTIONS(5236), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_with] = ACTIONS(5234), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527863,8 +527898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3776] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3776), [sym_preproc_endregion] = STATE(3776), [sym_preproc_line] = STATE(3776), @@ -527874,50 +527907,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3776), [sym_preproc_define] = STATE(3776), [sym_preproc_undef] = STATE(3776), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5242), + [anon_sym_LPAREN] = ACTIONS(5242), + [anon_sym_LT] = ACTIONS(5244), + [anon_sym_GT] = ACTIONS(5244), + [anon_sym_where] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(5244), + [anon_sym_BANG] = ACTIONS(5244), + [anon_sym_PLUS_PLUS] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_PIPE] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5244), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5244), + [anon_sym_GT_GT_GT] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5242), + [anon_sym_BANG_EQ] = ACTIONS(5242), + [anon_sym_GT_EQ] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5242), + [anon_sym_DOT] = ACTIONS(5244), + [anon_sym_switch] = ACTIONS(5242), + [anon_sym_DOT_DOT] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5242), + [anon_sym_QMARK_QMARK] = ACTIONS(5242), + [anon_sym_from] = ACTIONS(5242), + [anon_sym_into] = ACTIONS(5242), + [anon_sym_join] = ACTIONS(5242), + [anon_sym_let] = ACTIONS(5242), + [anon_sym_orderby] = ACTIONS(5242), + [anon_sym_ascending] = ACTIONS(5242), + [anon_sym_descending] = ACTIONS(5242), + [anon_sym_group] = ACTIONS(5242), + [anon_sym_select] = ACTIONS(5242), + [anon_sym_as] = ACTIONS(5244), + [anon_sym_is] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_with] = ACTIONS(5242), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527930,8 +527965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3777] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3777), [sym_preproc_endregion] = STATE(3777), [sym_preproc_line] = STATE(3777), @@ -527941,50 +527974,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3777), [sym_preproc_define] = STATE(3777), [sym_preproc_undef] = STATE(3777), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5248), + [anon_sym_where] = ACTIONS(5246), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_BANG] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5248), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_GT_GT_GT] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_DOT] = ACTIONS(5248), + [anon_sym_switch] = ACTIONS(5246), + [anon_sym_DOT_DOT] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5246), + [anon_sym_PIPE_PIPE] = ACTIONS(5246), + [anon_sym_QMARK_QMARK] = ACTIONS(5246), + [anon_sym_from] = ACTIONS(5246), + [anon_sym_into] = ACTIONS(5246), + [anon_sym_join] = ACTIONS(5246), + [anon_sym_let] = ACTIONS(5246), + [anon_sym_orderby] = ACTIONS(5246), + [anon_sym_ascending] = ACTIONS(5246), + [anon_sym_descending] = ACTIONS(5246), + [anon_sym_group] = ACTIONS(5246), + [anon_sym_select] = ACTIONS(5246), + [anon_sym_as] = ACTIONS(5248), + [anon_sym_is] = ACTIONS(5246), + [anon_sym_DASH_GT] = ACTIONS(5246), + [anon_sym_with] = ACTIONS(5246), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527997,8 +528032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3778] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3778), [sym_preproc_endregion] = STATE(3778), [sym_preproc_line] = STATE(3778), @@ -528008,50 +528041,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3778), [sym_preproc_define] = STATE(3778), [sym_preproc_undef] = STATE(3778), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_COMMA] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5482), + [anon_sym_where] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_BANG] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5480), + [anon_sym_PIPE] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_GT_GT_GT] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5480), + [anon_sym_BANG_EQ] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5482), + [anon_sym_switch] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(6167), + [anon_sym_or] = ACTIONS(6169), + [anon_sym_AMP_AMP] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(5480), + [anon_sym_QMARK_QMARK] = ACTIONS(5480), + [anon_sym_from] = ACTIONS(5480), + [anon_sym_into] = ACTIONS(5480), + [anon_sym_join] = ACTIONS(5480), + [anon_sym_let] = ACTIONS(5480), + [anon_sym_orderby] = ACTIONS(5480), + [anon_sym_ascending] = ACTIONS(5480), + [anon_sym_descending] = ACTIONS(5480), + [anon_sym_group] = ACTIONS(5480), + [anon_sym_select] = ACTIONS(5480), + [anon_sym_as] = ACTIONS(5482), + [anon_sym_is] = ACTIONS(5480), + [anon_sym_DASH_GT] = ACTIONS(5480), + [anon_sym_with] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528064,8 +528099,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3779] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3779), [sym_preproc_endregion] = STATE(3779), [sym_preproc_line] = STATE(3779), @@ -528075,50 +528108,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3779), [sym_preproc_define] = STATE(3779), [sym_preproc_undef] = STATE(3779), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_COMMA] = ACTIONS(6171), + [anon_sym_LPAREN] = ACTIONS(6171), + [anon_sym_LT] = ACTIONS(6173), + [anon_sym_GT] = ACTIONS(6173), + [anon_sym_where] = ACTIONS(6171), + [anon_sym_QMARK] = ACTIONS(6173), + [anon_sym_BANG] = ACTIONS(6173), + [anon_sym_PLUS_PLUS] = ACTIONS(6171), + [anon_sym_DASH_DASH] = ACTIONS(6171), + [anon_sym_PLUS] = ACTIONS(6173), + [anon_sym_DASH] = ACTIONS(6173), + [anon_sym_STAR] = ACTIONS(6171), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6171), + [anon_sym_CARET] = ACTIONS(6171), + [anon_sym_PIPE] = ACTIONS(6173), + [anon_sym_AMP] = ACTIONS(6173), + [anon_sym_LT_LT] = ACTIONS(6171), + [anon_sym_GT_GT] = ACTIONS(6173), + [anon_sym_GT_GT_GT] = ACTIONS(6171), + [anon_sym_EQ_EQ] = ACTIONS(6171), + [anon_sym_BANG_EQ] = ACTIONS(6171), + [anon_sym_GT_EQ] = ACTIONS(6171), + [anon_sym_LT_EQ] = ACTIONS(6171), + [anon_sym_DOT] = ACTIONS(6173), + [anon_sym_switch] = ACTIONS(6171), + [anon_sym_DOT_DOT] = ACTIONS(6171), + [anon_sym_and] = ACTIONS(6167), + [anon_sym_or] = ACTIONS(6169), + [anon_sym_AMP_AMP] = ACTIONS(6171), + [anon_sym_PIPE_PIPE] = ACTIONS(6171), + [anon_sym_QMARK_QMARK] = ACTIONS(6171), + [anon_sym_from] = ACTIONS(6171), + [anon_sym_into] = ACTIONS(6171), + [anon_sym_join] = ACTIONS(6171), + [anon_sym_let] = ACTIONS(6171), + [anon_sym_orderby] = ACTIONS(6171), + [anon_sym_ascending] = ACTIONS(6171), + [anon_sym_descending] = ACTIONS(6171), + [anon_sym_group] = ACTIONS(6171), + [anon_sym_select] = ACTIONS(6171), + [anon_sym_as] = ACTIONS(6173), + [anon_sym_is] = ACTIONS(6171), + [anon_sym_DASH_GT] = ACTIONS(6171), + [anon_sym_with] = ACTIONS(6171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528131,8 +528166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3780] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3780), [sym_preproc_endregion] = STATE(3780), [sym_preproc_line] = STATE(3780), @@ -528142,50 +528175,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3780), [sym_preproc_define] = STATE(3780), [sym_preproc_undef] = STATE(3780), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_CARET] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LT_LT] = ACTIONS(5129), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_GT_GT_GT] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_switch] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_and] = ACTIONS(5129), + [anon_sym_or] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_QMARK_QMARK] = ACTIONS(5129), + [anon_sym_from] = ACTIONS(5129), + [anon_sym_into] = ACTIONS(5129), + [anon_sym_join] = ACTIONS(5129), + [anon_sym_let] = ACTIONS(5129), + [anon_sym_orderby] = ACTIONS(5129), + [anon_sym_ascending] = ACTIONS(5129), + [anon_sym_descending] = ACTIONS(5129), + [anon_sym_group] = ACTIONS(5129), + [anon_sym_select] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5129), + [anon_sym_with] = ACTIONS(5129), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528198,8 +528233,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3781] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3781), [sym_preproc_endregion] = STATE(3781), [sym_preproc_line] = STATE(3781), @@ -528209,50 +528242,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3781), [sym_preproc_define] = STATE(3781), [sym_preproc_undef] = STATE(3781), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_COMMA] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5111), + [anon_sym_GT] = ACTIONS(5111), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_QMARK] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_PLUS] = ACTIONS(5111), + [anon_sym_DASH] = ACTIONS(5111), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_AMP] = ACTIONS(5111), + [anon_sym_LT_LT] = ACTIONS(5109), + [anon_sym_GT_GT] = ACTIONS(5111), + [anon_sym_GT_GT_GT] = ACTIONS(5109), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_GT_EQ] = ACTIONS(5109), + [anon_sym_LT_EQ] = ACTIONS(5109), + [anon_sym_DOT] = ACTIONS(5111), + [anon_sym_switch] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_and] = ACTIONS(5109), + [anon_sym_or] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5109), + [anon_sym_PIPE_PIPE] = ACTIONS(5109), + [anon_sym_QMARK_QMARK] = ACTIONS(5109), + [anon_sym_from] = ACTIONS(5109), + [anon_sym_into] = ACTIONS(5109), + [anon_sym_join] = ACTIONS(5109), + [anon_sym_let] = ACTIONS(5109), + [anon_sym_orderby] = ACTIONS(5109), + [anon_sym_ascending] = ACTIONS(5109), + [anon_sym_descending] = ACTIONS(5109), + [anon_sym_group] = ACTIONS(5109), + [anon_sym_select] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5109), + [anon_sym_with] = ACTIONS(5109), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528265,8 +528300,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3782] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3782), [sym_preproc_endregion] = STATE(3782), [sym_preproc_line] = STATE(3782), @@ -528276,50 +528309,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3782), [sym_preproc_define] = STATE(3782), [sym_preproc_undef] = STATE(3782), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5252), + [anon_sym_GT] = ACTIONS(5252), + [anon_sym_where] = ACTIONS(5250), + [anon_sym_QMARK] = ACTIONS(5252), + [anon_sym_BANG] = ACTIONS(5252), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(5252), + [anon_sym_DASH] = ACTIONS(5252), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5252), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5252), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5252), + [anon_sym_GT_GT_GT] = ACTIONS(5250), + [anon_sym_EQ_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_DOT] = ACTIONS(5252), + [anon_sym_switch] = ACTIONS(5250), + [anon_sym_DOT_DOT] = ACTIONS(5250), + [anon_sym_and] = ACTIONS(5250), + [anon_sym_or] = ACTIONS(5252), + [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(5250), + [anon_sym_QMARK_QMARK] = ACTIONS(5250), + [anon_sym_from] = ACTIONS(5250), + [anon_sym_into] = ACTIONS(5250), + [anon_sym_join] = ACTIONS(5250), + [anon_sym_let] = ACTIONS(5250), + [anon_sym_orderby] = ACTIONS(5250), + [anon_sym_ascending] = ACTIONS(5250), + [anon_sym_descending] = ACTIONS(5250), + [anon_sym_group] = ACTIONS(5250), + [anon_sym_select] = ACTIONS(5250), + [anon_sym_as] = ACTIONS(5252), + [anon_sym_is] = ACTIONS(5250), + [anon_sym_DASH_GT] = ACTIONS(5250), + [anon_sym_with] = ACTIONS(5250), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528341,52 +528376,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3783), [sym_preproc_define] = STATE(3783), [sym_preproc_undef] = STATE(3783), - [anon_sym_LBRACK] = ACTIONS(5416), - [anon_sym_COMMA] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5416), - [anon_sym_LT] = ACTIONS(5418), - [anon_sym_GT] = ACTIONS(5418), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_QMARK] = ACTIONS(5418), - [anon_sym_BANG] = ACTIONS(5418), - [anon_sym_PLUS_PLUS] = ACTIONS(5416), - [anon_sym_DASH_DASH] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_SLASH] = ACTIONS(5418), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_CARET] = ACTIONS(5416), - [anon_sym_PIPE] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_GT_GT] = ACTIONS(5418), - [anon_sym_GT_GT_GT] = ACTIONS(5416), - [anon_sym_EQ_EQ] = ACTIONS(5416), - [anon_sym_BANG_EQ] = ACTIONS(5416), - [anon_sym_GT_EQ] = ACTIONS(5416), - [anon_sym_LT_EQ] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_switch] = ACTIONS(5416), - [anon_sym_DOT_DOT] = ACTIONS(5416), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6185), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_PIPE_PIPE] = ACTIONS(5416), - [anon_sym_QMARK_QMARK] = ACTIONS(5416), - [anon_sym_from] = ACTIONS(5416), - [anon_sym_into] = ACTIONS(5416), - [anon_sym_join] = ACTIONS(5416), - [anon_sym_let] = ACTIONS(5416), - [anon_sym_orderby] = ACTIONS(5416), - [anon_sym_ascending] = ACTIONS(5416), - [anon_sym_descending] = ACTIONS(5416), - [anon_sym_group] = ACTIONS(5416), - [anon_sym_select] = ACTIONS(5416), - [anon_sym_as] = ACTIONS(5418), - [anon_sym_is] = ACTIONS(5416), - [anon_sym_DASH_GT] = ACTIONS(5416), - [anon_sym_with] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_where] = ACTIONS(5179), + [anon_sym_QMARK] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PLUS_PLUS] = ACTIONS(5179), + [anon_sym_DASH_DASH] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_CARET] = ACTIONS(5179), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5181), + [anon_sym_LT_LT] = ACTIONS(5179), + [anon_sym_GT_GT] = ACTIONS(5181), + [anon_sym_GT_GT_GT] = ACTIONS(5179), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_GT_EQ] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5179), + [anon_sym_DOT] = ACTIONS(5181), + [anon_sym_switch] = ACTIONS(5179), + [anon_sym_DOT_DOT] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5179), + [anon_sym_PIPE_PIPE] = ACTIONS(5179), + [anon_sym_QMARK_QMARK] = ACTIONS(5179), + [anon_sym_from] = ACTIONS(5179), + [anon_sym_into] = ACTIONS(5179), + [anon_sym_join] = ACTIONS(5179), + [anon_sym_let] = ACTIONS(5179), + [anon_sym_orderby] = ACTIONS(5179), + [anon_sym_ascending] = ACTIONS(5179), + [anon_sym_descending] = ACTIONS(5179), + [anon_sym_group] = ACTIONS(5179), + [anon_sym_select] = ACTIONS(5179), + [anon_sym_as] = ACTIONS(5181), + [anon_sym_is] = ACTIONS(5179), + [anon_sym_DASH_GT] = ACTIONS(5179), + [anon_sym_with] = ACTIONS(5179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528408,52 +528443,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3784), [sym_preproc_define] = STATE(3784), [sym_preproc_undef] = STATE(3784), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_where] = ACTIONS(6187), - [anon_sym_QMARK] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PLUS_PLUS] = ACTIONS(6187), - [anon_sym_DASH_DASH] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6189), - [anon_sym_PERCENT] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_AMP] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6187), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_GT_GT_GT] = ACTIONS(6187), - [anon_sym_EQ_EQ] = ACTIONS(6187), - [anon_sym_BANG_EQ] = ACTIONS(6187), - [anon_sym_GT_EQ] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6187), - [anon_sym_DOT] = ACTIONS(6189), - [anon_sym_switch] = ACTIONS(6187), - [anon_sym_DOT_DOT] = ACTIONS(6187), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6185), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6187), - [anon_sym_QMARK_QMARK] = ACTIONS(6187), - [anon_sym_from] = ACTIONS(6187), - [anon_sym_into] = ACTIONS(6187), - [anon_sym_join] = ACTIONS(6187), - [anon_sym_let] = ACTIONS(6187), - [anon_sym_orderby] = ACTIONS(6187), - [anon_sym_ascending] = ACTIONS(6187), - [anon_sym_descending] = ACTIONS(6187), - [anon_sym_group] = ACTIONS(6187), - [anon_sym_select] = ACTIONS(6187), - [anon_sym_as] = ACTIONS(6189), - [anon_sym_is] = ACTIONS(6187), - [anon_sym_DASH_GT] = ACTIONS(6187), - [anon_sym_with] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(5254), + [anon_sym_COMMA] = ACTIONS(5254), + [anon_sym_LPAREN] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5256), + [anon_sym_GT] = ACTIONS(5256), + [anon_sym_where] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5256), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5256), + [anon_sym_GT_GT_GT] = ACTIONS(5254), + [anon_sym_EQ_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_DOT] = ACTIONS(5256), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_DOT_DOT] = ACTIONS(5254), + [anon_sym_and] = ACTIONS(5254), + [anon_sym_or] = ACTIONS(5256), + [anon_sym_AMP_AMP] = ACTIONS(5254), + [anon_sym_PIPE_PIPE] = ACTIONS(5254), + [anon_sym_QMARK_QMARK] = ACTIONS(5254), + [anon_sym_from] = ACTIONS(5254), + [anon_sym_into] = ACTIONS(5254), + [anon_sym_join] = ACTIONS(5254), + [anon_sym_let] = ACTIONS(5254), + [anon_sym_orderby] = ACTIONS(5254), + [anon_sym_ascending] = ACTIONS(5254), + [anon_sym_descending] = ACTIONS(5254), + [anon_sym_group] = ACTIONS(5254), + [anon_sym_select] = ACTIONS(5254), + [anon_sym_as] = ACTIONS(5256), + [anon_sym_is] = ACTIONS(5254), + [anon_sym_DASH_GT] = ACTIONS(5254), + [anon_sym_with] = ACTIONS(5254), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528475,52 +528510,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3785), [sym_preproc_define] = STATE(3785), [sym_preproc_undef] = STATE(3785), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_ascending] = ACTIONS(2987), - [anon_sym_descending] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_where] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5435), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_from] = ACTIONS(5433), + [anon_sym_into] = ACTIONS(5433), + [anon_sym_join] = ACTIONS(5433), + [anon_sym_let] = ACTIONS(5433), + [anon_sym_orderby] = ACTIONS(5433), + [anon_sym_ascending] = ACTIONS(5433), + [anon_sym_descending] = ACTIONS(5433), + [anon_sym_group] = ACTIONS(5433), + [anon_sym_select] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5435), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528533,8 +528568,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3786] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6177), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym__join_header] = STATE(7327), + [sym_identifier] = STATE(5843), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3786), [sym_preproc_endregion] = STATE(3786), [sym_preproc_line] = STATE(3786), @@ -528544,50 +528596,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3786), [sym_preproc_define] = STATE(3786), [sym_preproc_undef] = STATE(3786), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528600,8 +528635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3787] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym_type_argument_list] = STATE(2991), [sym_preproc_region] = STATE(3787), [sym_preproc_endregion] = STATE(3787), [sym_preproc_line] = STATE(3787), @@ -528611,50 +528645,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3787), [sym_preproc_define] = STATE(3787), [sym_preproc_undef] = STATE(3787), - [anon_sym_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_GT_GT] = ACTIONS(3678), + [anon_sym_GT_GT_GT] = ACTIONS(3680), + [anon_sym_EQ_EQ] = ACTIONS(3680), + [anon_sym_BANG_EQ] = ACTIONS(3680), + [anon_sym_GT_EQ] = ACTIONS(3680), + [anon_sym_LT_EQ] = ACTIONS(3680), + [anon_sym_DOT] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(6175), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3680), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528667,24 +528702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3788] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3788), [sym_preproc_endregion] = STATE(3788), [sym_preproc_line] = STATE(3788), @@ -528694,34 +528713,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3788), [sym_preproc_define] = STATE(3788), [sym_preproc_undef] = STATE(3788), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2833), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5870), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5870), + [anon_sym_into] = ACTIONS(5870), + [anon_sym_join] = ACTIONS(5870), + [anon_sym_let] = ACTIONS(5870), + [anon_sym_orderby] = ACTIONS(5870), + [anon_sym_ascending] = ACTIONS(5870), + [anon_sym_descending] = ACTIONS(5870), + [anon_sym_group] = ACTIONS(5870), + [anon_sym_select] = ACTIONS(5870), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528734,24 +528769,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3789] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6151), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3789), [sym_preproc_endregion] = STATE(3789), [sym_preproc_line] = STATE(3789), @@ -528765,14 +528800,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(5630), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6177), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(5637), - [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_scoped] = ACTIONS(5634), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), @@ -528801,6 +528836,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3790] = { + [sym__name] = STATE(6505), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(7331), + [sym_array_type] = STATE(6698), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7522), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(7331), + [sym_scoped_type] = STATE(7331), + [sym_tuple_type] = STATE(6632), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3790), [sym_preproc_endregion] = STATE(3790), [sym_preproc_line] = STATE(3790), @@ -528810,52 +528863,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3790), [sym_preproc_define] = STATE(3790), [sym_preproc_undef] = STATE(3790), - [anon_sym_LBRACK] = ACTIONS(5416), - [anon_sym_COMMA] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5416), - [anon_sym_LT] = ACTIONS(5418), - [anon_sym_GT] = ACTIONS(5418), - [anon_sym_where] = ACTIONS(5416), - [anon_sym_QMARK] = ACTIONS(5418), - [anon_sym_BANG] = ACTIONS(5418), - [anon_sym_PLUS_PLUS] = ACTIONS(5416), - [anon_sym_DASH_DASH] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_SLASH] = ACTIONS(5418), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_CARET] = ACTIONS(5416), - [anon_sym_PIPE] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LT_LT] = ACTIONS(5416), - [anon_sym_GT_GT] = ACTIONS(5418), - [anon_sym_GT_GT_GT] = ACTIONS(5416), - [anon_sym_EQ_EQ] = ACTIONS(5416), - [anon_sym_BANG_EQ] = ACTIONS(5416), - [anon_sym_GT_EQ] = ACTIONS(5416), - [anon_sym_LT_EQ] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_switch] = ACTIONS(5416), - [anon_sym_DOT_DOT] = ACTIONS(5416), - [anon_sym_and] = ACTIONS(5416), - [anon_sym_or] = ACTIONS(5418), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_PIPE_PIPE] = ACTIONS(5416), - [anon_sym_QMARK_QMARK] = ACTIONS(5416), - [anon_sym_from] = ACTIONS(5416), - [anon_sym_into] = ACTIONS(5416), - [anon_sym_join] = ACTIONS(5416), - [anon_sym_let] = ACTIONS(5416), - [anon_sym_orderby] = ACTIONS(5416), - [anon_sym_ascending] = ACTIONS(5416), - [anon_sym_descending] = ACTIONS(5416), - [anon_sym_group] = ACTIONS(5416), - [anon_sym_select] = ACTIONS(5416), - [anon_sym_as] = ACTIONS(5418), - [anon_sym_is] = ACTIONS(5416), - [anon_sym_DASH_GT] = ACTIONS(5416), - [anon_sym_with] = ACTIONS(5416), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(5079), + [anon_sym_delegate] = ACTIONS(5081), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6179), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5087), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528868,24 +528903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3791] = { - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3791), [sym_preproc_endregion] = STATE(3791), [sym_preproc_line] = STATE(3791), @@ -528895,34 +528912,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3791), [sym_preproc_define] = STATE(3791), [sym_preproc_undef] = STATE(3791), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(4164), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6191), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5748), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5159), + [anon_sym_QMARK] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5159), + [anon_sym_CARET] = ACTIONS(5159), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_AMP] = ACTIONS(5161), + [anon_sym_LT_LT] = ACTIONS(5159), + [anon_sym_GT_GT] = ACTIONS(5161), + [anon_sym_GT_GT_GT] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_switch] = ACTIONS(5159), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_and] = ACTIONS(5159), + [anon_sym_or] = ACTIONS(5161), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_QMARK_QMARK] = ACTIONS(5159), + [anon_sym_from] = ACTIONS(5159), + [anon_sym_into] = ACTIONS(5159), + [anon_sym_join] = ACTIONS(5159), + [anon_sym_let] = ACTIONS(5159), + [anon_sym_orderby] = ACTIONS(5159), + [anon_sym_ascending] = ACTIONS(5159), + [anon_sym_descending] = ACTIONS(5159), + [anon_sym_group] = ACTIONS(5159), + [anon_sym_select] = ACTIONS(5159), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_is] = ACTIONS(5159), + [anon_sym_DASH_GT] = ACTIONS(5159), + [anon_sym_with] = ACTIONS(5159), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528935,6 +528970,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3792] = { + [sym__name] = STATE(5187), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(4595), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3792), [sym_preproc_endregion] = STATE(3792), [sym_preproc_line] = STATE(3792), @@ -528944,52 +528997,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3792), [sym_preproc_define] = STATE(3792), [sym_preproc_undef] = STATE(3792), - [anon_sym_LBRACK] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(5001), - [anon_sym_where] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(5001), - [anon_sym_BANG] = ACTIONS(5001), - [anon_sym_PLUS_PLUS] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(5001), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_LT_LT] = ACTIONS(4999), - [anon_sym_GT_GT] = ACTIONS(5001), - [anon_sym_GT_GT_GT] = ACTIONS(4999), - [anon_sym_EQ_EQ] = ACTIONS(4999), - [anon_sym_BANG_EQ] = ACTIONS(4999), - [anon_sym_GT_EQ] = ACTIONS(4999), - [anon_sym_LT_EQ] = ACTIONS(4999), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_switch] = ACTIONS(4999), - [anon_sym_DOT_DOT] = ACTIONS(4999), - [anon_sym_and] = ACTIONS(4999), - [anon_sym_or] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(4999), - [anon_sym_PIPE_PIPE] = ACTIONS(4999), - [anon_sym_QMARK_QMARK] = ACTIONS(4999), - [anon_sym_from] = ACTIONS(4999), - [anon_sym_into] = ACTIONS(4999), - [anon_sym_join] = ACTIONS(4999), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_orderby] = ACTIONS(4999), - [anon_sym_ascending] = ACTIONS(4999), - [anon_sym_descending] = ACTIONS(4999), - [anon_sym_group] = ACTIONS(4999), - [anon_sym_select] = ACTIONS(4999), - [anon_sym_as] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(4999), - [anon_sym_DASH_GT] = ACTIONS(4999), - [anon_sym_with] = ACTIONS(4999), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(4162), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6181), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5743), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529002,8 +529037,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3793] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym_variable_declaration] = STATE(7368), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5775), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3793), [sym_preproc_endregion] = STATE(3793), [sym_preproc_line] = STATE(3793), @@ -529013,50 +529065,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3793), [sym_preproc_define] = STATE(3793), [sym_preproc_undef] = STATE(3793), - [anon_sym_SEMI] = ACTIONS(5777), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_RBRACK] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5777), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5777), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5777), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5777), - [aux_sym_preproc_else_token1] = ACTIONS(5777), - [aux_sym_preproc_elif_token1] = ACTIONS(5777), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529069,8 +529104,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3794] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3794), [sym_preproc_endregion] = STATE(3794), [sym_preproc_line] = STATE(3794), @@ -529080,50 +529113,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3794), [sym_preproc_define] = STATE(3794), [sym_preproc_undef] = STATE(3794), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RBRACK] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5172), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5172), - [aux_sym_preproc_else_token1] = ACTIONS(5172), - [aux_sym_preproc_elif_token1] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_where] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5043), + [anon_sym_DASH_DASH] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5043), + [anon_sym_CARET] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5043), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_GT_GT_GT] = ACTIONS(5043), + [anon_sym_EQ_EQ] = ACTIONS(5043), + [anon_sym_BANG_EQ] = ACTIONS(5043), + [anon_sym_GT_EQ] = ACTIONS(5043), + [anon_sym_LT_EQ] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5045), + [anon_sym_switch] = ACTIONS(5043), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_and] = ACTIONS(5043), + [anon_sym_or] = ACTIONS(5045), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_QMARK_QMARK] = ACTIONS(5043), + [anon_sym_from] = ACTIONS(5043), + [anon_sym_into] = ACTIONS(5043), + [anon_sym_join] = ACTIONS(5043), + [anon_sym_let] = ACTIONS(5043), + [anon_sym_orderby] = ACTIONS(5043), + [anon_sym_ascending] = ACTIONS(5043), + [anon_sym_descending] = ACTIONS(5043), + [anon_sym_group] = ACTIONS(5043), + [anon_sym_select] = ACTIONS(5043), + [anon_sym_as] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5043), + [anon_sym_DASH_GT] = ACTIONS(5043), + [anon_sym_with] = ACTIONS(5043), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529136,7 +529171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3795] = { - [sym_type_argument_list] = STATE(2954), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3795), [sym_preproc_endregion] = STATE(3795), [sym_preproc_line] = STATE(3795), @@ -529146,51 +529182,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3795), [sym_preproc_define] = STATE(3795), [sym_preproc_undef] = STATE(3795), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(4893), - [anon_sym_GT] = ACTIONS(3680), - [anon_sym_where] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3680), - [anon_sym_GT_GT_GT] = ACTIONS(3682), - [anon_sym_EQ_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(6193), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_DOT_DOT] = ACTIONS(3682), - [anon_sym_and] = ACTIONS(3682), - [anon_sym_or] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_QMARK_QMARK] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_into] = ACTIONS(3682), - [anon_sym_join] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_orderby] = ACTIONS(3682), - [anon_sym_group] = ACTIONS(3682), - [anon_sym_select] = ACTIONS(3682), - [anon_sym_as] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_DASH_GT] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_ascending] = ACTIONS(5238), + [anon_sym_descending] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529203,6 +529238,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3796] = { + [sym_variable_declaration] = STATE(7602), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5771), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3796), [sym_preproc_endregion] = STATE(3796), [sym_preproc_line] = STATE(3796), @@ -529212,52 +529266,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3796), [sym_preproc_define] = STATE(3796), [sym_preproc_undef] = STATE(3796), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PLUS_PLUS] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5029), - [anon_sym_GT_GT_GT] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5027), - [anon_sym_BANG_EQ] = ACTIONS(5027), - [anon_sym_GT_EQ] = ACTIONS(5027), - [anon_sym_LT_EQ] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_switch] = ACTIONS(5027), - [anon_sym_DOT_DOT] = ACTIONS(5027), - [anon_sym_and] = ACTIONS(5027), - [anon_sym_or] = ACTIONS(5029), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_QMARK_QMARK] = ACTIONS(5027), - [anon_sym_from] = ACTIONS(5027), - [anon_sym_into] = ACTIONS(5027), - [anon_sym_join] = ACTIONS(5027), - [anon_sym_let] = ACTIONS(5027), - [anon_sym_orderby] = ACTIONS(5027), - [anon_sym_ascending] = ACTIONS(5027), - [anon_sym_descending] = ACTIONS(5027), - [anon_sym_group] = ACTIONS(5027), - [anon_sym_select] = ACTIONS(5027), - [anon_sym_as] = ACTIONS(5029), - [anon_sym_is] = ACTIONS(5027), - [anon_sym_DASH_GT] = ACTIONS(5027), - [anon_sym_with] = ACTIONS(5027), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529279,52 +529314,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3797), [sym_preproc_define] = STATE(3797), [sym_preproc_undef] = STATE(3797), - [anon_sym_LBRACK] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5005), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5005), - [anon_sym_BANG] = ACTIONS(5005), - [anon_sym_PLUS_PLUS] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5005), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_LT_LT] = ACTIONS(5003), - [anon_sym_GT_GT] = ACTIONS(5005), - [anon_sym_GT_GT_GT] = ACTIONS(5003), - [anon_sym_EQ_EQ] = ACTIONS(5003), - [anon_sym_BANG_EQ] = ACTIONS(5003), - [anon_sym_GT_EQ] = ACTIONS(5003), - [anon_sym_LT_EQ] = ACTIONS(5003), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_switch] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5003), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5005), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_QMARK_QMARK] = ACTIONS(5003), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_ascending] = ACTIONS(5003), - [anon_sym_descending] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5003), - [anon_sym_DASH_GT] = ACTIONS(5003), - [anon_sym_with] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_QMARK] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5137), + [anon_sym_AMP] = ACTIONS(5137), + [anon_sym_LT_LT] = ACTIONS(5135), + [anon_sym_GT_GT] = ACTIONS(5137), + [anon_sym_GT_GT_GT] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_switch] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_and] = ACTIONS(5135), + [anon_sym_or] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_QMARK_QMARK] = ACTIONS(5135), + [anon_sym_from] = ACTIONS(5135), + [anon_sym_into] = ACTIONS(5135), + [anon_sym_join] = ACTIONS(5135), + [anon_sym_let] = ACTIONS(5135), + [anon_sym_orderby] = ACTIONS(5135), + [anon_sym_ascending] = ACTIONS(5135), + [anon_sym_descending] = ACTIONS(5135), + [anon_sym_group] = ACTIONS(5135), + [anon_sym_select] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_with] = ACTIONS(5135), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529337,24 +529372,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3798] = { - [sym__name] = STATE(5236), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(4593), - [sym__reserved_identifier] = STATE(3208), + [sym__name] = STATE(4497), + [sym_alias_qualified_name] = STATE(4398), + [sym__simple_name] = STATE(4398), + [sym_qualified_name] = STATE(4398), + [sym_generic_name] = STATE(4419), + [sym_type] = STATE(4498), + [sym_implicit_type] = STATE(4407), + [sym_array_type] = STATE(4484), + [sym__array_base_type] = STATE(7286), + [sym_nullable_type] = STATE(4519), + [sym_pointer_type] = STATE(4519), + [sym__pointer_base_type] = STATE(7680), + [sym_function_pointer_type] = STATE(4519), + [sym_ref_type] = STATE(4407), + [sym_scoped_type] = STATE(4407), + [sym_tuple_type] = STATE(4520), + [sym_identifier] = STATE(4293), + [sym__reserved_identifier] = STATE(4388), [sym_preproc_region] = STATE(3798), [sym_preproc_endregion] = STATE(3798), [sym_preproc_line] = STATE(3798), @@ -529364,34 +529399,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3798), [sym_preproc_define] = STATE(3798), [sym_preproc_undef] = STATE(3798), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(4114), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6195), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5903), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(4009), + [anon_sym_alias] = ACTIONS(4011), + [anon_sym_global] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(6093), + [anon_sym_ref] = ACTIONS(4046), + [anon_sym_delegate] = ACTIONS(5732), + [anon_sym_file] = ACTIONS(4011), + [anon_sym_readonly] = ACTIONS(6183), + [anon_sym_where] = ACTIONS(4011), + [anon_sym_notnull] = ACTIONS(4011), + [anon_sym_unmanaged] = ACTIONS(4011), + [anon_sym_scoped] = ACTIONS(5918), + [anon_sym_var] = ACTIONS(5736), + [sym_predefined_type] = ACTIONS(5738), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_when] = ACTIONS(4011), + [anon_sym_from] = ACTIONS(4011), + [anon_sym_into] = ACTIONS(4011), + [anon_sym_join] = ACTIONS(4011), + [anon_sym_on] = ACTIONS(4011), + [anon_sym_equals] = ACTIONS(4011), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_orderby] = ACTIONS(4011), + [anon_sym_ascending] = ACTIONS(4011), + [anon_sym_descending] = ACTIONS(4011), + [anon_sym_group] = ACTIONS(4011), + [anon_sym_by] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529404,25 +529439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3799] = { - [sym_variable_declaration] = STATE(7465), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5767), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3799), [sym_preproc_endregion] = STATE(3799), [sym_preproc_line] = STATE(3799), @@ -529432,33 +529450,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3799), [sym_preproc_define] = STATE(3799), [sym_preproc_undef] = STATE(3799), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RBRACK] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5866), + [anon_sym_or] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5866), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5866), + [aux_sym_preproc_else_token1] = ACTIONS(5866), + [aux_sym_preproc_elif_token1] = ACTIONS(5866), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529480,52 +529515,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3800), [sym_preproc_define] = STATE(3800), [sym_preproc_undef] = STATE(3800), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5009), - [anon_sym_where] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(5009), - [anon_sym_PLUS_PLUS] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_LT_LT] = ACTIONS(5007), - [anon_sym_GT_GT] = ACTIONS(5009), - [anon_sym_GT_GT_GT] = ACTIONS(5007), - [anon_sym_EQ_EQ] = ACTIONS(5007), - [anon_sym_BANG_EQ] = ACTIONS(5007), - [anon_sym_GT_EQ] = ACTIONS(5007), - [anon_sym_LT_EQ] = ACTIONS(5007), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_switch] = ACTIONS(5007), - [anon_sym_DOT_DOT] = ACTIONS(5007), - [anon_sym_and] = ACTIONS(5007), - [anon_sym_or] = ACTIONS(5009), - [anon_sym_AMP_AMP] = ACTIONS(5007), - [anon_sym_PIPE_PIPE] = ACTIONS(5007), - [anon_sym_QMARK_QMARK] = ACTIONS(5007), - [anon_sym_from] = ACTIONS(5007), - [anon_sym_into] = ACTIONS(5007), - [anon_sym_join] = ACTIONS(5007), - [anon_sym_let] = ACTIONS(5007), - [anon_sym_orderby] = ACTIONS(5007), - [anon_sym_ascending] = ACTIONS(5007), - [anon_sym_descending] = ACTIONS(5007), - [anon_sym_group] = ACTIONS(5007), - [anon_sym_select] = ACTIONS(5007), - [anon_sym_as] = ACTIONS(5009), - [anon_sym_is] = ACTIONS(5007), - [anon_sym_DASH_GT] = ACTIONS(5007), - [anon_sym_with] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5195), + [anon_sym_QMARK] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5195), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5195), + [anon_sym_CARET] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5197), + [anon_sym_LT_LT] = ACTIONS(5195), + [anon_sym_GT_GT] = ACTIONS(5197), + [anon_sym_GT_GT_GT] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_switch] = ACTIONS(5195), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_and] = ACTIONS(5195), + [anon_sym_or] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_QMARK_QMARK] = ACTIONS(5195), + [anon_sym_from] = ACTIONS(5195), + [anon_sym_into] = ACTIONS(5195), + [anon_sym_join] = ACTIONS(5195), + [anon_sym_let] = ACTIONS(5195), + [anon_sym_orderby] = ACTIONS(5195), + [anon_sym_ascending] = ACTIONS(5195), + [anon_sym_descending] = ACTIONS(5195), + [anon_sym_group] = ACTIONS(5195), + [anon_sym_select] = ACTIONS(5195), + [anon_sym_as] = ACTIONS(5197), + [anon_sym_is] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), + [anon_sym_with] = ACTIONS(5195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529538,24 +529573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3801] = { - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3801), [sym_preproc_endregion] = STATE(3801), [sym_preproc_line] = STATE(3801), @@ -529565,34 +529584,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3801), [sym_preproc_define] = STATE(3801), [sym_preproc_undef] = STATE(3801), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(4255), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6199), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5923), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529614,52 +529649,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3802), [sym_preproc_define] = STATE(3802), [sym_preproc_undef] = STATE(3802), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_LPAREN] = ACTIONS(5192), - [anon_sym_LT] = ACTIONS(5194), - [anon_sym_GT] = ACTIONS(5194), - [anon_sym_where] = ACTIONS(5192), - [anon_sym_QMARK] = ACTIONS(5194), - [anon_sym_BANG] = ACTIONS(5194), - [anon_sym_PLUS_PLUS] = ACTIONS(5192), - [anon_sym_DASH_DASH] = ACTIONS(5192), - [anon_sym_PLUS] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_SLASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_PIPE] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_LT_LT] = ACTIONS(5192), - [anon_sym_GT_GT] = ACTIONS(5194), - [anon_sym_GT_GT_GT] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5192), - [anon_sym_BANG_EQ] = ACTIONS(5192), - [anon_sym_GT_EQ] = ACTIONS(5192), - [anon_sym_LT_EQ] = ACTIONS(5192), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_switch] = ACTIONS(5192), - [anon_sym_DOT_DOT] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5194), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_QMARK_QMARK] = ACTIONS(5192), - [anon_sym_from] = ACTIONS(5192), - [anon_sym_into] = ACTIONS(5192), - [anon_sym_join] = ACTIONS(5192), - [anon_sym_let] = ACTIONS(5192), - [anon_sym_orderby] = ACTIONS(5192), - [anon_sym_ascending] = ACTIONS(5192), - [anon_sym_descending] = ACTIONS(5192), - [anon_sym_group] = ACTIONS(5192), - [anon_sym_select] = ACTIONS(5192), - [anon_sym_as] = ACTIONS(5194), - [anon_sym_is] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5192), - [anon_sym_with] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_LPAREN] = ACTIONS(5496), + [anon_sym_LT] = ACTIONS(5498), + [anon_sym_GT] = ACTIONS(5498), + [anon_sym_where] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5498), + [anon_sym_BANG] = ACTIONS(5498), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5498), + [anon_sym_PERCENT] = ACTIONS(5496), + [anon_sym_CARET] = ACTIONS(5496), + [anon_sym_PIPE] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5498), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_GT_GT_GT] = ACTIONS(5496), + [anon_sym_EQ_EQ] = ACTIONS(5496), + [anon_sym_BANG_EQ] = ACTIONS(5496), + [anon_sym_GT_EQ] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5498), + [anon_sym_switch] = ACTIONS(5496), + [anon_sym_DOT_DOT] = ACTIONS(5496), + [anon_sym_and] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5498), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_PIPE_PIPE] = ACTIONS(5496), + [anon_sym_QMARK_QMARK] = ACTIONS(5496), + [anon_sym_from] = ACTIONS(5496), + [anon_sym_into] = ACTIONS(5496), + [anon_sym_join] = ACTIONS(5496), + [anon_sym_let] = ACTIONS(5496), + [anon_sym_orderby] = ACTIONS(5496), + [anon_sym_ascending] = ACTIONS(5496), + [anon_sym_descending] = ACTIONS(5496), + [anon_sym_group] = ACTIONS(5496), + [anon_sym_select] = ACTIONS(5496), + [anon_sym_as] = ACTIONS(5498), + [anon_sym_is] = ACTIONS(5496), + [anon_sym_DASH_GT] = ACTIONS(5496), + [anon_sym_with] = ACTIONS(5496), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529681,52 +529716,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3803), [sym_preproc_define] = STATE(3803), [sym_preproc_undef] = STATE(3803), - [anon_sym_LBRACK] = ACTIONS(5448), - [anon_sym_COMMA] = ACTIONS(5448), - [anon_sym_LPAREN] = ACTIONS(5448), - [anon_sym_LT] = ACTIONS(5450), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_where] = ACTIONS(5448), - [anon_sym_QMARK] = ACTIONS(5450), - [anon_sym_BANG] = ACTIONS(5450), - [anon_sym_PLUS_PLUS] = ACTIONS(5448), - [anon_sym_DASH_DASH] = ACTIONS(5448), - [anon_sym_PLUS] = ACTIONS(5450), - [anon_sym_DASH] = ACTIONS(5450), - [anon_sym_STAR] = ACTIONS(5448), - [anon_sym_SLASH] = ACTIONS(5450), - [anon_sym_PERCENT] = ACTIONS(5448), - [anon_sym_CARET] = ACTIONS(5448), - [anon_sym_PIPE] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(5450), - [anon_sym_LT_LT] = ACTIONS(5448), - [anon_sym_GT_GT] = ACTIONS(5450), - [anon_sym_GT_GT_GT] = ACTIONS(5448), - [anon_sym_EQ_EQ] = ACTIONS(5448), - [anon_sym_BANG_EQ] = ACTIONS(5448), - [anon_sym_GT_EQ] = ACTIONS(5448), - [anon_sym_LT_EQ] = ACTIONS(5448), - [anon_sym_DOT] = ACTIONS(5450), - [anon_sym_switch] = ACTIONS(5448), - [anon_sym_DOT_DOT] = ACTIONS(5448), - [anon_sym_and] = ACTIONS(5448), - [anon_sym_or] = ACTIONS(5450), - [anon_sym_AMP_AMP] = ACTIONS(5448), - [anon_sym_PIPE_PIPE] = ACTIONS(5448), - [anon_sym_QMARK_QMARK] = ACTIONS(5448), - [anon_sym_from] = ACTIONS(5448), - [anon_sym_into] = ACTIONS(5448), - [anon_sym_join] = ACTIONS(5448), - [anon_sym_let] = ACTIONS(5448), - [anon_sym_orderby] = ACTIONS(5448), - [anon_sym_ascending] = ACTIONS(5448), - [anon_sym_descending] = ACTIONS(5448), - [anon_sym_group] = ACTIONS(5448), - [anon_sym_select] = ACTIONS(5448), - [anon_sym_as] = ACTIONS(5450), - [anon_sym_is] = ACTIONS(5448), - [anon_sym_DASH_GT] = ACTIONS(5448), - [anon_sym_with] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_COMMA] = ACTIONS(5512), + [anon_sym_LPAREN] = ACTIONS(5512), + [anon_sym_LT] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5514), + [anon_sym_where] = ACTIONS(5512), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_BANG] = ACTIONS(5514), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5514), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5512), + [anon_sym_PIPE] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5514), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_GT_GT_GT] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5512), + [anon_sym_BANG_EQ] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5512), + [anon_sym_LT_EQ] = ACTIONS(5512), + [anon_sym_DOT] = ACTIONS(5514), + [anon_sym_switch] = ACTIONS(5512), + [anon_sym_DOT_DOT] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_or] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5512), + [anon_sym_PIPE_PIPE] = ACTIONS(5512), + [anon_sym_QMARK_QMARK] = ACTIONS(5512), + [anon_sym_from] = ACTIONS(5512), + [anon_sym_into] = ACTIONS(5512), + [anon_sym_join] = ACTIONS(5512), + [anon_sym_let] = ACTIONS(5512), + [anon_sym_orderby] = ACTIONS(5512), + [anon_sym_ascending] = ACTIONS(5512), + [anon_sym_descending] = ACTIONS(5512), + [anon_sym_group] = ACTIONS(5512), + [anon_sym_select] = ACTIONS(5512), + [anon_sym_as] = ACTIONS(5514), + [anon_sym_is] = ACTIONS(5512), + [anon_sym_DASH_GT] = ACTIONS(5512), + [anon_sym_with] = ACTIONS(5512), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529739,6 +529774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3804] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3804), [sym_preproc_endregion] = STATE(3804), [sym_preproc_line] = STATE(3804), @@ -529748,52 +529785,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3804), [sym_preproc_define] = STATE(3804), [sym_preproc_undef] = STATE(3804), - [anon_sym_LBRACK] = ACTIONS(5160), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_where] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_PLUS_PLUS] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_GT_GT_GT] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_DOT] = ACTIONS(5162), - [anon_sym_switch] = ACTIONS(5160), - [anon_sym_DOT_DOT] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_or] = ACTIONS(5162), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_QMARK_QMARK] = ACTIONS(5160), - [anon_sym_from] = ACTIONS(5160), - [anon_sym_into] = ACTIONS(5160), - [anon_sym_join] = ACTIONS(5160), - [anon_sym_let] = ACTIONS(5160), - [anon_sym_orderby] = ACTIONS(5160), - [anon_sym_ascending] = ACTIONS(5160), - [anon_sym_descending] = ACTIONS(5160), - [anon_sym_group] = ACTIONS(5160), - [anon_sym_select] = ACTIONS(5160), - [anon_sym_as] = ACTIONS(5162), - [anon_sym_is] = ACTIONS(5160), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5682), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529806,24 +529841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3805] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3805), [sym_preproc_endregion] = STATE(3805), [sym_preproc_line] = STATE(3805), @@ -529833,34 +529850,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3805), [sym_preproc_define] = STATE(3805), [sym_preproc_undef] = STATE(3805), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(6059), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6061), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_COMMA] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(5455), + [anon_sym_GT] = ACTIONS(5455), + [anon_sym_where] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_BANG] = ACTIONS(5455), + [anon_sym_PLUS_PLUS] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(5455), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_PIPE] = ACTIONS(5455), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(5455), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_EQ_EQ] = ACTIONS(3881), + [anon_sym_BANG_EQ] = ACTIONS(3881), + [anon_sym_GT_EQ] = ACTIONS(3881), + [anon_sym_LT_EQ] = ACTIONS(3881), + [anon_sym_DOT] = ACTIONS(5455), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_DOT_DOT] = ACTIONS(3881), + [anon_sym_and] = ACTIONS(3881), + [anon_sym_or] = ACTIONS(5455), + [anon_sym_AMP_AMP] = ACTIONS(3881), + [anon_sym_PIPE_PIPE] = ACTIONS(3881), + [anon_sym_QMARK_QMARK] = ACTIONS(3881), + [anon_sym_from] = ACTIONS(3881), + [anon_sym_into] = ACTIONS(3881), + [anon_sym_join] = ACTIONS(3881), + [anon_sym_let] = ACTIONS(3881), + [anon_sym_orderby] = ACTIONS(3881), + [anon_sym_ascending] = ACTIONS(3881), + [anon_sym_descending] = ACTIONS(3881), + [anon_sym_group] = ACTIONS(3881), + [anon_sym_select] = ACTIONS(3881), + [anon_sym_as] = ACTIONS(5455), + [anon_sym_is] = ACTIONS(3881), + [anon_sym_DASH_GT] = ACTIONS(3881), + [anon_sym_with] = ACTIONS(3881), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529873,8 +529908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3806] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3806), [sym_preproc_endregion] = STATE(3806), [sym_preproc_line] = STATE(3806), @@ -529884,50 +529919,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3806), [sym_preproc_define] = STATE(3806), [sym_preproc_undef] = STATE(3806), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5694), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5694), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5694), - [anon_sym_into] = ACTIONS(5694), - [anon_sym_join] = ACTIONS(5694), - [anon_sym_let] = ACTIONS(5694), - [anon_sym_orderby] = ACTIONS(5694), - [anon_sym_ascending] = ACTIONS(5694), - [anon_sym_descending] = ACTIONS(5694), - [anon_sym_group] = ACTIONS(5694), - [anon_sym_select] = ACTIONS(5694), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5682), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529940,6 +529975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3807] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3807), [sym_preproc_endregion] = STATE(3807), [sym_preproc_line] = STATE(3807), @@ -529949,52 +529986,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3807), [sym_preproc_define] = STATE(3807), [sym_preproc_undef] = STATE(3807), - [anon_sym_LBRACK] = ACTIONS(6201), - [anon_sym_COMMA] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6203), - [anon_sym_where] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_BANG] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6201), - [anon_sym_DASH_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6203), - [anon_sym_AMP] = ACTIONS(6203), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6201), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_DOT] = ACTIONS(6203), - [anon_sym_switch] = ACTIONS(6201), - [anon_sym_DOT_DOT] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6201), - [anon_sym_from] = ACTIONS(6201), - [anon_sym_into] = ACTIONS(6201), - [anon_sym_join] = ACTIONS(6201), - [anon_sym_let] = ACTIONS(6201), - [anon_sym_orderby] = ACTIONS(6201), - [anon_sym_ascending] = ACTIONS(6201), - [anon_sym_descending] = ACTIONS(6201), - [anon_sym_group] = ACTIONS(6201), - [anon_sym_select] = ACTIONS(6201), - [anon_sym_as] = ACTIONS(6203), - [anon_sym_is] = ACTIONS(6201), - [anon_sym_DASH_GT] = ACTIONS(6201), - [anon_sym_with] = ACTIONS(6201), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_STAR] = ACTIONS(5682), + [anon_sym_SLASH] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5682), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530007,6 +530042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3808] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3808), [sym_preproc_endregion] = STATE(3808), [sym_preproc_line] = STATE(3808), @@ -530016,52 +530053,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3808), [sym_preproc_define] = STATE(3808), [sym_preproc_undef] = STATE(3808), - [anon_sym_LBRACK] = ACTIONS(5452), - [anon_sym_COMMA] = ACTIONS(5452), - [anon_sym_LPAREN] = ACTIONS(5452), - [anon_sym_LT] = ACTIONS(5454), - [anon_sym_GT] = ACTIONS(5454), - [anon_sym_where] = ACTIONS(5452), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(5454), - [anon_sym_PLUS_PLUS] = ACTIONS(5452), - [anon_sym_DASH_DASH] = ACTIONS(5452), - [anon_sym_PLUS] = ACTIONS(5454), - [anon_sym_DASH] = ACTIONS(5454), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(5454), - [anon_sym_PERCENT] = ACTIONS(5452), - [anon_sym_CARET] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5454), - [anon_sym_AMP] = ACTIONS(5454), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5454), - [anon_sym_GT_GT_GT] = ACTIONS(5452), - [anon_sym_EQ_EQ] = ACTIONS(5452), - [anon_sym_BANG_EQ] = ACTIONS(5452), - [anon_sym_GT_EQ] = ACTIONS(5452), - [anon_sym_LT_EQ] = ACTIONS(5452), - [anon_sym_DOT] = ACTIONS(5454), - [anon_sym_switch] = ACTIONS(5452), - [anon_sym_DOT_DOT] = ACTIONS(5452), - [anon_sym_and] = ACTIONS(5452), - [anon_sym_or] = ACTIONS(5454), - [anon_sym_AMP_AMP] = ACTIONS(5452), - [anon_sym_PIPE_PIPE] = ACTIONS(5452), - [anon_sym_QMARK_QMARK] = ACTIONS(5452), - [anon_sym_from] = ACTIONS(5452), - [anon_sym_into] = ACTIONS(5452), - [anon_sym_join] = ACTIONS(5452), - [anon_sym_let] = ACTIONS(5452), - [anon_sym_orderby] = ACTIONS(5452), - [anon_sym_ascending] = ACTIONS(5452), - [anon_sym_descending] = ACTIONS(5452), - [anon_sym_group] = ACTIONS(5452), - [anon_sym_select] = ACTIONS(5452), - [anon_sym_as] = ACTIONS(5454), - [anon_sym_is] = ACTIONS(5452), - [anon_sym_DASH_GT] = ACTIONS(5452), - [anon_sym_with] = ACTIONS(5452), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530074,6 +530109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3809] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3809), [sym_preproc_endregion] = STATE(3809), [sym_preproc_line] = STATE(3809), @@ -530083,52 +530120,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3809), [sym_preproc_define] = STATE(3809), [sym_preproc_undef] = STATE(3809), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_CARET] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_LT_LT] = ACTIONS(5035), - [anon_sym_GT_GT] = ACTIONS(5037), - [anon_sym_GT_GT_GT] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_GT_EQ] = ACTIONS(5035), - [anon_sym_LT_EQ] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_switch] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5035), - [anon_sym_and] = ACTIONS(5035), - [anon_sym_or] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5035), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_QMARK_QMARK] = ACTIONS(5035), - [anon_sym_from] = ACTIONS(5035), - [anon_sym_into] = ACTIONS(5035), - [anon_sym_join] = ACTIONS(5035), - [anon_sym_let] = ACTIONS(5035), - [anon_sym_orderby] = ACTIONS(5035), - [anon_sym_ascending] = ACTIONS(5035), - [anon_sym_descending] = ACTIONS(5035), - [anon_sym_group] = ACTIONS(5035), - [anon_sym_select] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5037), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_DASH_GT] = ACTIONS(5035), - [anon_sym_with] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530141,24 +530176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3810] = { - [sym__name] = STATE(4161), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2958), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(2986), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3795), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3810), [sym_preproc_endregion] = STATE(3810), [sym_preproc_line] = STATE(3810), @@ -530168,34 +530187,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3810), [sym_preproc_define] = STATE(3810), [sym_preproc_undef] = STATE(3810), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(6145), - [anon_sym_ref] = ACTIONS(4196), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_readonly] = ACTIONS(6205), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5860), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530208,8 +530243,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3811] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3811), [sym_preproc_endregion] = STATE(3811), [sym_preproc_line] = STATE(3811), @@ -530219,50 +530254,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3811), [sym_preproc_define] = STATE(3811), [sym_preproc_undef] = STATE(3811), - [anon_sym_SEMI] = ACTIONS(5783), + [anon_sym_SEMI] = ACTIONS(5682), [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5783), - [anon_sym_RBRACK] = ACTIONS(5783), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5783), - [anon_sym_RBRACE] = ACTIONS(5783), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5684), + [anon_sym_QMARK] = ACTIONS(5684), [anon_sym_BANG] = ACTIONS(5312), [anon_sym_PLUS_PLUS] = ACTIONS(5314), [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5783), - [anon_sym_or] = ACTIONS(5783), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5783), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5783), - [aux_sym_preproc_else_token1] = ACTIONS(5783), - [aux_sym_preproc_elif_token1] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_GT_GT_GT] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5682), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5682), + [anon_sym_is] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530275,6 +530310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3812] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3812), [sym_preproc_endregion] = STATE(3812), [sym_preproc_line] = STATE(3812), @@ -530284,52 +530321,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3812), [sym_preproc_define] = STATE(3812), [sym_preproc_undef] = STATE(3812), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_COMMA] = ACTIONS(5456), - [anon_sym_LPAREN] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_BANG] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5458), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_PIPE] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5458), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5458), - [anon_sym_GT_GT_GT] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5456), - [anon_sym_BANG_EQ] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5456), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_DOT] = ACTIONS(5458), - [anon_sym_switch] = ACTIONS(5456), - [anon_sym_DOT_DOT] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_or] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5456), - [anon_sym_QMARK_QMARK] = ACTIONS(5456), - [anon_sym_from] = ACTIONS(5456), - [anon_sym_into] = ACTIONS(5456), - [anon_sym_join] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(5456), - [anon_sym_orderby] = ACTIONS(5456), - [anon_sym_ascending] = ACTIONS(5456), - [anon_sym_descending] = ACTIONS(5456), - [anon_sym_group] = ACTIONS(5456), - [anon_sym_select] = ACTIONS(5456), - [anon_sym_as] = ACTIONS(5458), - [anon_sym_is] = ACTIONS(5456), - [anon_sym_DASH_GT] = ACTIONS(5456), - [anon_sym_with] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530342,6 +530377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3813] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3813), [sym_preproc_endregion] = STATE(3813), [sym_preproc_line] = STATE(3813), @@ -530351,52 +530388,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3813), [sym_preproc_define] = STATE(3813), [sym_preproc_undef] = STATE(3813), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5057), - [anon_sym_GT_GT_GT] = ACTIONS(5055), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_GT_EQ] = ACTIONS(5055), - [anon_sym_LT_EQ] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_switch] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5055), - [anon_sym_and] = ACTIONS(5055), - [anon_sym_or] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5055), - [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_QMARK_QMARK] = ACTIONS(5055), - [anon_sym_from] = ACTIONS(5055), - [anon_sym_into] = ACTIONS(5055), - [anon_sym_join] = ACTIONS(5055), - [anon_sym_let] = ACTIONS(5055), - [anon_sym_orderby] = ACTIONS(5055), - [anon_sym_ascending] = ACTIONS(5055), - [anon_sym_descending] = ACTIONS(5055), - [anon_sym_group] = ACTIONS(5055), - [anon_sym_select] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5057), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_with] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5924), + [anon_sym_RBRACK] = ACTIONS(5924), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5924), + [anon_sym_RBRACE] = ACTIONS(5924), + [anon_sym_LT] = ACTIONS(5926), + [anon_sym_GT] = ACTIONS(5926), + [anon_sym_QMARK] = ACTIONS(5926), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5926), + [anon_sym_PERCENT] = ACTIONS(5924), + [anon_sym_CARET] = ACTIONS(5924), + [anon_sym_PIPE] = ACTIONS(5926), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym_LT_LT] = ACTIONS(5924), + [anon_sym_GT_GT] = ACTIONS(5926), + [anon_sym_GT_GT_GT] = ACTIONS(5924), + [anon_sym_EQ_EQ] = ACTIONS(5924), + [anon_sym_BANG_EQ] = ACTIONS(5924), + [anon_sym_GT_EQ] = ACTIONS(5924), + [anon_sym_LT_EQ] = ACTIONS(5924), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(5924), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5924), + [anon_sym_or] = ACTIONS(5924), + [anon_sym_AMP_AMP] = ACTIONS(5924), + [anon_sym_PIPE_PIPE] = ACTIONS(5924), + [anon_sym_QMARK_QMARK] = ACTIONS(5924), + [anon_sym_into] = ACTIONS(5924), + [anon_sym_as] = ACTIONS(5924), + [anon_sym_is] = ACTIONS(5924), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(5924), + [aux_sym_preproc_if_token3] = ACTIONS(5924), + [aux_sym_preproc_else_token1] = ACTIONS(5924), + [aux_sym_preproc_elif_token1] = ACTIONS(5924), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530409,25 +530444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3814] = { - [sym_variable_declaration] = STATE(7423), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5973), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3814), [sym_preproc_endregion] = STATE(3814), [sym_preproc_line] = STATE(3814), @@ -530437,33 +530455,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3814), [sym_preproc_define] = STATE(3814), [sym_preproc_undef] = STATE(3814), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530476,6 +530511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3815] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3815), [sym_preproc_endregion] = STATE(3815), [sym_preproc_line] = STATE(3815), @@ -530485,52 +530522,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3815), [sym_preproc_define] = STATE(3815), [sym_preproc_undef] = STATE(3815), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_where] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5166), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5164), - [anon_sym_CARET] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_LT_LT] = ACTIONS(5164), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_GT_GT_GT] = ACTIONS(5164), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5166), - [anon_sym_switch] = ACTIONS(5164), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [anon_sym_and] = ACTIONS(5164), - [anon_sym_or] = ACTIONS(5166), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_QMARK_QMARK] = ACTIONS(5164), - [anon_sym_from] = ACTIONS(5164), - [anon_sym_into] = ACTIONS(5164), - [anon_sym_join] = ACTIONS(5164), - [anon_sym_let] = ACTIONS(5164), - [anon_sym_orderby] = ACTIONS(5164), - [anon_sym_ascending] = ACTIONS(5164), - [anon_sym_descending] = ACTIONS(5164), - [anon_sym_group] = ACTIONS(5164), - [anon_sym_select] = ACTIONS(5164), - [anon_sym_as] = ACTIONS(5166), - [anon_sym_is] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), - [anon_sym_with] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530543,25 +530578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3816] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7223), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3816), [sym_preproc_endregion] = STATE(3816), [sym_preproc_line] = STATE(3816), @@ -530571,33 +530589,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3816), [sym_preproc_define] = STATE(3816), [sym_preproc_undef] = STATE(3816), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_RBRACK] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5682), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5682), + [aux_sym_preproc_else_token1] = ACTIONS(5682), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530619,52 +530654,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3817), [sym_preproc_define] = STATE(3817), [sym_preproc_undef] = STATE(3817), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_where] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(5059), - [anon_sym_GT_GT] = ACTIONS(5061), - [anon_sym_GT_GT_GT] = ACTIONS(5059), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_GT_EQ] = ACTIONS(5059), - [anon_sym_LT_EQ] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_switch] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5059), - [anon_sym_and] = ACTIONS(5059), - [anon_sym_or] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5059), - [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_QMARK_QMARK] = ACTIONS(5059), - [anon_sym_from] = ACTIONS(5059), - [anon_sym_into] = ACTIONS(5059), - [anon_sym_join] = ACTIONS(5059), - [anon_sym_let] = ACTIONS(5059), - [anon_sym_orderby] = ACTIONS(5059), - [anon_sym_ascending] = ACTIONS(5059), - [anon_sym_descending] = ACTIONS(5059), - [anon_sym_group] = ACTIONS(5059), - [anon_sym_select] = ACTIONS(5059), - [anon_sym_as] = ACTIONS(5061), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5059), - [anon_sym_with] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_COMMA] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_LT] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5490), + [anon_sym_where] = ACTIONS(5488), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_BANG] = ACTIONS(5490), + [anon_sym_PLUS_PLUS] = ACTIONS(5488), + [anon_sym_DASH_DASH] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5490), + [anon_sym_PERCENT] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5488), + [anon_sym_PIPE] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5490), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_GT_GT_GT] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5488), + [anon_sym_BANG_EQ] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5488), + [anon_sym_LT_EQ] = ACTIONS(5488), + [anon_sym_DOT] = ACTIONS(5490), + [anon_sym_switch] = ACTIONS(5488), + [anon_sym_DOT_DOT] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_or] = ACTIONS(5490), + [anon_sym_AMP_AMP] = ACTIONS(5488), + [anon_sym_PIPE_PIPE] = ACTIONS(5488), + [anon_sym_QMARK_QMARK] = ACTIONS(5488), + [anon_sym_from] = ACTIONS(5488), + [anon_sym_into] = ACTIONS(5488), + [anon_sym_join] = ACTIONS(5488), + [anon_sym_let] = ACTIONS(5488), + [anon_sym_orderby] = ACTIONS(5488), + [anon_sym_ascending] = ACTIONS(5488), + [anon_sym_descending] = ACTIONS(5488), + [anon_sym_group] = ACTIONS(5488), + [anon_sym_select] = ACTIONS(5488), + [anon_sym_as] = ACTIONS(5490), + [anon_sym_is] = ACTIONS(5488), + [anon_sym_DASH_GT] = ACTIONS(5488), + [anon_sym_with] = ACTIONS(5488), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530677,6 +530712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3818] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3818), [sym_preproc_endregion] = STATE(3818), [sym_preproc_line] = STATE(3818), @@ -530686,52 +530723,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3818), [sym_preproc_define] = STATE(3818), [sym_preproc_undef] = STATE(3818), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_where] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_from] = ACTIONS(5460), - [anon_sym_into] = ACTIONS(5460), - [anon_sym_join] = ACTIONS(5460), - [anon_sym_let] = ACTIONS(5460), - [anon_sym_orderby] = ACTIONS(5460), - [anon_sym_ascending] = ACTIONS(5460), - [anon_sym_descending] = ACTIONS(5460), - [anon_sym_group] = ACTIONS(5460), - [anon_sym_select] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5462), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530753,52 +530788,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3819), [sym_preproc_define] = STATE(3819), [sym_preproc_undef] = STATE(3819), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_COMMA] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5462), - [anon_sym_where] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5462), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_PIPE] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5462), - [anon_sym_GT_GT_GT] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5460), - [anon_sym_BANG_EQ] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5460), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(5462), - [anon_sym_switch] = ACTIONS(5460), - [anon_sym_DOT_DOT] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5460), - [anon_sym_QMARK_QMARK] = ACTIONS(5460), - [anon_sym_from] = ACTIONS(5460), - [anon_sym_into] = ACTIONS(5460), - [anon_sym_join] = ACTIONS(5460), - [anon_sym_let] = ACTIONS(5460), - [anon_sym_orderby] = ACTIONS(5460), - [anon_sym_ascending] = ACTIONS(5460), - [anon_sym_descending] = ACTIONS(5460), - [anon_sym_group] = ACTIONS(5460), - [anon_sym_select] = ACTIONS(5460), - [anon_sym_as] = ACTIONS(5462), - [anon_sym_is] = ACTIONS(5460), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_with] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_COMMA] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5482), + [anon_sym_where] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_BANG] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5480), + [anon_sym_PIPE] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5482), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_GT_GT_GT] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5480), + [anon_sym_BANG_EQ] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5480), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_DOT] = ACTIONS(5482), + [anon_sym_switch] = ACTIONS(5480), + [anon_sym_DOT_DOT] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_or] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(5480), + [anon_sym_QMARK_QMARK] = ACTIONS(5480), + [anon_sym_from] = ACTIONS(5480), + [anon_sym_into] = ACTIONS(5480), + [anon_sym_join] = ACTIONS(5480), + [anon_sym_let] = ACTIONS(5480), + [anon_sym_orderby] = ACTIONS(5480), + [anon_sym_ascending] = ACTIONS(5480), + [anon_sym_descending] = ACTIONS(5480), + [anon_sym_group] = ACTIONS(5480), + [anon_sym_select] = ACTIONS(5480), + [anon_sym_as] = ACTIONS(5482), + [anon_sym_is] = ACTIONS(5480), + [anon_sym_DASH_GT] = ACTIONS(5480), + [anon_sym_with] = ACTIONS(5480), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530820,52 +530855,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3820), [sym_preproc_define] = STATE(3820), [sym_preproc_undef] = STATE(3820), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_LPAREN] = ACTIONS(5168), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_where] = ACTIONS(5168), - [anon_sym_QMARK] = ACTIONS(5170), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_CARET] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5170), - [anon_sym_GT_GT_GT] = ACTIONS(5168), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5170), - [anon_sym_switch] = ACTIONS(5168), - [anon_sym_DOT_DOT] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_QMARK_QMARK] = ACTIONS(5168), - [anon_sym_from] = ACTIONS(5168), - [anon_sym_into] = ACTIONS(5168), - [anon_sym_join] = ACTIONS(5168), - [anon_sym_let] = ACTIONS(5168), - [anon_sym_orderby] = ACTIONS(5168), - [anon_sym_ascending] = ACTIONS(5168), - [anon_sym_descending] = ACTIONS(5168), - [anon_sym_group] = ACTIONS(5168), - [anon_sym_select] = ACTIONS(5168), - [anon_sym_as] = ACTIONS(5170), - [anon_sym_is] = ACTIONS(5168), - [anon_sym_DASH_GT] = ACTIONS(5168), - [anon_sym_with] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_where] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_from] = ACTIONS(5417), + [anon_sym_into] = ACTIONS(5417), + [anon_sym_join] = ACTIONS(5417), + [anon_sym_let] = ACTIONS(5417), + [anon_sym_orderby] = ACTIONS(5417), + [anon_sym_ascending] = ACTIONS(5417), + [anon_sym_descending] = ACTIONS(5417), + [anon_sym_group] = ACTIONS(5417), + [anon_sym_select] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5419), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530887,52 +530922,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3821), [sym_preproc_define] = STATE(3821), [sym_preproc_undef] = STATE(3821), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_LT] = ACTIONS(5466), - [anon_sym_GT] = ACTIONS(5466), - [anon_sym_where] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(5466), - [anon_sym_BANG] = ACTIONS(5466), - [anon_sym_PLUS_PLUS] = ACTIONS(5464), - [anon_sym_DASH_DASH] = ACTIONS(5464), - [anon_sym_PLUS] = ACTIONS(5466), - [anon_sym_DASH] = ACTIONS(5466), - [anon_sym_STAR] = ACTIONS(5464), - [anon_sym_SLASH] = ACTIONS(5466), - [anon_sym_PERCENT] = ACTIONS(5464), - [anon_sym_CARET] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5466), - [anon_sym_AMP] = ACTIONS(5466), - [anon_sym_LT_LT] = ACTIONS(5464), - [anon_sym_GT_GT] = ACTIONS(5466), - [anon_sym_GT_GT_GT] = ACTIONS(5464), - [anon_sym_EQ_EQ] = ACTIONS(5464), - [anon_sym_BANG_EQ] = ACTIONS(5464), - [anon_sym_GT_EQ] = ACTIONS(5464), - [anon_sym_LT_EQ] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_switch] = ACTIONS(5464), - [anon_sym_DOT_DOT] = ACTIONS(5464), - [anon_sym_and] = ACTIONS(5464), - [anon_sym_or] = ACTIONS(5466), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE_PIPE] = ACTIONS(5464), - [anon_sym_QMARK_QMARK] = ACTIONS(5464), - [anon_sym_from] = ACTIONS(5464), - [anon_sym_into] = ACTIONS(5464), - [anon_sym_join] = ACTIONS(5464), - [anon_sym_let] = ACTIONS(5464), - [anon_sym_orderby] = ACTIONS(5464), - [anon_sym_ascending] = ACTIONS(5464), - [anon_sym_descending] = ACTIONS(5464), - [anon_sym_group] = ACTIONS(5464), - [anon_sym_select] = ACTIONS(5464), - [anon_sym_as] = ACTIONS(5466), - [anon_sym_is] = ACTIONS(5464), - [anon_sym_DASH_GT] = ACTIONS(5464), - [anon_sym_with] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_COMMA] = ACTIONS(5417), + [anon_sym_LPAREN] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5419), + [anon_sym_where] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_BANG] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_PIPE] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5419), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_GT_GT_GT] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5417), + [anon_sym_BANG_EQ] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_DOT] = ACTIONS(5419), + [anon_sym_switch] = ACTIONS(5417), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_or] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5417), + [anon_sym_QMARK_QMARK] = ACTIONS(5417), + [anon_sym_from] = ACTIONS(5417), + [anon_sym_into] = ACTIONS(5417), + [anon_sym_join] = ACTIONS(5417), + [anon_sym_let] = ACTIONS(5417), + [anon_sym_orderby] = ACTIONS(5417), + [anon_sym_ascending] = ACTIONS(5417), + [anon_sym_descending] = ACTIONS(5417), + [anon_sym_group] = ACTIONS(5417), + [anon_sym_select] = ACTIONS(5417), + [anon_sym_as] = ACTIONS(5419), + [anon_sym_is] = ACTIONS(5417), + [anon_sym_DASH_GT] = ACTIONS(5417), + [anon_sym_with] = ACTIONS(5417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530945,6 +530980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3822] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3822), [sym_preproc_endregion] = STATE(3822), [sym_preproc_line] = STATE(3822), @@ -530954,52 +530991,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3822), [sym_preproc_define] = STATE(3822), [sym_preproc_undef] = STATE(3822), - [anon_sym_LBRACK] = ACTIONS(5468), - [anon_sym_COMMA] = ACTIONS(5468), - [anon_sym_LPAREN] = ACTIONS(5468), - [anon_sym_LT] = ACTIONS(5470), - [anon_sym_GT] = ACTIONS(5470), - [anon_sym_where] = ACTIONS(5468), - [anon_sym_QMARK] = ACTIONS(5470), - [anon_sym_BANG] = ACTIONS(5470), - [anon_sym_PLUS_PLUS] = ACTIONS(5468), - [anon_sym_DASH_DASH] = ACTIONS(5468), - [anon_sym_PLUS] = ACTIONS(5470), - [anon_sym_DASH] = ACTIONS(5470), - [anon_sym_STAR] = ACTIONS(5468), - [anon_sym_SLASH] = ACTIONS(5470), - [anon_sym_PERCENT] = ACTIONS(5468), - [anon_sym_CARET] = ACTIONS(5468), - [anon_sym_PIPE] = ACTIONS(5470), - [anon_sym_AMP] = ACTIONS(5470), - [anon_sym_LT_LT] = ACTIONS(5468), - [anon_sym_GT_GT] = ACTIONS(5470), - [anon_sym_GT_GT_GT] = ACTIONS(5468), - [anon_sym_EQ_EQ] = ACTIONS(5468), - [anon_sym_BANG_EQ] = ACTIONS(5468), - [anon_sym_GT_EQ] = ACTIONS(5468), - [anon_sym_LT_EQ] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(5470), - [anon_sym_switch] = ACTIONS(5468), - [anon_sym_DOT_DOT] = ACTIONS(5468), - [anon_sym_and] = ACTIONS(5468), - [anon_sym_or] = ACTIONS(5470), - [anon_sym_AMP_AMP] = ACTIONS(5468), - [anon_sym_PIPE_PIPE] = ACTIONS(5468), - [anon_sym_QMARK_QMARK] = ACTIONS(5468), - [anon_sym_from] = ACTIONS(5468), - [anon_sym_into] = ACTIONS(5468), - [anon_sym_join] = ACTIONS(5468), - [anon_sym_let] = ACTIONS(5468), - [anon_sym_orderby] = ACTIONS(5468), - [anon_sym_ascending] = ACTIONS(5468), - [anon_sym_descending] = ACTIONS(5468), - [anon_sym_group] = ACTIONS(5468), - [anon_sym_select] = ACTIONS(5468), - [anon_sym_as] = ACTIONS(5470), - [anon_sym_is] = ACTIONS(5468), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_with] = ACTIONS(5468), + [anon_sym_SEMI] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5870), + [anon_sym_RBRACK] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5870), + [anon_sym_or] = ACTIONS(5870), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5870), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5870), + [aux_sym_preproc_else_token1] = ACTIONS(5870), + [aux_sym_preproc_elif_token1] = ACTIONS(5870), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531012,6 +531047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3823] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3823), [sym_preproc_endregion] = STATE(3823), [sym_preproc_line] = STATE(3823), @@ -531021,52 +531058,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3823), [sym_preproc_define] = STATE(3823), [sym_preproc_undef] = STATE(3823), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5172), - [anon_sym_LT] = ACTIONS(5174), - [anon_sym_GT] = ACTIONS(5174), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_CARET] = ACTIONS(5172), - [anon_sym_PIPE] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_LT_LT] = ACTIONS(5172), - [anon_sym_GT_GT] = ACTIONS(5174), - [anon_sym_GT_GT_GT] = ACTIONS(5172), - [anon_sym_EQ_EQ] = ACTIONS(5172), - [anon_sym_BANG_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_switch] = ACTIONS(5172), - [anon_sym_DOT_DOT] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_QMARK_QMARK] = ACTIONS(5172), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_ascending] = ACTIONS(5172), - [anon_sym_descending] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5174), - [anon_sym_is] = ACTIONS(5172), - [anon_sym_DASH_GT] = ACTIONS(5172), - [anon_sym_with] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5238), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5238), + [aux_sym_preproc_else_token1] = ACTIONS(5238), + [aux_sym_preproc_elif_token1] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531079,24 +531114,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3824] = { - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3228), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3262), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), [sym_preproc_region] = STATE(3824), [sym_preproc_endregion] = STATE(3824), [sym_preproc_line] = STATE(3824), @@ -531106,34 +531123,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3824), [sym_preproc_define] = STATE(3824), [sym_preproc_undef] = STATE(3824), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_ref] = ACTIONS(4084), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_readonly] = ACTIONS(6209), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5806), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_QMARK] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5151), + [anon_sym_AMP] = ACTIONS(5151), + [anon_sym_LT_LT] = ACTIONS(5149), + [anon_sym_GT_GT] = ACTIONS(5151), + [anon_sym_GT_GT_GT] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_switch] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_and] = ACTIONS(5149), + [anon_sym_or] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_QMARK_QMARK] = ACTIONS(5149), + [anon_sym_from] = ACTIONS(5149), + [anon_sym_into] = ACTIONS(5149), + [anon_sym_join] = ACTIONS(5149), + [anon_sym_let] = ACTIONS(5149), + [anon_sym_orderby] = ACTIONS(5149), + [anon_sym_ascending] = ACTIONS(5149), + [anon_sym_descending] = ACTIONS(5149), + [anon_sym_group] = ACTIONS(5149), + [anon_sym_select] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), + [anon_sym_with] = ACTIONS(5149), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531155,52 +531190,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3825), [sym_preproc_define] = STATE(3825), [sym_preproc_undef] = STATE(3825), - [anon_sym_LBRACK] = ACTIONS(5224), - [anon_sym_COMMA] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5224), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_where] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_BANG] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_SLASH] = ACTIONS(5226), - [anon_sym_PERCENT] = ACTIONS(5224), - [anon_sym_CARET] = ACTIONS(5224), - [anon_sym_PIPE] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5224), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_GT_GT_GT] = ACTIONS(5224), - [anon_sym_EQ_EQ] = ACTIONS(5224), - [anon_sym_BANG_EQ] = ACTIONS(5224), - [anon_sym_GT_EQ] = ACTIONS(5224), - [anon_sym_LT_EQ] = ACTIONS(5224), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_switch] = ACTIONS(5224), - [anon_sym_DOT_DOT] = ACTIONS(5224), - [anon_sym_and] = ACTIONS(5224), - [anon_sym_or] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5224), - [anon_sym_PIPE_PIPE] = ACTIONS(5224), - [anon_sym_QMARK_QMARK] = ACTIONS(5224), - [anon_sym_from] = ACTIONS(5224), - [anon_sym_into] = ACTIONS(5224), - [anon_sym_join] = ACTIONS(5224), - [anon_sym_let] = ACTIONS(5224), - [anon_sym_orderby] = ACTIONS(5224), - [anon_sym_ascending] = ACTIONS(5224), - [anon_sym_descending] = ACTIONS(5224), - [anon_sym_group] = ACTIONS(5224), - [anon_sym_select] = ACTIONS(5224), - [anon_sym_as] = ACTIONS(5226), - [anon_sym_is] = ACTIONS(5224), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_with] = ACTIONS(5224), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531213,25 +531248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3826] = { - [sym_variable_declaration] = STATE(7579), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5973), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3826), [sym_preproc_endregion] = STATE(3826), [sym_preproc_line] = STATE(3826), @@ -531241,33 +531259,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3826), [sym_preproc_define] = STATE(3826), [sym_preproc_undef] = STATE(3826), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RBRACK] = ACTIONS(5874), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5874), + [anon_sym_or] = ACTIONS(5874), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5874), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5874), + [aux_sym_preproc_else_token1] = ACTIONS(5874), + [aux_sym_preproc_elif_token1] = ACTIONS(5874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531280,25 +531315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3827] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7239), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3827), [sym_preproc_endregion] = STATE(3827), [sym_preproc_line] = STATE(3827), @@ -531308,18 +531324,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3827), [sym_preproc_define] = STATE(3827), [sym_preproc_undef] = STATE(3827), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5486), + [anon_sym_where] = ACTIONS(5484), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_BANG] = ACTIONS(5486), + [anon_sym_PLUS_PLUS] = ACTIONS(5484), + [anon_sym_DASH_DASH] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5486), + [anon_sym_PERCENT] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5484), + [anon_sym_PIPE] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5486), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_GT_GT_GT] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5484), + [anon_sym_BANG_EQ] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5484), + [anon_sym_LT_EQ] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(5486), + [anon_sym_switch] = ACTIONS(5484), + [anon_sym_DOT_DOT] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_or] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5484), + [anon_sym_PIPE_PIPE] = ACTIONS(5484), + [anon_sym_QMARK_QMARK] = ACTIONS(5484), + [anon_sym_from] = ACTIONS(5484), + [anon_sym_into] = ACTIONS(5484), + [anon_sym_join] = ACTIONS(5484), + [anon_sym_let] = ACTIONS(5484), + [anon_sym_orderby] = ACTIONS(5484), + [anon_sym_ascending] = ACTIONS(5484), + [anon_sym_descending] = ACTIONS(5484), + [anon_sym_group] = ACTIONS(5484), + [anon_sym_select] = ACTIONS(5484), + [anon_sym_as] = ACTIONS(5486), + [anon_sym_is] = ACTIONS(5484), + [anon_sym_DASH_GT] = ACTIONS(5484), + [anon_sym_with] = ACTIONS(5484), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3828] = { + [sym_variable_declaration] = STATE(7419), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5969), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), + [sym_preproc_region] = STATE(3828), + [sym_preproc_endregion] = STATE(3828), + [sym_preproc_line] = STATE(3828), + [sym_preproc_pragma] = STATE(3828), + [sym_preproc_nullable] = STATE(3828), + [sym_preproc_error] = STATE(3828), + [sym_preproc_warning] = STATE(3828), + [sym_preproc_define] = STATE(3828), + [sym_preproc_undef] = STATE(3828), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), + [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -531346,92 +531448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3828] = { - [sym_preproc_region] = STATE(3828), - [sym_preproc_endregion] = STATE(3828), - [sym_preproc_line] = STATE(3828), - [sym_preproc_pragma] = STATE(3828), - [sym_preproc_nullable] = STATE(3828), - [sym_preproc_error] = STATE(3828), - [sym_preproc_warning] = STATE(3828), - [sym_preproc_define] = STATE(3828), - [sym_preproc_undef] = STATE(3828), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5152), - [anon_sym_LT] = ACTIONS(5154), - [anon_sym_GT] = ACTIONS(5154), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(5154), - [anon_sym_PLUS_PLUS] = ACTIONS(5152), - [anon_sym_DASH_DASH] = ACTIONS(5152), - [anon_sym_PLUS] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5152), - [anon_sym_SLASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5152), - [anon_sym_CARET] = ACTIONS(5152), - [anon_sym_PIPE] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5154), - [anon_sym_LT_LT] = ACTIONS(5152), - [anon_sym_GT_GT] = ACTIONS(5154), - [anon_sym_GT_GT_GT] = ACTIONS(5152), - [anon_sym_EQ_EQ] = ACTIONS(5152), - [anon_sym_BANG_EQ] = ACTIONS(5152), - [anon_sym_GT_EQ] = ACTIONS(5152), - [anon_sym_LT_EQ] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_switch] = ACTIONS(5152), - [anon_sym_DOT_DOT] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5154), - [anon_sym_AMP_AMP] = ACTIONS(5152), - [anon_sym_PIPE_PIPE] = ACTIONS(5152), - [anon_sym_QMARK_QMARK] = ACTIONS(5152), - [anon_sym_from] = ACTIONS(5152), - [anon_sym_into] = ACTIONS(5152), - [anon_sym_join] = ACTIONS(5152), - [anon_sym_let] = ACTIONS(5152), - [anon_sym_orderby] = ACTIONS(5152), - [anon_sym_ascending] = ACTIONS(5152), - [anon_sym_descending] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), - [anon_sym_as] = ACTIONS(5154), - [anon_sym_is] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_with] = ACTIONS(5152), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3829] = { - [sym__name] = STATE(2456), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(2408), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2376), - [sym__reserved_identifier] = STATE(2378), [sym_preproc_region] = STATE(3829), [sym_preproc_endregion] = STATE(3829), [sym_preproc_line] = STATE(3829), @@ -531441,34 +531458,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3829), [sym_preproc_define] = STATE(3829), [sym_preproc_undef] = STATE(3829), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_readonly] = ACTIONS(6211), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(5836), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_where] = ACTIONS(5407), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5409), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_from] = ACTIONS(5407), + [anon_sym_into] = ACTIONS(5407), + [anon_sym_join] = ACTIONS(5407), + [anon_sym_let] = ACTIONS(5407), + [anon_sym_orderby] = ACTIONS(5407), + [anon_sym_ascending] = ACTIONS(5407), + [anon_sym_descending] = ACTIONS(5407), + [anon_sym_group] = ACTIONS(5407), + [anon_sym_select] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5409), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531490,52 +531525,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3830), [sym_preproc_define] = STATE(3830), [sym_preproc_undef] = STATE(3830), - [anon_sym_LBRACK] = ACTIONS(5196), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_LPAREN] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_where] = ACTIONS(5196), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_BANG] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5196), - [anon_sym_DASH_DASH] = ACTIONS(5196), - [anon_sym_PLUS] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5196), - [anon_sym_CARET] = ACTIONS(5196), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_LT_LT] = ACTIONS(5196), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_GT_GT_GT] = ACTIONS(5196), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_switch] = ACTIONS(5196), - [anon_sym_DOT_DOT] = ACTIONS(5196), - [anon_sym_and] = ACTIONS(5196), - [anon_sym_or] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_QMARK_QMARK] = ACTIONS(5196), - [anon_sym_from] = ACTIONS(5196), - [anon_sym_into] = ACTIONS(5196), - [anon_sym_join] = ACTIONS(5196), - [anon_sym_let] = ACTIONS(5196), - [anon_sym_orderby] = ACTIONS(5196), - [anon_sym_ascending] = ACTIONS(5196), - [anon_sym_descending] = ACTIONS(5196), - [anon_sym_group] = ACTIONS(5196), - [anon_sym_select] = ACTIONS(5196), - [anon_sym_as] = ACTIONS(5198), - [anon_sym_is] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [anon_sym_with] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(5441), + [anon_sym_COMMA] = ACTIONS(5441), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(5443), + [anon_sym_GT] = ACTIONS(5443), + [anon_sym_where] = ACTIONS(5441), + [anon_sym_QMARK] = ACTIONS(5443), + [anon_sym_BANG] = ACTIONS(5443), + [anon_sym_PLUS_PLUS] = ACTIONS(5441), + [anon_sym_DASH_DASH] = ACTIONS(5441), + [anon_sym_PLUS] = ACTIONS(5443), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(5441), + [anon_sym_SLASH] = ACTIONS(5443), + [anon_sym_PERCENT] = ACTIONS(5441), + [anon_sym_CARET] = ACTIONS(5441), + [anon_sym_PIPE] = ACTIONS(5443), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym_LT_LT] = ACTIONS(5441), + [anon_sym_GT_GT] = ACTIONS(5443), + [anon_sym_GT_GT_GT] = ACTIONS(5441), + [anon_sym_EQ_EQ] = ACTIONS(5441), + [anon_sym_BANG_EQ] = ACTIONS(5441), + [anon_sym_GT_EQ] = ACTIONS(5441), + [anon_sym_LT_EQ] = ACTIONS(5441), + [anon_sym_DOT] = ACTIONS(5443), + [anon_sym_switch] = ACTIONS(5441), + [anon_sym_DOT_DOT] = ACTIONS(5441), + [anon_sym_and] = ACTIONS(5441), + [anon_sym_or] = ACTIONS(5443), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_PIPE_PIPE] = ACTIONS(5441), + [anon_sym_QMARK_QMARK] = ACTIONS(5441), + [anon_sym_from] = ACTIONS(5441), + [anon_sym_into] = ACTIONS(5441), + [anon_sym_join] = ACTIONS(5441), + [anon_sym_let] = ACTIONS(5441), + [anon_sym_orderby] = ACTIONS(5441), + [anon_sym_ascending] = ACTIONS(5441), + [anon_sym_descending] = ACTIONS(5441), + [anon_sym_group] = ACTIONS(5441), + [anon_sym_select] = ACTIONS(5441), + [anon_sym_as] = ACTIONS(5443), + [anon_sym_is] = ACTIONS(5441), + [anon_sym_DASH_GT] = ACTIONS(5441), + [anon_sym_with] = ACTIONS(5441), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531548,8 +531583,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3831] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7289), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3831), [sym_preproc_endregion] = STATE(3831), [sym_preproc_line] = STATE(3831), @@ -531559,102 +531611,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3831), [sym_preproc_define] = STATE(3831), [sym_preproc_undef] = STATE(3831), - [anon_sym_SEMI] = ACTIONS(5909), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5909), - [anon_sym_RBRACK] = ACTIONS(5909), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5909), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5909), - [anon_sym_or] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5909), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5909), - [aux_sym_preproc_else_token1] = ACTIONS(5909), - [aux_sym_preproc_elif_token1] = ACTIONS(5909), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3832] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3832), - [sym_preproc_endregion] = STATE(3832), - [sym_preproc_line] = STATE(3832), - [sym_preproc_pragma] = STATE(3832), - [sym_preproc_nullable] = STATE(3832), - [sym_preproc_error] = STATE(3832), - [sym_preproc_warning] = STATE(3832), - [sym_preproc_define] = STATE(3832), - [sym_preproc_undef] = STATE(3832), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5623), + [anon_sym_ref] = ACTIONS(3618), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6213), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5627), - [anon_sym_var] = ACTIONS(3023), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -531681,26 +531649,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3832] = { + [sym_preproc_region] = STATE(3832), + [sym_preproc_endregion] = STATE(3832), + [sym_preproc_line] = STATE(3832), + [sym_preproc_pragma] = STATE(3832), + [sym_preproc_nullable] = STATE(3832), + [sym_preproc_error] = STATE(3832), + [sym_preproc_warning] = STATE(3832), + [sym_preproc_define] = STATE(3832), + [sym_preproc_undef] = STATE(3832), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_where] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_from] = ACTIONS(5388), + [anon_sym_into] = ACTIONS(5388), + [anon_sym_join] = ACTIONS(5388), + [anon_sym_let] = ACTIONS(5388), + [anon_sym_orderby] = ACTIONS(5388), + [anon_sym_ascending] = ACTIONS(5388), + [anon_sym_descending] = ACTIONS(5388), + [anon_sym_group] = ACTIONS(5388), + [anon_sym_select] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5390), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3833] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6158), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym__join_header] = STATE(7259), - [sym_identifier] = STATE(5840), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3833), [sym_preproc_endregion] = STATE(3833), [sym_preproc_line] = STATE(3833), @@ -531710,33 +531726,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3833), [sym_preproc_define] = STATE(3833), [sym_preproc_undef] = STATE(3833), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5388), + [anon_sym_COMMA] = ACTIONS(5388), + [anon_sym_LPAREN] = ACTIONS(5388), + [anon_sym_LT] = ACTIONS(5390), + [anon_sym_GT] = ACTIONS(5390), + [anon_sym_where] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5390), + [anon_sym_PLUS_PLUS] = ACTIONS(5388), + [anon_sym_DASH_DASH] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_SLASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5388), + [anon_sym_CARET] = ACTIONS(5388), + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5390), + [anon_sym_LT_LT] = ACTIONS(5388), + [anon_sym_GT_GT] = ACTIONS(5390), + [anon_sym_GT_GT_GT] = ACTIONS(5388), + [anon_sym_EQ_EQ] = ACTIONS(5388), + [anon_sym_BANG_EQ] = ACTIONS(5388), + [anon_sym_GT_EQ] = ACTIONS(5388), + [anon_sym_LT_EQ] = ACTIONS(5388), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_switch] = ACTIONS(5388), + [anon_sym_DOT_DOT] = ACTIONS(5388), + [anon_sym_and] = ACTIONS(5388), + [anon_sym_or] = ACTIONS(5390), + [anon_sym_AMP_AMP] = ACTIONS(5388), + [anon_sym_PIPE_PIPE] = ACTIONS(5388), + [anon_sym_QMARK_QMARK] = ACTIONS(5388), + [anon_sym_from] = ACTIONS(5388), + [anon_sym_into] = ACTIONS(5388), + [anon_sym_join] = ACTIONS(5388), + [anon_sym_let] = ACTIONS(5388), + [anon_sym_orderby] = ACTIONS(5388), + [anon_sym_ascending] = ACTIONS(5388), + [anon_sym_descending] = ACTIONS(5388), + [anon_sym_group] = ACTIONS(5388), + [anon_sym_select] = ACTIONS(5388), + [anon_sym_as] = ACTIONS(5390), + [anon_sym_is] = ACTIONS(5388), + [anon_sym_DASH_GT] = ACTIONS(5388), + [anon_sym_with] = ACTIONS(5388), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531758,52 +531793,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3834), [sym_preproc_define] = STATE(3834), [sym_preproc_undef] = STATE(3834), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(5184), - [anon_sym_LT] = ACTIONS(5186), - [anon_sym_GT] = ACTIONS(5186), - [anon_sym_where] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_BANG] = ACTIONS(5186), - [anon_sym_PLUS_PLUS] = ACTIONS(5184), - [anon_sym_DASH_DASH] = ACTIONS(5184), - [anon_sym_PLUS] = ACTIONS(5186), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_SLASH] = ACTIONS(5186), - [anon_sym_PERCENT] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5186), - [anon_sym_GT_GT_GT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5184), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_DOT] = ACTIONS(5186), - [anon_sym_switch] = ACTIONS(5184), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5186), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_QMARK_QMARK] = ACTIONS(5184), - [anon_sym_from] = ACTIONS(5184), - [anon_sym_into] = ACTIONS(5184), - [anon_sym_join] = ACTIONS(5184), - [anon_sym_let] = ACTIONS(5184), - [anon_sym_orderby] = ACTIONS(5184), - [anon_sym_ascending] = ACTIONS(5184), - [anon_sym_descending] = ACTIONS(5184), - [anon_sym_group] = ACTIONS(5184), - [anon_sym_select] = ACTIONS(5184), - [anon_sym_as] = ACTIONS(5186), - [anon_sym_is] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5184), - [anon_sym_with] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_COMMA] = ACTIONS(5403), + [anon_sym_LPAREN] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5405), + [anon_sym_GT] = ACTIONS(5405), + [anon_sym_where] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5405), + [anon_sym_BANG] = ACTIONS(5405), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_SLASH] = ACTIONS(5405), + [anon_sym_PERCENT] = ACTIONS(5403), + [anon_sym_CARET] = ACTIONS(5403), + [anon_sym_PIPE] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym_LT_LT] = ACTIONS(5403), + [anon_sym_GT_GT] = ACTIONS(5405), + [anon_sym_GT_GT_GT] = ACTIONS(5403), + [anon_sym_EQ_EQ] = ACTIONS(5403), + [anon_sym_BANG_EQ] = ACTIONS(5403), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5403), + [anon_sym_DOT] = ACTIONS(5405), + [anon_sym_switch] = ACTIONS(5403), + [anon_sym_DOT_DOT] = ACTIONS(5403), + [anon_sym_and] = ACTIONS(5403), + [anon_sym_or] = ACTIONS(5405), + [anon_sym_AMP_AMP] = ACTIONS(5403), + [anon_sym_PIPE_PIPE] = ACTIONS(5403), + [anon_sym_QMARK_QMARK] = ACTIONS(5403), + [anon_sym_from] = ACTIONS(5403), + [anon_sym_into] = ACTIONS(5403), + [anon_sym_join] = ACTIONS(5403), + [anon_sym_let] = ACTIONS(5403), + [anon_sym_orderby] = ACTIONS(5403), + [anon_sym_ascending] = ACTIONS(5403), + [anon_sym_descending] = ACTIONS(5403), + [anon_sym_group] = ACTIONS(5403), + [anon_sym_select] = ACTIONS(5403), + [anon_sym_as] = ACTIONS(5405), + [anon_sym_is] = ACTIONS(5403), + [anon_sym_DASH_GT] = ACTIONS(5403), + [anon_sym_with] = ACTIONS(5403), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531825,52 +531860,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3835), [sym_preproc_define] = STATE(3835), [sym_preproc_undef] = STATE(3835), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_LPAREN] = ACTIONS(5180), - [anon_sym_LT] = ACTIONS(5182), - [anon_sym_GT] = ACTIONS(5182), - [anon_sym_where] = ACTIONS(5180), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_PLUS_PLUS] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(5180), - [anon_sym_PLUS] = ACTIONS(5182), - [anon_sym_DASH] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5182), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_CARET] = ACTIONS(5180), - [anon_sym_PIPE] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_LT_LT] = ACTIONS(5180), - [anon_sym_GT_GT] = ACTIONS(5182), - [anon_sym_GT_GT_GT] = ACTIONS(5180), - [anon_sym_EQ_EQ] = ACTIONS(5180), - [anon_sym_BANG_EQ] = ACTIONS(5180), - [anon_sym_GT_EQ] = ACTIONS(5180), - [anon_sym_LT_EQ] = ACTIONS(5180), - [anon_sym_DOT] = ACTIONS(5182), - [anon_sym_switch] = ACTIONS(5180), - [anon_sym_DOT_DOT] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_QMARK_QMARK] = ACTIONS(5180), - [anon_sym_from] = ACTIONS(5180), - [anon_sym_into] = ACTIONS(5180), - [anon_sym_join] = ACTIONS(5180), - [anon_sym_let] = ACTIONS(5180), - [anon_sym_orderby] = ACTIONS(5180), - [anon_sym_ascending] = ACTIONS(5180), - [anon_sym_descending] = ACTIONS(5180), - [anon_sym_group] = ACTIONS(5180), - [anon_sym_select] = ACTIONS(5180), - [anon_sym_as] = ACTIONS(5182), - [anon_sym_is] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5180), - [anon_sym_with] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5141), + [anon_sym_LT_LT] = ACTIONS(5139), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_GT_GT_GT] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_switch] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_and] = ACTIONS(5139), + [anon_sym_or] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_QMARK_QMARK] = ACTIONS(5139), + [anon_sym_from] = ACTIONS(5139), + [anon_sym_into] = ACTIONS(5139), + [anon_sym_join] = ACTIONS(5139), + [anon_sym_let] = ACTIONS(5139), + [anon_sym_orderby] = ACTIONS(5139), + [anon_sym_ascending] = ACTIONS(5139), + [anon_sym_descending] = ACTIONS(5139), + [anon_sym_group] = ACTIONS(5139), + [anon_sym_select] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5139), + [anon_sym_with] = ACTIONS(5139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531892,52 +531927,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3836), [sym_preproc_define] = STATE(3836), [sym_preproc_undef] = STATE(3836), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_and] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2107), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_from] = ACTIONS(2105), - [anon_sym_into] = ACTIONS(2105), - [anon_sym_join] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_orderby] = ACTIONS(2105), - [anon_sym_ascending] = ACTIONS(2105), - [anon_sym_descending] = ACTIONS(2105), - [anon_sym_group] = ACTIONS(2105), - [anon_sym_select] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_DASH_GT] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(5411), + [anon_sym_COMMA] = ACTIONS(5411), + [anon_sym_LPAREN] = ACTIONS(5411), + [anon_sym_LT] = ACTIONS(5413), + [anon_sym_GT] = ACTIONS(5413), + [anon_sym_where] = ACTIONS(5411), + [anon_sym_QMARK] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5413), + [anon_sym_DASH] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5411), + [anon_sym_SLASH] = ACTIONS(5413), + [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_CARET] = ACTIONS(5411), + [anon_sym_PIPE] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_LT_LT] = ACTIONS(5411), + [anon_sym_GT_GT] = ACTIONS(5413), + [anon_sym_GT_GT_GT] = ACTIONS(5411), + [anon_sym_EQ_EQ] = ACTIONS(5411), + [anon_sym_BANG_EQ] = ACTIONS(5411), + [anon_sym_GT_EQ] = ACTIONS(5411), + [anon_sym_LT_EQ] = ACTIONS(5411), + [anon_sym_DOT] = ACTIONS(5413), + [anon_sym_switch] = ACTIONS(5411), + [anon_sym_DOT_DOT] = ACTIONS(5411), + [anon_sym_and] = ACTIONS(5411), + [anon_sym_or] = ACTIONS(5413), + [anon_sym_AMP_AMP] = ACTIONS(5411), + [anon_sym_PIPE_PIPE] = ACTIONS(5411), + [anon_sym_QMARK_QMARK] = ACTIONS(5411), + [anon_sym_from] = ACTIONS(5411), + [anon_sym_into] = ACTIONS(5411), + [anon_sym_join] = ACTIONS(5411), + [anon_sym_let] = ACTIONS(5411), + [anon_sym_orderby] = ACTIONS(5411), + [anon_sym_ascending] = ACTIONS(5411), + [anon_sym_descending] = ACTIONS(5411), + [anon_sym_group] = ACTIONS(5411), + [anon_sym_select] = ACTIONS(5411), + [anon_sym_as] = ACTIONS(5413), + [anon_sym_is] = ACTIONS(5411), + [anon_sym_DASH_GT] = ACTIONS(5411), + [anon_sym_with] = ACTIONS(5411), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531950,25 +531985,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3837] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7116), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7146), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3837), [sym_preproc_endregion] = STATE(3837), [sym_preproc_line] = STATE(3837), @@ -531982,14 +532017,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), + [anon_sym_ref] = ACTIONS(3660), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(6089), + [anon_sym_var] = ACTIONS(6091), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -532017,25 +532052,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3838] = { - [sym_variable_declaration] = STATE(7370), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5779), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3838), [sym_preproc_endregion] = STATE(3838), [sym_preproc_line] = STATE(3838), @@ -532045,86 +532079,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3838), [sym_preproc_define] = STATE(3838), [sym_preproc_undef] = STATE(3838), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3839] = { - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), - [sym_preproc_region] = STATE(3839), - [sym_preproc_endregion] = STATE(3839), - [sym_preproc_line] = STATE(3839), - [sym_preproc_pragma] = STATE(3839), - [sym_preproc_nullable] = STATE(3839), - [sym_preproc_error] = STATE(3839), - [sym_preproc_warning] = STATE(3839), - [sym_preproc_define] = STATE(3839), - [sym_preproc_undef] = STATE(3839), [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(4232), - [anon_sym_delegate] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(4267), + [anon_sym_delegate] = ACTIONS(4070), [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6215), + [anon_sym_readonly] = ACTIONS(6185), [anon_sym_where] = ACTIONS(3893), [anon_sym_notnull] = ACTIONS(3893), [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5899), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), + [anon_sym_scoped] = ACTIONS(5858), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), [anon_sym_yield] = ACTIONS(3893), [anon_sym_when] = ACTIONS(3893), [anon_sym_from] = ACTIONS(3893), @@ -532150,7 +532118,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3839] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), + [sym_preproc_region] = STATE(3839), + [sym_preproc_endregion] = STATE(3839), + [sym_preproc_line] = STATE(3839), + [sym_preproc_pragma] = STATE(3839), + [sym_preproc_nullable] = STATE(3839), + [sym_preproc_error] = STATE(3839), + [sym_preproc_warning] = STATE(3839), + [sym_preproc_define] = STATE(3839), + [sym_preproc_undef] = STATE(3839), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5874), + [anon_sym_into] = ACTIONS(5874), + [anon_sym_join] = ACTIONS(5874), + [anon_sym_let] = ACTIONS(5874), + [anon_sym_orderby] = ACTIONS(5874), + [anon_sym_ascending] = ACTIONS(5874), + [anon_sym_descending] = ACTIONS(5874), + [anon_sym_group] = ACTIONS(5874), + [anon_sym_select] = ACTIONS(5874), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3840] = { + [sym__name] = STATE(2450), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(2399), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3840), [sym_preproc_endregion] = STATE(3840), [sym_preproc_line] = STATE(3840), @@ -532160,52 +532213,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3840), [sym_preproc_define] = STATE(3840), [sym_preproc_undef] = STATE(3840), - [anon_sym_LBRACK] = ACTIONS(5476), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5476), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_where] = ACTIONS(5476), - [anon_sym_QMARK] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5476), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5476), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5476), - [anon_sym_CARET] = ACTIONS(5476), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5476), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_GT_GT_GT] = ACTIONS(5476), - [anon_sym_EQ_EQ] = ACTIONS(5476), - [anon_sym_BANG_EQ] = ACTIONS(5476), - [anon_sym_GT_EQ] = ACTIONS(5476), - [anon_sym_LT_EQ] = ACTIONS(5476), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_and] = ACTIONS(5476), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_AMP_AMP] = ACTIONS(5476), - [anon_sym_PIPE_PIPE] = ACTIONS(5476), - [anon_sym_QMARK_QMARK] = ACTIONS(5476), - [anon_sym_from] = ACTIONS(5476), - [anon_sym_into] = ACTIONS(5476), - [anon_sym_join] = ACTIONS(5476), - [anon_sym_let] = ACTIONS(5476), - [anon_sym_orderby] = ACTIONS(5476), - [anon_sym_ascending] = ACTIONS(5476), - [anon_sym_descending] = ACTIONS(5476), - [anon_sym_group] = ACTIONS(5476), - [anon_sym_select] = ACTIONS(5476), - [anon_sym_as] = ACTIONS(5478), - [anon_sym_is] = ACTIONS(5476), - [anon_sym_DASH_GT] = ACTIONS(5476), - [anon_sym_with] = ACTIONS(5476), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_ref] = ACTIONS(4100), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_readonly] = ACTIONS(6189), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(5908), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532227,52 +532262,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3841), [sym_preproc_define] = STATE(3841), [sym_preproc_undef] = STATE(3841), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_LPAREN] = ACTIONS(5480), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_where] = ACTIONS(5480), - [anon_sym_QMARK] = ACTIONS(5482), - [anon_sym_BANG] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5480), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5480), - [anon_sym_CARET] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5480), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_GT_GT_GT] = ACTIONS(5480), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_switch] = ACTIONS(5480), - [anon_sym_DOT_DOT] = ACTIONS(5480), - [anon_sym_and] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_QMARK_QMARK] = ACTIONS(5480), - [anon_sym_from] = ACTIONS(5480), - [anon_sym_into] = ACTIONS(5480), - [anon_sym_join] = ACTIONS(5480), - [anon_sym_let] = ACTIONS(5480), - [anon_sym_orderby] = ACTIONS(5480), - [anon_sym_ascending] = ACTIONS(5480), - [anon_sym_descending] = ACTIONS(5480), - [anon_sym_group] = ACTIONS(5480), - [anon_sym_select] = ACTIONS(5480), - [anon_sym_as] = ACTIONS(5482), - [anon_sym_is] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_with] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_where] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4983), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4983), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_GT_GT_GT] = ACTIONS(4983), + [anon_sym_EQ_EQ] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4983), + [anon_sym_GT_EQ] = ACTIONS(4983), + [anon_sym_LT_EQ] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_switch] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4983), + [anon_sym_and] = ACTIONS(4983), + [anon_sym_or] = ACTIONS(4985), + [anon_sym_AMP_AMP] = ACTIONS(4983), + [anon_sym_PIPE_PIPE] = ACTIONS(4983), + [anon_sym_QMARK_QMARK] = ACTIONS(4983), + [anon_sym_from] = ACTIONS(4983), + [anon_sym_into] = ACTIONS(4983), + [anon_sym_join] = ACTIONS(4983), + [anon_sym_let] = ACTIONS(4983), + [anon_sym_orderby] = ACTIONS(4983), + [anon_sym_ascending] = ACTIONS(4983), + [anon_sym_descending] = ACTIONS(4983), + [anon_sym_group] = ACTIONS(4983), + [anon_sym_select] = ACTIONS(4983), + [anon_sym_as] = ACTIONS(4985), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_DASH_GT] = ACTIONS(4983), + [anon_sym_with] = ACTIONS(4983), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532285,24 +532320,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3842] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6125), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3842), [sym_preproc_endregion] = STATE(3842), [sym_preproc_line] = STATE(3842), @@ -532312,34 +532329,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3842), [sym_preproc_define] = STATE(3842), [sym_preproc_undef] = STATE(3842), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(5637), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_COMMA] = ACTIONS(5421), + [anon_sym_LPAREN] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5423), + [anon_sym_where] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_BANG] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5423), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5423), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_PIPE] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5423), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_GT_GT_GT] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5421), + [anon_sym_BANG_EQ] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5421), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_DOT] = ACTIONS(5423), + [anon_sym_switch] = ACTIONS(5421), + [anon_sym_DOT_DOT] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_or] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5421), + [anon_sym_QMARK_QMARK] = ACTIONS(5421), + [anon_sym_from] = ACTIONS(5421), + [anon_sym_into] = ACTIONS(5421), + [anon_sym_join] = ACTIONS(5421), + [anon_sym_let] = ACTIONS(5421), + [anon_sym_orderby] = ACTIONS(5421), + [anon_sym_ascending] = ACTIONS(5421), + [anon_sym_descending] = ACTIONS(5421), + [anon_sym_group] = ACTIONS(5421), + [anon_sym_select] = ACTIONS(5421), + [anon_sym_as] = ACTIONS(5423), + [anon_sym_is] = ACTIONS(5421), + [anon_sym_DASH_GT] = ACTIONS(5421), + [anon_sym_with] = ACTIONS(5421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532352,6 +532387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3843] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3843), [sym_preproc_endregion] = STATE(3843), [sym_preproc_line] = STATE(3843), @@ -532361,52 +532398,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3843), [sym_preproc_define] = STATE(3843), [sym_preproc_undef] = STATE(3843), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5484), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(5484), - [anon_sym_QMARK] = ACTIONS(5486), - [anon_sym_BANG] = ACTIONS(5486), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5484), - [anon_sym_CARET] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5484), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_GT_GT_GT] = ACTIONS(5484), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_DOT_DOT] = ACTIONS(5484), - [anon_sym_and] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5486), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_QMARK_QMARK] = ACTIONS(5484), - [anon_sym_from] = ACTIONS(5484), - [anon_sym_into] = ACTIONS(5484), - [anon_sym_join] = ACTIONS(5484), - [anon_sym_let] = ACTIONS(5484), - [anon_sym_orderby] = ACTIONS(5484), - [anon_sym_ascending] = ACTIONS(5484), - [anon_sym_descending] = ACTIONS(5484), - [anon_sym_group] = ACTIONS(5484), - [anon_sym_select] = ACTIONS(5484), - [anon_sym_as] = ACTIONS(5486), - [anon_sym_is] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_with] = ACTIONS(5484), + [anon_sym_SEMI] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_RBRACK] = ACTIONS(5794), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5794), + [anon_sym_or] = ACTIONS(5794), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5794), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5794), + [aux_sym_preproc_else_token1] = ACTIONS(5794), + [aux_sym_preproc_elif_token1] = ACTIONS(5794), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532419,8 +532454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3844] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3844), [sym_preproc_endregion] = STATE(3844), [sym_preproc_line] = STATE(3844), @@ -532430,50 +532463,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3844), [sym_preproc_define] = STATE(3844), [sym_preproc_undef] = STATE(3844), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5769), - [anon_sym_into] = ACTIONS(5769), - [anon_sym_join] = ACTIONS(5769), - [anon_sym_let] = ACTIONS(5769), - [anon_sym_orderby] = ACTIONS(5769), - [anon_sym_ascending] = ACTIONS(5769), - [anon_sym_descending] = ACTIONS(5769), - [anon_sym_group] = ACTIONS(5769), - [anon_sym_select] = ACTIONS(5769), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_COMMA] = ACTIONS(5425), + [anon_sym_LPAREN] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5427), + [anon_sym_where] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_BANG] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5427), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5427), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5427), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_GT_GT_GT] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5425), + [anon_sym_BANG_EQ] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5425), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_DOT] = ACTIONS(5427), + [anon_sym_switch] = ACTIONS(5425), + [anon_sym_DOT_DOT] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_or] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_QMARK_QMARK] = ACTIONS(5425), + [anon_sym_from] = ACTIONS(5425), + [anon_sym_into] = ACTIONS(5425), + [anon_sym_join] = ACTIONS(5425), + [anon_sym_let] = ACTIONS(5425), + [anon_sym_orderby] = ACTIONS(5425), + [anon_sym_ascending] = ACTIONS(5425), + [anon_sym_descending] = ACTIONS(5425), + [anon_sym_group] = ACTIONS(5425), + [anon_sym_select] = ACTIONS(5425), + [anon_sym_as] = ACTIONS(5427), + [anon_sym_is] = ACTIONS(5425), + [anon_sym_DASH_GT] = ACTIONS(5425), + [anon_sym_with] = ACTIONS(5425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532486,8 +532521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3845] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), [sym_preproc_region] = STATE(3845), [sym_preproc_endregion] = STATE(3845), [sym_preproc_line] = STATE(3845), @@ -532497,50 +532530,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3845), [sym_preproc_define] = STATE(3845), [sym_preproc_undef] = STATE(3845), - [anon_sym_SEMI] = ACTIONS(5736), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5736), - [anon_sym_RBRACK] = ACTIONS(5736), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5736), - [anon_sym_RBRACE] = ACTIONS(5736), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5736), - [anon_sym_or] = ACTIONS(5736), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5736), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5736), - [aux_sym_preproc_else_token1] = ACTIONS(5736), - [aux_sym_preproc_elif_token1] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_LPAREN] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_where] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_BANG] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_GT_GT_GT] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_switch] = ACTIONS(5429), + [anon_sym_DOT_DOT] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_QMARK_QMARK] = ACTIONS(5429), + [anon_sym_from] = ACTIONS(5429), + [anon_sym_into] = ACTIONS(5429), + [anon_sym_join] = ACTIONS(5429), + [anon_sym_let] = ACTIONS(5429), + [anon_sym_orderby] = ACTIONS(5429), + [anon_sym_ascending] = ACTIONS(5429), + [anon_sym_descending] = ACTIONS(5429), + [anon_sym_group] = ACTIONS(5429), + [anon_sym_select] = ACTIONS(5429), + [anon_sym_as] = ACTIONS(5431), + [anon_sym_is] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [anon_sym_with] = ACTIONS(5429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532553,25 +532588,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3846] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7240), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3846), [sym_preproc_endregion] = STATE(3846), [sym_preproc_line] = STATE(3846), @@ -532581,33 +532597,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3846), [sym_preproc_define] = STATE(3846), [sym_preproc_undef] = STATE(3846), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_where] = ACTIONS(5437), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5439), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_from] = ACTIONS(5437), + [anon_sym_into] = ACTIONS(5437), + [anon_sym_join] = ACTIONS(5437), + [anon_sym_let] = ACTIONS(5437), + [anon_sym_orderby] = ACTIONS(5437), + [anon_sym_ascending] = ACTIONS(5437), + [anon_sym_descending] = ACTIONS(5437), + [anon_sym_group] = ACTIONS(5437), + [anon_sym_select] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5439), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532620,8 +532655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3847] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3847), [sym_preproc_endregion] = STATE(3847), [sym_preproc_line] = STATE(3847), @@ -532631,50 +532664,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3847), [sym_preproc_define] = STATE(3847), [sym_preproc_undef] = STATE(3847), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5756), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_where] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1997), + [anon_sym_CARET] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1997), + [anon_sym_EQ_EQ] = ACTIONS(1997), + [anon_sym_BANG_EQ] = ACTIONS(1997), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_switch] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_and] = ACTIONS(1997), + [anon_sym_or] = ACTIONS(1995), + [anon_sym_AMP_AMP] = ACTIONS(1997), + [anon_sym_PIPE_PIPE] = ACTIONS(1997), + [anon_sym_QMARK_QMARK] = ACTIONS(1997), + [anon_sym_from] = ACTIONS(1997), + [anon_sym_into] = ACTIONS(1997), + [anon_sym_join] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_orderby] = ACTIONS(1997), + [anon_sym_ascending] = ACTIONS(1997), + [anon_sym_descending] = ACTIONS(1997), + [anon_sym_group] = ACTIONS(1997), + [anon_sym_select] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(1997), + [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_with] = ACTIONS(1997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532687,24 +532722,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3848] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3848), [sym_preproc_endregion] = STATE(3848), [sym_preproc_line] = STATE(3848), @@ -532714,34 +532731,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3848), [sym_preproc_define] = STATE(3848), [sym_preproc_undef] = STATE(3848), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(6217), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6219), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6221), - [anon_sym_var] = ACTIONS(6223), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_COMMA] = ACTIONS(5451), + [anon_sym_LPAREN] = ACTIONS(5451), + [anon_sym_LT] = ACTIONS(5453), + [anon_sym_GT] = ACTIONS(5453), + [anon_sym_where] = ACTIONS(5451), + [anon_sym_QMARK] = ACTIONS(5453), + [anon_sym_BANG] = ACTIONS(5453), + [anon_sym_PLUS_PLUS] = ACTIONS(5451), + [anon_sym_DASH_DASH] = ACTIONS(5451), + [anon_sym_PLUS] = ACTIONS(5453), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_STAR] = ACTIONS(5451), + [anon_sym_SLASH] = ACTIONS(5453), + [anon_sym_PERCENT] = ACTIONS(5451), + [anon_sym_CARET] = ACTIONS(5451), + [anon_sym_PIPE] = ACTIONS(5453), + [anon_sym_AMP] = ACTIONS(5453), + [anon_sym_LT_LT] = ACTIONS(5451), + [anon_sym_GT_GT] = ACTIONS(5453), + [anon_sym_GT_GT_GT] = ACTIONS(5451), + [anon_sym_EQ_EQ] = ACTIONS(5451), + [anon_sym_BANG_EQ] = ACTIONS(5451), + [anon_sym_GT_EQ] = ACTIONS(5451), + [anon_sym_LT_EQ] = ACTIONS(5451), + [anon_sym_DOT] = ACTIONS(5453), + [anon_sym_switch] = ACTIONS(5451), + [anon_sym_DOT_DOT] = ACTIONS(5451), + [anon_sym_and] = ACTIONS(5451), + [anon_sym_or] = ACTIONS(5453), + [anon_sym_AMP_AMP] = ACTIONS(5451), + [anon_sym_PIPE_PIPE] = ACTIONS(5451), + [anon_sym_QMARK_QMARK] = ACTIONS(5451), + [anon_sym_from] = ACTIONS(5451), + [anon_sym_into] = ACTIONS(5451), + [anon_sym_join] = ACTIONS(5451), + [anon_sym_let] = ACTIONS(5451), + [anon_sym_orderby] = ACTIONS(5451), + [anon_sym_ascending] = ACTIONS(5451), + [anon_sym_descending] = ACTIONS(5451), + [anon_sym_group] = ACTIONS(5451), + [anon_sym_select] = ACTIONS(5451), + [anon_sym_as] = ACTIONS(5453), + [anon_sym_is] = ACTIONS(5451), + [anon_sym_DASH_GT] = ACTIONS(5451), + [anon_sym_with] = ACTIONS(5451), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532754,6 +532789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3849] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3849), [sym_preproc_endregion] = STATE(3849), [sym_preproc_line] = STATE(3849), @@ -532763,52 +532800,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3849), [sym_preproc_define] = STATE(3849), [sym_preproc_undef] = STATE(3849), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_where] = ACTIONS(5212), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5214), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_GT_GT_GT] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5214), - [anon_sym_switch] = ACTIONS(5212), - [anon_sym_DOT_DOT] = ACTIONS(5212), - [anon_sym_and] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_QMARK_QMARK] = ACTIONS(5212), - [anon_sym_from] = ACTIONS(5212), - [anon_sym_into] = ACTIONS(5212), - [anon_sym_join] = ACTIONS(5212), - [anon_sym_let] = ACTIONS(5212), - [anon_sym_orderby] = ACTIONS(5212), - [anon_sym_ascending] = ACTIONS(5212), - [anon_sym_descending] = ACTIONS(5212), - [anon_sym_group] = ACTIONS(5212), - [anon_sym_select] = ACTIONS(5212), - [anon_sym_as] = ACTIONS(5214), - [anon_sym_is] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [anon_sym_with] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532821,25 +532856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3850] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7339), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3850), [sym_preproc_endregion] = STATE(3850), [sym_preproc_line] = STATE(3850), @@ -532849,33 +532867,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3850), [sym_preproc_define] = STATE(3850), [sym_preproc_undef] = STATE(3850), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_PIPE] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5684), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532888,24 +532923,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3851] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6182), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_variable_declaration] = STATE(7356), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5969), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3851), [sym_preproc_endregion] = STATE(3851), [sym_preproc_line] = STATE(3851), @@ -532925,7 +532961,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(5637), [anon_sym_scoped] = ACTIONS(3021), [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), @@ -532955,24 +532990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3852] = { - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2958), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(2986), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3852), [sym_preproc_endregion] = STATE(3852), [sym_preproc_line] = STATE(3852), @@ -532982,34 +533001,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3852), [sym_preproc_define] = STATE(3852), [sym_preproc_undef] = STATE(3852), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(6145), - [anon_sym_ref] = ACTIONS(4259), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_readonly] = ACTIONS(6225), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5824), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533022,8 +533057,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3853] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2961), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(2979), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3853), [sym_preproc_endregion] = STATE(3853), [sym_preproc_line] = STATE(3853), @@ -533033,50 +533084,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3853), [sym_preproc_define] = STATE(3853), [sym_preproc_undef] = STATE(3853), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5684), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_ref] = ACTIONS(4255), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(6193), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5928), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533089,25 +533124,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3854] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7142), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7137), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3854), [sym_preproc_endregion] = STATE(3854), [sym_preproc_line] = STATE(3854), @@ -533127,8 +533162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -533156,6 +533191,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3855] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3855), [sym_preproc_endregion] = STATE(3855), [sym_preproc_line] = STATE(3855), @@ -533165,52 +533202,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3855), [sym_preproc_define] = STATE(3855), [sym_preproc_undef] = STATE(3855), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_where] = ACTIONS(5488), - [anon_sym_QMARK] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5488), - [anon_sym_SLASH] = ACTIONS(5490), - [anon_sym_PERCENT] = ACTIONS(5488), - [anon_sym_CARET] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_LT_LT] = ACTIONS(5488), - [anon_sym_GT_GT] = ACTIONS(5490), - [anon_sym_GT_GT_GT] = ACTIONS(5488), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5490), - [anon_sym_switch] = ACTIONS(5488), - [anon_sym_DOT_DOT] = ACTIONS(5488), - [anon_sym_and] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5490), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_QMARK_QMARK] = ACTIONS(5488), - [anon_sym_from] = ACTIONS(5488), - [anon_sym_into] = ACTIONS(5488), - [anon_sym_join] = ACTIONS(5488), - [anon_sym_let] = ACTIONS(5488), - [anon_sym_orderby] = ACTIONS(5488), - [anon_sym_ascending] = ACTIONS(5488), - [anon_sym_descending] = ACTIONS(5488), - [anon_sym_group] = ACTIONS(5488), - [anon_sym_select] = ACTIONS(5488), - [anon_sym_as] = ACTIONS(5490), - [anon_sym_is] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_with] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(5682), + [anon_sym_QMARK_QMARK] = ACTIONS(5682), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533223,6 +533258,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3856] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3856), [sym_preproc_endregion] = STATE(3856), [sym_preproc_line] = STATE(3856), @@ -533232,52 +533269,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3856), [sym_preproc_define] = STATE(3856), [sym_preproc_undef] = STATE(3856), - [anon_sym_LBRACK] = ACTIONS(5236), - [anon_sym_COMMA] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_where] = ACTIONS(5236), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_BANG] = ACTIONS(5238), - [anon_sym_PLUS_PLUS] = ACTIONS(5236), - [anon_sym_DASH_DASH] = ACTIONS(5236), - [anon_sym_PLUS] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_STAR] = ACTIONS(5236), - [anon_sym_SLASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_CARET] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5236), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_GT_GT_GT] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [anon_sym_GT_EQ] = ACTIONS(5236), - [anon_sym_LT_EQ] = ACTIONS(5236), - [anon_sym_DOT] = ACTIONS(5238), - [anon_sym_switch] = ACTIONS(5236), - [anon_sym_DOT_DOT] = ACTIONS(5236), - [anon_sym_and] = ACTIONS(5236), - [anon_sym_or] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_QMARK_QMARK] = ACTIONS(5236), - [anon_sym_from] = ACTIONS(5236), - [anon_sym_into] = ACTIONS(5236), - [anon_sym_join] = ACTIONS(5236), - [anon_sym_let] = ACTIONS(5236), - [anon_sym_orderby] = ACTIONS(5236), - [anon_sym_ascending] = ACTIONS(5236), - [anon_sym_descending] = ACTIONS(5236), - [anon_sym_group] = ACTIONS(5236), - [anon_sym_select] = ACTIONS(5236), - [anon_sym_as] = ACTIONS(5238), - [anon_sym_is] = ACTIONS(5236), - [anon_sym_DASH_GT] = ACTIONS(5236), - [anon_sym_with] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5682), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5682), + [anon_sym_into] = ACTIONS(5682), + [anon_sym_join] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_orderby] = ACTIONS(5682), + [anon_sym_ascending] = ACTIONS(5682), + [anon_sym_descending] = ACTIONS(5682), + [anon_sym_group] = ACTIONS(5682), + [anon_sym_select] = ACTIONS(5682), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533290,6 +533325,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3857] = { + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2961), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(2979), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3857), [sym_preproc_endregion] = STATE(3857), [sym_preproc_line] = STATE(3857), @@ -533299,52 +533352,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3857), [sym_preproc_define] = STATE(3857), [sym_preproc_undef] = STATE(3857), - [anon_sym_LBRACK] = ACTIONS(5492), - [anon_sym_COMMA] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(5494), - [anon_sym_GT] = ACTIONS(5494), - [anon_sym_where] = ACTIONS(5492), - [anon_sym_QMARK] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5492), - [anon_sym_PLUS] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5492), - [anon_sym_SLASH] = ACTIONS(5494), - [anon_sym_PERCENT] = ACTIONS(5492), - [anon_sym_CARET] = ACTIONS(5492), - [anon_sym_PIPE] = ACTIONS(5494), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5494), - [anon_sym_GT_GT_GT] = ACTIONS(5492), - [anon_sym_EQ_EQ] = ACTIONS(5492), - [anon_sym_BANG_EQ] = ACTIONS(5492), - [anon_sym_GT_EQ] = ACTIONS(5492), - [anon_sym_LT_EQ] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(5494), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_DOT_DOT] = ACTIONS(5492), - [anon_sym_and] = ACTIONS(5492), - [anon_sym_or] = ACTIONS(5494), - [anon_sym_AMP_AMP] = ACTIONS(5492), - [anon_sym_PIPE_PIPE] = ACTIONS(5492), - [anon_sym_QMARK_QMARK] = ACTIONS(5492), - [anon_sym_from] = ACTIONS(5492), - [anon_sym_into] = ACTIONS(5492), - [anon_sym_join] = ACTIONS(5492), - [anon_sym_let] = ACTIONS(5492), - [anon_sym_orderby] = ACTIONS(5492), - [anon_sym_ascending] = ACTIONS(5492), - [anon_sym_descending] = ACTIONS(5492), - [anon_sym_group] = ACTIONS(5492), - [anon_sym_select] = ACTIONS(5492), - [anon_sym_as] = ACTIONS(5494), - [anon_sym_is] = ACTIONS(5492), - [anon_sym_DASH_GT] = ACTIONS(5492), - [anon_sym_with] = ACTIONS(5492), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_ref] = ACTIONS(4257), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(6195), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5780), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533357,6 +533392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3858] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3858), [sym_preproc_endregion] = STATE(3858), [sym_preproc_line] = STATE(3858), @@ -533366,52 +533403,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3858), [sym_preproc_define] = STATE(3858), [sym_preproc_undef] = STATE(3858), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_COMMA] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5498), - [anon_sym_where] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5498), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_PIPE] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5498), - [anon_sym_GT_GT_GT] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5496), - [anon_sym_BANG_EQ] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5496), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_DOT_DOT] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_or] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5496), - [anon_sym_QMARK_QMARK] = ACTIONS(5496), - [anon_sym_from] = ACTIONS(5496), - [anon_sym_into] = ACTIONS(5496), - [anon_sym_join] = ACTIONS(5496), - [anon_sym_let] = ACTIONS(5496), - [anon_sym_orderby] = ACTIONS(5496), - [anon_sym_ascending] = ACTIONS(5496), - [anon_sym_descending] = ACTIONS(5496), - [anon_sym_group] = ACTIONS(5496), - [anon_sym_select] = ACTIONS(5496), - [anon_sym_as] = ACTIONS(5498), - [anon_sym_is] = ACTIONS(5496), - [anon_sym_DASH_GT] = ACTIONS(5496), - [anon_sym_with] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5866), + [anon_sym_into] = ACTIONS(5866), + [anon_sym_join] = ACTIONS(5866), + [anon_sym_let] = ACTIONS(5866), + [anon_sym_orderby] = ACTIONS(5866), + [anon_sym_ascending] = ACTIONS(5866), + [anon_sym_descending] = ACTIONS(5866), + [anon_sym_group] = ACTIONS(5866), + [anon_sym_select] = ACTIONS(5866), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533424,24 +533459,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3859] = { - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3228), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3262), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), [sym_preproc_region] = STATE(3859), [sym_preproc_endregion] = STATE(3859), [sym_preproc_line] = STATE(3859), @@ -533451,34 +533468,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3859), [sym_preproc_define] = STATE(3859), [sym_preproc_undef] = STATE(3859), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_ref] = ACTIONS(3793), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_readonly] = ACTIONS(6227), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5933), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5147), + [anon_sym_AMP] = ACTIONS(5147), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5147), + [anon_sym_GT_GT_GT] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_switch] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_QMARK_QMARK] = ACTIONS(5145), + [anon_sym_from] = ACTIONS(5145), + [anon_sym_into] = ACTIONS(5145), + [anon_sym_join] = ACTIONS(5145), + [anon_sym_let] = ACTIONS(5145), + [anon_sym_orderby] = ACTIONS(5145), + [anon_sym_ascending] = ACTIONS(5145), + [anon_sym_descending] = ACTIONS(5145), + [anon_sym_group] = ACTIONS(5145), + [anon_sym_select] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [anon_sym_with] = ACTIONS(5145), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533491,6 +533526,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3860] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7234), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3860), [sym_preproc_endregion] = STATE(3860), [sym_preproc_line] = STATE(3860), @@ -533500,119 +533554,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3860), [sym_preproc_define] = STATE(3860), [sym_preproc_undef] = STATE(3860), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3861] = { - [sym_preproc_region] = STATE(3861), - [sym_preproc_endregion] = STATE(3861), - [sym_preproc_line] = STATE(3861), - [sym_preproc_pragma] = STATE(3861), - [sym_preproc_nullable] = STATE(3861), - [sym_preproc_error] = STATE(3861), - [sym_preproc_warning] = STATE(3861), - [sym_preproc_define] = STATE(3861), - [sym_preproc_undef] = STATE(3861), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3861] = { + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), + [sym_preproc_region] = STATE(3861), + [sym_preproc_endregion] = STATE(3861), + [sym_preproc_line] = STATE(3861), + [sym_preproc_pragma] = STATE(3861), + [sym_preproc_nullable] = STATE(3861), + [sym_preproc_error] = STATE(3861), + [sym_preproc_warning] = STATE(3861), + [sym_preproc_define] = STATE(3861), + [sym_preproc_undef] = STATE(3861), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(3802), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6197), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5714), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533634,52 +533669,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3862), [sym_preproc_define] = STATE(3862), [sym_preproc_undef] = STATE(3862), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_QMARK] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_AMP] = ACTIONS(5025), + [anon_sym_LT_LT] = ACTIONS(5023), + [anon_sym_GT_GT] = ACTIONS(5025), + [anon_sym_GT_GT_GT] = ACTIONS(5023), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_GT_EQ] = ACTIONS(5023), + [anon_sym_LT_EQ] = ACTIONS(5023), + [anon_sym_DOT] = ACTIONS(5025), + [anon_sym_switch] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_and] = ACTIONS(5023), + [anon_sym_or] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5023), + [anon_sym_PIPE_PIPE] = ACTIONS(5023), + [anon_sym_QMARK_QMARK] = ACTIONS(5023), + [anon_sym_from] = ACTIONS(5023), + [anon_sym_into] = ACTIONS(5023), + [anon_sym_join] = ACTIONS(5023), + [anon_sym_let] = ACTIONS(5023), + [anon_sym_orderby] = ACTIONS(5023), + [anon_sym_ascending] = ACTIONS(5023), + [anon_sym_descending] = ACTIONS(5023), + [anon_sym_group] = ACTIONS(5023), + [anon_sym_select] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_DASH_GT] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5023), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533701,52 +533736,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3863), [sym_preproc_define] = STATE(3863), [sym_preproc_undef] = STATE(3863), - [anon_sym_LBRACK] = ACTIONS(5216), - [anon_sym_COMMA] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5218), - [anon_sym_GT] = ACTIONS(5218), - [anon_sym_where] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5218), - [anon_sym_BANG] = ACTIONS(5218), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5218), - [anon_sym_DASH] = ACTIONS(5218), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5218), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5218), - [anon_sym_AMP] = ACTIONS(5218), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5218), - [anon_sym_GT_GT_GT] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_DOT] = ACTIONS(5218), - [anon_sym_switch] = ACTIONS(5216), - [anon_sym_DOT_DOT] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_or] = ACTIONS(5218), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_QMARK_QMARK] = ACTIONS(5216), - [anon_sym_from] = ACTIONS(5216), - [anon_sym_into] = ACTIONS(5216), - [anon_sym_join] = ACTIONS(5216), - [anon_sym_let] = ACTIONS(5216), - [anon_sym_orderby] = ACTIONS(5216), - [anon_sym_ascending] = ACTIONS(5216), - [anon_sym_descending] = ACTIONS(5216), - [anon_sym_group] = ACTIONS(5216), - [anon_sym_select] = ACTIONS(5216), - [anon_sym_as] = ACTIONS(5218), - [anon_sym_is] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), - [anon_sym_with] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(6199), + [anon_sym_COMMA] = ACTIONS(6199), + [anon_sym_LPAREN] = ACTIONS(6199), + [anon_sym_LT] = ACTIONS(6201), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_where] = ACTIONS(6199), + [anon_sym_QMARK] = ACTIONS(6201), + [anon_sym_BANG] = ACTIONS(6201), + [anon_sym_PLUS_PLUS] = ACTIONS(6199), + [anon_sym_DASH_DASH] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6199), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6199), + [anon_sym_CARET] = ACTIONS(6199), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_LT_LT] = ACTIONS(6199), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym_GT_GT_GT] = ACTIONS(6199), + [anon_sym_EQ_EQ] = ACTIONS(6199), + [anon_sym_BANG_EQ] = ACTIONS(6199), + [anon_sym_GT_EQ] = ACTIONS(6199), + [anon_sym_LT_EQ] = ACTIONS(6199), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_switch] = ACTIONS(6199), + [anon_sym_DOT_DOT] = ACTIONS(6199), + [anon_sym_and] = ACTIONS(6167), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_AMP_AMP] = ACTIONS(6199), + [anon_sym_PIPE_PIPE] = ACTIONS(6199), + [anon_sym_QMARK_QMARK] = ACTIONS(6199), + [anon_sym_from] = ACTIONS(6199), + [anon_sym_into] = ACTIONS(6199), + [anon_sym_join] = ACTIONS(6199), + [anon_sym_let] = ACTIONS(6199), + [anon_sym_orderby] = ACTIONS(6199), + [anon_sym_ascending] = ACTIONS(6199), + [anon_sym_descending] = ACTIONS(6199), + [anon_sym_group] = ACTIONS(6199), + [anon_sym_select] = ACTIONS(6199), + [anon_sym_as] = ACTIONS(6201), + [anon_sym_is] = ACTIONS(6199), + [anon_sym_DASH_GT] = ACTIONS(6199), + [anon_sym_with] = ACTIONS(6199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533759,6 +533794,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3864] = { + [sym_variable_declaration] = STATE(7386), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5969), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3864), [sym_preproc_endregion] = STATE(3864), [sym_preproc_line] = STATE(3864), @@ -533768,52 +533822,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3864), [sym_preproc_define] = STATE(3864), [sym_preproc_undef] = STATE(3864), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_where] = ACTIONS(5069), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5071), - [anon_sym_LT_LT] = ACTIONS(5069), - [anon_sym_GT_GT] = ACTIONS(5071), - [anon_sym_GT_GT_GT] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_switch] = ACTIONS(5069), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_or] = ACTIONS(5071), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_QMARK_QMARK] = ACTIONS(5069), - [anon_sym_from] = ACTIONS(5069), - [anon_sym_into] = ACTIONS(5069), - [anon_sym_join] = ACTIONS(5069), - [anon_sym_let] = ACTIONS(5069), - [anon_sym_orderby] = ACTIONS(5069), - [anon_sym_ascending] = ACTIONS(5069), - [anon_sym_descending] = ACTIONS(5069), - [anon_sym_group] = ACTIONS(5069), - [anon_sym_select] = ACTIONS(5069), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_is] = ACTIONS(5069), - [anon_sym_DASH_GT] = ACTIONS(5069), - [anon_sym_with] = ACTIONS(5069), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533826,15 +533861,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3865] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7167), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3865), [sym_preproc_endregion] = STATE(3865), [sym_preproc_line] = STATE(3865), @@ -533844,43 +533889,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3865), [sym_preproc_define] = STATE(3865), [sym_preproc_undef] = STATE(3865), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3615), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_global] = ACTIONS(3615), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_where] = ACTIONS(3615), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3615), - [anon_sym_unmanaged] = ACTIONS(3615), - [anon_sym_operator] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_this] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3615), - [anon_sym_EQ_GT] = ACTIONS(3459), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3615), - [anon_sym_when] = ACTIONS(3615), - [anon_sym_from] = ACTIONS(3615), - [anon_sym_into] = ACTIONS(3615), - [anon_sym_join] = ACTIONS(3615), - [anon_sym_on] = ACTIONS(3615), - [anon_sym_equals] = ACTIONS(3615), - [anon_sym_let] = ACTIONS(3615), - [anon_sym_orderby] = ACTIONS(3615), - [anon_sym_ascending] = ACTIONS(3615), - [anon_sym_descending] = ACTIONS(3615), - [anon_sym_group] = ACTIONS(3615), - [anon_sym_by] = ACTIONS(3615), - [anon_sym_select] = ACTIONS(3615), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533893,6 +533928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3866] = { + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2961), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(2979), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3866), [sym_preproc_endregion] = STATE(3866), [sym_preproc_line] = STATE(3866), @@ -533902,52 +533955,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3866), [sym_preproc_define] = STATE(3866), [sym_preproc_undef] = STATE(3866), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5017), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_LT_LT] = ACTIONS(5015), - [anon_sym_GT_GT] = ACTIONS(5017), - [anon_sym_GT_GT_GT] = ACTIONS(5015), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_GT_EQ] = ACTIONS(5015), - [anon_sym_LT_EQ] = ACTIONS(5015), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_switch] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5015), - [anon_sym_and] = ACTIONS(5015), - [anon_sym_or] = ACTIONS(5017), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_QMARK_QMARK] = ACTIONS(5015), - [anon_sym_from] = ACTIONS(5015), - [anon_sym_into] = ACTIONS(5015), - [anon_sym_join] = ACTIONS(5015), - [anon_sym_let] = ACTIONS(5015), - [anon_sym_orderby] = ACTIONS(5015), - [anon_sym_ascending] = ACTIONS(5015), - [anon_sym_descending] = ACTIONS(5015), - [anon_sym_group] = ACTIONS(5015), - [anon_sym_select] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5017), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_DASH_GT] = ACTIONS(5015), - [anon_sym_with] = ACTIONS(5015), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_ref] = ACTIONS(3873), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(6203), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5882), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533960,6 +533995,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3867] = { + [sym__name] = STATE(3584), + [sym_alias_qualified_name] = STATE(2992), + [sym__simple_name] = STATE(2992), + [sym_qualified_name] = STATE(2992), + [sym_generic_name] = STATE(2964), + [sym_type] = STATE(2961), + [sym_implicit_type] = STATE(2966), + [sym_array_type] = STATE(2979), + [sym__array_base_type] = STATE(7132), + [sym_nullable_type] = STATE(2983), + [sym_pointer_type] = STATE(2983), + [sym__pointer_base_type] = STATE(7662), + [sym_function_pointer_type] = STATE(2983), + [sym_ref_type] = STATE(2966), + [sym_scoped_type] = STATE(2966), + [sym_tuple_type] = STATE(2987), + [sym_identifier] = STATE(3270), + [sym__reserved_identifier] = STATE(2952), [sym_preproc_region] = STATE(3867), [sym_preproc_endregion] = STATE(3867), [sym_preproc_line] = STATE(3867), @@ -533969,52 +534022,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3867), [sym_preproc_define] = STATE(3867), [sym_preproc_undef] = STATE(3867), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_where] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_GT_GT_GT] = ACTIONS(1977), - [anon_sym_EQ_EQ] = ACTIONS(1977), - [anon_sym_BANG_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1975), - [anon_sym_switch] = ACTIONS(1977), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_and] = ACTIONS(1977), - [anon_sym_or] = ACTIONS(1975), - [anon_sym_AMP_AMP] = ACTIONS(1977), - [anon_sym_PIPE_PIPE] = ACTIONS(1977), - [anon_sym_QMARK_QMARK] = ACTIONS(1977), - [anon_sym_from] = ACTIONS(1977), - [anon_sym_into] = ACTIONS(1977), - [anon_sym_join] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_orderby] = ACTIONS(1977), - [anon_sym_ascending] = ACTIONS(1977), - [anon_sym_descending] = ACTIONS(1977), - [anon_sym_group] = ACTIONS(1977), - [anon_sym_select] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_is] = ACTIONS(1977), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_with] = ACTIONS(1977), + [sym__identifier_token] = ACTIONS(3869), + [anon_sym_alias] = ACTIONS(3871), + [anon_sym_global] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(6121), + [anon_sym_ref] = ACTIONS(4253), + [anon_sym_delegate] = ACTIONS(5778), + [anon_sym_file] = ACTIONS(3871), + [anon_sym_readonly] = ACTIONS(6205), + [anon_sym_where] = ACTIONS(3871), + [anon_sym_notnull] = ACTIONS(3871), + [anon_sym_unmanaged] = ACTIONS(3871), + [anon_sym_scoped] = ACTIONS(5786), + [anon_sym_var] = ACTIONS(5782), + [sym_predefined_type] = ACTIONS(5784), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_when] = ACTIONS(3871), + [anon_sym_from] = ACTIONS(3871), + [anon_sym_into] = ACTIONS(3871), + [anon_sym_join] = ACTIONS(3871), + [anon_sym_on] = ACTIONS(3871), + [anon_sym_equals] = ACTIONS(3871), + [anon_sym_let] = ACTIONS(3871), + [anon_sym_orderby] = ACTIONS(3871), + [anon_sym_ascending] = ACTIONS(3871), + [anon_sym_descending] = ACTIONS(3871), + [anon_sym_group] = ACTIONS(3871), + [anon_sym_by] = ACTIONS(3871), + [anon_sym_select] = ACTIONS(3871), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534027,24 +534062,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3868] = { - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2958), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(2986), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), [sym_preproc_region] = STATE(3868), [sym_preproc_endregion] = STATE(3868), [sym_preproc_line] = STATE(3868), @@ -534054,34 +534071,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3868), [sym_preproc_define] = STATE(3868), [sym_preproc_undef] = STATE(3868), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(6145), - [anon_sym_ref] = ACTIONS(4261), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_readonly] = ACTIONS(6233), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5866), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_QMARK] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5031), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_PERCENT] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_AMP] = ACTIONS(5033), + [anon_sym_LT_LT] = ACTIONS(5031), + [anon_sym_GT_GT] = ACTIONS(5033), + [anon_sym_GT_GT_GT] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5033), + [anon_sym_switch] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_and] = ACTIONS(5031), + [anon_sym_or] = ACTIONS(5033), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_QMARK_QMARK] = ACTIONS(5031), + [anon_sym_from] = ACTIONS(5031), + [anon_sym_into] = ACTIONS(5031), + [anon_sym_join] = ACTIONS(5031), + [anon_sym_let] = ACTIONS(5031), + [anon_sym_orderby] = ACTIONS(5031), + [anon_sym_ascending] = ACTIONS(5031), + [anon_sym_descending] = ACTIONS(5031), + [anon_sym_group] = ACTIONS(5031), + [anon_sym_select] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5033), + [anon_sym_is] = ACTIONS(5031), + [anon_sym_DASH_GT] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534094,6 +534129,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3869] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7211), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3869), [sym_preproc_endregion] = STATE(3869), [sym_preproc_line] = STATE(3869), @@ -534103,52 +534157,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3869), [sym_preproc_define] = STATE(3869), [sym_preproc_undef] = STATE(3869), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_where] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PLUS_PLUS] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_CARET] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_LT_LT] = ACTIONS(5091), - [anon_sym_GT_GT] = ACTIONS(5093), - [anon_sym_GT_GT_GT] = ACTIONS(5091), - [anon_sym_EQ_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ] = ACTIONS(5091), - [anon_sym_GT_EQ] = ACTIONS(5091), - [anon_sym_LT_EQ] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_switch] = ACTIONS(5091), - [anon_sym_DOT_DOT] = ACTIONS(5091), - [anon_sym_and] = ACTIONS(5091), - [anon_sym_or] = ACTIONS(5093), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_QMARK_QMARK] = ACTIONS(5091), - [anon_sym_from] = ACTIONS(5091), - [anon_sym_into] = ACTIONS(5091), - [anon_sym_join] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5091), - [anon_sym_orderby] = ACTIONS(5091), - [anon_sym_ascending] = ACTIONS(5091), - [anon_sym_descending] = ACTIONS(5091), - [anon_sym_group] = ACTIONS(5091), - [anon_sym_select] = ACTIONS(5091), - [anon_sym_as] = ACTIONS(5093), - [anon_sym_is] = ACTIONS(5091), - [anon_sym_DASH_GT] = ACTIONS(5091), - [anon_sym_with] = ACTIONS(5091), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534161,6 +534196,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3870] = { + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3870), [sym_preproc_endregion] = STATE(3870), [sym_preproc_line] = STATE(3870), @@ -534170,52 +534223,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3870), [sym_preproc_define] = STATE(3870), [sym_preproc_undef] = STATE(3870), - [sym__identifier_token] = ACTIONS(5294), - [anon_sym_extern] = ACTIONS(5294), - [anon_sym_alias] = ACTIONS(5294), - [anon_sym_global] = ACTIONS(5294), - [anon_sym_unsafe] = ACTIONS(5294), - [anon_sym_static] = ACTIONS(5294), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_ref] = ACTIONS(5294), - [anon_sym_delegate] = ACTIONS(5294), - [anon_sym_abstract] = ACTIONS(5294), - [anon_sym_async] = ACTIONS(5294), - [anon_sym_const] = ACTIONS(5294), - [anon_sym_file] = ACTIONS(5294), - [anon_sym_fixed] = ACTIONS(5294), - [anon_sym_internal] = ACTIONS(5294), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), - [anon_sym_partial] = ACTIONS(5294), - [anon_sym_private] = ACTIONS(5294), - [anon_sym_protected] = ACTIONS(5294), - [anon_sym_public] = ACTIONS(5294), - [anon_sym_readonly] = ACTIONS(5294), - [anon_sym_required] = ACTIONS(5294), - [anon_sym_sealed] = ACTIONS(5294), - [anon_sym_virtual] = ACTIONS(5294), - [anon_sym_volatile] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5294), - [anon_sym_notnull] = ACTIONS(5294), - [anon_sym_unmanaged] = ACTIONS(5294), - [anon_sym_scoped] = ACTIONS(5294), - [anon_sym_var] = ACTIONS(5294), - [sym_predefined_type] = ACTIONS(5294), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_when] = ACTIONS(5294), - [anon_sym_from] = ACTIONS(5294), - [anon_sym_into] = ACTIONS(5294), - [anon_sym_join] = ACTIONS(5294), - [anon_sym_on] = ACTIONS(5294), - [anon_sym_equals] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_orderby] = ACTIONS(5294), - [anon_sym_ascending] = ACTIONS(5294), - [anon_sym_descending] = ACTIONS(5294), - [anon_sym_group] = ACTIONS(5294), - [anon_sym_by] = ACTIONS(5294), - [anon_sym_select] = ACTIONS(5294), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(4194), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6207), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5768), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534228,8 +534263,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3871] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3871), [sym_preproc_endregion] = STATE(3871), [sym_preproc_line] = STATE(3871), @@ -534239,50 +534290,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3871), [sym_preproc_define] = STATE(3871), [sym_preproc_undef] = STATE(3871), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5777), - [anon_sym_into] = ACTIONS(5777), - [anon_sym_join] = ACTIONS(5777), - [anon_sym_let] = ACTIONS(5777), - [anon_sym_orderby] = ACTIONS(5777), - [anon_sym_ascending] = ACTIONS(5777), - [anon_sym_descending] = ACTIONS(5777), - [anon_sym_group] = ACTIONS(5777), - [anon_sym_select] = ACTIONS(5777), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534295,6 +534330,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3872] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6064), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_tuple_element] = STATE(7239), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3872), [sym_preproc_endregion] = STATE(3872), [sym_preproc_line] = STATE(3872), @@ -534304,52 +534358,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3872), [sym_preproc_define] = STATE(3872), [sym_preproc_undef] = STATE(3872), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4977), - [anon_sym_BANG] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_LT_LT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_GT_GT_GT] = ACTIONS(4975), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4975), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_switch] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_and] = ACTIONS(4975), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_QMARK_QMARK] = ACTIONS(4975), - [anon_sym_from] = ACTIONS(4975), - [anon_sym_into] = ACTIONS(4975), - [anon_sym_join] = ACTIONS(4975), - [anon_sym_let] = ACTIONS(4975), - [anon_sym_orderby] = ACTIONS(4975), - [anon_sym_ascending] = ACTIONS(4975), - [anon_sym_descending] = ACTIONS(4975), - [anon_sym_group] = ACTIONS(4975), - [anon_sym_select] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_DASH_GT] = ACTIONS(4975), - [anon_sym_with] = ACTIONS(4975), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3618), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(5906), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534362,8 +534397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3873] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3873), [sym_preproc_endregion] = STATE(3873), [sym_preproc_line] = STATE(3873), @@ -534373,50 +534406,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3873), [sym_preproc_define] = STATE(3873), [sym_preproc_undef] = STATE(3873), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5172), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5172), - [anon_sym_into] = ACTIONS(5172), - [anon_sym_join] = ACTIONS(5172), - [anon_sym_let] = ACTIONS(5172), - [anon_sym_orderby] = ACTIONS(5172), - [anon_sym_ascending] = ACTIONS(5172), - [anon_sym_descending] = ACTIONS(5172), - [anon_sym_group] = ACTIONS(5172), - [anon_sym_select] = ACTIONS(5172), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_where] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5037), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_GT_GT_GT] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5035), + [anon_sym_BANG_EQ] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5035), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5037), + [anon_sym_switch] = ACTIONS(5035), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_or] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5035), + [anon_sym_QMARK_QMARK] = ACTIONS(5035), + [anon_sym_from] = ACTIONS(5035), + [anon_sym_into] = ACTIONS(5035), + [anon_sym_join] = ACTIONS(5035), + [anon_sym_let] = ACTIONS(5035), + [anon_sym_orderby] = ACTIONS(5035), + [anon_sym_ascending] = ACTIONS(5035), + [anon_sym_descending] = ACTIONS(5035), + [anon_sym_group] = ACTIONS(5035), + [anon_sym_select] = ACTIONS(5035), + [anon_sym_as] = ACTIONS(5037), + [anon_sym_is] = ACTIONS(5035), + [anon_sym_DASH_GT] = ACTIONS(5035), + [anon_sym_with] = ACTIONS(5035), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534429,6 +534464,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3874] = { + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3874), [sym_preproc_endregion] = STATE(3874), [sym_preproc_line] = STATE(3874), @@ -534438,52 +534491,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3874), [sym_preproc_define] = STATE(3874), [sym_preproc_undef] = STATE(3874), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(4217), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6209), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5788), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534496,6 +534531,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3875] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6161), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3875), [sym_preproc_endregion] = STATE(3875), [sym_preproc_line] = STATE(3875), @@ -534505,52 +534558,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3875), [sym_preproc_define] = STATE(3875), [sym_preproc_undef] = STATE(3875), - [anon_sym_LBRACK] = ACTIONS(5200), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_where] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_BANG] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_GT_GT_GT] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5200), - [anon_sym_BANG_EQ] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_DOT] = ACTIONS(5202), - [anon_sym_switch] = ACTIONS(5200), - [anon_sym_DOT_DOT] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_QMARK_QMARK] = ACTIONS(5200), - [anon_sym_from] = ACTIONS(5200), - [anon_sym_into] = ACTIONS(5200), - [anon_sym_join] = ACTIONS(5200), - [anon_sym_let] = ACTIONS(5200), - [anon_sym_orderby] = ACTIONS(5200), - [anon_sym_ascending] = ACTIONS(5200), - [anon_sym_descending] = ACTIONS(5200), - [anon_sym_group] = ACTIONS(5200), - [anon_sym_select] = ACTIONS(5200), - [anon_sym_as] = ACTIONS(5202), - [anon_sym_is] = ACTIONS(5200), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_with] = ACTIONS(5200), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(5640), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534563,24 +534598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3876] = { - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(3876), [sym_preproc_endregion] = STATE(3876), [sym_preproc_line] = STATE(3876), @@ -534590,34 +534607,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3876), [sym_preproc_define] = STATE(3876), [sym_preproc_undef] = STATE(3876), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(3895), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6235), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4898), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4900), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_GT_GT_GT] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_switch] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_or] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_QMARK_QMARK] = ACTIONS(4898), + [anon_sym_from] = ACTIONS(4898), + [anon_sym_into] = ACTIONS(4898), + [anon_sym_join] = ACTIONS(4898), + [anon_sym_let] = ACTIONS(4898), + [anon_sym_orderby] = ACTIONS(4898), + [anon_sym_ascending] = ACTIONS(4898), + [anon_sym_descending] = ACTIONS(4898), + [anon_sym_group] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_is] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534630,24 +534665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3877] = { - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3877), [sym_preproc_endregion] = STATE(3877), [sym_preproc_line] = STATE(3877), @@ -534657,34 +534674,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3877), [sym_preproc_define] = STATE(3877), [sym_preproc_undef] = STATE(3877), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(4174), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6237), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5868), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_where] = ACTIONS(5199), + [anon_sym_QMARK] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5199), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5199), + [anon_sym_CARET] = ACTIONS(5199), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_LT_LT] = ACTIONS(5199), + [anon_sym_GT_GT] = ACTIONS(5201), + [anon_sym_GT_GT_GT] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5201), + [anon_sym_switch] = ACTIONS(5199), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_and] = ACTIONS(5199), + [anon_sym_or] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_QMARK_QMARK] = ACTIONS(5199), + [anon_sym_from] = ACTIONS(5199), + [anon_sym_into] = ACTIONS(5199), + [anon_sym_join] = ACTIONS(5199), + [anon_sym_let] = ACTIONS(5199), + [anon_sym_orderby] = ACTIONS(5199), + [anon_sym_ascending] = ACTIONS(5199), + [anon_sym_descending] = ACTIONS(5199), + [anon_sym_group] = ACTIONS(5199), + [anon_sym_select] = ACTIONS(5199), + [anon_sym_as] = ACTIONS(5201), + [anon_sym_is] = ACTIONS(5199), + [anon_sym_DASH_GT] = ACTIONS(5199), + [anon_sym_with] = ACTIONS(5199), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534697,6 +534732,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3878] = { + [sym__name] = STATE(3482), + [sym_alias_qualified_name] = STATE(3339), + [sym__simple_name] = STATE(3339), + [sym_qualified_name] = STATE(3339), + [sym_generic_name] = STATE(3347), + [sym_type] = STATE(3360), + [sym_implicit_type] = STATE(3344), + [sym_array_type] = STATE(3355), + [sym__array_base_type] = STATE(7263), + [sym_nullable_type] = STATE(3363), + [sym_pointer_type] = STATE(3363), + [sym__pointer_base_type] = STATE(7576), + [sym_function_pointer_type] = STATE(3363), + [sym_ref_type] = STATE(3344), + [sym_scoped_type] = STATE(3344), + [sym_tuple_type] = STATE(3366), + [sym_identifier] = STATE(3194), + [sym__reserved_identifier] = STATE(3192), [sym_preproc_region] = STATE(3878), [sym_preproc_endregion] = STATE(3878), [sym_preproc_line] = STATE(3878), @@ -534706,52 +534759,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3878), [sym_preproc_define] = STATE(3878), [sym_preproc_undef] = STATE(3878), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_LT_LT] = ACTIONS(5103), - [anon_sym_GT_GT] = ACTIONS(5105), - [anon_sym_GT_GT_GT] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_switch] = ACTIONS(5103), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_and] = ACTIONS(5103), - [anon_sym_or] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_QMARK_QMARK] = ACTIONS(5103), - [anon_sym_from] = ACTIONS(5103), - [anon_sym_into] = ACTIONS(5103), - [anon_sym_join] = ACTIONS(5103), - [anon_sym_let] = ACTIONS(5103), - [anon_sym_orderby] = ACTIONS(5103), - [anon_sym_ascending] = ACTIONS(5103), - [anon_sym_descending] = ACTIONS(5103), - [anon_sym_group] = ACTIONS(5103), - [anon_sym_select] = ACTIONS(5103), - [anon_sym_as] = ACTIONS(5105), - [anon_sym_is] = ACTIONS(5103), - [anon_sym_DASH_GT] = ACTIONS(5103), - [anon_sym_with] = ACTIONS(5103), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(4223), + [anon_sym_delegate] = ACTIONS(5712), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6211), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5792), + [anon_sym_var] = ACTIONS(5716), + [sym_predefined_type] = ACTIONS(5718), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(3800), + [anon_sym_let] = ACTIONS(3800), + [anon_sym_orderby] = ACTIONS(3800), + [anon_sym_ascending] = ACTIONS(3800), + [anon_sym_descending] = ACTIONS(3800), + [anon_sym_group] = ACTIONS(3800), + [anon_sym_by] = ACTIONS(3800), + [anon_sym_select] = ACTIONS(3800), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534764,8 +534799,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3879] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3879), [sym_preproc_endregion] = STATE(3879), [sym_preproc_line] = STATE(3879), @@ -534775,50 +534808,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3879), [sym_preproc_define] = STATE(3879), [sym_preproc_undef] = STATE(3879), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5783), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5783), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5783), - [anon_sym_into] = ACTIONS(5783), - [anon_sym_join] = ACTIONS(5783), - [anon_sym_let] = ACTIONS(5783), - [anon_sym_orderby] = ACTIONS(5783), - [anon_sym_ascending] = ACTIONS(5783), - [anon_sym_descending] = ACTIONS(5783), - [anon_sym_group] = ACTIONS(5783), - [anon_sym_select] = ACTIONS(5783), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5173), + [anon_sym_GT] = ACTIONS(5173), + [anon_sym_where] = ACTIONS(5171), + [anon_sym_QMARK] = ACTIONS(5173), + [anon_sym_BANG] = ACTIONS(5173), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5173), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5173), + [anon_sym_GT_GT_GT] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5173), + [anon_sym_switch] = ACTIONS(5171), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_QMARK_QMARK] = ACTIONS(5171), + [anon_sym_from] = ACTIONS(5171), + [anon_sym_into] = ACTIONS(5171), + [anon_sym_join] = ACTIONS(5171), + [anon_sym_let] = ACTIONS(5171), + [anon_sym_orderby] = ACTIONS(5171), + [anon_sym_ascending] = ACTIONS(5171), + [anon_sym_descending] = ACTIONS(5171), + [anon_sym_group] = ACTIONS(5171), + [anon_sym_select] = ACTIONS(5171), + [anon_sym_as] = ACTIONS(5173), + [anon_sym_is] = ACTIONS(5171), + [anon_sym_DASH_GT] = ACTIONS(5171), + [anon_sym_with] = ACTIONS(5171), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534840,52 +534875,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3880), [sym_preproc_define] = STATE(3880), [sym_preproc_undef] = STATE(3880), - [anon_sym_LBRACK] = ACTIONS(5220), - [anon_sym_COMMA] = ACTIONS(5220), - [anon_sym_LPAREN] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_where] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_BANG] = ACTIONS(5222), - [anon_sym_PLUS_PLUS] = ACTIONS(5220), - [anon_sym_DASH_DASH] = ACTIONS(5220), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5220), - [anon_sym_SLASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5220), - [anon_sym_CARET] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5220), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_GT_GT_GT] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [anon_sym_GT_EQ] = ACTIONS(5220), - [anon_sym_LT_EQ] = ACTIONS(5220), - [anon_sym_DOT] = ACTIONS(5222), - [anon_sym_switch] = ACTIONS(5220), - [anon_sym_DOT_DOT] = ACTIONS(5220), - [anon_sym_and] = ACTIONS(5220), - [anon_sym_or] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_QMARK_QMARK] = ACTIONS(5220), - [anon_sym_from] = ACTIONS(5220), - [anon_sym_into] = ACTIONS(5220), - [anon_sym_join] = ACTIONS(5220), - [anon_sym_let] = ACTIONS(5220), - [anon_sym_orderby] = ACTIONS(5220), - [anon_sym_ascending] = ACTIONS(5220), - [anon_sym_descending] = ACTIONS(5220), - [anon_sym_group] = ACTIONS(5220), - [anon_sym_select] = ACTIONS(5220), - [anon_sym_as] = ACTIONS(5222), - [anon_sym_is] = ACTIONS(5220), - [anon_sym_DASH_GT] = ACTIONS(5220), - [anon_sym_with] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_where] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_BANG] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_GT_GT_GT] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5226), + [anon_sym_GT_EQ] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5226), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_switch] = ACTIONS(5226), + [anon_sym_DOT_DOT] = ACTIONS(5226), + [anon_sym_and] = ACTIONS(5226), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_QMARK_QMARK] = ACTIONS(5226), + [anon_sym_from] = ACTIONS(5226), + [anon_sym_into] = ACTIONS(5226), + [anon_sym_join] = ACTIONS(5226), + [anon_sym_let] = ACTIONS(5226), + [anon_sym_orderby] = ACTIONS(5226), + [anon_sym_ascending] = ACTIONS(5226), + [anon_sym_descending] = ACTIONS(5226), + [anon_sym_group] = ACTIONS(5226), + [anon_sym_select] = ACTIONS(5226), + [anon_sym_as] = ACTIONS(5228), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_with] = ACTIONS(5226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534898,6 +534933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3881] = { + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3881), [sym_preproc_endregion] = STATE(3881), [sym_preproc_line] = STATE(3881), @@ -534907,52 +534944,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3881), [sym_preproc_define] = STATE(3881), [sym_preproc_undef] = STATE(3881), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_COMMA] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5114), - [anon_sym_QMARK] = ACTIONS(5116), - [anon_sym_BANG] = ACTIONS(5116), - [anon_sym_PLUS_PLUS] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5114), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5114), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5114), - [anon_sym_CARET] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5114), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_GT_GT_GT] = ACTIONS(5114), - [anon_sym_EQ_EQ] = ACTIONS(5114), - [anon_sym_BANG_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_switch] = ACTIONS(5114), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_and] = ACTIONS(5114), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_QMARK_QMARK] = ACTIONS(5114), - [anon_sym_from] = ACTIONS(5114), - [anon_sym_into] = ACTIONS(5114), - [anon_sym_join] = ACTIONS(5114), - [anon_sym_let] = ACTIONS(5114), - [anon_sym_orderby] = ACTIONS(5114), - [anon_sym_ascending] = ACTIONS(5114), - [anon_sym_descending] = ACTIONS(5114), - [anon_sym_group] = ACTIONS(5114), - [anon_sym_select] = ACTIONS(5114), - [anon_sym_as] = ACTIONS(5116), - [anon_sym_is] = ACTIONS(5114), - [anon_sym_DASH_GT] = ACTIONS(5114), - [anon_sym_with] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5878), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5878), + [anon_sym_into] = ACTIONS(5878), + [anon_sym_join] = ACTIONS(5878), + [anon_sym_let] = ACTIONS(5878), + [anon_sym_orderby] = ACTIONS(5878), + [anon_sym_ascending] = ACTIONS(5878), + [anon_sym_descending] = ACTIONS(5878), + [anon_sym_group] = ACTIONS(5878), + [anon_sym_select] = ACTIONS(5878), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -534965,6 +535000,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3882] = { + [sym_variable_declaration] = STATE(7538), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(5773), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3882), [sym_preproc_endregion] = STATE(3882), [sym_preproc_line] = STATE(3882), @@ -534974,52 +535028,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3882), [sym_preproc_define] = STATE(3882), [sym_preproc_undef] = STATE(3882), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5228), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_where] = ACTIONS(5228), - [anon_sym_QMARK] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_GT_GT_GT] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [anon_sym_GT_EQ] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5228), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_switch] = ACTIONS(5228), - [anon_sym_DOT_DOT] = ACTIONS(5228), - [anon_sym_and] = ACTIONS(5228), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_QMARK_QMARK] = ACTIONS(5228), - [anon_sym_from] = ACTIONS(5228), - [anon_sym_into] = ACTIONS(5228), - [anon_sym_join] = ACTIONS(5228), - [anon_sym_let] = ACTIONS(5228), - [anon_sym_orderby] = ACTIONS(5228), - [anon_sym_ascending] = ACTIONS(5228), - [anon_sym_descending] = ACTIONS(5228), - [anon_sym_group] = ACTIONS(5228), - [anon_sym_select] = ACTIONS(5228), - [anon_sym_as] = ACTIONS(5230), - [anon_sym_is] = ACTIONS(5228), - [anon_sym_DASH_GT] = ACTIONS(5228), - [anon_sym_with] = ACTIONS(5228), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535032,6 +535067,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3883] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3883), [sym_preproc_endregion] = STATE(3883), [sym_preproc_line] = STATE(3883), @@ -535041,52 +535094,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3883), [sym_preproc_define] = STATE(3883), [sym_preproc_undef] = STATE(3883), - [anon_sym_LBRACK] = ACTIONS(5240), - [anon_sym_COMMA] = ACTIONS(5240), - [anon_sym_LPAREN] = ACTIONS(5240), - [anon_sym_LT] = ACTIONS(5242), - [anon_sym_GT] = ACTIONS(5242), - [anon_sym_where] = ACTIONS(5240), - [anon_sym_QMARK] = ACTIONS(5242), - [anon_sym_BANG] = ACTIONS(5242), - [anon_sym_PLUS_PLUS] = ACTIONS(5240), - [anon_sym_DASH_DASH] = ACTIONS(5240), - [anon_sym_PLUS] = ACTIONS(5242), - [anon_sym_DASH] = ACTIONS(5242), - [anon_sym_STAR] = ACTIONS(5240), - [anon_sym_SLASH] = ACTIONS(5242), - [anon_sym_PERCENT] = ACTIONS(5240), - [anon_sym_CARET] = ACTIONS(5240), - [anon_sym_PIPE] = ACTIONS(5242), - [anon_sym_AMP] = ACTIONS(5242), - [anon_sym_LT_LT] = ACTIONS(5240), - [anon_sym_GT_GT] = ACTIONS(5242), - [anon_sym_GT_GT_GT] = ACTIONS(5240), - [anon_sym_EQ_EQ] = ACTIONS(5240), - [anon_sym_BANG_EQ] = ACTIONS(5240), - [anon_sym_GT_EQ] = ACTIONS(5240), - [anon_sym_LT_EQ] = ACTIONS(5240), - [anon_sym_DOT] = ACTIONS(5242), - [anon_sym_switch] = ACTIONS(5240), - [anon_sym_DOT_DOT] = ACTIONS(5240), - [anon_sym_and] = ACTIONS(5240), - [anon_sym_or] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(5240), - [anon_sym_PIPE_PIPE] = ACTIONS(5240), - [anon_sym_QMARK_QMARK] = ACTIONS(5240), - [anon_sym_from] = ACTIONS(5240), - [anon_sym_into] = ACTIONS(5240), - [anon_sym_join] = ACTIONS(5240), - [anon_sym_let] = ACTIONS(5240), - [anon_sym_orderby] = ACTIONS(5240), - [anon_sym_ascending] = ACTIONS(5240), - [anon_sym_descending] = ACTIONS(5240), - [anon_sym_group] = ACTIONS(5240), - [anon_sym_select] = ACTIONS(5240), - [anon_sym_as] = ACTIONS(5242), - [anon_sym_is] = ACTIONS(5240), - [anon_sym_DASH_GT] = ACTIONS(5240), - [anon_sym_with] = ACTIONS(5240), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(6213), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6215), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(6217), + [anon_sym_var] = ACTIONS(4767), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535108,52 +535143,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3884), [sym_preproc_define] = STATE(3884), [sym_preproc_undef] = STATE(3884), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_where] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_QMARK_QMARK] = ACTIONS(2991), - [anon_sym_from] = ACTIONS(2991), - [anon_sym_into] = ACTIONS(2991), - [anon_sym_join] = ACTIONS(2991), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_orderby] = ACTIONS(2991), - [anon_sym_ascending] = ACTIONS(2991), - [anon_sym_descending] = ACTIONS(2991), - [anon_sym_group] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_where] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4981), + [anon_sym_BANG] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4979), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_CARET] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4979), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_GT_GT_GT] = ACTIONS(4979), + [anon_sym_EQ_EQ] = ACTIONS(4979), + [anon_sym_BANG_EQ] = ACTIONS(4979), + [anon_sym_GT_EQ] = ACTIONS(4979), + [anon_sym_LT_EQ] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_switch] = ACTIONS(4979), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_and] = ACTIONS(4979), + [anon_sym_or] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_PIPE_PIPE] = ACTIONS(4979), + [anon_sym_QMARK_QMARK] = ACTIONS(4979), + [anon_sym_from] = ACTIONS(4979), + [anon_sym_into] = ACTIONS(4979), + [anon_sym_join] = ACTIONS(4979), + [anon_sym_let] = ACTIONS(4979), + [anon_sym_orderby] = ACTIONS(4979), + [anon_sym_ascending] = ACTIONS(4979), + [anon_sym_descending] = ACTIONS(4979), + [anon_sym_group] = ACTIONS(4979), + [anon_sym_select] = ACTIONS(4979), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4979), + [anon_sym_DASH_GT] = ACTIONS(4979), + [anon_sym_with] = ACTIONS(4979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535175,52 +535210,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3885), [sym_preproc_define] = STATE(3885), [sym_preproc_undef] = STATE(3885), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_where] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(5069), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5069), + [anon_sym_GT_GT_GT] = ACTIONS(5067), + [anon_sym_EQ_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(5069), + [anon_sym_switch] = ACTIONS(5067), + [anon_sym_DOT_DOT] = ACTIONS(5067), + [anon_sym_and] = ACTIONS(5067), + [anon_sym_or] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_QMARK_QMARK] = ACTIONS(5067), + [anon_sym_from] = ACTIONS(5067), + [anon_sym_into] = ACTIONS(5067), + [anon_sym_join] = ACTIONS(5067), + [anon_sym_let] = ACTIONS(5067), + [anon_sym_orderby] = ACTIONS(5067), + [anon_sym_ascending] = ACTIONS(5067), + [anon_sym_descending] = ACTIONS(5067), + [anon_sym_group] = ACTIONS(5067), + [anon_sym_select] = ACTIONS(5067), + [anon_sym_as] = ACTIONS(5069), + [anon_sym_is] = ACTIONS(5067), + [anon_sym_DASH_GT] = ACTIONS(5067), + [anon_sym_with] = ACTIONS(5067), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535233,24 +535268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3886] = { - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), + [sym_argument_list] = STATE(3800), + [sym_bracketed_argument_list] = STATE(2934), [sym_preproc_region] = STATE(3886), [sym_preproc_endregion] = STATE(3886), [sym_preproc_line] = STATE(3886), @@ -535260,34 +535279,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3886), [sym_preproc_define] = STATE(3886), [sym_preproc_undef] = STATE(3886), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(4176), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6241), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5881), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(6099), + [anon_sym_GT] = ACTIONS(6099), + [anon_sym_where] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(6101), + [anon_sym_BANG] = ACTIONS(5686), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6071), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6071), + [anon_sym_CARET] = ACTIONS(6103), + [anon_sym_PIPE] = ACTIONS(6105), + [anon_sym_AMP] = ACTIONS(6107), + [anon_sym_LT_LT] = ACTIONS(6075), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_GT_GT_GT] = ACTIONS(6075), + [anon_sym_EQ_EQ] = ACTIONS(6109), + [anon_sym_BANG_EQ] = ACTIONS(6109), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_switch] = ACTIONS(5700), + [anon_sym_DOT_DOT] = ACTIONS(6079), + [anon_sym_AMP_AMP] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_QMARK_QMARK] = ACTIONS(6117), + [anon_sym_from] = ACTIONS(5886), + [anon_sym_into] = ACTIONS(5886), + [anon_sym_join] = ACTIONS(5886), + [anon_sym_let] = ACTIONS(5886), + [anon_sym_orderby] = ACTIONS(5886), + [anon_sym_ascending] = ACTIONS(5886), + [anon_sym_descending] = ACTIONS(5886), + [anon_sym_group] = ACTIONS(5886), + [anon_sym_select] = ACTIONS(5886), + [anon_sym_as] = ACTIONS(5818), + [anon_sym_is] = ACTIONS(6119), + [anon_sym_DASH_GT] = ACTIONS(4763), + [anon_sym_with] = ACTIONS(5704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535309,52 +535344,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3887), [sym_preproc_define] = STATE(3887), [sym_preproc_undef] = STATE(3887), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_COMMA] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_LT] = ACTIONS(5178), - [anon_sym_GT] = ACTIONS(5178), - [anon_sym_where] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(5178), - [anon_sym_BANG] = ACTIONS(5178), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_PLUS] = ACTIONS(5178), - [anon_sym_DASH] = ACTIONS(5178), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_SLASH] = ACTIONS(5178), - [anon_sym_PERCENT] = ACTIONS(5176), - [anon_sym_CARET] = ACTIONS(5176), - [anon_sym_PIPE] = ACTIONS(5178), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LT_LT] = ACTIONS(5176), - [anon_sym_GT_GT] = ACTIONS(5178), - [anon_sym_GT_GT_GT] = ACTIONS(5176), - [anon_sym_EQ_EQ] = ACTIONS(5176), - [anon_sym_BANG_EQ] = ACTIONS(5176), - [anon_sym_GT_EQ] = ACTIONS(5176), - [anon_sym_LT_EQ] = ACTIONS(5176), - [anon_sym_DOT] = ACTIONS(5178), - [anon_sym_switch] = ACTIONS(5176), - [anon_sym_DOT_DOT] = ACTIONS(5176), - [anon_sym_and] = ACTIONS(5176), - [anon_sym_or] = ACTIONS(5178), - [anon_sym_AMP_AMP] = ACTIONS(5176), - [anon_sym_PIPE_PIPE] = ACTIONS(5176), - [anon_sym_QMARK_QMARK] = ACTIONS(5176), - [anon_sym_from] = ACTIONS(5176), - [anon_sym_into] = ACTIONS(5176), - [anon_sym_join] = ACTIONS(5176), - [anon_sym_let] = ACTIONS(5176), - [anon_sym_orderby] = ACTIONS(5176), - [anon_sym_ascending] = ACTIONS(5176), - [anon_sym_descending] = ACTIONS(5176), - [anon_sym_group] = ACTIONS(5176), - [anon_sym_select] = ACTIONS(5176), - [anon_sym_as] = ACTIONS(5178), - [anon_sym_is] = ACTIONS(5176), - [anon_sym_DASH_GT] = ACTIONS(5176), - [anon_sym_with] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5191), + [anon_sym_QMARK] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PLUS_PLUS] = ACTIONS(5191), + [anon_sym_DASH_DASH] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5191), + [anon_sym_CARET] = ACTIONS(5191), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_AMP] = ACTIONS(5193), + [anon_sym_LT_LT] = ACTIONS(5191), + [anon_sym_GT_GT] = ACTIONS(5193), + [anon_sym_GT_GT_GT] = ACTIONS(5191), + [anon_sym_EQ_EQ] = ACTIONS(5191), + [anon_sym_BANG_EQ] = ACTIONS(5191), + [anon_sym_GT_EQ] = ACTIONS(5191), + [anon_sym_LT_EQ] = ACTIONS(5191), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_switch] = ACTIONS(5191), + [anon_sym_DOT_DOT] = ACTIONS(5191), + [anon_sym_and] = ACTIONS(5191), + [anon_sym_or] = ACTIONS(5193), + [anon_sym_AMP_AMP] = ACTIONS(5191), + [anon_sym_PIPE_PIPE] = ACTIONS(5191), + [anon_sym_QMARK_QMARK] = ACTIONS(5191), + [anon_sym_from] = ACTIONS(5191), + [anon_sym_into] = ACTIONS(5191), + [anon_sym_join] = ACTIONS(5191), + [anon_sym_let] = ACTIONS(5191), + [anon_sym_orderby] = ACTIONS(5191), + [anon_sym_ascending] = ACTIONS(5191), + [anon_sym_descending] = ACTIONS(5191), + [anon_sym_group] = ACTIONS(5191), + [anon_sym_select] = ACTIONS(5191), + [anon_sym_as] = ACTIONS(5193), + [anon_sym_is] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), + [anon_sym_with] = ACTIONS(5191), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535367,24 +535402,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3888] = { - [sym__name] = STATE(4952), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(4461), - [sym__reserved_identifier] = STATE(2981), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(6184), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3888), [sym_preproc_endregion] = STATE(3888), [sym_preproc_line] = STATE(3888), @@ -535394,34 +535429,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3888), [sym_preproc_define] = STATE(3888), [sym_preproc_undef] = STATE(3888), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(4077), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6243), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5856), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(5640), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535434,6 +535469,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3889] = { + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3263), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3234), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3889), [sym_preproc_endregion] = STATE(3889), [sym_preproc_line] = STATE(3889), @@ -535443,52 +535496,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3889), [sym_preproc_define] = STATE(3889), [sym_preproc_undef] = STATE(3889), - [anon_sym_LBRACK] = ACTIONS(5250), - [anon_sym_COMMA] = ACTIONS(5250), - [anon_sym_LPAREN] = ACTIONS(5250), - [anon_sym_LT] = ACTIONS(5252), - [anon_sym_GT] = ACTIONS(5252), - [anon_sym_where] = ACTIONS(5250), - [anon_sym_QMARK] = ACTIONS(5252), - [anon_sym_BANG] = ACTIONS(5252), - [anon_sym_PLUS_PLUS] = ACTIONS(5250), - [anon_sym_DASH_DASH] = ACTIONS(5250), - [anon_sym_PLUS] = ACTIONS(5252), - [anon_sym_DASH] = ACTIONS(5252), - [anon_sym_STAR] = ACTIONS(5250), - [anon_sym_SLASH] = ACTIONS(5252), - [anon_sym_PERCENT] = ACTIONS(5250), - [anon_sym_CARET] = ACTIONS(5250), - [anon_sym_PIPE] = ACTIONS(5252), - [anon_sym_AMP] = ACTIONS(5252), - [anon_sym_LT_LT] = ACTIONS(5250), - [anon_sym_GT_GT] = ACTIONS(5252), - [anon_sym_GT_GT_GT] = ACTIONS(5250), - [anon_sym_EQ_EQ] = ACTIONS(5250), - [anon_sym_BANG_EQ] = ACTIONS(5250), - [anon_sym_GT_EQ] = ACTIONS(5250), - [anon_sym_LT_EQ] = ACTIONS(5250), - [anon_sym_DOT] = ACTIONS(5252), - [anon_sym_switch] = ACTIONS(5250), - [anon_sym_DOT_DOT] = ACTIONS(5250), - [anon_sym_and] = ACTIONS(5250), - [anon_sym_or] = ACTIONS(5252), - [anon_sym_AMP_AMP] = ACTIONS(5250), - [anon_sym_PIPE_PIPE] = ACTIONS(5250), - [anon_sym_QMARK_QMARK] = ACTIONS(5250), - [anon_sym_from] = ACTIONS(5250), - [anon_sym_into] = ACTIONS(5250), - [anon_sym_join] = ACTIONS(5250), - [anon_sym_let] = ACTIONS(5250), - [anon_sym_orderby] = ACTIONS(5250), - [anon_sym_ascending] = ACTIONS(5250), - [anon_sym_descending] = ACTIONS(5250), - [anon_sym_group] = ACTIONS(5250), - [anon_sym_select] = ACTIONS(5250), - [anon_sym_as] = ACTIONS(5252), - [anon_sym_is] = ACTIONS(5250), - [anon_sym_DASH_GT] = ACTIONS(5250), - [anon_sym_with] = ACTIONS(5250), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(6163), + [anon_sym_ref] = ACTIONS(4237), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(6219), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5828), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535501,24 +535536,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3890] = { - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3890), [sym_preproc_endregion] = STATE(3890), [sym_preproc_line] = STATE(3890), @@ -535531,17 +535566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3891), [anon_sym_alias] = ACTIONS(3893), [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(4245), - [anon_sym_delegate] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(4208), + [anon_sym_delegate] = ACTIONS(4070), [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6245), + [anon_sym_readonly] = ACTIONS(6221), [anon_sym_where] = ACTIONS(3893), [anon_sym_notnull] = ACTIONS(3893), [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5927), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), + [anon_sym_scoped] = ACTIONS(5912), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), [anon_sym_yield] = ACTIONS(3893), [anon_sym_when] = ACTIONS(3893), [anon_sym_from] = ACTIONS(3893), @@ -535577,52 +535612,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3891), [sym_preproc_define] = STATE(3891), [sym_preproc_undef] = STATE(3891), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_COMMA] = ACTIONS(5428), - [anon_sym_LPAREN] = ACTIONS(5428), - [anon_sym_LT] = ACTIONS(5430), - [anon_sym_GT] = ACTIONS(5430), - [anon_sym_where] = ACTIONS(5428), - [anon_sym_QMARK] = ACTIONS(5430), - [anon_sym_BANG] = ACTIONS(5430), - [anon_sym_PLUS_PLUS] = ACTIONS(5428), - [anon_sym_DASH_DASH] = ACTIONS(5428), - [anon_sym_PLUS] = ACTIONS(5430), - [anon_sym_DASH] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5428), - [anon_sym_SLASH] = ACTIONS(5430), - [anon_sym_PERCENT] = ACTIONS(5428), - [anon_sym_CARET] = ACTIONS(5428), - [anon_sym_PIPE] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5430), - [anon_sym_LT_LT] = ACTIONS(5428), - [anon_sym_GT_GT] = ACTIONS(5430), - [anon_sym_GT_GT_GT] = ACTIONS(5428), - [anon_sym_EQ_EQ] = ACTIONS(5428), - [anon_sym_BANG_EQ] = ACTIONS(5428), - [anon_sym_GT_EQ] = ACTIONS(5428), - [anon_sym_LT_EQ] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_switch] = ACTIONS(5428), - [anon_sym_DOT_DOT] = ACTIONS(5428), - [anon_sym_and] = ACTIONS(5428), - [anon_sym_or] = ACTIONS(5430), - [anon_sym_AMP_AMP] = ACTIONS(5428), - [anon_sym_PIPE_PIPE] = ACTIONS(5428), - [anon_sym_QMARK_QMARK] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(5428), - [anon_sym_into] = ACTIONS(5428), - [anon_sym_join] = ACTIONS(5428), - [anon_sym_let] = ACTIONS(5428), - [anon_sym_orderby] = ACTIONS(5428), - [anon_sym_ascending] = ACTIONS(5428), - [anon_sym_descending] = ACTIONS(5428), - [anon_sym_group] = ACTIONS(5428), - [anon_sym_select] = ACTIONS(5428), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5428), - [anon_sym_DASH_GT] = ACTIONS(5428), - [anon_sym_with] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LT] = ACTIONS(5240), + [anon_sym_GT] = ACTIONS(5240), + [anon_sym_where] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5238), + [anon_sym_DASH_DASH] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_SLASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_CARET] = ACTIONS(5238), + [anon_sym_PIPE] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5240), + [anon_sym_GT_GT_GT] = ACTIONS(5238), + [anon_sym_EQ_EQ] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5238), + [anon_sym_GT_EQ] = ACTIONS(5238), + [anon_sym_LT_EQ] = ACTIONS(5238), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_switch] = ACTIONS(5238), + [anon_sym_DOT_DOT] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5238), + [anon_sym_PIPE_PIPE] = ACTIONS(5238), + [anon_sym_QMARK_QMARK] = ACTIONS(5238), + [anon_sym_from] = ACTIONS(5238), + [anon_sym_into] = ACTIONS(5238), + [anon_sym_join] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_orderby] = ACTIONS(5238), + [anon_sym_ascending] = ACTIONS(5238), + [anon_sym_descending] = ACTIONS(5238), + [anon_sym_group] = ACTIONS(5238), + [anon_sym_select] = ACTIONS(5238), + [anon_sym_as] = ACTIONS(5240), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_DASH_GT] = ACTIONS(5238), + [anon_sym_with] = ACTIONS(5238), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535635,24 +535670,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3892] = { - [sym__name] = STATE(3448), - [sym_alias_qualified_name] = STATE(3295), - [sym__simple_name] = STATE(3295), - [sym_qualified_name] = STATE(3295), - [sym_generic_name] = STATE(3329), - [sym_type] = STATE(3307), - [sym_implicit_type] = STATE(3296), - [sym_array_type] = STATE(3297), - [sym__array_base_type] = STATE(7133), - [sym_nullable_type] = STATE(3298), - [sym_pointer_type] = STATE(3298), - [sym__pointer_base_type] = STATE(7411), - [sym_function_pointer_type] = STATE(3298), - [sym_ref_type] = STATE(3296), - [sym_scoped_type] = STATE(3296), - [sym_tuple_type] = STATE(3299), - [sym_identifier] = STATE(3221), - [sym__reserved_identifier] = STATE(3208), [sym_preproc_region] = STATE(3892), [sym_preproc_endregion] = STATE(3892), [sym_preproc_line] = STATE(3892), @@ -535662,34 +535679,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3892), [sym_preproc_define] = STATE(3892), [sym_preproc_undef] = STATE(3892), - [sym__identifier_token] = ACTIONS(3812), - [anon_sym_alias] = ACTIONS(3814), - [anon_sym_global] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(6141), - [anon_sym_ref] = ACTIONS(3816), - [anon_sym_delegate] = ACTIONS(5746), - [anon_sym_file] = ACTIONS(3814), - [anon_sym_readonly] = ACTIONS(6247), - [anon_sym_where] = ACTIONS(3814), - [anon_sym_notnull] = ACTIONS(3814), - [anon_sym_unmanaged] = ACTIONS(3814), - [anon_sym_scoped] = ACTIONS(5789), - [anon_sym_var] = ACTIONS(5750), - [sym_predefined_type] = ACTIONS(5752), - [anon_sym_yield] = ACTIONS(3814), - [anon_sym_when] = ACTIONS(3814), - [anon_sym_from] = ACTIONS(3814), - [anon_sym_into] = ACTIONS(3814), - [anon_sym_join] = ACTIONS(3814), - [anon_sym_on] = ACTIONS(3814), - [anon_sym_equals] = ACTIONS(3814), - [anon_sym_let] = ACTIONS(3814), - [anon_sym_orderby] = ACTIONS(3814), - [anon_sym_ascending] = ACTIONS(3814), - [anon_sym_descending] = ACTIONS(3814), - [anon_sym_group] = ACTIONS(3814), - [anon_sym_by] = ACTIONS(3814), - [anon_sym_select] = ACTIONS(3814), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(6223), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535702,6 +535737,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3893] = { + [sym__name] = STATE(4951), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(4435), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3893), [sym_preproc_endregion] = STATE(3893), [sym_preproc_line] = STATE(3893), @@ -535711,52 +535764,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3893), [sym_preproc_define] = STATE(3893), [sym_preproc_undef] = STATE(3893), - [anon_sym_LBRACK] = ACTIONS(5156), - [anon_sym_COMMA] = ACTIONS(5156), - [anon_sym_LPAREN] = ACTIONS(5156), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5158), - [anon_sym_where] = ACTIONS(5156), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_BANG] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5156), - [anon_sym_DASH_DASH] = ACTIONS(5156), - [anon_sym_PLUS] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_STAR] = ACTIONS(5156), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5156), - [anon_sym_CARET] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5158), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_LT_LT] = ACTIONS(5156), - [anon_sym_GT_GT] = ACTIONS(5158), - [anon_sym_GT_GT_GT] = ACTIONS(5156), - [anon_sym_EQ_EQ] = ACTIONS(5156), - [anon_sym_BANG_EQ] = ACTIONS(5156), - [anon_sym_GT_EQ] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5156), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_switch] = ACTIONS(5156), - [anon_sym_DOT_DOT] = ACTIONS(5156), - [anon_sym_and] = ACTIONS(5156), - [anon_sym_or] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_QMARK_QMARK] = ACTIONS(5156), - [anon_sym_from] = ACTIONS(5156), - [anon_sym_into] = ACTIONS(5156), - [anon_sym_join] = ACTIONS(5156), - [anon_sym_let] = ACTIONS(5156), - [anon_sym_orderby] = ACTIONS(5156), - [anon_sym_ascending] = ACTIONS(5156), - [anon_sym_descending] = ACTIONS(5156), - [anon_sym_group] = ACTIONS(5156), - [anon_sym_select] = ACTIONS(5156), - [anon_sym_as] = ACTIONS(5158), - [anon_sym_is] = ACTIONS(5156), - [anon_sym_DASH_GT] = ACTIONS(5156), - [anon_sym_with] = ACTIONS(5156), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(4060), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_readonly] = ACTIONS(6225), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(5890), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535769,24 +535804,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3894] = { - [sym__name] = STATE(2624), - [sym_alias_qualified_name] = STATE(2417), - [sym__simple_name] = STATE(2417), - [sym_qualified_name] = STATE(2417), - [sym_generic_name] = STATE(2424), - [sym_type] = STATE(2408), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(2420), - [sym__array_base_type] = STATE(7167), - [sym_nullable_type] = STATE(2421), - [sym_pointer_type] = STATE(2421), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(2421), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(2422), - [sym_identifier] = STATE(2588), - [sym__reserved_identifier] = STATE(2378), + [sym__name] = STATE(2635), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(2399), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2576), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3894), [sym_preproc_endregion] = STATE(3894), [sym_preproc_line] = STATE(3894), @@ -535796,34 +535831,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3894), [sym_preproc_define] = STATE(3894), [sym_preproc_undef] = STATE(3894), - [sym__identifier_token] = ACTIONS(4106), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_ref] = ACTIONS(3642), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_ref] = ACTIONS(3620), [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(4108), + [anon_sym_file] = ACTIONS(4098), [anon_sym_readonly] = ACTIONS(2937), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(6249), - [anon_sym_var] = ACTIONS(5838), - [sym_predefined_type] = ACTIONS(5840), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4108), - [anon_sym_join] = ACTIONS(4108), - [anon_sym_on] = ACTIONS(4108), - [anon_sym_equals] = ACTIONS(4108), - [anon_sym_let] = ACTIONS(4108), - [anon_sym_orderby] = ACTIONS(4108), - [anon_sym_ascending] = ACTIONS(4108), - [anon_sym_descending] = ACTIONS(4108), - [anon_sym_group] = ACTIONS(4108), - [anon_sym_by] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(6227), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535836,6 +535871,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3895] = { + [sym__name] = STATE(2450), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(2399), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3895), [sym_preproc_endregion] = STATE(3895), [sym_preproc_line] = STATE(3895), @@ -535845,52 +535898,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3895), [sym_preproc_define] = STATE(3895), [sym_preproc_undef] = STATE(3895), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PLUS_PLUS] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_GT_GT_GT] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ] = ACTIONS(5023), - [anon_sym_GT_EQ] = ACTIONS(5023), - [anon_sym_LT_EQ] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_switch] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_and] = ACTIONS(5023), - [anon_sym_or] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_QMARK_QMARK] = ACTIONS(5023), - [anon_sym_from] = ACTIONS(5023), - [anon_sym_into] = ACTIONS(5023), - [anon_sym_join] = ACTIONS(5023), - [anon_sym_let] = ACTIONS(5023), - [anon_sym_orderby] = ACTIONS(5023), - [anon_sym_ascending] = ACTIONS(5023), - [anon_sym_descending] = ACTIONS(5023), - [anon_sym_group] = ACTIONS(5023), - [anon_sym_select] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5025), - [anon_sym_is] = ACTIONS(5023), - [anon_sym_DASH_GT] = ACTIONS(5023), - [anon_sym_with] = ACTIONS(5023), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_ref] = ACTIONS(3599), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_readonly] = ACTIONS(2947), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(6229), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535903,6 +535938,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3896] = { + [sym__name] = STATE(3131), + [sym_alias_qualified_name] = STATE(3072), + [sym__simple_name] = STATE(3072), + [sym_qualified_name] = STATE(3072), + [sym_generic_name] = STATE(3102), + [sym_type] = STATE(3042), + [sym_implicit_type] = STATE(3082), + [sym_array_type] = STATE(3088), + [sym__array_base_type] = STATE(7190), + [sym_nullable_type] = STATE(3090), + [sym_pointer_type] = STATE(3090), + [sym__pointer_base_type] = STATE(7463), + [sym_function_pointer_type] = STATE(3090), + [sym_ref_type] = STATE(3082), + [sym_scoped_type] = STATE(3082), + [sym_tuple_type] = STATE(3093), + [sym_identifier] = STATE(2988), + [sym__reserved_identifier] = STATE(2980), [sym_preproc_region] = STATE(3896), [sym_preproc_endregion] = STATE(3896), [sym_preproc_line] = STATE(3896), @@ -535912,52 +535965,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3896), [sym_preproc_define] = STATE(3896), [sym_preproc_undef] = STATE(3896), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_where] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_BANG] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4933), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_AMP] = ACTIONS(4933), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_GT_GT_GT] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4931), - [anon_sym_BANG_EQ] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4931), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_switch] = ACTIONS(4931), - [anon_sym_DOT_DOT] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4931), - [anon_sym_QMARK_QMARK] = ACTIONS(4931), - [anon_sym_from] = ACTIONS(4931), - [anon_sym_into] = ACTIONS(4931), - [anon_sym_join] = ACTIONS(4931), - [anon_sym_let] = ACTIONS(4931), - [anon_sym_orderby] = ACTIONS(4931), - [anon_sym_ascending] = ACTIONS(4931), - [anon_sym_descending] = ACTIONS(4931), - [anon_sym_group] = ACTIONS(4931), - [anon_sym_select] = ACTIONS(4931), - [anon_sym_as] = ACTIONS(4933), - [anon_sym_is] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_with] = ACTIONS(4931), + [sym__identifier_token] = ACTIONS(3891), + [anon_sym_alias] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_ref] = ACTIONS(3895), + [anon_sym_delegate] = ACTIONS(4070), + [anon_sym_file] = ACTIONS(3893), + [anon_sym_readonly] = ACTIONS(6231), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_notnull] = ACTIONS(3893), + [anon_sym_unmanaged] = ACTIONS(3893), + [anon_sym_scoped] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4074), + [sym_predefined_type] = ACTIONS(4076), + [anon_sym_yield] = ACTIONS(3893), + [anon_sym_when] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3893), + [anon_sym_into] = ACTIONS(3893), + [anon_sym_join] = ACTIONS(3893), + [anon_sym_on] = ACTIONS(3893), + [anon_sym_equals] = ACTIONS(3893), + [anon_sym_let] = ACTIONS(3893), + [anon_sym_orderby] = ACTIONS(3893), + [anon_sym_ascending] = ACTIONS(3893), + [anon_sym_descending] = ACTIONS(3893), + [anon_sym_group] = ACTIONS(3893), + [anon_sym_by] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -535979,52 +536014,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3897), [sym_preproc_define] = STATE(3897), [sym_preproc_undef] = STATE(3897), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5118), - [anon_sym_QMARK] = ACTIONS(5120), - [anon_sym_BANG] = ACTIONS(5120), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5120), - [anon_sym_AMP] = ACTIONS(5120), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5120), - [anon_sym_GT_GT_GT] = ACTIONS(5118), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_switch] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5118), - [anon_sym_and] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5120), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_QMARK_QMARK] = ACTIONS(5118), - [anon_sym_from] = ACTIONS(5118), - [anon_sym_into] = ACTIONS(5118), - [anon_sym_join] = ACTIONS(5118), - [anon_sym_let] = ACTIONS(5118), - [anon_sym_orderby] = ACTIONS(5118), - [anon_sym_ascending] = ACTIONS(5118), - [anon_sym_descending] = ACTIONS(5118), - [anon_sym_group] = ACTIONS(5118), - [anon_sym_select] = ACTIONS(5118), - [anon_sym_as] = ACTIONS(5120), - [anon_sym_is] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [anon_sym_with] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_where] = ACTIONS(4987), + [anon_sym_QMARK] = ACTIONS(4989), + [anon_sym_BANG] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4987), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_GT_GT_GT] = ACTIONS(4987), + [anon_sym_EQ_EQ] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4987), + [anon_sym_GT_EQ] = ACTIONS(4987), + [anon_sym_LT_EQ] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_switch] = ACTIONS(4987), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_and] = ACTIONS(4987), + [anon_sym_or] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(4987), + [anon_sym_PIPE_PIPE] = ACTIONS(4987), + [anon_sym_QMARK_QMARK] = ACTIONS(4987), + [anon_sym_from] = ACTIONS(4987), + [anon_sym_into] = ACTIONS(4987), + [anon_sym_join] = ACTIONS(4987), + [anon_sym_let] = ACTIONS(4987), + [anon_sym_orderby] = ACTIONS(4987), + [anon_sym_ascending] = ACTIONS(4987), + [anon_sym_descending] = ACTIONS(4987), + [anon_sym_group] = ACTIONS(4987), + [anon_sym_select] = ACTIONS(4987), + [anon_sym_as] = ACTIONS(4989), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_DASH_GT] = ACTIONS(4987), + [anon_sym_with] = ACTIONS(4987), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536046,52 +536081,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3898), [sym_preproc_define] = STATE(3898), [sym_preproc_undef] = STATE(3898), - [anon_sym_LBRACK] = ACTIONS(5246), - [anon_sym_COMMA] = ACTIONS(5246), - [anon_sym_LPAREN] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5248), - [anon_sym_where] = ACTIONS(5246), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_BANG] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_PIPE] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5248), - [anon_sym_GT_GT_GT] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5246), - [anon_sym_BANG_EQ] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5246), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_DOT] = ACTIONS(5248), - [anon_sym_switch] = ACTIONS(5246), - [anon_sym_DOT_DOT] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_or] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5246), - [anon_sym_QMARK_QMARK] = ACTIONS(5246), - [anon_sym_from] = ACTIONS(5246), - [anon_sym_into] = ACTIONS(5246), - [anon_sym_join] = ACTIONS(5246), - [anon_sym_let] = ACTIONS(5246), - [anon_sym_orderby] = ACTIONS(5246), - [anon_sym_ascending] = ACTIONS(5246), - [anon_sym_descending] = ACTIONS(5246), - [anon_sym_group] = ACTIONS(5246), - [anon_sym_select] = ACTIONS(5246), - [anon_sym_as] = ACTIONS(5248), - [anon_sym_is] = ACTIONS(5246), - [anon_sym_DASH_GT] = ACTIONS(5246), - [anon_sym_with] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_BANG] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4997), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_GT_GT_GT] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_switch] = ACTIONS(4995), + [anon_sym_DOT_DOT] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_or] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_QMARK_QMARK] = ACTIONS(4995), + [anon_sym_from] = ACTIONS(4995), + [anon_sym_into] = ACTIONS(4995), + [anon_sym_join] = ACTIONS(4995), + [anon_sym_let] = ACTIONS(4995), + [anon_sym_orderby] = ACTIONS(4995), + [anon_sym_ascending] = ACTIONS(4995), + [anon_sym_descending] = ACTIONS(4995), + [anon_sym_group] = ACTIONS(4995), + [anon_sym_select] = ACTIONS(4995), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_is] = ACTIONS(4995), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_with] = ACTIONS(4995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536113,52 +536148,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3899), [sym_preproc_define] = STATE(3899), [sym_preproc_undef] = STATE(3899), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4293), - [anon_sym_GT_GT_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_switch] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_and] = ACTIONS(4291), - [anon_sym_or] = ACTIONS(4293), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_QMARK_QMARK] = ACTIONS(4291), - [anon_sym_from] = ACTIONS(4291), - [anon_sym_into] = ACTIONS(4291), - [anon_sym_join] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_orderby] = ACTIONS(4291), - [anon_sym_ascending] = ACTIONS(4291), - [anon_sym_descending] = ACTIONS(4291), - [anon_sym_group] = ACTIONS(4291), - [anon_sym_select] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4293), - [anon_sym_is] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_with] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_where] = ACTIONS(5011), + [anon_sym_QMARK] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PLUS_PLUS] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5011), + [anon_sym_CARET] = ACTIONS(5011), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_AMP] = ACTIONS(5013), + [anon_sym_LT_LT] = ACTIONS(5011), + [anon_sym_GT_GT] = ACTIONS(5013), + [anon_sym_GT_GT_GT] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(5011), + [anon_sym_GT_EQ] = ACTIONS(5011), + [anon_sym_LT_EQ] = ACTIONS(5011), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_switch] = ACTIONS(5011), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_and] = ACTIONS(5011), + [anon_sym_or] = ACTIONS(5013), + [anon_sym_AMP_AMP] = ACTIONS(5011), + [anon_sym_PIPE_PIPE] = ACTIONS(5011), + [anon_sym_QMARK_QMARK] = ACTIONS(5011), + [anon_sym_from] = ACTIONS(5011), + [anon_sym_into] = ACTIONS(5011), + [anon_sym_join] = ACTIONS(5011), + [anon_sym_let] = ACTIONS(5011), + [anon_sym_orderby] = ACTIONS(5011), + [anon_sym_ascending] = ACTIONS(5011), + [anon_sym_descending] = ACTIONS(5011), + [anon_sym_group] = ACTIONS(5011), + [anon_sym_select] = ACTIONS(5011), + [anon_sym_as] = ACTIONS(5013), + [anon_sym_is] = ACTIONS(5011), + [anon_sym_DASH_GT] = ACTIONS(5011), + [anon_sym_with] = ACTIONS(5011), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536180,52 +536215,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3900), [sym_preproc_define] = STATE(3900), [sym_preproc_undef] = STATE(3900), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_where] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_and] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_QMARK_QMARK] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_into] = ACTIONS(2987), - [anon_sym_join] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_orderby] = ACTIONS(2987), - [anon_sym_ascending] = ACTIONS(2987), - [anon_sym_descending] = ACTIONS(2987), - [anon_sym_group] = ACTIONS(2987), - [anon_sym_select] = ACTIONS(2987), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_ascending] = ACTIONS(2979), + [anon_sym_descending] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536238,24 +536273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3901] = { - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3228), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3262), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), [sym_preproc_region] = STATE(3901), [sym_preproc_endregion] = STATE(3901), [sym_preproc_line] = STATE(3901), @@ -536265,34 +536282,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3901), [sym_preproc_define] = STATE(3901), [sym_preproc_undef] = STATE(3901), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_ref] = ACTIONS(4178), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_readonly] = ACTIONS(6251), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5883), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5015), + [anon_sym_QMARK] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_CARET] = ACTIONS(5015), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(5015), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_GT_GT_GT] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_switch] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_and] = ACTIONS(5015), + [anon_sym_or] = ACTIONS(5017), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_QMARK_QMARK] = ACTIONS(5015), + [anon_sym_from] = ACTIONS(5015), + [anon_sym_into] = ACTIONS(5015), + [anon_sym_join] = ACTIONS(5015), + [anon_sym_let] = ACTIONS(5015), + [anon_sym_orderby] = ACTIONS(5015), + [anon_sym_ascending] = ACTIONS(5015), + [anon_sym_descending] = ACTIONS(5015), + [anon_sym_group] = ACTIONS(5015), + [anon_sym_select] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5017), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), + [anon_sym_with] = ACTIONS(5015), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536305,24 +536340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3902] = { - [sym__name] = STATE(3575), - [sym_alias_qualified_name] = STATE(2984), - [sym__simple_name] = STATE(2984), - [sym_qualified_name] = STATE(2984), - [sym_generic_name] = STATE(2990), - [sym_type] = STATE(2958), - [sym_implicit_type] = STATE(2985), - [sym_array_type] = STATE(2986), - [sym__array_base_type] = STATE(7188), - [sym_nullable_type] = STATE(2987), - [sym_pointer_type] = STATE(2987), - [sym__pointer_base_type] = STATE(7374), - [sym_function_pointer_type] = STATE(2987), - [sym_ref_type] = STATE(2985), - [sym_scoped_type] = STATE(2985), - [sym_tuple_type] = STATE(2988), - [sym_identifier] = STATE(3300), - [sym__reserved_identifier] = STATE(2934), [sym_preproc_region] = STATE(3902), [sym_preproc_endregion] = STATE(3902), [sym_preproc_line] = STATE(3902), @@ -536332,34 +536349,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3902), [sym_preproc_define] = STATE(3902), [sym_preproc_undef] = STATE(3902), - [sym__identifier_token] = ACTIONS(3842), - [anon_sym_alias] = ACTIONS(3844), - [anon_sym_global] = ACTIONS(3844), - [anon_sym_LPAREN] = ACTIONS(6145), - [anon_sym_ref] = ACTIONS(4257), - [anon_sym_delegate] = ACTIONS(5822), - [anon_sym_file] = ACTIONS(3844), - [anon_sym_readonly] = ACTIONS(6253), - [anon_sym_where] = ACTIONS(3844), - [anon_sym_notnull] = ACTIONS(3844), - [anon_sym_unmanaged] = ACTIONS(3844), - [anon_sym_scoped] = ACTIONS(5947), - [anon_sym_var] = ACTIONS(5826), - [sym_predefined_type] = ACTIONS(5828), - [anon_sym_yield] = ACTIONS(3844), - [anon_sym_when] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3844), - [anon_sym_into] = ACTIONS(3844), - [anon_sym_join] = ACTIONS(3844), - [anon_sym_on] = ACTIONS(3844), - [anon_sym_equals] = ACTIONS(3844), - [anon_sym_let] = ACTIONS(3844), - [anon_sym_orderby] = ACTIONS(3844), - [anon_sym_ascending] = ACTIONS(3844), - [anon_sym_descending] = ACTIONS(3844), - [anon_sym_group] = ACTIONS(3844), - [anon_sym_by] = ACTIONS(3844), - [anon_sym_select] = ACTIONS(3844), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536372,6 +536407,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3903] = { + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3263), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3234), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3903), [sym_preproc_endregion] = STATE(3903), [sym_preproc_line] = STATE(3903), @@ -536381,52 +536434,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3903), [sym_preproc_define] = STATE(3903), [sym_preproc_undef] = STATE(3903), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_LT] = ACTIONS(5128), - [anon_sym_GT] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5126), - [anon_sym_QMARK] = ACTIONS(5128), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_PLUS_PLUS] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5128), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_STAR] = ACTIONS(5126), - [anon_sym_SLASH] = ACTIONS(5128), - [anon_sym_PERCENT] = ACTIONS(5126), - [anon_sym_CARET] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_AMP] = ACTIONS(5128), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5128), - [anon_sym_GT_GT_GT] = ACTIONS(5126), - [anon_sym_EQ_EQ] = ACTIONS(5126), - [anon_sym_BANG_EQ] = ACTIONS(5126), - [anon_sym_GT_EQ] = ACTIONS(5126), - [anon_sym_LT_EQ] = ACTIONS(5126), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_switch] = ACTIONS(5126), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5126), - [anon_sym_or] = ACTIONS(5128), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_QMARK_QMARK] = ACTIONS(5126), - [anon_sym_from] = ACTIONS(5126), - [anon_sym_into] = ACTIONS(5126), - [anon_sym_join] = ACTIONS(5126), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_orderby] = ACTIONS(5126), - [anon_sym_ascending] = ACTIONS(5126), - [anon_sym_descending] = ACTIONS(5126), - [anon_sym_group] = ACTIONS(5126), - [anon_sym_select] = ACTIONS(5126), - [anon_sym_as] = ACTIONS(5128), - [anon_sym_is] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), - [anon_sym_with] = ACTIONS(5126), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(6163), + [anon_sym_ref] = ACTIONS(4229), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(6233), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5830), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536439,8 +536474,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3904] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(2450), + [sym_alias_qualified_name] = STATE(2428), + [sym__simple_name] = STATE(2428), + [sym_qualified_name] = STATE(2428), + [sym_generic_name] = STATE(2418), + [sym_type] = STATE(2399), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(2398), + [sym__array_base_type] = STATE(7243), + [sym_nullable_type] = STATE(2411), + [sym_pointer_type] = STATE(2411), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(2411), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(2413), + [sym_identifier] = STATE(2382), + [sym__reserved_identifier] = STATE(2374), [sym_preproc_region] = STATE(3904), [sym_preproc_endregion] = STATE(3904), [sym_preproc_line] = STATE(3904), @@ -536450,50 +536501,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3904), [sym_preproc_define] = STATE(3904), [sym_preproc_undef] = STATE(3904), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1231), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_GT_GT_GT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(1229), - [anon_sym_or] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_QMARK_QMARK] = ACTIONS(1229), - [anon_sym_into] = ACTIONS(1229), - [anon_sym_as] = ACTIONS(1229), - [anon_sym_is] = ACTIONS(1229), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(1229), - [aux_sym_preproc_if_token3] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(6187), + [anon_sym_ref] = ACTIONS(4140), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(4098), + [anon_sym_readonly] = ACTIONS(6235), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_notnull] = ACTIONS(4098), + [anon_sym_unmanaged] = ACTIONS(4098), + [anon_sym_scoped] = ACTIONS(5898), + [anon_sym_var] = ACTIONS(5900), + [sym_predefined_type] = ACTIONS(5902), + [anon_sym_yield] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_from] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_join] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_let] = ACTIONS(4098), + [anon_sym_orderby] = ACTIONS(4098), + [anon_sym_ascending] = ACTIONS(4098), + [anon_sym_descending] = ACTIONS(4098), + [anon_sym_group] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536506,8 +536541,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3905] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), + [sym__name] = STATE(5169), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(2187), + [sym_ref_type] = STATE(2340), + [sym__scoped_base_type] = STATE(2342), + [sym_identifier] = STATE(4540), + [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3905), [sym_preproc_endregion] = STATE(3905), [sym_preproc_line] = STATE(3905), @@ -536517,50 +536559,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3905), [sym_preproc_define] = STATE(3905), [sym_preproc_undef] = STATE(3905), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5736), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(5736), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6167), - [anon_sym_AMP] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(6157), - [anon_sym_BANG_EQ] = ACTIONS(6157), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(6169), - [anon_sym_PIPE_PIPE] = ACTIONS(6173), - [anon_sym_QMARK_QMARK] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(5736), - [anon_sym_into] = ACTIONS(5736), - [anon_sym_join] = ACTIONS(5736), - [anon_sym_let] = ACTIONS(5736), - [anon_sym_orderby] = ACTIONS(5736), - [anon_sym_ascending] = ACTIONS(5736), - [anon_sym_descending] = ACTIONS(5736), - [anon_sym_group] = ACTIONS(5736), - [anon_sym_select] = ACTIONS(5736), - [anon_sym_as] = ACTIONS(5730), - [anon_sym_is] = ACTIONS(6161), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3612), + [anon_sym_alias] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_in] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3615), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_notnull] = ACTIONS(3615), + [anon_sym_unmanaged] = ACTIONS(3615), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(3461), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_scoped] = ACTIONS(3615), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_when] = ACTIONS(3615), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_into] = ACTIONS(3615), + [anon_sym_join] = ACTIONS(3615), + [anon_sym_on] = ACTIONS(3615), + [anon_sym_equals] = ACTIONS(3615), + [anon_sym_let] = ACTIONS(3615), + [anon_sym_orderby] = ACTIONS(3615), + [anon_sym_ascending] = ACTIONS(3615), + [anon_sym_descending] = ACTIONS(3615), + [anon_sym_group] = ACTIONS(3615), + [anon_sym_by] = ACTIONS(3615), + [anon_sym_select] = ACTIONS(3615), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536582,52 +536617,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3906), [sym_preproc_define] = STATE(3906), [sym_preproc_undef] = STATE(3906), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5019), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_GT_GT_GT] = ACTIONS(5019), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_switch] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5019), - [anon_sym_and] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_QMARK_QMARK] = ACTIONS(5019), - [anon_sym_from] = ACTIONS(5019), - [anon_sym_into] = ACTIONS(5019), - [anon_sym_join] = ACTIONS(5019), - [anon_sym_let] = ACTIONS(5019), - [anon_sym_orderby] = ACTIONS(5019), - [anon_sym_ascending] = ACTIONS(5019), - [anon_sym_descending] = ACTIONS(5019), - [anon_sym_group] = ACTIONS(5019), - [anon_sym_select] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5021), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), - [anon_sym_with] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_QMARK] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5155), + [anon_sym_AMP] = ACTIONS(5155), + [anon_sym_LT_LT] = ACTIONS(5153), + [anon_sym_GT_GT] = ACTIONS(5155), + [anon_sym_GT_GT_GT] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_switch] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_and] = ACTIONS(5153), + [anon_sym_or] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_QMARK_QMARK] = ACTIONS(5153), + [anon_sym_from] = ACTIONS(5153), + [anon_sym_into] = ACTIONS(5153), + [anon_sym_join] = ACTIONS(5153), + [anon_sym_let] = ACTIONS(5153), + [anon_sym_orderby] = ACTIONS(5153), + [anon_sym_ascending] = ACTIONS(5153), + [anon_sym_descending] = ACTIONS(5153), + [anon_sym_group] = ACTIONS(5153), + [anon_sym_select] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5153), + [anon_sym_with] = ACTIONS(5153), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536640,25 +536675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3907] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7204), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3907), [sym_preproc_endregion] = STATE(3907), [sym_preproc_line] = STATE(3907), @@ -536668,33 +536684,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3907), [sym_preproc_define] = STATE(3907), [sym_preproc_undef] = STATE(3907), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3652), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6255), - [anon_sym_var] = ACTIONS(6223), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_where] = ACTIONS(5187), + [anon_sym_QMARK] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_CARET] = ACTIONS(5187), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_AMP] = ACTIONS(5189), + [anon_sym_LT_LT] = ACTIONS(5187), + [anon_sym_GT_GT] = ACTIONS(5189), + [anon_sym_GT_GT_GT] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5189), + [anon_sym_switch] = ACTIONS(5187), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_and] = ACTIONS(5187), + [anon_sym_or] = ACTIONS(5189), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_QMARK_QMARK] = ACTIONS(5187), + [anon_sym_from] = ACTIONS(5187), + [anon_sym_into] = ACTIONS(5187), + [anon_sym_join] = ACTIONS(5187), + [anon_sym_let] = ACTIONS(5187), + [anon_sym_orderby] = ACTIONS(5187), + [anon_sym_ascending] = ACTIONS(5187), + [anon_sym_descending] = ACTIONS(5187), + [anon_sym_group] = ACTIONS(5187), + [anon_sym_select] = ACTIONS(5187), + [anon_sym_as] = ACTIONS(5189), + [anon_sym_is] = ACTIONS(5187), + [anon_sym_DASH_GT] = ACTIONS(5187), + [anon_sym_with] = ACTIONS(5187), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536707,24 +536742,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3908] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3908), [sym_preproc_endregion] = STATE(3908), [sym_preproc_line] = STATE(3908), @@ -536734,34 +536751,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3908), [sym_preproc_define] = STATE(3908), [sym_preproc_undef] = STATE(3908), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3652), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6255), - [anon_sym_var] = ACTIONS(6223), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_where] = ACTIONS(5203), + [anon_sym_QMARK] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PLUS_PLUS] = ACTIONS(5203), + [anon_sym_DASH_DASH] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5203), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_CARET] = ACTIONS(5203), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_AMP] = ACTIONS(5205), + [anon_sym_LT_LT] = ACTIONS(5203), + [anon_sym_GT_GT] = ACTIONS(5205), + [anon_sym_GT_GT_GT] = ACTIONS(5203), + [anon_sym_EQ_EQ] = ACTIONS(5203), + [anon_sym_BANG_EQ] = ACTIONS(5203), + [anon_sym_GT_EQ] = ACTIONS(5203), + [anon_sym_LT_EQ] = ACTIONS(5203), + [anon_sym_DOT] = ACTIONS(5205), + [anon_sym_switch] = ACTIONS(5203), + [anon_sym_DOT_DOT] = ACTIONS(5203), + [anon_sym_and] = ACTIONS(5203), + [anon_sym_or] = ACTIONS(5205), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_QMARK_QMARK] = ACTIONS(5203), + [anon_sym_from] = ACTIONS(5203), + [anon_sym_into] = ACTIONS(5203), + [anon_sym_join] = ACTIONS(5203), + [anon_sym_let] = ACTIONS(5203), + [anon_sym_orderby] = ACTIONS(5203), + [anon_sym_ascending] = ACTIONS(5203), + [anon_sym_descending] = ACTIONS(5203), + [anon_sym_group] = ACTIONS(5203), + [anon_sym_select] = ACTIONS(5203), + [anon_sym_as] = ACTIONS(5205), + [anon_sym_is] = ACTIONS(5203), + [anon_sym_DASH_GT] = ACTIONS(5203), + [anon_sym_with] = ACTIONS(5203), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536783,52 +536818,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3909), [sym_preproc_define] = STATE(3909), [sym_preproc_undef] = STATE(3909), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_COMMA] = ACTIONS(5432), - [anon_sym_LPAREN] = ACTIONS(5432), - [anon_sym_LT] = ACTIONS(5434), - [anon_sym_GT] = ACTIONS(5434), - [anon_sym_where] = ACTIONS(5432), - [anon_sym_QMARK] = ACTIONS(5434), - [anon_sym_BANG] = ACTIONS(5434), - [anon_sym_PLUS_PLUS] = ACTIONS(5432), - [anon_sym_DASH_DASH] = ACTIONS(5432), - [anon_sym_PLUS] = ACTIONS(5434), - [anon_sym_DASH] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5432), - [anon_sym_SLASH] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(5432), - [anon_sym_CARET] = ACTIONS(5432), - [anon_sym_PIPE] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5434), - [anon_sym_LT_LT] = ACTIONS(5432), - [anon_sym_GT_GT] = ACTIONS(5434), - [anon_sym_GT_GT_GT] = ACTIONS(5432), - [anon_sym_EQ_EQ] = ACTIONS(5432), - [anon_sym_BANG_EQ] = ACTIONS(5432), - [anon_sym_GT_EQ] = ACTIONS(5432), - [anon_sym_LT_EQ] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5434), - [anon_sym_switch] = ACTIONS(5432), - [anon_sym_DOT_DOT] = ACTIONS(5432), - [anon_sym_and] = ACTIONS(5432), - [anon_sym_or] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5432), - [anon_sym_PIPE_PIPE] = ACTIONS(5432), - [anon_sym_QMARK_QMARK] = ACTIONS(5432), - [anon_sym_from] = ACTIONS(5432), - [anon_sym_into] = ACTIONS(5432), - [anon_sym_join] = ACTIONS(5432), - [anon_sym_let] = ACTIONS(5432), - [anon_sym_orderby] = ACTIONS(5432), - [anon_sym_ascending] = ACTIONS(5432), - [anon_sym_descending] = ACTIONS(5432), - [anon_sym_group] = ACTIONS(5432), - [anon_sym_select] = ACTIONS(5432), - [anon_sym_as] = ACTIONS(5434), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(5432), - [anon_sym_with] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5053), + [anon_sym_GT_GT_GT] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_switch] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_and] = ACTIONS(5051), + [anon_sym_or] = ACTIONS(5053), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_QMARK_QMARK] = ACTIONS(5051), + [anon_sym_from] = ACTIONS(5051), + [anon_sym_into] = ACTIONS(5051), + [anon_sym_join] = ACTIONS(5051), + [anon_sym_let] = ACTIONS(5051), + [anon_sym_orderby] = ACTIONS(5051), + [anon_sym_ascending] = ACTIONS(5051), + [anon_sym_descending] = ACTIONS(5051), + [anon_sym_group] = ACTIONS(5051), + [anon_sym_select] = ACTIONS(5051), + [anon_sym_as] = ACTIONS(5053), + [anon_sym_is] = ACTIONS(5051), + [anon_sym_DASH_GT] = ACTIONS(5051), + [anon_sym_with] = ACTIONS(5051), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536841,6 +536876,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3910] = { + [sym__name] = STATE(2719), + [sym_alias_qualified_name] = STATE(2714), + [sym__simple_name] = STATE(2714), + [sym_qualified_name] = STATE(2714), + [sym_generic_name] = STATE(2809), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2848), + [sym_array_type] = STATE(2715), + [sym__array_base_type] = STATE(7195), + [sym_nullable_type] = STATE(2716), + [sym_pointer_type] = STATE(2716), + [sym__pointer_base_type] = STATE(7404), + [sym_function_pointer_type] = STATE(2716), + [sym_ref_type] = STATE(2848), + [sym_scoped_type] = STATE(2848), + [sym_tuple_type] = STATE(2717), + [sym_identifier] = STATE(2602), + [sym__reserved_identifier] = STATE(2652), [sym_preproc_region] = STATE(3910), [sym_preproc_endregion] = STATE(3910), [sym_preproc_line] = STATE(3910), @@ -536850,52 +536903,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3910), [sym_preproc_define] = STATE(3910), [sym_preproc_undef] = STATE(3910), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_COMMA] = ACTIONS(5424), - [anon_sym_LPAREN] = ACTIONS(5424), - [anon_sym_LT] = ACTIONS(5426), - [anon_sym_GT] = ACTIONS(5426), - [anon_sym_where] = ACTIONS(5424), - [anon_sym_QMARK] = ACTIONS(5426), - [anon_sym_BANG] = ACTIONS(5426), - [anon_sym_PLUS_PLUS] = ACTIONS(5424), - [anon_sym_DASH_DASH] = ACTIONS(5424), - [anon_sym_PLUS] = ACTIONS(5426), - [anon_sym_DASH] = ACTIONS(5426), - [anon_sym_STAR] = ACTIONS(5424), - [anon_sym_SLASH] = ACTIONS(5426), - [anon_sym_PERCENT] = ACTIONS(5424), - [anon_sym_CARET] = ACTIONS(5424), - [anon_sym_PIPE] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(5426), - [anon_sym_LT_LT] = ACTIONS(5424), - [anon_sym_GT_GT] = ACTIONS(5426), - [anon_sym_GT_GT_GT] = ACTIONS(5424), - [anon_sym_EQ_EQ] = ACTIONS(5424), - [anon_sym_BANG_EQ] = ACTIONS(5424), - [anon_sym_GT_EQ] = ACTIONS(5424), - [anon_sym_LT_EQ] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5424), - [anon_sym_and] = ACTIONS(5424), - [anon_sym_or] = ACTIONS(5426), - [anon_sym_AMP_AMP] = ACTIONS(5424), - [anon_sym_PIPE_PIPE] = ACTIONS(5424), - [anon_sym_QMARK_QMARK] = ACTIONS(5424), - [anon_sym_from] = ACTIONS(5424), - [anon_sym_into] = ACTIONS(5424), - [anon_sym_join] = ACTIONS(5424), - [anon_sym_let] = ACTIONS(5424), - [anon_sym_orderby] = ACTIONS(5424), - [anon_sym_ascending] = ACTIONS(5424), - [anon_sym_descending] = ACTIONS(5424), - [anon_sym_group] = ACTIONS(5424), - [anon_sym_select] = ACTIONS(5424), - [anon_sym_as] = ACTIONS(5426), - [anon_sym_is] = ACTIONS(5424), - [anon_sym_DASH_GT] = ACTIONS(5424), - [anon_sym_with] = ACTIONS(5424), + [sym__identifier_token] = ACTIONS(6237), + [anon_sym_alias] = ACTIONS(6239), + [anon_sym_global] = ACTIONS(6239), + [anon_sym_LPAREN] = ACTIONS(6241), + [anon_sym_ref] = ACTIONS(3650), + [anon_sym_delegate] = ACTIONS(6243), + [anon_sym_file] = ACTIONS(6239), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_where] = ACTIONS(6239), + [anon_sym_notnull] = ACTIONS(6239), + [anon_sym_unmanaged] = ACTIONS(6239), + [anon_sym_scoped] = ACTIONS(6245), + [anon_sym_var] = ACTIONS(6247), + [sym_predefined_type] = ACTIONS(6249), + [anon_sym_yield] = ACTIONS(6239), + [anon_sym_when] = ACTIONS(6239), + [anon_sym_from] = ACTIONS(6239), + [anon_sym_into] = ACTIONS(6239), + [anon_sym_join] = ACTIONS(6239), + [anon_sym_on] = ACTIONS(6239), + [anon_sym_equals] = ACTIONS(6239), + [anon_sym_let] = ACTIONS(6239), + [anon_sym_orderby] = ACTIONS(6239), + [anon_sym_ascending] = ACTIONS(6239), + [anon_sym_descending] = ACTIONS(6239), + [anon_sym_group] = ACTIONS(6239), + [anon_sym_by] = ACTIONS(6239), + [anon_sym_select] = ACTIONS(6239), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -536908,24 +536943,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3911] = { - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3228), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3262), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3911), [sym_preproc_endregion] = STATE(3911), [sym_preproc_line] = STATE(3911), @@ -536935,86 +536970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3911), [sym_preproc_define] = STATE(3911), [sym_preproc_undef] = STATE(3911), - [sym__identifier_token] = ACTIONS(3789), - [anon_sym_alias] = ACTIONS(3791), - [anon_sym_global] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_ref] = ACTIONS(4180), - [anon_sym_delegate] = ACTIONS(5804), - [anon_sym_file] = ACTIONS(3791), - [anon_sym_readonly] = ACTIONS(6257), - [anon_sym_where] = ACTIONS(3791), - [anon_sym_notnull] = ACTIONS(3791), - [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5887), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), - [anon_sym_yield] = ACTIONS(3791), - [anon_sym_when] = ACTIONS(3791), - [anon_sym_from] = ACTIONS(3791), - [anon_sym_into] = ACTIONS(3791), - [anon_sym_join] = ACTIONS(3791), - [anon_sym_on] = ACTIONS(3791), - [anon_sym_equals] = ACTIONS(3791), - [anon_sym_let] = ACTIONS(3791), - [anon_sym_orderby] = ACTIONS(3791), - [anon_sym_ascending] = ACTIONS(3791), - [anon_sym_descending] = ACTIONS(3791), - [anon_sym_group] = ACTIONS(3791), - [anon_sym_by] = ACTIONS(3791), - [anon_sym_select] = ACTIONS(3791), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3912] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(6117), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_tuple_element] = STATE(7173), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3912), - [sym_preproc_endregion] = STATE(3912), - [sym_preproc_line] = STATE(3912), - [sym_preproc_pragma] = STATE(3912), - [sym_preproc_nullable] = STATE(3912), - [sym_preproc_error] = STATE(3912), - [sym_preproc_warning] = STATE(3912), - [sym_preproc_define] = STATE(3912), - [sym_preproc_undef] = STATE(3912), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3618), + [anon_sym_ref] = ACTIONS(6251), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6253), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(6255), + [anon_sym_var] = ACTIONS(6091), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -537041,6 +537009,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3912] = { + [sym_preproc_region] = STATE(3912), + [sym_preproc_endregion] = STATE(3912), + [sym_preproc_line] = STATE(3912), + [sym_preproc_pragma] = STATE(3912), + [sym_preproc_nullable] = STATE(3912), + [sym_preproc_error] = STATE(3912), + [sym_preproc_warning] = STATE(3912), + [sym_preproc_define] = STATE(3912), + [sym_preproc_undef] = STATE(3912), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_where] = ACTIONS(5063), + [anon_sym_QMARK] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(5065), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5065), + [anon_sym_GT_GT_GT] = ACTIONS(5063), + [anon_sym_EQ_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_switch] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5063), + [anon_sym_and] = ACTIONS(5063), + [anon_sym_or] = ACTIONS(5065), + [anon_sym_AMP_AMP] = ACTIONS(5063), + [anon_sym_PIPE_PIPE] = ACTIONS(5063), + [anon_sym_QMARK_QMARK] = ACTIONS(5063), + [anon_sym_from] = ACTIONS(5063), + [anon_sym_into] = ACTIONS(5063), + [anon_sym_join] = ACTIONS(5063), + [anon_sym_let] = ACTIONS(5063), + [anon_sym_orderby] = ACTIONS(5063), + [anon_sym_ascending] = ACTIONS(5063), + [anon_sym_descending] = ACTIONS(5063), + [anon_sym_group] = ACTIONS(5063), + [anon_sym_select] = ACTIONS(5063), + [anon_sym_as] = ACTIONS(5065), + [anon_sym_is] = ACTIONS(5063), + [anon_sym_DASH_GT] = ACTIONS(5063), + [anon_sym_with] = ACTIONS(5063), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3913] = { [sym_preproc_region] = STATE(3913), [sym_preproc_endregion] = STATE(3913), @@ -537051,52 +537086,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3913), [sym_preproc_define] = STATE(3913), [sym_preproc_undef] = STATE(3913), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_COMMA] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5065), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5067), - [anon_sym_LT_LT] = ACTIONS(5065), - [anon_sym_GT_GT] = ACTIONS(5067), - [anon_sym_GT_GT_GT] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_switch] = ACTIONS(5065), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_and] = ACTIONS(5065), - [anon_sym_or] = ACTIONS(5067), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_QMARK_QMARK] = ACTIONS(5065), - [anon_sym_from] = ACTIONS(5065), - [anon_sym_into] = ACTIONS(5065), - [anon_sym_join] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5065), - [anon_sym_orderby] = ACTIONS(5065), - [anon_sym_ascending] = ACTIONS(5065), - [anon_sym_descending] = ACTIONS(5065), - [anon_sym_group] = ACTIONS(5065), - [anon_sym_select] = ACTIONS(5065), - [anon_sym_as] = ACTIONS(5067), - [anon_sym_is] = ACTIONS(5065), - [anon_sym_DASH_GT] = ACTIONS(5065), - [anon_sym_with] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_where] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5039), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5041), + [anon_sym_LT_LT] = ACTIONS(5039), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_GT_GT_GT] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5039), + [anon_sym_BANG_EQ] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5039), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5041), + [anon_sym_switch] = ACTIONS(5039), + [anon_sym_DOT_DOT] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_or] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5039), + [anon_sym_PIPE_PIPE] = ACTIONS(5039), + [anon_sym_QMARK_QMARK] = ACTIONS(5039), + [anon_sym_from] = ACTIONS(5039), + [anon_sym_into] = ACTIONS(5039), + [anon_sym_join] = ACTIONS(5039), + [anon_sym_let] = ACTIONS(5039), + [anon_sym_orderby] = ACTIONS(5039), + [anon_sym_ascending] = ACTIONS(5039), + [anon_sym_descending] = ACTIONS(5039), + [anon_sym_group] = ACTIONS(5039), + [anon_sym_select] = ACTIONS(5039), + [anon_sym_as] = ACTIONS(5041), + [anon_sym_is] = ACTIONS(5039), + [anon_sym_DASH_GT] = ACTIONS(5039), + [anon_sym_with] = ACTIONS(5039), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537109,6 +537144,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3914] = { + [sym__name] = STATE(4414), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(4144), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3914), [sym_preproc_endregion] = STATE(3914), [sym_preproc_line] = STATE(3914), @@ -537118,104 +537171,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3914), [sym_preproc_define] = STATE(3914), [sym_preproc_undef] = STATE(3914), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_COMMA] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3840), - [anon_sym_LT] = ACTIONS(5390), - [anon_sym_GT] = ACTIONS(5390), - [anon_sym_where] = ACTIONS(3840), - [anon_sym_QMARK] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5390), - [anon_sym_PLUS_PLUS] = ACTIONS(3840), - [anon_sym_DASH_DASH] = ACTIONS(3840), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(3840), - [anon_sym_CARET] = ACTIONS(3840), - [anon_sym_PIPE] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LT_LT] = ACTIONS(3840), - [anon_sym_GT_GT] = ACTIONS(5390), - [anon_sym_GT_GT_GT] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3840), - [anon_sym_BANG_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(5390), - [anon_sym_switch] = ACTIONS(3840), - [anon_sym_DOT_DOT] = ACTIONS(3840), - [anon_sym_and] = ACTIONS(3840), - [anon_sym_or] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(3840), - [anon_sym_PIPE_PIPE] = ACTIONS(3840), - [anon_sym_QMARK_QMARK] = ACTIONS(3840), - [anon_sym_from] = ACTIONS(3840), - [anon_sym_into] = ACTIONS(3840), - [anon_sym_join] = ACTIONS(3840), - [anon_sym_let] = ACTIONS(3840), - [anon_sym_orderby] = ACTIONS(3840), - [anon_sym_ascending] = ACTIONS(3840), - [anon_sym_descending] = ACTIONS(3840), - [anon_sym_group] = ACTIONS(3840), - [anon_sym_select] = ACTIONS(3840), - [anon_sym_as] = ACTIONS(5390), - [anon_sym_is] = ACTIONS(3840), - [anon_sym_DASH_GT] = ACTIONS(3840), - [anon_sym_with] = ACTIONS(3840), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3915] = { - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), - [sym_preproc_region] = STATE(3915), - [sym_preproc_endregion] = STATE(3915), - [sym_preproc_line] = STATE(3915), - [sym_preproc_pragma] = STATE(3915), - [sym_preproc_nullable] = STATE(3915), - [sym_preproc_error] = STATE(3915), - [sym_preproc_warning] = STATE(3915), - [sym_preproc_define] = STATE(3915), - [sym_preproc_undef] = STATE(3915), [sym__identifier_token] = ACTIONS(2993), [anon_sym_alias] = ACTIONS(2997), [anon_sym_global] = ACTIONS(2997), [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(6259), + [anon_sym_ref] = ACTIONS(3466), [anon_sym_delegate] = ACTIONS(3468), [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6261), + [anon_sym_readonly] = ACTIONS(2799), [anon_sym_where] = ACTIONS(2997), [anon_sym_notnull] = ACTIONS(2997), [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(6263), - [anon_sym_var] = ACTIONS(4783), + [anon_sym_scoped] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3023), [sym_predefined_type] = ACTIONS(3025), [anon_sym_yield] = ACTIONS(2997), [anon_sym_when] = ACTIONS(2997), @@ -537242,6 +537210,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3915] = { + [sym_preproc_region] = STATE(3915), + [sym_preproc_endregion] = STATE(3915), + [sym_preproc_line] = STATE(3915), + [sym_preproc_pragma] = STATE(3915), + [sym_preproc_nullable] = STATE(3915), + [sym_preproc_error] = STATE(3915), + [sym_preproc_warning] = STATE(3915), + [sym_preproc_define] = STATE(3915), + [sym_preproc_undef] = STATE(3915), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5093), + [anon_sym_QMARK] = ACTIONS(5095), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5095), + [anon_sym_AMP] = ACTIONS(5095), + [anon_sym_LT_LT] = ACTIONS(5093), + [anon_sym_GT_GT] = ACTIONS(5095), + [anon_sym_GT_GT_GT] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_switch] = ACTIONS(5093), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_and] = ACTIONS(5093), + [anon_sym_or] = ACTIONS(5095), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_QMARK_QMARK] = ACTIONS(5093), + [anon_sym_from] = ACTIONS(5093), + [anon_sym_into] = ACTIONS(5093), + [anon_sym_join] = ACTIONS(5093), + [anon_sym_let] = ACTIONS(5093), + [anon_sym_orderby] = ACTIONS(5093), + [anon_sym_ascending] = ACTIONS(5093), + [anon_sym_descending] = ACTIONS(5093), + [anon_sym_group] = ACTIONS(5093), + [anon_sym_select] = ACTIONS(5093), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_is] = ACTIONS(5093), + [anon_sym_DASH_GT] = ACTIONS(5093), + [anon_sym_with] = ACTIONS(5093), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3916] = { [sym_preproc_region] = STATE(3916), [sym_preproc_endregion] = STATE(3916), @@ -537252,52 +537287,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3916), [sym_preproc_define] = STATE(3916), [sym_preproc_undef] = STATE(3916), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_DOT] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [anon_sym_and] = ACTIONS(3152), - [anon_sym_or] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_from] = ACTIONS(3152), - [anon_sym_into] = ACTIONS(3152), - [anon_sym_join] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_orderby] = ACTIONS(3152), - [anon_sym_ascending] = ACTIONS(3152), - [anon_sym_descending] = ACTIONS(3152), - [anon_sym_group] = ACTIONS(3152), - [anon_sym_select] = ACTIONS(3152), - [anon_sym_as] = ACTIONS(3150), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5107), + [anon_sym_GT] = ACTIONS(5107), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5107), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5107), + [anon_sym_AMP] = ACTIONS(5107), + [anon_sym_LT_LT] = ACTIONS(5105), + [anon_sym_GT_GT] = ACTIONS(5107), + [anon_sym_GT_GT_GT] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_switch] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_and] = ACTIONS(5105), + [anon_sym_or] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_QMARK_QMARK] = ACTIONS(5105), + [anon_sym_from] = ACTIONS(5105), + [anon_sym_into] = ACTIONS(5105), + [anon_sym_join] = ACTIONS(5105), + [anon_sym_let] = ACTIONS(5105), + [anon_sym_orderby] = ACTIONS(5105), + [anon_sym_ascending] = ACTIONS(5105), + [anon_sym_descending] = ACTIONS(5105), + [anon_sym_group] = ACTIONS(5105), + [anon_sym_select] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5107), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [anon_sym_with] = ACTIONS(5105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537319,52 +537354,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3917), [sym_preproc_define] = STATE(3917), [sym_preproc_undef] = STATE(3917), - [anon_sym_LBRACK] = ACTIONS(5436), - [anon_sym_COMMA] = ACTIONS(5436), - [anon_sym_LPAREN] = ACTIONS(5436), - [anon_sym_LT] = ACTIONS(5438), - [anon_sym_GT] = ACTIONS(5438), - [anon_sym_where] = ACTIONS(5436), - [anon_sym_QMARK] = ACTIONS(5438), - [anon_sym_BANG] = ACTIONS(5438), - [anon_sym_PLUS_PLUS] = ACTIONS(5436), - [anon_sym_DASH_DASH] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5438), - [anon_sym_STAR] = ACTIONS(5436), - [anon_sym_SLASH] = ACTIONS(5438), - [anon_sym_PERCENT] = ACTIONS(5436), - [anon_sym_CARET] = ACTIONS(5436), - [anon_sym_PIPE] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5438), - [anon_sym_LT_LT] = ACTIONS(5436), - [anon_sym_GT_GT] = ACTIONS(5438), - [anon_sym_GT_GT_GT] = ACTIONS(5436), - [anon_sym_EQ_EQ] = ACTIONS(5436), - [anon_sym_BANG_EQ] = ACTIONS(5436), - [anon_sym_GT_EQ] = ACTIONS(5436), - [anon_sym_LT_EQ] = ACTIONS(5436), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_switch] = ACTIONS(5436), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_and] = ACTIONS(5436), - [anon_sym_or] = ACTIONS(5438), - [anon_sym_AMP_AMP] = ACTIONS(5436), - [anon_sym_PIPE_PIPE] = ACTIONS(5436), - [anon_sym_QMARK_QMARK] = ACTIONS(5436), - [anon_sym_from] = ACTIONS(5436), - [anon_sym_into] = ACTIONS(5436), - [anon_sym_join] = ACTIONS(5436), - [anon_sym_let] = ACTIONS(5436), - [anon_sym_orderby] = ACTIONS(5436), - [anon_sym_ascending] = ACTIONS(5436), - [anon_sym_descending] = ACTIONS(5436), - [anon_sym_group] = ACTIONS(5436), - [anon_sym_select] = ACTIONS(5436), - [anon_sym_as] = ACTIONS(5438), - [anon_sym_is] = ACTIONS(5436), - [anon_sym_DASH_GT] = ACTIONS(5436), - [anon_sym_with] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_GT_GT_GT] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_switch] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_or] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_QMARK_QMARK] = ACTIONS(5125), + [anon_sym_from] = ACTIONS(5125), + [anon_sym_into] = ACTIONS(5125), + [anon_sym_join] = ACTIONS(5125), + [anon_sym_let] = ACTIONS(5125), + [anon_sym_orderby] = ACTIONS(5125), + [anon_sym_ascending] = ACTIONS(5125), + [anon_sym_descending] = ACTIONS(5125), + [anon_sym_group] = ACTIONS(5125), + [anon_sym_select] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_DASH_GT] = ACTIONS(5125), + [anon_sym_with] = ACTIONS(5125), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537386,52 +537421,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3918), [sym_preproc_define] = STATE(3918), [sym_preproc_undef] = STATE(3918), - [sym__identifier_token] = ACTIONS(5878), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(5878), - [anon_sym_global] = ACTIONS(5878), - [anon_sym_unsafe] = ACTIONS(5878), - [anon_sym_static] = ACTIONS(5878), - [anon_sym_LPAREN] = ACTIONS(5244), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(5878), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(5878), - [anon_sym_notnull] = ACTIONS(5878), - [anon_sym_unmanaged] = ACTIONS(5878), - [anon_sym_scoped] = ACTIONS(5878), - [anon_sym_var] = ACTIONS(5878), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(5878), - [anon_sym_when] = ACTIONS(5878), - [anon_sym_from] = ACTIONS(5878), - [anon_sym_into] = ACTIONS(5878), - [anon_sym_join] = ACTIONS(5878), - [anon_sym_on] = ACTIONS(5878), - [anon_sym_equals] = ACTIONS(5878), - [anon_sym_let] = ACTIONS(5878), - [anon_sym_orderby] = ACTIONS(5878), - [anon_sym_ascending] = ACTIONS(5878), - [anon_sym_descending] = ACTIONS(5878), - [anon_sym_group] = ACTIONS(5878), - [anon_sym_by] = ACTIONS(5878), - [anon_sym_select] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_QMARK] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5207), + [anon_sym_DASH_DASH] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_CARET] = ACTIONS(5207), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5209), + [anon_sym_LT_LT] = ACTIONS(5207), + [anon_sym_GT_GT] = ACTIONS(5209), + [anon_sym_GT_GT_GT] = ACTIONS(5207), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_GT_EQ] = ACTIONS(5207), + [anon_sym_LT_EQ] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5209), + [anon_sym_switch] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_and] = ACTIONS(5207), + [anon_sym_or] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_QMARK_QMARK] = ACTIONS(5207), + [anon_sym_from] = ACTIONS(5207), + [anon_sym_into] = ACTIONS(5207), + [anon_sym_join] = ACTIONS(5207), + [anon_sym_let] = ACTIONS(5207), + [anon_sym_orderby] = ACTIONS(5207), + [anon_sym_ascending] = ACTIONS(5207), + [anon_sym_descending] = ACTIONS(5207), + [anon_sym_group] = ACTIONS(5207), + [anon_sym_select] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5209), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_with] = ACTIONS(5207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537444,24 +537479,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3919] = { - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(3240), - [sym__simple_name] = STATE(3240), - [sym_qualified_name] = STATE(3240), - [sym_generic_name] = STATE(3253), - [sym_type] = STATE(3228), - [sym_implicit_type] = STATE(3245), - [sym_array_type] = STATE(3262), - [sym__array_base_type] = STATE(7318), - [sym_nullable_type] = STATE(3196), - [sym_pointer_type] = STATE(3196), - [sym__pointer_base_type] = STATE(7749), - [sym_function_pointer_type] = STATE(3196), - [sym_ref_type] = STATE(3245), - [sym_scoped_type] = STATE(3245), - [sym_tuple_type] = STATE(3197), - [sym_identifier] = STATE(3163), - [sym__reserved_identifier] = STATE(3183), + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3263), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3234), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3919), [sym_preproc_endregion] = STATE(3919), [sym_preproc_line] = STATE(3919), @@ -537474,17 +537509,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(3789), [anon_sym_alias] = ACTIONS(3791), [anon_sym_global] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_ref] = ACTIONS(4182), - [anon_sym_delegate] = ACTIONS(5804), + [anon_sym_LPAREN] = ACTIONS(6163), + [anon_sym_ref] = ACTIONS(4180), + [anon_sym_delegate] = ACTIONS(5758), [anon_sym_file] = ACTIONS(3791), - [anon_sym_readonly] = ACTIONS(6265), + [anon_sym_readonly] = ACTIONS(6257), [anon_sym_where] = ACTIONS(3791), [anon_sym_notnull] = ACTIONS(3791), [anon_sym_unmanaged] = ACTIONS(3791), - [anon_sym_scoped] = ACTIONS(5907), - [anon_sym_var] = ACTIONS(5808), - [sym_predefined_type] = ACTIONS(5810), + [anon_sym_scoped] = ACTIONS(5832), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), [anon_sym_yield] = ACTIONS(3791), [anon_sym_when] = ACTIONS(3791), [anon_sym_from] = ACTIONS(3791), @@ -537520,52 +537555,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3920), [sym_preproc_define] = STATE(3920), [sym_preproc_undef] = STATE(3920), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(5474), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_LT] = ACTIONS(5503), + [anon_sym_GT] = ACTIONS(5503), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(5503), + [anon_sym_BANG] = ACTIONS(5503), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5503), + [anon_sym_DASH] = ACTIONS(5503), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_SLASH] = ACTIONS(5503), + [anon_sym_PERCENT] = ACTIONS(5500), + [anon_sym_CARET] = ACTIONS(5500), + [anon_sym_PIPE] = ACTIONS(5503), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5503), + [anon_sym_GT_GT_GT] = ACTIONS(5500), + [anon_sym_EQ_EQ] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(5500), + [anon_sym_GT_EQ] = ACTIONS(5500), + [anon_sym_LT_EQ] = ACTIONS(5500), + [anon_sym_DOT] = ACTIONS(5503), + [anon_sym_switch] = ACTIONS(5500), + [anon_sym_DOT_DOT] = ACTIONS(5500), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(5500), + [anon_sym_PIPE_PIPE] = ACTIONS(5500), + [anon_sym_QMARK_QMARK] = ACTIONS(5500), + [anon_sym_from] = ACTIONS(4295), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_join] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4295), + [anon_sym_orderby] = ACTIONS(4295), + [anon_sym_ascending] = ACTIONS(4295), + [anon_sym_descending] = ACTIONS(4295), + [anon_sym_group] = ACTIONS(4295), + [anon_sym_select] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5503), + [anon_sym_is] = ACTIONS(5500), + [anon_sym_DASH_GT] = ACTIONS(5500), + [anon_sym_with] = ACTIONS(5500), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537587,52 +537622,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3921), [sym_preproc_define] = STATE(3921), [sym_preproc_undef] = STATE(3921), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5504), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(5507), - [anon_sym_BANG] = ACTIONS(5507), - [anon_sym_PLUS_PLUS] = ACTIONS(5504), - [anon_sym_DASH_DASH] = ACTIONS(5504), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5504), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_CARET] = ACTIONS(5504), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5504), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym_GT_GT_GT] = ACTIONS(5504), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_BANG_EQ] = ACTIONS(5504), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_switch] = ACTIONS(5504), - [anon_sym_DOT_DOT] = ACTIONS(5504), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4354), - [anon_sym_AMP_AMP] = ACTIONS(5504), - [anon_sym_PIPE_PIPE] = ACTIONS(5504), - [anon_sym_QMARK_QMARK] = ACTIONS(5504), - [anon_sym_from] = ACTIONS(4346), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_join] = ACTIONS(4346), - [anon_sym_let] = ACTIONS(4346), - [anon_sym_orderby] = ACTIONS(4346), - [anon_sym_ascending] = ACTIONS(4346), - [anon_sym_descending] = ACTIONS(4346), - [anon_sym_group] = ACTIONS(4346), - [anon_sym_select] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5507), - [anon_sym_is] = ACTIONS(5504), - [anon_sym_DASH_GT] = ACTIONS(5504), - [anon_sym_with] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(5509), + [anon_sym_BANG] = ACTIONS(5509), + [anon_sym_PLUS_PLUS] = ACTIONS(5506), + [anon_sym_DASH_DASH] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5506), + [anon_sym_CARET] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5506), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_GT_GT_GT] = ACTIONS(5506), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_EQ] = ACTIONS(5506), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_switch] = ACTIONS(5506), + [anon_sym_DOT_DOT] = ACTIONS(5506), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_or] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_PIPE_PIPE] = ACTIONS(5506), + [anon_sym_QMARK_QMARK] = ACTIONS(5506), + [anon_sym_from] = ACTIONS(4295), + [anon_sym_into] = ACTIONS(4295), + [anon_sym_join] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4295), + [anon_sym_orderby] = ACTIONS(4295), + [anon_sym_ascending] = ACTIONS(4295), + [anon_sym_descending] = ACTIONS(4295), + [anon_sym_group] = ACTIONS(4295), + [anon_sym_select] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(5509), + [anon_sym_is] = ACTIONS(5506), + [anon_sym_DASH_GT] = ACTIONS(5506), + [anon_sym_with] = ACTIONS(5506), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537654,52 +537689,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3922), [sym_preproc_define] = STATE(3922), [sym_preproc_undef] = STATE(3922), - [anon_sym_LBRACK] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4993), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4993), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4993), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_LT_LT] = ACTIONS(4991), - [anon_sym_GT_GT] = ACTIONS(4993), - [anon_sym_GT_GT_GT] = ACTIONS(4991), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_GT_EQ] = ACTIONS(4991), - [anon_sym_LT_EQ] = ACTIONS(4991), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_switch] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_and] = ACTIONS(4991), - [anon_sym_or] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_QMARK_QMARK] = ACTIONS(4991), - [anon_sym_from] = ACTIONS(4991), - [anon_sym_into] = ACTIONS(4991), - [anon_sym_join] = ACTIONS(4991), - [anon_sym_let] = ACTIONS(4991), - [anon_sym_orderby] = ACTIONS(4991), - [anon_sym_ascending] = ACTIONS(4991), - [anon_sym_descending] = ACTIONS(4991), - [anon_sym_group] = ACTIONS(4991), - [anon_sym_select] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4993), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_with] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), + [anon_sym_where] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2063), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_and] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_QMARK_QMARK] = ACTIONS(2061), + [anon_sym_from] = ACTIONS(2061), + [anon_sym_into] = ACTIONS(2061), + [anon_sym_join] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_orderby] = ACTIONS(2061), + [anon_sym_ascending] = ACTIONS(2061), + [anon_sym_descending] = ACTIONS(2061), + [anon_sym_group] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_DASH_GT] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537712,6 +537747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3923] = { + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3923), [sym_preproc_endregion] = STATE(3923), [sym_preproc_line] = STATE(3923), @@ -537721,52 +537758,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3923), [sym_preproc_define] = STATE(3923), [sym_preproc_undef] = STATE(3923), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5122), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(5124), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_GT_GT_GT] = ACTIONS(5122), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_switch] = ACTIONS(5122), - [anon_sym_DOT_DOT] = ACTIONS(5122), - [anon_sym_and] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_QMARK_QMARK] = ACTIONS(5122), - [anon_sym_from] = ACTIONS(5122), - [anon_sym_into] = ACTIONS(5122), - [anon_sym_join] = ACTIONS(5122), - [anon_sym_let] = ACTIONS(5122), - [anon_sym_orderby] = ACTIONS(5122), - [anon_sym_ascending] = ACTIONS(5122), - [anon_sym_descending] = ACTIONS(5122), - [anon_sym_group] = ACTIONS(5122), - [anon_sym_select] = ACTIONS(5122), - [anon_sym_as] = ACTIONS(5124), - [anon_sym_is] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [anon_sym_with] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5878), + [anon_sym_RBRACK] = ACTIONS(5878), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5878), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5878), + [anon_sym_or] = ACTIONS(5878), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5878), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5878), + [aux_sym_preproc_else_token1] = ACTIONS(5878), + [aux_sym_preproc_elif_token1] = ACTIONS(5878), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537788,52 +537823,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3924), [sym_preproc_define] = STATE(3924), [sym_preproc_undef] = STATE(3924), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_where] = ACTIONS(5204), - [anon_sym_QMARK] = ACTIONS(5206), - [anon_sym_BANG] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5204), - [anon_sym_DASH_DASH] = ACTIONS(5204), - [anon_sym_PLUS] = ACTIONS(5206), - [anon_sym_DASH] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_SLASH] = ACTIONS(5206), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_CARET] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_GT_GT_GT] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_DOT] = ACTIONS(5206), - [anon_sym_switch] = ACTIONS(5204), - [anon_sym_DOT_DOT] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_QMARK_QMARK] = ACTIONS(5204), - [anon_sym_from] = ACTIONS(5204), - [anon_sym_into] = ACTIONS(5204), - [anon_sym_join] = ACTIONS(5204), - [anon_sym_let] = ACTIONS(5204), - [anon_sym_orderby] = ACTIONS(5204), - [anon_sym_ascending] = ACTIONS(5204), - [anon_sym_descending] = ACTIONS(5204), - [anon_sym_group] = ACTIONS(5204), - [anon_sym_select] = ACTIONS(5204), - [anon_sym_as] = ACTIONS(5206), - [anon_sym_is] = ACTIONS(5204), - [anon_sym_DASH_GT] = ACTIONS(5204), - [anon_sym_with] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5163), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5163), + [anon_sym_CARET] = ACTIONS(5163), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_LT_LT] = ACTIONS(5163), + [anon_sym_GT_GT] = ACTIONS(5165), + [anon_sym_GT_GT_GT] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_switch] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_and] = ACTIONS(5163), + [anon_sym_or] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_QMARK_QMARK] = ACTIONS(5163), + [anon_sym_from] = ACTIONS(5163), + [anon_sym_into] = ACTIONS(5163), + [anon_sym_join] = ACTIONS(5163), + [anon_sym_let] = ACTIONS(5163), + [anon_sym_orderby] = ACTIONS(5163), + [anon_sym_ascending] = ACTIONS(5163), + [anon_sym_descending] = ACTIONS(5163), + [anon_sym_group] = ACTIONS(5163), + [anon_sym_select] = ACTIONS(5163), + [anon_sym_as] = ACTIONS(5165), + [anon_sym_is] = ACTIONS(5163), + [anon_sym_DASH_GT] = ACTIONS(5163), + [anon_sym_with] = ACTIONS(5163), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537855,52 +537890,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3925), [sym_preproc_define] = STATE(3925), [sym_preproc_undef] = STATE(3925), - [anon_sym_LBRACK] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_LT] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5513), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_BANG] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5510), - [anon_sym_DASH_DASH] = ACTIONS(5510), - [anon_sym_PLUS] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5510), - [anon_sym_SLASH] = ACTIONS(5513), - [anon_sym_PERCENT] = ACTIONS(5510), - [anon_sym_CARET] = ACTIONS(5510), - [anon_sym_PIPE] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5513), - [anon_sym_LT_LT] = ACTIONS(5510), - [anon_sym_GT_GT] = ACTIONS(5513), - [anon_sym_GT_GT_GT] = ACTIONS(5510), - [anon_sym_EQ_EQ] = ACTIONS(5510), - [anon_sym_BANG_EQ] = ACTIONS(5510), - [anon_sym_GT_EQ] = ACTIONS(5510), - [anon_sym_LT_EQ] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(5513), - [anon_sym_switch] = ACTIONS(5510), - [anon_sym_DOT_DOT] = ACTIONS(5510), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_or] = ACTIONS(4354), - [anon_sym_AMP_AMP] = ACTIONS(5510), - [anon_sym_PIPE_PIPE] = ACTIONS(5510), - [anon_sym_QMARK_QMARK] = ACTIONS(5510), - [anon_sym_from] = ACTIONS(4346), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_join] = ACTIONS(4346), - [anon_sym_let] = ACTIONS(4346), - [anon_sym_orderby] = ACTIONS(4346), - [anon_sym_ascending] = ACTIONS(4346), - [anon_sym_descending] = ACTIONS(4346), - [anon_sym_group] = ACTIONS(4346), - [anon_sym_select] = ACTIONS(4346), - [anon_sym_as] = ACTIONS(5513), - [anon_sym_is] = ACTIONS(5510), - [anon_sym_DASH_GT] = ACTIONS(5510), - [anon_sym_with] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5167), + [anon_sym_QMARK] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_CARET] = ACTIONS(5167), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5169), + [anon_sym_LT_LT] = ACTIONS(5167), + [anon_sym_GT_GT] = ACTIONS(5169), + [anon_sym_GT_GT_GT] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_switch] = ACTIONS(5167), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_and] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_QMARK_QMARK] = ACTIONS(5167), + [anon_sym_from] = ACTIONS(5167), + [anon_sym_into] = ACTIONS(5167), + [anon_sym_join] = ACTIONS(5167), + [anon_sym_let] = ACTIONS(5167), + [anon_sym_orderby] = ACTIONS(5167), + [anon_sym_ascending] = ACTIONS(5167), + [anon_sym_descending] = ACTIONS(5167), + [anon_sym_group] = ACTIONS(5167), + [anon_sym_select] = ACTIONS(5167), + [anon_sym_as] = ACTIONS(5169), + [anon_sym_is] = ACTIONS(5167), + [anon_sym_DASH_GT] = ACTIONS(5167), + [anon_sym_with] = ACTIONS(5167), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537922,52 +537957,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3926), [sym_preproc_define] = STATE(3926), [sym_preproc_undef] = STATE(3926), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_where] = ACTIONS(5444), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5446), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_from] = ACTIONS(5444), - [anon_sym_into] = ACTIONS(5444), - [anon_sym_join] = ACTIONS(5444), - [anon_sym_let] = ACTIONS(5444), - [anon_sym_orderby] = ACTIONS(5444), - [anon_sym_ascending] = ACTIONS(5444), - [anon_sym_descending] = ACTIONS(5444), - [anon_sym_group] = ACTIONS(5444), - [anon_sym_select] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5446), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_QMARK] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5175), + [anon_sym_DASH_DASH] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_CARET] = ACTIONS(5175), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_AMP] = ACTIONS(5177), + [anon_sym_LT_LT] = ACTIONS(5175), + [anon_sym_GT_GT] = ACTIONS(5177), + [anon_sym_GT_GT_GT] = ACTIONS(5175), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_GT_EQ] = ACTIONS(5175), + [anon_sym_LT_EQ] = ACTIONS(5175), + [anon_sym_DOT] = ACTIONS(5177), + [anon_sym_switch] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5175), + [anon_sym_and] = ACTIONS(5175), + [anon_sym_or] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5175), + [anon_sym_QMARK_QMARK] = ACTIONS(5175), + [anon_sym_from] = ACTIONS(5175), + [anon_sym_into] = ACTIONS(5175), + [anon_sym_join] = ACTIONS(5175), + [anon_sym_let] = ACTIONS(5175), + [anon_sym_orderby] = ACTIONS(5175), + [anon_sym_ascending] = ACTIONS(5175), + [anon_sym_descending] = ACTIONS(5175), + [anon_sym_group] = ACTIONS(5175), + [anon_sym_select] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5175), + [anon_sym_with] = ACTIONS(5175), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -537980,15 +538015,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3927] = { - [sym__name] = STATE(5264), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(2189), - [sym_ref_type] = STATE(2340), - [sym__scoped_base_type] = STATE(2343), - [sym_identifier] = STATE(4474), - [sym__reserved_identifier] = STATE(2182), [sym_preproc_region] = STATE(3927), [sym_preproc_endregion] = STATE(3927), [sym_preproc_line] = STATE(3927), @@ -537998,43 +538024,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3927), [sym_preproc_define] = STATE(3927), [sym_preproc_undef] = STATE(3927), - [sym__identifier_token] = ACTIONS(3612), - [anon_sym_alias] = ACTIONS(3615), - [anon_sym_global] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3615), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3615), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3615), - [anon_sym_unmanaged] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3615), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3615), - [anon_sym_yield] = ACTIONS(3615), - [anon_sym_when] = ACTIONS(3615), - [sym_discard] = ACTIONS(3461), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3615), - [anon_sym_into] = ACTIONS(3615), - [anon_sym_join] = ACTIONS(3615), - [anon_sym_on] = ACTIONS(3615), - [anon_sym_equals] = ACTIONS(3615), - [anon_sym_let] = ACTIONS(3615), - [anon_sym_orderby] = ACTIONS(3615), - [anon_sym_ascending] = ACTIONS(3615), - [anon_sym_descending] = ACTIONS(3615), - [anon_sym_group] = ACTIONS(3615), - [anon_sym_by] = ACTIONS(3615), - [anon_sym_select] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5183), + [anon_sym_QMARK] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PLUS_PLUS] = ACTIONS(5183), + [anon_sym_DASH_DASH] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5183), + [anon_sym_CARET] = ACTIONS(5183), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5185), + [anon_sym_LT_LT] = ACTIONS(5183), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_GT_GT_GT] = ACTIONS(5183), + [anon_sym_EQ_EQ] = ACTIONS(5183), + [anon_sym_BANG_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_switch] = ACTIONS(5183), + [anon_sym_DOT_DOT] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5183), + [anon_sym_QMARK_QMARK] = ACTIONS(5183), + [anon_sym_from] = ACTIONS(5183), + [anon_sym_into] = ACTIONS(5183), + [anon_sym_join] = ACTIONS(5183), + [anon_sym_let] = ACTIONS(5183), + [anon_sym_orderby] = ACTIONS(5183), + [anon_sym_ascending] = ACTIONS(5183), + [anon_sym_descending] = ACTIONS(5183), + [anon_sym_group] = ACTIONS(5183), + [anon_sym_select] = ACTIONS(5183), + [anon_sym_as] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(5183), + [anon_sym_DASH_GT] = ACTIONS(5183), + [anon_sym_with] = ACTIONS(5183), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538047,6 +538082,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3928] = { + [sym__name] = STATE(6336), + [sym_alias_qualified_name] = STATE(4123), + [sym__simple_name] = STATE(4123), + [sym_qualified_name] = STATE(4123), + [sym_generic_name] = STATE(4135), + [sym_type] = STATE(4607), + [sym_implicit_type] = STATE(2337), + [sym_array_type] = STATE(4530), + [sym__array_base_type] = STATE(7210), + [sym_nullable_type] = STATE(4355), + [sym_pointer_type] = STATE(4355), + [sym__pointer_base_type] = STATE(7752), + [sym_function_pointer_type] = STATE(4355), + [sym_ref_type] = STATE(2337), + [sym_scoped_type] = STATE(2337), + [sym_tuple_type] = STATE(4360), + [sym_identifier] = STATE(6309), + [sym__reserved_identifier] = STATE(3728), [sym_preproc_region] = STATE(3928), [sym_preproc_endregion] = STATE(3928), [sym_preproc_line] = STATE(3928), @@ -538056,186 +538109,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3928), [sym_preproc_define] = STATE(3928), [sym_preproc_undef] = STATE(3928), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5444), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_where] = ACTIONS(5444), - [anon_sym_QMARK] = ACTIONS(5446), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_PLUS_PLUS] = ACTIONS(5444), - [anon_sym_DASH_DASH] = ACTIONS(5444), - [anon_sym_PLUS] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_SLASH] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5444), - [anon_sym_CARET] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5446), - [anon_sym_LT_LT] = ACTIONS(5444), - [anon_sym_GT_GT] = ACTIONS(5446), - [anon_sym_GT_GT_GT] = ACTIONS(5444), - [anon_sym_EQ_EQ] = ACTIONS(5444), - [anon_sym_BANG_EQ] = ACTIONS(5444), - [anon_sym_GT_EQ] = ACTIONS(5444), - [anon_sym_LT_EQ] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5446), - [anon_sym_switch] = ACTIONS(5444), - [anon_sym_DOT_DOT] = ACTIONS(5444), - [anon_sym_and] = ACTIONS(5444), - [anon_sym_or] = ACTIONS(5446), - [anon_sym_AMP_AMP] = ACTIONS(5444), - [anon_sym_PIPE_PIPE] = ACTIONS(5444), - [anon_sym_QMARK_QMARK] = ACTIONS(5444), - [anon_sym_from] = ACTIONS(5444), - [anon_sym_into] = ACTIONS(5444), - [anon_sym_join] = ACTIONS(5444), - [anon_sym_let] = ACTIONS(5444), - [anon_sym_orderby] = ACTIONS(5444), - [anon_sym_ascending] = ACTIONS(5444), - [anon_sym_descending] = ACTIONS(5444), - [anon_sym_group] = ACTIONS(5444), - [anon_sym_select] = ACTIONS(5444), - [anon_sym_as] = ACTIONS(5446), - [anon_sym_is] = ACTIONS(5444), - [anon_sym_DASH_GT] = ACTIONS(5444), - [anon_sym_with] = ACTIONS(5444), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3929] = { - [sym_argument_list] = STATE(3333), - [sym_bracketed_argument_list] = STATE(2669), - [sym_preproc_region] = STATE(3929), - [sym_preproc_endregion] = STATE(3929), - [sym_preproc_line] = STATE(3929), - [sym_preproc_pragma] = STATE(3929), - [sym_preproc_nullable] = STATE(3929), - [sym_preproc_error] = STATE(3929), - [sym_preproc_warning] = STATE(3929), - [sym_preproc_define] = STATE(3929), - [sym_preproc_undef] = STATE(3929), - [anon_sym_SEMI] = ACTIONS(5694), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_COMMA] = ACTIONS(5694), - [anon_sym_RBRACK] = ACTIONS(5694), - [anon_sym_LPAREN] = ACTIONS(5302), - [anon_sym_RPAREN] = ACTIONS(5694), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_LT] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5312), - [anon_sym_PLUS_PLUS] = ACTIONS(5314), - [anon_sym_DASH_DASH] = ACTIONS(5314), - [anon_sym_PLUS] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6109), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6127), - [anon_sym_and] = ACTIONS(5694), - [anon_sym_or] = ACTIONS(5694), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6131), - [anon_sym_QMARK_QMARK] = ACTIONS(6133), - [anon_sym_into] = ACTIONS(5694), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6137), - [anon_sym_DASH_GT] = ACTIONS(4154), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(5694), - [aux_sym_preproc_else_token1] = ACTIONS(5694), - [aux_sym_preproc_elif_token1] = ACTIONS(5694), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3930] = { - [sym_preproc_region] = STATE(3930), - [sym_preproc_endregion] = STATE(3930), - [sym_preproc_line] = STATE(3930), - [sym_preproc_pragma] = STATE(3930), - [sym_preproc_nullable] = STATE(3930), - [sym_preproc_error] = STATE(3930), - [sym_preproc_warning] = STATE(3930), - [sym_preproc_define] = STATE(3930), - [sym_preproc_undef] = STATE(3930), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4997), - [anon_sym_where] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4997), - [anon_sym_BANG] = ACTIONS(4997), - [anon_sym_PLUS_PLUS] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4997), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_LT_LT] = ACTIONS(4995), - [anon_sym_GT_GT] = ACTIONS(4997), - [anon_sym_GT_GT_GT] = ACTIONS(4995), - [anon_sym_EQ_EQ] = ACTIONS(4995), - [anon_sym_BANG_EQ] = ACTIONS(4995), - [anon_sym_GT_EQ] = ACTIONS(4995), - [anon_sym_LT_EQ] = ACTIONS(4995), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_switch] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4995), - [anon_sym_and] = ACTIONS(4995), - [anon_sym_or] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_QMARK_QMARK] = ACTIONS(4995), - [anon_sym_from] = ACTIONS(4995), - [anon_sym_into] = ACTIONS(4995), - [anon_sym_join] = ACTIONS(4995), - [anon_sym_let] = ACTIONS(4995), - [anon_sym_orderby] = ACTIONS(4995), - [anon_sym_ascending] = ACTIONS(4995), - [anon_sym_descending] = ACTIONS(4995), - [anon_sym_group] = ACTIONS(4995), - [anon_sym_select] = ACTIONS(4995), - [anon_sym_as] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4995), - [anon_sym_DASH_GT] = ACTIONS(4995), - [anon_sym_with] = ACTIONS(4995), + [sym__identifier_token] = ACTIONS(2993), + [anon_sym_alias] = ACTIONS(2997), + [anon_sym_global] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_ref] = ACTIONS(6259), + [anon_sym_delegate] = ACTIONS(3468), + [anon_sym_file] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(6261), + [anon_sym_where] = ACTIONS(2997), + [anon_sym_notnull] = ACTIONS(2997), + [anon_sym_unmanaged] = ACTIONS(2997), + [anon_sym_scoped] = ACTIONS(6263), + [anon_sym_var] = ACTIONS(6265), + [sym_predefined_type] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_when] = ACTIONS(2997), + [anon_sym_from] = ACTIONS(2997), + [anon_sym_into] = ACTIONS(2997), + [anon_sym_join] = ACTIONS(2997), + [anon_sym_on] = ACTIONS(2997), + [anon_sym_equals] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_orderby] = ACTIONS(2997), + [anon_sym_ascending] = ACTIONS(2997), + [anon_sym_descending] = ACTIONS(2997), + [anon_sym_group] = ACTIONS(2997), + [anon_sym_by] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3929] = { + [sym_preproc_region] = STATE(3929), + [sym_preproc_endregion] = STATE(3929), + [sym_preproc_line] = STATE(3929), + [sym_preproc_pragma] = STATE(3929), + [sym_preproc_nullable] = STATE(3929), + [sym_preproc_error] = STATE(3929), + [sym_preproc_warning] = STATE(3929), + [sym_preproc_define] = STATE(3929), + [sym_preproc_undef] = STATE(3929), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_QMARK] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5211), + [anon_sym_DASH_DASH] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_CARET] = ACTIONS(5211), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5213), + [anon_sym_LT_LT] = ACTIONS(5211), + [anon_sym_GT_GT] = ACTIONS(5213), + [anon_sym_GT_GT_GT] = ACTIONS(5211), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_GT_EQ] = ACTIONS(5211), + [anon_sym_LT_EQ] = ACTIONS(5211), + [anon_sym_DOT] = ACTIONS(5213), + [anon_sym_switch] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5211), + [anon_sym_and] = ACTIONS(5211), + [anon_sym_or] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5211), + [anon_sym_PIPE_PIPE] = ACTIONS(5211), + [anon_sym_QMARK_QMARK] = ACTIONS(5211), + [anon_sym_from] = ACTIONS(5211), + [anon_sym_into] = ACTIONS(5211), + [anon_sym_join] = ACTIONS(5211), + [anon_sym_let] = ACTIONS(5211), + [anon_sym_orderby] = ACTIONS(5211), + [anon_sym_ascending] = ACTIONS(5211), + [anon_sym_descending] = ACTIONS(5211), + [anon_sym_group] = ACTIONS(5211), + [anon_sym_select] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5211), + [anon_sym_with] = ACTIONS(5211), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3930] = { + [sym_preproc_region] = STATE(3930), + [sym_preproc_endregion] = STATE(3930), + [sym_preproc_line] = STATE(3930), + [sym_preproc_pragma] = STATE(3930), + [sym_preproc_nullable] = STATE(3930), + [sym_preproc_error] = STATE(3930), + [sym_preproc_warning] = STATE(3930), + [sym_preproc_define] = STATE(3930), + [sym_preproc_undef] = STATE(3930), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(5461), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538257,52 +538292,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3931), [sym_preproc_define] = STATE(3931), [sym_preproc_undef] = STATE(3931), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_where] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_LT_LT] = ACTIONS(5047), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_GT_GT_GT] = ACTIONS(5047), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_switch] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5047), - [anon_sym_and] = ACTIONS(5047), - [anon_sym_or] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5047), - [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_QMARK_QMARK] = ACTIONS(5047), - [anon_sym_from] = ACTIONS(5047), - [anon_sym_into] = ACTIONS(5047), - [anon_sym_join] = ACTIONS(5047), - [anon_sym_let] = ACTIONS(5047), - [anon_sym_orderby] = ACTIONS(5047), - [anon_sym_ascending] = ACTIONS(5047), - [anon_sym_descending] = ACTIONS(5047), - [anon_sym_group] = ACTIONS(5047), - [anon_sym_select] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5049), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_DASH_GT] = ACTIONS(5047), - [anon_sym_with] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_where] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_GT_GT_GT] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_switch] = ACTIONS(5222), + [anon_sym_DOT_DOT] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5222), + [anon_sym_QMARK_QMARK] = ACTIONS(5222), + [anon_sym_from] = ACTIONS(5222), + [anon_sym_into] = ACTIONS(5222), + [anon_sym_join] = ACTIONS(5222), + [anon_sym_let] = ACTIONS(5222), + [anon_sym_orderby] = ACTIONS(5222), + [anon_sym_ascending] = ACTIONS(5222), + [anon_sym_descending] = ACTIONS(5222), + [anon_sym_group] = ACTIONS(5222), + [anon_sym_select] = ACTIONS(5222), + [anon_sym_as] = ACTIONS(5224), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_with] = ACTIONS(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538324,52 +538359,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3932), [sym_preproc_define] = STATE(3932), [sym_preproc_undef] = STATE(3932), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_where] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5260), - [anon_sym_BANG] = ACTIONS(5260), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_GT_GT_GT] = ACTIONS(5258), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_switch] = ACTIONS(5258), - [anon_sym_DOT_DOT] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_QMARK_QMARK] = ACTIONS(5258), - [anon_sym_from] = ACTIONS(5258), - [anon_sym_into] = ACTIONS(5258), - [anon_sym_join] = ACTIONS(5258), - [anon_sym_let] = ACTIONS(5258), - [anon_sym_orderby] = ACTIONS(5258), - [anon_sym_ascending] = ACTIONS(5258), - [anon_sym_descending] = ACTIONS(5258), - [anon_sym_group] = ACTIONS(5258), - [anon_sym_select] = ACTIONS(5258), - [anon_sym_as] = ACTIONS(5260), - [anon_sym_is] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [anon_sym_with] = ACTIONS(5258), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_and] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_into] = ACTIONS(2979), + [anon_sym_join] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_orderby] = ACTIONS(2979), + [anon_sym_ascending] = ACTIONS(2979), + [anon_sym_descending] = ACTIONS(2979), + [anon_sym_group] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_DASH_GT] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538382,24 +538417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3933] = { - [sym__name] = STATE(3138), - [sym_alias_qualified_name] = STATE(3038), - [sym__simple_name] = STATE(3038), - [sym_qualified_name] = STATE(3038), - [sym_generic_name] = STATE(3046), - [sym_type] = STATE(3095), - [sym_implicit_type] = STATE(3039), - [sym_array_type] = STATE(3040), - [sym__array_base_type] = STATE(7165), - [sym_nullable_type] = STATE(3041), - [sym_pointer_type] = STATE(3041), - [sym__pointer_base_type] = STATE(7614), - [sym_function_pointer_type] = STATE(3041), - [sym_ref_type] = STATE(3039), - [sym_scoped_type] = STATE(3039), - [sym_tuple_type] = STATE(3042), - [sym_identifier] = STATE(2978), - [sym__reserved_identifier] = STATE(2981), [sym_preproc_region] = STATE(3933), [sym_preproc_endregion] = STATE(3933), [sym_preproc_line] = STATE(3933), @@ -538409,34 +538426,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3933), [sym_preproc_define] = STATE(3933), [sym_preproc_undef] = STATE(3933), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(6197), - [anon_sym_ref] = ACTIONS(4263), - [anon_sym_delegate] = ACTIONS(4066), - [anon_sym_file] = ACTIONS(3893), - [anon_sym_readonly] = ACTIONS(6267), - [anon_sym_where] = ACTIONS(3893), - [anon_sym_notnull] = ACTIONS(3893), - [anon_sym_unmanaged] = ACTIONS(3893), - [anon_sym_scoped] = ACTIONS(5781), - [anon_sym_var] = ACTIONS(4070), - [sym_predefined_type] = ACTIONS(4072), - [anon_sym_yield] = ACTIONS(3893), - [anon_sym_when] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3893), - [anon_sym_into] = ACTIONS(3893), - [anon_sym_join] = ACTIONS(3893), - [anon_sym_on] = ACTIONS(3893), - [anon_sym_equals] = ACTIONS(3893), - [anon_sym_let] = ACTIONS(3893), - [anon_sym_orderby] = ACTIONS(3893), - [anon_sym_ascending] = ACTIONS(3893), - [anon_sym_descending] = ACTIONS(3893), - [anon_sym_group] = ACTIONS(3893), - [anon_sym_by] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_where] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_BANG] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_GT_GT_GT] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_switch] = ACTIONS(4991), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_or] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_QMARK_QMARK] = ACTIONS(4991), + [anon_sym_from] = ACTIONS(4991), + [anon_sym_into] = ACTIONS(4991), + [anon_sym_join] = ACTIONS(4991), + [anon_sym_let] = ACTIONS(4991), + [anon_sym_orderby] = ACTIONS(4991), + [anon_sym_ascending] = ACTIONS(4991), + [anon_sym_descending] = ACTIONS(4991), + [anon_sym_group] = ACTIONS(4991), + [anon_sym_select] = ACTIONS(4991), + [anon_sym_as] = ACTIONS(4993), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_DASH_GT] = ACTIONS(4991), + [anon_sym_with] = ACTIONS(4991), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538449,25 +538484,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3934] = { - [sym_variable_declaration] = STATE(7356), - [sym__name] = STATE(4457), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(5771), - [sym_implicit_type] = STATE(2366), - [sym_array_type] = STATE(4491), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7575), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(2366), - [sym_scoped_type] = STATE(2366), - [sym_tuple_type] = STATE(4362), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), + [sym_argument_list] = STATE(3372), + [sym_bracketed_argument_list] = STATE(2655), [sym_preproc_region] = STATE(3934), [sym_preproc_endregion] = STATE(3934), [sym_preproc_line] = STATE(3934), @@ -538477,33 +538495,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3934), [sym_preproc_define] = STATE(3934), [sym_preproc_undef] = STATE(3934), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3468), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3023), - [sym_predefined_type] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(5310), + [anon_sym_COMMA] = ACTIONS(5850), + [anon_sym_RBRACK] = ACTIONS(5850), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_RPAREN] = ACTIONS(5850), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(6125), + [anon_sym_GT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6127), + [anon_sym_BANG] = ACTIONS(5312), + [anon_sym_PLUS_PLUS] = ACTIONS(5314), + [anon_sym_DASH_DASH] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6133), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6137), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_LT_LT] = ACTIONS(6141), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_GT_GT_GT] = ACTIONS(6141), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT_EQ] = ACTIONS(6147), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_and] = ACTIONS(5850), + [anon_sym_or] = ACTIONS(5850), + [anon_sym_AMP_AMP] = ACTIONS(6151), + [anon_sym_PIPE_PIPE] = ACTIONS(6153), + [anon_sym_QMARK_QMARK] = ACTIONS(6155), + [anon_sym_into] = ACTIONS(5850), + [anon_sym_as] = ACTIONS(6157), + [anon_sym_is] = ACTIONS(6159), + [anon_sym_DASH_GT] = ACTIONS(4138), + [anon_sym_with] = ACTIONS(6161), + [aux_sym_preproc_if_token3] = ACTIONS(5850), + [aux_sym_preproc_else_token1] = ACTIONS(5850), + [aux_sym_preproc_elif_token1] = ACTIONS(5850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538525,52 +538560,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3935), [sym_preproc_define] = STATE(3935), [sym_preproc_undef] = STATE(3935), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PLUS_PLUS] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_GT_GT_GT] = ACTIONS(5095), - [anon_sym_EQ_EQ] = ACTIONS(5095), - [anon_sym_BANG_EQ] = ACTIONS(5095), - [anon_sym_GT_EQ] = ACTIONS(5095), - [anon_sym_LT_EQ] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_switch] = ACTIONS(5095), - [anon_sym_DOT_DOT] = ACTIONS(5095), - [anon_sym_and] = ACTIONS(5095), - [anon_sym_or] = ACTIONS(5097), - [anon_sym_AMP_AMP] = ACTIONS(5095), - [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_QMARK_QMARK] = ACTIONS(5095), - [anon_sym_from] = ACTIONS(5095), - [anon_sym_into] = ACTIONS(5095), - [anon_sym_join] = ACTIONS(5095), - [anon_sym_let] = ACTIONS(5095), - [anon_sym_orderby] = ACTIONS(5095), - [anon_sym_ascending] = ACTIONS(5095), - [anon_sym_descending] = ACTIONS(5095), - [anon_sym_group] = ACTIONS(5095), - [anon_sym_select] = ACTIONS(5095), - [anon_sym_as] = ACTIONS(5097), - [anon_sym_is] = ACTIONS(5095), - [anon_sym_DASH_GT] = ACTIONS(5095), - [anon_sym_with] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5005), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_GT_GT_GT] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_switch] = ACTIONS(5003), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_or] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_QMARK_QMARK] = ACTIONS(5003), + [anon_sym_from] = ACTIONS(5003), + [anon_sym_into] = ACTIONS(5003), + [anon_sym_join] = ACTIONS(5003), + [anon_sym_let] = ACTIONS(5003), + [anon_sym_orderby] = ACTIONS(5003), + [anon_sym_ascending] = ACTIONS(5003), + [anon_sym_descending] = ACTIONS(5003), + [anon_sym_group] = ACTIONS(5003), + [anon_sym_select] = ACTIONS(5003), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_is] = ACTIONS(5003), + [anon_sym_DASH_GT] = ACTIONS(5003), + [anon_sym_with] = ACTIONS(5003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538583,8 +538618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3936] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3936), [sym_preproc_endregion] = STATE(3936), [sym_preproc_line] = STATE(3936), @@ -538594,50 +538627,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3936), [sym_preproc_define] = STATE(3936), [sym_preproc_undef] = STATE(3936), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(6153), - [anon_sym_GT_GT] = ACTIONS(6155), - [anon_sym_GT_GT_GT] = ACTIONS(6153), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(5938), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(5938), + [anon_sym_global] = ACTIONS(5938), + [anon_sym_unsafe] = ACTIONS(5938), + [anon_sym_static] = ACTIONS(5938), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(5938), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(5938), + [anon_sym_notnull] = ACTIONS(5938), + [anon_sym_unmanaged] = ACTIONS(5938), + [anon_sym_scoped] = ACTIONS(5938), + [anon_sym_var] = ACTIONS(5938), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(5938), + [anon_sym_when] = ACTIONS(5938), + [anon_sym_from] = ACTIONS(5938), + [anon_sym_into] = ACTIONS(5938), + [anon_sym_join] = ACTIONS(5938), + [anon_sym_on] = ACTIONS(5938), + [anon_sym_equals] = ACTIONS(5938), + [anon_sym_let] = ACTIONS(5938), + [anon_sym_orderby] = ACTIONS(5938), + [anon_sym_ascending] = ACTIONS(5938), + [anon_sym_descending] = ACTIONS(5938), + [anon_sym_group] = ACTIONS(5938), + [anon_sym_by] = ACTIONS(5938), + [anon_sym_select] = ACTIONS(5938), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538650,6 +538685,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3937] = { + [sym__name] = STATE(3190), + [sym_alias_qualified_name] = STATE(3204), + [sym__simple_name] = STATE(3204), + [sym_qualified_name] = STATE(3204), + [sym_generic_name] = STATE(3205), + [sym_type] = STATE(3263), + [sym_implicit_type] = STATE(3233), + [sym_array_type] = STATE(3234), + [sym__array_base_type] = STATE(7245), + [sym_nullable_type] = STATE(3238), + [sym_pointer_type] = STATE(3238), + [sym__pointer_base_type] = STATE(7595), + [sym_function_pointer_type] = STATE(3238), + [sym_ref_type] = STATE(3233), + [sym_scoped_type] = STATE(3233), + [sym_tuple_type] = STATE(3242), + [sym_identifier] = STATE(3165), + [sym__reserved_identifier] = STATE(3171), [sym_preproc_region] = STATE(3937), [sym_preproc_endregion] = STATE(3937), [sym_preproc_line] = STATE(3937), @@ -538659,52 +538712,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3937), [sym_preproc_define] = STATE(3937), [sym_preproc_undef] = STATE(3937), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5140), - [anon_sym_LPAREN] = ACTIONS(5140), - [anon_sym_LT] = ACTIONS(5142), - [anon_sym_GT] = ACTIONS(5142), - [anon_sym_where] = ACTIONS(5140), - [anon_sym_QMARK] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(5142), - [anon_sym_PLUS_PLUS] = ACTIONS(5140), - [anon_sym_DASH_DASH] = ACTIONS(5140), - [anon_sym_PLUS] = ACTIONS(5142), - [anon_sym_DASH] = ACTIONS(5142), - [anon_sym_STAR] = ACTIONS(5140), - [anon_sym_SLASH] = ACTIONS(5142), - [anon_sym_PERCENT] = ACTIONS(5140), - [anon_sym_CARET] = ACTIONS(5140), - [anon_sym_PIPE] = ACTIONS(5142), - [anon_sym_AMP] = ACTIONS(5142), - [anon_sym_LT_LT] = ACTIONS(5140), - [anon_sym_GT_GT] = ACTIONS(5142), - [anon_sym_GT_GT_GT] = ACTIONS(5140), - [anon_sym_EQ_EQ] = ACTIONS(5140), - [anon_sym_BANG_EQ] = ACTIONS(5140), - [anon_sym_GT_EQ] = ACTIONS(5140), - [anon_sym_LT_EQ] = ACTIONS(5140), - [anon_sym_DOT] = ACTIONS(5142), - [anon_sym_switch] = ACTIONS(5140), - [anon_sym_DOT_DOT] = ACTIONS(5140), - [anon_sym_and] = ACTIONS(5140), - [anon_sym_or] = ACTIONS(5142), - [anon_sym_AMP_AMP] = ACTIONS(5140), - [anon_sym_PIPE_PIPE] = ACTIONS(5140), - [anon_sym_QMARK_QMARK] = ACTIONS(5140), - [anon_sym_from] = ACTIONS(5140), - [anon_sym_into] = ACTIONS(5140), - [anon_sym_join] = ACTIONS(5140), - [anon_sym_let] = ACTIONS(5140), - [anon_sym_orderby] = ACTIONS(5140), - [anon_sym_ascending] = ACTIONS(5140), - [anon_sym_descending] = ACTIONS(5140), - [anon_sym_group] = ACTIONS(5140), - [anon_sym_select] = ACTIONS(5140), - [anon_sym_as] = ACTIONS(5142), - [anon_sym_is] = ACTIONS(5140), - [anon_sym_DASH_GT] = ACTIONS(5140), - [anon_sym_with] = ACTIONS(5140), + [sym__identifier_token] = ACTIONS(3789), + [anon_sym_alias] = ACTIONS(3791), + [anon_sym_global] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(6163), + [anon_sym_ref] = ACTIONS(3793), + [anon_sym_delegate] = ACTIONS(5758), + [anon_sym_file] = ACTIONS(3791), + [anon_sym_readonly] = ACTIONS(6267), + [anon_sym_where] = ACTIONS(3791), + [anon_sym_notnull] = ACTIONS(3791), + [anon_sym_unmanaged] = ACTIONS(3791), + [anon_sym_scoped] = ACTIONS(5760), + [anon_sym_var] = ACTIONS(5762), + [sym_predefined_type] = ACTIONS(5764), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_when] = ACTIONS(3791), + [anon_sym_from] = ACTIONS(3791), + [anon_sym_into] = ACTIONS(3791), + [anon_sym_join] = ACTIONS(3791), + [anon_sym_on] = ACTIONS(3791), + [anon_sym_equals] = ACTIONS(3791), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_orderby] = ACTIONS(3791), + [anon_sym_ascending] = ACTIONS(3791), + [anon_sym_descending] = ACTIONS(3791), + [anon_sym_group] = ACTIONS(3791), + [anon_sym_by] = ACTIONS(3791), + [anon_sym_select] = ACTIONS(3791), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538717,8 +538752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3938] = { - [sym_argument_list] = STATE(3931), - [sym_bracketed_argument_list] = STATE(2935), [sym_preproc_region] = STATE(3938), [sym_preproc_endregion] = STATE(3938), [sym_preproc_line] = STATE(3938), @@ -538728,50 +538761,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3938), [sym_preproc_define] = STATE(3938), [sym_preproc_undef] = STATE(3938), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5650), - [anon_sym_LT] = ACTIONS(5756), - [anon_sym_GT] = ACTIONS(5756), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(5688), - [anon_sym_PLUS_PLUS] = ACTIONS(5690), - [anon_sym_DASH_DASH] = ACTIONS(5690), - [anon_sym_PLUS] = ACTIONS(5756), - [anon_sym_DASH] = ACTIONS(5756), - [anon_sym_STAR] = ACTIONS(6079), - [anon_sym_SLASH] = ACTIONS(6081), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5756), - [anon_sym_AMP] = ACTIONS(5756), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5756), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_GT_EQ] = ACTIONS(5754), - [anon_sym_LT_EQ] = ACTIONS(5754), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_switch] = ACTIONS(5720), - [anon_sym_DOT_DOT] = ACTIONS(6083), - [anon_sym_AMP_AMP] = ACTIONS(5754), - [anon_sym_PIPE_PIPE] = ACTIONS(5754), - [anon_sym_QMARK_QMARK] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5756), - [anon_sym_is] = ACTIONS(5754), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_with] = ACTIONS(5734), + [sym__identifier_token] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym_alias] = ACTIONS(3494), + [anon_sym_global] = ACTIONS(3494), + [anon_sym_unsafe] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(6269), + [anon_sym_ref] = ACTIONS(3494), + [anon_sym_delegate] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_file] = ACTIONS(3494), + [anon_sym_fixed] = ACTIONS(3494), + [anon_sym_internal] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_partial] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_sealed] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_where] = ACTIONS(3494), + [anon_sym_notnull] = ACTIONS(3494), + [anon_sym_unmanaged] = ACTIONS(3494), + [anon_sym_scoped] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [sym_predefined_type] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_when] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_into] = ACTIONS(3494), + [anon_sym_join] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_equals] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_orderby] = ACTIONS(3494), + [anon_sym_ascending] = ACTIONS(3494), + [anon_sym_descending] = ACTIONS(3494), + [anon_sym_group] = ACTIONS(3494), + [anon_sym_by] = ACTIONS(3494), + [anon_sym_select] = ACTIONS(3494), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538793,52 +538828,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3939), [sym_preproc_define] = STATE(3939), [sym_preproc_undef] = STATE(3939), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5144), - [anon_sym_LPAREN] = ACTIONS(5144), - [anon_sym_LT] = ACTIONS(5146), - [anon_sym_GT] = ACTIONS(5146), - [anon_sym_where] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5146), - [anon_sym_BANG] = ACTIONS(5146), - [anon_sym_PLUS_PLUS] = ACTIONS(5144), - [anon_sym_DASH_DASH] = ACTIONS(5144), - [anon_sym_PLUS] = ACTIONS(5146), - [anon_sym_DASH] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5144), - [anon_sym_SLASH] = ACTIONS(5146), - [anon_sym_PERCENT] = ACTIONS(5144), - [anon_sym_CARET] = ACTIONS(5144), - [anon_sym_PIPE] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_LT_LT] = ACTIONS(5144), - [anon_sym_GT_GT] = ACTIONS(5146), - [anon_sym_GT_GT_GT] = ACTIONS(5144), - [anon_sym_EQ_EQ] = ACTIONS(5144), - [anon_sym_BANG_EQ] = ACTIONS(5144), - [anon_sym_GT_EQ] = ACTIONS(5144), - [anon_sym_LT_EQ] = ACTIONS(5144), - [anon_sym_DOT] = ACTIONS(5146), - [anon_sym_switch] = ACTIONS(5144), - [anon_sym_DOT_DOT] = ACTIONS(5144), - [anon_sym_and] = ACTIONS(5144), - [anon_sym_or] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5144), - [anon_sym_PIPE_PIPE] = ACTIONS(5144), - [anon_sym_QMARK_QMARK] = ACTIONS(5144), - [anon_sym_from] = ACTIONS(5144), - [anon_sym_into] = ACTIONS(5144), - [anon_sym_join] = ACTIONS(5144), - [anon_sym_let] = ACTIONS(5144), - [anon_sym_orderby] = ACTIONS(5144), - [anon_sym_ascending] = ACTIONS(5144), - [anon_sym_descending] = ACTIONS(5144), - [anon_sym_group] = ACTIONS(5144), - [anon_sym_select] = ACTIONS(5144), - [anon_sym_as] = ACTIONS(5146), - [anon_sym_is] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_with] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_GT_GT_GT] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_switch] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_QMARK_QMARK] = ACTIONS(5007), + [anon_sym_from] = ACTIONS(5007), + [anon_sym_into] = ACTIONS(5007), + [anon_sym_join] = ACTIONS(5007), + [anon_sym_let] = ACTIONS(5007), + [anon_sym_orderby] = ACTIONS(5007), + [anon_sym_ascending] = ACTIONS(5007), + [anon_sym_descending] = ACTIONS(5007), + [anon_sym_group] = ACTIONS(5007), + [anon_sym_select] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [anon_sym_with] = ACTIONS(5007), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538851,24 +538886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3940] = { - [sym__name] = STATE(6487), - [sym_alias_qualified_name] = STATE(4145), - [sym__simple_name] = STATE(4145), - [sym_qualified_name] = STATE(4145), - [sym_generic_name] = STATE(4151), - [sym_type] = STATE(4605), - [sym_implicit_type] = STATE(7128), - [sym_array_type] = STATE(6755), - [sym__array_base_type] = STATE(7322), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7618), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(7128), - [sym_scoped_type] = STATE(7128), - [sym_tuple_type] = STATE(6617), - [sym_identifier] = STATE(4107), - [sym__reserved_identifier] = STATE(3709), [sym_preproc_region] = STATE(3940), [sym_preproc_endregion] = STATE(3940), [sym_preproc_line] = STATE(3940), @@ -538878,34 +538895,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3940), [sym_preproc_define] = STATE(3940), [sym_preproc_undef] = STATE(3940), - [sym__identifier_token] = ACTIONS(2993), - [anon_sym_alias] = ACTIONS(2997), - [anon_sym_global] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_ref] = ACTIONS(5077), - [anon_sym_delegate] = ACTIONS(5079), - [anon_sym_file] = ACTIONS(2997), - [anon_sym_readonly] = ACTIONS(6269), - [anon_sym_where] = ACTIONS(2997), - [anon_sym_notnull] = ACTIONS(2997), - [anon_sym_unmanaged] = ACTIONS(2997), - [anon_sym_scoped] = ACTIONS(5085), - [anon_sym_var] = ACTIONS(4783), - [sym_predefined_type] = ACTIONS(5087), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_when] = ACTIONS(2997), - [anon_sym_from] = ACTIONS(2997), - [anon_sym_into] = ACTIONS(2997), - [anon_sym_join] = ACTIONS(2997), - [anon_sym_on] = ACTIONS(2997), - [anon_sym_equals] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_orderby] = ACTIONS(2997), - [anon_sym_ascending] = ACTIONS(2997), - [anon_sym_descending] = ACTIONS(2997), - [anon_sym_group] = ACTIONS(2997), - [anon_sym_by] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_where] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5447), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_from] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_join] = ACTIONS(5445), + [anon_sym_let] = ACTIONS(5445), + [anon_sym_orderby] = ACTIONS(5445), + [anon_sym_ascending] = ACTIONS(5445), + [anon_sym_descending] = ACTIONS(5445), + [anon_sym_group] = ACTIONS(5445), + [anon_sym_select] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5447), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -538941,50 +538976,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4084), 1, - anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5806), 1, - anon_sym_scoped, - ACTIONS(5808), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5810), 1, - sym_predefined_type, - ACTIONS(6207), 1, - anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, + anon_sym_scoped, + STATE(3728), 1, sym__reserved_identifier, - STATE(3197), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(3209), 1, + STATE(4414), 1, sym__name, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, + STATE(4530), 1, sym_array_type, - STATE(3393), 1, - sym_type, - STATE(7318), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7561), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, STATE(3941), 9, sym_preproc_region, sym_preproc_endregion, @@ -538995,7 +539030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539037,47 +539072,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4176), 1, - anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5881), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6141), 1, - anon_sym_LPAREN, - STATE(3208), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3221), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, + STATE(4360), 1, sym_tuple_type, - STATE(3329), 1, - sym_generic_name, - STATE(3448), 1, + STATE(4414), 1, sym__name, - STATE(3455), 1, - sym_type, - STATE(7133), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7417), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3295), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3296), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, @@ -539091,7 +539126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539141,39 +539176,39 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6259), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7415), 1, + STATE(6309), 1, + sym_identifier, + STATE(6336), 1, + sym__name, + STATE(6345), 1, sym_type, - STATE(7575), 1, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, @@ -539208,7 +539243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [381] = 17, + [381] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539229,14 +539264,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1503), 1, - anon_sym_LBRACE, - ACTIONS(4846), 1, - anon_sym_LPAREN, - STATE(2979), 1, - sym_argument_list, - STATE(3129), 1, - sym_initializer_expression, + ACTIONS(6271), 1, + anon_sym_and, + ACTIONS(6273), 1, + anon_sym_or, STATE(3944), 9, sym_preproc_region, sym_preproc_endregion, @@ -539247,7 +539278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4848), 12, + ACTIONS(6173), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -539259,9 +539290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(4844), 29, + anon_sym_as, + ACTIONS(6171), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -539276,7 +539309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -539284,13 +539316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_join, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [480] = 31, + [476] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539311,50 +539344,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4182), 1, - anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5810), 1, - sym_predefined_type, - ACTIONS(5907), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6207), 1, - anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3197), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(3209), 1, + STATE(4414), 1, sym__name, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, + STATE(4530), 1, sym_array_type, - STATE(3393), 1, - sym_type, - STATE(7318), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7380), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, STATE(3945), 9, sym_preproc_region, sym_preproc_endregion, @@ -539365,7 +539398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539386,7 +539419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [607] = 31, + [603] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539411,43 +539444,43 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(3023), 1, - anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5623), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(5627), 1, + ACTIONS(6255), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7394), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, @@ -539482,7 +539515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [734] = 31, + [730] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539503,50 +539536,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3612), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(3682), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(2187), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7388), 1, - sym_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, + STATE(2340), 1, sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(2342), 1, + sym__scoped_base_type, + STATE(5781), 1, + sym_identifier, + STATE(5907), 1, + sym__name, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, + ACTIONS(3461), 4, + anon_sym_COLON, + sym_discard, + anon_sym_and, + anon_sym_or, + ACTIONS(3459), 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, STATE(3947), 9, sym_preproc_region, sym_preproc_endregion, @@ -539557,13 +539580,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3615), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -539578,7 +539603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [861] = 31, + [841] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539599,50 +539624,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4180), 1, - anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5810), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5887), 1, + ACTIONS(4267), 1, + anon_sym_ref, + ACTIONS(5858), 1, anon_sym_scoped, - ACTIONS(6207), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(3197), 1, + STATE(2988), 1, + sym_identifier, + STATE(3088), 1, + sym_array_type, + STATE(3093), 1, sym_tuple_type, - STATE(3209), 1, - sym__name, - STATE(3253), 1, + STATE(3102), 1, sym_generic_name, - STATE(3262), 1, - sym_array_type, - STATE(3393), 1, + STATE(3131), 1, + sym__name, + STATE(3134), 1, sym_type, - STATE(7318), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3245), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, + STATE(3090), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, STATE(3948), 9, sym_preproc_region, sym_preproc_endregion, @@ -539653,7 +539678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539674,7 +539699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [988] = 31, + [968] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539699,43 +539724,43 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, + ACTIONS(3021), 1, + anon_sym_scoped, + ACTIONS(3023), 1, + anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, + ACTIONS(3466), 1, + anon_sym_ref, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, - anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7392), 1, - sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, @@ -539770,7 +539795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1115] = 31, + [1095] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539791,50 +539816,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4231), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(5778), 1, + anon_sym_delegate, + ACTIONS(5782), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5784), 1, + sym_predefined_type, + ACTIONS(5864), 1, + anon_sym_scoped, + ACTIONS(6121), 1, + anon_sym_LPAREN, + STATE(2952), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(2964), 1, sym_generic_name, - STATE(4362), 1, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3020), 1, + sym_type, + STATE(3787), 1, + sym_identifier, + STATE(4107), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7393), 1, - sym_type, - STATE(7575), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(3950), 9, sym_preproc_region, sym_preproc_endregion, @@ -539845,7 +539870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539866,7 +539891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1242] = 31, + [1222] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539887,47 +539912,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4106), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4110), 1, - anon_sym_ref, - ACTIONS(5836), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3021), 1, anon_sym_scoped, - ACTIONS(5838), 1, + ACTIONS(3023), 1, anon_sym_var, - ACTIONS(5840), 1, + ACTIONS(3025), 1, sym_predefined_type, - ACTIONS(6093), 1, - anon_sym_LPAREN, - STATE(2329), 1, - sym_type, - STATE(2376), 1, - sym_identifier, - STATE(2378), 1, + ACTIONS(3466), 1, + anon_sym_ref, + ACTIONS(3468), 1, + anon_sym_delegate, + STATE(3728), 1, sym__reserved_identifier, - STATE(2420), 1, - sym_array_type, - STATE(2422), 1, - sym_tuple_type, - STATE(2424), 1, + STATE(4135), 1, sym_generic_name, - STATE(2456), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7167), 1, + STATE(4530), 1, + sym_array_type, + STATE(5841), 1, + sym_identifier, + STATE(6180), 1, + sym_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2417), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2421), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, @@ -539941,7 +539966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539962,7 +539987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1369] = 31, + [1349] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539983,51 +540008,390 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5868), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5866), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(3952), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [1496] = 41, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5872), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(3953), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [1643] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4217), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(5788), 1, + anon_sym_scoped, + ACTIONS(6085), 1, + anon_sym_LPAREN, + STATE(3192), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(3194), 1, sym_identifier, - STATE(4151), 1, + STATE(3347), 1, sym_generic_name, - STATE(4362), 1, + STATE(3355), 1, + sym_array_type, + STATE(3366), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3428), 1, + sym_type, + STATE(3482), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(7583), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3952), 9, + STATE(3954), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3800), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [1770] = 41, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5240), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5238), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(3955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540037,28 +540401,113 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + [1917] = 41, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5876), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 9, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_and, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [1496] = 31, + STATE(3956), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [2064] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540079,51 +540528,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4253), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(5778), 1, + anon_sym_delegate, + ACTIONS(5782), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5784), 1, + sym_predefined_type, + ACTIONS(5786), 1, + anon_sym_scoped, + ACTIONS(6121), 1, + anon_sym_LPAREN, + STATE(2952), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(2964), 1, sym_generic_name, - STATE(4362), 1, + STATE(2968), 1, + sym_type, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3270), 1, + sym_identifier, + STATE(3584), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(7680), 1, - sym_type, - STATE(2366), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3953), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540133,7 +540582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540154,7 +540603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1623] = 31, + [2191] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540175,51 +540624,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(3873), 1, + anon_sym_ref, + ACTIONS(5778), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(5782), 1, anon_sym_var, - ACTIONS(4072), 1, + ACTIONS(5784), 1, sym_predefined_type, - ACTIONS(4263), 1, - anon_sym_ref, - ACTIONS(5781), 1, + ACTIONS(5882), 1, anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(6121), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(2952), 1, sym__reserved_identifier, - STATE(3040), 1, + STATE(2964), 1, + sym_generic_name, + STATE(2968), 1, + sym_type, + STATE(2979), 1, sym_array_type, - STATE(3042), 1, + STATE(2987), 1, sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3138), 1, + STATE(3270), 1, + sym_identifier, + STATE(3584), 1, sym__name, - STATE(3142), 1, - sym_type, - STATE(7165), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3954), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540229,7 +540678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540250,7 +540699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1750] = 31, + [2318] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540271,51 +540720,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, - anon_sym_ref, - ACTIONS(6263), 1, - anon_sym_scoped, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7641), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3955), 9, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(3959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540325,28 +540785,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5682), 13, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_CARET, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [1877] = 14, + [2453] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540367,65 +540820,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6271), 1, - anon_sym_into, - STATE(3956), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5880), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, anon_sym_PIPE, + ACTIONS(6289), 1, anon_sym_AMP, + ACTIONS(6293), 1, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6046), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5878), 9, + anon_sym_where, + anon_sym_and, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [1970] = 31, + STATE(3960), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [2600] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540446,51 +540926,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, - sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4070), 1, - anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4255), 1, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(4140), 1, anon_sym_ref, - ACTIONS(5923), 1, + ACTIONS(5898), 1, anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(5900), 1, + anon_sym_var, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(6187), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(2374), 1, sym__reserved_identifier, - STATE(3040), 1, + STATE(2382), 1, + sym_identifier, + STATE(2398), 1, sym_array_type, - STATE(3042), 1, + STATE(2413), 1, sym_tuple_type, - STATE(3046), 1, + STATE(2418), 1, sym_generic_name, - STATE(3138), 1, + STATE(2450), 1, sym__name, - STATE(3142), 1, + STATE(3868), 1, sym_type, - STATE(7165), 1, + STATE(7243), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(2411), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3957), 9, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540500,7 +540980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(4098), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540521,7 +541001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2097] = 15, + [2727] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540542,66 +541022,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_into, - STATE(3956), 1, - aux_sym__query_body_repeat2, - STATE(3958), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6055), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5888), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, anon_sym_PIPE, + ACTIONS(6289), 1, anon_sym_AMP, + ACTIONS(6293), 1, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6053), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5886), 9, + anon_sym_where, + anon_sym_and, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [2192] = 31, + STATE(3962), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [2874] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540622,51 +541128,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3650), 1, - anon_sym_ref, - ACTIONS(6063), 1, - sym__identifier_token, - ACTIONS(6067), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(6069), 1, - anon_sym_delegate, - ACTIONS(6071), 1, - anon_sym_scoped, - ACTIONS(6073), 1, - anon_sym_var, - ACTIONS(6075), 1, - sym_predefined_type, - STATE(2612), 1, - sym_identifier, - STATE(2650), 1, - sym__reserved_identifier, - STATE(2790), 1, - sym_generic_name, - STATE(2802), 1, - sym_type, - STATE(2810), 1, - sym_array_type, - STATE(2832), 1, - sym_tuple_type, - STATE(2865), 1, - sym__name, - STATE(7272), 1, - sym__array_base_type, - STATE(7745), 1, - sym__pointer_base_type, - STATE(2688), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2828), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2831), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3959), 9, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5810), 1, + anon_sym_or, + ACTIONS(6277), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6285), 1, + anon_sym_CARET, + ACTIONS(6287), 1, + anon_sym_PIPE, + ACTIONS(6289), 1, + anon_sym_AMP, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6303), 1, + anon_sym_AMP_AMP, + ACTIONS(6305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(3963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540676,28 +541213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6065), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [2319] = 41, + [3021] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540718,82 +541234,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6288), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, anon_sym_is, - STATE(2935), 1, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6310), 2, - anon_sym_ascending, - anon_sym_descending, - ACTIONS(6276), 8, - anon_sym_COMMA, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3960), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(3964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540803,7 +541301,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [2466] = 31, + ACTIONS(5682), 12, + anon_sym_where, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [3158] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540824,51 +541335,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(3802), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5714), 1, anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(5716), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(6085), 1, + anon_sym_LPAREN, + STATE(3192), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(3194), 1, sym_identifier, - STATE(4151), 1, + STATE(3347), 1, sym_generic_name, - STATE(4362), 1, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, + sym_type, + STATE(3366), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3482), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(7748), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3961), 9, + STATE(3965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540878,7 +541389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540899,7 +541410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2593] = 31, + [3285] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540920,51 +541431,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, - sym__identifier_token, - ACTIONS(4114), 1, - anon_sym_ref, - ACTIONS(5746), 1, - anon_sym_delegate, - ACTIONS(5750), 1, - anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5903), 1, - anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - STATE(3208), 1, - sym__reserved_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3308), 1, - sym_type, - STATE(3329), 1, - sym_generic_name, - STATE(4593), 1, - sym_identifier, - STATE(5236), 1, - sym__name, - STATE(7133), 1, - sym__array_base_type, - STATE(7411), 1, - sym__pointer_base_type, - STATE(3295), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3296), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3298), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3962), 9, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(3966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540974,28 +541495,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5682), 13, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_CARET, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [2720] = 31, + [3418] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541016,51 +541530,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(3618), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6283), 1, + anon_sym_SLASH, + ACTIONS(6293), 1, + anon_sym_GT_GT, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, + anon_sym_DOT_DOT, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, + anon_sym_is, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6281), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6291), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(3967), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 15, + anon_sym_where, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [3549] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4194), 1, anon_sym_ref, - ACTIONS(4783), 1, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(5765), 1, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(5768), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + ACTIONS(6085), 1, + anon_sym_LPAREN, + STATE(3192), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(3194), 1, sym_identifier, - STATE(4151), 1, + STATE(3347), 1, sym_generic_name, - STATE(4362), 1, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, + sym_type, + STATE(3366), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3482), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3963), 9, + STATE(3968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541070,7 +541682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541091,7 +541703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2847] = 41, + [3676] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541112,82 +541724,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5722), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6324), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6326), 1, + ACTIONS(6287), 1, anon_sym_PIPE, - ACTIONS(6328), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6350), 1, + ACTIONS(6311), 1, anon_sym_is, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6314), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6318), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6334), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3964), 9, + STATE(3969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541197,7 +541792,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [2994] = 41, + ACTIONS(5682), 12, + anon_sym_where, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [3815] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541218,74 +541826,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5738), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6324), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6326), 1, + ACTIONS(6287), 1, anon_sym_PIPE, - ACTIONS(6328), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6342), 1, + ACTIONS(6303), 1, anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6350), 1, + ACTIONS(6311), 1, anon_sym_is, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6314), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6318), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6334), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 9, + STATE(3970), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 11, anon_sym_where, anon_sym_and, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, @@ -541293,7 +541908,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(3965), 9, + [3956] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4217), 1, + anon_sym_ref, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, + anon_sym_var, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(5788), 1, + anon_sym_scoped, + ACTIONS(6085), 1, + anon_sym_LPAREN, + STATE(3192), 1, + sym__reserved_identifier, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, + sym_type, + STATE(3366), 1, + sym_tuple_type, + STATE(3482), 1, + sym__name, + STATE(7263), 1, + sym__array_base_type, + STATE(7576), 1, + sym__pointer_base_type, + STATE(3339), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541303,7 +541983,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [3141] = 41, + ACTIONS(3800), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [4083] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541324,72 +542025,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5911), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6324), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6326), 1, + ACTIONS(6287), 1, anon_sym_PIPE, - ACTIONS(6328), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6342), 1, + ACTIONS(6303), 1, anon_sym_AMP_AMP, - ACTIONS(6344), 1, + ACTIONS(6305), 1, anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, + ACTIONS(6307), 1, anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6350), 1, + ACTIONS(6311), 1, anon_sym_is, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6314), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6318), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6334), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 9, + ACTIONS(5682), 9, anon_sym_where, anon_sym_and, anon_sym_from, @@ -541399,7 +542099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(3966), 9, + STATE(3972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541409,7 +542109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [3288] = 31, + [4228] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541430,51 +542130,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(4259), 1, + ACTIONS(4255), 1, anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(5778), 1, anon_sym_delegate, - ACTIONS(5824), 1, - anon_sym_scoped, - ACTIONS(5826), 1, + ACTIONS(5782), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(5784), 1, sym_predefined_type, - ACTIONS(6145), 1, + ACTIONS(5928), 1, + anon_sym_scoped, + ACTIONS(6121), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2952), 1, sym__reserved_identifier, - STATE(2959), 1, - sym_type, - STATE(2986), 1, + STATE(2964), 1, + sym_generic_name, + STATE(2979), 1, sym_array_type, - STATE(2988), 1, + STATE(2987), 1, sym_tuple_type, - STATE(2990), 1, - sym_generic_name, - STATE(3300), 1, + STATE(3020), 1, + sym_type, + STATE(3270), 1, sym_identifier, - STATE(3575), 1, + STATE(3584), 1, sym__name, - STATE(7188), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(2984), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2985), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3967), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541484,7 +542184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541505,7 +542205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [3415] = 31, + [4355] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541530,47 +542230,199 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(4783), 1, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(5077), 1, + ACTIONS(6213), 1, anon_sym_ref, - ACTIONS(5079), 1, - anon_sym_delegate, - ACTIONS(5085), 1, + ACTIONS(6217), 1, anon_sym_scoped, - ACTIONS(5087), 1, - sym_predefined_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(6487), 1, - sym__name, - STATE(6617), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(6755), 1, + STATE(4414), 1, + sym__name, + STATE(4530), 1, sym_array_type, - STATE(7301), 1, + STATE(6440), 1, sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7618), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(4145), 3, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(7128), 3, + STATE(3974), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [4482] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, + anon_sym_scoped, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, + sym__name, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(7771), 1, + sym_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3968), 9, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3975), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [4609] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6271), 1, + anon_sym_and, + ACTIONS(6273), 1, + anon_sym_or, + STATE(3976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541580,28 +542432,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5482), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_as, + ACTIONS(5480), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [3542] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [4704] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541622,51 +542498,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4081), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(5834), 1, + anon_sym_scoped, + ACTIONS(6085), 1, + anon_sym_LPAREN, + STATE(3192), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(3194), 1, sym_identifier, - STATE(4151), 1, + STATE(3347), 1, sym_generic_name, - STATE(4362), 1, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, + sym_type, + STATE(3366), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3482), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7524), 1, - sym_type, - STATE(7575), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3969), 9, + STATE(3977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541676,7 +542552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541697,7 +542573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [3669] = 31, + [4831] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541718,51 +542594,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, - sym__identifier_token, - ACTIONS(4066), 1, - anon_sym_delegate, - ACTIONS(4070), 1, - anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4245), 1, - anon_sym_ref, - ACTIONS(5927), 1, - anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, - sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3138), 1, - sym__name, - STATE(3142), 1, - sym_type, - STATE(7165), 1, - sym__array_base_type, - STATE(7614), 1, - sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3041), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3970), 9, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541772,28 +542667,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5870), 10, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [3796] = 31, + [4976] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541814,51 +542699,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(5077), 1, - anon_sym_ref, - ACTIONS(5079), 1, - anon_sym_delegate, - ACTIONS(5085), 1, - anon_sym_scoped, - ACTIONS(5087), 1, - sym_predefined_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(6487), 1, - sym__name, - STATE(6617), 1, - sym_tuple_type, - STATE(6755), 1, - sym_array_type, - STATE(7224), 1, - sym_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7618), 1, - sym__pointer_base_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(7128), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3971), 9, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541868,28 +542772,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5238), 10, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [3923] = 31, + [5121] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541910,51 +542804,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4039), 1, + ACTIONS(4223), 1, anon_sym_ref, - ACTIONS(5848), 1, + ACTIONS(5712), 1, anon_sym_delegate, - ACTIONS(5850), 1, - anon_sym_scoped, - ACTIONS(5852), 1, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(5854), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(6097), 1, + ACTIONS(5792), 1, + anon_sym_scoped, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(4290), 1, - sym_identifier, - STATE(4343), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(4447), 1, - sym__name, - STATE(4497), 1, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, sym_generic_name, - STATE(4508), 1, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, sym_type, - STATE(4513), 1, + STATE(3366), 1, sym_tuple_type, - STATE(4523), 1, - sym_array_type, - STATE(7343), 1, + STATE(3482), 1, + sym__name, + STATE(7263), 1, sym__array_base_type, - STATE(7426), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(4446), 3, + STATE(3339), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3344), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4453), 3, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4481), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3972), 9, + STATE(3980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541964,7 +542858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4037), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541985,7 +542879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4050] = 23, + [5248] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542006,41 +542900,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(3678), 1, + ACTIONS(3873), 1, anon_sym_ref, - STATE(2182), 1, + ACTIONS(5778), 1, + anon_sym_delegate, + ACTIONS(5782), 1, + anon_sym_var, + ACTIONS(5784), 1, + sym_predefined_type, + ACTIONS(5882), 1, + anon_sym_scoped, + ACTIONS(6121), 1, + anon_sym_LPAREN, + STATE(2952), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2964), 1, sym_generic_name, - STATE(2340), 1, - sym_ref_type, - STATE(2343), 1, - sym__scoped_base_type, - STATE(5783), 1, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, + sym_tuple_type, + STATE(3020), 1, + sym_type, + STATE(3270), 1, sym_identifier, - STATE(5897), 1, + STATE(3584), 1, sym__name, - STATE(4145), 3, + STATE(7132), 1, + sym__array_base_type, + STATE(7662), 1, + sym__pointer_base_type, + STATE(2966), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2983), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2992), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(3461), 4, - anon_sym_COLON, - sym_discard, - anon_sym_and, - anon_sym_or, - ACTIONS(3459), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(3973), 9, + STATE(3981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542050,15 +542954,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3615), 22, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -542073,7 +542975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4161] = 31, + [5375] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542094,51 +542996,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(3610), 1, - anon_sym_ref, - ACTIONS(4106), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(5838), 1, + ACTIONS(4070), 1, + anon_sym_delegate, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5840), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(6093), 1, - anon_sym_LPAREN, - ACTIONS(6179), 1, + ACTIONS(4208), 1, + anon_sym_ref, + ACTIONS(5912), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(2376), 1, - sym_identifier, - STATE(2378), 1, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(2980), 1, sym__reserved_identifier, - STATE(2420), 1, + STATE(2988), 1, + sym_identifier, + STATE(3088), 1, sym_array_type, - STATE(2422), 1, + STATE(3093), 1, sym_tuple_type, - STATE(2424), 1, + STATE(3102), 1, sym_generic_name, - STATE(2456), 1, + STATE(3131), 1, sym__name, - STATE(7167), 1, + STATE(3134), 1, + sym_type, + STATE(7190), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2417), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2421), 3, + STATE(3082), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3974), 9, + STATE(3982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542148,7 +543050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542169,7 +543071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4288] = 31, + [5502] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542194,47 +543096,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(3021), 1, - anon_sym_scoped, - ACTIONS(3023), 1, - anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, - ACTIONS(3466), 1, - anon_sym_ref, ACTIONS(3468), 1, anon_sym_delegate, - STATE(3709), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, + anon_sym_scoped, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(5832), 1, - sym_identifier, - STATE(6185), 1, - sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3975), 9, + STATE(3983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542265,7 +543167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4415] = 15, + [5629] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542286,14 +543188,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3461), 2, - anon_sym_EQ, - anon_sym_in, - ACTIONS(3628), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_GT, - STATE(3976), 9, + ACTIONS(6349), 1, + anon_sym_into, + STATE(4085), 1, + aux_sym__query_body_repeat2, + STATE(3984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542303,49 +543202,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3459), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6016), 12, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - ACTIONS(3631), 29, - anon_sym_alias, - anon_sym_global, - anon_sym_COLON, - anon_sym_file, + anon_sym_as, + ACTIONS(6014), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - sym__identifier_token, - [4510] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [5724] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542366,51 +543268,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(4162), 1, + anon_sym_ref, + ACTIONS(5712), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(4072), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(4255), 1, - anon_sym_ref, - ACTIONS(5923), 1, + ACTIONS(5743), 1, anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(3040), 1, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, sym_array_type, - STATE(3042), 1, + STATE(3366), 1, sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3047), 1, + STATE(3428), 1, sym_type, - STATE(3138), 1, + STATE(4595), 1, + sym_identifier, + STATE(5187), 1, sym__name, - STATE(7165), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(3038), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3039), 3, + STATE(3344), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3977), 9, + STATE(3985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542420,7 +543322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542441,7 +543343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [4637] = 31, + [5851] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542462,51 +543364,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4106), 1, - sym__identifier_token, - ACTIONS(4110), 1, - anon_sym_ref, - ACTIONS(5836), 1, - anon_sym_scoped, - ACTIONS(5838), 1, - anon_sym_var, - ACTIONS(5840), 1, - sym_predefined_type, - ACTIONS(6093), 1, - anon_sym_LPAREN, - STATE(2376), 1, - sym_identifier, - STATE(2378), 1, - sym__reserved_identifier, - STATE(2420), 1, - sym_array_type, - STATE(2422), 1, - sym_tuple_type, - STATE(2424), 1, - sym_generic_name, - STATE(2456), 1, - sym__name, - STATE(3745), 1, - sym_type, - STATE(7167), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2417), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2421), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3978), 9, + ACTIONS(6349), 1, + anon_sym_into, + STATE(3984), 1, + aux_sym__query_body_repeat2, + STATE(3986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542516,28 +543378,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(6010), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_as, + ACTIONS(6008), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [4764] = 40, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [5946] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542558,70 +543444,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, + ACTIONS(4009), 1, + sym__identifier_token, + ACTIONS(4013), 1, + anon_sym_ref, + ACTIONS(5732), 1, + anon_sym_delegate, ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, - anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, - anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, - sym_bracketed_argument_list, - STATE(3931), 1, - sym_argument_list, - ACTIONS(5690), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6278), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6300), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3979), 9, + anon_sym_scoped, + ACTIONS(5736), 1, + anon_sym_var, + ACTIONS(5738), 1, + sym_predefined_type, + ACTIONS(6093), 1, + anon_sym_LPAREN, + STATE(4293), 1, + sym_identifier, + STATE(4388), 1, + sym__reserved_identifier, + STATE(4419), 1, + sym_generic_name, + STATE(4484), 1, + sym_array_type, + STATE(4497), 1, + sym__name, + STATE(4520), 1, + sym_tuple_type, + STATE(4656), 1, + sym_type, + STATE(7286), 1, + sym__array_base_type, + STATE(7680), 1, + sym__pointer_base_type, + STATE(4398), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4407), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4519), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542631,18 +543498,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5783), 10, - anon_sym_COMMA, + ACTIONS(4011), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [4909] = 31, + [6073] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542663,51 +543540,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4261), 1, - anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5866), 1, + ACTIONS(4265), 1, + anon_sym_ref, + ACTIONS(5826), 1, anon_sym_scoped, - ACTIONS(6145), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2959), 1, - sym_type, - STATE(2986), 1, - sym_array_type, STATE(2988), 1, + sym_identifier, + STATE(3088), 1, + sym_array_type, + STATE(3093), 1, sym_tuple_type, - STATE(2990), 1, + STATE(3102), 1, sym_generic_name, - STATE(3300), 1, - sym_identifier, - STATE(3575), 1, + STATE(3131), 1, sym__name, - STATE(7188), 1, + STATE(3134), 1, + sym_type, + STATE(7190), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2984), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2985), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3980), 9, + STATE(3988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542717,7 +543594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542738,7 +543615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5036] = 31, + [6200] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542767,43 +543644,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6213), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6217), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(7697), 1, - sym_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3981), 9, + STATE(3989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542834,7 +543711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5163] = 40, + [6327] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542856,81 +543733,61 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, - anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + STATE(3990), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1231), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_as, + ACTIONS(1229), 25, + anon_sym_COMMA, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3982), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5769), 10, - anon_sym_COMMA, - anon_sym_where, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, @@ -542939,7 +543796,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [5308] = 31, + anon_sym_is, + anon_sym_with, + [6436] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542960,51 +543819,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, - sym__identifier_token, - ACTIONS(3793), 1, - anon_sym_ref, - ACTIONS(5804), 1, - anon_sym_delegate, - ACTIONS(5808), 1, - anon_sym_var, - ACTIONS(5810), 1, - sym_predefined_type, - ACTIONS(5933), 1, - anon_sym_scoped, - ACTIONS(6207), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, - sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, - sym__name, - STATE(3231), 1, - sym_type, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, - sym_array_type, - STATE(7318), 1, - sym__array_base_type, - STATE(7749), 1, - sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3983), 9, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543014,28 +543892,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5874), 10, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [5435] = 31, + [6581] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543064,43 +543932,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7698), 1, + STATE(7712), 1, sym_type, - STATE(2366), 3, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3984), 9, + STATE(3992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543131,7 +543999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5562] = 31, + [6708] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543152,51 +544020,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4106), 1, - sym__identifier_token, - ACTIONS(4112), 1, - anon_sym_ref, - ACTIONS(5838), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5840), 1, - sym_predefined_type, - ACTIONS(5935), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6093), 1, - anon_sym_LPAREN, - STATE(2376), 1, - sym_identifier, - STATE(2378), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(2420), 1, - sym_array_type, - STATE(2422), 1, - sym_tuple_type, - STATE(2424), 1, + STATE(4135), 1, sym_generic_name, - STATE(2456), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(3745), 1, - sym_type, - STATE(7167), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7345), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2417), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2421), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3985), 9, + STATE(3993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543206,7 +544074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543227,7 +544095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5689] = 31, + [6835] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543248,51 +544116,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4079), 1, - anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5752), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5901), 1, + ACTIONS(4259), 1, + anon_sym_ref, + ACTIONS(5945), 1, anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(3208), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(3221), 1, + STATE(2988), 1, sym_identifier, - STATE(3297), 1, + STATE(3062), 1, + sym_type, + STATE(3088), 1, sym_array_type, - STATE(3299), 1, + STATE(3093), 1, sym_tuple_type, - STATE(3329), 1, + STATE(3102), 1, sym_generic_name, - STATE(3448), 1, + STATE(3131), 1, sym__name, - STATE(3455), 1, - sym_type, - STATE(7133), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3986), 9, + STATE(3994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543302,7 +544170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543323,7 +544191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5816] = 31, + [6962] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543344,51 +544212,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(3846), 1, + ACTIONS(4060), 1, anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5919), 1, + ACTIONS(5890), 1, anon_sym_scoped, - ACTIONS(6145), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2986), 1, + STATE(3088), 1, sym_array_type, - STATE(2988), 1, + STATE(3093), 1, sym_tuple_type, - STATE(2990), 1, + STATE(3102), 1, sym_generic_name, - STATE(3036), 1, + STATE(3134), 1, sym_type, - STATE(3300), 1, + STATE(4435), 1, sym_identifier, - STATE(3575), 1, + STATE(4951), 1, sym__name, - STATE(7188), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2984), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2985), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3987), 9, + STATE(3995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543398,7 +544266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543419,7 +544287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5943] = 31, + [7089] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543440,147 +544308,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, - anon_sym_ref, - ACTIONS(6263), 1, - anon_sym_scoped, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7451), 1, - sym_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3988), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(6349), 1, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [6070] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, - anon_sym_ref, - ACTIONS(6263), 1, - anon_sym_scoped, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7769), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3989), 9, + STATE(4087), 1, + aux_sym__query_body_repeat2, + STATE(3996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543590,28 +544322,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(6016), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_as, + ACTIONS(6014), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [6197] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [7184] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543640,43 +544396,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7702), 1, + STATE(7435), 1, sym_type, - STATE(2366), 3, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3990), 9, + STATE(3997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543707,7 +544463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6324] = 31, + [7311] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543728,51 +544484,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(4009), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, + ACTIONS(4046), 1, + anon_sym_ref, + ACTIONS(5732), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(5736), 1, anon_sym_var, - ACTIONS(5551), 1, - anon_sym_ref, - ACTIONS(5559), 1, + ACTIONS(5738), 1, + sym_predefined_type, + ACTIONS(5918), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN, + STATE(4293), 1, sym_identifier, - STATE(4151), 1, + STATE(4388), 1, + sym__reserved_identifier, + STATE(4419), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, + STATE(4484), 1, sym_array_type, - STATE(7322), 1, + STATE(4497), 1, + sym__name, + STATE(4520), 1, + sym_tuple_type, + STATE(4656), 1, + sym_type, + STATE(7286), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7680), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(4398), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4407), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4519), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3991), 9, + STATE(3998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543782,7 +544538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(4011), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543803,7 +544559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6451] = 31, + [7438] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543824,51 +544580,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4232), 1, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(5899), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6197), 1, - anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, + STATE(4135), 1, sym_generic_name, - STATE(3047), 1, - sym_type, - STATE(3138), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7165), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7440), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3992), 9, + STATE(3999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543878,7 +544634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543899,7 +544655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6578] = 41, + [7565] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543920,82 +544676,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5771), 1, - anon_sym_or, - ACTIONS(6316), 1, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, anon_sym_QMARK, - ACTIONS(6322), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6324), 1, + ACTIONS(6325), 1, anon_sym_CARET, - ACTIONS(6326), 1, + ACTIONS(6327), 1, anon_sym_PIPE, - ACTIONS(6328), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6342), 1, + ACTIONS(6341), 1, anon_sym_AMP_AMP, - ACTIONS(6344), 1, + ACTIONS(6343), 1, anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, + ACTIONS(6345), 1, anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, + ACTIONS(6347), 1, anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6314), 2, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6318), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6334), 2, + ACTIONS(6335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 2, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3993), 9, + STATE(4000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544005,7 +544749,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [6725] = 31, + ACTIONS(5794), 10, + anon_sym_COMMA, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_select, + [7710] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544034,43 +544789,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(6213), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(6217), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(6511), 1, + STATE(6521), 1, sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3994), 9, + STATE(4001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544101,7 +544856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6852] = 31, + [7837] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544130,43 +544885,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5551), 1, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(5559), 1, + ACTIONS(6255), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(6408), 1, - sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7439), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3995), 9, + STATE(4002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544197,7 +544952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6979] = 41, + [7964] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544218,82 +544973,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3789), 1, + sym__identifier_token, + ACTIONS(4237), 1, + anon_sym_ref, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(5828), 1, + anon_sym_scoped, + ACTIONS(6163), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5779), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3996), 9, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3195), 1, + sym_type, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7595), 1, + sym__pointer_base_type, + STATE(3204), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544303,7 +545027,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [7126] = 41, + ACTIONS(3791), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [8091] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544324,82 +545069,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3789), 1, + sym__identifier_token, + ACTIONS(3793), 1, + anon_sym_ref, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5760), 1, + anon_sym_scoped, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(6163), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5174), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5172), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3997), 9, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(3362), 1, + sym_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7595), 1, + sym__pointer_base_type, + STATE(3204), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544409,7 +545123,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [7273] = 41, + ACTIONS(3791), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [8218] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544430,92 +545165,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5785), 1, - anon_sym_or, - ACTIONS(6316), 1, + ACTIONS(6351), 1, + anon_sym_into, + STATE(4062), 1, + aux_sym__query_body_repeat2, + STATE(4005), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6322), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, anon_sym_PIPE, - ACTIONS(6328), 1, anon_sym_AMP, - ACTIONS(6332), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(6008), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 9, - anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(3998), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [7420] = 31, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [8313] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544536,51 +545245,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4174), 1, - anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5868), 1, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, anon_sym_scoped, - ACTIONS(6141), 1, - anon_sym_LPAREN, - STATE(3208), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3221), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, + STATE(4360), 1, sym_tuple_type, - STATE(3308), 1, - sym_type, - STATE(3329), 1, - sym_generic_name, - STATE(3448), 1, + STATE(4414), 1, sym__name, - STATE(7133), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7565), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3295), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3296), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3999), 9, + STATE(4006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544590,7 +545299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544611,7 +545320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7547] = 31, + [8440] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544632,51 +545341,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4257), 1, - anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5828), 1, - sym_predefined_type, - ACTIONS(5947), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(2934), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(2986), 1, - sym_array_type, - STATE(2988), 1, - sym_tuple_type, - STATE(2990), 1, + STATE(4135), 1, sym_generic_name, - STATE(3036), 1, - sym_type, - STATE(3300), 1, + STATE(4144), 1, sym_identifier, - STATE(3575), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7188), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7445), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2984), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2985), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4000), 9, + STATE(4007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544686,7 +545395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544707,7 +545416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7674] = 35, + [8567] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544728,62 +545437,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(3620), 1, + anon_sym_ref, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(5900), 1, + anon_sym_var, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(6187), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4001), 9, + ACTIONS(6227), 1, + anon_sym_scoped, + STATE(2349), 1, + sym_type, + STATE(2374), 1, + sym__reserved_identifier, + STATE(2398), 1, + sym_array_type, + STATE(2413), 1, + sym_tuple_type, + STATE(2418), 1, + sym_generic_name, + STATE(2576), 1, + sym_identifier, + STATE(2635), 1, + sym__name, + STATE(7243), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2411), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544793,21 +545491,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(4098), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_CARET, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [7809] = 36, + [8694] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544828,64 +545533,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4002), 9, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, + anon_sym_scoped, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, + sym__name, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7446), 1, + sym_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544895,20 +545587,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [7946] = 14, + [8821] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544929,9 +545629,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6354), 1, - anon_sym_and, - STATE(4003), 9, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6259), 1, + anon_sym_ref, + ACTIONS(6263), 1, + anon_sym_scoped, + ACTIONS(6265), 1, + anon_sym_var, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4360), 1, + sym_tuple_type, + STATE(4530), 1, + sym_array_type, + STATE(6309), 1, + sym_identifier, + STATE(6336), 1, + sym__name, + STATE(6393), 1, + sym_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544941,53 +545683,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 13, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - anon_sym_as, - ACTIONS(6201), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [8039] = 34, + [8948] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545008,61 +545725,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3789), 1, + sym__identifier_token, + ACTIONS(4237), 1, + anon_sym_ref, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(5828), 1, + anon_sym_scoped, + ACTIONS(6163), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4004), 9, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(3362), 1, + sym_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7595), 1, + sym__pointer_base_type, + STATE(3204), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545072,21 +545779,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(3791), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_CARET, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [8172] = 33, + [9075] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545107,58 +545821,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3891), 1, + sym__identifier_token, + ACTIONS(4070), 1, + anon_sym_delegate, + ACTIONS(4074), 1, + anon_sym_var, + ACTIONS(4076), 1, + sym_predefined_type, + ACTIONS(4208), 1, + anon_sym_ref, + ACTIONS(5912), 1, + anon_sym_scoped, + ACTIONS(6063), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4005), 9, + STATE(2980), 1, + sym__reserved_identifier, + STATE(2988), 1, + sym_identifier, + STATE(3062), 1, + sym_type, + STATE(3088), 1, + sym_array_type, + STATE(3093), 1, + sym_tuple_type, + STATE(3102), 1, + sym_generic_name, + STATE(3131), 1, + sym__name, + STATE(7190), 1, + sym__array_base_type, + STATE(7463), 1, + sym__pointer_base_type, + STATE(3072), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3082), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3090), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545168,23 +545875,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(3893), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [8303] = 31, + [9202] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545205,51 +545917,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4077), 1, + ACTIONS(6213), 1, anon_sym_ref, - ACTIONS(5856), 1, + ACTIONS(6217), 1, anon_sym_scoped, - ACTIONS(6197), 1, - anon_sym_LPAREN, - STATE(2981), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, + STATE(4135), 1, sym_generic_name, - STATE(3142), 1, - sym_type, - STATE(4461), 1, + STATE(4144), 1, sym_identifier, - STATE(4952), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7165), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7509), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4006), 9, + STATE(4013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545259,7 +545971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545280,7 +545992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8430] = 37, + [9329] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545301,65 +546013,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4162), 1, + anon_sym_ref, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, + anon_sym_var, + ACTIONS(5718), 1, + sym_predefined_type, + ACTIONS(5743), 1, + anon_sym_scoped, + ACTIONS(6085), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4007), 9, + STATE(3192), 1, + sym__reserved_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, + sym_array_type, + STATE(3365), 1, + sym_type, + STATE(3366), 1, + sym_tuple_type, + STATE(4595), 1, + sym_identifier, + STATE(5187), 1, + sym__name, + STATE(7263), 1, + sym__array_base_type, + STATE(7576), 1, + sym__pointer_base_type, + STATE(3339), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545369,20 +546067,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(3800), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [8569] = 38, + [9456] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545403,67 +546109,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4008), 9, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, + anon_sym_scoped, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, + sym__name, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7572), 1, + sym_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545473,19 +546163,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_and, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [8710] = 31, + [9583] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545514,43 +546213,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6085), 1, + ACTIONS(3660), 1, anon_sym_ref, ACTIONS(6089), 1, anon_sym_scoped, ACTIONS(6091), 1, anon_sym_var, - STATE(3709), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4491), 1, - sym_array_type, - STATE(6309), 1, + STATE(4144), 1, sym_identifier, - STATE(6337), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(6389), 1, - sym_type, - STATE(7322), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4009), 9, + STATE(4016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545581,7 +546280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8837] = 40, + [9710] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545602,81 +546301,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4010), 9, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, + anon_sym_scoped, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, + sym__name, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7713), 1, + sym_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545686,7 +546355,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [8982] = 31, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [9837] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545707,51 +546397,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4106), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4112), 1, + ACTIONS(4081), 1, anon_sym_ref, - ACTIONS(5838), 1, + ACTIONS(5712), 1, + anon_sym_delegate, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(5840), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(5935), 1, + ACTIONS(5834), 1, anon_sym_scoped, - ACTIONS(6093), 1, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(2329), 1, - sym_type, - STATE(2376), 1, - sym_identifier, - STATE(2378), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(2420), 1, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, sym_array_type, - STATE(2422), 1, + STATE(3366), 1, sym_tuple_type, - STATE(2424), 1, - sym_generic_name, - STATE(2456), 1, + STATE(3428), 1, + sym_type, + STATE(3482), 1, sym__name, - STATE(7167), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2417), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2421), 3, + STATE(3344), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4011), 9, + STATE(4018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545761,7 +546451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545782,7 +546472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9109] = 31, + [9964] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545811,43 +546501,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7543), 1, + STATE(7584), 1, sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4012), 9, + STATE(4019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545878,7 +546568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9236] = 31, + [10091] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545899,51 +546589,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3789), 1, sym__identifier_token, - ACTIONS(4176), 1, + ACTIONS(4229), 1, anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(5758), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(5762), 1, anon_sym_var, - ACTIONS(5752), 1, + ACTIONS(5764), 1, sym_predefined_type, - ACTIONS(5881), 1, + ACTIONS(5830), 1, anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(6163), 1, anon_sym_LPAREN, - STATE(3208), 1, - sym__reserved_identifier, - STATE(3221), 1, + STATE(3165), 1, sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3308), 1, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3195), 1, sym_type, - STATE(3329), 1, + STATE(3205), 1, sym_generic_name, - STATE(3448), 1, - sym__name, - STATE(7133), 1, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(7245), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7595), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(3233), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(3238), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4013), 9, + STATE(4020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545953,7 +546643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(3791), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545974,7 +546664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9363] = 31, + [10218] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545995,51 +546685,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4114), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(5079), 1, anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(5081), 1, anon_sym_delegate, - ACTIONS(5750), 1, - anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5903), 1, + ACTIONS(5087), 1, anon_sym_scoped, - ACTIONS(6141), 1, - anon_sym_LPAREN, - STATE(3208), 1, + ACTIONS(5089), 1, + sym_predefined_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3329), 1, + STATE(4135), 1, sym_generic_name, - STATE(3455), 1, - sym_type, - STATE(4593), 1, + STATE(4144), 1, sym_identifier, - STATE(5236), 1, + STATE(6505), 1, sym__name, - STATE(7133), 1, + STATE(6632), 1, + sym_tuple_type, + STATE(6698), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7265), 1, + sym_type, + STATE(7522), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(7331), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4021), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2997), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [10345] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(3660), 1, + anon_sym_ref, + ACTIONS(6089), 1, + anon_sym_scoped, + ACTIONS(6091), 1, + anon_sym_var, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, + sym__name, + STATE(4530), 1, + sym_array_type, + STATE(6119), 1, + sym_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4014), 9, + STATE(4022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546049,7 +546835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546070,7 +546856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9490] = 31, + [10472] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546095,47 +546881,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(3023), 1, - anon_sym_var, - ACTIONS(5079), 1, - anon_sym_delegate, - ACTIONS(5087), 1, + ACTIONS(3025), 1, sym_predefined_type, - ACTIONS(5520), 1, - anon_sym_scoped, - ACTIONS(6059), 1, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6213), 1, anon_sym_ref, - STATE(3709), 1, + ACTIONS(6217), 1, + anon_sym_scoped, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(6487), 1, - sym__name, - STATE(6617), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(6755), 1, + STATE(4414), 1, + sym__name, + STATE(4530), 1, sym_array_type, - STATE(7301), 1, - sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, STATE(7618), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(4145), 3, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(7128), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 9, + STATE(4023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546166,7 +546952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9617] = 31, + [10599] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546187,51 +546973,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(4009), 1, sym__identifier_token, - ACTIONS(3816), 1, + ACTIONS(4046), 1, anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(5732), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(5736), 1, anon_sym_var, - ACTIONS(5752), 1, + ACTIONS(5738), 1, sym_predefined_type, - ACTIONS(5789), 1, + ACTIONS(5918), 1, anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(6093), 1, anon_sym_LPAREN, - STATE(3208), 1, - sym__reserved_identifier, - STATE(3221), 1, + STATE(4293), 1, sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3329), 1, + STATE(4388), 1, + sym__reserved_identifier, + STATE(4419), 1, sym_generic_name, - STATE(3448), 1, + STATE(4484), 1, + sym_array_type, + STATE(4497), 1, sym__name, - STATE(3455), 1, + STATE(4520), 1, + sym_tuple_type, + STATE(4538), 1, sym_type, - STATE(7133), 1, + STATE(7286), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7680), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(4398), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(4407), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(4519), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4016), 9, + STATE(4024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546241,7 +547027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(4011), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546262,7 +547048,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9744] = 31, + [10726] = 41, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, + anon_sym_LPAREN, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6355), 2, + anon_sym_ascending, + anon_sym_descending, + ACTIONS(6353), 8, + anon_sym_COMMA, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4025), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [10873] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546287,47 +547179,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, + ACTIONS(3023), 1, + anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(5630), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(5634), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7549), 1, - sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4017), 9, + STATE(4026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546358,7 +547250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9871] = 41, + [11000] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546379,157 +547271,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5893), 1, - anon_sym_or, - ACTIONS(6316), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6350), 1, - anon_sym_is, - ACTIONS(6352), 1, - anon_sym_with, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5891), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4018), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [10018] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4035), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4047), 1, - anon_sym_ref, - ACTIONS(5848), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5852), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(5854), 1, - sym_predefined_type, - ACTIONS(5889), 1, + ACTIONS(5550), 1, + anon_sym_ref, + ACTIONS(5558), 1, anon_sym_scoped, - ACTIONS(6097), 1, - anon_sym_LPAREN, - STATE(4290), 1, - sym_identifier, - STATE(4343), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4447), 1, - sym__name, - STATE(4497), 1, + STATE(4135), 1, sym_generic_name, - STATE(4513), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4523), 1, + STATE(4414), 1, + sym__name, + STATE(4530), 1, sym_array_type, - STATE(4654), 1, - sym_type, - STATE(7343), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7426), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(4446), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4453), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4481), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4019), 9, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546539,7 +547325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4037), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546560,7 +547346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10145] = 15, + [11127] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546581,11 +547367,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6356), 1, + ACTIONS(6357), 1, anon_sym_LT, - STATE(4163), 1, + STATE(4127), 1, sym_type_argument_list, - STATE(4020), 9, + STATE(4028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546595,7 +547381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3682), 15, + ACTIONS(3680), 15, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -546611,7 +547397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(3680), 28, + ACTIONS(3678), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546640,7 +547426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [10240] = 31, + [11222] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546661,51 +547447,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(4223), 1, + anon_sym_ref, + ACTIONS(5712), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(4072), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(4245), 1, - anon_sym_ref, - ACTIONS(5927), 1, + ACTIONS(5792), 1, anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(3040), 1, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, sym_array_type, - STATE(3042), 1, + STATE(3366), 1, sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3047), 1, + STATE(3428), 1, sym_type, - STATE(3138), 1, + STATE(3482), 1, sym__name, - STATE(7165), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(3038), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3039), 3, + STATE(3344), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4021), 9, + STATE(4029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546715,7 +547501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546736,7 +547522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10367] = 31, + [11349] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546757,51 +547543,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(3642), 1, - anon_sym_ref, - ACTIONS(4106), 1, - sym__identifier_token, - ACTIONS(5838), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(5840), 1, - sym_predefined_type, - ACTIONS(6093), 1, - anon_sym_LPAREN, - ACTIONS(6249), 1, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(2378), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(2420), 1, - sym_array_type, - STATE(2422), 1, - sym_tuple_type, - STATE(2424), 1, + STATE(4135), 1, sym_generic_name, - STATE(2588), 1, + STATE(4144), 1, sym_identifier, - STATE(2624), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7167), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7472), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2417), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2421), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4022), 9, + STATE(4030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546811,7 +547597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546832,87 +547618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10494] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_into, - STATE(3956), 1, - aux_sym__query_body_repeat2, - STATE(4023), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_as, - ACTIONS(6042), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [10589] = 31, + [11476] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546933,51 +547639,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4079), 1, - anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5750), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5752), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5901), 1, + ACTIONS(4267), 1, + anon_sym_ref, + ACTIONS(5858), 1, anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(3208), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(3221), 1, + STATE(2988), 1, sym_identifier, - STATE(3297), 1, + STATE(3062), 1, + sym_type, + STATE(3088), 1, sym_array_type, - STATE(3299), 1, + STATE(3093), 1, sym_tuple_type, - STATE(3308), 1, - sym_type, - STATE(3329), 1, + STATE(3102), 1, sym_generic_name, - STATE(3448), 1, + STATE(3131), 1, sym__name, - STATE(7133), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4024), 9, + STATE(4031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546987,7 +547693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547008,7 +547714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10716] = 31, + [11603] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547029,51 +547735,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(3816), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(5079), 1, anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(5081), 1, anon_sym_delegate, - ACTIONS(5750), 1, - anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5789), 1, + ACTIONS(5087), 1, anon_sym_scoped, - ACTIONS(6141), 1, - anon_sym_LPAREN, - STATE(3208), 1, + ACTIONS(5089), 1, + sym_predefined_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(3221), 1, - sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3308), 1, - sym_type, - STATE(3329), 1, + STATE(4135), 1, sym_generic_name, - STATE(3448), 1, + STATE(4144), 1, + sym_identifier, + STATE(6505), 1, sym__name, - STATE(7133), 1, + STATE(6632), 1, + sym_tuple_type, + STATE(6698), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7250), 1, + sym_type, + STATE(7522), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3298), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4025), 9, + STATE(7331), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547083,7 +547789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547104,7 +547810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10843] = 31, + [11730] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547125,51 +547831,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(3895), 1, + ACTIONS(4194), 1, anon_sym_ref, - ACTIONS(4066), 1, + ACTIONS(5712), 1, anon_sym_delegate, - ACTIONS(4068), 1, - anon_sym_scoped, - ACTIONS(4070), 1, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(4072), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(6197), 1, + ACTIONS(5768), 1, + anon_sym_scoped, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(3040), 1, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3355), 1, sym_array_type, - STATE(3042), 1, + STATE(3366), 1, sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3047), 1, + STATE(3428), 1, sym_type, - STATE(3138), 1, + STATE(3482), 1, sym__name, - STATE(7165), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(3038), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3039), 3, + STATE(3344), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(3363), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4026), 9, + STATE(4033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547179,7 +547885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547200,87 +547906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10970] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(6274), 1, - anon_sym_into, - STATE(3958), 1, - aux_sym__query_body_repeat2, - STATE(4027), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_as, - ACTIONS(6042), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [11065] = 40, + [11857] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547302,69 +547928,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6300), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4028), 9, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_as, + STATE(4034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547374,9 +547980,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5909), 10, + ACTIONS(5682), 19, anon_sym_COMMA, anon_sym_where, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, @@ -547385,7 +547999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [11210] = 31, + anon_sym_is, + [11980] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547406,147 +548021,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4178), 1, - anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5810), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5883), 1, - anon_sym_scoped, - ACTIONS(6207), 1, - anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, - sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, - sym__name, - STATE(3231), 1, - sym_type, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, - sym_array_type, - STATE(7318), 1, - sym__array_base_type, - STATE(7749), 1, - sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4029), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3791), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [11337] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3842), 1, - sym__identifier_token, - ACTIONS(4196), 1, + ACTIONS(4265), 1, anon_sym_ref, - ACTIONS(5822), 1, - anon_sym_delegate, ACTIONS(5826), 1, - anon_sym_var, - ACTIONS(5828), 1, - sym_predefined_type, - ACTIONS(5860), 1, anon_sym_scoped, - ACTIONS(6145), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2959), 1, + STATE(2988), 1, + sym_identifier, + STATE(3062), 1, sym_type, - STATE(2986), 1, + STATE(3088), 1, sym_array_type, - STATE(2988), 1, + STATE(3093), 1, sym_tuple_type, - STATE(2990), 1, + STATE(3102), 1, sym_generic_name, - STATE(3795), 1, - sym_identifier, - STATE(4161), 1, + STATE(3131), 1, sym__name, - STATE(7188), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2984), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2985), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4030), 9, + STATE(4035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547556,7 +548075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547577,89 +548096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11464] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4958), 1, - anon_sym_LBRACK, - ACTIONS(5526), 1, - anon_sym_LBRACE, - ACTIONS(5529), 1, - anon_sym_QMARK, - STATE(3084), 1, - sym_initializer_expression, - STATE(4031), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4968), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(4962), 30, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [11563] = 31, + [12107] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547684,47 +548121,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, + ACTIONS(3023), 1, + anon_sym_var, + ACTIONS(5081), 1, anon_sym_delegate, - ACTIONS(6217), 1, - anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(5089), 1, + sym_predefined_type, + ACTIONS(5520), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + ACTIONS(6041), 1, + anon_sym_ref, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, + STATE(4144), 1, + sym_identifier, + STATE(6505), 1, sym__name, - STATE(4491), 1, + STATE(6632), 1, + sym_tuple_type, + STATE(6698), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7437), 1, + STATE(7265), 1, sym_type, - STATE(7575), 1, + STATE(7522), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4032), 9, + STATE(7331), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547755,7 +548192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11690] = 29, + [12234] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547777,49 +548214,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 6, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, anon_sym_as, - STATE(4033), 9, + STATE(4037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547829,10 +548261,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, + ACTIONS(5682), 21, anon_sym_COMMA, anon_sym_where, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -547849,7 +548283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_select, anon_sym_is, - [11813] = 22, + [12351] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547871,25 +548305,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(6302), 1, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4034), 9, + STATE(4038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547899,7 +548337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 10, + ACTIONS(5684), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -547910,7 +548348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_as, - ACTIONS(5684), 25, + ACTIONS(5682), 23, anon_sym_COMMA, anon_sym_where, anon_sym_STAR, @@ -547922,7 +548360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -547935,8 +548372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_select, anon_sym_is, - anon_sym_with, - [11922] = 26, + [12464] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547958,44 +548394,60 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(6286), 1, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6302), 1, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 9, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - STATE(4035), 9, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548005,16 +548457,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, + ACTIONS(5682), 14, anon_sym_COMMA, anon_sym_where, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -548026,8 +548472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - [12039] = 24, + [12599] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548049,61 +548494,74 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(6302), 1, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4036), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5756), 10, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - ACTIONS(5754), 23, - anon_sym_COMMA, - anon_sym_where, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + STATE(4040), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 13, + anon_sym_COMMA, + anon_sym_where, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -548115,8 +548573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - [12152] = 35, + [12736] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548138,60 +548595,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5973), 1, + ACTIONS(5975), 1, anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6312), 1, + ACTIONS(6347), 1, anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6278), 2, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, + ACTIONS(6335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4037), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548201,7 +548657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_COMMA, anon_sym_where, anon_sym_CARET, @@ -548216,103 +548672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [12287] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4035), 1, - sym__identifier_token, - ACTIONS(4047), 1, - anon_sym_ref, - ACTIONS(5848), 1, - anon_sym_delegate, - ACTIONS(5852), 1, - anon_sym_var, - ACTIONS(5854), 1, - sym_predefined_type, - ACTIONS(5889), 1, - anon_sym_scoped, - ACTIONS(6097), 1, - anon_sym_LPAREN, - STATE(4290), 1, - sym_identifier, - STATE(4343), 1, - sym__reserved_identifier, - STATE(4447), 1, - sym__name, - STATE(4497), 1, - sym_generic_name, - STATE(4508), 1, - sym_type, - STATE(4513), 1, - sym_tuple_type, - STATE(4523), 1, - sym_array_type, - STATE(7343), 1, - sym__array_base_type, - STATE(7426), 1, - sym__pointer_base_type, - STATE(4446), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4453), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4481), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4038), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4037), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [12414] = 36, + [12869] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548334,62 +548694,45 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6278), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6300), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4039), 9, + ACTIONS(5684), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_as, + STATE(4042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548399,9 +548742,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 21, anon_sym_COMMA, anon_sym_where, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -548413,7 +548763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [12551] = 34, + anon_sym_is, + [12988] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548435,59 +548786,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5973), 1, + ACTIONS(5975), 1, anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6296), 1, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6312), 1, + ACTIONS(6347), 1, anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4040), 9, + STATE(4043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548497,10 +548845,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 16, anon_sym_COMMA, anon_sym_where, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -548512,7 +548862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [12684] = 31, + [13119] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548533,51 +548883,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(3793), 1, - anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5810), 1, - sym_predefined_type, - ACTIONS(5933), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6207), 1, - anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3197), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(3209), 1, + STATE(4414), 1, sym__name, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, + STATE(4530), 1, sym_array_type, - STATE(3393), 1, - sym_type, - STATE(7318), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7526), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4041), 9, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548587,7 +548937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -548608,7 +548958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [12811] = 27, + [13246] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548630,45 +548980,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(6286), 1, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6302), 1, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6282), 2, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - STATE(4042), 9, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548678,16 +549046,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, + ACTIONS(5682), 13, anon_sym_COMMA, anon_sym_where, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -548699,8 +549060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - [12930] = 33, + [13385] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548722,56 +549082,65 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5973), 1, + ACTIONS(5975), 1, anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6296), 1, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6312), 1, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6347), 1, anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6300), 2, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4043), 9, + STATE(4046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548781,13 +549150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 12, anon_sym_COMMA, anon_sym_where, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -548798,7 +549163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [13061] = 37, + [13526] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548820,63 +549185,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5700), 1, anon_sym_switch, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_with, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(5973), 1, + ACTIONS(5975), 1, anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6323), 1, anon_sym_SLASH, - ACTIONS(6288), 1, + ACTIONS(6325), 1, anon_sym_CARET, - ACTIONS(6290), 1, + ACTIONS(6327), 1, anon_sym_PIPE, - ACTIONS(6292), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6333), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6339), 1, anon_sym_DOT_DOT, - ACTIONS(6312), 1, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, anon_sym_is, - STATE(2935), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(6315), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6319), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6321), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6331), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, + ACTIONS(6335), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6337), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4044), 9, + STATE(4047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548886,12 +549257,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 10, anon_sym_COMMA, anon_sym_where, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, @@ -548900,7 +549268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - [13200] = 38, + [13671] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548921,89 +549289,169 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(3599), 1, + anon_sym_ref, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(5900), 1, + anon_sym_var, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(6187), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, + anon_sym_scoped, + STATE(2349), 1, + sym_type, + STATE(2374), 1, + sym__reserved_identifier, + STATE(2382), 1, + sym_identifier, + STATE(2398), 1, + sym_array_type, + STATE(2413), 1, + sym_tuple_type, + STATE(2418), 1, + sym_generic_name, + STATE(2450), 1, + sym__name, + STATE(7243), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2411), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4048), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4098), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [13798] = 22, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6286), 1, - anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + STATE(4049), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5926), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(5924), 25, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4045), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_COMMA, - anon_sym_where, + anon_sym_switch, + anon_sym_and, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [13341] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [13907] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549024,70 +549472,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5756), 1, + ACTIONS(5852), 1, + anon_sym_or, + ACTIONS(6277), 1, anon_sym_QMARK, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6286), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6288), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6290), 1, + ACTIONS(6287), 1, anon_sym_PIPE, - ACTIONS(6292), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, + ACTIONS(6303), 1, anon_sym_AMP_AMP, - ACTIONS(6306), 1, + ACTIONS(6305), 1, anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, + ACTIONS(6307), 1, anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6311), 1, anon_sym_is, - STATE(2935), 1, + ACTIONS(6313), 1, + anon_sym_with, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(6275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4046), 9, + ACTIONS(5850), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549097,18 +549557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_COMMA, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [13486] = 31, + [14054] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549137,43 +549586,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(3618), 1, anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(4767), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5906), 1, + anon_sym_scoped, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7454), 1, - sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4047), 9, + STATE(4051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549204,7 +549653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13613] = 31, + [14181] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549233,43 +549682,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7455), 1, + STATE(7482), 1, sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4048), 9, + STATE(4052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549300,94 +549749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13740] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4049), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5686), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5684), 25, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [13849] = 31, + [14308] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549408,51 +549770,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(4196), 1, - anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(5828), 1, - sym_predefined_type, - ACTIONS(5860), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(2934), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(2986), 1, - sym_array_type, - STATE(2988), 1, - sym_tuple_type, - STATE(2990), 1, + STATE(4135), 1, sym_generic_name, - STATE(3036), 1, - sym_type, - STATE(3795), 1, + STATE(4144), 1, sym_identifier, - STATE(4161), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7188), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7484), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2984), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2985), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4050), 9, + STATE(4053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549462,7 +549824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549483,7 +549845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13976] = 31, + [14435] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549504,51 +549866,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3789), 1, sym__identifier_token, - ACTIONS(3846), 1, + ACTIONS(4062), 1, anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(5758), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(5762), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(5764), 1, sym_predefined_type, - ACTIONS(5919), 1, + ACTIONS(5770), 1, anon_sym_scoped, - ACTIONS(6145), 1, + ACTIONS(6163), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, sym__reserved_identifier, - STATE(2959), 1, + STATE(3190), 1, + sym__name, + STATE(3195), 1, sym_type, - STATE(2986), 1, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, sym_array_type, - STATE(2988), 1, + STATE(3242), 1, sym_tuple_type, - STATE(2990), 1, - sym_generic_name, - STATE(3300), 1, - sym_identifier, - STATE(3575), 1, - sym__name, - STATE(7188), 1, + STATE(7245), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7595), 1, sym__pointer_base_type, - STATE(2984), 3, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2985), 3, + STATE(3233), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(3238), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4051), 9, + STATE(4054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549558,7 +549920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3791), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549579,7 +549941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14103] = 31, + [14562] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549608,43 +549970,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(6213), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(6217), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7515), 1, + STATE(7698), 1, sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4052), 9, + STATE(4055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549675,7 +550037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14230] = 31, + [14689] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549704,43 +550066,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(3652), 1, - anon_sym_ref, - ACTIONS(6223), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(6255), 1, + ACTIONS(6213), 1, + anon_sym_ref, + ACTIONS(6217), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(6118), 1, - sym_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7635), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4053), 9, + STATE(4056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549771,7 +550133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14357] = 31, + [14816] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549796,47 +550158,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, + ACTIONS(3023), 1, + anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(3682), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(6083), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(5462), 1, + sym_identifier, + STATE(5785), 1, + sym__name, + STATE(7210), 1, sym__array_base_type, - STATE(7499), 1, - sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4054), 9, + STATE(4057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549867,7 +550229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14484] = 29, + [14943] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549888,50 +550250,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6332), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6318), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6330), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_or, - STATE(4055), 9, + STATE(4058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549941,7 +550303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, + ACTIONS(5682), 19, anon_sym_where, anon_sym_CARET, anon_sym_EQ_EQ, @@ -549961,7 +550323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [14607] = 26, + [15066] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549982,35 +550344,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550020,7 +550382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - STATE(4056), 9, + STATE(4059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550030,7 +550392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, + ACTIONS(5682), 21, anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, @@ -550052,7 +550414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [14724] = 24, + [15183] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550073,30 +550435,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4057), 9, + STATE(4060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550106,7 +550468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5756), 10, + ACTIONS(5684), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550117,7 +550479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(5754), 23, + ACTIONS(5682), 23, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -550141,7 +550503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [14837] = 27, + [15296] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550162,38 +550524,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6322), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6340), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6318), 2, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6320), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 7, + ACTIONS(5684), 7, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550201,7 +550563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - STATE(4058), 9, + STATE(4061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550211,7 +550573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, + ACTIONS(5682), 21, anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, @@ -550233,7 +550595,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [14956] = 31, + [15415] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_into, + STATE(4091), 1, + aux_sym__query_body_repeat2, + STATE(4062), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [15510] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_into, + STATE(4093), 1, + aux_sym__query_body_repeat2, + STATE(4063), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [15605] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550258,47 +550780,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(4180), 1, anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(5758), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(5762), 1, anon_sym_var, - ACTIONS(5810), 1, + ACTIONS(5764), 1, sym_predefined_type, - ACTIONS(5887), 1, + ACTIONS(5832), 1, anon_sym_scoped, - ACTIONS(6207), 1, + ACTIONS(6163), 1, anon_sym_LPAREN, - STATE(3163), 1, + STATE(3165), 1, sym_identifier, - STATE(3183), 1, + STATE(3171), 1, sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, + STATE(3190), 1, sym__name, - STATE(3231), 1, + STATE(3195), 1, sym_type, - STATE(3253), 1, + STATE(3205), 1, sym_generic_name, - STATE(3262), 1, + STATE(3234), 1, sym_array_type, - STATE(7318), 1, + STATE(3242), 1, + sym_tuple_type, + STATE(7245), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7595), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3245), 3, + STATE(3233), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4059), 9, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550329,7 +550851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15083] = 31, + [15732] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550350,51 +550872,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(4009), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(5551), 1, + ACTIONS(4013), 1, anon_sym_ref, - ACTIONS(5559), 1, + ACTIONS(5732), 1, + anon_sym_delegate, + ACTIONS(5734), 1, anon_sym_scoped, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, + ACTIONS(5736), 1, + anon_sym_var, + ACTIONS(5738), 1, + sym_predefined_type, + ACTIONS(6093), 1, + anon_sym_LPAREN, + STATE(4293), 1, sym_identifier, - STATE(4151), 1, + STATE(4388), 1, + sym__reserved_identifier, + STATE(4419), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, + STATE(4484), 1, sym_array_type, - STATE(6511), 1, + STATE(4497), 1, + sym__name, + STATE(4520), 1, + sym_tuple_type, + STATE(4538), 1, sym_type, - STATE(7322), 1, + STATE(7286), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7680), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(4398), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4407), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4519), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4065), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4011), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [15859] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3789), 1, + sym__identifier_token, + ACTIONS(4180), 1, + anon_sym_ref, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(5832), 1, + anon_sym_scoped, + ACTIONS(6163), 1, + anon_sym_LPAREN, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(3362), 1, + sym_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7595), 1, + sym__pointer_base_type, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4060), 9, + STATE(4066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550404,7 +551022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3791), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -550425,7 +551043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15210] = 31, + [15986] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550454,43 +551072,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(6255), 1, anon_sym_scoped, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7582), 1, + STATE(7566), 1, sym_type, - STATE(2366), 3, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4061), 9, + STATE(4067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550521,7 +551139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15337] = 22, + [16113] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550542,26 +551160,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6302), 1, + ACTIONS(6301), 1, anon_sym_DOT_DOT, - STATE(2935), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4062), 9, + STATE(4068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550581,9 +551199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_as, + anon_sym_or, ACTIONS(1229), 25, - anon_sym_COMMA, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -550595,116 +551212,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_with, - [15446] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(3652), 1, - anon_sym_ref, - ACTIONS(6223), 1, - anon_sym_var, - ACTIONS(6255), 1, - anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4063), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [15573] = 15, + [16222] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550725,11 +551247,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6354), 1, + ACTIONS(6271), 1, anon_sym_and, - ACTIONS(6358), 1, - anon_sym_or, - STATE(4064), 9, + STATE(4069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550739,7 +551259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 12, + ACTIONS(6201), 13, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550751,8 +551271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_or, anon_sym_as, - ACTIONS(6187), 31, + ACTIONS(6199), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -550784,7 +551305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15668] = 31, + [16315] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550805,51 +551326,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4164), 1, + ACTIONS(3895), 1, anon_sym_ref, - ACTIONS(5746), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5748), 1, + ACTIONS(4072), 1, anon_sym_scoped, - ACTIONS(5750), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5752), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(6141), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(3208), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(3221), 1, + STATE(2988), 1, sym_identifier, - STATE(3297), 1, + STATE(3088), 1, sym_array_type, - STATE(3299), 1, + STATE(3093), 1, sym_tuple_type, - STATE(3329), 1, + STATE(3102), 1, sym_generic_name, - STATE(3448), 1, + STATE(3131), 1, sym__name, - STATE(3455), 1, + STATE(3134), 1, sym_type, - STATE(7133), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7411), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(3295), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3296), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3298), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4065), 9, + STATE(4070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550859,7 +551380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -550880,7 +551401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15795] = 31, + [16442] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550909,43 +551430,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6085), 1, - anon_sym_ref, - ACTIONS(6089), 1, - anon_sym_scoped, ACTIONS(6091), 1, anon_sym_var, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, + anon_sym_scoped, + STATE(3728), 1, sym__reserved_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4491), 1, - sym_array_type, - STATE(6309), 1, + STATE(4144), 1, sym_identifier, - STATE(6337), 1, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(7322), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7674), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4066), 9, + STATE(4071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550976,7 +551497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15922] = 31, + [16569] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551005,43 +551526,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7606), 1, + STATE(7688), 1, sym_type, - STATE(2366), 3, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4067), 9, + STATE(4072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551072,7 +551593,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16049] = 31, + [16696] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3650), 1, + anon_sym_ref, + ACTIONS(6237), 1, + sym__identifier_token, + ACTIONS(6241), 1, + anon_sym_LPAREN, + ACTIONS(6243), 1, + anon_sym_delegate, + ACTIONS(6245), 1, + anon_sym_scoped, + ACTIONS(6247), 1, + anon_sym_var, + ACTIONS(6249), 1, + sym_predefined_type, + STATE(2602), 1, + sym_identifier, + STATE(2652), 1, + sym__reserved_identifier, + STATE(2715), 1, + sym_array_type, + STATE(2717), 1, + sym_tuple_type, + STATE(2719), 1, + sym__name, + STATE(2809), 1, + sym_generic_name, + STATE(2877), 1, + sym_type, + STATE(7195), 1, + sym__array_base_type, + STATE(7404), 1, + sym__pointer_base_type, + STATE(2714), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2716), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2848), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4073), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6239), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [16823] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551101,43 +551718,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, ACTIONS(6259), 1, anon_sym_ref, ACTIONS(6263), 1, anon_sym_scoped, - STATE(3709), 1, + ACTIONS(6265), 1, + anon_sym_var, + STATE(2349), 1, + sym_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(6309), 1, + sym_identifier, + STATE(6336), 1, + sym__name, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(7642), 1, - sym_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4068), 9, + STATE(4074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551168,7 +551785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16176] = 22, + [16950] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551189,26 +551806,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(3869), 1, + sym__identifier_token, + ACTIONS(4231), 1, + anon_sym_ref, + ACTIONS(5778), 1, + anon_sym_delegate, + ACTIONS(5782), 1, + anon_sym_var, + ACTIONS(5784), 1, + sym_predefined_type, + ACTIONS(5864), 1, + anon_sym_scoped, + ACTIONS(6121), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6340), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4069), 9, + STATE(2952), 1, + sym__reserved_identifier, + STATE(2964), 1, + sym_generic_name, + STATE(2968), 1, + sym_type, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, + sym_tuple_type, + STATE(3787), 1, + sym_identifier, + STATE(4107), 1, + sym__name, + STATE(7132), 1, + sym__array_base_type, + STATE(7662), 1, + sym__pointer_base_type, + STATE(2966), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2983), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551218,44 +551860,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1231), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(1229), 25, + ACTIONS(3871), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [16285] = 15, + [17077] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551276,11 +551902,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_into, - STATE(4088), 1, - aux_sym__query_body_repeat2, - STATE(4070), 9, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(4100), 1, + anon_sym_ref, + ACTIONS(5900), 1, + anon_sym_var, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(5908), 1, + anon_sym_scoped, + ACTIONS(6187), 1, + anon_sym_LPAREN, + STATE(2374), 1, + sym__reserved_identifier, + STATE(2382), 1, + sym_identifier, + STATE(2398), 1, + sym_array_type, + STATE(2413), 1, + sym_tuple_type, + STATE(2418), 1, + sym_generic_name, + STATE(2450), 1, + sym__name, + STATE(3868), 1, + sym_type, + STATE(7243), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(2337), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2411), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551290,52 +551956,124 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6036), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4098), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [17204] = 31, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3789), 1, + sym__identifier_token, + ACTIONS(4062), 1, + anon_sym_ref, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(5770), 1, + anon_sym_scoped, + ACTIONS(6163), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [16380] = 31, + STATE(3165), 1, + sym_identifier, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, + sym__name, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(3362), 1, + sym_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7595), 1, + sym__pointer_base_type, + STATE(3204), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4077), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3791), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [17331] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551356,51 +552094,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(4257), 1, + ACTIONS(4060), 1, anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(5826), 1, + ACTIONS(4074), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(4076), 1, sym_predefined_type, - ACTIONS(5947), 1, + ACTIONS(5890), 1, anon_sym_scoped, - ACTIONS(6145), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2959), 1, + STATE(3062), 1, sym_type, - STATE(2986), 1, + STATE(3088), 1, sym_array_type, - STATE(2988), 1, + STATE(3093), 1, sym_tuple_type, - STATE(2990), 1, + STATE(3102), 1, sym_generic_name, - STATE(3300), 1, + STATE(4435), 1, sym_identifier, - STATE(3575), 1, + STATE(4951), 1, sym__name, - STATE(7188), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7374), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2984), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2985), 3, + STATE(3082), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2987), 3, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4071), 9, + STATE(4078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551410,7 +552148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -551431,7 +552169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16507] = 31, + [17458] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551460,43 +552198,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, + ACTIONS(4767), 1, anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(5550), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(5558), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(6415), 1, + sym_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4072), 9, + STATE(4079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551527,7 +552265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16634] = 31, + [17585] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551548,51 +552286,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4182), 1, + ACTIONS(3802), 1, anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(5714), 1, + anon_sym_scoped, + ACTIONS(5716), 1, anon_sym_var, - ACTIONS(5810), 1, + ACTIONS(5718), 1, sym_predefined_type, - ACTIONS(5907), 1, - anon_sym_scoped, - ACTIONS(6207), 1, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, - sym__name, - STATE(3231), 1, - sym_type, - STATE(3253), 1, + STATE(3194), 1, + sym_identifier, + STATE(3347), 1, sym_generic_name, - STATE(3262), 1, + STATE(3355), 1, sym_array_type, - STATE(7318), 1, + STATE(3366), 1, + sym_tuple_type, + STATE(3428), 1, + sym_type, + STATE(3482), 1, + sym__name, + STATE(7263), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7576), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, + STATE(3339), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3245), 3, + STATE(3344), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4073), 9, + STATE(3363), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551602,7 +552340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -551623,7 +552361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16761] = 31, + [17712] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551644,51 +552382,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6085), 1, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(4140), 1, anon_sym_ref, - ACTIONS(6089), 1, + ACTIONS(5898), 1, anon_sym_scoped, - ACTIONS(6091), 1, + ACTIONS(5900), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(6187), 1, + anon_sym_LPAREN, + STATE(2349), 1, + sym_type, + STATE(2374), 1, sym__reserved_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4491), 1, - sym_array_type, - STATE(6309), 1, + STATE(2382), 1, sym_identifier, - STATE(6337), 1, + STATE(2398), 1, + sym_array_type, + STATE(2413), 1, + sym_tuple_type, + STATE(2418), 1, + sym_generic_name, + STATE(2450), 1, sym__name, - STATE(6370), 1, - sym_type, - STATE(7322), 1, + STATE(7243), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2411), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4074), 9, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551698,7 +552436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(4098), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -551719,7 +552457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16888] = 31, + [17839] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551740,51 +552478,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3023), 1, - anon_sym_var, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(3678), 1, + ACTIONS(4257), 1, anon_sym_ref, - ACTIONS(6171), 1, + ACTIONS(5778), 1, + anon_sym_delegate, + ACTIONS(5780), 1, anon_sym_scoped, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + ACTIONS(5782), 1, + anon_sym_var, + ACTIONS(5784), 1, + sym_predefined_type, + ACTIONS(6121), 1, + anon_sym_LPAREN, + STATE(2952), 1, sym__reserved_identifier, - STATE(4151), 1, + STATE(2964), 1, sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4491), 1, + STATE(2979), 1, sym_array_type, - STATE(5487), 1, + STATE(2987), 1, + sym_tuple_type, + STATE(3020), 1, + sym_type, + STATE(3270), 1, sym_identifier, - STATE(5789), 1, + STATE(3584), 1, sym__name, - STATE(7322), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4075), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551794,7 +552532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -551815,7 +552553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17015] = 31, + [17966] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551836,51 +552574,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, + ACTIONS(4070), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(4074), 1, + anon_sym_var, + ACTIONS(4076), 1, + sym_predefined_type, + ACTIONS(4259), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(5945), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(2980), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(2988), 1, sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, + STATE(3088), 1, + sym_array_type, + STATE(3093), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3102), 1, + sym_generic_name, + STATE(3131), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(3134), 1, + sym_type, + STATE(7190), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(7701), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3082), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4076), 9, + STATE(4083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551890,7 +552628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -551911,7 +552649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17142] = 31, + [18093] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551932,51 +552670,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(3895), 1, - anon_sym_ref, - ACTIONS(4066), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + sym_predefined_type, + ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4068), 1, - anon_sym_scoped, - ACTIONS(4070), 1, + ACTIONS(6091), 1, anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(6197), 1, - anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + ACTIONS(6251), 1, + anon_sym_ref, + ACTIONS(6255), 1, + anon_sym_scoped, + STATE(3728), 1, sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, + STATE(4135), 1, sym_generic_name, - STATE(3138), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, + sym_tuple_type, + STATE(4414), 1, sym__name, - STATE(3142), 1, - sym_type, - STATE(7165), 1, + STATE(4530), 1, + sym_array_type, + STATE(7210), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7436), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4077), 9, + STATE(4084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551986,7 +552724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(2997), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -552007,7 +552745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17269] = 31, + [18220] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552028,51 +552766,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3789), 1, - sym__identifier_token, - ACTIONS(4084), 1, - anon_sym_ref, - ACTIONS(5804), 1, - anon_sym_delegate, - ACTIONS(5806), 1, - anon_sym_scoped, - ACTIONS(5808), 1, - anon_sym_var, - ACTIONS(5810), 1, - sym_predefined_type, - ACTIONS(6207), 1, - anon_sym_LPAREN, - STATE(3163), 1, - sym_identifier, - STATE(3183), 1, - sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, - sym__name, - STATE(3231), 1, - sym_type, - STATE(3253), 1, - sym_generic_name, - STATE(3262), 1, - sym_array_type, - STATE(7318), 1, - sym__array_base_type, - STATE(7749), 1, - sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3245), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4078), 9, + ACTIONS(6359), 1, + anon_sym_into, + STATE(4085), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552082,28 +552778,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3791), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + aux_sym__query_body_repeat2, + ACTIONS(6020), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_as, + ACTIONS(6018), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [17396] = 14, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [18313] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552124,9 +552845,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6362), 1, - anon_sym_into, - STATE(4079), 10, + ACTIONS(1507), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + anon_sym_LPAREN, + STATE(2969), 1, + sym_argument_list, + STATE(3106), 1, + sym_initializer_expression, + STATE(4086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552136,8 +552863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(4815), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -552149,14 +552875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 32, - anon_sym_SEMI, + anon_sym_or, + ACTIONS(4811), 29, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -552171,18 +552893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [17489] = 15, + [18412] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552203,11 +552927,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6354), 1, - anon_sym_and, - ACTIONS(6358), 1, - anon_sym_or, - STATE(4080), 9, + ACTIONS(6349), 1, + anon_sym_into, + STATE(4085), 1, + aux_sym__query_body_repeat2, + STATE(4087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552217,7 +552941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 12, + ACTIONS(6027), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -552230,7 +552954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_as, - ACTIONS(5416), 31, + ACTIONS(6025), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -552262,7 +552986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17584] = 31, + [18507] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552283,51 +553007,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(4096), 1, + sym__identifier_token, + ACTIONS(4100), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(5900), 1, + anon_sym_var, + ACTIONS(5902), 1, + sym_predefined_type, + ACTIONS(5908), 1, anon_sym_scoped, - STATE(3709), 1, + ACTIONS(6187), 1, + anon_sym_LPAREN, + STATE(2349), 1, + sym_type, + STATE(2374), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(2382), 1, sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, + STATE(2398), 1, + sym_array_type, + STATE(2413), 1, sym_tuple_type, - STATE(4457), 1, + STATE(2418), 1, + sym_generic_name, + STATE(2450), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7243), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(7621), 1, - sym_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2411), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4081), 9, + STATE(2428), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552337,7 +553061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(4098), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -552358,7 +553082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17711] = 31, + [18634] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552379,51 +553103,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(4039), 1, + ACTIONS(4257), 1, anon_sym_ref, - ACTIONS(5848), 1, + ACTIONS(5778), 1, anon_sym_delegate, - ACTIONS(5850), 1, + ACTIONS(5780), 1, anon_sym_scoped, - ACTIONS(5852), 1, + ACTIONS(5782), 1, anon_sym_var, - ACTIONS(5854), 1, + ACTIONS(5784), 1, sym_predefined_type, - ACTIONS(6097), 1, + ACTIONS(6121), 1, anon_sym_LPAREN, - STATE(4290), 1, - sym_identifier, - STATE(4343), 1, + STATE(2952), 1, sym__reserved_identifier, - STATE(4447), 1, - sym__name, - STATE(4497), 1, + STATE(2964), 1, sym_generic_name, - STATE(4513), 1, - sym_tuple_type, - STATE(4523), 1, - sym_array_type, - STATE(4654), 1, + STATE(2968), 1, sym_type, - STATE(7343), 1, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, + sym_tuple_type, + STATE(3270), 1, + sym_identifier, + STATE(3584), 1, + sym__name, + STATE(7132), 1, sym__array_base_type, - STATE(7426), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(4446), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4453), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4481), 3, + STATE(2992), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4082), 9, + STATE(4089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552433,7 +553157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4037), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -552454,7 +553178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17838] = 31, + [18761] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552475,51 +553199,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3891), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(3895), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(4070), 1, + anon_sym_delegate, + ACTIONS(4072), 1, anon_sym_scoped, - ACTIONS(6223), 1, + ACTIONS(4074), 1, anon_sym_var, - STATE(3709), 1, + ACTIONS(4076), 1, + sym_predefined_type, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(2980), 1, sym__reserved_identifier, - STATE(4107), 1, + STATE(2988), 1, sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, + STATE(3062), 1, + sym_type, + STATE(3088), 1, + sym_array_type, + STATE(3093), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3102), 1, + sym_generic_name, + STATE(3131), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7492), 1, - sym_type, - STATE(7575), 1, + STATE(7463), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3072), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3082), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3090), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4083), 9, + STATE(4090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552529,7 +553253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3893), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -552550,7 +553274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17965] = 15, + [18888] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552571,11 +553295,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6362), 1, anon_sym_into, - STATE(4079), 1, - aux_sym__query_body_repeat2, - STATE(4084), 9, + STATE(4091), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552585,7 +553307,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -552597,7 +553320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 32, + ACTIONS(6018), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -552630,7 +553353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [18060] = 31, + [18981] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552651,243 +553374,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(4259), 1, + ACTIONS(4253), 1, anon_sym_ref, - ACTIONS(5822), 1, + ACTIONS(5778), 1, anon_sym_delegate, - ACTIONS(5824), 1, - anon_sym_scoped, - ACTIONS(5826), 1, + ACTIONS(5782), 1, anon_sym_var, - ACTIONS(5828), 1, + ACTIONS(5784), 1, sym_predefined_type, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(2934), 1, - sym__reserved_identifier, - STATE(2986), 1, - sym_array_type, - STATE(2988), 1, - sym_tuple_type, - STATE(2990), 1, - sym_generic_name, - STATE(3036), 1, - sym_type, - STATE(3300), 1, - sym_identifier, - STATE(3575), 1, - sym__name, - STATE(7188), 1, - sym__array_base_type, - STATE(7374), 1, - sym__pointer_base_type, - STATE(2984), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2985), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2987), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4085), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3844), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [18187] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, - anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(5786), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, - sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7637), 1, - sym_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4086), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2997), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [18314] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(6121), 1, anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6217), 1, - anon_sym_ref, - ACTIONS(6221), 1, - anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(2952), 1, + sym__reserved_identifier, + STATE(2964), 1, sym_generic_name, - STATE(4362), 1, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, sym_tuple_type, - STATE(4457), 1, + STATE(3020), 1, + sym_type, + STATE(3270), 1, + sym_identifier, + STATE(3584), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(7322), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(7700), 1, - sym_type, - STATE(2366), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4087), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552897,7 +553428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -552918,7 +553449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18441] = 15, + [19108] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552939,11 +553470,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6351), 1, anon_sym_into, - STATE(4079), 1, + STATE(4091), 1, aux_sym__query_body_repeat2, - STATE(4088), 9, + STATE(4093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552953,7 +553484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -552965,7 +553496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 32, + ACTIONS(6025), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -552998,7 +553529,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [18536] = 15, + [19203] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553019,11 +553550,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_into, - STATE(4084), 1, - aux_sym__query_body_repeat2, - STATE(4089), 9, + ACTIONS(4916), 1, + anon_sym_LBRACK, + ACTIONS(5600), 1, + anon_sym_LBRACE, + ACTIONS(5603), 1, + anon_sym_QMARK, + STATE(3101), 1, + sym_initializer_expression, + STATE(4094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553033,10 +553568,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(4926), 11, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -553045,14 +553579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_or, + ACTIONS(4920), 30, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -553067,18 +553597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [18631] = 31, + [19302] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553103,47 +553636,47 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(3021), 1, - anon_sym_scoped, - ACTIONS(3023), 1, - anon_sym_var, ACTIONS(3025), 1, sym_predefined_type, - ACTIONS(3466), 1, - anon_sym_ref, ACTIONS(3468), 1, anon_sym_delegate, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(5550), 1, + anon_sym_ref, + ACTIONS(5558), 1, + anon_sym_scoped, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(6440), 1, + sym_type, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4090), 9, + STATE(4095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553174,7 +553707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18758] = 31, + [19429] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553195,51 +553728,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, - sym__identifier_token, - ACTIONS(4066), 1, - anon_sym_delegate, - ACTIONS(4070), 1, - anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4232), 1, - anon_sym_ref, - ACTIONS(5899), 1, - anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, - sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3138), 1, - sym__name, - STATE(3142), 1, - sym_type, - STATE(7165), 1, - sym__array_base_type, - STATE(7614), 1, - sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3041), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4091), 9, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553249,28 +553757,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5926), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_as, + ACTIONS(5924), 25, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [18885] = 31, + anon_sym_is, + anon_sym_with, + [19538] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553293,49 +553817,49 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3789), 1, sym__identifier_token, - ACTIONS(4178), 1, + ACTIONS(4229), 1, anon_sym_ref, - ACTIONS(5804), 1, + ACTIONS(5758), 1, anon_sym_delegate, - ACTIONS(5808), 1, + ACTIONS(5762), 1, anon_sym_var, - ACTIONS(5810), 1, + ACTIONS(5764), 1, sym_predefined_type, - ACTIONS(5883), 1, + ACTIONS(5830), 1, anon_sym_scoped, - ACTIONS(6207), 1, + ACTIONS(6163), 1, anon_sym_LPAREN, - STATE(3163), 1, + STATE(3165), 1, sym_identifier, - STATE(3183), 1, + STATE(3171), 1, sym__reserved_identifier, - STATE(3197), 1, - sym_tuple_type, - STATE(3209), 1, + STATE(3190), 1, sym__name, - STATE(3253), 1, + STATE(3205), 1, sym_generic_name, - STATE(3262), 1, + STATE(3234), 1, sym_array_type, - STATE(3393), 1, + STATE(3242), 1, + sym_tuple_type, + STATE(3362), 1, sym_type, - STATE(7318), 1, + STATE(7245), 1, sym__array_base_type, - STATE(7749), 1, + STATE(7595), 1, sym__pointer_base_type, - STATE(3196), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3240), 3, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3245), 3, + STATE(3233), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4092), 9, + STATE(3238), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553366,7 +553890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19012] = 40, + [19665] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553387,70 +553911,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(3461), 2, + anon_sym_EQ, + anon_sym_in, + ACTIONS(3630), 3, anon_sym_LPAREN, - ACTIONS(5682), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, - anon_sym_SLASH, - ACTIONS(6288), 1, - anon_sym_CARET, - ACTIONS(6290), 1, - anon_sym_PIPE, - ACTIONS(6292), 1, - anon_sym_AMP, - ACTIONS(6296), 1, - anon_sym_GT_GT, - ACTIONS(6302), 1, - anon_sym_DOT_DOT, - ACTIONS(6304), 1, - anon_sym_AMP_AMP, - ACTIONS(6306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, - anon_sym_is, - STATE(2935), 1, - sym_bracketed_argument_list, - STATE(3931), 1, - sym_argument_list, - ACTIONS(5690), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6278), 2, - anon_sym_LT, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(6282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6298), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6300), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4093), 9, + STATE(4098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553460,101 +553928,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5777), 10, + ACTIONS(3459), 11, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [19157] = 31, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3842), 1, - sym__identifier_token, - ACTIONS(4261), 1, - anon_sym_ref, - ACTIONS(5822), 1, - anon_sym_delegate, - ACTIONS(5826), 1, - anon_sym_var, - ACTIONS(5828), 1, - sym_predefined_type, - ACTIONS(5866), 1, - anon_sym_scoped, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(2934), 1, - sym__reserved_identifier, - STATE(2986), 1, - sym_array_type, - STATE(2988), 1, - sym_tuple_type, - STATE(2990), 1, - sym_generic_name, - STATE(3036), 1, - sym_type, - STATE(3300), 1, - sym_identifier, - STATE(3575), 1, - sym__name, - STATE(7188), 1, - sym__array_base_type, - STATE(7374), 1, - sym__pointer_base_type, - STATE(2984), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2985), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2987), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4094), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3844), 20, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + ACTIONS(3633), 29, anon_sym_alias, anon_sym_global, + anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -553567,7 +553969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19284] = 31, + sym__identifier_token, + [19760] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553588,51 +553991,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3789), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - sym_predefined_type, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6259), 1, + ACTIONS(3793), 1, anon_sym_ref, - ACTIONS(6263), 1, + ACTIONS(5758), 1, + anon_sym_delegate, + ACTIONS(5760), 1, anon_sym_scoped, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, + ACTIONS(5762), 1, + anon_sym_var, + ACTIONS(5764), 1, + sym_predefined_type, + ACTIONS(6163), 1, + anon_sym_LPAREN, + STATE(3165), 1, sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(4362), 1, - sym_tuple_type, - STATE(4457), 1, + STATE(3171), 1, + sym__reserved_identifier, + STATE(3190), 1, sym__name, - STATE(4491), 1, - sym_array_type, - STATE(6517), 1, + STATE(3195), 1, sym_type, - STATE(7322), 1, + STATE(3205), 1, + sym_generic_name, + STATE(3234), 1, + sym_array_type, + STATE(3242), 1, + sym_tuple_type, + STATE(7245), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7595), 1, sym__pointer_base_type, - STATE(2366), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4145), 3, + STATE(3204), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(3233), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3238), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4095), 9, + STATE(4099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553642,7 +554045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 20, + ACTIONS(3791), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -553663,7 +554066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19411] = 31, + [19887] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553692,43 +554095,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(2329), 1, - sym_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7389), 1, + sym_type, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4096), 9, + STATE(4100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553759,7 +554162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19538] = 31, + [20014] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553780,51 +554183,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, - sym__identifier_token, - ACTIONS(4174), 1, - anon_sym_ref, - ACTIONS(5746), 1, - anon_sym_delegate, - ACTIONS(5750), 1, - anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(5868), 1, - anon_sym_scoped, - ACTIONS(6141), 1, + ACTIONS(4761), 1, + anon_sym_DOT, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5668), 1, anon_sym_LPAREN, - STATE(3208), 1, - sym__reserved_identifier, - STATE(3221), 1, - sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3329), 1, - sym_generic_name, - STATE(3448), 1, - sym__name, - STATE(3455), 1, - sym_type, - STATE(7133), 1, - sym__array_base_type, - STATE(7411), 1, - sym__pointer_base_type, - STATE(3295), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3296), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3298), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4097), 9, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_BANG, + ACTIONS(5700), 1, + anon_sym_switch, + ACTIONS(5704), 1, + anon_sym_with, + ACTIONS(5975), 1, + anon_sym_as, + ACTIONS(6317), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_SLASH, + ACTIONS(6325), 1, + anon_sym_CARET, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6333), 1, + anon_sym_GT_GT, + ACTIONS(6339), 1, + anon_sym_DOT_DOT, + ACTIONS(6341), 1, + anon_sym_AMP_AMP, + ACTIONS(6343), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6345), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6347), 1, + anon_sym_is, + STATE(2934), 1, + sym_bracketed_argument_list, + STATE(3800), 1, + sym_argument_list, + ACTIONS(5688), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6321), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6335), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553834,28 +554256,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5866), 10, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [19665] = 31, + [20159] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553884,43 +554296,43 @@ static const uint16_t ts_small_parse_table[] = { sym_predefined_type, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6217), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6251), 1, anon_sym_ref, - ACTIONS(6221), 1, + ACTIONS(6255), 1, anon_sym_scoped, - ACTIONS(6223), 1, - anon_sym_var, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4362), 1, + STATE(4144), 1, + sym_identifier, + STATE(4360), 1, sym_tuple_type, - STATE(4457), 1, + STATE(4414), 1, sym__name, - STATE(4491), 1, + STATE(4530), 1, sym_array_type, - STATE(7322), 1, + STATE(7210), 1, sym__array_base_type, - STATE(7483), 1, + STATE(7400), 1, sym_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(2366), 3, + STATE(2337), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4316), 3, + STATE(4355), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4098), 9, + STATE(4102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553951,7 +554363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19792] = 31, + [20286] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553972,51 +554384,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3869), 1, sym__identifier_token, - ACTIONS(4066), 1, + ACTIONS(4255), 1, + anon_sym_ref, + ACTIONS(5778), 1, anon_sym_delegate, - ACTIONS(4070), 1, + ACTIONS(5782), 1, anon_sym_var, - ACTIONS(4072), 1, + ACTIONS(5784), 1, sym_predefined_type, - ACTIONS(4263), 1, - anon_sym_ref, - ACTIONS(5781), 1, + ACTIONS(5928), 1, anon_sym_scoped, - ACTIONS(6197), 1, + ACTIONS(6121), 1, anon_sym_LPAREN, - STATE(2978), 1, - sym_identifier, - STATE(2981), 1, + STATE(2952), 1, sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, + STATE(2964), 1, sym_generic_name, - STATE(3047), 1, + STATE(2968), 1, sym_type, - STATE(3138), 1, + STATE(2979), 1, + sym_array_type, + STATE(2987), 1, + sym_tuple_type, + STATE(3270), 1, + sym_identifier, + STATE(3584), 1, sym__name, - STATE(7165), 1, + STATE(7132), 1, sym__array_base_type, - STATE(7614), 1, + STATE(7662), 1, sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, + STATE(2966), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3041), 3, + STATE(2983), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4099), 9, + STATE(2992), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554026,7 +554438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, + ACTIONS(3871), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -554047,7 +554459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19919] = 31, + [20413] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554068,51 +554480,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, - sym__identifier_token, - ACTIONS(4164), 1, - anon_sym_ref, - ACTIONS(5746), 1, - anon_sym_delegate, - ACTIONS(5748), 1, - anon_sym_scoped, - ACTIONS(5750), 1, - anon_sym_var, - ACTIONS(5752), 1, - sym_predefined_type, - ACTIONS(6141), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - STATE(3208), 1, - sym__reserved_identifier, - STATE(3221), 1, - sym_identifier, - STATE(3297), 1, - sym_array_type, - STATE(3299), 1, - sym_tuple_type, - STATE(3308), 1, - sym_type, - STATE(3329), 1, - sym_generic_name, - STATE(3448), 1, - sym__name, - STATE(7133), 1, - sym__array_base_type, - STATE(7411), 1, - sym__pointer_base_type, - STATE(3295), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3296), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3298), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4100), 9, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6367), 1, + anon_sym_QMARK, + ACTIONS(6373), 1, + anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, + anon_sym_PIPE, + ACTIONS(6379), 1, + anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6391), 1, + anon_sym_AMP_AMP, + ACTIONS(6393), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6381), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5878), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554122,28 +554563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [20046] = 15, + [20557] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554164,66 +554584,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_into, - STATE(4023), 1, - aux_sym__query_body_repeat2, - STATE(4101), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6038), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, anon_sym_PIPE, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6391), 1, + anon_sym_AMP_AMP, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6036), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(4105), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [20141] = 40, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20697] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554244,70 +554686,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_switch, - ACTIONS(5734), 1, - anon_sym_with, - ACTIONS(5973), 1, - anon_sym_as, - ACTIONS(6280), 1, - anon_sym_QMARK, - ACTIONS(6286), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6288), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6290), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6292), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(6296), 1, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6302), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6304), 1, + ACTIONS(6427), 1, anon_sym_AMP_AMP, - ACTIONS(6306), 1, + ACTIONS(6429), 1, anon_sym_PIPE_PIPE, - ACTIONS(6308), 1, + ACTIONS(6431), 1, anon_sym_QMARK_QMARK, - ACTIONS(6312), 1, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, anon_sym_is, - STATE(2935), 1, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6278), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6282), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6284), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6294), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6298), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6300), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4102), 9, + ACTIONS(5682), 8, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554317,18 +554769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5172), 10, - anon_sym_COMMA, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [20286] = 31, + [20841] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554349,51 +554790,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, - sym__identifier_token, - ACTIONS(4066), 1, - anon_sym_delegate, - ACTIONS(4070), 1, - anon_sym_var, - ACTIONS(4072), 1, - sym_predefined_type, - ACTIONS(4077), 1, - anon_sym_ref, - ACTIONS(5856), 1, - anon_sym_scoped, - ACTIONS(6197), 1, - anon_sym_LPAREN, - STATE(2981), 1, - sym__reserved_identifier, - STATE(3040), 1, - sym_array_type, - STATE(3042), 1, - sym_tuple_type, - STATE(3046), 1, - sym_generic_name, - STATE(3047), 1, - sym_type, - STATE(4461), 1, - sym_identifier, - STATE(4952), 1, - sym__name, - STATE(7165), 1, - sym__array_base_type, - STATE(7614), 1, - sym__pointer_base_type, - STATE(3038), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3039), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3041), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4103), 9, + ACTIONS(4110), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_STAR, + ACTIONS(4949), 1, + anon_sym_QMARK, + ACTIONS(6439), 1, + anon_sym_DOT, + STATE(4107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554403,28 +554808,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(4022), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(4024), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [20413] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20939] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554445,24 +554871,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(6439), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4104), 9, + STATE(4108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554472,10 +554883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4880), 10, + ACTIONS(4026), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -554483,8 +554895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(4876), 25, + ACTIONS(4028), 32, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -554501,6 +554918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -554508,8 +554926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [20519] = 29, + [21031] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554530,49 +554949,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, + anon_sym_SLASH, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4105), 9, + anon_sym_GT_GT, + STATE(4109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554582,13 +554996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, + ACTIONS(5682), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -554602,7 +555018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20641] = 37, + [21147] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554623,64 +555039,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, ACTIONS(6373), 1, - anon_sym_GT_GT, + anon_sym_SLASH, ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6377), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, ACTIONS(6389), 1, - anon_sym_as, + anon_sym_DOT_DOT, ACTIONS(6391), 1, + anon_sym_AMP_AMP, + ACTIONS(6393), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4106), 9, + ACTIONS(5682), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554690,20 +555122,111 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + [21291] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6367), 1, + anon_sym_QMARK, + ACTIONS(6373), 1, + anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, + anon_sym_PIPE, + ACTIONS(6379), 1, + anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6391), 1, + anon_sym_AMP_AMP, + ACTIONS(6393), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6381), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20779] = 16, + STATE(4111), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [21435] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554724,13 +555247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - STATE(4163), 1, - sym_type_argument_list, - STATE(4107), 9, + STATE(4112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554740,21 +555257,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3682), 13, + ACTIONS(4121), 16, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, anon_sym_EQ_GT, - ACTIONS(3680), 28, + anon_sym_DASH_GT, + ACTIONS(4119), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -554772,18 +555292,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_from, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [20875] = 38, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [21525] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4113), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [21637] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554804,66 +555412,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, + ACTIONS(6413), 1, + anon_sym_AMP, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6375), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6389), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6391), 1, + ACTIONS(6435), 1, anon_sym_is, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - STATE(2455), 1, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4108), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(4114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554873,19 +555477,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 12, + anon_sym_where, + anon_sym_CARET, + anon_sym_and, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [21015] = 21, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [21771] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554906,57 +555511,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - STATE(2502), 1, + ACTIONS(6407), 1, + anon_sym_SLASH, + ACTIONS(6409), 1, + anon_sym_CARET, + ACTIONS(6413), 1, + anon_sym_AMP, + ACTIONS(6417), 1, + anon_sym_GT_GT, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4109), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4898), 10, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4896), 25, - anon_sym_where, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(4115), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 11, + anon_sym_where, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -554967,10 +555590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [21121] = 41, + [21907] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554991,91 +555611,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_or, - ACTIONS(6397), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, - ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, - anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, - ACTIONS(6423), 1, - anon_sym_AMP_AMP, - ACTIONS(6425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6431), 1, - anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + STATE(4116), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4879), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(4875), 25, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 8, - anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4110), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [21267] = 24, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [22013] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555096,30 +555696,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4111), 9, + STATE(4117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555129,7 +555725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5756), 10, + ACTIONS(1231), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -555140,7 +555736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(5754), 22, + ACTIONS(1229), 24, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -555151,6 +555747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -555163,7 +555760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [21379] = 14, + anon_sym_with, + [22121] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555184,9 +555782,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6435), 1, + ACTIONS(6441), 1, anon_sym_and, - STATE(4112), 9, + ACTIONS(6443), 1, + anon_sym_or, + STATE(4118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555196,7 +555796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -555208,7 +555808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 32, + ACTIONS(5480), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -555229,7 +555829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -555241,7 +555840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21471] = 27, + [22215] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555262,46 +555861,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6399), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6401), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 7, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_or, - STATE(4113), 9, + STATE(4119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555311,8 +555900,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 20, - anon_sym_where, + ACTIONS(1229), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -555320,19 +555915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_into, anon_sym_as, anon_sym_is, - [21589] = 15, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22323] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555353,11 +555947,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, + anon_sym_SLASH, + ACTIONS(6417), 1, + anon_sym_GT_GT, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, ACTIONS(6437), 1, - anon_sym_into, - STATE(4116), 1, - aux_sym__query_body_repeat2, - STATE(4114), 9, + anon_sym_with, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6405), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6415), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6421), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555367,36 +556008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(6042), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5682), 14, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -555407,11 +556023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21683] = 15, + [22453] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555432,65 +556044,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6437), 1, - anon_sym_into, - STATE(4117), 1, - aux_sym__query_body_repeat2, - STATE(4115), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6367), 1, + anon_sym_QMARK, + ACTIONS(6373), 1, anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, anon_sym_PIPE, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(6042), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6391), 1, + anon_sym_AMP_AMP, + ACTIONS(6393), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21777] = 14, + ACTIONS(5886), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4121), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [22597] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555511,64 +556148,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6439), 1, - anon_sym_into, - STATE(4116), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(6046), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, + STATE(4122), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21869] = 15, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22731] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555589,11 +556247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6437), 1, - anon_sym_into, - STATE(4116), 1, - aux_sym__query_body_repeat2, - STATE(4117), 9, + STATE(4123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555603,51 +556257,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 12, + ACTIONS(3722), 16, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + anon_sym_STAR, anon_sym_DOT, - anon_sym_or, - ACTIONS(6053), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3711), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_or, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [21963] = 41, + sym__identifier_token, + [22821] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555668,81 +556324,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5785), 1, - anon_sym_or, - ACTIONS(6397), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, anon_sym_SLASH, - ACTIONS(6405), 1, + ACTIONS(6375), 1, anon_sym_CARET, - ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, + ACTIONS(6379), 1, anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6383), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - ACTIONS(6423), 1, - anon_sym_AMP_AMP, - ACTIONS(6425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6399), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 8, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4118), 9, + STATE(4124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555752,7 +556390,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22109] = 41, + ACTIONS(5682), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22957] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555773,81 +556424,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5771), 1, - anon_sym_or, - ACTIONS(6397), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, - ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6383), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - ACTIONS(6423), 1, - anon_sym_AMP_AMP, - ACTIONS(6425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6399), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 8, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4119), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555857,7 +556487,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22255] = 14, + ACTIONS(5682), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [23089] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555878,9 +556522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - STATE(4120), 9, + STATE(4126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555890,52 +556532,130 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5390), 12, + ACTIONS(3676), 16, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + anon_sym_STAR, anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3674), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, anon_sym_or, - ACTIONS(3840), 31, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [23179] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4127), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3668), 16, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3666), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [22347] = 40, + sym__identifier_token, + [23269] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555956,80 +556676,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, + anon_sym_SLASH, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, ACTIONS(6423), 1, - anon_sym_AMP_AMP, + anon_sym_switch, ACTIONS(6425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, + anon_sym_DOT_DOT, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6435), 1, anon_sym_is, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6395), 2, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5684), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4128), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 12, anon_sym_where, + anon_sym_CARET, anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4121), 9, + [23401] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3615), 1, + anon_sym_where, + ACTIONS(5550), 1, + anon_sym_ref, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(2340), 1, + sym_ref_type, + STATE(2342), 1, + sym__scoped_base_type, + STATE(4540), 1, + sym_identifier, + STATE(5169), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4129), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3459), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + ACTIONS(29), 21, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [23511] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556039,7 +556871,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22491] = 40, + ACTIONS(3686), 16, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3684), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [23601] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556060,80 +556938,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, + anon_sym_SLASH, ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6442), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6377), 2, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4122), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556143,7 +556986,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22635] = 13, + ACTIONS(5682), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [23719] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556164,7 +557029,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4123), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3461), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_where, + ACTIONS(6259), 1, + anon_sym_ref, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(2340), 1, + sym_ref_type, + STATE(2342), 1, + sym__scoped_base_type, + STATE(6340), 1, + sym_identifier, + STATE(6389), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556174,39 +557063,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3668), 16, + ACTIONS(3459), 10, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3666), 28, + anon_sym_COLON_COLON, + ACTIONS(29), 21, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -556219,8 +557096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [22725] = 36, + [23831] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556241,64 +557117,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6383), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - ACTIONS(6429), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6399), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_or, - STATE(4124), 9, + anon_sym_AMP, + STATE(4133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556308,19 +557177,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, - anon_sym_and, + ACTIONS(5682), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [22861] = 21, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [23961] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556341,24 +557214,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4125), 9, + STATE(4134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556368,7 +557241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4902), 10, + ACTIONS(4887), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -556379,7 +557252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(4900), 25, + ACTIONS(4885), 25, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -556405,7 +557278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [22967] = 24, + [24067] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556426,31 +557299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(3615), 1, - anon_sym_where, - ACTIONS(6085), 1, - anon_sym_ref, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2340), 1, - sym_ref_type, - STATE(2343), 1, - sym__scoped_base_type, - STATE(6339), 1, - sym_identifier, - STATE(6393), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4126), 9, + STATE(4135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556460,27 +557309,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3459), 10, + ACTIONS(3680), 16, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(29), 21, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3678), 28, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -556493,7 +557354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [23079] = 26, + sym__identifier_token, + [24157] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556514,44 +557376,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4127), 9, + STATE(4136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556561,12 +557403,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4910), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(4908), 25, + anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -556574,16 +557425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [23195] = 41, + anon_sym_with, + [24263] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556604,72 +557461,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5174), 1, - anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6397), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, + ACTIONS(5868), 1, + anon_sym_or, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6405), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6407), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, ACTIONS(6413), 1, + anon_sym_AMP, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6423), 1, + ACTIONS(6427), 1, anon_sym_AMP_AMP, - ACTIONS(6425), 1, + ACTIONS(6429), 1, anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, + ACTIONS(6431), 1, anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6435), 1, anon_sym_is, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + ACTIONS(6445), 1, + anon_sym_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 8, + ACTIONS(5866), 8, anon_sym_where, anon_sym_and, anon_sym_from, @@ -556678,7 +557535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4128), 9, + STATE(4137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556688,7 +557545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [23341] = 34, + [24409] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556709,73 +557566,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6413), 1, - anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6431), 1, - anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + STATE(4138), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5926), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(5924), 24, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4129), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_where, - anon_sym_CARET, + anon_sym_switch, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -556786,7 +557628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [23473] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [24517] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556807,36 +557652,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4130), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + STATE(4139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556846,12 +557664,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5455), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(3881), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -556862,17 +557693,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [23581] = 40, + [24609] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556893,161 +557730,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6442), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, - anon_sym_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5736), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4131), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [23725] = 33, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6373), 1, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6375), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6389), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6391), 1, + ACTIONS(6435), 1, anon_sym_is, - STATE(2455), 1, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6387), 2, + ACTIONS(6419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4132), 9, + STATE(4140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557057,23 +557798,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5682), 11, + anon_sym_where, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [23855] = 24, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [24747] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557094,30 +557831,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6375), 1, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -557127,7 +557860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4133), 9, + STATE(4141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557137,7 +557870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 23, + ACTIONS(5924), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -557152,16 +557885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_with, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [23967] = 40, + [24855] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557182,184 +557917,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6442), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, - anon_sym_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4134), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [24111] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6373), 1, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6375), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6389), 1, + ACTIONS(6427), 1, + anon_sym_AMP_AMP, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6391), 1, + ACTIONS(6435), 1, anon_sym_is, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6442), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, - anon_sym_QMARK, - STATE(2455), 1, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4135), 9, + STATE(4142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557369,7 +557987,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [24255] = 35, + ACTIONS(5682), 10, + anon_sym_where, + anon_sym_and, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [24995] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557390,62 +558019,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, + ACTIONS(5810), 1, + anon_sym_or, + ACTIONS(6407), 1, anon_sym_SLASH, ACTIONS(6409), 1, - anon_sym_AMP, + anon_sym_CARET, + ACTIONS(6411), 1, + anon_sym_PIPE, ACTIONS(6413), 1, + anon_sym_AMP, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, + ACTIONS(6427), 1, + anon_sym_AMP_AMP, ACTIONS(6429), 1, - anon_sym_as, + anon_sym_PIPE_PIPE, ACTIONS(6431), 1, - anon_sym_is, + anon_sym_QMARK_QMARK, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + ACTIONS(6445), 1, + anon_sym_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4136), 9, + ACTIONS(5794), 8, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557455,20 +558103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_where, - anon_sym_CARET, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [24389] = 13, + [25141] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557489,7 +558124,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4137), 9, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + STATE(4127), 1, + sym_type_argument_list, + STATE(4144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557499,24 +558140,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4100), 16, + ACTIONS(3680), 13, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(4098), 28, + ACTIONS(3678), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -557545,7 +558183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [24479] = 22, + [25237] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557566,330 +558204,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4138), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5686), 10, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6367), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6373), 1, anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, anon_sym_PIPE, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5684), 24, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_and, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6391), 1, anon_sym_AMP_AMP, + ACTIONS(6393), 1, anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [24587] = 33, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6413), 1, - anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, - ACTIONS(6429), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6399), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6417), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4139), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_where, - anon_sym_CARET, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [24717] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4140), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 25, + ACTIONS(6387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [24825] = 35, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4141), 9, + STATE(4145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557899,21 +558287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [24959] = 40, + [25381] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557934,70 +558308,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, + ACTIONS(6367), 1, + anon_sym_QMARK, ACTIONS(6373), 1, - anon_sym_GT_GT, + anon_sym_SLASH, ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6377), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, ACTIONS(6389), 1, - anon_sym_as, + anon_sym_DOT_DOT, ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, anon_sym_AMP_AMP, - ACTIONS(6442), 1, + ACTIONS(6393), 1, anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, + ACTIONS(6395), 1, anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, - anon_sym_QMARK, - STATE(2455), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 9, + ACTIONS(5238), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -558007,7 +558381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4142), 9, + STATE(4146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558017,7 +558391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [25103] = 15, + [25525] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558038,11 +558412,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6437), 1, + ACTIONS(6447), 1, anon_sym_into, - STATE(4114), 1, + STATE(4149), 1, aux_sym__query_body_repeat2, - STATE(4143), 9, + STATE(4147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558052,7 +558426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 12, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558065,7 +558439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(6036), 30, + ACTIONS(6014), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -558096,7 +558470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [25197] = 15, + [25619] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558117,11 +558491,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6435), 1, - anon_sym_and, - ACTIONS(6448), 1, - anon_sym_or, - STATE(4144), 9, + ACTIONS(6447), 1, + anon_sym_into, + STATE(4150), 1, + aux_sym__query_body_repeat2, + STATE(4148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558131,7 +558505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558143,14 +558517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 31, - anon_sym_SEMI, + anon_sym_or, + ACTIONS(6014), 30, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -558164,18 +558535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [25291] = 13, + [25713] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558196,7 +558570,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4145), 9, + ACTIONS(6449), 1, + anon_sym_into, + STATE(4149), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558206,153 +558582,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3708), 16, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + aux_sym__query_body_repeat2, + ACTIONS(6020), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3697), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [25381] = 36, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6383), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(6018), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4146), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [25517] = 22, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [25805] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558373,26 +558648,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4147), 9, + ACTIONS(6447), 1, + anon_sym_into, + STATE(4149), 1, + aux_sym__query_body_repeat2, + STATE(4150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558402,19 +558662,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1231), 10, + ACTIONS(6027), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_DOT, anon_sym_or, - ACTIONS(1229), 24, + ACTIONS(6025), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -558425,6 +558691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -558437,8 +558704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [25625] = 40, + [25899] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558459,80 +558727,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5852), 1, + anon_sym_or, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, + ACTIONS(6417), 1, + anon_sym_GT_GT, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6427), 1, anon_sym_AMP_AMP, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, + ACTIONS(6431), 1, anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6445), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4148), 9, + ACTIONS(5850), 8, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558542,7 +558811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [25769] = 15, + [26045] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558563,11 +558832,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6435), 1, + ACTIONS(6441), 1, anon_sym_and, - ACTIONS(6448), 1, + ACTIONS(6443), 1, anon_sym_or, - STATE(4149), 9, + STATE(4152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558577,7 +558846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558589,7 +558858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 31, + ACTIONS(6171), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -558621,7 +558890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [25863] = 40, + [26139] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558642,70 +558911,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, + ACTIONS(6367), 1, + anon_sym_QMARK, ACTIONS(6373), 1, - anon_sym_GT_GT, + anon_sym_SLASH, ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6377), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6379), 1, anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, ACTIONS(6389), 1, - anon_sym_as, + anon_sym_DOT_DOT, ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, anon_sym_AMP_AMP, - ACTIONS(6442), 1, + ACTIONS(6393), 1, anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, + ACTIONS(6395), 1, anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, - anon_sym_QMARK, - STATE(2455), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 9, + ACTIONS(5874), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -558715,7 +558984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4150), 9, + STATE(4153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558725,7 +558994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [26007] = 13, + [26283] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558746,7 +559015,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4151), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, + anon_sym_SLASH, + ACTIONS(6383), 1, + anon_sym_GT_GT, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6369), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6371), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6381), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558756,53 +559067,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3682), 16, + ACTIONS(5682), 19, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3680), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [26097] = 13, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [26405] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558823,7 +559108,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4152), 9, + ACTIONS(6447), 1, + anon_sym_into, + STATE(4147), 1, + aux_sym__query_body_repeat2, + STATE(4155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558833,53 +559122,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3676), 16, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6010), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3674), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + ACTIONS(6008), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, - anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - sym__identifier_token, - [26187] = 41, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [26499] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558900,91 +559187,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5893), 1, - anon_sym_or, - ACTIONS(6397), 1, - anon_sym_QMARK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, + anon_sym_SLASH, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, ACTIONS(6423), 1, - anon_sym_AMP_AMP, + anon_sym_switch, ACTIONS(6425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6431), 1, - anon_sym_is, - ACTIONS(6433), 1, + anon_sym_DOT_DOT, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4156), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 18, + anon_sym_where, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 8, - anon_sym_where, anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4153), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [26333] = 34, + anon_sym_as, + anon_sym_is, + [26621] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559005,60 +559280,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - STATE(2455), 1, + ACTIONS(6437), 1, + anon_sym_with, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6377), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4154), 9, + anon_sym_GT_GT, + anon_sym_or, + STATE(4157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559068,108 +559328,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 20, + anon_sym_where, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [26465] = 23, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(3615), 1, - anon_sym_where, - ACTIONS(5551), 1, - anon_sym_ref, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2340), 1, - sym_ref_type, - STATE(2343), 1, - sym__scoped_base_type, - STATE(4474), 1, - sym_identifier, - STATE(5264), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4155), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3459), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - ACTIONS(29), 21, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [26575] = 40, + anon_sym_as, + anon_sym_is, + [26737] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559190,80 +559370,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_or, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6373), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - ACTIONS(6379), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6391), 1, - anon_sym_is, - ACTIONS(6393), 1, + ACTIONS(6417), 1, + anon_sym_GT_GT, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6427), 1, anon_sym_AMP_AMP, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_PIPE_PIPE, - ACTIONS(6444), 1, + ACTIONS(6431), 1, anon_sym_QMARK_QMARK, - ACTIONS(6446), 1, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6445), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6365), 2, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6371), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6377), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6385), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6387), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4156), 9, + ACTIONS(5870), 8, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559273,7 +559454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [26719] = 37, + [26883] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559294,76 +559475,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6405), 1, - anon_sym_CARET, - ACTIONS(6407), 1, - anon_sym_PIPE, - ACTIONS(6409), 1, - anon_sym_AMP, - ACTIONS(6413), 1, - anon_sym_GT_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6431), 1, - anon_sym_is, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6395), 2, + STATE(4159), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5684), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(5682), 22, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4157), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -559374,7 +559540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [26857] = 29, + anon_sym_as, + anon_sym_is, + [26995] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559395,50 +559563,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(6413), 1, - anon_sym_GT_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6425), 1, anon_sym_DOT_DOT, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6399), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 6, + ACTIONS(5684), 7, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, anon_sym_or, - STATE(4158), 9, + STATE(4160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559448,9 +559612,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 20, anon_sym_where, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -559467,7 +559633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [26979] = 26, + [27113] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559488,45 +559654,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_SLASH, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, - anon_sym_DOT_DOT, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6401), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - STATE(4159), 9, + ACTIONS(6441), 1, + anon_sym_and, + STATE(4161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559536,8 +559666,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 20, - anon_sym_where, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -559545,19 +559697,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + anon_sym_into, anon_sym_as, anon_sym_is, - [27095] = 13, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [27205] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559578,7 +559732,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4160), 9, + STATE(4162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559588,7 +559742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3686), 16, + ACTIONS(3672), 16, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -559605,7 +559759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(3684), 28, + ACTIONS(3670), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -559634,7 +559788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [27185] = 17, + [27295] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559655,15 +559809,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5240), 1, + anon_sym_or, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(4131), 1, - anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(6407), 1, + anon_sym_SLASH, + ACTIONS(6409), 1, + anon_sym_CARET, + ACTIONS(6411), 1, + anon_sym_PIPE, + ACTIONS(6413), 1, + anon_sym_AMP, + ACTIONS(6417), 1, + anon_sym_GT_GT, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6427), 1, + anon_sym_AMP_AMP, + ACTIONS(6429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6445), 1, anon_sym_QMARK, - ACTIONS(6450), 1, - anon_sym_DOT, - STATE(4161), 9, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6405), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6415), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6421), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5238), 8, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559673,49 +559893,213 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 10, + [27441] = 37, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6373), 1, + anon_sym_SLASH, + ACTIONS(6375), 1, + anon_sym_CARET, + ACTIONS(6377), 1, + anon_sym_PIPE, + ACTIONS(6379), 1, + anon_sym_AMP, + ACTIONS(6383), 1, + anon_sym_GT_GT, + ACTIONS(6389), 1, + anon_sym_DOT_DOT, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6371), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6381), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6385), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4164), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [27579] = 41, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5876), 1, + anon_sym_or, + ACTIONS(6407), 1, anon_sym_SLASH, + ACTIONS(6409), 1, + anon_sym_CARET, + ACTIONS(6411), 1, anon_sym_PIPE, + ACTIONS(6413), 1, anon_sym_AMP, + ACTIONS(6417), 1, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4058), 30, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6425), 1, + anon_sym_DOT_DOT, + ACTIONS(6427), 1, + anon_sym_AMP_AMP, + ACTIONS(6429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6431), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6435), 1, + anon_sym_is, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6445), 1, + anon_sym_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6401), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6405), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5874), 8, + anon_sym_where, anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [27283] = 38, + STATE(4165), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [27725] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559736,67 +560120,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6367), 1, + anon_sym_QMARK, + ACTIONS(6373), 1, anon_sym_SLASH, - ACTIONS(6405), 1, + ACTIONS(6375), 1, anon_sym_CARET, - ACTIONS(6407), 1, + ACTIONS(6377), 1, anon_sym_PIPE, - ACTIONS(6409), 1, + ACTIONS(6379), 1, anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6383), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6389), 1, anon_sym_DOT_DOT, - ACTIONS(6423), 1, + ACTIONS(6391), 1, anon_sym_AMP_AMP, - ACTIONS(6429), 1, + ACTIONS(6393), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6395), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6399), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6395), 2, + ACTIONS(6365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6369), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6371), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6381), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6385), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4162), 9, + ACTIONS(5866), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559806,18 +560203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_where, - anon_sym_and, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [27423] = 13, + [27869] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559838,7 +560224,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4163), 9, + ACTIONS(6452), 1, + anon_sym_and, + ACTIONS(6454), 1, + anon_sym_or, + STATE(4167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559848,127 +560238,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3672), 16, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3670), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [27513] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6375), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4164), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DOT, + ACTIONS(6171), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -559976,16 +560265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [27631] = 14, + anon_sym_DASH_GT, + anon_sym_with, + [27962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560006,9 +560302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6450), 1, - anon_sym_DOT, - STATE(4165), 9, + STATE(4168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560018,7 +560312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 11, + ACTIONS(5405), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560029,11 +560323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_DOT, anon_sym_or, - ACTIONS(4015), 32, + ACTIONS(5403), 31, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -560063,7 +560357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27723] = 41, + [28051] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560084,81 +560378,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5911), 1, - anon_sym_or, - ACTIONS(6397), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6458), 1, anon_sym_QMARK, - ACTIONS(6403), 1, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6405), 1, + ACTIONS(6466), 1, anon_sym_CARET, - ACTIONS(6407), 1, + ACTIONS(6468), 1, anon_sym_PIPE, - ACTIONS(6409), 1, + ACTIONS(6470), 1, anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6474), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6421), 1, + ACTIONS(6480), 1, anon_sym_DOT_DOT, - ACTIONS(6423), 1, + ACTIONS(6482), 1, anon_sym_AMP_AMP, - ACTIONS(6425), 1, + ACTIONS(6484), 1, anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, + ACTIONS(6486), 1, anon_sym_QMARK_QMARK, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6431), 1, + ACTIONS(6488), 1, anon_sym_is, - ACTIONS(6433), 1, - anon_sym_with, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 8, + ACTIONS(5794), 8, anon_sym_where, - anon_sym_and, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4166), 9, + STATE(4169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560168,7 +560460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [27869] = 13, + [28194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560189,7 +560481,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4167), 9, + STATE(4170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560199,7 +560491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5490), 12, + ACTIONS(5413), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560212,7 +560504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5488), 31, + ACTIONS(5411), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -560244,7 +560536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [27958] = 24, + [28283] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560265,40 +560557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4168), 9, + STATE(4171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560308,8 +560567,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 22, + ACTIONS(5409), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5407), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -560319,6 +560595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -560331,7 +560610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [28069] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [28372] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560352,61 +560633,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, + ACTIONS(6480), 1, anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6454), 2, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6464), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4169), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560416,9 +560672,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(1229), 24, anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -560429,7 +560694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [28202] = 36, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [28479] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560450,63 +560718,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, + anon_sym_PIPE, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - ACTIONS(6472), 1, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6488), 1, anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6454), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4170), 9, + ACTIONS(5866), 8, + anon_sym_where, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560516,19 +560800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [28337] = 13, + [28622] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560549,7 +560821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4171), 9, + STATE(4174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560559,7 +560831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5470), 12, + ACTIONS(5482), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560572,7 +560844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5468), 31, + ACTIONS(5480), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -560604,7 +560876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28426] = 34, + [28711] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560625,60 +560897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6464), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4172), 9, + ACTIONS(6490), 1, + anon_sym_into, + STATE(4175), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560688,90 +560909,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_where, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [28557] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4173), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 20, - anon_sym_where, + anon_sym_DOT, + ACTIONS(6018), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -560779,19 +560941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, - [28674] = 33, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [28802] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560812,57 +560974,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6464), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4174), 9, + ACTIONS(6493), 1, + anon_sym_into, + STATE(4175), 1, + aux_sym__query_body_repeat2, + STATE(4176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560872,22 +560988,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_where, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6025), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [28803] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [28895] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560908,7 +561052,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4175), 9, + ACTIONS(6452), 1, + anon_sym_and, + STATE(4177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560918,7 +561064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5438), 12, + ACTIONS(6201), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560931,7 +561077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5436), 31, + ACTIONS(6199), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -560948,7 +561094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -560963,7 +561108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28892] = 40, + [28986] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560984,71 +561129,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4178), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 24, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6476), 8, - anon_sym_where, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, @@ -561056,17 +561190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4176), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [29035] = 37, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [29093] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561087,75 +561214,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5756), 1, + STATE(4179), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5439), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6462), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6466), 1, anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6480), 1, - anon_sym_PIPE, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5437), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4177), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -561166,7 +561265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [29172] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29182] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561187,66 +561290,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, ACTIONS(6474), 1, - anon_sym_CARET, + anon_sym_GT_GT, ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - STATE(2455), 1, + anon_sym_DOT_DOT, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6470), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4178), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561256,8 +561350,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 14, anon_sym_where, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -561288,11 +561386,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_and, - ACTIONS(6490), 1, - anon_sym_or, - STATE(4179), 9, + ACTIONS(6493), 1, + anon_sym_into, + STATE(4196), 1, + aux_sym__query_body_repeat2, + STATE(4181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561302,7 +561400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561314,10 +561412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 30, + ACTIONS(6008), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -561334,17 +561436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, [29404] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, @@ -561366,70 +561464,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, ACTIONS(6482), 1, anon_sym_AMP_AMP, ACTIONS(6484), 1, anon_sym_PIPE_PIPE, ACTIONS(6486), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 8, + ACTIONS(5870), 8, anon_sym_where, anon_sym_from, anon_sym_into, @@ -561438,7 +561536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4180), 9, + STATE(4182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561448,7 +561546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [29547] = 15, + [29547] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561469,64 +561567,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6492), 1, - anon_sym_into, - STATE(4189), 1, - aux_sym__query_body_repeat2, - STATE(4181), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + STATE(4183), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 11, + anon_sym_where, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [29640] = 13, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [29684] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561547,48 +561667,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4182), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5446), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5444), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, + STATE(4184), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 10, + anon_sym_where, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -561598,11 +561747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [29729] = 13, + [29823] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561623,50 +561768,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4183), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5446), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5444), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5238), 8, + anon_sym_where, anon_sym_from, anon_sym_into, anon_sym_join, @@ -561674,11 +561840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [29818] = 15, + STATE(4185), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [29966] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561699,11 +561871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6492), 1, - anon_sym_into, - STATE(4220), 1, - aux_sym__query_body_repeat2, - STATE(4184), 9, + STATE(4186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561713,7 +561881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(5423), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561725,14 +561893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 30, - anon_sym_SEMI, + anon_sym_or, + ACTIONS(5421), 31, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -561746,17 +561911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [29911] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [30055] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561777,70 +561947,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, anon_sym_CARET, - ACTIONS(6480), 1, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, ACTIONS(6482), 1, anon_sym_AMP_AMP, ACTIONS(6484), 1, anon_sym_PIPE_PIPE, ACTIONS(6486), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_where, anon_sym_from, anon_sym_into, @@ -561849,7 +562019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4185), 9, + STATE(4187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561859,7 +562029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [30054] = 40, + [30198] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561880,89 +562050,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(6213), 1, + anon_sym_ref, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(2340), 1, + sym_ref_type, + STATE(2342), 1, + sym__scoped_base_type, + STATE(4540), 1, + sym_identifier, + STATE(5169), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4188), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3459), 10, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6454), 2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6464), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 8, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - STATE(4186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [30197] = 13, + [30305] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561983,7 +562135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4187), 9, + STATE(4189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561993,7 +562145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5494), 12, + ACTIONS(5431), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562006,7 +562158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5492), 31, + ACTIONS(5429), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -562038,7 +562190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30286] = 13, + [30394] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562059,50 +562211,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4188), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5430), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5428), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6495), 8, + anon_sym_where, anon_sym_from, anon_sym_into, anon_sym_join, @@ -562110,11 +562283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [30375] = 14, + STATE(4190), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [30537] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562135,9 +562314,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6494), 1, - anon_sym_into, - STATE(4189), 10, + STATE(4191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562147,51 +562324,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6046), 30, + ACTIONS(3699), 15, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [30466] = 22, + anon_sym_DOT, + anon_sym_EQ_GT, + ACTIONS(3697), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [30626] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562212,36 +562390,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6452), 1, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, + anon_sym_SLASH, + ACTIONS(6480), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4190), 9, + STATE(4192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562251,10 +562438,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 24, + ACTIONS(5682), 20, anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -562262,7 +562447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -562275,8 +562459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_with, - [30573] = 13, + [30743] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562297,7 +562480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4191), 9, + STATE(4193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562307,7 +562490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5466), 12, + ACTIONS(5486), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562320,7 +562503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5464), 31, + ACTIONS(5484), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -562352,7 +562535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30662] = 13, + [30832] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562373,47 +562556,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4192), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5498), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5496), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4194), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 12, + anon_sym_where, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -562424,11 +562632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [30751] = 13, + [30963] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562449,7 +562653,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4193), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, + anon_sym_SLASH, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6472), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562459,37 +562705,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5486), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5484), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5682), 18, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -562502,9 +562724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [30840] = 13, + [31084] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562525,7 +562745,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4194), 9, + ACTIONS(6493), 1, + anon_sym_into, + STATE(4175), 1, + aux_sym__query_body_repeat2, + STATE(4196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562535,7 +562759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5434), 12, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562547,11 +562771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5432), 31, + ACTIONS(6014), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -562565,22 +562792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30929] = 14, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [31177] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562601,9 +562823,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_and, - STATE(4195), 9, + ACTIONS(6493), 1, + anon_sym_into, + STATE(4176), 1, + aux_sym__query_body_repeat2, + STATE(4197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562613,7 +562837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 12, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562625,11 +562849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(6201), 30, + ACTIONS(6014), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -562646,18 +562873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31020] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [31270] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562678,7 +562901,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4196), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, + anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, + anon_sym_PIPE, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6472), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6476), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6478), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 8, + anon_sym_where, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562688,27 +562983,76 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5390), 12, + [31413] = 26, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6464), 1, + anon_sym_SLASH, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6462), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(3840), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4199), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 20, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -562716,9 +563060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -562731,9 +563072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [31109] = 13, + [31528] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562754,7 +563093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4197), 9, + STATE(4200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562764,52 +563103,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3721), 15, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5447), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(3719), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + ACTIONS(5445), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, - anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - sym__identifier_token, - [31198] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [31617] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562830,7 +563169,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4198), 9, + STATE(4201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562840,7 +563179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5426), 12, + ACTIONS(5498), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562853,7 +563192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5424), 31, + ACTIONS(5496), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -562885,7 +563224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31287] = 13, + [31706] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562906,7 +563245,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4199), 9, + ACTIONS(4303), 1, + anon_sym_or, + ACTIONS(4295), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562916,7 +563267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5450), 12, + ACTIONS(5503), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562928,11 +563279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5448), 31, + ACTIONS(5500), 22, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -562946,22 +563295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31376] = 13, + [31799] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562982,7 +563323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4200), 9, + STATE(4203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562992,7 +563333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5454), 12, + ACTIONS(5514), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563005,7 +563346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5452), 31, + ACTIONS(5512), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -563037,7 +563378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31465] = 40, + [31888] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563058,71 +563399,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4204), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 22, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 8, - anon_sym_where, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, @@ -563130,17 +563463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4201), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [31608] = 15, + anon_sym_as, + anon_sym_is, + [31999] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563161,11 +563486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_and, - ACTIONS(6490), 1, - anon_sym_or, - STATE(4202), 9, + STATE(4205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563175,7 +563496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(5455), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563187,7 +563508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 30, + anon_sym_or, + ACTIONS(3881), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -563204,6 +563526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -563218,7 +563541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [31701] = 22, + [32088] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563239,27 +563562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(6259), 1, - anon_sym_ref, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2340), 1, - sym_ref_type, - STATE(2343), 1, - sym__scoped_base_type, - STATE(4474), 1, - sym_identifier, - STATE(5264), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4203), 9, + STATE(4206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563269,41 +563572,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3459), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(5490), 12, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + anon_sym_or, + ACTIONS(5488), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [31808] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32177] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563324,11 +563638,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6492), 1, + ACTIONS(4303), 1, + anon_sym_or, + ACTIONS(4295), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, anon_sym_into, - STATE(4181), 1, - aux_sym__query_body_repeat2, - STATE(4204), 9, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563338,7 +563660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(5509), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563350,14 +563672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 30, - anon_sym_SEMI, + ACTIONS(5506), 22, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -563378,10 +563695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [31901] = 29, + [32270] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563402,49 +563716,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6466), 1, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - STATE(2455), 1, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4205), 9, + ACTIONS(6476), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6478), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563454,13 +563780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 12, anon_sym_where, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -563471,9 +563793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - [32022] = 13, + [32403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563494,7 +563814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4206), 9, + STATE(4209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563504,7 +563824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 12, + ACTIONS(5419), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563517,7 +563837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5456), 31, + ACTIONS(5417), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -563549,7 +563869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32111] = 40, + [32492] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563570,71 +563890,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + STATE(4210), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5419), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6462), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6466), 1, anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5417), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 8, - anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, @@ -563642,17 +563941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4207), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [32254] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32581] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563673,79 +563966,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, - anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6464), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5172), 8, - anon_sym_where, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4208), 9, + anon_sym_and, + ACTIONS(6454), 1, + anon_sym_or, + STATE(4211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563755,92 +563980,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32397] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6348), 1, - anon_sym_as, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6462), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6466), 1, anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, - anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6482), 1, - anon_sym_AMP_AMP, - ACTIONS(6484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6486), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(5480), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6456), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6458), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 8, - anon_sym_where, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_into, anon_sym_join, @@ -563848,17 +564019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4209), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [32540] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32674] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563879,7 +564044,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4210), 9, + STATE(4212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563889,7 +564054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5462), 12, + ACTIONS(5443), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563902,7 +564067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5460), 31, + ACTIONS(5441), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -563934,7 +564099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32629] = 13, + [32763] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563955,7 +564120,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4211), 9, + STATE(4213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563965,7 +564130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5478), 12, + ACTIONS(5435), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563978,7 +564143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5476), 31, + ACTIONS(5433), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -564010,7 +564175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32718] = 40, + [32852] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564031,70 +564196,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6348), 1, + ACTIONS(6309), 1, anon_sym_as, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, - ACTIONS(6462), 1, - anon_sym_AMP, ACTIONS(6466), 1, - anon_sym_GT_GT, - ACTIONS(6472), 1, - anon_sym_is, - ACTIONS(6474), 1, anon_sym_CARET, - ACTIONS(6478), 1, - anon_sym_QMARK, - ACTIONS(6480), 1, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, ACTIONS(6482), 1, anon_sym_AMP_AMP, ACTIONS(6484), 1, anon_sym_PIPE_PIPE, ACTIONS(6486), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6454), 2, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6456), 2, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6458), 2, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6464), 2, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6468), 2, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6470), 2, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 8, + ACTIONS(5886), 8, anon_sym_where, anon_sym_from, anon_sym_into, @@ -564103,7 +564268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4212), 9, + STATE(4214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564113,7 +564278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32861] = 22, + [32995] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564134,36 +564299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4213), 9, + STATE(4215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564173,8 +564309,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 24, + ACTIONS(5453), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5451), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -564185,6 +564338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -564197,8 +564352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [32968] = 15, + [33084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564219,19 +564375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4354), 1, - anon_sym_or, - ACTIONS(4346), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4214), 9, + STATE(4216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564241,7 +564385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5507), 11, + ACTIONS(5427), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -564253,9 +564397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5504), 22, + anon_sym_or, + ACTIONS(5425), 31, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -564269,14 +564415,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33061] = 15, + [33173] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564297,19 +564451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4354), 1, - anon_sym_or, - ACTIONS(4346), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4215), 9, + STATE(4217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564319,7 +564461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5513), 11, + ACTIONS(5390), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -564331,9 +564473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5510), 22, + anon_sym_or, + ACTIONS(5388), 31, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -564347,14 +564491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33154] = 26, + [33262] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564375,44 +564527,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6452), 1, - anon_sym_DOT_DOT, - ACTIONS(6460), 1, + ACTIONS(6464), 1, anon_sym_SLASH, - STATE(2455), 1, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6470), 1, + anon_sym_AMP, + ACTIONS(6474), 1, + anon_sym_GT_GT, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6458), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6456), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6460), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4216), 9, + ACTIONS(6462), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6472), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6476), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6478), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564422,15 +564593,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 20, + ACTIONS(5682), 11, anon_sym_where, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -564441,9 +564605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - [33269] = 13, + [33397] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564464,7 +564626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4217), 9, + STATE(4219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564474,7 +564636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 12, + ACTIONS(5390), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -564487,7 +564649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5416), 31, + ACTIONS(5388), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -564519,7 +564681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33358] = 13, + [33486] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564540,50 +564702,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4218), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5462), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6309), 1, + anon_sym_as, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6458), 1, + anon_sym_QMARK, + ACTIONS(6464), 1, anon_sym_SLASH, + ACTIONS(6466), 1, + anon_sym_CARET, + ACTIONS(6468), 1, anon_sym_PIPE, + ACTIONS(6470), 1, anon_sym_AMP, + ACTIONS(6474), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5460), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6480), 1, + anon_sym_DOT_DOT, + ACTIONS(6482), 1, + anon_sym_AMP_AMP, + ACTIONS(6484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6488), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6456), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6462), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6472), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6476), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5878), 8, + anon_sym_where, anon_sym_from, anon_sym_into, anon_sym_join, @@ -564591,11 +564774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [33447] = 13, + STATE(4220), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [33629] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564616,7 +564805,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4219), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + ACTIONS(6507), 1, + anon_sym_with, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6499), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564626,27 +564853,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5482), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5480), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -564654,24 +564866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [33536] = 15, + [33745] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564692,11 +564894,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6492), 1, - anon_sym_into, - STATE(4189), 1, - aux_sym__query_body_repeat2, - STATE(4220), 9, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(4767), 1, + anon_sym_var, + ACTIONS(6509), 1, + sym_predefined_type, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6683), 1, + sym__name, + STATE(6783), 1, + sym_tuple_type, + STATE(6850), 1, + sym_array_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7413), 1, + sym__ref_base_type, + STATE(7424), 1, + sym_implicit_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6851), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564706,50 +564942,131 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(2997), 21, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [33865] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6519), 1, anon_sym_SLASH, + ACTIONS(6521), 1, + anon_sym_CARET, + ACTIONS(6523), 1, anon_sym_PIPE, + ACTIONS(6525), 1, anon_sym_AMP, + ACTIONS(6529), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, + anon_sym_AMP_AMP, + ACTIONS(6539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6541), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [33629] = 34, + ACTIONS(5794), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4223), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [34007] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564770,60 +565087,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_is, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4221), 9, + STATE(4224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564833,19 +565151,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, + ACTIONS(5682), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [33759] = 40, + anon_sym_into, + [34139] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564866,78 +565184,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6513), 1, anon_sym_QMARK, - ACTIONS(6523), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6527), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, + ACTIONS(6537), 1, anon_sym_AMP_AMP, - ACTIONS(6545), 1, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6543), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4222), 9, + ACTIONS(5870), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564947,7 +565265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33901] = 34, + [34281] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564968,60 +565286,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6533), 1, + ACTIONS(6521), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_PIPE, + ACTIONS(6525), 1, + anon_sym_AMP, + ACTIONS(6529), 1, anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, + anon_sym_AMP_AMP, ACTIONS(6539), 1, - anon_sym_switch, + anon_sym_PIPE_PIPE, ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6543), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4223), 9, + ACTIONS(5682), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565031,19 +565367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [34031] = 22, + [34423] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565064,26 +565388,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6555), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -565093,7 +565417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4224), 9, + STATE(4227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565103,11 +565427,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1229), 23, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -565118,16 +565439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, anon_sym_with, - [34137] = 27, + [34529] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565148,45 +565472,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6519), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6521), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4225), 9, + STATE(4228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565196,12 +565515,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, + ACTIONS(5682), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -565216,7 +565537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [34253] = 29, + [34639] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565237,49 +565558,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - STATE(2827), 1, + ACTIONS(6569), 1, + anon_sym_QMARK, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6519), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(6567), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4226), 9, + ACTIONS(6577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6581), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6583), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565289,25 +565639,109 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + [34781] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6569), 1, + anon_sym_QMARK, + ACTIONS(6571), 1, anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6499), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5238), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [34373] = 40, + STATE(4230), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [34923] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565328,70 +565762,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6503), 1, - anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 7, + ACTIONS(5866), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -565399,7 +565833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4227), 9, + STATE(4231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565409,7 +565843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34515] = 40, + [35065] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565430,70 +565864,264 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_is, + ACTIONS(6595), 1, + anon_sym_CARET, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6549), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6555), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6559), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6561), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4232), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + [35199] = 34, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, + anon_sym_SLASH, ACTIONS(6557), 1, + anon_sym_GT_GT, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, + anon_sym_is, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6549), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6555), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6559), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6561), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4233), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + [35329] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6513), 1, anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6571), 7, + ACTIONS(6597), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -565501,7 +566129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4228), 9, + STATE(4234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565511,7 +566139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34657] = 40, + [35471] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565532,9 +566160,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -565542,68 +566170,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6575), 1, - anon_sym_QMARK, - ACTIONS(6581), 1, - anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, - anon_sym_AMP, - ACTIONS(6591), 1, - anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4235), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4229), 9, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [35577] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6599), 1, + anon_sym_and, + STATE(4236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565613,7 +566256,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34799] = 40, + ACTIONS(6201), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(6199), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [35667] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565634,70 +566320,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6503), 1, - anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 7, + ACTIONS(6601), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -565705,7 +566391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4230), 9, + STATE(4237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565715,7 +566401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34941] = 29, + [35809] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565736,49 +566422,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6499), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4231), 9, + STATE(4238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565788,25 +566474,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - anon_sym_where, + ACTIONS(5682), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, - [35061] = 40, + [35929] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565827,70 +566513,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6569), 1, + anon_sym_QMARK, + ACTIONS(6571), 1, anon_sym_CARET, - ACTIONS(6527), 1, + ACTIONS(6573), 1, anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(6575), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6543), 1, + ACTIONS(6585), 1, anon_sym_AMP_AMP, - ACTIONS(6545), 1, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, + ACTIONS(6589), 1, anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, + ACTIONS(6591), 1, anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6593), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6605), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 7, + ACTIONS(5874), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -565898,7 +566584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4232), 9, + STATE(4239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565908,7 +566594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35203] = 33, + [36071] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565929,57 +566615,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, - anon_sym_is, - ACTIONS(6553), 1, + ACTIONS(6161), 1, anon_sym_with, - STATE(2827), 1, + ACTIONS(6551), 1, + anon_sym_SLASH, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4233), 9, + anon_sym_GT_GT, + STATE(4240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565989,21 +566663,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_SEMI, + ACTIONS(5682), 19, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [35331] = 26, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [36187] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566024,35 +566704,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6513), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(6507), 1, + anon_sym_with, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6501), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -566061,7 +566741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4234), 9, + STATE(4241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566071,8 +566751,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_where, + ACTIONS(5682), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -566080,18 +566764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, - [35445] = 24, + [36301] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566112,40 +566792,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - STATE(2827), 1, + ACTIONS(6551), 1, + anon_sym_SLASH, + ACTIONS(6557), 1, + anon_sym_GT_GT, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6549), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6555), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6561), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4235), 9, + STATE(4242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566155,29 +566852,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 21, - anon_sym_SEMI, + ACTIONS(5682), 13, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [35555] = 24, + anon_sym_into, + [36429] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566198,72 +566887,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_PIPE, + ACTIONS(6525), 1, + anon_sym_AMP, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(6537), 1, + anon_sym_AMP_AMP, + ACTIONS(6539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6541), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4236), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 21, - anon_sym_where, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6603), 7, + anon_sym_where, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - [35665] = 35, + STATE(4243), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [36571] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566284,61 +566989,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_is, - ACTIONS(6563), 1, - anon_sym_AMP, - STATE(2502), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6497), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4237), 9, + STATE(4244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566348,19 +567056,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_where, - anon_sym_CARET, + ACTIONS(5682), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [35797] = 36, + anon_sym_into, + [36707] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566381,63 +567088,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, anon_sym_is, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6563), 1, - anon_sym_AMP, - STATE(2502), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(6497), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6499), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4238), 9, + STATE(4245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566447,18 +567152,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_where, + ACTIONS(5682), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [35931] = 40, + [36839] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566479,78 +567185,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_is, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6595), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6605), 1, anon_sym_PIPE, - ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6607), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6607), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4239), 9, + ACTIONS(5682), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566560,7 +567264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [36073] = 27, + [36977] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566581,45 +567285,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6513), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6499), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(6567), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4240), 9, + ACTIONS(6577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6581), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6583), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566629,27 +567351,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_where, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(5682), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - [36189] = 40, + [37111] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566670,78 +567383,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6545), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6565), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, + ACTIONS(6595), 1, + anon_sym_CARET, ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 7, - anon_sym_SEMI, + ACTIONS(5866), 7, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4241), 9, + anon_sym_into, + STATE(4248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566751,7 +567464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [36331] = 33, + [37253] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566772,57 +567485,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(1401), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, + STATE(4389), 1, + sym_argument_list, + STATE(4651), 1, + sym_initializer_expression, + STATE(4249), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4815), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4811), 27, + sym_interpolation_close_brace, anon_sym_LBRACK, - ACTIONS(6419), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_switch, - ACTIONS(6429), 1, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, - ACTIONS(6433), 1, + anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - ACTIONS(6503), 1, + [37349] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6559), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4242), 9, + ACTIONS(5682), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566832,21 +567645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_where, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [36459] = 15, + [37491] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566867,26 +567666,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym_EQ, - ACTIONS(3459), 7, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3628), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_EQ_GT, - STATE(4243), 9, + STATE(4251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566896,13 +567676,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3631), 26, + ACTIONS(4148), 14, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_EQ_GT, + ACTIONS(4146), 28, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -566923,7 +567720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [36551] = 37, + [37579] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566944,175 +567741,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6503), 1, - anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6559), 1, + anon_sym_QMARK, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6525), 1, anon_sym_AMP, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6499), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6501), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6505), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6511), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4244), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_where, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_AMP_AMP, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [36687] = 38, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, - anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6543), 1, anon_sym_is, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6561), 1, - anon_sym_PIPE, - ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, - anon_sym_AMP_AMP, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(6617), 7, anon_sym_where, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4245), 9, + STATE(4252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567122,7 +567822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [36825] = 37, + [37721] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567143,64 +567843,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, - anon_sym_AMP, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, - anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6531), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6535), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4246), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567210,18 +567882,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + ACTIONS(5924), 23, + anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [36961] = 40, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [37827] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567242,78 +567927,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6561), 1, - anon_sym_PIPE, ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, - anon_sym_AMP_AMP, - ACTIONS(6567), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6511), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4247), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567323,7 +567979,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37103] = 22, + ACTIONS(5682), 17, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [37947] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567344,70 +568018,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6541), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, + anon_sym_SLASH, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, + anon_sym_GT_GT, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6565), 1, + anon_sym_is, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, + anon_sym_QMARK, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4248), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 23, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5870), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [37209] = 15, + anon_sym_into, + STATE(4255), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [38089] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567428,11 +568120,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6609), 1, + ACTIONS(6599), 1, anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(6619), 1, anon_sym_or, - STATE(4249), 9, + STATE(4256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567442,7 +568134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567454,7 +568146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 29, + ACTIONS(5480), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -567484,82 +568176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [37301] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4250), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4096), 14, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_EQ_GT, - ACTIONS(4094), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [37389] = 38, + [38181] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567580,76 +568197,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6523), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, - anon_sym_AMP, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6591), 1, anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6593), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4251), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567659,7 +568260,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37527] = 40, + ACTIONS(5682), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [38311] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567680,78 +568293,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6545), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6565), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, + ACTIONS(6595), 1, + anon_sym_CARET, ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 7, - anon_sym_SEMI, + ACTIONS(5238), 7, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4252), 9, + anon_sym_into, + STATE(4258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567761,7 +568374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37669] = 15, + [38453] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567782,11 +568395,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6613), 1, + ACTIONS(6621), 1, anon_sym_into, - STATE(4259), 1, + STATE(4267), 1, aux_sym__query_body_repeat2, - STATE(4253), 9, + STATE(4259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567796,7 +568409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567808,7 +568421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 29, + ACTIONS(6008), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -567838,7 +568451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [37761] = 15, + [38545] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567859,11 +568472,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6613), 1, - anon_sym_into, - STATE(4260), 1, - aux_sym__query_body_repeat2, - STATE(4254), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6521), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_PIPE, + ACTIONS(6525), 1, + anon_sym_AMP, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, + anon_sym_AMP_AMP, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6517), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6527), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6531), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6533), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 9, + anon_sym_where, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567873,26 +568551,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [38683] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6517), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4261), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 19, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -567900,8 +568629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -567913,9 +568640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [37853] = 40, + [38799] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567936,78 +568661,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6575), 1, - anon_sym_QMARK, - ACTIONS(6581), 1, - anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, - anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, anon_sym_is, - STATE(2669), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4255), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568017,7 +568721,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37995] = 29, + ACTIONS(5682), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [38927] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568038,49 +568756,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6581), 1, - anon_sym_SLASH, - ACTIONS(6591), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, anon_sym_GT_GT, - STATE(2669), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6577), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(6567), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4256), 9, + ACTIONS(6577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6581), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6583), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568090,25 +568823,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - anon_sym_COLON, + ACTIONS(5682), 10, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [38115] = 26, + [39063] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568129,44 +568855,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6581), 1, - anon_sym_SLASH, - STATE(2669), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6579), 2, + ACTIONS(6497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(6567), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4257), 9, + ACTIONS(6577), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6581), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6583), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568176,27 +568934,109 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + [39201] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6571), 1, anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6499), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [38229] = 40, + STATE(4265), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [39343] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568217,78 +569057,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6569), 1, anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6571), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6573), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6575), 1, anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, + ACTIONS(6589), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6497), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6499), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4258), 9, + ACTIONS(5794), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568298,7 +569138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [38371] = 14, + [39485] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568319,9 +569159,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6615), 1, + ACTIONS(6621), 1, anon_sym_into, - STATE(4259), 10, + STATE(4280), 1, + aux_sym__query_body_repeat2, + STATE(4267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568331,8 +569173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -568344,7 +569185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 29, + ACTIONS(6014), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -568374,7 +569215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38461] = 15, + [39577] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568395,11 +569236,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6613), 1, + ACTIONS(6621), 1, anon_sym_into, - STATE(4259), 1, + STATE(4283), 1, aux_sym__query_body_repeat2, - STATE(4260), 9, + STATE(4268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568409,7 +569250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -568421,7 +569262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 29, + ACTIONS(6014), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -568451,7 +569292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38553] = 40, + [39669] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568472,78 +569313,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6575), 1, + ACTIONS(6513), 1, anon_sym_QMARK, - ACTIONS(6581), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6583), 1, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6585), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_AMP_AMP, - ACTIONS(6599), 1, + ACTIONS(6539), 1, anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, + ACTIONS(6541), 1, anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, + ACTIONS(6543), 1, anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4261), 9, + ACTIONS(5238), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568553,7 +569394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [38695] = 24, + [39811] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568574,72 +569415,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6501), 1, + anon_sym_SLASH, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6569), 1, + anon_sym_QMARK, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(6575), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_GT_GT, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4262), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5866), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [38805] = 35, + STATE(4270), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [39953] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568660,9 +569517,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -568670,51 +569527,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6587), 1, - anon_sym_AMP, - ACTIONS(6591), 1, - anon_sym_GT_GT, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6573), 2, + ACTIONS(6549), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6595), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4263), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568724,19 +569564,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(5682), 19, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - [38937] = 35, + anon_sym_as, + anon_sym_is, + [40067] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568757,83 +569605,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6599), 1, + anon_sym_and, + ACTIONS(6619), 1, + anon_sym_or, + STATE(4272), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6523), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6529), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6533), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, - anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6171), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6521), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4264), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [39069] = 36, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [40159] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568854,9 +569682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -568864,53 +569692,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6587), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6603), 1, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, anon_sym_is, - STATE(2669), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, + anon_sym_QMARK, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6573), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4265), 9, + ACTIONS(5878), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568920,18 +569763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - [39203] = 34, + [40301] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568952,9 +569784,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -568962,50 +569794,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6591), 1, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6603), 1, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, anon_sym_is, - STATE(2669), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, + anon_sym_QMARK, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4266), 9, + ACTIONS(5850), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569015,19 +569865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - [39333] = 27, + [40443] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569048,45 +569886,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - STATE(2669), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6577), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4267), 9, + STATE(4275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569096,11 +569933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 19, + anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -569108,15 +569942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - [39449] = 33, + [40557] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569137,57 +569974,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - ACTIONS(6581), 1, - anon_sym_SLASH, - ACTIONS(6591), 1, - anon_sym_GT_GT, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6595), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4268), 9, + anon_sym_GT_GT, + STATE(4276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569197,21 +570017,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 21, + anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - [39577] = 37, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + [40667] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569232,64 +570060,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6583), 1, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6585), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6603), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6537), 1, + anon_sym_AMP_AMP, + ACTIONS(6539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6541), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6543), 1, anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4269), 9, + ACTIONS(5874), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569299,18 +570141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - [39713] = 40, + [40809] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569331,88 +570162,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6575), 1, + ACTIONS(4295), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + ACTIONS(5500), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4278), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6581), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, anon_sym_PIPE, - ACTIONS(6587), 1, anon_sym_AMP, - ACTIONS(6591), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(5153), 23, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6577), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6579), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4270), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [39855] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [40901] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569433,78 +570239,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6503), 1, - anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6561), 1, - anon_sym_PIPE, ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, - anon_sym_AMP_AMP, - ACTIONS(6567), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6505), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6511), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6618), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4271), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569514,7 +570282,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39997] = 15, + ACTIONS(5682), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [41011] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569535,11 +570325,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6613), 1, + ACTIONS(6623), 1, anon_sym_into, - STATE(4253), 1, - aux_sym__query_body_repeat2, - STATE(4272), 9, + STATE(4280), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569549,7 +570337,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569561,7 +570350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 29, + ACTIONS(6018), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -569591,7 +570380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40089] = 40, + [41101] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569612,78 +570401,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6545), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6565), 1, anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, + ACTIONS(6595), 1, + anon_sym_CARET, ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 7, - anon_sym_SEMI, + ACTIONS(5874), 7, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4273), 9, + anon_sym_into, + STATE(4281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569693,7 +570482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40231] = 38, + [41243] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569714,9 +570503,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -569724,66 +570513,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6603), 1, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, anon_sym_is, - STATE(2669), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, + ACTIONS(6609), 1, + anon_sym_QMARK, + ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(5886), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4274), 9, + STATE(4282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569793,7 +570584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40369] = 14, + [41385] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569814,9 +570605,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6609), 1, - anon_sym_and, - STATE(4275), 9, + ACTIONS(6621), 1, + anon_sym_into, + STATE(4280), 1, + aux_sym__query_body_repeat2, + STATE(4283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569826,7 +570619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 12, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569838,8 +570631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(6201), 29, + ACTIONS(6025), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -569869,7 +570661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40459] = 22, + [41477] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569890,36 +570682,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(6543), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6517), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6527), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6533), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4276), 9, + STATE(4284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569929,18 +570742,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 23, + ACTIONS(5682), 13, anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -569950,10 +570756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [40565] = 15, + [41605] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569974,11 +570777,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6551), 1, + anon_sym_SLASH, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6557), 1, + anon_sym_GT_GT, + ACTIONS(6563), 1, + anon_sym_DOT_DOT, + ACTIONS(6565), 1, + anon_sym_is, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, + anon_sym_AMP_AMP, ACTIONS(6609), 1, - anon_sym_and, + anon_sym_QMARK, ACTIONS(6611), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6613), 1, + anon_sym_QMARK_QMARK, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6549), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6555), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6559), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6561), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_or, - STATE(4277), 9, + anon_sym_into, + STATE(4285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569988,49 +570858,109 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [41747] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6501), 1, anon_sym_SLASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6569), 1, + anon_sym_QMARK, + ACTIONS(6571), 1, + anon_sym_CARET, + ACTIONS(6573), 1, anon_sym_PIPE, + ACTIONS(6575), 1, anon_sym_AMP, + ACTIONS(6579), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6585), 1, + anon_sym_AMP_AMP, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6593), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [40657] = 17, + ACTIONS(5850), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4286), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [41889] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570051,43 +570981,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_LBRACE, - ACTIONS(6620), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - STATE(4314), 1, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6505), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, sym_argument_list, - STATE(4649), 1, - sym_initializer_expression, - STATE(4278), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4848), 11, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4844), 27, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + STATE(4287), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 23, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -570098,18 +571036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [40753] = 40, + [41995] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570130,119 +571065,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6581), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6543), 1, anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4279), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [40895] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4346), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(5504), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4280), 9, + STATE(4288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570252,43 +571129,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5015), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 11, + anon_sym_where, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [40987] = 22, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [42127] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570309,9 +571162,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -570319,16 +571172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6555), 1, + ACTIONS(6563), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570338,7 +571191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4281), 9, + STATE(4289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570348,7 +571201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 23, + ACTIONS(5924), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -570372,7 +571225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [41093] = 40, + [42233] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570393,78 +571246,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6575), 1, - anon_sym_QMARK, - ACTIONS(6581), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6583), 1, + ACTIONS(6521), 1, anon_sym_CARET, - ACTIONS(6585), 1, + ACTIONS(6523), 1, anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6525), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6543), 1, anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4282), 9, + STATE(4290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570474,7 +571313,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41235] = 40, + ACTIONS(5682), 10, + anon_sym_where, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [42369] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570495,88 +571345,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6505), 1, anon_sym_DOT_DOT, - ACTIONS(6575), 1, - anon_sym_QMARK, - ACTIONS(6581), 1, - anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, - anon_sym_AMP, - ACTIONS(6591), 1, - anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4291), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4283), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [41377] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [42475] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570597,78 +571429,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6433), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6575), 1, - anon_sym_QMARK, - ACTIONS(6581), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, - anon_sym_PIPE, - ACTIONS(6587), 1, - anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + ACTIONS(6543), 1, anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4284), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570678,7 +571492,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41519] = 40, + ACTIONS(5682), 11, + anon_sym_where, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [42605] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570699,88 +571525,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6575), 1, + ACTIONS(6626), 1, + anon_sym_LT, + ACTIONS(6629), 1, + anon_sym_COLON_COLON, + STATE(4401), 1, + sym_type_argument_list, + STATE(4293), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3678), 11, + anon_sym_COLON, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6581), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6583), 1, - anon_sym_CARET, - ACTIONS(6585), 1, anon_sym_PIPE, - ACTIONS(6587), 1, anon_sym_AMP, - ACTIONS(6591), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, - anon_sym_AMP_AMP, - ACTIONS(6599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6603), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(3680), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6577), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6579), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4285), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [41661] = 26, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [42699] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570801,44 +571603,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6539), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6437), 1, anon_sym_with, - STATE(2827), 1, + ACTIONS(6519), 1, + anon_sym_SLASH, + ACTIONS(6529), 1, + anon_sym_GT_GT, + ACTIONS(6535), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6521), 2, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(6527), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4286), 9, + STATE(4294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570848,27 +571655,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 17, + anon_sym_where, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - [41775] = 40, + [42819] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570889,78 +571694,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, ACTIONS(6433), 1, + anon_sym_as, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6519), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6521), 1, + anon_sym_CARET, + ACTIONS(6525), 1, + anon_sym_AMP, + ACTIONS(6529), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6535), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, + ACTIONS(6543), 1, anon_sym_is, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6561), 1, - anon_sym_PIPE, - ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, - anon_sym_AMP_AMP, - ACTIONS(6567), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6517), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6527), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6533), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4287), 9, + STATE(4295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570970,7 +571760,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41917] = 15, + ACTIONS(5682), 10, + anon_sym_where, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [42953] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570991,17 +571792,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 4, + ACTIONS(4295), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - ACTIONS(5510), 4, + ACTIONS(5506), 4, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4288), 9, + STATE(4296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571011,7 +571812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5202), 11, + ACTIONS(5173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -571023,7 +571824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5200), 23, + ACTIONS(5171), 23, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -571047,7 +571848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42009] = 22, + [43045] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571068,36 +571869,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3459), 7, anon_sym_LBRACK, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, + anon_sym_RPAREN, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4289), 9, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(3630), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_EQ_GT, + STATE(4297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571107,31 +571898,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 23, + ACTIONS(3633), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [42115] = 16, + sym__identifier_token, + [43137] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571152,13 +571946,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6622), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6643), 1, + anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, + anon_sym_with, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6633), 2, anon_sym_LT, - ACTIONS(6625), 1, - anon_sym_COLON_COLON, - STATE(4444), 1, - sym_type_argument_list, - STATE(4290), 9, + anon_sym_GT, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6641), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6649), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571168,48 +572006,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 11, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3682), 28, + ACTIONS(5682), 12, sym_interpolation_close_brace, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [42209] = 40, + [43264] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571230,78 +572040,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, - anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(6647), 1, anon_sym_GT_GT, - ACTIONS(6539), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6541), 1, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6545), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, + ACTIONS(6655), 1, anon_sym_as, - ACTIONS(6551), 1, + ACTIONS(6657), 1, anon_sym_is, - ACTIONS(6553), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6605), 1, + ACTIONS(6661), 1, anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 7, - anon_sym_SEMI, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 6, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4291), 9, + anon_sym_into, + STATE(4299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571311,7 +572120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [42351] = 29, + [43405] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571338,39 +572147,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(4783), 1, - anon_sym_var, - ACTIONS(6627), 1, + ACTIONS(6677), 1, + anon_sym_LBRACK, + ACTIONS(6679), 1, sym_predefined_type, - STATE(3709), 1, + STATE(3227), 1, + sym_array_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(6543), 1, + STATE(4144), 1, + sym_identifier, + STATE(6706), 1, sym__name, - STATE(6776), 1, + STATE(6892), 1, sym_tuple_type, - STATE(6871), 1, - sym_array_type, - STATE(7322), 1, + STATE(7263), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(7613), 1, - sym__ref_base_type, - STATE(7742), 1, - sym_implicit_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6877), 3, + STATE(7207), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4292), 9, + STATE(4300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571380,7 +572185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 21, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -571388,6 +572193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -571402,7 +572208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [42471] = 40, + [43520] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571423,78 +572229,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6503), 1, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6507), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6513), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(6559), 1, - anon_sym_CARET, - ACTIONS(6561), 1, - anon_sym_PIPE, - ACTIONS(6563), 1, - anon_sym_AMP, - ACTIONS(6565), 1, - anon_sym_AMP_AMP, - ACTIONS(6567), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6511), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4293), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571504,109 +572281,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [42613] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(5682), 16, + anon_sym_SEMI, anon_sym_CARET, - ACTIONS(6527), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, - anon_sym_AMP, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6543), 1, - anon_sym_AMP_AMP, - ACTIONS(6545), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, - anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6605), 1, - anon_sym_QMARK, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6521), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6531), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4294), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [42755] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [43639] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571627,23 +572319,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6541), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -571656,7 +572348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4295), 9, + STATE(4302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571666,12 +572358,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 23, + ACTIONS(1229), 22, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -571690,7 +572378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [42861] = 36, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [43744] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571711,63 +572402,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6679), 1, + sym_predefined_type, + ACTIONS(6693), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6523), 1, - anon_sym_SLASH, - ACTIONS(6525), 1, - anon_sym_CARET, - ACTIONS(6529), 1, - anon_sym_AMP, - ACTIONS(6533), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6541), 1, - anon_sym_DOT_DOT, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6551), 1, - anon_sym_is, - ACTIONS(6553), 1, - anon_sym_with, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6517), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6519), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6521), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6531), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6535), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4296), 9, + STATE(3169), 1, + sym_array_type, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6706), 1, + sym__name, + STATE(6892), 1, + sym_tuple_type, + STATE(7245), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7207), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571777,18 +572446,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [42995] = 40, + ACTIONS(2997), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [43859] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571809,78 +572490,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6429), 1, - anon_sym_as, - ACTIONS(6433), 1, - anon_sym_with, + ACTIONS(5372), 1, + anon_sym_BANG, ACTIONS(6503), 1, - anon_sym_SLASH, + anon_sym_switch, ACTIONS(6507), 1, - anon_sym_GT_GT, - ACTIONS(6513), 1, - anon_sym_DOT_DOT, - ACTIONS(6515), 1, - anon_sym_is, - ACTIONS(6557), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, anon_sym_QMARK, - ACTIONS(6559), 1, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6563), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6565), 1, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6567), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6569), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6499), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6501), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6505), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6509), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6511), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6629), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4297), 9, + ACTIONS(5874), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571890,7 +572570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43137] = 33, + [44000] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571911,57 +572591,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6647), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - STATE(3207), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4298), 9, + STATE(4305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571971,20 +572643,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, - sym_interpolation_close_brace, + ACTIONS(5682), 16, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - [43264] = 40, + anon_sym_as, + anon_sym_is, + [44119] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572005,77 +572681,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(5079), 1, + anon_sym_ref, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6914), 1, + sym__name, + STATE(7191), 1, + sym_ref_type, + STATE(7343), 1, + sym__scoped_base_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3459), 8, anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6663), 1, - anon_sym_QMARK, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_GT_GT, - ACTIONS(6685), 1, - anon_sym_DOT_DOT, - ACTIONS(6687), 1, - anon_sym_AMP_AMP, - ACTIONS(6689), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, - anon_sym_is, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6661), 2, + anon_sym_COMMA, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6667), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6677), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5783), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4299), 9, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572085,7 +572720,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43405] = 13, + ACTIONS(2997), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [44224] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572106,7 +572764,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4300), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6695), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572116,50 +572824,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3662), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3664), 30, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5682), 12, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [43492] = 21, + [44351] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572180,68 +572858,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - STATE(3207), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, + anon_sym_CARET, + ACTIONS(6707), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4898), 9, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4301), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4896), 23, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5682), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [43595] = 40, + STATE(4308), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [44486] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572262,77 +572956,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6643), 1, + anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6549), 1, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6655), 1, anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, - ACTIONS(6703), 1, + ACTIONS(6661), 1, + anon_sym_QMARK, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6705), 1, + ACTIONS(6665), 1, anon_sym_PIPE, - ACTIONS(6707), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6717), 1, - anon_sym_DOT_DOT, - ACTIONS(6719), 1, + ACTIONS(6671), 1, anon_sym_AMP_AMP, - ACTIONS(6721), 1, + ACTIONS(6673), 1, anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, + ACTIONS(6675), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - anon_sym_is, - STATE(2827), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_SEMI, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5874), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4302), 9, + anon_sym_into, + STATE(4309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572342,7 +573036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43736] = 29, + [44627] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572363,49 +573057,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6659), 1, + ACTIONS(6507), 1, anon_sym_with, - STATE(3207), 1, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6641), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4303), 9, + anon_sym_GT_GT, + STATE(4310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572415,11 +573100,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, - sym_interpolation_close_brace, + ACTIONS(5682), 20, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -572429,10 +573119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [43855] = 26, + [44736] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572453,11 +573142,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -572465,32 +573154,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(6643), 1, anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, ACTIONS(6651), 1, anon_sym_switch, ACTIONS(6653), 1, anon_sym_DOT_DOT, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, + anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - STATE(3207), 1, + ACTIONS(6661), 1, + anon_sym_QMARK, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, + ACTIONS(6633), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4304), 9, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6649), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5794), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572500,26 +573222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [43968] = 24, + [44877] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572540,30 +573243,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_with, - STATE(3207), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -572573,7 +573272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4305), 9, + STATE(4312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572583,10 +573282,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 20, - sym_interpolation_close_brace, + ACTIONS(1229), 22, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -572596,15 +573296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [44077] = 22, + anon_sym_with, + [44982] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572625,69 +573326,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6717), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, + anon_sym_CARET, + ACTIONS(6707), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4306), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 22, - anon_sym_SEMI, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5682), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [44182] = 37, + STATE(4313), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [45119] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572708,74 +573425,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, + anon_sym_QMARK, ACTIONS(6703), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(6705), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(6707), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6727), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_SEMI, + ACTIONS(5866), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4307), 9, + STATE(4314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572785,7 +573505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44317] = 13, + [45260] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572806,7 +573526,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4308), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, + anon_sym_SLASH, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + ACTIONS(6735), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6683), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572816,50 +573589,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4144), 13, + ACTIONS(5682), 10, anon_sym_SEMI, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [45389] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4316), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3461), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3459), 30, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(4142), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [44404] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [45476] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572880,75 +573695,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, + ACTIONS(6591), 1, + anon_sym_as, ACTIONS(6703), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(6705), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(6707), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, - anon_sym_DOT_DOT, ACTIONS(6719), 1, + anon_sym_DOT_DOT, + ACTIONS(6721), 1, anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6727), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_SEMI, + ACTIONS(5682), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4309), 9, + STATE(4317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572958,7 +573775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44541] = 13, + [45617] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572979,7 +573796,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4310), 9, + STATE(4318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572989,50 +573806,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4158), 13, - anon_sym_SEMI, + ACTIONS(3662), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3664), 30, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(4156), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [44628] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [45704] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573055,21 +573872,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2993), 1, sym__identifier_token, - ACTIONS(5077), 1, + ACTIONS(6041), 1, anon_sym_ref, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(7063), 1, + STATE(4144), 1, + sym_identifier, + STATE(6914), 1, sym__name, - STATE(7252), 1, - sym__scoped_base_type, - STATE(7297), 1, + STATE(7191), 1, sym_ref_type, - STATE(4145), 3, + STATE(7343), 1, + sym__scoped_base_type, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -573082,7 +573899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(4311), 9, + STATE(4319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573115,7 +573932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [44733] = 40, + [45809] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573136,77 +573953,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6663), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, anon_sym_QMARK, - ACTIONS(6669), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6687), 1, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, + ACTIONS(6727), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 6, + ACTIONS(5794), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4312), 9, + STATE(4320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573216,7 +574033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44874] = 40, + [45950] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573237,112 +574054,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6703), 1, - anon_sym_CARET, - ACTIONS(6705), 1, - anon_sym_PIPE, - ACTIONS(6707), 1, - anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6647), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6667), 1, + anon_sym_AMP, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 6, - anon_sym_SEMI, - anon_sym_and, - anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4313), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [45015] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_LBRACE, - STATE(4666), 1, - sym_initializer_expression, - STATE(4314), 9, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(4321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573352,48 +574118,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4870), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4868), 28, + ACTIONS(5682), 10, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [45106] = 35, + [46081] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573414,61 +574150,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6707), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6725), 1, - anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6715), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4315), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573478,18 +574197,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_SEMI, + ACTIONS(5682), 18, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [45237] = 15, + anon_sym_as, + anon_sym_is, + [46194] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573510,11 +574237,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, + ACTIONS(1401), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - STATE(4316), 9, + STATE(4653), 1, + sym_initializer_expression, + STATE(4323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573524,149 +574253,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 11, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4894), 11, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_GT, - ACTIONS(4056), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [45328] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6701), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6703), 1, - anon_sym_CARET, - ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6707), 1, anon_sym_AMP, - ACTIONS(6711), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, - anon_sym_DOT_DOT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(4889), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6699), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 6, - anon_sym_SEMI, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4317), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [45469] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [46287] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573687,49 +574314,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6679), 1, + ACTIONS(6647), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6661), 1, + anon_sym_QMARK, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6633), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4318), 9, + ACTIONS(6649), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573737,26 +574392,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_nullable, sym_preproc_error, sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [45588] = 26, + sym_preproc_define, + sym_preproc_undef, + [46428] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573777,44 +574415,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6685), 1, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6667), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4319), 9, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6715), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573824,26 +574479,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 10, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [45701] = 35, + [46559] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573864,61 +574511,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6693), 1, + ACTIONS(6735), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6737), 1, + anon_sym_QMARK, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, + anon_sym_AMP_AMP, + ACTIONS(6747), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6749), 1, + anon_sym_QMARK_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6661), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4320), 9, + ACTIONS(5874), 6, + anon_sym_SEMI, + anon_sym_and, + anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573928,18 +574591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [45832] = 36, + [46700] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573960,73 +574612,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6643), 1, + anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6549), 1, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6655), 1, anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6675), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_GT_GT, - ACTIONS(6685), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_is, - STATE(2827), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6661), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 9, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4321), 9, + anon_sym_into, + STATE(4327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574036,7 +574688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [45965] = 34, + [46833] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574057,60 +574709,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6679), 1, - anon_sym_GT_GT, ACTIONS(6685), 1, + anon_sym_SLASH, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4322), 9, + anon_sym_GT_GT, + STATE(4328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574120,18 +574757,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 18, + anon_sym_SEMI, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [46094] = 27, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [46948] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574152,45 +574797,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6685), 1, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6667), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4323), 9, + STATE(4329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574200,11 +574836,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5924), 22, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -574212,14 +574849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - [46209] = 33, + anon_sym_with, + [47053] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574240,57 +574880,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6679), 1, + ACTIONS(6647), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6693), 1, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6659), 1, + anon_sym_with, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4324), 9, + STATE(4330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574300,20 +574943,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(5682), 10, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [46336] = 37, + anon_sym_into, + [47182] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574334,74 +574975,178 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6693), 1, + ACTIONS(6735), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6737), 1, + anon_sym_QMARK, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, + anon_sym_AMP_AMP, + ACTIONS(6747), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6749), 1, + anon_sym_QMARK_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5870), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4331), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [47323] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, + anon_sym_SLASH, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + ACTIONS(6735), 1, + anon_sym_is, + ACTIONS(6737), 1, + anon_sym_QMARK, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, anon_sym_AMP_AMP, + ACTIONS(6747), 1, anon_sym_PIPE_PIPE, + ACTIONS(6749), 1, anon_sym_QMARK_QMARK, - STATE(4325), 9, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6683), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5238), 6, + anon_sym_SEMI, + anon_sym_and, + anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574411,7 +575156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46471] = 27, + [47464] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574438,35 +575183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6733), 1, - anon_sym_LBRACK, - ACTIONS(6735), 1, + ACTIONS(6679), 1, sym_predefined_type, - STATE(3222), 1, + ACTIONS(6751), 1, + anon_sym_LBRACK, + STATE(3607), 1, sym_array_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(6742), 1, + STATE(4144), 1, + sym_identifier, + STATE(6706), 1, sym__name, - STATE(6880), 1, + STATE(6892), 1, sym_tuple_type, - STATE(7133), 1, + STATE(7243), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7254), 3, + STATE(7207), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4326), 9, + STATE(4333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574499,7 +575244,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [46586] = 38, + [47579] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4334), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4144), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(4142), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [47666] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574520,75 +575339,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6687), 1, - anon_sym_AMP_AMP, - ACTIONS(6693), 1, + ACTIONS(6735), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4335), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 12, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4327), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47793] = 22, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574598,7 +575472,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46723] = 27, + ACTIONS(5924), 22, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47898] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574619,41 +575516,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6735), 1, - sym_predefined_type, - ACTIONS(6737), 1, - anon_sym_LBRACK, - STATE(2942), 1, - sym_array_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(6742), 1, - sym__name, - STATE(6880), 1, - sym_tuple_type, - STATE(7188), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7254), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4328), 9, + STATE(4337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574663,17 +575526,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(4108), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(4106), 28, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -574686,7 +575568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [46838] = 40, + sym__identifier_token, + [47985] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574707,77 +575590,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_GT_GT, ACTIONS(6685), 1, - anon_sym_DOT_DOT, - ACTIONS(6687), 1, - anon_sym_AMP_AMP, - ACTIONS(6689), 1, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, ACTIONS(6691), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, - anon_sym_is, - STATE(2827), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6683), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6677), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4329), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574787,7 +575637,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46979] = 36, + ACTIONS(5682), 18, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [48098] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574808,73 +575677,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, + ACTIONS(6591), 1, + anon_sym_as, ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6725), 1, + ACTIONS(6727), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_SEMI, + ACTIONS(5682), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4330), 9, + STATE(4339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574884,7 +575753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [47112] = 40, + [48231] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574905,11 +575774,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -574923,33 +575792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6739), 1, - anon_sym_QMARK, - ACTIONS(6741), 1, - anon_sym_CARET, - ACTIONS(6743), 1, - anon_sym_PIPE, - ACTIONS(6745), 1, - anon_sym_AMP, - ACTIONS(6749), 1, - anon_sym_AMP_AMP, - ACTIONS(6751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, - anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -574962,20 +575810,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5694), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4331), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574985,7 +575826,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [47253] = 29, + ACTIONS(5682), 16, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [48350] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575006,49 +575864,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6659), 1, + anon_sym_with, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6697), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4332), 9, + anon_sym_GT_GT, + STATE(4341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575058,9 +575911,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, - anon_sym_SEMI, + ACTIONS(5682), 18, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -575070,12 +575927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [47372] = 40, + [48463] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575096,77 +575951,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6647), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(6735), 1, anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6739), 1, + ACTIONS(6737), 1, anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6745), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6747), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6749), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5736), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5850), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4333), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4342), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [48604] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6679), 1, + sym_predefined_type, + ACTIONS(6753), 1, + anon_sym_LBRACK, + STATE(2943), 1, + sym_array_type, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6706), 1, + sym__name, + STATE(6892), 1, + sym_tuple_type, + STATE(7132), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7207), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575176,7 +576096,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [47513] = 40, + ACTIONS(2997), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [48719] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575197,87 +576140,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, - ACTIONS(6703), 1, - anon_sym_CARET, - ACTIONS(6705), 1, - anon_sym_PIPE, - ACTIONS(6707), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, + ACTIONS(6659), 1, + anon_sym_with, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4344), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 20, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 6, - anon_sym_SEMI, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4334), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [47654] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [48828] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575298,44 +576225,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6717), 1, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6715), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4335), 9, + STATE(4345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575345,26 +576288,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, - anon_sym_SEMI, + ACTIONS(5682), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [47767] = 17, + [48957] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575385,15 +576320,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6643), 1, + anon_sym_SLASH, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6659), 1, + anon_sym_with, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6641), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(3130), 1, - sym_initializer_expression, - STATE(4336), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575403,26 +576368,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4968), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4962), 27, - anon_sym_SEMI, + ACTIONS(5682), 18, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -575430,19 +576379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [47862] = 21, + [49072] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575463,24 +576408,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - STATE(3207), 1, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4880), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575490,7 +576437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4337), 9, + STATE(4347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575500,10 +576447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4876), 23, - sym_interpolation_close_brace, + ACTIONS(5924), 22, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -575514,17 +576462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_with, - [47965] = 13, + [49177] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575545,7 +576491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4338), 9, + STATE(4348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575555,50 +576501,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3461), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3459), 29, - sym_interpolation_close_brace, + ACTIONS(4156), 13, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(4154), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48052] = 34, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [49264] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575619,72 +576565,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6711), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6725), 1, + ACTIONS(6735), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4339), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 9, anon_sym_SEMI, - anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -575693,7 +576632,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [48181] = 27, + STATE(4349), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [49399] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575714,41 +576663,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6735), 1, - sym_predefined_type, - ACTIONS(6755), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - STATE(3668), 1, - sym_array_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(6742), 1, - sym__name, - STATE(6880), 1, - sym_tuple_type, - STATE(7167), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7254), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4340), 9, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575758,30 +576706,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [48296] = 14, + ACTIONS(5682), 20, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [49508] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575802,61 +576748,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3459), 1, - anon_sym_COLON_COLON, - STATE(4341), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3631), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6643), 1, anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6661), 1, + anon_sym_QMARK, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, anon_sym_PIPE, + ACTIONS(6667), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3628), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6633), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5238), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48385] = 40, + STATE(4351), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [49649] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575877,77 +576849,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6703), 1, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + ACTIONS(6735), 1, + anon_sym_is, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6705), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6717), 1, - anon_sym_DOT_DOT, - ACTIONS(6719), 1, + ACTIONS(6745), 1, anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 6, + ACTIONS(5682), 8, anon_sym_SEMI, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4342), 9, + STATE(4352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575957,7 +576927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48526] = 13, + [49786] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575978,7 +576948,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4343), 9, + ACTIONS(1401), 1, + anon_sym_LBRACE, + STATE(4650), 1, + sym_initializer_expression, + STATE(4353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575988,8 +576962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3662), 12, - anon_sym_COLON, + ACTIONS(4873), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576001,12 +576974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3664), 29, + ACTIONS(4871), 28, sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -576018,7 +576991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON_COLON, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -576031,7 +577003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [48613] = 21, + [49877] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576052,68 +577024,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - STATE(3207), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, + anon_sym_SLASH, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, + anon_sym_DOT_DOT, + ACTIONS(6735), 1, + anon_sym_is, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, + anon_sym_AMP_AMP, + ACTIONS(6747), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6749), 1, + anon_sym_QMARK_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4902), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4344), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4900), 23, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5682), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [48716] = 16, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4354), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [50018] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576134,13 +577125,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_LBRACE, - ACTIONS(4888), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - STATE(4651), 1, - sym_initializer_expression, - STATE(4345), 9, + ACTIONS(6757), 1, + anon_sym_STAR, + STATE(4355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576150,47 +577139,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4891), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4886), 27, - sym_interpolation_close_brace, + ACTIONS(4024), 11, + anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + ACTIONS(4022), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48809] = 24, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [50109] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576211,40 +577201,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6717), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, + anon_sym_SLASH, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6735), 1, + anon_sym_is, + ACTIONS(6743), 1, + anon_sym_AMP, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5684), 2, anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4346), 9, + ACTIONS(6683), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576254,28 +577265,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 20, + ACTIONS(5682), 10, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [48918] = 27, + [50240] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576296,41 +577297,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6735), 1, - sym_predefined_type, - ACTIONS(6757), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - STATE(2976), 1, - sym_array_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(6742), 1, - sym__name, - STATE(6880), 1, - sym_tuple_type, - STATE(7165), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7254), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4347), 9, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6643), 1, + anon_sym_SLASH, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, + anon_sym_is, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6661), 1, + anon_sym_QMARK, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6633), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6641), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6645), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6649), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5886), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576340,30 +577377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [49033] = 27, + [50381] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576390,35 +577404,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6735), 1, + ACTIONS(6679), 1, sym_predefined_type, ACTIONS(6759), 1, anon_sym_LBRACK, - STATE(3188), 1, - sym_array_type, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(6742), 1, + STATE(4144), 1, + sym_identifier, + STATE(4323), 1, + sym_array_type, + STATE(6706), 1, sym__name, - STATE(6880), 1, + STATE(6892), 1, sym_tuple_type, - STATE(7318), 1, + STATE(7286), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7254), 3, + STATE(7207), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4348), 9, + STATE(4358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576451,92 +577465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49148] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6685), 1, - anon_sym_DOT_DOT, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4349), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [49257] = 40, + [50496] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576557,77 +577486,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6663), 1, - anon_sym_QMARK, - ACTIONS(6669), 1, - anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_GT_GT, + ACTIONS(6591), 1, + anon_sym_as, ACTIONS(6685), 1, - anon_sym_DOT_DOT, - ACTIONS(6687), 1, - anon_sym_AMP_AMP, + anon_sym_SLASH, ACTIONS(6689), 1, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, ACTIONS(6691), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, + anon_sym_DOT_DOT, + ACTIONS(6735), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_AMP, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 9, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - STATE(4350), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576637,7 +577562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49398] = 17, + [50629] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576658,15 +577583,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6764), 1, anon_sym_QMARK, - STATE(4650), 1, - sym_initializer_expression, - STATE(4351), 9, + STATE(4360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576676,46 +577599,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4968), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4962), 27, - sym_interpolation_close_brace, + ACTIONS(4024), 10, + anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_EQ_GT, + ACTIONS(4022), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [49493] = 40, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [50722] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576736,77 +577660,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6647), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(6735), 1, anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6739), 1, + ACTIONS(6737), 1, anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6745), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6747), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6749), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5909), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5866), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4352), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576816,7 +577740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49634] = 40, + [50863] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576837,77 +577761,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6739), 1, - anon_sym_QMARK, - ACTIONS(6741), 1, - anon_sym_CARET, - ACTIONS(6743), 1, - anon_sym_PIPE, - ACTIONS(6745), 1, - anon_sym_AMP, - ACTIONS(6749), 1, - anon_sym_AMP_AMP, - ACTIONS(6751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, - anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(4887), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5769), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4353), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576917,7 +577798,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49775] = 22, + ACTIONS(4885), 23, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [50966] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576938,26 +577843,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(4910), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576967,7 +577870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4354), 9, + STATE(4363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576977,7 +577880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 22, + ACTIONS(4908), 23, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -576991,6 +577894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -577000,7 +577904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [49880] = 15, + [51069] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577021,11 +577925,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6763), 1, anon_sym_into, - STATE(4356), 1, + STATE(4365), 1, aux_sym__query_body_repeat2, - STATE(4355), 9, + STATE(4364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577035,7 +577939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577047,7 +577951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 28, + ACTIONS(6008), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577076,7 +577980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [49971] = 15, + [51160] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577097,11 +578001,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6763), 1, anon_sym_into, - STATE(4358), 1, + STATE(4367), 1, aux_sym__query_body_repeat2, - STATE(4356), 9, + STATE(4365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577111,7 +578015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577123,7 +578027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 28, + ACTIONS(6014), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577152,7 +578056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [50062] = 15, + [51251] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577173,11 +578077,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6763), 1, anon_sym_into, - STATE(4359), 1, + STATE(4368), 1, aux_sym__query_body_repeat2, - STATE(4357), 9, + STATE(4366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577187,7 +578091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577199,7 +578103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 28, + ACTIONS(6014), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577228,7 +578132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [50153] = 14, + [51342] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577249,9 +578153,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(6765), 1, anon_sym_into, - STATE(4358), 10, + STATE(4367), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577262,7 +578166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577274,7 +578178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 28, + ACTIONS(6018), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577303,7 +578207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [50242] = 15, + [51431] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577324,11 +578228,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6763), 1, anon_sym_into, - STATE(4358), 1, + STATE(4367), 1, aux_sym__query_body_repeat2, - STATE(4359), 9, + STATE(4368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577338,7 +578242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577350,7 +578254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 28, + ACTIONS(6025), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577379,7 +578283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [50333] = 27, + [51522] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577400,45 +578304,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(6717), 1, + ACTIONS(6689), 1, + anon_sym_GT_GT, + ACTIONS(6691), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6735), 1, + anon_sym_is, + ACTIONS(6737), 1, + anon_sym_QMARK, + ACTIONS(6739), 1, + anon_sym_CARET, + ACTIONS(6741), 1, + anon_sym_PIPE, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, + anon_sym_AMP_AMP, + ACTIONS(6747), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6749), 1, + anon_sym_QMARK_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6697), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(6687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6729), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 6, + anon_sym_SEMI, + anon_sym_and, + anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4369), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [51663] = 21, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4879), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4360), 9, + STATE(4370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577448,8 +578442,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, - anon_sym_SEMI, + ACTIONS(4875), 23, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -577457,17 +578455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [50448] = 40, + anon_sym_with, + [51766] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577488,77 +578487,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4371), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 18, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_as, - ACTIONS(6657), 1, anon_sym_is, - ACTIONS(6659), 1, + [51881] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6739), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, + anon_sym_DOT_DOT, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6695), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 6, - sym_interpolation_close_brace, + ACTIONS(6717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5850), 6, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4361), 9, + STATE(4372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577568,7 +578655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50589] = 16, + [52022] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577589,13 +578676,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6653), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(4362), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577605,47 +578715,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 10, - anon_sym_SEMI, + ACTIONS(1229), 22, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_EQ_GT, - ACTIONS(4056), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [50682] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [52127] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577666,36 +578759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(6059), 1, - anon_sym_ref, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(7063), 1, - sym__name, - STATE(7252), 1, - sym__scoped_base_type, - STATE(7297), 1, - sym_ref_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3459), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(3459), 1, anon_sym_COLON_COLON, - STATE(4363), 9, + STATE(4374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577705,30 +578771,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(3633), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3630), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [50787] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [52216] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577749,11 +578834,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -577773,23 +578860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6739), 1, - anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6665), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6749), 1, - anon_sym_AMP_AMP, - ACTIONS(6751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, - anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6633), 2, anon_sym_LT, @@ -577809,17 +578888,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5172), 6, + ACTIONS(5682), 9, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4364), 9, + STATE(4375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577829,7 +578911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50928] = 40, + [52351] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577850,11 +578932,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -577874,23 +578958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6739), 1, - anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6665), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6671), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, - anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6633), 2, anon_sym_LT, @@ -577910,17 +578988,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5783), 6, + ACTIONS(5682), 8, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4365), 9, + STATE(4376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577930,7 +579010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [51069] = 22, + [52488] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577951,36 +579031,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(4916), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6717), 1, - anon_sym_DOT_DOT, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(4923), 1, + anon_sym_LBRACE, + ACTIONS(4929), 1, + anon_sym_QMARK, + STATE(3107), 1, + sym_initializer_expression, + STATE(4377), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4926), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4366), 9, + anon_sym_DOT, + ACTIONS(4920), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [52583] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_LBRACK, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6771), 1, + anon_sym_QMARK, + STATE(4652), 1, + sym_initializer_expression, + STATE(4378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577990,8 +579127,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 22, - anon_sym_SEMI, + ACTIONS(4926), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4920), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -578002,18 +579155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [51174] = 33, + [52678] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578034,57 +579187,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6711), 1, + ACTIONS(6647), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6653), 1, anon_sym_DOT_DOT, - ACTIONS(6725), 1, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6657), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6663), 1, + anon_sym_CARET, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_AMP_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6715), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4367), 9, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578094,20 +579267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [51301] = 27, + [52819] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578134,35 +579294,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3468), 1, anon_sym_delegate, - ACTIONS(6735), 1, + ACTIONS(6679), 1, sym_predefined_type, ACTIONS(6775), 1, anon_sym_LBRACK, - STATE(3709), 1, + STATE(2977), 1, + sym_array_type, + STATE(3728), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(4135), 1, sym_generic_name, - STATE(4345), 1, - sym_array_type, - STATE(6742), 1, + STATE(4144), 1, + sym_identifier, + STATE(6706), 1, sym__name, - STATE(6880), 1, + STATE(6892), 1, sym_tuple_type, - STATE(7343), 1, + STATE(7190), 1, sym__array_base_type, - STATE(7575), 1, + STATE(7752), 1, sym__pointer_base_type, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7254), 3, + STATE(7207), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4368), 9, + STATE(4380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578195,7 +579355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51416] = 22, + [52934] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578216,36 +579376,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6685), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, + anon_sym_QMARK, + ACTIONS(6703), 1, + anon_sym_SLASH, + ACTIONS(6705), 1, + anon_sym_CARET, + ACTIONS(6707), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, + anon_sym_GT_GT, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6727), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(6695), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6701), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6715), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4381), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [53075] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6626), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4369), 9, + STATE(4401), 1, + sym_type_argument_list, + STATE(4382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578255,11 +579491,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 22, + ACTIONS(3678), 10, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3680), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -578270,15 +579521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [51521] = 40, + [53166] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578299,77 +579553,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6663), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(6697), 1, anon_sym_QMARK, - ACTIONS(6669), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6719), 1, anon_sym_DOT_DOT, - ACTIONS(6687), 1, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, + ACTIONS(6727), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 6, + ACTIONS(5238), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4370), 9, + STATE(4383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578379,7 +579633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [51662] = 35, + [53307] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578400,11 +579654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -578424,113 +579678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6745), 1, - anon_sym_AMP, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(5756), 2, + ACTIONS(6661), 1, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6641), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(4371), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 10, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6663), 1, anon_sym_CARET, - anon_sym_and, - anon_sym_or, + ACTIONS(6665), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_AMP, + ACTIONS(6671), 1, anon_sym_AMP_AMP, + ACTIONS(6673), 1, anon_sym_PIPE_PIPE, + ACTIONS(6675), 1, anon_sym_QMARK_QMARK, - anon_sym_into, - [51793] = 36, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6741), 1, - anon_sym_CARET, - ACTIONS(6745), 1, - anon_sym_AMP, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, @@ -578549,20 +579714,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5754), 9, + ACTIONS(5866), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4372), 9, + STATE(4384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578572,7 +579734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [51926] = 13, + [53448] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578593,7 +579755,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4373), 9, + STATE(4385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578603,7 +579765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4121), 13, + ACTIONS(4152), 13, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -578617,7 +579779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_EQ_GT, - ACTIONS(4119), 28, + ACTIONS(4150), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -578646,7 +579808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [52013] = 22, + [53535] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578667,94 +579829,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4374), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 22, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [52118] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, + ACTIONS(4677), 1, anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -578774,23 +579853,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6739), 1, + ACTIONS(6661), 1, anon_sym_QMARK, - ACTIONS(6741), 1, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6665), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6671), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6673), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6675), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6633), 2, anon_sym_LT, @@ -578810,17 +579889,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5891), 6, + ACTIONS(5878), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4375), 9, + STATE(4386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578830,7 +579909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [52259] = 34, + [53676] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578851,60 +579930,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6641), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4376), 9, + STATE(4387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578914,18 +579940,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, - sym_interpolation_close_brace, + ACTIONS(3461), 12, anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3459), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON_COLON, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - [52388] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [53763] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578946,36 +580004,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6685), 1, - anon_sym_DOT_DOT, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4377), 9, + STATE(4388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578985,11 +580014,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 22, + ACTIONS(3662), 12, anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3664), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -578999,16 +580044,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON_COLON, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [52493] = 15, + [53850] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579031,9 +580080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1401), 1, anon_sym_LBRACE, - STATE(4648), 1, + STATE(4668), 1, sym_initializer_expression, - STATE(4378), 9, + STATE(4389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579043,7 +580092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4874), 11, + ACTIONS(4906), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579055,7 +580104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4872), 28, + ACTIONS(4904), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -579084,7 +580133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [52584] = 37, + [53941] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579105,74 +580154,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(6795), 1, anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6741), 1, - anon_sym_CARET, - ACTIONS(6743), 1, - anon_sym_PIPE, - ACTIONS(6745), 1, - anon_sym_AMP, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5754), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4379), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579182,7 +580214,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [52719] = 38, + ACTIONS(5682), 11, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [54067] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579203,75 +580247,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6653), 1, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(6795), 1, anon_sym_is, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6741), 1, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6801), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - STATE(3207), 1, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 5, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4380), 9, + STATE(4391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579281,7 +580326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [52856] = 40, + [54207] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579302,77 +580347,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6651), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - ACTIONS(6659), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6741), 1, + ACTIONS(6817), 1, + anon_sym_SLASH, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6827), 1, + anon_sym_GT_GT, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6837), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6839), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5754), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6831), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4381), 9, + STATE(4392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579382,7 +580426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [52997] = 40, + [54347] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579403,77 +580447,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6663), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6847), 1, anon_sym_QMARK, - ACTIONS(6669), 1, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, - ACTIONS(6687), 1, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, + ACTIONS(6877), 1, anon_sym_is, - STATE(2827), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 6, + ACTIONS(5886), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4382), 9, + anon_sym_into, + STATE(4393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579483,7 +580526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53138] = 40, + [54487] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579504,77 +580547,243 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6663), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6881), 1, anon_sym_QMARK, - ACTIONS(6669), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6891), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6685), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6687), 1, + ACTIONS(6905), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6907), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6909), 1, anon_sym_QMARK_QMARK, - ACTIONS(6693), 1, + ACTIONS(6911), 1, anon_sym_is, - STATE(2827), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 6, + ACTIONS(5866), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_into, + STATE(4394), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [54627] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4395), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4941), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4939), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4383), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [54713] = 34, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6785), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579584,7 +580793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53279] = 40, + [54841] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579605,77 +580814,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6703), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6705), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6707), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 6, - anon_sym_SEMI, + ACTIONS(5682), 8, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4384), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579685,7 +580890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53420] = 13, + [54975] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579706,7 +580911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4385), 9, + STATE(4398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579716,50 +580921,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4162), 13, - anon_sym_SEMI, + ACTIONS(3711), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3722), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55061] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6913), 1, + sym_string_literal_encoding, + STATE(4399), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4954), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(4160), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4952), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [53507] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55149] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579780,77 +581058,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6701), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6703), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6705), 1, + ACTIONS(6891), 1, anon_sym_PIPE, - ACTIONS(6707), 1, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6717), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6911), 1, anon_sym_is, - ACTIONS(6727), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6695), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6699), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6709), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6713), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6715), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 6, - anon_sym_SEMI, - anon_sym_and, - anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4386), 9, + ACTIONS(5682), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579860,7 +581134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53648] = 13, + [55283] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579881,7 +581155,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4387), 9, + STATE(4401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579891,7 +581165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3461), 11, + ACTIONS(3666), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579903,7 +581177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3459), 30, + ACTIONS(3668), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -579921,7 +581195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -579934,7 +581207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [53735] = 15, + [55369] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579955,11 +581228,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6622), 1, - anon_sym_LT, - STATE(4444), 1, - sym_type_argument_list, - STATE(4388), 9, + ACTIONS(6915), 1, + anon_sym_and, + ACTIONS(6917), 1, + anon_sym_or, + STATE(4402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579969,7 +581242,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 10, + ACTIONS(6173), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -579980,13 +581254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3682), 29, - sym_interpolation_close_brace, + ACTIONS(6171), 27, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -580000,8 +581274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -580010,7 +581282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [53826] = 27, + [55459] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580031,45 +581303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_SLASH, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6653), 1, - anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_with, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6639), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6641), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4389), 9, + ACTIONS(6919), 1, + sym_string_literal_encoding, + STATE(4403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580079,10 +581315,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(4969), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4967), 28, sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -580090,6 +581344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -580098,7 +581354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [53941] = 22, + anon_sym_DASH_GT, + anon_sym_with, + [55547] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580119,36 +581377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4390), 9, + STATE(4404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580158,7 +581387,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 21, + ACTIONS(4052), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4054), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580168,9 +581417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, - anon_sym_when, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -580179,8 +581427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [54045] = 37, + [55633] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580201,73 +581450,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(5756), 1, + STATE(4405), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4106), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, anon_sym_PIPE, - ACTIONS(6791), 1, anon_sym_AMP, - ACTIONS(6795), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(4108), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_EQ_GT, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4391), 9, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55719] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6921), 1, + anon_sym_and, + ACTIONS(6923), 1, + anon_sym_or, + STATE(4406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580277,7 +581537,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54179] = 40, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5480), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55809] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580298,86 +581598,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6807), 1, + STATE(4407), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4022), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6813), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, anon_sym_PIPE, - ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6823), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - ACTIONS(6831), 1, - anon_sym_AMP_AMP, - ACTIONS(6833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, + anon_sym_DOT, + ACTIONS(4024), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4392), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [54319] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55895] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580398,76 +581671,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6801), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6843), 1, + ACTIONS(6881), 1, anon_sym_QMARK, - ACTIONS(6849), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6891), 1, anon_sym_PIPE, - ACTIONS(6855), 1, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6859), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6867), 1, + ACTIONS(6905), 1, anon_sym_AMP_AMP, - ACTIONS(6869), 1, + ACTIONS(6907), 1, anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, + ACTIONS(6909), 1, anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, + ACTIONS(6911), 1, anon_sym_is, - STATE(2669), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 5, + ACTIONS(5238), 5, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4393), 9, + STATE(4408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580477,7 +581750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54459] = 24, + [56035] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580498,40 +581771,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4394), 9, + STATE(4409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580541,11 +581781,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, + ACTIONS(4038), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4040), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580555,13 +581811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - [54567] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [56121] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580582,71 +581844,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, ACTIONS(6889), 1, + anon_sym_CARET, + ACTIONS(6891), 1, + anon_sym_PIPE, + ACTIONS(6893), 1, + anon_sym_AMP, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6895), 1, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_AMP_AMP, + ACTIONS(6907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6909), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6911), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6877), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(5682), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4395), 9, + STATE(4410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580656,7 +581923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54697] = 13, + [56261] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580677,59 +581944,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4396), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4025), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6817), 1, anon_sym_SLASH, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_AMP, + ACTIONS(6827), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4027), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5878), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [54783] = 22, + STATE(4411), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [56401] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580750,9 +582044,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -580760,58 +582054,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6865), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6817), 1, + anon_sym_SLASH, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_AMP, + ACTIONS(6827), 1, + anon_sym_GT_GT, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4397), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 21, - anon_sym_COLON, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5886), 5, + anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [54887] = 40, + STATE(4412), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [56541] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580832,76 +582144,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6881), 1, + anon_sym_QMARK, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6891), 1, anon_sym_PIPE, + ACTIONS(6893), 1, + anon_sym_AMP, + ACTIONS(6897), 1, + anon_sym_GT_GT, ACTIONS(6903), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(6907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6909), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 5, + ACTIONS(5874), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_into, - STATE(4398), 9, + STATE(4413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580911,7 +582223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [55027] = 14, + [56681] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580932,9 +582244,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(4024), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(4399), 9, + STATE(4414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580944,48 +582271,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5390), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3840), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(4022), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [55115] = 13, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [56775] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581006,7 +582321,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4400), 9, + ACTIONS(6929), 1, + anon_sym_LT, + STATE(2184), 1, + sym_type_argument_list, + STATE(4415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581016,149 +582335,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3674), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3676), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(3680), 10, + anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [55201] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6807), 1, - anon_sym_QMARK, - ACTIONS(6813), 1, - anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, - anon_sym_PIPE, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6823), 1, - anon_sym_GT_GT, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - ACTIONS(6831), 1, - anon_sym_AMP_AMP, - ACTIONS(6833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(3678), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - STATE(4401), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [55341] = 22, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [56865] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581179,26 +582396,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6875), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581208,7 +582425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4402), 9, + STATE(4416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581218,7 +582435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 21, + ACTIONS(5924), 21, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -581240,7 +582457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [55445] = 14, + [56969] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581261,9 +582478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6909), 1, - sym_string_literal_encoding, - STATE(4403), 9, + STATE(4417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581273,7 +582488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4922), 11, + ACTIONS(4960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581285,12 +582500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4920), 28, + ACTIONS(4958), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -581314,7 +582530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [55533] = 40, + [57055] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581335,9 +582551,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -581345,66 +582561,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, + ACTIONS(6837), 1, anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, + ACTIONS(6839), 1, anon_sym_QMARK_QMARK, - STATE(2669), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 5, + ACTIONS(5870), 5, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4404), 9, + STATE(4418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581414,7 +582630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [55673] = 13, + [57195] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581435,7 +582651,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4405), 9, + STATE(4419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581445,7 +582661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4029), 11, + ACTIONS(3678), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581457,7 +582673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4031), 29, + ACTIONS(3680), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -581487,7 +582703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [55759] = 40, + [57281] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581508,76 +582724,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6807), 1, - anon_sym_QMARK, - ACTIONS(6813), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6815), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6817), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6819), 1, - anon_sym_AMP, ACTIONS(6823), 1, + anon_sym_AMP, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6831), 1, + ACTIONS(6835), 1, anon_sym_AMP_AMP, - ACTIONS(6833), 1, + ACTIONS(6837), 1, anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, + ACTIONS(6839), 1, anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6843), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5238), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4406), 9, + anon_sym_into, + STATE(4420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581587,7 +582803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [55899] = 40, + [57421] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581608,76 +582824,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6855), 1, + ACTIONS(6801), 1, anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6869), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 5, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 5, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4407), 9, + STATE(4421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581687,7 +582903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56039] = 13, + [57561] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581708,7 +582924,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4408), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(5836), 1, + sym_attribute_target_specifier, + STATE(6529), 1, + sym__name, + STATE(7003), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1053), 8, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + anon_sym_typevar, + STATE(4422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581718,49 +582961,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4914), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4912), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [56125] = 36, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [57663] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581781,72 +583005,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6885), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6889), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6895), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6877), 1, anon_sym_is, - ACTIONS(6899), 1, - anon_sym_CARET, - STATE(2455), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6877), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 9, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4409), 9, + STATE(4423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581856,7 +583079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56257] = 40, + [57793] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581877,9 +583100,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -581887,66 +583110,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, ACTIONS(6853), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(6855), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(6859), 1, + anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, + anon_sym_DOT_DOT, + ACTIONS(6877), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 5, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4410), 9, + STATE(4424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581956,7 +583175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56397] = 34, + [57925] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581977,70 +583196,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6889), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6895), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6877), 1, anon_sym_is, - STATE(2455), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_CARET, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4411), 9, + STATE(4425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582050,7 +583269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56525] = 38, + [58053] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582071,9 +583290,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -582081,95 +583300,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, - anon_sym_PIPE, - ACTIONS(6791), 1, - anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6877), 1, anon_sym_is, - ACTIONS(6913), 1, - anon_sym_AMP_AMP, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4412), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [56661] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4413), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582179,49 +583350,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3719), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3721), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5682), 11, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [56747] = 35, + [58179] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582242,11 +583383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -582256,57 +583397,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(6787), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6795), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(6797), 1, + anon_sym_CARET, + ACTIONS(6799), 1, + anon_sym_PIPE, + ACTIONS(6801), 1, + anon_sym_AMP, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5874), 5, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_CARET, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4414), 9, + STATE(4427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582316,7 +583462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56877] = 13, + [58319] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582337,59 +583483,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4415), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6853), 1, anon_sym_SLASH, + ACTIONS(6855), 1, + anon_sym_CARET, + ACTIONS(6857), 1, anon_sym_PIPE, + ACTIONS(6859), 1, anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4045), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6877), 1, + anon_sym_is, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6845), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6849), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5682), 8, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [56963] = 36, + STATE(4428), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [58453] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582410,72 +583580,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6815), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6819), 1, + ACTIONS(6891), 1, + anon_sym_PIPE, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6905), 1, + anon_sym_AMP_AMP, + ACTIONS(6911), 1, anon_sym_is, - STATE(3207), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6637), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - sym_interpolation_close_brace, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4416), 9, + anon_sym_into, + STATE(4429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582485,7 +583657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57095] = 40, + [58589] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582506,9 +583678,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -582516,66 +583688,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, - anon_sym_QMARK_QMARK, - STATE(2669), 1, + ACTIONS(6877), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 5, - anon_sym_EQ_GT, + ACTIONS(5682), 7, + anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4417), 9, + STATE(4430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582585,7 +583755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57235] = 35, + [58725] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582606,9 +583776,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -582616,61 +583786,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6849), 1, + ACTIONS(6847), 1, + anon_sym_QMARK, + ACTIONS(6853), 1, anon_sym_SLASH, ACTIONS(6855), 1, - anon_sym_AMP, + anon_sym_CARET, + ACTIONS(6857), 1, + anon_sym_PIPE, ACTIONS(6859), 1, + anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, ACTIONS(6873), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6875), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6877), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6841), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(5238), 5, anon_sym_COLON, - anon_sym_CARET, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4418), 9, + STATE(4431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582680,7 +583855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57365] = 43, + [58865] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582701,79 +583876,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6877), 1, anon_sym_is, - ACTIONS(6955), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7581), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4419), 9, + ACTIONS(5682), 5, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582783,7 +583955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57511] = 36, + [59005] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582804,9 +583976,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -582814,62 +583986,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6849), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6855), 1, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6859), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6873), 1, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, anon_sym_is, - STATE(2669), 1, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6841), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_COLON, + ACTIONS(5794), 5, + anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4420), 9, + STATE(4433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582879,7 +584055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57643] = 34, + [59145] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582900,9 +584076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -582910,60 +584086,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6849), 1, + ACTIONS(6847), 1, + anon_sym_QMARK, + ACTIONS(6853), 1, anon_sym_SLASH, + ACTIONS(6855), 1, + anon_sym_CARET, + ACTIONS(6857), 1, + anon_sym_PIPE, ACTIONS(6859), 1, + anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, ACTIONS(6873), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6875), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6877), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5850), 5, anon_sym_COLON, - anon_sym_CARET, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4421), 9, + STATE(4434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582973,7 +584155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57771] = 33, + [59285] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582994,57 +584176,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(4962), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(6845), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6847), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4422), 9, + ACTIONS(6933), 1, + anon_sym_COLON_COLON, + STATE(3027), 1, + sym_type_argument_list, + STATE(4435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583054,19 +584192,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(3678), 11, anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3680), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_when, - anon_sym_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - [57897] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [59377] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583087,76 +584252,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6807), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6881), 1, anon_sym_QMARK, - ACTIONS(6813), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6815), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6817), 1, + ACTIONS(6891), 1, anon_sym_PIPE, - ACTIONS(6819), 1, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6831), 1, + ACTIONS(6905), 1, anon_sym_AMP_AMP, - ACTIONS(6833), 1, + ACTIONS(6907), 1, anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, + ACTIONS(6909), 1, anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6911), 1, anon_sym_is, - STATE(3207), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 5, - sym_interpolation_close_brace, + ACTIONS(5878), 5, anon_sym_COLON, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4423), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583166,7 +584331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58037] = 34, + [59517] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583187,80 +584352,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4295), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4437), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6813), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6823), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, + anon_sym_DOT, + ACTIONS(5153), 23, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4424), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [58165] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [59605] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583281,45 +584426,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6881), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4425), 9, + ACTIONS(4295), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583329,11 +584443,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5171), 23, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -583341,13 +584470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [58279] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [59693] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583368,57 +584500,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4776), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(6935), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6881), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6893), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4426), 9, + ACTIONS(6938), 1, + aux_sym_preproc_if_token1, + STATE(5406), 1, + sym__attribute_list, + STATE(5405), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(4439), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583428,19 +584521,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(4771), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - [58405] = 29, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [59787] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583461,9 +584577,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -583471,39 +584587,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6849), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6859), 1, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_AMP, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6845), 2, + ACTIONS(6811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4427), 9, + ACTIONS(6829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6831), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583513,23 +584656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [58523] = 26, + [59927] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583550,44 +584677,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6847), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4428), 9, + STATE(4441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583597,8 +584687,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(4018), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4020), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -583606,7 +584717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -583615,7 +584727,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [58635] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [60013] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583636,45 +584750,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6845), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6847), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4429), 9, + STATE(4442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583684,8 +584760,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(3684), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3686), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -583693,7 +584790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -583702,7 +584800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [58749] = 37, + anon_sym_DASH_GT, + anon_sym_with, + [60099] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583723,9 +584823,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -583733,63 +584833,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6849), 1, + ACTIONS(6847), 1, + anon_sym_QMARK, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6855), 1, - anon_sym_AMP, ACTIONS(6859), 1, + anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, ACTIONS(6873), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6875), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6877), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5866), 5, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4430), 9, + STATE(4443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583799,7 +584902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58883] = 38, + [60239] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583820,74 +584923,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6849), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6855), 1, + ACTIONS(6801), 1, anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5866), 5, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4431), 9, + STATE(4444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583897,7 +585002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59019] = 13, + [60379] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583918,7 +585023,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4432), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + STATE(4445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583928,7 +585035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4918), 11, + ACTIONS(5455), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -583940,13 +585047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4916), 29, + ACTIONS(3881), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -583970,7 +585076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59105] = 40, + [60467] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583991,9 +585097,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -584001,76 +585107,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, - ACTIONS(6853), 1, - anon_sym_PIPE, - ACTIONS(6855), 1, - anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4446), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 19, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4433), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [59245] = 43, + anon_sym_as, + anon_sym_is, + [60575] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584091,89 +585181,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, + STATE(4447), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4048), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6927), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6931), 1, anon_sym_PIPE, - ACTIONS(6933), 1, anon_sym_AMP, - ACTIONS(6937), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(6957), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(4050), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7713), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4434), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [59391] = 22, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [60661] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584194,36 +585254,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4435), 9, + STATE(4448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584233,11 +585264,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, + ACTIONS(4119), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4121), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -584248,14 +585295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [59495] = 40, + [60747] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584276,76 +585327,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6881), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5736), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4436), 9, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6679), 1, + sym_predefined_type, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6040), 1, + sym_array_type, + STATE(6045), 1, + sym_nullable_type, + STATE(6706), 1, + sym__name, + STATE(6892), 1, + sym_tuple_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(7207), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584355,7 +585370,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59635] = 37, + ACTIONS(2997), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [60861] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584376,83 +585414,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5756), 1, + STATE(4450), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4142), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6885), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6889), 1, anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(4144), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6881), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4437), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [59769] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [60947] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584473,76 +585487,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6881), 1, + anon_sym_QMARK, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6889), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6891), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6893), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6913), 1, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, + ACTIONS(6907), 1, anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, + ACTIONS(6909), 1, anon_sym_QMARK_QMARK, - STATE(2669), 1, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5794), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4438), 9, + STATE(4451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584552,7 +585566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59909] = 38, + [61087] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584573,138 +585587,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6881), 1, + anon_sym_QMARK, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6899), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6891), 1, anon_sym_PIPE, + ACTIONS(6893), 1, + anon_sym_AMP, + ACTIONS(6897), 1, + anon_sym_GT_GT, ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, anon_sym_AMP_AMP, - STATE(2455), 1, + ACTIONS(6907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6909), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5886), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4439), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [60045] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6735), 1, - sym_predefined_type, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, - sym_generic_name, - STATE(6093), 1, - sym_nullable_type, - STATE(6115), 1, - sym_array_type, - STATE(6742), 1, - sym__name, - STATE(6880), 1, - sym_tuple_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7254), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4440), 9, + STATE(4452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584714,30 +585666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [60159] = 33, + [61227] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584758,57 +585687,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6823), 1, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, + anon_sym_PIPE, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6837), 1, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(6977), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6827), 2, + ACTIONS(6961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4441), 9, + STATE(7468), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584818,19 +585769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [60285] = 40, + [61373] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584851,76 +585790,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6899), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(6979), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4442), 9, + STATE(7461), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584930,7 +585872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [60425] = 44, + [61519] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584951,80 +585893,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_COLON, - ACTIONS(6961), 1, - anon_sym_COMMA, - ACTIONS(6965), 1, - anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(6835), 1, anon_sym_AMP_AMP, - ACTIONS(6991), 1, + ACTIONS(6837), 1, anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, + ACTIONS(6839), 1, anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, anon_sym_is, - ACTIONS(6997), 1, - sym_interpolation_close_brace, - STATE(3207), 1, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3372), 1, sym_argument_list, - STATE(7089), 1, - sym_interpolation_alignment_clause, - STATE(7758), 1, - sym_interpolation_format_clause, - ACTIONS(6637), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4443), 9, + ACTIONS(5866), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585034,7 +585972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [60573] = 13, + [61659] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585055,37 +585993,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4444), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3670), 11, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3672), 29, + STATE(4456), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 21, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -585096,18 +586046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [60659] = 40, + [61763] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585128,76 +586075,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6899), 1, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(6981), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4445), 9, + STATE(7367), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585207,7 +586157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [60799] = 13, + [61909] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585228,98 +586178,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4446), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4056), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6887), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6897), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4058), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [60885] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4125), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - anon_sym_STAR, - ACTIONS(6999), 1, - anon_sym_QMARK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(4056), 9, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4447), 9, + STATE(4458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585329,35 +586230,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 27, - sym_interpolation_close_brace, + ACTIONS(5682), 15, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [60979] = 15, + [62027] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585378,11 +586267,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7004), 1, - anon_sym_and, - ACTIONS(7006), 1, - anon_sym_or, - STATE(4448), 9, + STATE(4459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585392,7 +586277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(3697), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -585404,14 +586289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 27, - anon_sym_SEMI, + ACTIONS(3699), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -585425,14 +586309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61069] = 40, + [62113] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585453,76 +586340,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4677), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, + ACTIONS(6787), 1, anon_sym_GT_GT, - ACTIONS(6895), 1, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, anon_sym_is, - ACTIONS(6897), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(6801), 1, + anon_sym_AMP, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 5, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 5, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4449), 9, + anon_sym_and, + anon_sym_or, + STATE(4460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585532,7 +586419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61209] = 13, + [62253] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585553,7 +586440,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4450), 9, + ACTIONS(6921), 1, + anon_sym_and, + STATE(4461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585563,7 +586452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -585575,13 +586464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4015), 29, - sym_interpolation_close_brace, + ACTIONS(6199), 28, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -585595,17 +586485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61295] = 13, + [62341] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585626,84 +586514,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4451), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6817), 1, anon_sym_SLASH, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_AMP, + ACTIONS(6827), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4019), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5850), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [61381] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7008), 1, - anon_sym_and, - ACTIONS(7010), 1, - anon_sym_or, - STATE(4452), 9, + STATE(4462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585713,47 +586593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [61471] = 15, + [62481] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585774,40 +586614,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4131), 1, - anon_sym_STAR, - STATE(4453), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4056), 11, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4058), 27, - sym_interpolation_close_brace, + STATE(4463), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 21, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -585817,18 +586668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [61561] = 40, + [62585] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585849,9 +586696,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -585859,66 +586706,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6847), 1, + anon_sym_QMARK, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - STATE(2669), 1, + ACTIONS(6877), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 5, - anon_sym_EQ_GT, + ACTIONS(5874), 5, + anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4454), 9, + STATE(4464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585928,7 +586775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61701] = 13, + [62725] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585949,7 +586796,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4455), 9, + STATE(4465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585959,7 +586806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4160), 11, + ACTIONS(4030), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -585971,7 +586818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4162), 29, + ACTIONS(4032), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -586001,7 +586848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61787] = 22, + [62811] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586022,36 +586869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4456), 9, + STATE(4466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586061,7 +586879,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, + ACTIONS(4146), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4148), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -586071,9 +586909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, - anon_sym_when, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -586082,8 +586919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [61891] = 17, + [62897] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586104,88 +586942,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(7012), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, anon_sym_DOT, - ACTIONS(4058), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6615), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(4457), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4056), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [61985] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7014), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6785), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, anon_sym_LT, - STATE(2186), 1, - sym_type_argument_list, - STATE(4458), 9, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586195,47 +586994,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3682), 10, - anon_sym_SEMI, + ACTIONS(5682), 15, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(3680), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [62075] = 43, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [63015] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586256,79 +587031,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6931), 1, - anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7016), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7496), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4459), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586338,7 +587078,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62221] = 40, + ACTIONS(5682), 17, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [63127] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586359,86 +587117,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, - anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, - anon_sym_PIPE, ACTIONS(6791), 1, - anon_sym_AMP, - ACTIONS(6795), 1, - anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, - anon_sym_AMP_AMP, - ACTIONS(6915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, - anon_sym_QMARK_QMARK, - STATE(2669), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4469), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 19, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - anon_sym_EQ_GT, - anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4460), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [62361] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [63235] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586459,13 +587201,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4926), 1, - anon_sym_LT, - ACTIONS(7018), 1, - anon_sym_COLON_COLON, - STATE(3086), 1, - sym_type_argument_list, - STATE(4461), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(5831), 1, + sym_attribute_target_specifier, + STATE(6529), 1, + sym__name, + STATE(7041), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1053), 8, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + anon_sym_typevar, + STATE(4470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586475,46 +587238,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 11, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3682), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [62453] = 40, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [63337] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586535,11 +587282,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -586549,62 +587296,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6807), 1, - anon_sym_QMARK, - ACTIONS(6813), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, - anon_sym_PIPE, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(6787), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - ACTIONS(6831), 1, - anon_sym_AMP_AMP, - ACTIONS(6833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(6795), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 5, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 9, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_CARET, anon_sym_and, anon_sym_or, - STATE(4462), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586614,7 +587356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62593] = 14, + [63467] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586635,9 +587377,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7020), 1, - aux_sym_raw_string_literal_token1, - STATE(4463), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(5833), 1, + sym_attribute_target_specifier, + STATE(6529), 1, + sym__name, + STATE(6815), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1053), 8, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + anon_sym_typevar, + STATE(4472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586647,48 +587414,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4949), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [62681] = 40, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [63569] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586709,76 +587458,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, - anon_sym_PIPE, - ACTIONS(6791), 1, - anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6897), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, - anon_sym_AMP_AMP, - ACTIONS(6915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, - anon_sym_QMARK_QMARK, - STATE(2669), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4464), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586788,7 +587518,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62821] = 13, + ACTIONS(5682), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + [63695] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586809,108 +587551,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4465), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6881), 1, + anon_sym_QMARK, + ACTIONS(6887), 1, anon_sym_SLASH, + ACTIONS(6889), 1, + anon_sym_CARET, + ACTIONS(6891), 1, anon_sym_PIPE, + ACTIONS(6893), 1, anon_sym_AMP, + ACTIONS(6897), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3945), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_AMP_AMP, + ACTIONS(6907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6909), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [62907] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5623), 1, - anon_sym_ref, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2340), 1, - sym_ref_type, - STATE(2343), 1, - sym__scoped_base_type, - STATE(4474), 1, - sym_identifier, - STATE(5264), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3459), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4466), 9, + ACTIONS(5870), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586920,30 +587630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [63011] = 22, + [63835] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586964,9 +587651,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -586974,58 +587661,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6865), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6817), 1, + anon_sym_SLASH, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_AMP, + ACTIONS(6827), 1, + anon_sym_GT_GT, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4467), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 21, - anon_sym_COLON, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5682), 7, + anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [63115] = 40, + STATE(4475), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [63971] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587046,76 +587749,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, + ACTIONS(6847), 1, anon_sym_QMARK, - ACTIONS(6899), 1, + ACTIONS(6853), 1, + anon_sym_SLASH, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(6859), 1, + anon_sym_AMP, + ACTIONS(6863), 1, + anon_sym_GT_GT, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - STATE(2455), 1, + ACTIONS(6877), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 5, + ACTIONS(5870), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4468), 9, + STATE(4476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587125,7 +587828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63255] = 40, + [64111] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587146,76 +587849,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - STATE(2669), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(6983), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4469), 9, + STATE(7541), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587225,7 +587931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63395] = 13, + [64257] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587246,7 +587952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4470), 9, + STATE(4478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587256,7 +587962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4094), 11, + ACTIONS(4935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587268,7 +587974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4096), 29, + ACTIONS(4933), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -587298,7 +588004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [63481] = 24, + [64343] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587319,40 +588025,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6829), 1, + ACTIONS(6817), 1, + anon_sym_SLASH, + ACTIONS(6827), 1, + anon_sym_GT_GT, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(6813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6815), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6825), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4471), 9, + STATE(4479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587362,27 +588077,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 15, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - [63589] = 40, + [64461] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587403,9 +588114,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -587413,101 +588124,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, - ACTIONS(6853), 1, - anon_sym_PIPE, - ACTIONS(6855), 1, - anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, - ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6815), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 5, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4472), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [63729] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7008), 1, - anon_sym_and, - ACTIONS(7010), 1, - anon_sym_or, - STATE(4473), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587517,29 +588161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 17, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -587547,17 +588169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [63819] = 16, + [64573] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587578,23 +588200,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 9, - anon_sym_SEMI, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(3549), 1, + sym_identifier, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3911), 4, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_EQ_GT, - STATE(4474), 9, + STATE(4481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587604,22 +588242,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 28, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -587632,8 +588265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [63911] = 14, + [64685] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587654,9 +588286,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, anon_sym_DOT, - STATE(4475), 9, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587666,28 +588334,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4015), 29, + ACTIONS(5682), 17, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -587695,19 +588345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [63999] = 13, + [64799] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587728,7 +588373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4476), 9, + STATE(4483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587738,7 +588383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4119), 11, + ACTIONS(3670), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587750,7 +588395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4121), 29, + ACTIONS(3672), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -587780,7 +588425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [64085] = 37, + [64885] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587801,73 +588446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(4110), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, - anon_sym_PIPE, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6823), 1, - anon_sym_GT_GT, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 8, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4477), 9, + ACTIONS(6991), 1, + anon_sym_QMARK, + STATE(4484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587877,105 +588460,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64219] = 38, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4022), 10, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6813), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, anon_sym_PIPE, - ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6823), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - ACTIONS(6831), 1, - anon_sym_AMP_AMP, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, + anon_sym_DOT, + ACTIONS(4024), 28, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4478), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [64355] = 40, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [64975] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587996,9 +588521,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -588006,76 +588531,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, - anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, - ACTIONS(6853), 1, - anon_sym_PIPE, - ACTIONS(6855), 1, - anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4485), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 21, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 5, - anon_sym_COLON, + anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4479), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [64495] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [65079] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588096,76 +588603,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6855), 1, + ACTIONS(6801), 1, anon_sym_AMP, - ACTIONS(6859), 1, - anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6869), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 5, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5238), 5, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4480), 9, + STATE(4486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588175,7 +588682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64635] = 13, + [65219] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588196,7 +588703,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4481), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(5832), 1, + sym_attribute_target_specifier, + STATE(6529), 1, + sym__name, + STATE(6961), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(1053), 8, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + anon_sym_typevar, + STATE(4487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588206,49 +588740,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3697), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3708), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [64721] = 40, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [65321] = 44, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588269,13 +588784,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -588285,60 +588798,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6994), 1, + anon_sym_COLON, + ACTIONS(6996), 1, + anon_sym_COMMA, + ACTIONS(7000), 1, + anon_sym_QMARK, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6815), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(6817), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(6819), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6831), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(6833), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(7032), 1, + sym_interpolation_close_brace, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, + STATE(7038), 1, + sym_interpolation_alignment_clause, + STATE(7544), 1, + sym_interpolation_format_clause, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4482), 9, + STATE(4488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588348,7 +588867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64861] = 29, + [65469] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588369,49 +588888,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6795), 1, + ACTIONS(6787), 1, anon_sym_GT_GT, - STATE(2669), 1, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, + anon_sym_CARET, + ACTIONS(6799), 1, + anon_sym_PIPE, + ACTIONS(6801), 1, + anon_sym_AMP, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4483), 9, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5794), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(4489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588421,23 +588967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [64979] = 43, + [65609] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588462,175 +588992,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(2701), 1, aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7024), 1, + ACTIONS(7034), 1, aux_sym_preproc_if_token3, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7527), 2, + STATE(7562), 2, sym_preproc_else_in_expression, sym_preproc_elif_in_expression, - STATE(4484), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [65125] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, - anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, - ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6881), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5694), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4485), 9, + STATE(4490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588640,7 +589070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [65265] = 24, + [65755] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588661,40 +589091,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4486), 9, + ACTIONS(3468), 1, + anon_sym_delegate, + ACTIONS(6679), 1, + sym_predefined_type, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, + STATE(4144), 1, + sym_identifier, + STATE(6020), 1, + sym_array_type, + STATE(6027), 1, + sym_nullable_type, + STATE(6706), 1, + sym__name, + STATE(6892), 1, + sym_tuple_type, + STATE(7210), 1, + sym__array_base_type, + STATE(7752), 1, + sym__pointer_base_type, + STATE(7207), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588704,27 +589134,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2997), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - [65373] = 26, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [65869] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588745,9 +589178,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -588755,34 +589188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6777), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, - ACTIONS(6785), 1, - anon_sym_SLASH, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6783), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4487), 9, + STATE(4492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588792,7 +589217,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(1229), 21, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -588800,7 +589228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, + anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, @@ -588810,7 +589238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [65485] = 24, + anon_sym_with, + [65973] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588831,40 +589260,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6777), 1, + ACTIONS(6887), 1, + anon_sym_SLASH, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(6885), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4488), 9, + STATE(4493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588874,9 +589307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 19, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 17, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -588884,17 +589319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - [65593] = 27, + [66085] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588915,9 +589346,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -588925,35 +589356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6785), 1, - anon_sym_SLASH, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6783), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4489), 9, + STATE(4494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588963,7 +589389,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 19, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -588981,7 +589409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [65707] = 22, + [66193] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589004,21 +589432,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6217), 1, + ACTIONS(6251), 1, anon_sym_ref, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, STATE(2340), 1, sym_ref_type, - STATE(2343), 1, + STATE(2342), 1, sym__scoped_base_type, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(5264), 1, + STATE(5169), 1, sym__name, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -589030,7 +589458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(4490), 9, + STATE(4495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589063,7 +589491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65811] = 15, + [66297] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589084,11 +589512,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6773), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6791), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(4491), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589098,47 +589551,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 10, - anon_sym_SEMI, + ACTIONS(5924), 21, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_EQ_GT, - ACTIONS(4056), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [65901] = 43, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [66401] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589159,79 +589594,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4110), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(4133), 1, + anon_sym_STAR, + ACTIONS(6991), 1, anon_sym_QMARK, - ACTIONS(6927), 1, - anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6931), 1, - anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7026), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(7036), 1, + anon_sym_DOT, + ACTIONS(4022), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7799), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4492), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589241,7 +589622,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66047] = 13, + ACTIONS(4024), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [66495] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589262,7 +589671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4493), 9, + STATE(4498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589272,7 +589681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4142), 11, + ACTIONS(3947), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589284,7 +589693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4144), 29, + ACTIONS(3949), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -589314,7 +589723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66133] = 13, + [66581] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589335,7 +589744,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4494), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589345,49 +589787,218 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3684), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5682), 19, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [66689] = 35, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6887), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6893), 1, anon_sym_AMP, + ACTIONS(6897), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3686), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6879), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4500), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [66819] = 36, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6783), 1, + anon_sym_SLASH, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, anon_sym_DOT_DOT, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, + anon_sym_CARET, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6785), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 8, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [66219] = 35, + STATE(4501), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [66951] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589408,9 +590019,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -589418,51 +590029,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6803), 1, + ACTIONS(6843), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6779), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_CARET, anon_sym_EQ_GT, anon_sym_when, @@ -589472,7 +590083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4495), 9, + STATE(4502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589482,7 +590093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66349] = 14, + [67081] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589503,9 +590114,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7008), 1, - anon_sym_and, - STATE(4496), 9, + STATE(4503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589515,7 +590124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(4150), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589527,13 +590136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 28, + ACTIONS(4152), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -589547,6 +590156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -589556,7 +590166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66437] = 13, + [67167] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589577,37 +590187,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4497), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3680), 11, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3682), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4504), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 21, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -589617,8 +590236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -589627,9 +590247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [66523] = 13, + [67271] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589650,7 +590269,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4498), 9, + ACTIONS(6915), 1, + anon_sym_and, + ACTIONS(6917), 1, + anon_sym_or, + STATE(4505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589660,7 +590283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4052), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589672,13 +590295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4054), 29, - sym_interpolation_close_brace, + ACTIONS(5480), 27, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -589692,8 +590315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -589702,7 +590323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66609] = 13, + [67361] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589723,7 +590344,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4499), 9, + STATE(4506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589733,7 +590354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3666), 11, + ACTIONS(4026), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589745,7 +590366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3668), 29, + ACTIONS(4028), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -589775,7 +590396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66695] = 29, + [67447] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589796,11 +590417,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -589810,35 +590433,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6823), 1, + ACTIONS(6787), 1, anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, + anon_sym_CARET, + ACTIONS(6799), 1, + anon_sym_PIPE, + ACTIONS(6801), 1, + anon_sym_AMP, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6809), 2, + ACTIONS(6777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4500), 9, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 8, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589848,23 +590493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [66813] = 14, + [67581] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589885,14 +590514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4501), 9, + STATE(4508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589902,7 +590524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, + ACTIONS(4034), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589914,10 +590536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5015), 23, + ACTIONS(4036), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -589931,14 +590556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66901] = 29, + [67667] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589959,96 +590587,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6889), 1, - anon_sym_GT_GT, - STATE(2455), 1, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6879), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4502), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [67019] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4503), 9, + anon_sym_GT_GT, + STATE(4509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590058,29 +590635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4021), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4023), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 17, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -590088,8 +590643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -590098,9 +590653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [67105] = 40, + [67781] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590121,76 +590674,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_AMP, ACTIONS(6889), 1, - anon_sym_GT_GT, - ACTIONS(6895), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, + ACTIONS(6893), 1, + anon_sym_AMP, + ACTIONS(6897), 1, + anon_sym_GT_GT, ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_QMARK_QMARK, - STATE(2455), 1, + anon_sym_DOT_DOT, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6877), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6879), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6879), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6881), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6887), 2, + ACTIONS(6895), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6891), 2, + ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(6901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 5, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4504), 9, + STATE(4510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590200,7 +590749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67245] = 26, + [67913] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590221,11 +590770,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -590235,30 +590786,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6829), 1, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6791), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(6795), 1, + anon_sym_is, + ACTIONS(6797), 1, + anon_sym_CARET, + ACTIONS(6799), 1, + anon_sym_PIPE, + ACTIONS(6801), 1, + anon_sym_AMP, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4505), 9, + ACTIONS(6781), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6785), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 7, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590268,25 +590847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [67357] = 14, + [68049] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590307,60 +590868,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4506), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5202), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, anon_sym_PIPE, + ACTIONS(6955), 1, anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5200), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7038), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [67445] = 43, + STATE(7597), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4512), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [68195] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590381,79 +590971,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6819), 1, anon_sym_CARET, - ACTIONS(6931), 1, - anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6823), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6841), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6843), 1, anon_sym_is, - ACTIONS(7028), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7752), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4507), 9, + ACTIONS(5682), 8, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590463,7 +591046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67591] = 13, + [68327] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590484,59 +591067,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4508), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6847), 1, + anon_sym_QMARK, + ACTIONS(6853), 1, anon_sym_SLASH, + ACTIONS(6855), 1, + anon_sym_CARET, + ACTIONS(6857), 1, anon_sym_PIPE, + ACTIONS(6859), 1, anon_sym_AMP, + ACTIONS(6863), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4007), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, + ACTIONS(6873), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6875), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6877), 1, + anon_sym_is, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6845), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6849), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5878), 5, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [67677] = 22, + STATE(4514), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [68467] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590557,36 +591167,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4509), 9, + STATE(4515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590596,10 +591177,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, + ACTIONS(3674), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3676), 29, sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -590610,15 +591208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [67781] = 40, + [68553] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590639,9 +591240,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -590649,66 +591250,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, - anon_sym_QMARK, - ACTIONS(6849), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, - ACTIONS(6853), 1, - anon_sym_PIPE, - ACTIONS(6855), 1, - anon_sym_AMP, - ACTIONS(6859), 1, + ACTIONS(6827), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, + ACTIONS(6833), 1, anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, - ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - anon_sym_COLON, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, + anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4510), 9, + STATE(4516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590718,7 +591313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67921] = 27, + [68681] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590739,40 +591334,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3468), 1, - anon_sym_delegate, - ACTIONS(6735), 1, - sym_predefined_type, - STATE(3709), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(4107), 1, - sym_identifier, - STATE(4151), 1, + STATE(2187), 1, sym_generic_name, - STATE(6079), 1, - sym_array_type, - STATE(6094), 1, - sym_nullable_type, - STATE(6742), 1, + STATE(4540), 1, + sym_identifier, + STATE(5840), 1, + sym_attribute_target_specifier, + STATE(6529), 1, sym__name, - STATE(6880), 1, - sym_tuple_type, - STATE(7322), 1, - sym__array_base_type, - STATE(7575), 1, - sym__pointer_base_type, - STATE(7254), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4145), 3, + STATE(7092), 1, + sym_attribute, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4511), 9, + ACTIONS(1053), 8, + anon_sym_field, + anon_sym_event, + anon_sym_method, + anon_sym_param, + anon_sym_property, + anon_sym_return, + anon_sym_type, + anon_sym_typevar, + STATE(4517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590782,7 +591371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -590805,7 +591394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [68035] = 13, + [68783] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590826,7 +591415,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4512), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6887), 1, + anon_sym_SLASH, + ACTIONS(6897), 1, + anon_sym_GT_GT, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6911), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6885), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4518), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [68911] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4110), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_STAR, + STATE(4519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590836,7 +591523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4098), 11, + ACTIONS(4022), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590848,16 +591535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4100), 29, + ACTIONS(4024), 27, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -590878,7 +591563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68121] = 16, + [69001] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590899,13 +591584,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4110), 1, anon_sym_LBRACK, - ACTIONS(4131), 1, + ACTIONS(4133), 1, anon_sym_STAR, - ACTIONS(6999), 1, + ACTIONS(6991), 1, anon_sym_QMARK, - STATE(4513), 9, + STATE(4520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590915,7 +591600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 10, + ACTIONS(4022), 10, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -590926,7 +591611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4058), 27, + ACTIONS(4024), 27, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -590954,7 +591639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68213] = 40, + [69093] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590975,76 +591660,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, - anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, - anon_sym_PIPE, - ACTIONS(6791), 1, - anon_sym_AMP, - ACTIONS(6795), 1, - anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, - anon_sym_QMARK, - ACTIONS(6913), 1, - anon_sym_AMP_AMP, - ACTIONS(6915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, - anon_sym_QMARK_QMARK, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6779), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6783), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6799), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5736), 5, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(6921), 1, anon_sym_and, + ACTIONS(6923), 1, anon_sym_or, - anon_sym_into, - STATE(4514), 9, + STATE(4521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591054,103 +591674,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68353] = 36, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6791), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6795), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(6171), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6779), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4515), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [68485] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [69183] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591171,86 +591735,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6843), 1, + ACTIONS(7040), 1, + anon_sym_into, + STATE(4523), 1, + aux_sym__query_body_repeat2, + STATE(4522), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6849), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6851), 1, - anon_sym_CARET, - ACTIONS(6853), 1, anon_sym_PIPE, - ACTIONS(6855), 1, anon_sym_AMP, - ACTIONS(6859), 1, anon_sym_GT_GT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT, - ACTIONS(6867), 1, - anon_sym_AMP_AMP, - ACTIONS(6869), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6873), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(6008), 27, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6845), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 5, - anon_sym_COLON, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4516), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [68625] = 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [69273] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591271,11 +591810,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7030), 1, + ACTIONS(7040), 1, anon_sym_into, - STATE(4518), 1, + STATE(4525), 1, aux_sym__query_body_repeat2, - STATE(4517), 9, + STATE(4523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591285,7 +591824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591297,7 +591836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 27, + ACTIONS(6014), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -591325,7 +591864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68715] = 15, + [69363] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591346,11 +591885,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7030), 1, + ACTIONS(7040), 1, anon_sym_into, - STATE(4520), 1, + STATE(4526), 1, aux_sym__query_body_repeat2, - STATE(4518), 9, + STATE(4524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591360,7 +591899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591372,7 +591911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 27, + ACTIONS(6014), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -591400,7 +591939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68805] = 15, + [69453] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591421,11 +591960,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7030), 1, + ACTIONS(7042), 1, anon_sym_into, - STATE(4521), 1, - aux_sym__query_body_repeat2, - STATE(4519), 9, + STATE(4525), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591435,7 +591972,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591447,7 +591985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 27, + ACTIONS(6018), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -591475,7 +592013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68895] = 14, + [69541] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591496,9 +592034,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7032), 1, + ACTIONS(7040), 1, anon_sym_into, - STATE(4520), 10, + STATE(4525), 1, + aux_sym__query_body_repeat2, + STATE(4526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591508,8 +592048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591521,7 +592060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 27, + ACTIONS(6025), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -591549,7 +592088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68983] = 15, + [69631] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591570,11 +592109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7030), 1, - anon_sym_into, - STATE(4520), 1, - aux_sym__query_body_repeat2, - STATE(4521), 9, + ACTIONS(7036), 1, + anon_sym_DOT, + STATE(4527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591584,7 +592121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(4026), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591595,13 +592132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 27, + ACTIONS(4028), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -591620,11 +592157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [69073] = 26, + [69719] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591645,44 +592183,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6875), 1, - anon_sym_DOT_DOT, - ACTIONS(6883), 1, + ACTIONS(6817), 1, anon_sym_SLASH, - STATE(2455), 1, + ACTIONS(6827), 1, + anon_sym_GT_GT, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6843), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6881), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(6811), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6813), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6815), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6825), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6831), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4522), 9, + STATE(4528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591692,25 +592243,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5682), 11, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - [69185] = 15, + [69845] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591731,11 +592276,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6999), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6853), 1, + anon_sym_SLASH, + ACTIONS(6863), 1, + anon_sym_GT_GT, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6849), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(4523), 9, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591745,36 +592328,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4058), 28, - sym_interpolation_close_brace, + ACTIONS(5682), 15, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -591783,9 +592344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [69275] = 40, + [69963] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591806,76 +592365,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, - anon_sym_SLASH, - ACTIONS(6787), 1, - anon_sym_CARET, - ACTIONS(6789), 1, - anon_sym_PIPE, - ACTIONS(6791), 1, - anon_sym_AMP, - ACTIONS(6795), 1, - anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - ACTIONS(6911), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(6913), 1, - anon_sym_AMP_AMP, - ACTIONS(6915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, - anon_sym_QMARK_QMARK, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6779), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6783), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6799), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5891), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4524), 9, + STATE(4530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591885,7 +592379,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69415] = 43, + ACTIONS(4024), 10, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_EQ_GT, + ACTIONS(4022), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [70053] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591906,79 +592440,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2699), 1, - aux_sym_preproc_else_token1, - ACTIONS(2701), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6841), 1, + anon_sym_as, + ACTIONS(6847), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6869), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6877), 1, anon_sym_is, - ACTIONS(7035), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7609), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4525), 9, + ACTIONS(5794), 5, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591988,7 +592519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69561] = 34, + [70193] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592009,9 +592540,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -592019,52 +592550,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6795), 1, - anon_sym_GT_GT, - ACTIONS(6801), 1, - anon_sym_as, - ACTIONS(6803), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6851), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6793), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4532), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 17, + anon_sym_COLON, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, - anon_sym_CARET, - anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, @@ -592072,17 +592603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4526), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [69689] = 14, + anon_sym_as, + anon_sym_is, + [70305] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592103,38 +592626,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7037), 1, - sym_string_literal_encoding, - STATE(4527), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4933), 11, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6833), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4931), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4533), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 21, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -592144,8 +592675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -592154,9 +592686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [69777] = 40, + [70409] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592177,76 +592708,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6807), 1, - anon_sym_QMARK, - ACTIONS(6813), 1, + ACTIONS(6887), 1, anon_sym_SLASH, - ACTIONS(6815), 1, - anon_sym_CARET, - ACTIONS(6817), 1, - anon_sym_PIPE, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6823), 1, - anon_sym_GT_GT, - ACTIONS(6829), 1, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(6831), 1, - anon_sym_AMP_AMP, - ACTIONS(6833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6839), 1, - anon_sym_is, - STATE(3207), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(6883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(6885), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5891), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4528), 9, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592256,93 +592756,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69917] = 26, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(3501), 1, - sym_identifier, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3911), 4, + ACTIONS(5682), 17, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4529), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [70029] = 13, + anon_sym_as, + anon_sym_is, + [70523] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592363,7 +592795,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4530), 9, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6853), 1, + anon_sym_SLASH, + ACTIONS(6869), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6849), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592373,29 +592843,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4939), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4937), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5682), 17, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -592403,8 +592852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -592413,9 +592861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [70115] = 13, + [70637] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592436,7 +592882,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4531), 9, + ACTIONS(7045), 1, + aux_sym_raw_string_literal_token1, + STATE(4536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592446,7 +592894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4156), 11, + ACTIONS(4945), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -592458,13 +592906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4158), 29, + ACTIONS(4943), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -592488,7 +592935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70201] = 15, + [70725] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592509,11 +592956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7004), 1, - anon_sym_and, - ACTIONS(7006), 1, - anon_sym_or, - STATE(4532), 9, + STATE(4537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592523,7 +592966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(4154), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -592535,14 +592978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 27, - anon_sym_SEMI, + ACTIONS(4156), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -592556,14 +592998,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70291] = 14, + [70811] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592584,9 +593029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7004), 1, - anon_sym_and, - STATE(4533), 9, + STATE(4538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592596,7 +593039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(4042), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -592608,14 +593051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 28, - anon_sym_SEMI, + ACTIONS(4044), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -592629,15 +593071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70379] = 17, + [70897] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592658,18 +593102,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_LPAREN, - ACTIONS(7045), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5630), 1, + anon_sym_ref, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(2340), 1, + sym_ref_type, + STATE(2342), 1, + sym__scoped_base_type, + STATE(4540), 1, + sym_identifier, + STATE(5169), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3459), 7, anon_sym_LBRACK, - ACTIONS(7048), 1, - aux_sym_preproc_if_token1, - STATE(5532), 1, - sym__attribute_list, - STATE(5531), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(4534), 10, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592679,26 +593140,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat1, - ACTIONS(4767), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_this, anon_sym_scoped, - anon_sym_params, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -592713,8 +593163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [70473] = 27, + [71001] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592735,45 +593184,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_SLASH, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(6929), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4535), 9, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_EQ_GT, + STATE(4540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592783,25 +593210,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3678), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [70587] = 33, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [71093] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592822,57 +593260,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(2699), 1, + aux_sym_preproc_else_token1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6785), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6795), 1, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, + anon_sym_PIPE, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6801), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6803), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2669), 1, + ACTIONS(7049), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6799), 2, + ACTIONS(6961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4536), 9, + STATE(7402), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592882,19 +593342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - [70713] = 22, + [71239] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592915,36 +593363,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6829), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4537), 9, + ACTIONS(6915), 1, + anon_sym_and, + STATE(4542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592954,10 +593375,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 21, - sym_interpolation_close_brace, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 28, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -592968,15 +593406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_and, + anon_sym_DOT_DOT, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [70817] = 24, + [71327] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592997,30 +593437,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -593030,7 +593470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4538), 9, + STATE(4543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593040,7 +593480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -593059,7 +593499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [70924] = 40, + [71434] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593080,19 +593520,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -593118,11 +593558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -593143,12 +593583,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4539), 9, + STATE(4544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593158,7 +593598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71063] = 35, + [71573] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593179,11 +593619,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593205,11 +593645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7107), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(6637), 2, @@ -593233,7 +593673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -593242,7 +593682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4540), 9, + STATE(4545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593252,7 +593692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71192] = 36, + [71702] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593273,11 +593713,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593301,11 +593741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(7109), 1, anon_sym_CARET, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(6637), 2, @@ -593329,7 +593769,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -593337,7 +593777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4541), 9, + STATE(4546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593347,7 +593787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71323] = 34, + [71833] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593368,11 +593808,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593392,9 +593832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7107), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -593417,11 +593857,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -593430,7 +593870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4542), 9, + STATE(4547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593440,7 +593880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71450] = 33, + [71960] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593461,11 +593901,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593485,9 +593925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7107), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -593507,11 +593947,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4543), 9, + STATE(4548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593521,7 +593961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -593532,7 +593972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - [71575] = 22, + [72085] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593553,26 +593993,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, ACTIONS(7051), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -593582,7 +594022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4544), 9, + STATE(4549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593592,7 +594032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -593613,7 +594053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [71678] = 37, + [72188] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593634,13 +594074,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593666,9 +594106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7111), 1, anon_sym_PIPE, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -593691,7 +594131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -593699,7 +594139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4545), 9, + STATE(4550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593709,7 +594149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71811] = 38, + [72321] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593730,13 +594170,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593764,9 +594204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7113), 1, anon_sym_AMP_AMP, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -593789,14 +594229,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4546), 9, + STATE(4551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593806,7 +594246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71946] = 40, + [72456] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593827,13 +594267,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -593865,9 +594305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7117), 1, anon_sym_QMARK_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -593890,12 +594330,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4547), 9, + STATE(4552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593905,7 +594345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72085] = 40, + [72595] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593926,19 +594366,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -593964,11 +594404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -593989,12 +594429,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4548), 9, + STATE(4553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594004,7 +594444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72224] = 40, + [72734] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594025,19 +594465,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -594063,11 +594503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -594088,12 +594528,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4549), 9, + STATE(4554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594103,7 +594543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72363] = 40, + [72873] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594124,19 +594564,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -594162,11 +594602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -594187,12 +594627,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4550), 9, + STATE(4555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594202,7 +594642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72502] = 40, + [73012] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594223,19 +594663,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -594261,11 +594701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -594286,12 +594726,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4551), 9, + STATE(4556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594301,7 +594741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72641] = 35, + [73151] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594322,9 +594762,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594332,9 +594772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594348,14 +594788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7141), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7119), 2, @@ -594376,7 +594816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -594385,7 +594825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(4552), 9, + STATE(4557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594395,7 +594835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72770] = 36, + [73280] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594416,9 +594856,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594426,9 +594866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594444,14 +594884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(7143), 1, anon_sym_CARET, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7119), 2, @@ -594472,7 +594912,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -594480,7 +594920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(4553), 9, + STATE(4558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594490,7 +594930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72901] = 34, + [73411] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594511,9 +594951,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594521,9 +594961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594535,9 +594975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7141), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -594560,11 +595000,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -594573,7 +595013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(4554), 9, + STATE(4559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594583,7 +595023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73028] = 33, + [73538] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594604,9 +595044,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594614,9 +595054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594628,9 +595068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7141), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -594650,11 +595090,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4555), 9, + STATE(4560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594664,7 +595104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -594675,7 +595115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - [73153] = 37, + [73663] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594696,9 +595136,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594706,11 +595146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594728,9 +595168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7145), 1, anon_sym_PIPE, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -594753,7 +595193,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -594761,7 +595201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(4556), 9, + STATE(4561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594771,7 +595211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73286] = 38, + [73796] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594792,9 +595232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594802,11 +595242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594826,9 +595266,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7147), 1, anon_sym_AMP_AMP, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -594851,14 +595291,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(4557), 9, + STATE(4562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594868,7 +595308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73421] = 40, + [73931] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594889,9 +595329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -594899,11 +595339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -594927,9 +595367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7151), 1, anon_sym_QMARK_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -594952,12 +595392,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4558), 9, + STATE(4563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594967,7 +595407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73560] = 41, + [74070] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594988,23 +595428,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7153), 1, anon_sym_SEMI, @@ -595028,11 +595468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -595053,11 +595493,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4559), 9, + STATE(4564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595067,7 +595507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73701] = 15, + [74211] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595092,7 +595532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, ACTIONS(7189), 1, anon_sym_or, - STATE(4560), 9, + STATE(4565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595102,7 +595542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595114,7 +595554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 26, + ACTIONS(5480), 26, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -595141,7 +595581,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [73790] = 14, + [74300] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595162,14 +595602,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 6, + ACTIONS(4295), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4561), 9, + STATE(4566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595179,7 +595619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5507), 11, + ACTIONS(5503), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595191,7 +595631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5504), 22, + ACTIONS(5500), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -595214,7 +595654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73877] = 14, + [74387] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595235,14 +595675,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 6, + ACTIONS(4295), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4562), 9, + STATE(4567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595252,7 +595692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5513), 11, + ACTIONS(5509), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595264,7 +595704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5510), 22, + ACTIONS(5506), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -595287,7 +595727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73964] = 21, + [74474] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595308,103 +595748,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5837), 1, - sym_attribute_target_specifier, - STATE(6611), 1, - sym__name, - STATE(6922), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1053), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4563), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [74065] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -595426,11 +595786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -595451,12 +595811,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_SEMI, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4564), 9, + STATE(4568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595466,7 +595826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [74204] = 27, + [74613] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595489,9 +595849,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - ACTIONS(5089), 1, + ACTIONS(5091), 1, aux_sym_preproc_if_token1, ACTIONS(7191), 1, aux_sym_preproc_if_token3, @@ -595501,25 +595861,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, STATE(2182), 1, sym__reserved_identifier, - STATE(5833), 1, + STATE(5844), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(5859), 1, + STATE(5878), 1, sym_attribute_list, - STATE(6066), 1, + STATE(5983), 1, sym_preproc_if_in_attribute_list, - STATE(6068), 1, + STATE(5984), 1, sym__attribute_list, - STATE(6584), 1, + STATE(6681), 1, sym_enum_member_declaration, - STATE(6766), 1, + STATE(6773), 1, sym_identifier, - STATE(7405), 2, + STATE(7737), 2, sym_preproc_else_in_enum_member_declaration, sym_preproc_elif_in_enum_member_declaration, - STATE(7798), 2, + STATE(7770), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(4565), 9, + STATE(4569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595552,7 +595912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74317] = 29, + [74726] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595573,9 +595933,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -595583,9 +595943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -595593,9 +595953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -595609,13 +595969,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4566), 9, + STATE(4570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595625,7 +595985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -595640,7 +596000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [74434] = 26, + [74843] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595661,9 +596021,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -595671,17 +596031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -595689,7 +596049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7123), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595698,7 +596058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4567), 9, + STATE(4571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595708,7 +596068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -595725,7 +596085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [74545] = 27, + [74954] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595746,9 +596106,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -595756,17 +596116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -595777,14 +596137,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7123), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4568), 9, + STATE(4572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595794,7 +596154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -595811,7 +596171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [74658] = 13, + [75067] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595832,7 +596192,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4569), 9, + STATE(4573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595842,7 +596202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2985), 11, + ACTIONS(2977), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595854,7 +596214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2987), 28, + ACTIONS(2979), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -595883,7 +596243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [74743] = 21, + [75152] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595904,99 +596264,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5836), 1, - sym_attribute_target_specifier, - STATE(6611), 1, - sym__name, - STATE(6876), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1053), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4570), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [74844] = 29, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7201), 1, anon_sym_SLASH, @@ -596004,11 +596284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7207), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596020,13 +596300,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7203), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4571), 9, + STATE(4574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596036,7 +596316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_COLON, anon_sym_CARET, anon_sym_EQ_EQ, @@ -596051,7 +596331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [74961] = 26, + [75269] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596072,35 +596352,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7201), 1, anon_sym_SLASH, ACTIONS(7207), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -596109,7 +596389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4572), 9, + STATE(4575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596119,7 +596399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, @@ -596136,7 +596416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [75072] = 35, + [75380] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596157,19 +596437,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596183,14 +596463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(7217), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7197), 2, @@ -596211,7 +596491,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_CARET, anon_sym_when, @@ -596220,7 +596500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4573), 9, + STATE(4576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596230,7 +596510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75201] = 36, + [75509] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596251,19 +596531,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596279,14 +596559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(7219), 1, anon_sym_CARET, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7197), 2, @@ -596307,7 +596587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_when, anon_sym_and, @@ -596315,7 +596595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4574), 9, + STATE(4577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596325,7 +596605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75332] = 34, + [75640] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596346,19 +596626,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596370,11 +596650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7217), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596395,11 +596675,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_CARET, anon_sym_when, @@ -596408,7 +596688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4575), 9, + STATE(4578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596418,7 +596698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75459] = 27, + [75767] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596439,29 +596719,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7201), 1, anon_sym_SLASH, ACTIONS(7207), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596470,14 +596750,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4576), 9, + STATE(4579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596487,7 +596767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, @@ -596504,7 +596784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [75572] = 33, + [75880] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596525,19 +596805,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596549,11 +596829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7217), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596571,11 +596851,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4577), 9, + STATE(4580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596585,7 +596865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_COLON, anon_sym_CARET, anon_sym_EQ_EQ, @@ -596596,7 +596876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [75697] = 37, + [76005] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596617,21 +596897,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596649,11 +596929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7221), 1, anon_sym_PIPE, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596674,7 +596954,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_when, anon_sym_and, @@ -596682,7 +596962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4578), 9, + STATE(4581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596692,7 +596972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75830] = 38, + [76138] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596713,21 +596993,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596747,11 +597027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7223), 1, anon_sym_AMP_AMP, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596772,14 +597052,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4579), 9, + STATE(4582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596789,7 +597069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75965] = 40, + [76273] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596810,21 +597090,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596848,11 +597128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7227), 1, anon_sym_QMARK_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596873,12 +597153,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4580), 9, + STATE(4583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596888,7 +597168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76104] = 40, + [76412] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596909,19 +597189,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -596947,11 +597227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -596972,12 +597252,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4581), 9, + STATE(4584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596987,7 +597267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76243] = 22, + [76551] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597008,26 +597288,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, ACTIONS(7207), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -597037,7 +597317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4582), 9, + STATE(4585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597047,7 +597327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, @@ -597068,7 +597348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [76346] = 40, + [76654] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597089,19 +597369,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -597127,11 +597407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -597152,12 +597432,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4583), 9, + STATE(4586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597167,7 +597447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76485] = 40, + [76793] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597188,19 +597468,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -597226,11 +597506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -597251,12 +597531,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4584), 9, + STATE(4587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597266,7 +597546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76624] = 40, + [76932] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597287,19 +597567,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -597325,11 +597605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -597350,12 +597630,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4585), 9, + STATE(4588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597365,7 +597645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76763] = 40, + [77071] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597386,19 +597666,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -597424,11 +597704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -597449,69 +597729,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4586), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [76902] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5835), 1, - sym_attribute_target_specifier, - STATE(6611), 1, - sym__name, - STATE(6808), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1053), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4587), 9, + STATE(4589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597521,30 +597744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [77003] = 22, + [77210] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597565,9 +597765,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -597577,14 +597777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -597594,7 +597794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4588), 9, + STATE(4590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597604,7 +597804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -597625,7 +597825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [77106] = 13, + [77313] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597646,7 +597846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4589), 9, + STATE(4591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597656,7 +597856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2985), 11, + ACTIONS(2977), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -597668,7 +597868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2987), 28, + ACTIONS(2979), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -597697,7 +597897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [77191] = 13, + [77398] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597718,14 +597918,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4813), 6, + ACTIONS(4809), 6, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4590), 9, + STATE(4592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597735,7 +597935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4811), 33, + ACTIONS(4807), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -597769,7 +597969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [77276] = 17, + [77483] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597790,16 +597990,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(4136), 2, + ACTIONS(4160), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4058), 8, + ACTIONS(4024), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -597808,7 +598008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(4591), 9, + STATE(4593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597818,7 +598018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -597845,7 +598045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [77369] = 13, + [77576] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597866,7 +598066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4592), 9, + STATE(4594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597876,7 +598076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3150), 11, + ACTIONS(3165), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -597888,7 +598088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3152), 28, + ACTIONS(3167), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -597917,7 +598117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [77454] = 16, + [77661] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597938,13 +598138,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5363), 1, + ACTIONS(5351), 1, anon_sym_LT, ACTIONS(7231), 1, anon_sym_COLON_COLON, - STATE(3330), 1, + STATE(3349), 1, sym_type_argument_list, - STATE(4593), 9, + STATE(4595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597954,7 +598154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 10, + ACTIONS(3678), 10, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -597965,7 +598165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3682), 26, + ACTIONS(3680), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -597992,7 +598192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [77545] = 13, + [77752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598013,14 +598213,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4854), 6, + ACTIONS(4835), 6, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4594), 9, + STATE(4596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598030,7 +598230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4852), 33, + ACTIONS(4833), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -598064,7 +598264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [77630] = 29, + [77837] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598085,49 +598285,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6481), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3911), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4597), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [77948] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4598), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7237), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7241), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7243), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(5480), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7239), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4595), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [78033] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(5500), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(4295), 4, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598137,22 +598460,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5153), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [77747] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [78122] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598173,9 +598516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -598183,34 +598526,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7241), 1, + anon_sym_GT_GT, ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7239), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4596), 9, + STATE(4600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598220,10 +598568,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 14, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -598237,7 +598583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [77858] = 27, + [78239] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598258,9 +598604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -598268,35 +598614,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7233), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4597), 9, + STATE(4601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598306,7 +598651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598323,7 +598668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [77971] = 22, + [78350] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598344,9 +598689,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -598354,26 +598699,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7237), 1, + anon_sym_SLASH, ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4598), 9, + STATE(4602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598383,9 +598737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598393,7 +598745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -598403,8 +598754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_with, - [78074] = 13, + [78463] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598425,172 +598775,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4599), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(7243), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [78159] = 26, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6450), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3911), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4600), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [78270] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5504), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(4346), 4, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4601), 9, + STATE(4603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598600,23 +598814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5015), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5924), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -598627,15 +598825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [78359] = 15, + [78566] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598656,15 +598856,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5510), 2, + ACTIONS(5506), 2, anon_sym_COLON, anon_sym_COMMA, - ACTIONS(4346), 4, + ACTIONS(4295), 4, anon_sym_RPAREN, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4602), 9, + STATE(4604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598674,7 +598874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5202), 11, + ACTIONS(5173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -598686,7 +598886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5200), 22, + ACTIONS(5171), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -598709,7 +598909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [78448] = 43, + [78655] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598730,35 +598930,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, ACTIONS(7245), 1, anon_sym_COLON, @@ -598774,34 +598974,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7257), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6821), 1, + STATE(6930), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4603), 9, + STATE(4605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598811,7 +599011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78593] = 15, + [78800] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598836,7 +599036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, ACTIONS(7189), 1, anon_sym_or, - STATE(4604), 9, + STATE(4606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598846,7 +599046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -598858,7 +599058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 26, + ACTIONS(6171), 26, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -598885,7 +599085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [78682] = 13, + [78889] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598906,7 +599106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4605), 9, + STATE(4607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598916,7 +599116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3945), 11, + ACTIONS(3949), 11, anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, @@ -598928,7 +599128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, - ACTIONS(3943), 28, + ACTIONS(3947), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -598957,7 +599157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [78767] = 29, + [78974] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598978,19 +599178,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -598998,11 +599198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7267), 1, anon_sym_GT_GT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -599014,13 +599214,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7265), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4606), 9, + STATE(4608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599030,7 +599230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599045,7 +599245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [78884] = 26, + [79091] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599066,35 +599266,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, ACTIONS(7263), 1, anon_sym_SLASH, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7261), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599103,7 +599303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4607), 9, + STATE(4609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599113,7 +599313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599130,7 +599330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [78995] = 24, + [79202] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599151,30 +599351,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599184,7 +599384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4608), 9, + STATE(4610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599194,7 +599394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599213,7 +599413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [79102] = 35, + [79309] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599234,19 +599434,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -599260,14 +599460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7271), 1, anon_sym_AMP, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7259), 2, @@ -599288,7 +599488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599297,7 +599497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4609), 9, + STATE(4611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599307,7 +599507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79231] = 36, + [79438] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599328,19 +599528,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -599356,14 +599556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(7277), 1, anon_sym_CARET, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7259), 2, @@ -599384,7 +599584,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599392,7 +599592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4610), 9, + STATE(4612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599402,7 +599602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79362] = 34, + [79569] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599423,19 +599623,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -599447,11 +599647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7267), 1, anon_sym_GT_GT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -599472,11 +599672,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599485,7 +599685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4611), 9, + STATE(4613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599495,7 +599695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79489] = 27, + [79696] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599516,29 +599716,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, ACTIONS(7263), 1, anon_sym_SLASH, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -599547,14 +599747,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7261), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4612), 9, + STATE(4614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599564,7 +599764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599581,7 +599781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [79602] = 33, + [79809] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599602,19 +599802,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -599626,11 +599826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7267), 1, anon_sym_GT_GT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -599648,11 +599848,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4613), 9, + STATE(4615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599662,7 +599862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599673,7 +599873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [79727] = 22, + [79934] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599694,26 +599894,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599723,7 +599923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4614), 9, + STATE(4616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599733,7 +599933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -599754,7 +599954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [79830] = 37, + [80037] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599775,117 +599975,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7253), 1, - anon_sym_DOT_DOT, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(7257), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_SLASH, - ACTIONS(7267), 1, - anon_sym_GT_GT, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7277), 1, - anon_sym_CARET, - ACTIONS(7279), 1, - anon_sym_PIPE, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7261), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7275), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4615), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [79963] = 38, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7253), 1, anon_sym_DOT_DOT, @@ -599903,13 +600007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7279), 1, anon_sym_PIPE, - ACTIONS(7281), 1, - anon_sym_AMP_AMP, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -599930,112 +600032,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4616), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [80098] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7253), 1, - anon_sym_DOT_DOT, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(7257), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_SLASH, - ACTIONS(7267), 1, - anon_sym_GT_GT, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7277), 1, - anon_sym_CARET, - ACTIONS(7279), 1, - anon_sym_PIPE, - ACTIONS(7281), 1, anon_sym_AMP_AMP, - ACTIONS(7283), 1, anon_sym_PIPE_PIPE, - ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7261), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7273), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7275), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, STATE(4617), 9, sym_preproc_region, sym_preproc_endregion, @@ -600046,7 +600050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80237] = 40, + [80170] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600067,22 +600071,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7251), 1, - anon_sym_QMARK, ACTIONS(7253), 1, anon_sym_DOT_DOT, ACTIONS(7255), 1, @@ -600101,15 +600105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7281), 1, anon_sym_AMP_AMP, - ACTIONS(7283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7285), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -600130,11 +600130,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5682), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(4618), 9, sym_preproc_region, sym_preproc_endregion, @@ -600145,7 +600147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80376] = 40, + [80305] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600166,19 +600168,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(7257), 1, + anon_sym_is, + ACTIONS(7263), 1, + anon_sym_SLASH, + ACTIONS(7267), 1, + anon_sym_GT_GT, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_PIPE, + ACTIONS(7281), 1, + anon_sym_AMP_AMP, + ACTIONS(7283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7285), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7269), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7273), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4619), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [80444] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7251), 1, anon_sym_QMARK, @@ -600204,11 +600305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -600229,12 +600330,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5238), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4619), 9, + STATE(4620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600244,7 +600345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80515] = 13, + [80583] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600265,14 +600366,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4807), 6, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7251), 1, + anon_sym_QMARK, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(7257), 1, + anon_sym_is, + ACTIONS(7263), 1, + anon_sym_SLASH, + ACTIONS(7267), 1, + anon_sym_GT_GT, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_PIPE, + ACTIONS(7281), 1, + anon_sym_AMP_AMP, + ACTIONS(7283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7285), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7269), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7273), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4621), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [80722] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4819), 6, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4620), 9, + STATE(4622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600282,7 +600482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4805), 33, + ACTIONS(4817), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -600316,7 +600516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [80600] = 40, + [80807] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600337,21 +600537,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -600375,11 +600575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -600400,12 +600600,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4621), 9, + STATE(4623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600415,7 +600615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80739] = 29, + [80946] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600436,9 +600636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -600446,9 +600646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -600456,9 +600656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -600472,13 +600672,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7327), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4622), 9, + STATE(4624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600488,7 +600688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -600503,7 +600703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [80856] = 26, + [81063] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600524,9 +600724,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -600534,17 +600734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -600552,7 +600752,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7323), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600561,7 +600761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4623), 9, + STATE(4625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600571,7 +600771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -600588,7 +600788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [80967] = 27, + [81174] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600609,9 +600809,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -600619,17 +600819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -600640,14 +600840,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7323), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4624), 9, + STATE(4626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600657,7 +600857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -600674,7 +600874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [81080] = 22, + [81287] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600695,9 +600895,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -600707,14 +600907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600724,7 +600924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4625), 9, + STATE(4627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600734,7 +600934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -600755,7 +600955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [81183] = 13, + [81390] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600776,14 +600976,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4858), 6, + ACTIONS(4825), 6, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4626), 9, + STATE(4628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600793,7 +600993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4856), 33, + ACTIONS(4823), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -600827,7 +601027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [81268] = 13, + [81475] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600848,7 +601048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4627), 9, + STATE(4629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600858,7 +601058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, + ACTIONS(5155), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600870,7 +601070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5015), 28, + ACTIONS(5153), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600899,7 +601099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81353] = 14, + [81560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600922,7 +601122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7333), 1, anon_sym_LPAREN, - STATE(4628), 9, + STATE(4630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600932,7 +601132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1975), 11, + ACTIONS(1995), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600944,7 +601144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1977), 27, + ACTIONS(1997), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600972,7 +601172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81440] = 13, + [81647] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600993,7 +601193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4629), 9, + STATE(4631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601003,7 +601203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5093), 11, + ACTIONS(5161), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601015,7 +601215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5091), 28, + ACTIONS(5159), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601044,7 +601244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81525] = 13, + [81732] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601065,7 +601265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4630), 9, + STATE(4632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601075,7 +601275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4908), 11, + ACTIONS(4900), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601087,7 +601287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4906), 28, + ACTIONS(4898), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601116,7 +601316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81610] = 13, + [81817] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601137,7 +601337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4631), 9, + STATE(4633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601147,7 +601347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5202), 11, + ACTIONS(5173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601159,7 +601359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5200), 28, + ACTIONS(5171), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601188,7 +601388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81695] = 29, + [81902] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601209,9 +601409,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -601219,9 +601419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -601229,9 +601429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -601245,13 +601445,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7341), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4632), 9, + STATE(4634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601261,7 +601461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -601276,7 +601476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [81812] = 26, + [82019] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601297,9 +601497,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -601307,17 +601507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -601325,7 +601525,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601334,7 +601534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4633), 9, + STATE(4635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601344,7 +601544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -601361,7 +601561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [81923] = 27, + [82130] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601382,9 +601582,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -601392,17 +601592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -601413,14 +601613,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4634), 9, + STATE(4636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601430,7 +601630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -601447,7 +601647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [82036] = 22, + [82243] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601468,9 +601668,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -601480,14 +601680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601497,7 +601697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4635), 9, + STATE(4637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601507,7 +601707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -601528,7 +601728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [82139] = 13, + [82346] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601549,7 +601749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4636), 9, + STATE(4638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601559,7 +601759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5128), 11, + ACTIONS(5181), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601571,7 +601771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5126), 28, + ACTIONS(5179), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601600,7 +601800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82224] = 13, + [82431] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601621,7 +601821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4637), 9, + STATE(4639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601631,7 +601831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5206), 11, + ACTIONS(5189), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601643,7 +601843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5204), 28, + ACTIONS(5187), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601672,7 +601872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82309] = 13, + [82516] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601693,7 +601893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4638), 9, + STATE(4640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601703,7 +601903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5049), 11, + ACTIONS(5197), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601715,7 +601915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5047), 28, + ACTIONS(5195), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601744,7 +601944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82394] = 13, + [82601] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601765,7 +601965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4639), 9, + STATE(4641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601775,7 +601975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5097), 11, + ACTIONS(5201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601787,7 +601987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5095), 28, + ACTIONS(5199), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601816,7 +602016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82479] = 13, + [82686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601837,7 +602037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4640), 9, + STATE(4642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601847,7 +602047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5142), 11, + ACTIONS(4981), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601859,7 +602059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5140), 28, + ACTIONS(4979), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601888,7 +602088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82564] = 13, + [82771] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601909,7 +602109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4641), 9, + STATE(4643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601919,7 +602119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5146), 11, + ACTIONS(5205), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601931,7 +602131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5144), 28, + ACTIONS(5203), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601960,7 +602160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82649] = 13, + [82856] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601981,7 +602181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4642), 9, + STATE(4644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601991,7 +602191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5150), 11, + ACTIONS(5209), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602003,7 +602203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5148), 28, + ACTIONS(5207), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602032,7 +602232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82734] = 13, + [82941] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602053,7 +602253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4643), 9, + STATE(4645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602063,7 +602263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2989), 11, + ACTIONS(2981), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602075,7 +602275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2991), 28, + ACTIONS(2983), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602104,7 +602304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82819] = 13, + [83026] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602125,7 +602325,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4644), 9, + STATE(4646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602135,7 +602335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5178), 11, + ACTIONS(5220), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602147,7 +602347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5176), 28, + ACTIONS(5218), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602176,7 +602376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82904] = 13, + [83111] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602197,7 +602397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4645), 9, + STATE(4647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602248,7 +602448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [82989] = 13, + [83196] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602269,7 +602469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4646), 9, + STATE(4648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602279,7 +602479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5021), 11, + ACTIONS(5236), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602291,7 +602491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5019), 28, + ACTIONS(5234), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602320,7 +602520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83074] = 13, + [83281] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602341,7 +602541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4647), 9, + STATE(4649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602351,7 +602551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5234), 11, + ACTIONS(5244), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602363,7 +602563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5232), 28, + ACTIONS(5242), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602392,7 +602592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83159] = 13, + [83366] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602413,7 +602613,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4648), 9, + STATE(4650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602423,7 +602623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5041), 11, + ACTIONS(5248), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602435,7 +602635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5039), 28, + ACTIONS(5246), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602464,7 +602664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83244] = 13, + [83451] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602485,7 +602685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4649), 9, + STATE(4651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602495,7 +602695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5194), 11, + ACTIONS(5252), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602507,7 +602707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5192), 28, + ACTIONS(5250), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602536,7 +602736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83329] = 13, + [83536] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602557,7 +602757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4650), 9, + STATE(4652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602567,7 +602767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5198), 11, + ACTIONS(5256), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602579,7 +602779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5196), 28, + ACTIONS(5254), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602608,7 +602808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83414] = 13, + [83621] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602629,7 +602829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4651), 9, + STATE(4653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602639,7 +602839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5029), 11, + ACTIONS(5151), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602651,7 +602851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5027), 28, + ACTIONS(5149), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602680,7 +602880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83499] = 13, + [83706] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602701,7 +602901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4652), 9, + STATE(4654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602711,7 +602911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5067), 11, + ACTIONS(4985), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602723,7 +602923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5065), 28, + ACTIONS(4983), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602752,7 +602952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83584] = 13, + [83791] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602773,7 +602973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4653), 9, + STATE(4655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602783,7 +602983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5071), 11, + ACTIONS(5025), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602795,7 +602995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5069), 28, + ACTIONS(5023), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602824,7 +603024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83669] = 13, + [83876] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602845,7 +603045,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4654), 9, + STATE(4656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602855,7 +603055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5101), 11, + ACTIONS(5033), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602867,7 +603067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5099), 28, + ACTIONS(5031), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602896,7 +603096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83754] = 13, + [83961] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602917,7 +603117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4655), 9, + STATE(4657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602927,7 +603127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5162), 11, + ACTIONS(5228), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602939,7 +603139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5160), 28, + ACTIONS(5226), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602968,7 +603168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83839] = 40, + [84046] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602989,11 +603189,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -603027,9 +603227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -603052,12 +603252,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 4, + ACTIONS(5878), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4656), 9, + STATE(4658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603067,7 +603267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83978] = 13, + [84185] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603088,7 +603288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4657), 9, + STATE(4659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603098,7 +603298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5174), 11, + ACTIONS(5240), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603110,7 +603310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5172), 28, + ACTIONS(5238), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603139,7 +603339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84063] = 13, + [84270] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603160,7 +603360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4658), 9, + STATE(4660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603170,7 +603370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5186), 11, + ACTIONS(4989), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603182,7 +603382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5184), 28, + ACTIONS(4987), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603211,7 +603411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84148] = 13, + [84355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603232,7 +603432,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4659), 9, + STATE(4661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603242,7 +603442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5214), 11, + ACTIONS(4997), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603254,7 +603454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5212), 28, + ACTIONS(4995), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603283,7 +603483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84233] = 13, + [84440] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603304,7 +603504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4660), 9, + STATE(4662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603314,7 +603514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5218), 11, + ACTIONS(5013), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603326,7 +603526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5216), 28, + ACTIONS(5011), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603355,7 +603555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84318] = 13, + [84525] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603376,7 +603576,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4661), 9, + STATE(4663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603386,7 +603586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5222), 11, + ACTIONS(5017), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603398,7 +603598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5220), 28, + ACTIONS(5015), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603427,7 +603627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84403] = 27, + [84610] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603450,9 +603650,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - ACTIONS(5089), 1, + ACTIONS(5091), 1, aux_sym_preproc_if_token1, ACTIONS(7193), 1, aux_sym_preproc_else_token1, @@ -603462,25 +603662,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, STATE(2182), 1, sym__reserved_identifier, - STATE(5833), 1, + STATE(5844), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(5912), 1, + STATE(5881), 1, sym_attribute_list, - STATE(6066), 1, + STATE(5983), 1, sym_preproc_if_in_attribute_list, - STATE(6068), 1, + STATE(5984), 1, sym__attribute_list, - STATE(6612), 1, + STATE(6563), 1, sym_enum_member_declaration, - STATE(6766), 1, + STATE(6773), 1, sym_identifier, - STATE(7407), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(7460), 2, + STATE(7353), 2, sym_preproc_else_in_enum_member_declaration, sym_preproc_elif_in_enum_member_declaration, - STATE(4662), 9, + STATE(7758), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(4664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603513,7 +603713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84516] = 13, + [84723] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603534,79 +603734,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4663), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5248), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5246), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [84601] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4664), 9, + STATE(4665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603616,7 +603744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5154), 11, + ACTIONS(5053), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603628,7 +603756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5152), 28, + ACTIONS(5051), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603657,7 +603785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84686] = 13, + [84808] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603678,7 +603806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4665), 9, + STATE(4666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603688,7 +603816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4993), 11, + ACTIONS(5065), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603700,7 +603828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4991), 28, + ACTIONS(5063), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603729,7 +603857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84771] = 13, + [84893] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603750,7 +603878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4666), 9, + STATE(4667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603760,7 +603888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4997), 11, + ACTIONS(5095), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603772,7 +603900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4995), 28, + ACTIONS(5093), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603801,7 +603929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84856] = 13, + [84978] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603822,7 +603950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4667), 9, + STATE(4668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603832,7 +603960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5001), 11, + ACTIONS(5107), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603844,7 +603972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4999), 28, + ACTIONS(5105), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603873,7 +604001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [84941] = 13, + [85063] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603894,7 +604022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4668), 9, + STATE(4669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603904,7 +604032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2107), 11, + ACTIONS(5127), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603916,7 +604044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2105), 28, + ACTIONS(5125), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -603945,7 +604073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85026] = 13, + [85148] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603966,7 +604094,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4669), 9, + STATE(4670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603976,7 +604104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5230), 11, + ACTIONS(2063), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603988,7 +604116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5228), 28, + ACTIONS(2061), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604017,7 +604145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85111] = 13, + [85233] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604038,7 +604166,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4670), 9, + STATE(4671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604048,7 +604176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5242), 11, + ACTIONS(5165), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604060,7 +604188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5240), 28, + ACTIONS(5163), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604089,87 +604217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85196] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5834), 1, - sym_attribute_target_specifier, - STATE(6611), 1, - sym__name, - STATE(6931), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1053), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4671), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [85297] = 13, + [85318] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604200,7 +604248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5252), 11, + ACTIONS(5169), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604212,7 +604260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5250), 28, + ACTIONS(5167), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604241,7 +604289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85382] = 13, + [85403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604272,7 +604320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5260), 11, + ACTIONS(5177), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604284,7 +604332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5258), 28, + ACTIONS(5175), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604313,7 +604361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85467] = 13, + [85488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604344,7 +604392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5124), 11, + ACTIONS(5185), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604356,7 +604404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5122), 28, + ACTIONS(5183), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604385,7 +604433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85552] = 40, + [85573] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604406,23 +604454,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + STATE(4675), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4977), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4975), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [85658] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -604444,11 +604564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -604469,12 +604589,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_SEMI, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4675), 9, + STATE(4676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604484,7 +604604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [85691] = 22, + [85797] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604505,23 +604625,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -604534,7 +604654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4676), 9, + STATE(4677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604565,7 +604685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [85794] = 40, + [85900] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604586,23 +604706,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -604624,11 +604744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -604649,110 +604769,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_SEMI, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4677), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [85933] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, STATE(4678), 9, sym_preproc_region, sym_preproc_endregion, @@ -604763,7 +604784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [86072] = 15, + [86039] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604784,10 +604805,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7351), 1, - anon_sym_into, - STATE(4685), 1, - aux_sym__query_body_repeat2, STATE(4679), 9, sym_preproc_region, sym_preproc_endregion, @@ -604798,7 +604815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(5213), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604810,13 +604827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 26, + ACTIONS(5211), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -604830,88 +604846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [86161] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7351), 1, anon_sym_into, - STATE(4686), 1, - aux_sym__query_body_repeat2, - STATE(4680), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86250] = 13, + [86124] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604932,7 +604877,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4681), 9, + STATE(4680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604942,7 +604887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4985), 11, + ACTIONS(5224), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604954,7 +604899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4983), 28, + ACTIONS(5222), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -604983,7 +604928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86335] = 29, + [86209] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605004,19 +604949,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605024,11 +604969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7291), 2, @@ -605040,13 +604985,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4682), 9, + STATE(4681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605056,7 +605001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605071,7 +605016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [86452] = 26, + [86326] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605092,44 +605037,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, ACTIONS(7295), 1, anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4683), 9, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605139,24 +605115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [86563] = 24, + [86465] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605177,40 +605136,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4684), 9, + ACTIONS(7351), 1, + anon_sym_into, + STATE(4692), 1, + aux_sym__query_body_repeat2, + STATE(4683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605220,11 +605150,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 26, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -605234,12 +605180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [86670] = 14, + anon_sym_DASH_GT, + anon_sym_with, + [86554] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605260,9 +605210,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7351), 1, anon_sym_into, - STATE(4685), 10, + STATE(4693), 1, + aux_sym__query_body_repeat2, + STATE(4684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605272,8 +605224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -605285,7 +605236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 26, + ACTIONS(6014), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -605312,7 +605263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86757] = 15, + [86643] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605333,11 +605284,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7351), 1, - anon_sym_into, - STATE(4685), 1, - aux_sym__query_body_repeat2, - STATE(4686), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605347,27 +605331,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(5682), 16, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [86754] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 26, - anon_sym_LBRACK, - anon_sym_COLON, + STATE(4686), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 18, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -605377,16 +605426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [86846] = 35, + [86861] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605407,21 +605452,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605433,14 +605478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7287), 2, @@ -605461,7 +605506,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605480,7 +605525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [86975] = 36, + [86990] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605501,21 +605546,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605529,14 +605574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7287), 2, @@ -605557,7 +605602,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605575,7 +605620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87106] = 34, + [87121] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605596,21 +605641,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605620,11 +605665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -605645,11 +605690,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605668,7 +605713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87233] = 27, + [87248] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605689,29 +605734,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7295), 1, anon_sym_SLASH, ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7291), 2, @@ -605720,7 +605765,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -605737,7 +605782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605754,7 +605799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [87346] = 33, + [87361] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605775,21 +605820,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605799,11 +605844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -605821,7 +605866,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, @@ -605835,7 +605880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605846,7 +605891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [87471] = 22, + [87486] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605867,26 +605912,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(7353), 1, + anon_sym_into, + STATE(4692), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(6018), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [87573] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7351), 1, + anon_sym_into, + STATE(4692), 1, + aux_sym__query_body_repeat2, + STATE(4693), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6025), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5346), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87662] = 22, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -605896,7 +606088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4692), 9, + STATE(4694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605906,7 +606098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -605927,7 +606119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [87574] = 37, + [87765] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605948,23 +606140,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -605980,11 +606172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -606005,7 +606197,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -606013,7 +606205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4693), 9, + STATE(4695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606023,7 +606215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87707] = 38, + [87898] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606044,23 +606236,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -606078,11 +606270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -606103,14 +606295,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4694), 9, + STATE(4696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606120,7 +606312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87842] = 40, + [88033] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606141,23 +606333,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7295), 1, anon_sym_SLASH, @@ -606179,11 +606371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -606204,43 +606396,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4695), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [87981] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4696), 9, + STATE(4697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606250,48 +606411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4989), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4987), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [88066] = 40, + [88172] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606312,21 +606432,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -606350,11 +606470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -606375,12 +606495,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4697), 9, + STATE(4698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606390,7 +606510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88205] = 40, + [88311] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606411,11 +606531,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -606449,9 +606569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -606474,71 +606594,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4698), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88344] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(7105), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, STATE(4699), 9, sym_preproc_region, sym_preproc_endregion, @@ -606549,100 +606609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 20, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [88447] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4700), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5003), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [88532] = 13, + [88450] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606663,36 +606630,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4701), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5009), 11, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(7105), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5007), 28, + STATE(4700), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 20, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -606703,18 +606683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [88617] = 13, + [88553] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606735,7 +606711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4702), 9, + STATE(4701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606745,7 +606721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5037), 11, + ACTIONS(4993), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -606757,7 +606733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5035), 28, + ACTIONS(4991), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -606786,7 +606762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88702] = 15, + [88638] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606807,11 +606783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_and, - ACTIONS(7358), 1, - anon_sym_or, - STATE(4703), 9, + STATE(4702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606821,7 +606793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(5005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -606833,7 +606805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 26, + ACTIONS(5003), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -606852,6 +606824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -606860,7 +606834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88791] = 15, + [88723] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606881,11 +606855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_and, - ACTIONS(7358), 1, - anon_sym_or, - STATE(4704), 9, + STATE(4703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606895,7 +606865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(5009), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -606907,7 +606877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 26, + ACTIONS(5007), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -606926,6 +606896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -606934,7 +606906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88880] = 40, + [88808] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606955,85 +606927,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + STATE(4704), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5021), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7339), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7343), 1, - anon_sym_GT_GT, - ACTIONS(7345), 1, - anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, - ACTIONS(7364), 1, - anon_sym_CARET, - ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7374), 1, - anon_sym_AMP_AMP, - ACTIONS(7376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5019), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7335), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7341), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, - anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4705), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89019] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [88893] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607054,7 +606999,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4706), 9, + ACTIONS(7356), 1, + anon_sym_and, + ACTIONS(7358), 1, + anon_sym_or, + STATE(4705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607064,7 +607013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5057), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607076,7 +607025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5055), 28, + ACTIONS(5480), 26, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607095,8 +607044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -607105,7 +607052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89104] = 40, + [88982] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607126,85 +607073,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7356), 1, + anon_sym_and, + ACTIONS(7358), 1, + anon_sym_or, + STATE(4706), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7295), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6171), 26, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4707), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89243] = 13, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89071] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607225,7 +607147,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4708), 9, + STATE(4707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607235,7 +607157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5061), 11, + ACTIONS(5029), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607247,7 +607169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5059), 28, + ACTIONS(5027), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607276,7 +607198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89328] = 13, + [89156] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607297,6 +607219,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4708), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [89295] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7339), 1, + anon_sym_SLASH, + ACTIONS(7343), 1, + anon_sym_GT_GT, + ACTIONS(7345), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_QMARK, + ACTIONS(7364), 1, + anon_sym_CARET, + ACTIONS(7366), 1, + anon_sym_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_AMP_AMP, + ACTIONS(7376), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7378), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7380), 1, + anon_sym_is, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7341), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7372), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_into, STATE(4709), 9, sym_preproc_region, sym_preproc_endregion, @@ -607307,7 +607396,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5105), 11, + [89434] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4710), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5037), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607319,7 +607439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5103), 28, + ACTIONS(5035), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607348,7 +607468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89413] = 13, + [89519] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607369,7 +607489,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4710), 9, + STATE(4711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607379,7 +607499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5116), 11, + ACTIONS(5041), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607391,7 +607511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5114), 28, + ACTIONS(5039), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607420,7 +607540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89498] = 13, + [89604] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607441,7 +607561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4711), 9, + STATE(4712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607451,7 +607571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5120), 11, + ACTIONS(5049), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607463,7 +607583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5118), 28, + ACTIONS(5047), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607492,7 +607612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89583] = 13, + [89689] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607513,7 +607633,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4712), 9, + STATE(4713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607523,7 +607643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5138), 11, + ACTIONS(5069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607535,7 +607655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5136), 28, + ACTIONS(5067), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607564,7 +607684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89668] = 40, + [89774] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607585,11 +607705,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -607623,9 +607743,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -607648,12 +607768,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 4, + ACTIONS(5886), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4713), 9, + STATE(4714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607663,7 +607783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89807] = 13, + [89913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607684,7 +607804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4714), 9, + STATE(4715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607694,7 +607814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5033), 11, + ACTIONS(5193), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607706,7 +607826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5031), 28, + ACTIONS(5191), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607735,7 +607855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89892] = 13, + [89998] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607756,7 +607876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4715), 9, + STATE(4716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607766,7 +607886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5158), 11, + ACTIONS(5099), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607778,7 +607898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5156), 28, + ACTIONS(5097), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -607807,7 +607927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89977] = 13, + [90083] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607828,7 +607948,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4716), 9, + ACTIONS(7187), 1, + anon_sym_and, + STATE(4717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607838,7 +607960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5166), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607850,11 +607972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5164), 28, - sym_interpolation_close_brace, + ACTIONS(6199), 27, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -607869,17 +607989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90062] = 14, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [90170] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607900,9 +608021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7187), 1, - anon_sym_and, - STATE(4717), 9, + STATE(4718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607912,7 +608031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(5115), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607924,9 +608043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 27, - anon_sym_SEMI, + ACTIONS(5113), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -607941,18 +608062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [90149] = 13, + [90255] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607973,7 +608093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4718), 9, + STATE(4719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607983,7 +608103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5170), 11, + ACTIONS(5119), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -607995,7 +608115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5168), 28, + ACTIONS(5117), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608024,7 +608144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90234] = 13, + [90340] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608045,7 +608165,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4719), 9, + STATE(4720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608055,7 +608175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5182), 11, + ACTIONS(5123), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608067,7 +608187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5180), 28, + ACTIONS(5121), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608096,7 +608216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90319] = 13, + [90425] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608117,7 +608237,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4720), 9, + STATE(4721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608127,7 +608247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5190), 11, + ACTIONS(5131), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608139,7 +608259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5188), 28, + ACTIONS(5129), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608168,7 +608288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90404] = 13, + [90510] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608189,7 +608309,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4721), 9, + STATE(4722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608199,7 +608319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5256), 11, + ACTIONS(5111), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608211,7 +608331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5254), 28, + ACTIONS(5109), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608240,7 +608360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90489] = 13, + [90595] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608261,7 +608381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4722), 9, + STATE(4723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608271,7 +608391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5226), 11, + ACTIONS(5137), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608283,7 +608403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5224), 28, + ACTIONS(5135), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608312,7 +608432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90574] = 13, + [90680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608333,7 +608453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4723), 9, + STATE(4724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608343,7 +608463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5238), 11, + ACTIONS(5141), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608355,7 +608475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5236), 28, + ACTIONS(5139), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608384,7 +608504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90659] = 13, + [90765] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608405,7 +608525,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4724), 9, + STATE(4725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608415,7 +608535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4977), 11, + ACTIONS(5147), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608427,7 +608547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4975), 28, + ACTIONS(5145), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608456,7 +608576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [90744] = 24, + [90850] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608477,9 +608597,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -608487,20 +608607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608510,7 +608630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4725), 9, + STATE(4726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608520,7 +608640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -608539,7 +608659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [90851] = 40, + [90957] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608560,19 +608680,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7251), 1, anon_sym_QMARK, @@ -608598,11 +608718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -608623,12 +608743,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4726), 9, + STATE(4727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608638,7 +608758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90990] = 40, + [91096] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608659,19 +608779,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7251), 1, anon_sym_QMARK, @@ -608697,11 +608817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -608722,12 +608842,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4727), 9, + STATE(4728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608737,7 +608857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91129] = 40, + [91235] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608758,9 +608878,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -608768,9 +608888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -608796,9 +608916,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -608821,12 +608941,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4728), 9, + STATE(4729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608836,7 +608956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91268] = 40, + [91374] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608857,9 +608977,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -608867,9 +608987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -608895,9 +609015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -608920,12 +609040,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4729), 9, + STATE(4730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608935,7 +609055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91407] = 13, + [91513] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608956,58 +609076,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4730), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5494), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7125), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7127), 1, anon_sym_AMP, + ACTIONS(7131), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5492), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7137), 1, + anon_sym_DOT_DOT, + ACTIONS(7139), 1, + anon_sym_as, + ACTIONS(7141), 1, + anon_sym_is, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7147), 1, + anon_sym_AMP_AMP, + ACTIONS(7149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7151), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7382), 1, + anon_sym_QMARK, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7121), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7123), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7133), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5238), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [91492] = 40, + anon_sym_by, + STATE(4731), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [91652] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609028,9 +609175,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -609038,9 +609185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -609066,9 +609213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -609091,12 +609238,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4731), 9, + STATE(4732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609106,7 +609253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91631] = 40, + [91791] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609127,9 +609274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -609137,9 +609284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -609165,9 +609312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -609190,12 +609337,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4732), 9, + STATE(4733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609205,7 +609352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91770] = 14, + [91930] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609228,7 +609375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7384), 1, anon_sym_and, - STATE(4733), 9, + STATE(4734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609238,7 +609385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -609250,7 +609397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 27, + ACTIONS(6199), 27, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -609278,7 +609425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [91857] = 40, + [92017] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609299,75 +609446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5909), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4734), 9, + STATE(4735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609377,68 +609456,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91996] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(7179), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(5453), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4735), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 20, - anon_sym_SEMI, + anon_sym_DOT, + ACTIONS(5451), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -609449,115 +609486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [92099] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6659), 1, anon_sym_with, - ACTIONS(7093), 1, - anon_sym_SLASH, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7099), 1, - anon_sym_GT_GT, - ACTIONS(7105), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_is, - ACTIONS(7109), 1, - anon_sym_CARET, - ACTIONS(7111), 1, - anon_sym_PIPE, - ACTIONS(7113), 1, - anon_sym_AMP_AMP, - ACTIONS(7115), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7117), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7347), 1, - anon_sym_QMARK, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7087), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7089), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7091), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7097), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7101), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7103), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4736), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [92238] = 40, + [92102] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609578,74 +609518,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7055), 1, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7061), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7063), 1, - anon_sym_CARET, - ACTIONS(7065), 1, anon_sym_PIPE, - ACTIONS(7067), 1, anon_sym_AMP, - ACTIONS(7071), 1, anon_sym_GT_GT, - ACTIONS(7077), 1, + STATE(4736), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 20, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, - ACTIONS(7079), 1, anon_sym_PIPE_PIPE, - ACTIONS(7081), 1, anon_sym_QMARK_QMARK, - ACTIONS(7083), 1, anon_sym_as, - ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [92205] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6655), 1, + anon_sym_as, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(7093), 1, + anon_sym_SLASH, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7099), 1, + anon_sym_GT_GT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_is, + ACTIONS(7109), 1, + anon_sym_CARET, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_AMP_AMP, + ACTIONS(7115), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7117), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7347), 1, + anon_sym_QMARK, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7053), 2, + ACTIONS(7087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7057), 2, + ACTIONS(7089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7059), 2, + ACTIONS(7091), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7069), 2, + ACTIONS(7097), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7101), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7075), 2, + ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5866), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_into, STATE(4737), 9, sym_preproc_region, sym_preproc_endregion, @@ -609656,7 +609677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92377] = 22, + [92344] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609677,11 +609698,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -609689,14 +609710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7105), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -609716,7 +609737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5924), 20, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -609737,7 +609758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [92480] = 40, + [92447] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609758,11 +609779,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7051), 1, + anon_sym_DOT_DOT, + ACTIONS(7055), 1, + anon_sym_QMARK, + ACTIONS(7061), 1, + anon_sym_SLASH, + ACTIONS(7063), 1, + anon_sym_CARET, + ACTIONS(7065), 1, + anon_sym_PIPE, + ACTIONS(7067), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_GT_GT, + ACTIONS(7077), 1, + anon_sym_AMP_AMP, + ACTIONS(7079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7081), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7083), 1, + anon_sym_as, + ACTIONS(7085), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7053), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7059), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7069), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7073), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7075), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5850), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4739), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [92586] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -609796,9 +609916,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -609821,12 +609941,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4739), 9, + STATE(4740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609836,7 +609956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92619] = 40, + [92725] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609857,9 +609977,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -609867,11 +609987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -609895,9 +610015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -609920,12 +610040,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 4, + ACTIONS(5878), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4740), 9, + STATE(4741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609935,7 +610055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92758] = 40, + [92864] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609956,11 +610076,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -609994,9 +610114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -610019,12 +610139,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4741), 9, + STATE(4742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610034,7 +610154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92897] = 40, + [93003] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610055,11 +610175,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -610093,9 +610213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7347), 1, anon_sym_QMARK, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -610118,12 +610238,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_into, - STATE(4742), 9, + STATE(4743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610133,7 +610253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93036] = 40, + [93142] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610154,9 +610274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610164,11 +610284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -610192,9 +610312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610217,12 +610337,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 4, + ACTIONS(5886), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4743), 9, + STATE(4744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610232,7 +610352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93175] = 40, + [93281] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610253,9 +610373,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610263,9 +610383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -610291,9 +610411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610316,12 +610436,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, + ACTIONS(5850), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4744), 9, + STATE(4745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610331,7 +610451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93314] = 22, + [93420] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610352,23 +610472,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, ACTIONS(7051), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -610381,7 +610501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4745), 9, + STATE(4746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610412,7 +610532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [93417] = 40, + [93523] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610433,9 +610553,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610443,9 +610563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610471,9 +610591,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610496,12 +610616,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4746), 9, + STATE(4747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610511,7 +610631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93556] = 35, + [93662] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610532,9 +610652,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610542,9 +610662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610558,14 +610678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7233), 2, @@ -610586,7 +610706,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -610595,7 +610715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4747), 9, + STATE(4748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610605,7 +610725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93685] = 36, + [93791] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610626,9 +610746,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610636,9 +610756,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610654,14 +610774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7233), 2, @@ -610682,7 +610802,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -610690,7 +610810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4748), 9, + STATE(4749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610700,7 +610820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93816] = 34, + [93922] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610721,9 +610841,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610731,9 +610851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610745,9 +610865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610770,11 +610890,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -610783,7 +610903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4749), 9, + STATE(4750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610793,7 +610913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93943] = 33, + [94049] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610814,9 +610934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610824,9 +610944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610838,9 +610958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610860,11 +610980,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4750), 9, + STATE(4751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610874,7 +610994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -610885,7 +611005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - [94068] = 37, + [94174] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610906,9 +611026,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -610916,11 +611036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -610938,9 +611058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -610963,7 +611083,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -610971,7 +611091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4751), 9, + STATE(4752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610981,7 +611101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94201] = 38, + [94307] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611002,9 +611122,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611012,11 +611132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611036,9 +611156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611061,14 +611181,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4752), 9, + STATE(4753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611078,7 +611198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94336] = 40, + [94442] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611099,9 +611219,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611109,11 +611229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611137,9 +611257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611162,12 +611282,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4753), 9, + STATE(4754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611177,7 +611297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94475] = 40, + [94581] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611198,9 +611318,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611208,9 +611328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611236,9 +611356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611261,12 +611381,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4754), 9, + STATE(4755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611276,7 +611396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94614] = 40, + [94720] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611297,9 +611417,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611307,9 +611427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611335,9 +611455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611360,12 +611480,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4755), 9, + STATE(4756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611375,7 +611495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94753] = 40, + [94859] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611396,9 +611516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611406,9 +611526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611434,9 +611554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611459,12 +611579,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4756), 9, + STATE(4757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611474,7 +611594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94892] = 40, + [94998] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611495,9 +611615,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -611505,9 +611625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -611533,9 +611653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -611558,12 +611678,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4757), 9, + STATE(4758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611573,7 +611693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95031] = 29, + [95137] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611594,11 +611714,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -611614,9 +611734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7105), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -611630,13 +611750,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7097), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4758), 9, + STATE(4759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611646,7 +611766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -611661,7 +611781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [95148] = 26, + [95254] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611682,11 +611802,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -611700,9 +611820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7105), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -611710,7 +611830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7091), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -611719,7 +611839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4759), 9, + STATE(4760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611729,7 +611849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -611746,7 +611866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [95259] = 24, + [95365] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611767,11 +611887,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -611783,14 +611903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_with, ACTIONS(7105), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -611800,7 +611920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4760), 9, + STATE(4761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611810,7 +611930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -611829,7 +611949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [95366] = 27, + [95472] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611850,11 +611970,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -611868,9 +611988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7105), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, @@ -611881,14 +612001,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7091), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4761), 9, + STATE(4762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611898,7 +612018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -611915,7 +612035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [95479] = 13, + [95585] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611936,7 +612056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4762), 9, + STATE(4763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611946,7 +612066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5025), 11, + ACTIONS(5001), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -611958,7 +612078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5023), 28, + ACTIONS(4999), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -611987,7 +612107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [95564] = 13, + [95670] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612008,7 +612128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4763), 9, + STATE(4764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612018,7 +612138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4933), 11, + ACTIONS(4969), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -612030,7 +612150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4931), 28, + ACTIONS(4967), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -612059,7 +612179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [95649] = 40, + [95755] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612080,19 +612200,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7083), 1, anon_sym_as, @@ -612118,11 +612238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7229), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7197), 2, @@ -612143,12 +612263,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, + ACTIONS(5850), 4, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4764), 9, + STATE(4765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612158,7 +612278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95788] = 40, + [95894] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612179,9 +612299,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + STATE(4766), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5435), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5433), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [95979] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612189,9 +612381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -612217,9 +612409,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612242,12 +612434,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 4, + ACTIONS(5878), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4765), 9, + STATE(4767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612257,7 +612449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95927] = 40, + [96118] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612278,9 +612470,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612288,9 +612480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7237), 1, anon_sym_SLASH, @@ -612316,9 +612508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612341,12 +612533,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, + ACTIONS(5850), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_equals, - STATE(4766), 9, + STATE(4768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612356,7 +612548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96066] = 40, + [96257] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612377,9 +612569,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612387,9 +612579,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7125), 1, anon_sym_SLASH, @@ -612415,9 +612607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7382), 1, anon_sym_QMARK, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612440,12 +612632,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 4, + ACTIONS(5886), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_by, - STATE(4767), 9, + STATE(4769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612455,7 +612647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96205] = 24, + [96396] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612476,9 +612668,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612486,20 +612678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -612509,7 +612701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4768), 9, + STATE(4770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612519,7 +612711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -612538,7 +612730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [96312] = 40, + [96503] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612559,9 +612751,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612569,9 +612761,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -612597,9 +612789,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612622,12 +612814,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5866), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4769), 9, + STATE(4771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612637,7 +612829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96451] = 35, + [96642] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612658,9 +612850,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612668,9 +612860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -612684,14 +612876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7321), 2, @@ -612712,7 +612904,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -612721,7 +612913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(4770), 9, + STATE(4772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612731,7 +612923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96580] = 36, + [96771] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612752,9 +612944,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612762,9 +612954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -612780,14 +612972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7321), 2, @@ -612808,7 +613000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -612816,7 +613008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(4771), 9, + STATE(4773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612826,7 +613018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96711] = 34, + [96902] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612847,9 +613039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612857,9 +613049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -612871,9 +613063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612896,11 +613088,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -612909,7 +613101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(4772), 9, + STATE(4774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612919,7 +613111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96838] = 33, + [97029] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612940,9 +613132,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -612950,9 +613142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -612964,9 +613156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -612986,11 +613178,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4773), 9, + STATE(4775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613000,7 +613192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -613011,7 +613203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - [96963] = 37, + [97154] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613032,9 +613224,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613042,11 +613234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613064,9 +613256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613089,7 +613281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -613097,7 +613289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(4774), 9, + STATE(4776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613107,7 +613299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97096] = 38, + [97287] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613128,9 +613320,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613138,11 +613330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613162,9 +613354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613187,14 +613379,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(4775), 9, + STATE(4777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613204,7 +613396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97231] = 40, + [97422] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613225,9 +613417,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613235,11 +613427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613263,9 +613455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613288,12 +613480,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4776), 9, + STATE(4778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613303,7 +613495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97370] = 40, + [97561] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613324,9 +613516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613334,9 +613526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613362,9 +613554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613387,12 +613579,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5870), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4777), 9, + STATE(4779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613402,7 +613594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97509] = 40, + [97700] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613423,9 +613615,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613433,9 +613625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613461,9 +613653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613486,12 +613678,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5238), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4778), 9, + STATE(4780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613501,7 +613693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97648] = 40, + [97839] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613522,9 +613714,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613532,9 +613724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613560,9 +613752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613585,12 +613777,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5874), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4779), 9, + STATE(4781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613600,7 +613792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97787] = 40, + [97978] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613621,9 +613813,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613631,9 +613823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -613659,9 +613851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613684,12 +613876,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4780), 9, + STATE(4782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613699,7 +613891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97926] = 13, + [98117] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613720,81 +613912,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4781), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5426), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5424), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [98011] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613802,11 +613922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -613830,9 +613950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -613855,75 +613975,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, + ACTIONS(5850), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4782), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [98150] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7207), 1, - anon_sym_DOT_DOT, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, STATE(4783), 9, sym_preproc_region, sym_preproc_endregion, @@ -613934,26 +613990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [98257] = 40, + [98256] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613974,9 +614011,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -613984,64 +614021,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7237), 1, + ACTIONS(7339), 1, anon_sym_SLASH, - ACTIONS(7241), 1, + ACTIONS(7343), 1, anon_sym_GT_GT, - ACTIONS(7243), 1, + ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7388), 1, + ACTIONS(7362), 1, anon_sym_QMARK, - ACTIONS(7390), 1, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(7392), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7394), 1, + ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7400), 1, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(7402), 1, + ACTIONS(7376), 1, anon_sym_PIPE_PIPE, - ACTIONS(7404), 1, + ACTIONS(7378), 1, anon_sym_QMARK_QMARK, - ACTIONS(7406), 1, - anon_sym_as, - ACTIONS(7408), 1, + ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7233), 2, + ACTIONS(7335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7235), 2, + ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7239), 2, + ACTIONS(7341), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7386), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7396), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7398), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 4, + ACTIONS(5866), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_equals, STATE(4784), 9, sym_preproc_region, sym_preproc_endregion, @@ -614052,7 +614089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98396] = 40, + [98395] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614073,9 +614110,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614083,64 +614120,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7325), 1, + ACTIONS(7339), 1, anon_sym_SLASH, - ACTIONS(7329), 1, + ACTIONS(7343), 1, anon_sym_GT_GT, - ACTIONS(7331), 1, + ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_CARET, - ACTIONS(7416), 1, - anon_sym_PIPE, - ACTIONS(7418), 1, + ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7424), 1, - anon_sym_AMP_AMP, - ACTIONS(7426), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7428), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7430), 1, - anon_sym_as, - ACTIONS(7432), 1, + ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7321), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7323), 2, + ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7327), 2, + ACTIONS(7341), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7420), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7422), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 4, + ACTIONS(5682), 8, + anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, STATE(4785), 9, sym_preproc_region, sym_preproc_endregion, @@ -614151,7 +614183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98535] = 40, + [98524] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614172,9 +614204,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614182,64 +614214,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7237), 1, + ACTIONS(7339), 1, anon_sym_SLASH, - ACTIONS(7241), 1, + ACTIONS(7343), 1, anon_sym_GT_GT, - ACTIONS(7243), 1, + ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7388), 1, - anon_sym_QMARK, - ACTIONS(7390), 1, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(7392), 1, - anon_sym_PIPE, - ACTIONS(7394), 1, + ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7400), 1, - anon_sym_AMP_AMP, - ACTIONS(7402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7404), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7406), 1, - anon_sym_as, - ACTIONS(7408), 1, + ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7233), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7235), 2, + ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7239), 2, + ACTIONS(7341), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7386), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7396), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7398), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 4, + ACTIONS(5682), 7, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, STATE(4786), 9, sym_preproc_region, sym_preproc_endregion, @@ -614250,7 +614278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98674] = 40, + [98655] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614271,9 +614299,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614281,11 +614309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -614293,25 +614321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, - ACTIONS(7364), 1, - anon_sym_CARET, - ACTIONS(7366), 1, - anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, - anon_sym_AMP_AMP, - ACTIONS(7376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, - anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -614334,10 +614348,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 4, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 8, + anon_sym_CARET, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, STATE(4787), 9, sym_preproc_region, @@ -614349,7 +614371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98813] = 22, + [98782] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614370,26 +614392,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, ACTIONS(7207), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -614409,7 +614435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 20, + ACTIONS(5682), 18, anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, @@ -614420,7 +614446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, @@ -614429,8 +614454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [98916] = 35, + [98889] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614451,9 +614475,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614461,11 +614485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -614473,20 +614497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7368), 1, - anon_sym_AMP, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, ACTIONS(7335), 2, anon_sym_PLUS, anon_sym_DASH, @@ -614499,21 +614518,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7370), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, STATE(4789), 9, sym_preproc_region, sym_preproc_endregion, @@ -614524,7 +614535,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99045] = 22, + ACTIONS(5682), 10, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + [99014] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614545,9 +614567,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614555,57 +614577,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(7137), 1, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7241), 1, + anon_sym_GT_GT, + ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(7388), 1, + anon_sym_QMARK, + ACTIONS(7390), 1, + anon_sym_CARET, + ACTIONS(7392), 1, + anon_sym_PIPE, + ACTIONS(7394), 1, + anon_sym_AMP, + ACTIONS(7400), 1, + anon_sym_AMP_AMP, + ACTIONS(7402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7406), 1, + anon_sym_as, + ACTIONS(7408), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4790), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 20, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7239), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7386), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7396), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5878), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [99148] = 24, + anon_sym_equals, + STATE(4790), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99153] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614626,9 +614666,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614636,59 +614676,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, + ACTIONS(7325), 1, + anon_sym_SLASH, + ACTIONS(7329), 1, + anon_sym_GT_GT, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(7412), 1, + anon_sym_QMARK, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7418), 1, + anon_sym_AMP, + ACTIONS(7424), 1, + anon_sym_AMP_AMP, + ACTIONS(7426), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7428), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7430), 1, + anon_sym_as, + ACTIONS(7432), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7321), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4791), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(7323), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7327), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5850), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - anon_sym_as, - anon_sym_is, - [99255] = 36, + STATE(4791), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99292] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614709,9 +614765,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614719,60 +614775,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7339), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7343), 1, + ACTIONS(7241), 1, anon_sym_GT_GT, - ACTIONS(7345), 1, + ACTIONS(7243), 1, anon_sym_DOT_DOT, - ACTIONS(7364), 1, + ACTIONS(7388), 1, + anon_sym_QMARK, + ACTIONS(7390), 1, anon_sym_CARET, - ACTIONS(7368), 1, + ACTIONS(7392), 1, + anon_sym_PIPE, + ACTIONS(7394), 1, anon_sym_AMP, - ACTIONS(7380), 1, + ACTIONS(7400), 1, + anon_sym_AMP_AMP, + ACTIONS(7402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7406), 1, + anon_sym_as, + ACTIONS(7408), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7335), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7337), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7341), 2, + ACTIONS(7239), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, + ACTIONS(7386), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7396), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_EQ_GT, + ACTIONS(5886), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, + anon_sym_equals, STATE(4792), 9, sym_preproc_region, sym_preproc_endregion, @@ -614783,7 +614843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99386] = 34, + [99431] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614804,9 +614864,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614814,11 +614874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -614826,11 +614888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7345), 1, anon_sym_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_CARET, + ACTIONS(7366), 1, + anon_sym_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -614853,12 +614921,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 8, - anon_sym_CARET, + ACTIONS(5682), 7, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -614876,7 +614939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99513] = 33, + [99564] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614897,56 +614960,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7339), 1, - anon_sym_SLASH, - ACTIONS(7343), 1, - anon_sym_GT_GT, - ACTIONS(7345), 1, + ACTIONS(7207), 1, anon_sym_DOT_DOT, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7335), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7337), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7341), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7360), 2, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7372), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, STATE(4794), 9, sym_preproc_region, sym_preproc_endregion, @@ -614957,18 +614999,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(1229), 20, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_EQ_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - [99638] = 37, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [99667] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614989,9 +615041,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -614999,13 +615051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -615019,11 +615071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7368), 1, anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_AMP_AMP, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615046,11 +615100,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 6, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, @@ -615064,7 +615117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99771] = 38, + [99802] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615085,9 +615138,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615095,73 +615148,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7339), 1, - anon_sym_SLASH, - ACTIONS(7343), 1, - anon_sym_GT_GT, - ACTIONS(7345), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7364), 1, - anon_sym_CARET, - ACTIONS(7366), 1, - anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, - anon_sym_AMP_AMP, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7335), 2, + ACTIONS(1231), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7337), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4796), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 20, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7341), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_EQ_GT, + anon_sym_switch, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4796), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [99906] = 40, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [99905] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615182,9 +615219,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615192,75 +615229,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7339), 1, - anon_sym_SLASH, - ACTIONS(7343), 1, - anon_sym_GT_GT, - ACTIONS(7345), 1, + ACTIONS(7331), 1, anon_sym_DOT_DOT, - ACTIONS(7364), 1, - anon_sym_CARET, - ACTIONS(7366), 1, - anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, - anon_sym_AMP_AMP, - ACTIONS(7376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7335), 2, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7337), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4797), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 18, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7341), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_EQ_GT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4797), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [100045] = 40, + anon_sym_on, + anon_sym_as, + anon_sym_is, + [100012] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615281,9 +615302,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615291,11 +615312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -615303,8 +615326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7345), 1, anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, ACTIONS(7364), 1, anon_sym_CARET, ACTIONS(7366), 1, @@ -615319,9 +615340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615344,7 +615365,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5682), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -615359,7 +615380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100184] = 40, + [100151] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615380,9 +615401,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615390,11 +615411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -615418,9 +615439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615443,7 +615464,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5870), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -615458,7 +615479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100323] = 40, + [100290] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615479,9 +615500,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615489,11 +615510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7339), 1, anon_sym_SLASH, @@ -615517,9 +615538,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7380), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615542,7 +615563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 4, + ACTIONS(5238), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -615557,7 +615578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100462] = 14, + [100429] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615578,8 +615599,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7356), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7339), 1, + anon_sym_SLASH, + ACTIONS(7343), 1, + anon_sym_GT_GT, + ACTIONS(7345), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_QMARK, + ACTIONS(7364), 1, + anon_sym_CARET, + ACTIONS(7366), 1, + anon_sym_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_AMP_AMP, + ACTIONS(7376), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7378), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7380), 1, + anon_sym_is, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7341), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7372), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 4, + anon_sym_EQ_GT, anon_sym_and, + anon_sym_or, + anon_sym_into, STATE(4801), 9, sym_preproc_region, sym_preproc_endregion, @@ -615590,7 +615677,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + [100568] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7356), 1, + anon_sym_and, + STATE(4802), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615602,7 +615722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 27, + ACTIONS(6199), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -615630,7 +615750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [100549] = 15, + [100655] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615655,7 +615775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, ACTIONS(7434), 1, anon_sym_or, - STATE(4802), 9, + STATE(4803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615665,7 +615785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615677,7 +615797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 26, + ACTIONS(5480), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -615704,7 +615824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [100638] = 15, + [100744] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615729,7 +615849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, ACTIONS(7434), 1, anon_sym_or, - STATE(4803), 9, + STATE(4804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615739,7 +615859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615751,7 +615871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 26, + ACTIONS(6171), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -615778,7 +615898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [100727] = 40, + [100833] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615799,9 +615919,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615809,9 +615929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -615837,9 +615957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615862,12 +615982,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5694), 4, + ACTIONS(5878), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4804), 9, + STATE(4805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615877,7 +615997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100866] = 40, + [100972] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615898,9 +616018,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -615908,9 +616028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7325), 1, anon_sym_SLASH, @@ -615936,9 +616056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7432), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -615961,12 +616081,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7422), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 4, + ACTIONS(5886), 4, anon_sym_and, anon_sym_or, anon_sym_into, anon_sym_on, - STATE(4805), 9, + STATE(4806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615976,7 +616096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101005] = 22, + [101111] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615997,9 +616117,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -616009,9 +616129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7243), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -616026,7 +616146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4806), 9, + STATE(4807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616057,7 +616177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [101108] = 24, + [101214] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616078,9 +616198,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -616088,20 +616208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616111,7 +616231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4807), 9, + STATE(4808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616121,7 +616241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -616140,7 +616260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [101215] = 40, + [101321] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616161,19 +616281,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7251), 1, anon_sym_QMARK, @@ -616199,11 +616319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7259), 2, @@ -616224,12 +616344,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 4, + ACTIONS(5794), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4808), 9, + STATE(4809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616239,7 +616359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101354] = 22, + [101460] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616260,23 +616380,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -616289,7 +616409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4809), 9, + STATE(4810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616320,7 +616440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [101457] = 22, + [101563] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616341,9 +616461,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -616353,9 +616473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7331), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -616370,7 +616490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4810), 9, + STATE(4811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616401,7 +616521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [101560] = 22, + [101666] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616422,9 +616542,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -616434,9 +616554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(7345), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -616451,7 +616571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4811), 9, + STATE(4812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616482,7 +616602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [101663] = 13, + [101769] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616503,7 +616623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4812), 9, + STATE(4813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616513,7 +616633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5132), 11, + ACTIONS(5045), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616525,7 +616645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5130), 28, + ACTIONS(5043), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616554,7 +616674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [101748] = 13, + [101854] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616575,7 +616695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4813), 9, + STATE(4814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616585,7 +616705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5430), 11, + ACTIONS(5498), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616597,7 +616717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5428), 28, + ACTIONS(5496), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616626,7 +616746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [101833] = 13, + [101939] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616647,7 +616767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4814), 9, + STATE(4815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616657,7 +616777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5434), 11, + ACTIONS(5514), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616669,7 +616789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5432), 28, + ACTIONS(5512), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616698,7 +616818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [101918] = 13, + [102024] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616719,7 +616839,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4815), 9, + STATE(4816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616729,7 +616849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5390), 11, + ACTIONS(5455), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616741,7 +616861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3840), 28, + ACTIONS(3881), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616770,7 +616890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102003] = 13, + [102109] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616791,7 +616911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4816), 9, + STATE(4817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616801,7 +616921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5438), 11, + ACTIONS(5490), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616813,7 +616933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5436), 28, + ACTIONS(5488), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616842,7 +616962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102088] = 13, + [102194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616863,7 +616983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4817), 9, + STATE(4818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616873,7 +616993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5446), 11, + ACTIONS(5419), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616885,7 +617005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5444), 28, + ACTIONS(5417), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616914,7 +617034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102173] = 13, + [102279] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616935,7 +617055,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4818), 9, + STATE(4819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616945,7 +617065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5446), 11, + ACTIONS(5419), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616957,7 +617077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5444), 28, + ACTIONS(5417), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -616986,7 +617106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102258] = 15, + [102364] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617009,9 +617129,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7351), 1, anon_sym_into, - STATE(4679), 1, + STATE(4683), 1, aux_sym__query_body_repeat2, - STATE(4819), 9, + STATE(4820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617021,7 +617141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617033,7 +617153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 26, + ACTIONS(6008), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -617060,87 +617180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102347] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5831), 1, - sym_attribute_target_specifier, - STATE(6611), 1, - sym__name, - STATE(6936), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1053), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4820), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [102448] = 15, + [102453] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617175,7 +617215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617187,7 +617227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 26, + ACTIONS(6008), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617214,7 +617254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102537] = 15, + [102542] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617249,7 +617289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617261,7 +617301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 26, + ACTIONS(6014), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617288,7 +617328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102626] = 15, + [102631] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617323,7 +617363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617335,7 +617375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 26, + ACTIONS(6014), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617362,7 +617402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102715] = 14, + [102720] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617396,7 +617436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617408,7 +617448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 26, + ACTIONS(6018), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617435,7 +617475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102802] = 15, + [102807] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617470,7 +617510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617482,7 +617522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 26, + ACTIONS(6025), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617509,7 +617549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [102891] = 29, + [102896] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617530,19 +617570,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7163), 1, anon_sym_SLASH, @@ -617550,11 +617590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7159), 2, @@ -617566,7 +617606,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617582,7 +617622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_SEMI, anon_sym_CARET, anon_sym_EQ_EQ, @@ -617597,7 +617637,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [103008] = 26, + [103013] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617618,35 +617658,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7163), 1, anon_sym_SLASH, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617665,7 +617705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, @@ -617682,7 +617722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [103119] = 24, + [103124] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617703,30 +617743,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617746,7 +617786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 18, + ACTIONS(5682), 18, anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, @@ -617765,7 +617805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [103226] = 35, + [103231] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617786,23 +617826,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7163), 1, anon_sym_SLASH, @@ -617812,14 +617852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7155), 2, @@ -617840,7 +617880,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_SEMI, anon_sym_CARET, anon_sym_AMP_AMP, @@ -617859,7 +617899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103355] = 36, + [103360] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617880,23 +617920,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7163), 1, anon_sym_SLASH, @@ -617908,14 +617948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7155), 2, @@ -617936,7 +617976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -617954,7 +617994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103486] = 34, + [103491] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617975,23 +618015,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7163), 1, anon_sym_SLASH, @@ -617999,11 +618039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -618024,11 +618064,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_SEMI, anon_sym_CARET, anon_sym_AMP_AMP, @@ -618047,7 +618087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103613] = 27, + [103618] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618068,29 +618108,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7163), 1, anon_sym_SLASH, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7159), 2, @@ -618099,7 +618139,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -618116,7 +618156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, @@ -618133,7 +618173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [103726] = 33, + [103731] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618154,23 +618194,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7163), 1, anon_sym_SLASH, @@ -618178,11 +618218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -618200,7 +618240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, @@ -618214,7 +618254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_SEMI, anon_sym_CARET, anon_sym_EQ_EQ, @@ -618225,7 +618265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [103851] = 41, + [103856] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618246,75 +618286,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5771), 1, - anon_sym_in, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7443), 1, - anon_sym_QMARK, - ACTIONS(7449), 1, - anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7465), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7445), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7447), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7457), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7463), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 3, - anon_sym_and, - anon_sym_or, - anon_sym_into, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(4834), 9, sym_preproc_region, sym_preproc_endregion, @@ -618325,95 +618325,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103992] = 29, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7449), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7465), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7445), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7447), 2, + ACTIONS(5924), 20, + anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4835), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [104109] = 26, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [103959] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618434,115 +618367,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7449), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(7465), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7447), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 9, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4836), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_CARET, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, + ACTIONS(5682), 7, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [104220] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7465), 1, - anon_sym_DOT_DOT, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4837), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618552,36 +618442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5756), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5754), 17, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [104327] = 35, + [104092] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618602,70 +618463,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7449), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(7455), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7459), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(7465), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7445), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7447), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7461), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7463), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5754), 7, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, + ACTIONS(5682), 6, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4838), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618675,7 +618539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104456] = 36, + [104227] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618696,71 +618560,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7449), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(7451), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(7455), 1, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7459), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(7465), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7445), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7447), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7461), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7463), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5754), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4839), 9, + ACTIONS(5682), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618770,7 +618638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104587] = 34, + [104366] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618791,9 +618659,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -618801,23 +618669,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5868), 1, + anon_sym_in, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, + ACTIONS(7443), 1, + anon_sym_QMARK, ACTIONS(7449), 1, anon_sym_SLASH, + ACTIONS(7451), 1, + anon_sym_CARET, + ACTIONS(7453), 1, + anon_sym_PIPE, + ACTIONS(7455), 1, + anon_sym_AMP, ACTIONS(7459), 1, anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, + ACTIONS(7467), 1, + anon_sym_AMP_AMP, + ACTIONS(7469), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -618840,20 +618724,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, + ACTIONS(5866), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4840), 9, + STATE(4838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618863,7 +618738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104714] = 27, + [104507] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618884,9 +618759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -618894,17 +618769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7449), 1, anon_sym_SLASH, + ACTIONS(7459), 1, + anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -618915,15 +618792,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 7, + ACTIONS(7457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4841), 9, + STATE(4839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618933,10 +618812,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 13, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -618949,7 +618826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [104827] = 33, + [104624] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618970,9 +618847,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -618980,58 +618857,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7445), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7463), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 4, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_in, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4842), 9, + anon_sym_GT_GT, + STATE(4840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619041,7 +618895,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104952] = 22, + ACTIONS(5682), 15, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [104735] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619062,9 +618932,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -619072,16 +618942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, ACTIONS(7465), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4843), 9, + STATE(4841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619091,7 +618965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 10, + ACTIONS(5684), 10, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -619102,7 +618976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5684), 19, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -619112,7 +618986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -619121,8 +618994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [105055] = 37, + [104842] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619143,9 +619015,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -619153,18 +619025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, ACTIONS(7455), 1, anon_sym_AMP, ACTIONS(7459), 1, @@ -619173,16 +619041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_in, - anon_sym_QMARK, ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, @@ -619201,14 +619066,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5684), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5682), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4844), 9, + STATE(4842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619218,7 +619088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105188] = 38, + [104971] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619239,9 +619109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -619249,38 +619119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7449), 1, anon_sym_SLASH, ACTIONS(7451), 1, anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, ACTIONS(7455), 1, anon_sym_AMP, ACTIONS(7459), 1, anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_in, - anon_sym_QMARK, ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, @@ -619299,13 +619162,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5684), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4845), 9, + STATE(4843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619315,7 +619183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105323] = 40, + [105102] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619336,9 +619204,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -619346,42 +619214,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, - ACTIONS(7455), 1, - anon_sym_AMP, ACTIONS(7459), 1, anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_in, - anon_sym_QMARK, ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, @@ -619400,11 +619253,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5684), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4846), 9, + STATE(4844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619414,7 +619276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105462] = 22, + [105229] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619435,36 +619297,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(7179), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7449), 1, + anon_sym_SLASH, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7445), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7447), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 7, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4847), 9, + STATE(4845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619474,10 +619346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -619485,17 +619354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [105565] = 41, + [105342] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619516,9 +619383,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -619526,39 +619393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5779), 1, - anon_sym_in, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7443), 1, - anon_sym_QMARK, ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, - ACTIONS(7455), 1, - anon_sym_AMP, ACTIONS(7459), 1, anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -619575,17 +619426,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5684), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4848), 9, + STATE(4846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619595,7 +619454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105706] = 41, + [105467] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619616,26 +619475,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5174), 1, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(7465), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4847), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5926), 10, + anon_sym_LT, + anon_sym_GT, anon_sym_in, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5924), 19, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [105570] = 37, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, ACTIONS(5310), 1, anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7443), 1, - anon_sym_QMARK, ACTIONS(7449), 1, anon_sym_SLASH, ACTIONS(7451), 1, @@ -619648,21 +619584,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_in, + anon_sym_QMARK, ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, @@ -619681,11 +619614,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4849), 9, + STATE(4848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619695,7 +619631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105847] = 37, + [105703] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619716,72 +619652,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7163), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7451), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7453), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7467), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(5684), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, + ACTIONS(5682), 5, + anon_sym_and, + anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4850), 9, + anon_sym_into, + STATE(4849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619791,7 +619728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105980] = 38, + [105838] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619812,73 +619749,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7163), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7451), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7453), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7467), 1, anon_sym_AMP_AMP, - STATE(2502), 1, + ACTIONS(7469), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(5684), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4851), 9, + ACTIONS(5682), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619888,7 +619827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106115] = 40, + [105977] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619909,75 +619848,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5872), 1, + anon_sym_in, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7163), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7443), 1, + anon_sym_QMARK, + ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7451), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7453), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7467), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(7469), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(7471), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4852), 9, + ACTIONS(5870), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619987,7 +619927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106254] = 41, + [106118] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620008,23 +619948,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, + ACTIONS(5240), 1, + anon_sym_in, ACTIONS(5302), 1, anon_sym_LPAREN, ACTIONS(5310), 1, anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5785), 1, - anon_sym_in, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7443), 1, anon_sym_QMARK, @@ -620048,9 +619988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -620073,11 +620013,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5238), 3, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4853), 9, + STATE(4852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620087,7 +620027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106395] = 41, + [106259] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620108,9 +620048,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -620118,13 +620058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5911), 1, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7443), 1, anon_sym_QMARK, @@ -620148,9 +620088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -620173,11 +620113,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5874), 3, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4854), 9, + STATE(4853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620187,7 +620127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106536] = 40, + [106400] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620208,75 +620148,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5810), 1, + anon_sym_in, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7443), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7451), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7453), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7467), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(7469), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(7471), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4855), 9, + ACTIONS(5794), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620286,7 +620227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106675] = 13, + [106541] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620307,58 +620248,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4856), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5450), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, anon_sym_PIPE, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7173), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5448), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [106760] = 13, + ACTIONS(5238), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4855), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [106680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620379,7 +620347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4857), 9, + STATE(4856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620389,7 +620357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5454), 11, + ACTIONS(5486), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620401,7 +620369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5452), 28, + ACTIONS(5484), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -620430,7 +620398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [106845] = 40, + [106765] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620451,106 +620419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, - anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_GT_GT, - ACTIONS(7179), 1, - anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7161), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5783), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4858), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [106984] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4859), 9, + STATE(4857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620560,7 +620429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 11, + ACTIONS(5409), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620572,7 +620441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5456), 28, + ACTIONS(5407), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -620601,7 +620470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107069] = 15, + [106850] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620622,11 +620491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_into, - STATE(4861), 1, - aux_sym__query_body_repeat2, - STATE(4860), 9, + STATE(4858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620636,7 +620501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(5443), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620648,9 +620513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 26, + ACTIONS(5441), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -620664,18 +620531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107158] = 15, + [106935] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620696,10 +620563,177 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7475), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_SLASH, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4859), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [107074] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4860), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5390), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5388), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4863), 1, - aux_sym__query_body_repeat2, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [107159] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, STATE(4861), 9, sym_preproc_region, sym_preproc_endregion, @@ -620710,7 +620744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(5390), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620722,9 +620756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 26, + ACTIONS(5388), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -620738,18 +620774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107247] = 15, + [107244] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620770,10 +620806,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_into, - STATE(4864), 1, - aux_sym__query_body_repeat2, STATE(4862), 9, sym_preproc_region, sym_preproc_endregion, @@ -620784,7 +620816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(5405), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620796,9 +620828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 26, + ACTIONS(5403), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -620812,18 +620846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107336] = 14, + [107329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620844,9 +620878,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7475), 1, anon_sym_into, - STATE(4863), 10, + STATE(4864), 1, + aux_sym__query_body_repeat2, + STATE(4863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620856,8 +620892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620869,7 +620904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 26, + ACTIONS(6008), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -620896,7 +620931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107423] = 15, + [107418] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620919,7 +620954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7475), 1, anon_sym_into, - STATE(4863), 1, + STATE(4866), 1, aux_sym__query_body_repeat2, STATE(4864), 9, sym_preproc_region, @@ -620931,7 +620966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -620943,7 +620978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 26, + ACTIONS(6014), 26, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -620970,7 +621005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107512] = 13, + [107507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620991,6 +621026,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(7475), 1, + anon_sym_into, + STATE(4867), 1, + aux_sym__query_body_repeat2, STATE(4865), 9, sym_preproc_region, sym_preproc_endregion, @@ -621001,7 +621040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5462), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621013,11 +621052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5460), 28, - sym_interpolation_close_brace, + ACTIONS(6014), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -621031,18 +621068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107597] = 13, + [107596] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621063,7 +621100,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4866), 9, + ACTIONS(7477), 1, + anon_sym_into, + STATE(4866), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621073,7 +621112,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5462), 11, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621085,11 +621125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5460), 28, - sym_interpolation_close_brace, + ACTIONS(6018), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -621103,18 +621141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107682] = 13, + [107683] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621135,6 +621173,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(7475), 1, + anon_sym_into, + STATE(4866), 1, + aux_sym__query_body_repeat2, STATE(4867), 9, sym_preproc_region, sym_preproc_endregion, @@ -621145,7 +621187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5466), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621157,11 +621199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5464), 28, - sym_interpolation_close_brace, + ACTIONS(6025), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -621175,18 +621215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107767] = 13, + [107772] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621217,7 +621257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5470), 11, + ACTIONS(5413), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621229,7 +621269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5468), 28, + ACTIONS(5411), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -621258,7 +621298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107852] = 13, + [107857] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621289,7 +621329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5478), 11, + ACTIONS(5423), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621301,7 +621341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5476), 28, + ACTIONS(5421), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -621330,7 +621370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [107937] = 13, + [107942] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621361,7 +621401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5482), 11, + ACTIONS(5427), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621373,7 +621413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5480), 28, + ACTIONS(5425), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -621402,7 +621442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [108022] = 13, + [108027] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621433,7 +621473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5486), 11, + ACTIONS(5431), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621445,7 +621485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5484), 28, + ACTIONS(5429), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -621474,7 +621514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [108107] = 29, + [108112] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621495,19 +621535,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -621515,11 +621555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(7071), 1, anon_sym_GT_GT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7057), 2, @@ -621531,7 +621571,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7069), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621547,7 +621587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -621562,7 +621602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [108224] = 26, + [108229] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621583,35 +621623,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, ACTIONS(7061), 1, anon_sym_SLASH, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7059), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621630,7 +621670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -621647,7 +621687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [108335] = 35, + [108340] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621668,19 +621708,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -621694,14 +621734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7053), 2, @@ -621722,7 +621762,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_EQ_GT, anon_sym_when, @@ -621741,7 +621781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108464] = 36, + [108469] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621762,19 +621802,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -621790,14 +621830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(7053), 2, @@ -621818,7 +621858,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, @@ -621836,7 +621876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108595] = 34, + [108600] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621857,19 +621897,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -621881,11 +621921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -621906,11 +621946,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, + ACTIONS(5682), 8, anon_sym_CARET, anon_sym_EQ_GT, anon_sym_when, @@ -621929,7 +621969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108722] = 27, + [108727] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621950,29 +621990,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, ACTIONS(7061), 1, anon_sym_SLASH, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7057), 2, @@ -621981,7 +622021,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7059), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -621998,7 +622038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5682), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -622015,7 +622055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [108835] = 33, + [108840] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622036,19 +622076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -622060,11 +622100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -622082,7 +622122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, @@ -622096,7 +622136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5682), 10, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -622107,7 +622147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [108960] = 37, + [108965] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622128,21 +622168,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -622160,11 +622200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -622185,7 +622225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, @@ -622203,7 +622243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109093] = 38, + [109098] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622224,21 +622264,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -622258,11 +622298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -622283,7 +622323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, @@ -622300,7 +622340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109228] = 40, + [109233] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622321,21 +622361,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, ACTIONS(7051), 1, anon_sym_DOT_DOT, @@ -622359,11 +622399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(7085), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7053), 2, @@ -622384,7 +622424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, @@ -622399,7 +622439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109367] = 41, + [109372] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622420,75 +622460,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(5722), 1, - anon_sym_in, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7443), 1, - anon_sym_QMARK, - ACTIONS(7449), 1, - anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, - anon_sym_PIPE, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7465), 1, - anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7441), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7445), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7447), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7457), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7463), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5694), 3, - anon_sym_and, - anon_sym_or, - anon_sym_into, STATE(4882), 9, sym_preproc_region, sym_preproc_endregion, @@ -622499,107 +622470,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109508] = 41, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(5893), 1, - anon_sym_in, - ACTIONS(6125), 1, - anon_sym_switch, - ACTIONS(6135), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_with, - ACTIONS(7443), 1, + ACTIONS(5439), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7449), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7451), 1, - anon_sym_CARET, - ACTIONS(7453), 1, anon_sym_PIPE, - ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7465), 1, - anon_sym_DOT_DOT, - ACTIONS(7467), 1, - anon_sym_AMP_AMP, - ACTIONS(7469), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7473), 1, - anon_sym_is, - STATE(2669), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, + anon_sym_DOT, + ACTIONS(5437), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7445), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4883), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [109649] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [109457] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622620,7 +622532,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4884), 9, + STATE(4883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622630,7 +622542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5498), 11, + ACTIONS(5447), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -622642,7 +622554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5496), 28, + ACTIONS(5445), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -622671,7 +622583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [109734] = 41, + [109542] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622692,9 +622604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -622702,13 +622614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5880), 1, anon_sym_in, - ACTIONS(6125), 1, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6135), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6161), 1, anon_sym_with, ACTIONS(7443), 1, anon_sym_QMARK, @@ -622732,9 +622644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7473), 1, anon_sym_is, - STATE(2669), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, @@ -622757,11 +622669,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5736), 3, + ACTIONS(5878), 3, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4885), 9, + STATE(4884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622771,7 +622683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109875] = 22, + [109683] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622792,9 +622704,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -622802,78 +622714,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(6149), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7443), 1, + anon_sym_QMARK, + ACTIONS(7449), 1, + anon_sym_SLASH, + ACTIONS(7451), 1, + anon_sym_CARET, + ACTIONS(7453), 1, + anon_sym_PIPE, + ACTIONS(7455), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_GT, ACTIONS(7465), 1, anon_sym_DOT_DOT, - STATE(2669), 1, + ACTIONS(7467), 1, + anon_sym_AMP_AMP, + ACTIONS(7469), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4886), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1231), 10, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1229), 19, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5850), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [109978] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - STATE(4887), 9, + STATE(4885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622883,48 +622783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5490), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5488), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [110063] = 40, + [109824] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622945,9 +622804,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, @@ -622955,65 +622814,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(6125), 1, + ACTIONS(5888), 1, + anon_sym_in, + ACTIONS(6149), 1, anon_sym_switch, - ACTIONS(6139), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7125), 1, + ACTIONS(7443), 1, + anon_sym_QMARK, + ACTIONS(7449), 1, anon_sym_SLASH, - ACTIONS(7127), 1, + ACTIONS(7451), 1, + anon_sym_CARET, + ACTIONS(7453), 1, + anon_sym_PIPE, + ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7131), 1, + ACTIONS(7459), 1, anon_sym_GT_GT, - ACTIONS(7137), 1, + ACTIONS(7465), 1, anon_sym_DOT_DOT, - ACTIONS(7139), 1, - anon_sym_as, - ACTIONS(7141), 1, - anon_sym_is, - ACTIONS(7143), 1, - anon_sym_CARET, - ACTIONS(7145), 1, - anon_sym_PIPE, - ACTIONS(7147), 1, + ACTIONS(7467), 1, anon_sym_AMP_AMP, - ACTIONS(7149), 1, + ACTIONS(7469), 1, anon_sym_PIPE_PIPE, - ACTIONS(7151), 1, + ACTIONS(7471), 1, anon_sym_QMARK_QMARK, - ACTIONS(7382), 1, - anon_sym_QMARK, - STATE(2669), 1, + ACTIONS(7473), 1, + anon_sym_is, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7121), 2, + ACTIONS(7445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7123), 2, + ACTIONS(7447), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7129), 2, + ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7133), 2, + ACTIONS(7461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7135), 2, + ACTIONS(7463), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 4, + ACTIONS(5886), 3, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_by, - STATE(4888), 9, + STATE(4886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623023,7 +622883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110202] = 15, + [109965] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623044,11 +622904,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7480), 1, - anon_sym_into, - STATE(5157), 1, - aux_sym__query_body_repeat2, - STATE(4889), 9, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(7465), 1, + anon_sym_DOT_DOT, + STATE(2655), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623058,24 +622933,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 12, + ACTIONS(1231), 10, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1229), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -623086,17 +622955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [110290] = 42, + [110068] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623117,21 +622985,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -623155,17 +623023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7482), 1, - anon_sym_COMMA, - ACTIONS(7484), 1, - anon_sym_RBRACE, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6957), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -623186,7 +623048,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4890), 9, + ACTIONS(5794), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623196,7 +623063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110432] = 15, + [110207] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623217,11 +623084,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7484), 1, + anon_sym_SLASH, ACTIONS(7486), 1, - anon_sym_into, - STATE(4930), 1, - aux_sym__query_body_repeat2, - STATE(4891), 9, + anon_sym_DOT_DOT, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7480), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623231,45 +623132,121 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5682), 15, + anon_sym_in, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [110319] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7490), 1, + anon_sym_QMARK, + ACTIONS(7496), 1, anon_sym_SLASH, + ACTIONS(7498), 1, + anon_sym_CARET, + ACTIONS(7500), 1, anon_sym_PIPE, + ACTIONS(7502), 1, anon_sym_AMP, + ACTIONS(7506), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6036), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, + anon_sym_AMP_AMP, + ACTIONS(7516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7520), 1, + anon_sym_as, + ACTIONS(7522), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [110520] = 40, + ACTIONS(5794), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(4890), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [110457] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623290,21 +623267,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -623328,11 +623305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7524), 1, + anon_sym_COMMA, + ACTIONS(7526), 1, + anon_sym_RBRACE, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6981), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -623353,11 +623336,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7488), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4892), 9, + STATE(4891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623367,7 +623346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110658] = 40, + [110599] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623388,21 +623367,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -623426,11 +623405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -623451,11 +623430,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7490), 3, + ACTIONS(7528), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4893), 9, + STATE(4892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623465,7 +623444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110796] = 29, + [110737] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623486,11 +623465,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -623500,35 +623479,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4894), 9, + STATE(4893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623538,7 +623517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -623552,7 +623531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [110912] = 29, + [110853] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623573,49 +623552,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4895), 9, + anon_sym_GT_GT, + STATE(4894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623625,8 +623599,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 15, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -623636,10 +623615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [111028] = 26, + [110963] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623660,11 +623636,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -623674,30 +623650,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6971), 1, - anon_sym_SLASH, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6969), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4896), 9, + STATE(4895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623707,10 +623679,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 17, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -623723,7 +623697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [111138] = 24, + [111069] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623744,11 +623718,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -623758,54 +623732,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6987), 1, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7016), 1, + anon_sym_GT_GT, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + ACTIONS(7030), 1, + anon_sym_is, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4897), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 7, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [111244] = 35, + STATE(4896), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [111197] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623826,11 +623811,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -623840,55 +623825,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6977), 1, + ACTIONS(7008), 1, + anon_sym_CARET, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4898), 9, + STATE(4897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623898,7 +623884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111372] = 36, + [111327] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623919,11 +623905,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -623933,55 +623919,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6973), 1, - anon_sym_CARET, - ACTIONS(6977), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + STATE(4898), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [111453] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7022), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7004), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(4899), 9, sym_preproc_region, sym_preproc_endregion, @@ -623992,7 +624045,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111502] = 27, + ACTIONS(5682), 15, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [111565] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624013,37 +624082,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7016), 1, + anon_sym_GT_GT, + ACTIONS(7022), 1, + anon_sym_DOT_DOT, + ACTIONS(7030), 1, + anon_sym_is, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6998), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7004), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7014), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7020), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7495), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(4900), 9, sym_preproc_region, sym_preproc_endregion, @@ -624054,30 +624152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [111614] = 42, + [111689] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624098,23 +624173,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -624138,15 +624213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7497), 1, + ACTIONS(7530), 1, anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7002), 1, + STATE(6822), 1, aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -624177,7 +624252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111756] = 34, + [111831] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624198,11 +624273,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7535), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(4902), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [111943] = 37, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -624212,54 +624374,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6981), 1, + ACTIONS(7008), 1, + anon_sym_CARET, + ACTIONS(7010), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4902), 9, + STATE(4903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624269,7 +624432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111882] = 27, + [112075] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624290,45 +624453,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(7537), 1, + sym__identifier_token, + ACTIONS(7543), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6971), 1, - anon_sym_SLASH, - ACTIONS(6987), 1, - anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6969), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4903), 9, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(5951), 1, + sym_explicit_interface_specifier, + STATE(7567), 1, + sym__name, + ACTIONS(7547), 2, + anon_sym_operator, + anon_sym_checked, + ACTIONS(7545), 3, + anon_sym_ref, + anon_sym_delegate, + sym_predefined_type, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4904), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624338,23 +624488,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [111994] = 29, + aux_sym_conversion_operator_declaration_repeat1, + ACTIONS(7540), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [112177] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624375,49 +624533,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4904), 9, + STATE(4905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624427,7 +624585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -624441,7 +624599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [112110] = 26, + [112293] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624462,35 +624620,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -624499,7 +624657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4905), 9, + STATE(4906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624509,7 +624667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -624525,7 +624683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [112220] = 35, + [112403] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624546,61 +624704,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_EQ_GT, anon_sym_and, @@ -624608,7 +624766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4906), 9, + STATE(4907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624618,7 +624776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112348] = 36, + [112531] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624639,70 +624797,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4907), 9, + STATE(4908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624712,7 +624870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112478] = 34, + [112661] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624733,60 +624891,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_EQ_GT, anon_sym_and, @@ -624794,7 +624952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4908), 9, + STATE(4909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624804,7 +624962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112604] = 27, + [112787] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624825,45 +624983,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4909), 9, + STATE(4910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624873,7 +625031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -624889,7 +625047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [112716] = 33, + [112899] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624910,57 +625068,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -624970,7 +625128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4910), 9, + STATE(4911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624980,7 +625138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112840] = 37, + [113023] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625001,71 +625159,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4911), 9, + STATE(4912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625075,7 +625233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112972] = 40, + [113155] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625096,130 +625254,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, - anon_sym_QMARK_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 5, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(4912), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113110] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7531), 1, - sym__identifier_token, - ACTIONS(7537), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(5945), 1, - sym_explicit_interface_specifier, - STATE(7384), 1, - sym__name, - ACTIONS(7541), 2, - anon_sym_operator, - anon_sym_checked, - ACTIONS(7539), 3, - anon_sym_ref, - anon_sym_delegate, - sym_predefined_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4913), 10, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625229,31 +625329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_conversion_operator_declaration_repeat1, - ACTIONS(7534), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [113212] = 40, + [113289] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625274,70 +625350,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, + ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, + ACTIONS(7580), 1, anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5682), 3, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -625351,7 +625427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113350] = 22, + [113427] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625372,66 +625448,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(7509), 1, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7008), 1, + anon_sym_CARET, + ACTIONS(7010), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7016), 1, + anon_sym_GT_GT, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(7024), 1, + anon_sym_AMP_AMP, + ACTIONS(7030), 1, + anon_sym_is, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4915), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, + ACTIONS(5682), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [113452] = 40, + STATE(4915), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [113561] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625452,70 +625544,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, + ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, + ACTIONS(7580), 1, anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, + ACTIONS(7582), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5866), 3, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -625529,7 +625621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113590] = 40, + [113699] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625550,84 +625642,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7503), 1, - anon_sym_SLASH, - ACTIONS(7507), 1, - anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_AMP, - ACTIONS(7519), 1, - anon_sym_is, - ACTIONS(7521), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_PIPE, - ACTIONS(7525), 1, - anon_sym_AMP_AMP, - ACTIONS(7527), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, - anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(5926), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4917), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7515), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, anon_sym_EQ_GT, + anon_sym_switch, anon_sym_and, anon_sym_or, - STATE(4917), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113728] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [113801] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625648,70 +625722,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, + ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, + ACTIONS(7580), 1, anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, + ACTIONS(7582), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5870), 3, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -625725,7 +625799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113866] = 40, + [113939] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625746,70 +625820,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, + ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, + ACTIONS(7580), 1, anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, + ACTIONS(7582), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5238), 3, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, @@ -625823,7 +625897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114004] = 33, + [114077] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625844,66 +625918,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6591), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(6981), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7564), 1, + anon_sym_AMP, + ACTIONS(7570), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(7572), 1, + anon_sym_CARET, + ACTIONS(7574), 1, + anon_sym_PIPE, + ACTIONS(7576), 1, + anon_sym_AMP_AMP, + ACTIONS(7578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7582), 1, + anon_sym_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6985), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + ACTIONS(7562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(7568), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, STATE(4920), 9, sym_preproc_region, sym_preproc_endregion, @@ -625914,7 +625995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114128] = 37, + [114215] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625935,133 +626016,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6591), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(6973), 1, - anon_sym_CARET, - ACTIONS(6975), 1, - anon_sym_PIPE, - ACTIONS(6977), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7564), 1, + anon_sym_AMP, + ACTIONS(7570), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(7572), 1, + anon_sym_CARET, + ACTIONS(7574), 1, + anon_sym_PIPE, + ACTIONS(7576), 1, + anon_sym_AMP_AMP, + ACTIONS(7578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7582), 1, + anon_sym_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4921), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114260] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7546), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, + ACTIONS(5794), 3, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(4922), 9, + STATE(4921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626071,30 +626093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [114372] = 38, + [114353] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626115,13 +626114,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5756), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6620), 1, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -626131,56 +626130,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(6995), 1, + ACTIONS(7026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7028), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 3, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4923), 9, + STATE(4922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626190,7 +626191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114506] = 27, + [114491] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626213,36 +626214,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7548), 1, + ACTIONS(7584), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(4924), 9, + STATE(4923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626252,7 +626253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626275,7 +626276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [114618] = 27, + [114603] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626298,36 +626299,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7550), 1, + ACTIONS(7586), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(4925), 9, + STATE(4924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626337,7 +626338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626360,7 +626361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [114730] = 27, + [114715] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626383,36 +626384,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7552), 1, + ACTIONS(7588), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(4926), 9, + STATE(4925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626422,7 +626423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626445,105 +626446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [114842] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6971), 1, - anon_sym_SLASH, - ACTIONS(6973), 1, - anon_sym_CARET, - ACTIONS(6975), 1, - anon_sym_PIPE, - ACTIONS(6977), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_GT, - ACTIONS(6987), 1, - anon_sym_DOT_DOT, - ACTIONS(6989), 1, - anon_sym_AMP_AMP, - ACTIONS(6991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6963), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6969), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6983), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6985), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4927), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114980] = 27, + [114827] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626566,36 +626469,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7554), 1, + ACTIONS(7590), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(4928), 9, + STATE(4926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626605,7 +626508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626628,7 +626531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [115092] = 27, + [114939] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626651,36 +626554,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7556), 1, + ACTIONS(7592), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(4929), 9, + STATE(4927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626690,7 +626593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626698,364 +626601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [115204] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7486), 1, - anon_sym_into, - STATE(4966), 1, - aux_sym__query_body_repeat2, - STATE(4930), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [115292] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7486), 1, - anon_sym_into, - STATE(4967), 1, - aux_sym__query_body_repeat2, - STATE(4931), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [115380] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7558), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4932), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [115518] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_with, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6965), 1, - anon_sym_QMARK, - ACTIONS(6971), 1, - anon_sym_SLASH, - ACTIONS(6973), 1, - anon_sym_CARET, - ACTIONS(6975), 1, - anon_sym_PIPE, - ACTIONS(6977), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_GT, - ACTIONS(6987), 1, - anon_sym_DOT_DOT, - ACTIONS(6989), 1, - anon_sym_AMP_AMP, - ACTIONS(6991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6963), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6967), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6969), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6983), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6985), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4933), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [115656] = 42, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [115051] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627076,21 +626637,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -627114,17 +626675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7560), 1, - anon_sym_COMMA, - ACTIONS(7562), 1, - anon_sym_RBRACE, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7046), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -627145,7 +626700,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4934), 9, + ACTIONS(7594), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627155,7 +626714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115798] = 17, + [115189] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627176,15 +626735,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4958), 1, - anon_sym_LBRACK, - ACTIONS(5399), 1, - anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_QMARK, - STATE(3447), 1, - sym_initializer_expression, - STATE(4935), 9, + ACTIONS(7596), 1, + anon_sym_into, + STATE(4965), 1, + aux_sym__query_body_repeat2, + STATE(4929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627194,9 +626749,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4968), 10, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -627205,9 +626761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4962), 24, + ACTIONS(6014), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -627221,8 +626780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -627230,7 +626787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [115890] = 26, + [115277] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627251,44 +626808,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6927), 1, - anon_sym_SLASH, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4936), 9, + ACTIONS(7596), 1, + anon_sym_into, + STATE(4966), 1, + aux_sym__query_body_repeat2, + STATE(4930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627298,7 +626822,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -627306,15 +626851,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [116000] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [115365] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7598), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(4931), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [115477] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627335,40 +626966,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6943), 1, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4937), 9, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6963), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627378,25 +627039,99 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + [115607] = 34, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [116106] = 41, + STATE(4933), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [115733] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627417,75 +627152,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7564), 1, - anon_sym_SEMI, - ACTIONS(7568), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7600), 1, + anon_sym_COMMA, + ACTIONS(7602), 1, + anon_sym_RBRACE, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6911), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7566), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4938), 9, + STATE(4934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627495,7 +627231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116246] = 35, + [115875] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627516,69 +627252,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6933), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6937), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + STATE(4935), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 15, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [115987] = 33, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 9, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4939), 9, + STATE(4936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627588,7 +627407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116374] = 40, + [116111] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627609,74 +627428,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7604), 1, + anon_sym_SEMI, + ACTIONS(7608), 1, + anon_sym_QMARK, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(5866), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4940), 9, + STATE(4937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627686,7 +627506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116512] = 41, + [116251] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627707,19 +627527,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7251), 1, anon_sym_QMARK, @@ -627745,16 +627565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7285), 1, anon_sym_QMARK_QMARK, - ACTIONS(7598), 1, + ACTIONS(7638), 1, anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5909), 2, + ACTIONS(5794), 2, anon_sym_COLON, anon_sym_RPAREN, ACTIONS(7259), 2, @@ -627775,7 +627595,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4941), 9, + STATE(4938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627785,7 +627605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116652] = 40, + [116391] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627806,74 +627626,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4942), 9, + STATE(4939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627883,7 +627703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116790] = 42, + [116529] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627904,23 +627724,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -627944,15 +627764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7600), 1, + ACTIONS(7640), 1, anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6866), 1, + STATE(6898), 1, aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -627973,69 +627793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4943), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [116932] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7602), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(4944), 9, + STATE(4940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628045,30 +627803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [117044] = 42, + [116671] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628089,21 +627824,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -628127,17 +627862,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7604), 1, + ACTIONS(7642), 1, anon_sym_COMMA, - ACTIONS(7606), 1, + ACTIONS(7644), 1, anon_sym_RBRACE, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7037), 1, + STATE(6970), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -628158,7 +627893,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4945), 9, + STATE(4941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628168,7 +627903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117186] = 22, + [116813] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628189,26 +627924,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -628218,7 +627953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4946), 9, + STATE(4942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628228,7 +627963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -628248,7 +627983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [117288] = 36, + [116915] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628269,70 +628004,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6919), 2, + anon_sym_AMP, + STATE(4943), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [117031] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_LBRACK, + ACTIONS(5392), 1, + anon_sym_LBRACE, + ACTIONS(5395), 1, + anon_sym_QMARK, + STATE(3423), 1, + sym_initializer_expression, + STATE(4944), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4926), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4920), 24, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4947), 9, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [117123] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7646), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(4945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628342,7 +628207,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117418] = 42, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [117235] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628363,21 +628251,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -628401,17 +628289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7608), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(7610), 1, + ACTIONS(7650), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6820), 1, + STATE(7012), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -628432,7 +628320,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4948), 9, + STATE(4946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628442,7 +628330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117560] = 34, + [117377] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628463,78 +628351,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6935), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4947), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 15, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4949), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [117686] = 27, + [117487] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628555,45 +628435,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6927), 1, - anon_sym_SLASH, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4950), 9, + STATE(4948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628603,7 +628474,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5924), 19, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -628611,15 +628484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, + anon_sym_with, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [117798] = 40, + [117589] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628640,11 +628515,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -628654,60 +628529,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7000), 1, anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(6991), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5870), 3, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - STATE(4951), 9, + STATE(4949), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [117727] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, + anon_sym_PIPE, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6963), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628717,7 +628690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117936] = 17, + [117865] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628738,15 +628711,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4110), 1, anon_sym_LBRACK, - ACTIONS(4131), 1, + ACTIONS(4133), 1, anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(5215), 1, anon_sym_QMARK, - ACTIONS(7612), 1, + ACTIONS(7652), 1, anon_sym_DOT, - ACTIONS(4056), 9, + ACTIONS(4022), 9, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -628756,7 +628729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4952), 9, + STATE(4951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628766,7 +628739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 25, + ACTIONS(4024), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -628792,7 +628765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [118028] = 14, + [117957] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628813,9 +628786,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7612), 1, + ACTIONS(7652), 1, anon_sym_DOT, - STATE(4953), 9, + STATE(4952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628825,7 +628798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 10, + ACTIONS(4026), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -628836,7 +628809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4015), 27, + ACTIONS(4028), 27, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -628864,7 +628837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [118114] = 40, + [118043] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628885,74 +628858,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5870), 3, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4954), 9, + STATE(4953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628962,7 +628935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118252] = 40, + [118181] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628983,74 +628956,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6931), 1, - anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4955), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629060,7 +629008,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118390] = 29, + ACTIONS(5682), 13, + anon_sym_in, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [118297] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629081,49 +629043,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4956), 9, + anon_sym_GT_GT, + STATE(4955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629133,9 +629090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 15, anon_sym_in, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -629147,7 +629106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [118506] = 26, + [118407] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629168,70 +629127,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_as, + ACTIONS(7668), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7616), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5684), 2, anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4957), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_in, - anon_sym_CARET, + ACTIONS(7482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 7, + anon_sym_in, + anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [118616] = 35, + STATE(4956), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [118535] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629252,69 +629220,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(7670), 1, + anon_sym_CARET, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 6, anon_sym_in, - anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4958), 9, + STATE(4957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629324,7 +629293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118744] = 36, + [118665] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629345,70 +629314,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, - anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, - anon_sym_CARET, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, anon_sym_in, + anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4959), 9, + STATE(4958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629418,7 +629385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118874] = 34, + [118791] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629439,68 +629406,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7622), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7634), 1, - anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(7672), 1, + anon_sym_RBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(7099), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_in, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4960), 9, + STATE(4959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629510,7 +629485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119000] = 27, + [118933] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629531,71 +629506,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7666), 1, + anon_sym_as, + ACTIONS(7668), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(7654), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4961), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 9, anon_sym_in, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [119112] = 33, + STATE(4960), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [119057] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629616,67 +629597,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7634), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_AMP, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - STATE(2827), 1, + ACTIONS(7670), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_PIPE, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7632), 2, + ACTIONS(7662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 6, anon_sym_in, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4962), 9, + STATE(4961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629686,7 +629671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119236] = 37, + [119189] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629707,71 +629692,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - STATE(2827), 1, + ACTIONS(7676), 1, + anon_sym_AMP_AMP, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 5, anon_sym_in, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4963), 9, + STATE(4962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629781,7 +629767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119368] = 38, + [119323] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629802,72 +629788,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - STATE(2827), 1, + ACTIONS(7678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7680), 1, + anon_sym_QMARK_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 3, anon_sym_in, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4964), 9, + STATE(4963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629877,7 +629865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119502] = 40, + [119461] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629898,74 +629886,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(6635), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(7618), 1, - anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, - anon_sym_DOT_DOT, - ACTIONS(7628), 1, - anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(7636), 1, - anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7000), 1, + anon_sym_QMARK, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7016), 1, + anon_sym_GT_GT, + ACTIONS(7022), 1, + anon_sym_DOT_DOT, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - STATE(2827), 1, + ACTIONS(7030), 1, + anon_sym_is, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(6998), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4965), 9, + ACTIONS(5238), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629975,7 +629963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119640] = 14, + [119599] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629996,9 +629984,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7682), 1, anon_sym_into, - STATE(4966), 10, + STATE(4965), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630009,7 +629997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -630021,7 +630009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 25, + ACTIONS(6018), 25, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -630047,7 +630035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [119726] = 15, + [119685] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630068,11 +630056,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7486), 1, + ACTIONS(7596), 1, anon_sym_into, - STATE(4966), 1, + STATE(4965), 1, aux_sym__query_body_repeat2, - STATE(4967), 9, + STATE(4966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630082,7 +630070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -630094,7 +630082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 25, + ACTIONS(6025), 25, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -630120,7 +630108,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [119814] = 27, + [119773] = 37, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6949), 1, + anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, + anon_sym_PIPE, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6963), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4967), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [119905] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630143,32 +630226,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7651), 1, + ACTIONS(7685), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, @@ -630182,7 +630265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -630205,7 +630288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [119926] = 40, + [120017] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630226,73 +630309,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(6991), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(3207), 1, + ACTIONS(7687), 1, + anon_sym_COMMA, + ACTIONS(7689), 1, + anon_sym_RBRACE, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + STATE(6995), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, STATE(4969), 9, sym_preproc_region, sym_preproc_endregion, @@ -630303,7 +630388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120064] = 42, + [120159] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630324,75 +630409,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7653), 1, - anon_sym_COMMA, - ACTIONS(7655), 1, - anon_sym_RBRACE, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6802), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5794), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, STATE(4970), 9, sym_preproc_region, sym_preproc_endregion, @@ -630403,7 +630486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120206] = 33, + [120297] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630424,66 +630507,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6937), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7691), 1, + anon_sym_RBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6905), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 9, - anon_sym_CARET, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(4971), 9, sym_preproc_region, sym_preproc_endregion, @@ -630494,7 +630586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120330] = 40, + [120439] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630515,70 +630607,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7657), 3, + ACTIONS(7693), 3, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, @@ -630592,7 +630684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120468] = 42, + [120577] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630613,75 +630705,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7659), 1, - anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6975), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7695), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, STATE(4973), 9, sym_preproc_region, sym_preproc_endregion, @@ -630692,7 +630782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120610] = 42, + [120715] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630713,75 +630803,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7486), 1, + anon_sym_DOT_DOT, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_as, + ACTIONS(7668), 1, + anon_sym_is, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7661), 1, - anon_sym_RBRACK, - STATE(2502), 1, + ACTIONS(7697), 1, + anon_sym_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6828), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5866), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, STATE(4974), 9, sym_preproc_region, sym_preproc_endregion, @@ -630792,7 +630880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120752] = 40, + [120853] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630813,73 +630901,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7699), 1, + anon_sym_RBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(7029), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7663), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, STATE(4975), 9, sym_preproc_region, sym_preproc_endregion, @@ -630890,7 +630980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120890] = 40, + [120995] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630911,71 +631001,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7618), 1, - anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, - anon_sym_DOT_DOT, - ACTIONS(7628), 1, - anon_sym_AMP, - ACTIONS(7634), 1, - anon_sym_as, - ACTIONS(7636), 1, - anon_sym_is, - ACTIONS(7638), 1, - anon_sym_CARET, - ACTIONS(7640), 1, - anon_sym_PIPE, - ACTIONS(7642), 1, - anon_sym_AMP_AMP, - ACTIONS(7644), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7616), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7626), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7630), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7632), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5769), 3, - anon_sym_in, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7701), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, anon_sym_and, anon_sym_or, STATE(4976), 9, @@ -630988,7 +631042,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121028] = 22, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [121107] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631009,26 +631086,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631048,7 +631125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, @@ -631068,7 +631145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [121130] = 40, + [121209] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631089,70 +631166,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, + ACTIONS(7697), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5870), 3, anon_sym_in, anon_sym_and, anon_sym_or, @@ -631166,7 +631243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121268] = 40, + [121347] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631187,70 +631264,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, + ACTIONS(7697), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5238), 3, anon_sym_in, anon_sym_and, anon_sym_or, @@ -631264,7 +631341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121406] = 40, + [121485] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631285,318 +631362,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, - anon_sym_AMP, - ACTIONS(7634), 1, - anon_sym_as, - ACTIONS(7636), 1, - anon_sym_is, - ACTIONS(7638), 1, - anon_sym_CARET, - ACTIONS(7640), 1, - anon_sym_PIPE, - ACTIONS(7642), 1, - anon_sym_AMP_AMP, - ACTIONS(7644), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7616), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7620), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7626), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7630), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7632), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5783), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4980), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [121544] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7618), 1, - anon_sym_SLASH, - ACTIONS(7622), 1, + ACTIONS(7656), 1, anon_sym_GT_GT, - ACTIONS(7624), 1, - anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, + ACTIONS(7697), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5874), 3, anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4981), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [121682] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7667), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(4982), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [121794] = 26, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6479), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3911), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4983), 9, + STATE(4980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631606,30 +631439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [121904] = 40, + [121623] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631650,74 +631460,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7486), 1, + anon_sym_DOT_DOT, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_AMP, + ACTIONS(7666), 1, + anon_sym_as, + ACTIONS(7668), 1, + anon_sym_is, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7697), 1, + anon_sym_QMARK, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4984), 9, + ACTIONS(5794), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631727,7 +631537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122042] = 29, + [121761] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631748,49 +631558,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4985), 9, + STATE(4982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631800,7 +631610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_COLON, anon_sym_CARET, anon_sym_EQ_EQ, @@ -631814,7 +631624,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [122158] = 26, + [121877] = 26, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6490), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3911), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4983), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [121987] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631835,35 +631729,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631872,7 +631766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4986), 9, + STATE(4984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631882,7 +631776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, @@ -631898,7 +631792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [122268] = 35, + [122097] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631919,61 +631813,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_CARET, anon_sym_and, @@ -631981,7 +631875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4987), 9, + STATE(4985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631991,7 +631885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122396] = 36, + [122225] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632012,70 +631906,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_COLON, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4988), 9, + STATE(4986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632085,7 +631979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122526] = 34, + [122355] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632106,60 +632000,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_COLON, anon_sym_CARET, anon_sym_and, @@ -632167,7 +632061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4989), 9, + STATE(4987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632177,7 +632071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122652] = 27, + [122481] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632198,45 +632092,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4990), 9, + STATE(4988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632246,7 +632140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, @@ -632262,7 +632156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [122764] = 33, + [122593] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632283,57 +632177,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_COLON, anon_sym_CARET, anon_sym_EQ_EQ, @@ -632343,7 +632237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4991), 9, + STATE(4989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632353,7 +632247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122888] = 37, + [122717] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632374,71 +632268,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_COLON, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4992), 9, + STATE(4990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632448,7 +632342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123020] = 38, + [122849] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632469,72 +632363,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 5, anon_sym_COLON, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4993), 9, + STATE(4991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632544,7 +632438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123154] = 40, + [122983] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632565,74 +632459,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(4994), 9, + STATE(4992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632642,7 +632536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123292] = 42, + [123121] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632663,76 +632557,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(7701), 1, + ACTIONS(7735), 1, anon_sym_SEMI, - ACTIONS(7703), 1, + ACTIONS(7737), 1, anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6862), 1, + STATE(6920), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4995), 9, + STATE(4993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632742,7 +632636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123434] = 29, + [123263] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632763,49 +632657,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4996), 9, + STATE(4994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632815,7 +632709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -632829,7 +632723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [123550] = 40, + [123379] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632850,21 +632744,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -632888,11 +632782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -632913,11 +632807,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7705), 3, + ACTIONS(7739), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4997), 9, + STATE(4995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632927,7 +632821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123688] = 40, + [123517] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632948,74 +632842,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4998), 9, + STATE(4996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633025,7 +632919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123826] = 40, + [123655] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633046,74 +632940,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7648), 1, + anon_sym_COMMA, + ACTIONS(7741), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(7068), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4999), 9, + STATE(4997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633123,7 +633019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123964] = 42, + [123797] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633144,21 +633040,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -633182,17 +633078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7608), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(7707), 1, + ACTIONS(7743), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7070), 1, + STATE(7073), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -633213,7 +633109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5000), 9, + STATE(4998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633223,7 +633119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124106] = 42, + [123939] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633244,76 +633140,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7608), 1, - anon_sym_COMMA, - ACTIONS(7709), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7076), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5001), 9, + ACTIONS(5870), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633323,7 +633217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124248] = 27, + [124077] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633346,36 +633240,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7711), 1, + ACTIONS(7745), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5002), 9, + STATE(5000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633385,7 +633279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -633408,7 +633302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [124360] = 26, + [124189] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633429,35 +633323,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633466,7 +633360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5003), 9, + STATE(5001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633476,7 +633370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -633492,7 +633386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [124470] = 15, + [124299] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633513,11 +633407,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7747), 1, anon_sym_and, - ACTIONS(7715), 1, + ACTIONS(7749), 1, anon_sym_or, - STATE(5004), 9, + STATE(5002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633527,7 +633421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633539,7 +633433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 25, + ACTIONS(6171), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -633565,7 +633459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [124558] = 40, + [124387] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633586,74 +633480,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5005), 9, + STATE(5003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633663,7 +633557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124696] = 22, + [124525] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633684,26 +633578,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633713,7 +633607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5006), 9, + STATE(5004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633723,7 +633617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, @@ -633743,7 +633637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [124798] = 40, + [124627] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633764,74 +633658,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5870), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5007), 9, + STATE(5005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633841,7 +633735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124936] = 40, + [124765] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633862,74 +633756,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5238), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5008), 9, + STATE(5006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633939,7 +633833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125074] = 40, + [124903] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633960,74 +633854,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5874), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5009), 9, + STATE(5007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634037,7 +633931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125212] = 40, + [125041] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634058,74 +633952,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5794), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5010), 9, + STATE(5008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634135,7 +634029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125350] = 24, + [125179] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634156,30 +634050,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -634189,7 +634083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5011), 9, + STATE(5009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634199,7 +634093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634217,7 +634111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [125456] = 35, + [125285] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634238,61 +634132,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634300,7 +634194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5012), 9, + STATE(5010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634310,7 +634204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125584] = 36, + [125413] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634331,70 +634225,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7753), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(5011), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [125525] = 36, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5013), 9, + STATE(5012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634404,7 +634383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125714] = 34, + [125655] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634425,60 +634404,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634486,7 +634465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5014), 9, + STATE(5013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634496,7 +634475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125840] = 27, + [125781] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634517,45 +634496,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5015), 9, + STATE(5014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634565,7 +634544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634581,7 +634560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [125952] = 33, + [125893] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634602,57 +634581,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634662,40 +634641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5016), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126076] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7719), 1, - anon_sym_and, - STATE(5017), 9, + STATE(5015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634705,46 +634651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [126162] = 22, + [126017] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634765,26 +634672,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -634794,7 +634701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5018), 9, + STATE(5016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634804,7 +634711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -634824,7 +634731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [126264] = 27, + [126119] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634845,159 +634752,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7721), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(5019), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [126376] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7568), 1, - anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, - anon_sym_AMP_AMP, - ACTIONS(7594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5682), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5020), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635007,7 +634826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126514] = 22, + [126251] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635028,23 +634847,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(7590), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -635057,132 +634876,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5021), 9, + STATE(5018), 9, sym_preproc_region, sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [126616] = 37, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7574), 1, - anon_sym_SLASH, - ACTIONS(7576), 1, - anon_sym_CARET, - ACTIONS(7578), 1, - anon_sym_PIPE, - ACTIONS(7580), 1, - anon_sym_AMP, - ACTIONS(7584), 1, - anon_sym_GT_GT, - ACTIONS(7590), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7572), 2, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5022), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126748] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [126353] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635203,9 +634927,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7755), 1, anon_sym_and, - STATE(5023), 9, + STATE(5019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635215,7 +634939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -635227,11 +634951,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 26, - sym_interpolation_close_brace, + ACTIONS(6199), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -635245,16 +634967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [126834] = 22, + [126439] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635275,66 +634999,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6943), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7614), 1, + anon_sym_SLASH, + ACTIONS(7616), 1, + anon_sym_CARET, + ACTIONS(7618), 1, + anon_sym_PIPE, + ACTIONS(7620), 1, + anon_sym_AMP, + ACTIONS(7624), 1, + anon_sym_GT_GT, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7632), 1, + anon_sym_AMP_AMP, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5024), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1229), 19, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, + ACTIONS(5682), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [126936] = 27, + STATE(5020), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [126573] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635355,38 +635095,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7725), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, + ACTIONS(7757), 1, anon_sym_and, - anon_sym_or, - STATE(5025), 9, + STATE(5021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635396,30 +635107,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [127048] = 38, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 26, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [126659] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635440,72 +635167,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7608), 1, + anon_sym_QMARK, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - STATE(2502), 1, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5794), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5026), 9, + STATE(5022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635515,7 +635244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127182] = 40, + [126797] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635536,74 +635265,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5027), 9, + STATE(5023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635613,7 +635342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127320] = 42, + [126935] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635634,76 +635363,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7727), 1, - anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6986), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5028), 9, + ACTIONS(5238), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635713,7 +635440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127462] = 40, + [127073] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635734,74 +635461,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, - anon_sym_QMARK, - ACTIONS(7574), 1, - anon_sym_SLASH, - ACTIONS(7576), 1, - anon_sym_CARET, - ACTIONS(7578), 1, - anon_sym_PIPE, - ACTIONS(7580), 1, - anon_sym_AMP, - ACTIONS(7584), 1, - anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, - anon_sym_AMP_AMP, - ACTIONS(7594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7582), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7586), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7588), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5172), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5029), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635811,7 +635500,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127600] = 27, + ACTIONS(1229), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [127175] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635834,36 +635543,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7729), 1, + ACTIONS(7759), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5030), 9, + STATE(5026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635873,7 +635582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -635896,7 +635605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [127712] = 40, + [127287] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635917,74 +635626,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7247), 1, + anon_sym_COMMA, + ACTIONS(7249), 1, + anon_sym_RBRACE, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6930), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5031), 9, + STATE(5027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635994,7 +635705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127850] = 40, + [127429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636015,74 +635726,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + STATE(5028), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5455), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(3881), 27, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [127513] = 42, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7761), 1, + anon_sym_RBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6841), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5032), 9, + STATE(5029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636092,7 +635876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127988] = 22, + [127655] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636113,36 +635897,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5033), 9, + ACTIONS(7757), 1, + anon_sym_and, + ACTIONS(7763), 1, + anon_sym_or, + STATE(5030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636152,7 +635911,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5480), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -636163,16 +635941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [128090] = 40, + [127743] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636193,74 +635970,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(6991), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, - anon_sym_is, - STATE(3207), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5874), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5034), 9, + anon_sym_RBRACE, + STATE(5031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636270,7 +636047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128228] = 13, + [127881] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636291,57 +636068,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5035), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5390), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, anon_sym_PIPE, + ACTIONS(6955), 1, anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3840), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [128312] = 15, + ACTIONS(5238), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5032), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [128019] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636362,59 +636166,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym_and, - ACTIONS(7731), 1, - anon_sym_or, - STATE(5036), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6949), 1, anon_sym_SLASH, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, anon_sym_PIPE, + ACTIONS(6955), 1, anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5682), 5, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [128400] = 27, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5033), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [128153] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636435,38 +636262,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, + anon_sym_switch, + ACTIONS(6659), 1, + anon_sym_with, + ACTIONS(6793), 1, + anon_sym_as, + ACTIONS(7000), 1, + anon_sym_QMARK, + ACTIONS(7006), 1, + anon_sym_SLASH, + ACTIONS(7008), 1, + anon_sym_CARET, + ACTIONS(7010), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7016), 1, + anon_sym_GT_GT, + ACTIONS(7022), 1, + anon_sym_DOT_DOT, + ACTIONS(7024), 1, + anon_sym_AMP_AMP, + ACTIONS(7026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7028), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7030), 1, + anon_sym_is, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6998), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7004), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7014), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7018), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7020), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5874), 3, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(5037), 9, + STATE(5034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636476,30 +636339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [128512] = 27, + [128291] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636522,36 +636362,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7735), 1, + ACTIONS(7765), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5038), 9, + STATE(5035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636561,7 +636401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -636584,7 +636424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [128624] = 40, + [128403] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636605,74 +636445,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7618), 1, + ACTIONS(7484), 1, anon_sym_SLASH, - ACTIONS(7622), 1, - anon_sym_GT_GT, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - ACTIONS(7628), 1, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_AMP, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_as, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_is, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7674), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7676), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7678), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7680), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, + ACTIONS(7697), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_in, anon_sym_and, anon_sym_or, - STATE(5039), 9, + STATE(5036), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [128541] = 27, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7767), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(5037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636682,7 +636584,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128762] = 42, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [128653] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636703,26 +636628,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5794), 1, + anon_sym_RPAREN, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7247), 1, - anon_sym_COMMA, - ACTIONS(7249), 1, - anon_sym_RBRACE, ACTIONS(7289), 1, anon_sym_QMARK, ACTIONS(7295), 1, @@ -636745,13 +636668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6821), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -636772,7 +636693,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5040), 9, + ACTIONS(7638), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636782,7 +636706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128904] = 29, + [128793] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636803,49 +636727,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5041), 9, + STATE(5039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636855,7 +636779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -636869,7 +636793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [129020] = 26, + [128909] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636890,35 +636814,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -636927,7 +636851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5042), 9, + STATE(5040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636937,7 +636861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -636953,7 +636877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [129130] = 35, + [129019] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636974,61 +636898,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -637036,7 +636960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5043), 9, + STATE(5041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637046,7 +636970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129258] = 36, + [129147] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637067,70 +636991,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5044), 9, + STATE(5042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637140,7 +637064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129388] = 34, + [129277] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637161,60 +637085,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -637222,7 +637146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5045), 9, + STATE(5043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637232,7 +637156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129514] = 27, + [129403] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637253,45 +637177,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5046), 9, + STATE(5044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637301,7 +637225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -637317,7 +637241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [129626] = 33, + [129515] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637338,57 +637262,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -637398,7 +637322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5047), 9, + STATE(5045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637408,7 +637332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129750] = 37, + [129639] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637429,71 +637353,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5048), 9, + STATE(5046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637503,7 +637427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129882] = 27, + [129771] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637526,36 +637450,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7765), 1, + ACTIONS(7797), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5049), 9, + STATE(5047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637565,7 +637489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -637588,7 +637512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [129994] = 40, + [129883] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637609,74 +637533,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7673), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(7711), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - ACTIONS(7683), 1, + ACTIONS(7717), 1, anon_sym_AMP, - ACTIONS(7689), 1, + ACTIONS(7723), 1, anon_sym_is, - ACTIONS(7691), 1, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7717), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(7715), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5050), 9, + STATE(5048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637686,7 +637610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130132] = 38, + [130021] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637707,72 +637631,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 5, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, - STATE(5051), 9, + STATE(5049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637782,7 +637706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130266] = 24, + [130155] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637803,30 +637727,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -637836,7 +637760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5052), 9, + STATE(5050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637846,7 +637770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, @@ -637864,7 +637788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [130372] = 40, + [130261] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637885,74 +637809,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5053), 9, + STATE(5051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637962,7 +637886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130510] = 22, + [130399] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637983,23 +637907,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7679), 1, + ACTIONS(7713), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -638012,7 +637936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5054), 9, + STATE(5052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638042,7 +637966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [130612] = 15, + [130501] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638063,11 +637987,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7755), 1, anon_sym_and, - ACTIONS(7773), 1, + ACTIONS(7805), 1, anon_sym_or, - STATE(5055), 9, + STATE(5053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638077,7 +638001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -638089,7 +638013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 25, + ACTIONS(6171), 25, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -638115,7 +638039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [130700] = 41, + [130589] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638136,23 +638060,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_RPAREN, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -638176,11 +638098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -638201,10 +638123,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7598), 2, + ACTIONS(7638), 3, anon_sym_COMMA, anon_sym_RBRACK, - STATE(5056), 9, + anon_sym_RPAREN, + STATE(5054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638214,7 +638137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130840] = 27, + [130727] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638237,36 +638160,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7775), 1, + ACTIONS(7807), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5057), 9, + STATE(5055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638276,7 +638199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -638299,7 +638222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [130952] = 40, + [130839] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638320,74 +638243,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - ACTIONS(7777), 1, + ACTIONS(7809), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5058), 9, + STATE(5056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638397,7 +638320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131090] = 24, + [130977] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638418,30 +638341,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -638451,7 +638374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5059), 9, + STATE(5057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638461,7 +638384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -638479,7 +638402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [131196] = 22, + [131083] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638500,23 +638423,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -638529,7 +638452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5060), 9, + STATE(5058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638559,7 +638482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [131298] = 27, + [131185] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638582,36 +638505,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7779), 1, + ACTIONS(7811), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5061), 9, + STATE(5059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638621,7 +638544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -638644,7 +638567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [131410] = 24, + [131297] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638665,30 +638588,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -638698,7 +638621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5062), 9, + STATE(5060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638708,7 +638631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -638726,7 +638649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [131516] = 22, + [131403] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638747,23 +638670,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -638776,7 +638699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5063), 9, + STATE(5061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638806,105 +638729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [131618] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7598), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5064), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [131756] = 27, + [131505] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638927,36 +638752,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7783), 1, + ACTIONS(7815), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5065), 9, + STATE(5062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638966,7 +638791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -638989,7 +638814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [131868] = 40, + [131617] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639010,74 +638835,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7787), 1, + ACTIONS(7819), 1, anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5066), 9, + STATE(5063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639087,7 +638912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132006] = 24, + [131755] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639108,30 +638933,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, + ACTIONS(7512), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -639141,7 +638966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5067), 9, + STATE(5064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639151,7 +638976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -639169,7 +638994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [132112] = 22, + [131861] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639190,23 +639015,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7819), 1, + ACTIONS(7512), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -639219,7 +639044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5068), 9, + STATE(5065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639249,7 +639074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [132214] = 27, + [131963] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639272,36 +639097,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7821), 1, + ACTIONS(7851), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5069), 9, + STATE(5066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639311,7 +639136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -639334,7 +639159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [132326] = 40, + [132075] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639355,74 +639180,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7825), 1, + ACTIONS(7490), 1, anon_sym_QMARK, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7835), 1, + ACTIONS(7500), 1, anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, anon_sym_AMP_AMP, - ACTIONS(7849), 1, + ACTIONS(7516), 1, anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, + ACTIONS(7518), 1, anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_and, anon_sym_or, anon_sym_on, - STATE(5070), 9, + STATE(5067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639432,7 +639257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132464] = 24, + [132213] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639453,30 +639278,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -639486,7 +639311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5071), 9, + STATE(5068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639496,7 +639321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -639514,7 +639339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [132570] = 22, + [132319] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639535,23 +639360,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -639564,7 +639389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5072), 9, + STATE(5069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639594,7 +639419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [132672] = 40, + [132421] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639615,74 +639440,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7503), 1, + ACTIONS(6591), 1, + anon_sym_as, + ACTIONS(7554), 1, anon_sym_SLASH, - ACTIONS(7507), 1, + ACTIONS(7558), 1, anon_sym_GT_GT, - ACTIONS(7509), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7564), 1, anon_sym_AMP, - ACTIONS(7519), 1, + ACTIONS(7570), 1, anon_sym_is, - ACTIONS(7521), 1, + ACTIONS(7572), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7574), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7527), 1, + ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, + ACTIONS(7580), 1, anon_sym_QMARK_QMARK, - ACTIONS(7544), 1, + ACTIONS(7582), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(7550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(7552), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(7556), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, + ACTIONS(7562), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(7566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(7568), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5891), 3, + ACTIONS(5850), 3, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(5073), 9, + STATE(5070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639692,7 +639517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132810] = 42, + [132559] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639713,21 +639538,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -639751,17 +639576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7857), 1, + ACTIONS(7853), 1, anon_sym_COMMA, - ACTIONS(7859), 1, + ACTIONS(7855), 1, anon_sym_RBRACE, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6976), 1, + STATE(6999), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -639782,7 +639607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5074), 9, + STATE(5071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639792,7 +639617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132952] = 15, + [132701] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639813,11 +639638,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7757), 1, anon_sym_and, - ACTIONS(7731), 1, + ACTIONS(7763), 1, anon_sym_or, - STATE(5075), 9, + STATE(5072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639827,7 +639652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -639839,7 +639664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 25, + ACTIONS(6171), 25, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -639865,7 +639690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [133040] = 40, + [132789] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639886,74 +639711,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - ACTIONS(7777), 1, + ACTIONS(7809), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5076), 9, + STATE(5073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639963,7 +639788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133178] = 22, + [132927] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639984,26 +639809,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640013,7 +639838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5077), 9, + STATE(5074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640023,7 +639848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -640043,190 +639868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [133280] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7741), 1, - anon_sym_SLASH, - ACTIONS(7745), 1, - anon_sym_GT_GT, - ACTIONS(7747), 1, - anon_sym_DOT_DOT, - ACTIONS(7751), 1, - anon_sym_AMP, - ACTIONS(7757), 1, - anon_sym_as, - ACTIONS(7759), 1, - anon_sym_is, - ACTIONS(7761), 1, - anon_sym_CARET, - ACTIONS(7763), 1, - anon_sym_PIPE, - ACTIONS(7767), 1, - anon_sym_AMP_AMP, - ACTIONS(7769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7777), 1, - anon_sym_QMARK, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7737), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7739), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7749), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7755), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(5078), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [133418] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7861), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(5079), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [133530] = 40, + [133029] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640247,74 +639889,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, + ACTIONS(7809), 1, + anon_sym_QMARK, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7769), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7785), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7787), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5870), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(5075), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [133167] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7773), 1, + anon_sym_SLASH, ACTIONS(7777), 1, + anon_sym_GT_GT, + ACTIONS(7779), 1, + anon_sym_DOT_DOT, + ACTIONS(7783), 1, + anon_sym_AMP, + ACTIONS(7789), 1, + anon_sym_as, + ACTIONS(7791), 1, + anon_sym_is, + ACTIONS(7793), 1, + anon_sym_CARET, + ACTIONS(7795), 1, + anon_sym_PIPE, + ACTIONS(7799), 1, + anon_sym_AMP_AMP, + ACTIONS(7801), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7803), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7809), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5238), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5080), 9, + STATE(5076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640324,7 +640064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133668] = 24, + [133305] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640345,30 +640085,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7857), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(5077), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [133417] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640378,7 +640203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5081), 9, + STATE(5078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640388,7 +640213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 17, + ACTIONS(5682), 17, anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, @@ -640406,7 +640231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [133774] = 40, + [133523] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640427,74 +640252,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - ACTIONS(7777), 1, + ACTIONS(7809), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5874), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5082), 9, + STATE(5079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640504,7 +640329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133912] = 40, + [133661] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640525,74 +640350,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7747), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7757), 1, + ACTIONS(7789), 1, anon_sym_as, - ACTIONS(7759), 1, + ACTIONS(7791), 1, anon_sym_is, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - ACTIONS(7777), 1, + ACTIONS(7809), 1, anon_sym_QMARK, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5794), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5083), 9, + STATE(5080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640602,7 +640427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134050] = 22, + [133799] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640623,23 +640448,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7624), 1, + ACTIONS(7486), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -640652,7 +640477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5084), 9, + STATE(5081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640682,7 +640507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [134152] = 42, + [133901] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640703,23 +640528,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -640743,15 +640568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7863), 1, + ACTIONS(7859), 1, anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7011), 1, + STATE(7033), 1, aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -640772,7 +640597,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5085), 9, + STATE(5082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640782,7 +640607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134294] = 14, + [134043] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640803,9 +640628,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7747), 1, anon_sym_and, - STATE(5086), 9, + STATE(5083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640815,7 +640640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640827,7 +640652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 26, + ACTIONS(6199), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -640854,7 +640679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [134380] = 42, + [134129] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640875,23 +640700,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -640915,15 +640738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7865), 1, - anon_sym_RBRACK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6939), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -640944,7 +640763,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5087), 9, + ACTIONS(7861), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640954,7 +640777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134522] = 27, + [134267] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640975,106 +640798,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(7867), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, - anon_sym_and, - anon_sym_or, - STATE(5088), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [134634] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -641098,11 +640838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7863), 1, + anon_sym_RBRACK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + STATE(6830), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -641123,11 +640867,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7869), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5089), 9, + STATE(5085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641137,7 +640877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134772] = 40, + [134409] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641158,21 +640898,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -641196,11 +640936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -641221,11 +640961,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7869), 3, + ACTIONS(7861), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(5090), 9, + STATE(5086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641235,7 +640975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134910] = 40, + [134547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641256,21 +640996,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -641294,11 +641034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -641319,11 +641059,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7871), 3, + ACTIONS(7865), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(5091), 9, + STATE(5087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641333,7 +641073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135048] = 40, + [134685] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641354,21 +641094,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7867), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, + anon_sym_and, + anon_sym_or, + STATE(5088), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [134797] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -641392,11 +641217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -641417,11 +641242,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7873), 3, + ACTIONS(7869), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(5092), 9, + STATE(5089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641431,7 +641256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135186] = 29, + [134935] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641452,49 +641277,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5093), 9, + STATE(5090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641504,7 +641329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -641518,7 +641343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [135302] = 26, + [135051] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641539,35 +641364,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -641576,7 +641401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5094), 9, + STATE(5091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641586,7 +641411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -641602,7 +641427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [135412] = 35, + [135161] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641623,61 +641448,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -641685,7 +641510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5095), 9, + STATE(5092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641695,7 +641520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135540] = 36, + [135289] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641716,70 +641541,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5096), 9, + STATE(5093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641789,7 +641614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135670] = 34, + [135419] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641810,60 +641635,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -641871,7 +641696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5097), 9, + STATE(5094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641881,7 +641706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135796] = 27, + [135545] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641902,45 +641727,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5098), 9, + STATE(5095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641950,7 +641775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -641966,7 +641791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [135908] = 33, + [135657] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641987,57 +641812,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -642047,7 +641872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5099), 9, + STATE(5096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642057,7 +641882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136032] = 37, + [135781] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642078,71 +641903,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5100), 9, + STATE(5097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642152,7 +641977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136164] = 38, + [135913] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642173,72 +641998,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 5, anon_sym_and, anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(5101), 9, + STATE(5098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642248,7 +642073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136298] = 40, + [136047] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642269,74 +642094,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5102), 9, + STATE(5099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642346,7 +642171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136436] = 40, + [136185] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642367,74 +642192,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7787), 1, + ACTIONS(7819), 1, anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + ACTIONS(5866), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5103), 9, + STATE(5100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642444,7 +642269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136574] = 22, + [136323] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642465,26 +642290,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -642494,7 +642319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5104), 9, + STATE(5101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642504,7 +642329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5924), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -642524,7 +642349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [136676] = 40, + [136425] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642545,74 +642370,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7787), 1, + ACTIONS(7819), 1, anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5870), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5105), 9, + STATE(5102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642622,7 +642447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136814] = 40, + [136563] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642643,74 +642468,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7787), 1, + ACTIONS(7819), 1, anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5238), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5106), 9, + STATE(5103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642720,7 +642545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136952] = 40, + [136701] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642741,74 +642566,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7781), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT, - ACTIONS(7787), 1, + ACTIONS(7819), 1, anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, + ACTIONS(7847), 1, anon_sym_as, - ACTIONS(7817), 1, + ACTIONS(7849), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, + ACTIONS(5874), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(5107), 9, + STATE(5104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642818,7 +642643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137090] = 27, + [136839] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642839,38 +642664,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_COMMA, - ACTIONS(7875), 1, - anon_sym_RPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, - sym__variable_designation, - STATE(5270), 1, - sym_positional_pattern_clause, - STATE(5715), 1, - sym_property_pattern_clause, - STATE(6453), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 2, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7813), 1, + anon_sym_DOT_DOT, + ACTIONS(7819), 1, + anon_sym_QMARK, + ACTIONS(7825), 1, + anon_sym_SLASH, + ACTIONS(7827), 1, + anon_sym_CARET, + ACTIONS(7829), 1, + anon_sym_PIPE, + ACTIONS(7831), 1, + anon_sym_AMP, + ACTIONS(7835), 1, + anon_sym_GT_GT, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7845), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7847), 1, + anon_sym_as, + ACTIONS(7849), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7817), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7821), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7823), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7833), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5794), 3, anon_sym_and, anon_sym_or, - STATE(5108), 9, + anon_sym_equals, + STATE(5105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642880,30 +642741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [137202] = 40, + [136977] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642924,21 +642762,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -642962,11 +642800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -642987,11 +642825,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7877), 3, + ACTIONS(7871), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(5109), 9, + STATE(5106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643001,7 +642839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137340] = 27, + [137115] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643024,36 +642862,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7879), 1, + ACTIONS(7873), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5110), 9, + STATE(5107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643063,7 +642901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -643086,7 +642924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [137452] = 40, + [137227] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643107,74 +642945,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7781), 1, - anon_sym_DOT_DOT, - ACTIONS(7787), 1, - anon_sym_QMARK, - ACTIONS(7793), 1, - anon_sym_SLASH, - ACTIONS(7795), 1, - anon_sym_CARET, - ACTIONS(7797), 1, - anon_sym_PIPE, - ACTIONS(7799), 1, - anon_sym_AMP, - ACTIONS(7803), 1, - anon_sym_GT_GT, - ACTIONS(7809), 1, - anon_sym_AMP_AMP, - ACTIONS(7811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7815), 1, - anon_sym_as, - ACTIONS(7817), 1, - anon_sym_is, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7789), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7791), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7805), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7807), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7875), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - anon_sym_equals, - STATE(5111), 9, + STATE(5108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643184,7 +642986,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137590] = 37, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [137339] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643205,71 +643030,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5112), 9, + ACTIONS(7877), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643279,7 +643107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137722] = 38, + [137477] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643300,72 +643128,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6951), 1, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5682), 3, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(5113), 9, + STATE(5110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643375,7 +643205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137856] = 42, + [137615] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643396,76 +643226,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7000), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(7030), 1, anon_sym_is, - ACTIONS(7881), 1, - anon_sym_RBRACK, - STATE(2502), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - STATE(6917), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5114), 9, + ACTIONS(5866), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643475,7 +643303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137998] = 15, + [137753] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643496,302 +643324,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7883), 1, - anon_sym_into, - STATE(5116), 1, - aux_sym__query_body_repeat2, - STATE(5115), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6038), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(6036), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, + ACTIONS(4160), 1, anon_sym_DASH_GT, - anon_sym_with, - [138086] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7883), 1, - anon_sym_into, - STATE(5118), 1, - aux_sym__query_body_repeat2, - STATE(5116), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(5636), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(6423), 1, anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, + ACTIONS(6437), 1, anon_sym_with, - [138174] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7883), 1, - anon_sym_into, - STATE(5119), 1, - aux_sym__query_body_repeat2, - STATE(5117), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [138262] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7885), 1, - anon_sym_into, - STATE(5118), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6046), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [138348] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7883), 1, - anon_sym_into, - STATE(5118), 1, - aux_sym__query_body_repeat2, - STATE(5119), 9, + STATE(5112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643801,23 +643367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5682), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -643827,19 +643377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [138436] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [137859] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643860,11 +643406,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, ACTIONS(6631), 1, anon_sym_LBRACK, @@ -643874,158 +643420,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6837), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7000), 1, anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(6975), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(6991), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, + ACTIONS(7030), 1, anon_sym_is, - STATE(3207), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(4640), 1, sym_argument_list, ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5794), 3, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - STATE(5120), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [138574] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7888), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5121), 9, + STATE(5113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644035,7 +643483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138712] = 15, + [137997] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644056,11 +643504,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_into, - STATE(5123), 1, - aux_sym__query_body_repeat2, - STATE(5122), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7648), 1, + anon_sym_COMMA, + ACTIONS(7879), 1, + anon_sym_RPAREN, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + STATE(6821), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644070,23 +643583,70 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + [138139] = 22, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(7022), 1, + anon_sym_DOT_DOT, + STATE(3255), 1, + sym_bracketed_argument_list, + STATE(4640), 1, + sym_argument_list, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6036), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5115), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 19, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -644097,18 +643657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [138800] = 15, + [138241] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644129,11 +643684,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7881), 1, anon_sym_into, - STATE(5125), 1, + STATE(5117), 1, aux_sym__query_body_repeat2, - STATE(5123), 9, + STATE(5116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644143,7 +643698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644155,7 +643710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6008), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644176,12 +643731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [138888] = 15, + [138329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644202,11 +643757,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7881), 1, anon_sym_into, - STATE(5126), 1, + STATE(5119), 1, aux_sym__query_body_repeat2, - STATE(5124), 9, + STATE(5117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644216,7 +643771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644228,7 +643783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644249,12 +643804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [138976] = 14, + [138417] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644275,9 +643830,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7892), 1, + ACTIONS(7881), 1, anon_sym_into, - STATE(5125), 10, + STATE(5120), 1, + aux_sym__query_body_repeat2, + STATE(5118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644287,8 +643844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644300,7 +643856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644321,12 +643877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139062] = 15, + [138505] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644347,11 +643903,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7883), 1, anon_sym_into, - STATE(5125), 1, - aux_sym__query_body_repeat2, - STATE(5126), 9, + STATE(5119), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644361,7 +643915,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644373,7 +643928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 25, + ACTIONS(6018), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644394,12 +643949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139150] = 42, + [138591] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644420,86 +643975,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7881), 1, + anon_sym_into, + STATE(5119), 1, + aux_sym__query_body_repeat2, + STATE(5120), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7295), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7608), 1, - anon_sym_COMMA, - ACTIONS(7895), 1, - anon_sym_RPAREN, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - STATE(7077), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6025), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5127), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [139292] = 15, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138679] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644520,11 +644048,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7897), 1, + ACTIONS(7886), 1, anon_sym_into, - STATE(5129), 1, + STATE(5122), 1, aux_sym__query_body_repeat2, - STATE(5128), 9, + STATE(5121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644534,7 +644062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644546,7 +644074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 25, + ACTIONS(6008), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644567,12 +644095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139380] = 15, + [138767] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644593,11 +644121,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7897), 1, + ACTIONS(7886), 1, anon_sym_into, - STATE(5131), 1, + STATE(5124), 1, aux_sym__query_body_repeat2, - STATE(5129), 9, + STATE(5122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644607,7 +644135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644619,7 +644147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644640,12 +644168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139468] = 15, + [138855] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644666,11 +644194,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7897), 1, + ACTIONS(7886), 1, anon_sym_into, - STATE(5132), 1, + STATE(5125), 1, aux_sym__query_body_repeat2, - STATE(5130), 9, + STATE(5123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644680,7 +644208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644692,7 +644220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644713,12 +644241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139556] = 14, + [138943] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644739,9 +644267,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7899), 1, + ACTIONS(7888), 1, anon_sym_into, - STATE(5131), 10, + STATE(5124), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644752,7 +644280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644764,7 +644292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 25, + ACTIONS(6018), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644785,12 +644313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139642] = 15, + [139029] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644811,11 +644339,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7897), 1, + ACTIONS(7886), 1, anon_sym_into, - STATE(5131), 1, + STATE(5124), 1, aux_sym__query_body_repeat2, - STATE(5132), 9, + STATE(5125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644825,7 +644353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644837,7 +644365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 25, + ACTIONS(6025), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644858,12 +644386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139730] = 15, + [139117] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644884,11 +644412,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7902), 1, + ACTIONS(7891), 1, anon_sym_into, - STATE(5134), 1, + STATE(5127), 1, aux_sym__query_body_repeat2, - STATE(5133), 9, + STATE(5126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644898,7 +644426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644910,7 +644438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 25, + ACTIONS(6008), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644924,7 +644452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -644932,11 +644459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139818] = 15, + [139205] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644957,11 +644485,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7902), 1, + ACTIONS(7891), 1, anon_sym_into, - STATE(5136), 1, + STATE(5129), 1, aux_sym__query_body_repeat2, - STATE(5134), 9, + STATE(5127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644971,7 +644499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644983,7 +644511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644997,7 +644525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -645005,11 +644532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139906] = 15, + [139293] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645030,11 +644558,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7902), 1, + ACTIONS(7891), 1, anon_sym_into, - STATE(5137), 1, + STATE(5130), 1, aux_sym__query_body_repeat2, - STATE(5135), 9, + STATE(5128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645044,7 +644572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645056,7 +644584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 25, + ACTIONS(6014), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645070,7 +644598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -645078,11 +644605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139994] = 14, + [139381] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645103,9 +644631,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7893), 1, anon_sym_into, - STATE(5136), 10, + STATE(5129), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645116,7 +644644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645128,7 +644656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 25, + ACTIONS(6018), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645142,7 +644670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -645150,11 +644677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [140080] = 15, + [139467] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645175,11 +644703,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7902), 1, + ACTIONS(7891), 1, anon_sym_into, - STATE(5136), 1, + STATE(5129), 1, aux_sym__query_body_repeat2, - STATE(5137), 9, + STATE(5130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645189,7 +644717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645201,7 +644729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 25, + ACTIONS(6025), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645215,7 +644743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_and, @@ -645223,11 +644750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [140168] = 42, + [139555] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645248,21 +644776,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -645286,17 +644814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7608), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(7907), 1, + ACTIONS(7896), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(6870), 1, + STATE(7093), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -645317,7 +644845,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5138), 9, + STATE(5131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645327,7 +644855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140310] = 42, + [139697] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645348,21 +644876,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -645386,17 +644914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7608), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(7909), 1, + ACTIONS(7898), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - STATE(7103), 1, + STATE(7098), 1, aux_sym__for_statement_conditions_repeat1, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -645417,7 +644945,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5139), 9, + STATE(5132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645427,7 +644955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140452] = 22, + [139839] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645448,36 +644976,302 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(7900), 1, + anon_sym_into, + STATE(5134), 1, + aux_sym__query_body_repeat2, + STATE(5133), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4521), 1, - anon_sym_DASH_GT, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(6008), 25, anon_sym_LBRACK, - ACTIONS(6635), 1, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139927] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7900), 1, + anon_sym_into, + STATE(5136), 1, + aux_sym__query_body_repeat2, + STATE(5134), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6987), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, anon_sym_DOT_DOT, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(4638), 1, - sym_argument_list, - ACTIONS(6637), 2, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [140015] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7900), 1, + anon_sym_into, + STATE(5137), 1, + aux_sym__query_body_repeat2, + STATE(5135), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [140103] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7902), 1, + anon_sym_into, + STATE(5136), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5140), 9, + anon_sym_DOT, + ACTIONS(6018), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [140189] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7900), 1, + anon_sym_into, + STATE(5136), 1, + aux_sym__query_body_repeat2, + STATE(5137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645487,10 +645281,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 19, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6025), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -645500,14 +645307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [140554] = 27, + [140277] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645530,36 +645342,36 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7532), 1, anon_sym_COMMA, - ACTIONS(7911), 1, + ACTIONS(7905), 1, anon_sym_RPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5270), 1, + STATE(5228), 1, sym_positional_pattern_clause, - STATE(5715), 1, + STATE(5741), 1, sym_property_pattern_clause, - STATE(6453), 1, + STATE(6493), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - STATE(5141), 9, + STATE(5138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645569,7 +645381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -645592,7 +645404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [140666] = 29, + [140389] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645613,49 +645425,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - STATE(2827), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5142), 9, + STATE(5139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645665,7 +645477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -645679,7 +645491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [140782] = 26, + [140505] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645700,35 +645512,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - STATE(2827), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645737,7 +645549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5143), 9, + STATE(5140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645747,7 +645559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -645763,7 +645575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [140892] = 35, + [140615] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645784,61 +645596,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7853), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -645846,7 +645658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5144), 9, + STATE(5141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645856,7 +645668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141020] = 36, + [140743] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645877,70 +645689,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7853), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5145), 9, + STATE(5142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645950,7 +645762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141150] = 34, + [140873] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645971,60 +645783,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7853), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_and, anon_sym_or, @@ -646032,7 +645844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5146), 9, + STATE(5143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646042,7 +645854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141276] = 27, + [140999] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646063,45 +645875,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - STATE(2827), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5147), 9, + STATE(5144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646111,7 +645923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -646127,7 +645939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [141388] = 33, + [141111] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646148,57 +645960,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7853), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 9, + ACTIONS(5682), 9, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -646208,7 +646020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5148), 9, + STATE(5145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646218,7 +646030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141512] = 37, + [141235] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646239,70 +646051,362 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7498), 1, + anon_sym_CARET, + ACTIONS(7500), 1, + anon_sym_PIPE, + ACTIONS(7502), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_GT_GT, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7520), 1, + anon_sym_as, + ACTIONS(7522), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 6, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5146), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [141367] = 38, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7498), 1, + anon_sym_CARET, + ACTIONS(7500), 1, + anon_sym_PIPE, + ACTIONS(7502), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_GT_GT, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, + anon_sym_AMP_AMP, + ACTIONS(7520), 1, + anon_sym_as, + ACTIONS(7522), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5147), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [141501] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5370), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7498), 1, + anon_sym_CARET, + ACTIONS(7500), 1, + anon_sym_PIPE, + ACTIONS(7502), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_GT_GT, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, + anon_sym_AMP_AMP, + ACTIONS(7516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7520), 1, + anon_sym_as, + ACTIONS(7522), 1, + anon_sym_is, + STATE(2724), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(5148), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [141639] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7835), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7853), 1, - anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2827), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, + ACTIONS(7907), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, STATE(5149), 9, sym_preproc_region, sym_preproc_endregion, @@ -646313,7 +646417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141644] = 38, + [141777] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646334,71 +646438,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(7833), 1, - anon_sym_CARET, - ACTIONS(7835), 1, - anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, - anon_sym_AMP_AMP, - ACTIONS(7853), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2827), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_and, - anon_sym_or, + ACTIONS(5682), 7, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, STATE(5150), 9, sym_preproc_region, sym_preproc_endregion, @@ -646409,7 +646510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141778] = 40, + [141905] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646430,70 +646531,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7831), 1, + ACTIONS(7490), 1, + anon_sym_QMARK, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7835), 1, + ACTIONS(7500), 1, anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, anon_sym_AMP_AMP, - ACTIONS(7849), 1, + ACTIONS(7516), 1, anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, + ACTIONS(7518), 1, anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5866), 3, anon_sym_and, anon_sym_or, anon_sym_on, @@ -646507,7 +646608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141916] = 15, + [142043] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646528,7 +646629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7480), 1, + ACTIONS(7909), 1, anon_sym_into, STATE(5154), 1, aux_sym__query_body_repeat2, @@ -646542,7 +646643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 12, + ACTIONS(6010), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -646555,7 +646656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 24, + ACTIONS(6008), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -646580,7 +646681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [142004] = 40, + [142131] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646601,84 +646702,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7819), 1, + ACTIONS(7512), 1, anon_sym_DOT_DOT, - ACTIONS(7825), 1, - anon_sym_QMARK, - ACTIONS(7831), 1, - anon_sym_SLASH, - ACTIONS(7833), 1, - anon_sym_CARET, - ACTIONS(7835), 1, - anon_sym_PIPE, - ACTIONS(7837), 1, - anon_sym_AMP, - ACTIONS(7841), 1, - anon_sym_GT_GT, - ACTIONS(7847), 1, - anon_sym_AMP_AMP, - ACTIONS(7849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, - anon_sym_as, - ACTIONS(7855), 1, - anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5153), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5769), 3, + anon_sym_switch, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5153), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [142142] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [142233] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646699,7 +646782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7480), 1, + ACTIONS(7909), 1, anon_sym_into, STATE(5157), 1, aux_sym__query_body_repeat2, @@ -646713,7 +646796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 12, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -646726,7 +646809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 24, + ACTIONS(6014), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -646751,7 +646834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [142230] = 15, + [142321] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646772,9 +646855,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7480), 1, + ACTIONS(7909), 1, anon_sym_into, - STATE(4889), 1, + STATE(5158), 1, aux_sym__query_body_repeat2, STATE(5155), 9, sym_preproc_region, @@ -646786,7 +646869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 12, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -646799,7 +646882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 24, + ACTIONS(6014), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -646824,7 +646907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [142318] = 22, + [142409] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646845,66 +646928,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(7819), 1, + ACTIONS(6503), 1, + anon_sym_switch, + ACTIONS(6507), 1, + anon_sym_with, + ACTIONS(7490), 1, + anon_sym_QMARK, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7498), 1, + anon_sym_CARET, + ACTIONS(7500), 1, + anon_sym_PIPE, + ACTIONS(7502), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_GT_GT, + ACTIONS(7512), 1, anon_sym_DOT_DOT, - STATE(2827), 1, + ACTIONS(7514), 1, + anon_sym_AMP_AMP, + ACTIONS(7516), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7518), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7520), 1, + anon_sym_as, + ACTIONS(7522), 1, + anon_sym_is, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5156), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5870), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [142420] = 14, + STATE(5156), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [142547] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646925,7 +647026,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7911), 1, anon_sym_into, STATE(5157), 10, sym_preproc_region, @@ -646938,7 +647039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 12, + ACTIONS(6020), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -646951,7 +647052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 24, + ACTIONS(6018), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -646976,7 +647077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [142506] = 40, + [142633] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646997,84 +647098,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7825), 1, + ACTIONS(7909), 1, + anon_sym_into, + STATE(5157), 1, + aux_sym__query_body_repeat2, + STATE(5158), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6027), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(7831), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7833), 1, - anon_sym_CARET, - ACTIONS(7835), 1, anon_sym_PIPE, - ACTIONS(7837), 1, anon_sym_AMP, - ACTIONS(7841), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, - anon_sym_AMP_AMP, - ACTIONS(7849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, - anon_sym_as, - ACTIONS(7855), 1, - anon_sym_is, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6025), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7829), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(5158), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [142644] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [142721] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647095,70 +647171,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7825), 1, + ACTIONS(7490), 1, anon_sym_QMARK, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7835), 1, + ACTIONS(7500), 1, anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, anon_sym_AMP_AMP, - ACTIONS(7849), 1, + ACTIONS(7516), 1, anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, + ACTIONS(7518), 1, anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5172), 3, + ACTIONS(5238), 3, anon_sym_and, anon_sym_or, anon_sym_on, @@ -647172,7 +647248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142782] = 40, + [142859] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647193,84 +647269,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7825), 1, + ACTIONS(7596), 1, + anon_sym_into, + STATE(4929), 1, + aux_sym__query_body_repeat2, + STATE(5160), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7831), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7833), 1, - anon_sym_CARET, - ACTIONS(7835), 1, anon_sym_PIPE, - ACTIONS(7837), 1, anon_sym_AMP, - ACTIONS(7841), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, - anon_sym_AMP_AMP, - ACTIONS(7849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, - anon_sym_as, - ACTIONS(7855), 1, - anon_sym_is, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6008), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7827), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7829), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5783), 3, - anon_sym_and, - anon_sym_or, - anon_sym_on, - STATE(5160), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [142920] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [142947] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647291,70 +647342,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6539), 1, + ACTIONS(6503), 1, anon_sym_switch, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_with, - ACTIONS(7819), 1, - anon_sym_DOT_DOT, - ACTIONS(7825), 1, + ACTIONS(7490), 1, anon_sym_QMARK, - ACTIONS(7831), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7833), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7835), 1, + ACTIONS(7500), 1, anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, + ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7514), 1, anon_sym_AMP_AMP, - ACTIONS(7849), 1, + ACTIONS(7516), 1, anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, + ACTIONS(7518), 1, anon_sym_QMARK_QMARK, - ACTIONS(7853), 1, + ACTIONS(7520), 1, anon_sym_as, - ACTIONS(7855), 1, + ACTIONS(7522), 1, anon_sym_is, - STATE(2827), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5909), 3, + ACTIONS(5874), 3, anon_sym_and, anon_sym_or, anon_sym_on, @@ -647368,7 +647419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143058] = 38, + [143085] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647389,71 +647440,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_switch, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(6553), 1, - anon_sym_with, - ACTIONS(7503), 1, - anon_sym_SLASH, - ACTIONS(7507), 1, - anon_sym_GT_GT, - ACTIONS(7509), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_AMP, - ACTIONS(7519), 1, - anon_sym_is, - ACTIONS(7521), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_PIPE, - ACTIONS(7525), 1, - anon_sym_AMP_AMP, - STATE(2827), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7499), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7501), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7505), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7511), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7515), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7517), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_EQ_GT, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7914), 1, + anon_sym_RPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(5228), 1, + sym_positional_pattern_clause, + STATE(5741), 1, + sym_property_pattern_clause, + STATE(6493), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 2, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5162), 9, sym_preproc_region, sym_preproc_endregion, @@ -647464,7 +647481,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143192] = 40, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [143197] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647485,72 +647525,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(7922), 1, - anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7926), 1, - anon_sym_PIPE, - ACTIONS(7928), 1, - anon_sym_AMP, - ACTIONS(7932), 1, - anon_sym_GT_GT, - ACTIONS(7938), 1, - anon_sym_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7916), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7918), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7920), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7930), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7936), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(7920), 1, + sym_integer_literal, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6663), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6548), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, STATE(5163), 9, sym_preproc_region, sym_preproc_endregion, @@ -647561,7 +647559,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143329] = 14, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [143296] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647582,11 +647603,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6672), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, STATE(5164), 9, sym_preproc_region, sym_preproc_endregion, @@ -647597,42 +647637,127 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5202), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [143395] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(7301), 1, anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5200), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [143414] = 40, + ACTIONS(7936), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5165), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [143532] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647653,73 +647778,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7952), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7958), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7960), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7962), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7964), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7976), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7978), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5777), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5165), 9, + ACTIONS(7938), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647729,7 +647854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143551] = 14, + [143669] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647750,9 +647875,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_SEMI, - STATE(5166), 9, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(3554), 1, + sym__variable_designation, + STATE(5745), 1, + sym_property_pattern_clause, + ACTIONS(3929), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3927), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647762,45 +647911,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5015), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [143636] = 21, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [143772] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647821,31 +647955,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(7988), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(7990), 1, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, sym_integer_literal, - STATE(2182), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6630), 1, + STATE(6568), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6524), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5167), 9, + STATE(5168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647855,7 +647989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -647878,7 +648012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [143735] = 21, + [143871] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647899,31 +648033,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(4028), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7988), 1, - anon_sym_BANG, - ACTIONS(7990), 1, - sym_integer_literal, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6597), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6524), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5168), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647933,17 +648054,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4026), 28, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -647956,7 +648082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [143834] = 40, + sym__identifier_token, + [143956] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647977,21 +648104,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -648015,11 +648142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -648040,44 +648167,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7992), 2, + ACTIONS(7942), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5169), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [143971] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7994), 1, - anon_sym_and, - ACTIONS(7996), 1, - anon_sym_or, STATE(5170), 9, sym_preproc_region, sym_preproc_endregion, @@ -648088,44 +648180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [144058] = 21, + [144093] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648146,24 +648201,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7920), 1, sym_integer_literal, - STATE(6498), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6545), 1, + STATE(6613), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6548), 6, sym_character_literal, sym_boolean_literal, sym_identifier, @@ -648180,7 +648235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -648203,7 +648258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [144157] = 40, + [144192] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648224,21 +648279,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -648262,11 +648317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -648287,9 +648342,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8012), 2, + ACTIONS(7693), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(5172), 9, sym_preproc_region, sym_preproc_endregion, @@ -648300,7 +648355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144294] = 40, + [144329] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648321,21 +648376,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -648359,11 +648414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -648384,9 +648439,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8014), 2, + ACTIONS(7695), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(5173), 9, sym_preproc_region, sym_preproc_endregion, @@ -648397,7 +648452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144431] = 21, + [144466] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648418,24 +648473,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6566), 1, + STATE(6627), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, @@ -648452,7 +648507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -648475,7 +648530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [144530] = 40, + [144565] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648496,70 +648551,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5694), 2, + ACTIONS(5878), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5175), 9, @@ -648572,87 +648627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144667] = 23, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3504), 1, - sym__variable_designation, - STATE(5716), 1, - sym_property_pattern_clause, - ACTIONS(3935), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3933), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5176), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [144770] = 40, + [144702] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648673,21 +648648,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -648711,11 +648686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -648736,9 +648711,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7657), 2, + ACTIONS(7980), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(5176), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144839] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7982), 1, + anon_sym_and, STATE(5177), 9, sym_preproc_region, sym_preproc_endregion, @@ -648749,7 +648757,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144907] = 40, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [144924] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648770,73 +648816,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6625), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5178), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [145023] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6523), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(6527), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(6543), 1, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(6545), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7888), 2, + ACTIONS(7984), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5178), 9, + anon_sym_RPAREN, + STATE(5179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648846,7 +648970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145044] = 40, + [145160] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648867,73 +648991,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5736), 2, + ACTIONS(5886), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5179), 9, + STATE(5180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648943,7 +649067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145181] = 15, + [145297] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648964,11 +649088,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8052), 1, + ACTIONS(7986), 1, anon_sym_and, - ACTIONS(8054), 1, - anon_sym_or, - STATE(5180), 9, + STATE(5181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648978,7 +649100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -648990,7 +649112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 24, + ACTIONS(6199), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -649006,16 +649128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [145268] = 40, + [145382] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649036,21 +649159,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -649074,11 +649197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -649099,10 +649222,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7663), 2, + ACTIONS(7988), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5181), 9, + anon_sym_RPAREN, + STATE(5182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649112,7 +649235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145405] = 40, + [145519] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649133,73 +649256,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5909), 2, + ACTIONS(5794), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5182), 9, + STATE(5183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649209,7 +649332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145542] = 22, + [145656] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649230,23 +649353,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -649259,7 +649382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5183), 9, + STATE(5184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649288,7 +649411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [145643] = 14, + [145757] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649309,9 +649432,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8056), 1, + ACTIONS(7990), 1, anon_sym_and, - STATE(5184), 9, + STATE(5185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649321,7 +649444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -649333,7 +649456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 25, + ACTIONS(6199), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -649359,7 +649482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [145728] = 40, + [145842] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649380,73 +649503,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7952), 1, - anon_sym_QMARK, - ACTIONS(7958), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7976), 1, - anon_sym_AMP_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5172), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5185), 9, + ACTIONS(5682), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649456,7 +649574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145865] = 15, + [145969] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649477,24 +649595,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8056), 1, - anon_sym_and, - ACTIONS(8058), 1, - anon_sym_or, - STATE(5186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(4110), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_STAR, + ACTIONS(5473), 1, + anon_sym_QMARK, + ACTIONS(8016), 1, + anon_sym_DOT, + ACTIONS(4022), 9, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -649502,13 +649613,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 24, - anon_sym_LBRACK, + STATE(5187), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4024), 24, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -649519,16 +649639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [145952] = 14, + [146060] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649549,9 +649669,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8060), 1, + ACTIONS(7990), 1, anon_sym_and, - STATE(5187), 9, + ACTIONS(8018), 1, + anon_sym_or, + STATE(5188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649561,7 +649683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -649573,7 +649695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 25, + ACTIONS(5480), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -649589,17 +649711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [146037] = 40, + [146147] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649620,73 +649741,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(8022), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(8032), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(8046), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(8048), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(8050), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(5874), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8012), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5188), 9, + STATE(5189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649696,7 +649817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146174] = 22, + [146284] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649717,36 +649838,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5189), 9, + ACTIONS(8054), 1, + anon_sym_and, + STATE(5190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649756,7 +649850,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -649768,14 +649878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [146275] = 14, + [146369] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649796,35 +649909,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7994), 1, - anon_sym_and, - STATE(5190), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5191), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -649836,17 +649960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [146360] = 40, + [146470] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649867,73 +649988,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(7976), 1, + anon_sym_as, + ACTIONS(7978), 1, anon_sym_is, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5866), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8062), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5191), 9, + STATE(5192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649943,7 +650064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146497] = 40, + [146607] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649964,73 +650085,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7952), 1, - anon_sym_QMARK, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, - anon_sym_AMP, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - ACTIONS(7976), 1, - anon_sym_AMP_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5783), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7970), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7972), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5192), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6655), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650040,7 +650119,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146634] = 24, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [146706] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650061,30 +650163,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(7938), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -650094,7 +650192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5193), 9, + STATE(5194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650104,7 +650202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5924), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -650114,14 +650212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, + anon_sym_on, anon_sym_as, anon_sym_is, - [146739] = 40, + anon_sym_with, + [146807] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650142,132 +650242,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5870), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5194), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [146876] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(8040), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, STATE(5195), 9, sym_preproc_region, sym_preproc_endregion, @@ -650278,26 +650318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [146977] = 40, + [146944] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650318,70 +650339,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8014), 2, + ACTIONS(7984), 2, anon_sym_SEMI, anon_sym_COMMA, STATE(5196), 9, @@ -650394,7 +650415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147114] = 22, + [147081] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650415,23 +650436,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -650473,7 +650494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [147215] = 40, + [147182] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650494,70 +650515,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5777), 2, + ACTIONS(5238), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5198), 9, @@ -650570,7 +650591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147352] = 14, + [147319] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650591,57 +650612,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8052), 1, - anon_sym_and, - STATE(5199), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(7998), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8000), 1, anon_sym_AMP, + ACTIONS(8004), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8010), 1, + anon_sym_DOT_DOT, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7992), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7994), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(5682), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [147437] = 40, + anon_sym_into, + anon_sym_by, + STATE(5199), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147448] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650662,70 +650705,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(7946), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5172), 2, + ACTIONS(5874), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5200), 9, @@ -650738,7 +650781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147574] = 40, + [147585] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650759,72 +650802,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8018), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, anon_sym_QMARK, - ACTIONS(8024), 1, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7632), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7634), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7636), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, - anon_sym_as, - ACTIONS(8050), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5783), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7988), 2, + anon_sym_SEMI, + anon_sym_COMMA, STATE(5201), 9, sym_preproc_region, sym_preproc_endregion, @@ -650835,7 +650878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147711] = 15, + [147722] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650856,58 +650899,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8060), 1, - anon_sym_and, - ACTIONS(8064), 1, - anon_sym_or, - STATE(5202), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_QMARK, + ACTIONS(7614), 1, anon_sym_SLASH, + ACTIONS(7616), 1, + anon_sym_CARET, + ACTIONS(7618), 1, anon_sym_PIPE, + ACTIONS(7620), 1, anon_sym_AMP, + ACTIONS(7624), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7630), 1, + anon_sym_DOT_DOT, + ACTIONS(7632), 1, + anon_sym_AMP_AMP, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7610), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [147798] = 29, + ACTIONS(7936), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5202), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147859] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650928,43 +650996,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(8034), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8020), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -650980,20 +651048,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(5682), 12, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, anon_sym_as, anon_sym_is, - [147913] = 26, + [147974] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651014,43 +651082,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8040), 1, + ACTIONS(7962), 1, + anon_sym_GT_GT, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8022), 2, + ACTIONS(7948), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7960), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, STATE(5204), 9, sym_preproc_region, sym_preproc_endregion, @@ -651061,10 +651134,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 12, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -651076,7 +651147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [148022] = 24, + [148089] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651097,36 +651168,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8040), 1, + ACTIONS(7952), 1, + anon_sym_SLASH, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(7950), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, @@ -651140,9 +651215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -651157,7 +651230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [148127] = 15, + [148198] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651178,9 +651251,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8066), 1, + ACTIONS(8058), 1, anon_sym_and, - ACTIONS(8068), 1, + ACTIONS(8060), 1, anon_sym_or, STATE(5206), 9, sym_preproc_region, @@ -651192,7 +651265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -651204,7 +651277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 24, + ACTIONS(6171), 24, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -651229,7 +651302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [148214] = 35, + [148285] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651250,78 +651323,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, - anon_sym_SLASH, - ACTIONS(8030), 1, - anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8048), 1, - anon_sym_as, - ACTIONS(8050), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8016), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5207), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 16, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(5207), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148341] = 36, + anon_sym_as, + anon_sym_is, + [148390] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651342,63 +651404,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, - anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 6, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -651414,7 +651475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148470] = 40, + [148517] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651435,255 +651496,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6620), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6659), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6837), 1, - anon_sym_as, - ACTIONS(6965), 1, - anon_sym_QMARK, - ACTIONS(6971), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(6973), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(6975), 1, - anon_sym_PIPE, - ACTIONS(6977), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(6987), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(6989), 1, - anon_sym_AMP_AMP, - ACTIONS(6991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6993), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6995), 1, + ACTIONS(7976), 1, + anon_sym_as, + ACTIONS(7978), 1, anon_sym_is, - STATE(3207), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6967), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6969), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6979), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6983), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6985), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8070), 2, - sym_interpolation_close_brace, - anon_sym_COLON, - STATE(5209), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148607] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(5682), 5, anon_sym_AMP_AMP, - ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8072), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5210), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148744] = 18, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, - anon_sym_DOT, - ACTIONS(4058), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5211), 9, + anon_sym_into, + anon_sym_on, + STATE(5209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4056), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [148837] = 41, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [148646] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651704,74 +651589,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(6615), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6659), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6793), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(7000), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7006), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7008), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7010), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7016), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7022), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7024), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7026), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7028), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(7030), 1, anon_sym_is, - ACTIONS(7888), 1, - anon_sym_COMMA, - ACTIONS(8076), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(6998), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7004), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7014), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7018), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7020), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5212), 9, + ACTIONS(8062), 2, + sym_interpolation_close_brace, + anon_sym_COLON, + STATE(5210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651781,7 +651665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148976] = 34, + [148783] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651802,122 +651686,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 6, + ACTIONS(5682), 6, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(5213), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [149101] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6605), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5214), 9, + STATE(5211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651927,30 +651756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [149200] = 35, + [148908] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651971,68 +651777,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7928), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7916), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5215), 9, + ACTIONS(8064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652042,7 +651853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149327] = 40, + [149045] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652063,21 +651874,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -652101,11 +651912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7877), 1, + anon_sym_COMMA, + ACTIONS(8066), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -652126,10 +651941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8078), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5216), 9, + STATE(5213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652139,7 +651951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149464] = 21, + [149184] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652160,31 +651972,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6672), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5217), 9, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8028), 1, + anon_sym_SLASH, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8026), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652194,30 +652019,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5682), 14, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [149563] = 21, + anon_sym_as, + anon_sym_is, + [149293] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652238,31 +652055,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6676), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5218), 9, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8068), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652272,30 +652131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [149662] = 29, + [149430] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652316,49 +652152,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(5219), 9, + anon_sym_GT_GT, + STATE(5216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652368,8 +652195,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(5682), 16, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -652381,7 +652212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [149777] = 26, + [149535] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652402,44 +652233,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7958), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7956), 2, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5220), 9, + STATE(5217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652449,7 +652281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -652464,7 +652296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [149886] = 24, + [149646] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652485,40 +652317,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(7986), 1, + anon_sym_and, + ACTIONS(8070), 1, + anon_sym_or, + STATE(5218), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5221), 9, + anon_sym_DOT, + ACTIONS(5480), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [149733] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7982), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_or, + STATE(5219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652528,7 +652403,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5480), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -652538,14 +652429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, + anon_sym_by, anon_sym_as, anon_sym_is, - [149991] = 21, + anon_sym_DASH_GT, + anon_sym_with, + [149820] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652566,31 +652461,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6533), 1, + STATE(6687), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5222), 9, + STATE(5220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652600,7 +652495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -652623,7 +652518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [150090] = 27, + [149919] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652644,45 +652539,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6639), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5221), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [150018] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6761), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5223), 9, + ACTIONS(8074), 1, + anon_sym_DOT, + ACTIONS(4024), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652692,22 +652644,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(4022), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - [150201] = 40, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [150111] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652728,21 +652692,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -652766,11 +652730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -652791,10 +652755,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8080), 2, + ACTIONS(8076), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5224), 9, + STATE(5223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652804,7 +652768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150338] = 27, + [150248] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652825,45 +652789,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5225), 9, + STATE(5224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652873,7 +652837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(5682), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -652888,7 +652852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [150449] = 40, + [150359] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652909,73 +652873,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(7976), 1, + anon_sym_as, + ACTIONS(7978), 1, anon_sym_is, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8082), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5226), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 8, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, + STATE(5225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652985,7 +652942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150586] = 41, + [150482] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653006,74 +652963,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(7976), 1, + anon_sym_as, + ACTIONS(7978), 1, anon_sym_is, - ACTIONS(7888), 1, - anon_sym_COMMA, - ACTIONS(8084), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5227), 9, + ACTIONS(5682), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, + STATE(5226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653083,7 +653036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150725] = 21, + [150613] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653104,31 +653057,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6684), 1, + STATE(6621), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5228), 9, + STATE(5227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653138,7 +653091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -653161,7 +653114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [150824] = 21, + [150712] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653182,31 +653135,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(7988), 1, - anon_sym_BANG, - ACTIONS(7990), 1, - sym_integer_literal, - STATE(2182), 1, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, sym__reserved_identifier, - STATE(6595), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6524), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3533), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5229), 9, + STATE(5719), 1, + sym_property_pattern_clause, + ACTIONS(3933), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3931), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653216,7 +653171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -653239,7 +653194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [150923] = 33, + [150815] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653260,66 +653215,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8034), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8048), 1, - anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2455), 1, + ACTIONS(7877), 1, + anon_sym_COMMA, + ACTIONS(8078), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8016), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 8, - anon_sym_CARET, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5230), 9, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653329,7 +653292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151046] = 40, + [150954] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653350,108 +653313,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7952), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7958), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7960), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7962), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7964), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7976), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7978), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5694), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5231), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151183] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7994), 1, - anon_sym_and, - ACTIONS(7996), 1, - anon_sym_or, - STATE(5232), 9, + ACTIONS(8080), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653461,44 +653389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [151270] = 41, + [151091] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653519,74 +653410,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5769), 1, + ACTIONS(5866), 1, anon_sym_into, - ACTIONS(5771), 1, + ACTIONS(5868), 1, anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5233), 9, + STATE(5231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653596,7 +653487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151409] = 22, + [151230] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653617,26 +653508,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(5234), 9, + STATE(5232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653646,7 +653537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 10, + ACTIONS(5926), 10, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -653657,7 +653548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5684), 17, + ACTIONS(5924), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -653675,7 +653566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [151510] = 41, + [151331] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653696,74 +653587,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5777), 1, + ACTIONS(5870), 1, anon_sym_into, - ACTIONS(5779), 1, + ACTIONS(5872), 1, anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5235), 9, + STATE(5233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653773,7 +653664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151649] = 17, + [151470] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653794,25 +653685,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4125), 1, - anon_sym_LBRACK, - ACTIONS(4131), 1, - anon_sym_STAR, - ACTIONS(5392), 1, - anon_sym_QMARK, - ACTIONS(8120), 1, - anon_sym_DOT, - ACTIONS(4056), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5236), 9, + ACTIONS(8116), 1, + anon_sym_SEMI, + STATE(5234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653822,12 +653697,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4058), 24, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5153), 25, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -653838,8 +653725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -653847,7 +653732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [151740] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [151555] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653868,73 +653756,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8124), 1, - anon_sym_QMARK, - ACTIONS(8130), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8134), 1, - anon_sym_PIPE, - ACTIONS(8136), 1, - anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, - anon_sym_AMP_AMP, - ACTIONS(8150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, + ACTIONS(8012), 1, anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8014), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5237), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653944,7 +653826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151877] = 41, + [151680] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653965,74 +653847,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5172), 1, + ACTIONS(5238), 1, anon_sym_into, - ACTIONS(5174), 1, + ACTIONS(5240), 1, anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5238), 9, + STATE(5236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654042,7 +653924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152016] = 36, + [151819] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654063,79 +653945,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7928), 1, - anon_sym_AMP, - ACTIONS(7932), 1, - anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7916), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5237), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 14, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(5239), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [152145] = 34, + anon_sym_as, + anon_sym_is, + [151930] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654156,67 +654029,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7932), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7946), 1, + ACTIONS(8012), 1, anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(8014), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 6, + ACTIONS(5682), 8, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(5240), 9, + STATE(5238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654226,7 +654098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152270] = 41, + [152053] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654247,74 +654119,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5783), 1, + ACTIONS(5874), 1, anon_sym_into, - ACTIONS(5785), 1, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5241), 9, + STATE(5239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654324,7 +654196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152409] = 37, + [152192] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654345,70 +654217,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(8120), 1, + anon_sym_QMARK, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8048), 1, + ACTIONS(8144), 1, + anon_sym_AMP_AMP, + ACTIONS(8146), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8148), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8016), 2, + ACTIONS(5866), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5242), 9, + STATE(5240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654418,7 +654293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152540] = 29, + [152329] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654439,50 +654314,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5243), 9, + STATE(5241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654492,7 +654367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(5682), 11, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -654504,7 +654379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [152655] = 26, + [152444] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654525,35 +654400,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -654563,7 +654438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5244), 9, + STATE(5242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654573,7 +654448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -654587,7 +654462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [152764] = 24, + [152553] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654608,30 +654483,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(5245), 9, + STATE(5243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654641,7 +654516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5756), 10, + ACTIONS(5684), 10, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -654652,7 +654527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5754), 15, + ACTIONS(5682), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -654668,7 +654543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [152869] = 35, + [152658] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654689,68 +654564,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(5754), 5, + ACTIONS(5682), 5, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5246), 9, + STATE(5244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654760,7 +654635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152996] = 36, + [152785] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654781,69 +654656,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5247), 9, + STATE(5245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654853,7 +654728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153125] = 34, + [152914] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654874,67 +654749,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 4, + ACTIONS(5684), 4, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 5, + ACTIONS(5682), 5, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5248), 9, + STATE(5246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654944,7 +654819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153250] = 27, + [153039] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654965,38 +654840,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 7, + ACTIONS(5684), 7, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -655004,7 +654879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5249), 9, + STATE(5247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655014,7 +654889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -655028,7 +654903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [153361] = 33, + [153150] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655049,58 +654924,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 4, + ACTIONS(5684), 4, anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, + ACTIONS(5682), 7, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -655108,7 +654983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5250), 9, + STATE(5248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655118,7 +654993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153484] = 37, + [153273] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655139,70 +655014,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_in, anon_sym_QMARK, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5251), 9, + STATE(5249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655212,7 +655087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153615] = 38, + [153404] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655233,71 +655108,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_in, anon_sym_QMARK, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, + ACTIONS(5682), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5252), 9, + STATE(5250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655307,7 +655182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153748] = 40, + [153537] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655328,73 +655203,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5682), 1, anon_sym_into, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, + ACTIONS(5684), 2, anon_sym_in, anon_sym_QMARK, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5253), 9, + STATE(5251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655404,7 +655279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153885] = 38, + [153674] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655425,71 +655300,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5682), 4, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(5254), 9, + STATE(5252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655499,7 +655374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154018] = 27, + [153807] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655520,70 +655395,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7938), 1, + ACTIONS(8000), 1, + anon_sym_AMP, + ACTIONS(8004), 1, + anon_sym_GT_GT, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(7992), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5255), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_CARET, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - anon_sym_as, - anon_sym_is, - [154129] = 33, + STATE(5253), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [153938] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655604,66 +655489,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7932), 1, + ACTIONS(8000), 1, + anon_sym_AMP, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7946), 1, + ACTIONS(8012), 1, anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(8014), 1, anon_sym_is, - STATE(2455), 1, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, + anon_sym_AMP_AMP, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7936), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 8, - anon_sym_CARET, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(8008), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 4, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_by, - STATE(5256), 9, + STATE(5254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655673,7 +655563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154252] = 37, + [154071] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655694,70 +655584,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8022), 1, + anon_sym_QMARK, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7924), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7926), 1, + ACTIONS(8032), 1, anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(8046), 1, + anon_sym_AMP_AMP, + ACTIONS(8048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8050), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8052), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7916), 2, + ACTIONS(5878), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5257), 9, + STATE(5255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655767,7 +655660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154383] = 40, + [154208] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655788,72 +655681,183 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6576), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5256), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [154307] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8024), 1, + ACTIONS(7952), 1, anon_sym_SLASH, - ACTIONS(8026), 1, + ACTIONS(7954), 1, anon_sym_CARET, - ACTIONS(8028), 1, + ACTIONS(7956), 1, anon_sym_PIPE, - ACTIONS(8030), 1, + ACTIONS(7958), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(7962), 1, anon_sym_GT_GT, - ACTIONS(8040), 1, + ACTIONS(7968), 1, anon_sym_DOT_DOT, - ACTIONS(8042), 1, + ACTIONS(7970), 1, anon_sym_AMP_AMP, - ACTIONS(8044), 1, + ACTIONS(7972), 1, anon_sym_PIPE_PIPE, - ACTIONS(8046), 1, + ACTIONS(7974), 1, anon_sym_QMARK_QMARK, - ACTIONS(8048), 1, + ACTIONS(7976), 1, anon_sym_as, - ACTIONS(8050), 1, + ACTIONS(7978), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, + ACTIONS(5682), 2, anon_sym_into, anon_sym_on, - ACTIONS(8016), 2, + ACTIONS(7944), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8020), 2, + ACTIONS(7948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8022), 2, + ACTIONS(7950), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8032), 2, + ACTIONS(7960), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8036), 2, + ACTIONS(7964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8038), 2, + ACTIONS(7966), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + STATE(5257), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154444] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8016), 1, + anon_sym_DOT, STATE(5258), 9, sym_preproc_region, sym_preproc_endregion, @@ -655864,7 +655868,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154520] = 21, + ACTIONS(4026), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4028), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [154529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655885,30 +655927,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6565), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_QMARK, + ACTIONS(7614), 1, + anon_sym_SLASH, + ACTIONS(7616), 1, + anon_sym_CARET, + ACTIONS(7618), 1, + anon_sym_PIPE, + ACTIONS(7620), 1, + anon_sym_AMP, + ACTIONS(7624), 1, + anon_sym_GT_GT, + ACTIONS(7630), 1, + anon_sym_DOT_DOT, + ACTIONS(7632), 1, + anon_sym_AMP_AMP, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7610), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7612), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7622), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7626), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7628), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7938), 2, + anon_sym_SEMI, + anon_sym_COMMA, STATE(5259), 9, sym_preproc_region, sym_preproc_endregion, @@ -655919,30 +656003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [154619] = 40, + [154666] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655963,72 +656024,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(8158), 2, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, STATE(5260), 9, sym_preproc_region, sym_preproc_endregion, @@ -656039,7 +656100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154756] = 22, + [154803] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656060,26 +656121,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8146), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -656099,7 +656160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, + ACTIONS(5924), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -656118,7 +656179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [154857] = 21, + [154904] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656139,30 +656200,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6585), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8120), 1, + anon_sym_QMARK, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8130), 1, + anon_sym_PIPE, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, + anon_sym_GT_GT, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8144), 1, + anon_sym_AMP_AMP, + ACTIONS(8146), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8148), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(8118), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8140), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5262), 9, sym_preproc_region, sym_preproc_endregion, @@ -656173,30 +656276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [154956] = 14, + [155041] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656217,7 +656297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8066), 1, + ACTIONS(8058), 1, anon_sym_and, STATE(5263), 9, sym_preproc_region, @@ -656229,7 +656309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -656241,7 +656321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 25, + ACTIONS(6199), 25, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -656267,7 +656347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [155041] = 14, + [155126] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656288,17 +656368,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(4015), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(7998), 1, + anon_sym_SLASH, + ACTIONS(8000), 1, + anon_sym_AMP, + ACTIONS(8004), 1, + anon_sym_GT_GT, + ACTIONS(8010), 1, + anon_sym_DOT_DOT, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, + anon_sym_AMP_AMP, + ACTIONS(8160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8162), 1, + anon_sym_QMARK_QMARK, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5682), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7992), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7994), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7996), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8006), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8008), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5264), 9, sym_preproc_region, sym_preproc_endregion, @@ -656309,22 +656444,76 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 28, + [155263] = 25, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + ACTIONS(7191), 1, + aux_sym_preproc_if_token3, + ACTIONS(8164), 1, + aux_sym_preproc_else_token1, + ACTIONS(8166), 1, + aux_sym_preproc_elif_token1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(5844), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(6681), 1, + sym_enum_member_declaration, + STATE(6773), 1, + sym_identifier, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7737), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(5265), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -656337,8 +656526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [155126] = 40, + [155370] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656359,73 +656547,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8124), 1, - anon_sym_QMARK, - ACTIONS(8130), 1, - anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8134), 1, - anon_sym_PIPE, - ACTIONS(8136), 1, - anon_sym_AMP, - ACTIONS(8140), 1, - anon_sym_GT_GT, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - ACTIONS(8148), 1, - anon_sym_AMP_AMP, - ACTIONS(8150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5777), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8138), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8142), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8144), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5265), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6635), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656435,7 +656581,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155263] = 40, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [155469] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656456,73 +656625,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8124), 1, + ACTIONS(8120), 1, anon_sym_QMARK, - ACTIONS(8130), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(8132), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(8134), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(8136), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, + ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(8150), 1, + ACTIONS(8146), 1, anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, + ACTIONS(8148), 1, anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5172), 2, + ACTIONS(5238), 2, anon_sym_into, anon_sym_equals, - ACTIONS(8122), 2, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5266), 9, + STATE(5267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656532,7 +656701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155400] = 38, + [155606] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656553,71 +656722,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(8120), 1, + anon_sym_QMARK, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(7924), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7926), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(7946), 1, + ACTIONS(8146), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8148), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7916), 2, + ACTIONS(5874), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5267), 9, + STATE(5268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656627,7 +656798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155533] = 40, + [155743] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656648,73 +656819,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8124), 1, - anon_sym_QMARK, - ACTIONS(8130), 1, - anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8134), 1, - anon_sym_PIPE, - ACTIONS(8136), 1, - anon_sym_AMP, - ACTIONS(8140), 1, - anon_sym_GT_GT, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - ACTIONS(8148), 1, - anon_sym_AMP_AMP, - ACTIONS(8150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5783), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8138), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8142), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8144), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5268), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6674), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656724,7 +656853,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155670] = 15, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [155842] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656745,11 +656897,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8060), 1, + ACTIONS(7982), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(8072), 1, anon_sym_or, - STATE(5269), 9, + STATE(5270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656759,7 +656911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -656771,7 +656923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 24, + ACTIONS(6171), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -656796,87 +656948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [155757] = 23, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3421), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(5735), 1, - sym_property_pattern_clause, - ACTIONS(3923), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3921), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5270), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [155860] = 40, + [155929] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656897,72 +656969,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, - anon_sym_QMARK, - ACTIONS(7574), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(7576), 1, + ACTIONS(6571), 1, anon_sym_CARET, - ACTIONS(7578), 1, + ACTIONS(6573), 1, anon_sym_PIPE, - ACTIONS(7580), 1, + ACTIONS(6575), 1, anon_sym_AMP, - ACTIONS(7584), 1, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(7590), 1, - anon_sym_DOT_DOT, - ACTIONS(7592), 1, + ACTIONS(6585), 1, anon_sym_AMP_AMP, - ACTIONS(7594), 1, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, + ACTIONS(6589), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7570), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7572), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7582), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7586), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7588), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8162), 2, - anon_sym_SEMI, + ACTIONS(7877), 2, anon_sym_COMMA, + anon_sym_RBRACK, STATE(5271), 9, sym_preproc_region, sym_preproc_endregion, @@ -656973,7 +657045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155997] = 29, + [156066] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656994,43 +657066,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(8140), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8126), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -657046,7 +657118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 12, + ACTIONS(5682), 12, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -657059,104 +657131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - [156112] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8164), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5273), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [156249] = 26, + [156181] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657181,33 +657156,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3911), 1, anon_sym_EQ_GT, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_LPAREN, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3548), 1, sym__variable_designation, - STATE(5035), 1, + STATE(5028), 1, sym_identifier, - STATE(5720), 1, + STATE(5744), 1, sym_positional_pattern_clause, - STATE(5794), 1, + STATE(5793), 1, sym_property_pattern_clause, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, ACTIONS(3909), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(5274), 9, + STATE(5273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657217,7 +657192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -657239,7 +657214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [156358] = 14, + [156290] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657260,10 +657235,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4346), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5274), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 14, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [156399] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7990), 1, anon_sym_and, + ACTIONS(8018), 1, anon_sym_or, STATE(5275), 9, sym_preproc_region, @@ -657275,7 +657332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -657287,7 +657344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5015), 22, + ACTIONS(6171), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -657306,11 +657363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [156443] = 21, + [156486] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657331,30 +657390,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(7988), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(7990), 1, - sym_integer_literal, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6681), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6524), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(5276), 9, sym_preproc_region, sym_preproc_endregion, @@ -657365,30 +657433,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5682), 16, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [156542] = 14, + anon_sym_as, + anon_sym_is, + [156591] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657409,8 +657471,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8120), 1, + ACTIONS(4158), 1, anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7638), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(5277), 9, sym_preproc_region, sym_preproc_endregion, @@ -657421,45 +657547,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [156728] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8022), 1, + anon_sym_QMARK, + ACTIONS(8028), 1, anon_sym_SLASH, + ACTIONS(8030), 1, + anon_sym_CARET, + ACTIONS(8032), 1, anon_sym_PIPE, + ACTIONS(8034), 1, anon_sym_AMP, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(4015), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_AMP_AMP, + ACTIONS(8048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8050), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5238), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [156627] = 21, + STATE(5278), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [156865] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657480,31 +657665,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_DOT, + ACTIONS(4024), 6, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7988), 1, - anon_sym_BANG, - ACTIONS(7990), 1, - sym_integer_literal, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6629), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6524), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5278), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657514,7 +657692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -657525,6 +657703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -657537,7 +657718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [156726] = 25, + sym__identifier_token, + [156958] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657558,35 +657740,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, - ACTIONS(7191), 1, - aux_sym_preproc_if_token3, - ACTIONS(8168), 1, - aux_sym_preproc_else_token1, - ACTIONS(8170), 1, - aux_sym_preproc_elif_token1, - STATE(2182), 1, - sym__reserved_identifier, - STATE(5833), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(6584), 1, - sym_enum_member_declaration, - STATE(6766), 1, - sym_identifier, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7405), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5279), 9, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, + anon_sym_GT_GT, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8118), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8140), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + STATE(5280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657596,30 +657811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [156833] = 21, + [157085] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657640,31 +657832,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6537), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5280), 9, + ACTIONS(8172), 1, + anon_sym_and, + STATE(5281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657674,30 +657844,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(6201), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [156932] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [157170] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657718,21 +657903,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -657756,11 +657941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7877), 1, + anon_sym_COMMA, + ACTIONS(8174), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -657781,10 +657970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5281), 9, + STATE(5282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657794,7 +657980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157069] = 24, + [157309] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657815,40 +658001,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5282), 9, + ACTIONS(8172), 1, + anon_sym_and, + ACTIONS(8176), 1, + anon_sym_or, + STATE(5283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657858,7 +658015,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 16, + ACTIONS(5482), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5480), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -657868,14 +658042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [157174] = 14, + anon_sym_DASH_GT, + anon_sym_with, + [157396] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657896,57 +658073,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8172), 1, - anon_sym_and, - STATE(5283), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8126), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8118), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5682), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + STATE(5284), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [157525] = 26, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_LBRACE, + ACTIONS(3911), 1, + anon_sym_COLON, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(6989), 1, + anon_sym_LPAREN, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3548), 1, + sym__variable_designation, + STATE(3549), 1, + sym_identifier, + STATE(5744), 1, + sym_positional_pattern_clause, + STATE(5793), 1, + sym_property_pattern_clause, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3909), 3, + anon_sym_when, + anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + STATE(5285), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 21, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [157259] = 41, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [157634] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657967,74 +658249,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8022), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8032), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8046), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8048), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8050), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8052), 1, anon_sym_is, - ACTIONS(7888), 1, - anon_sym_COMMA, - ACTIONS(8174), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5794), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5284), 9, + STATE(5286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658044,7 +658325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157398] = 15, + [157771] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658065,103 +658346,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8172), 1, - anon_sym_and, - ACTIONS(8176), 1, - anon_sym_or, - STATE(5285), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6703), 1, anon_sym_SLASH, + ACTIONS(6705), 1, + anon_sym_CARET, + ACTIONS(6707), 1, anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7251), 1, + anon_sym_QMARK, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(7257), 1, + anon_sym_is, + ACTIONS(7877), 1, + anon_sym_COMMA, + ACTIONS(8178), 1, + anon_sym_COLON, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6695), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [157485] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6598), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5286), 9, + STATE(5287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658171,30 +658423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [157584] = 26, + [157910] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658215,37 +658444,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3911), 1, - anon_sym_COLON, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(7043), 1, + ACTIONS(4007), 1, anon_sym_LPAREN, - STATE(2604), 1, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3496), 1, + STATE(3493), 1, sym__variable_designation, - STATE(3501), 1, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(5720), 1, - sym_positional_pattern_clause, - STATE(5794), 1, - sym_property_pattern_clause, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3909), 3, - anon_sym_when, + ACTIONS(3979), 2, anon_sym_and, anon_sym_or, - STATE(5287), 9, + ACTIONS(3975), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658255,7 +658478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658265,6 +658488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -658277,7 +658501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [157693] = 21, + [158009] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658298,31 +658522,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(7922), 1, sym__identifier_token, - STATE(2604), 1, + ACTIONS(7926), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, sym__reserved_identifier, - STATE(3407), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(6670), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - ACTIONS(3977), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3973), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5288), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658332,7 +658556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658355,7 +658579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [157792] = 41, + [158108] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658376,74 +658600,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_AMP_AMP, - ACTIONS(6689), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7251), 1, - anon_sym_QMARK, - ACTIONS(7253), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7255), 1, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(7257), 1, + ACTIONS(8152), 1, anon_sym_is, - ACTIONS(7888), 1, - anon_sym_COMMA, - ACTIONS(8178), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5289), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + STATE(5290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658453,7 +658670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157931] = 35, + [158233] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658474,68 +658691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8130), 1, - anon_sym_SLASH, - ACTIONS(8136), 1, - anon_sym_AMP, - ACTIONS(8140), 1, - anon_sym_GT_GT, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8122), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8138), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8142), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8144), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5290), 9, + STATE(5291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658545,7 +658701,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158058] = 21, + ACTIONS(3459), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3461), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [158316] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658566,31 +658761,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6569), 1, + STATE(6600), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5291), 9, + STATE(5292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658600,7 +658795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658623,7 +658818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158157] = 21, + [158415] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658644,31 +658839,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6571), 1, + STATE(6615), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5292), 9, + STATE(5293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658678,7 +658873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658701,7 +658896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158256] = 21, + [158514] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658722,31 +658917,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6659), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5293), 9, + STATE(5294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658756,7 +658927,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(3664), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3662), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658767,6 +658950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -658779,7 +658965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158355] = 21, + sym__identifier_token, + [158597] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658800,31 +658987,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6574), 1, + STATE(6637), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5294), 9, + STATE(5295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658834,7 +659021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658857,7 +659044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158454] = 40, + [158696] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658878,73 +659065,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7952), 1, - anon_sym_QMARK, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, - anon_sym_AMP, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - ACTIONS(7976), 1, - anon_sym_AMP_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5909), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7970), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7972), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5295), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6545), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658954,7 +659099,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158591] = 21, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [158795] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658975,31 +659143,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6534), 1, + STATE(6676), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5296), 9, + STATE(5297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659009,7 +659177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659032,7 +659200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158690] = 21, + [158894] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659053,31 +659221,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5298), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 14, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [159005] = 21, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6593), 1, + STATE(6530), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5297), 9, + STATE(5299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659087,7 +659339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659110,7 +659362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158789] = 21, + [159104] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659131,31 +659383,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6594), 1, + STATE(6531), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5298), 9, + STATE(5300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659165,7 +659417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659188,7 +659440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158888] = 21, + [159203] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659209,31 +659461,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6596), 1, + STATE(6539), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5299), 9, + STATE(5301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659243,7 +659495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659266,7 +659518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158987] = 36, + [159302] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659287,79 +659539,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(8180), 1, + anon_sym_and, + STATE(5302), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8130), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8136), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8140), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(6199), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8122), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(5300), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [159116] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [159387] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659380,67 +659610,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(8140), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8154), 1, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8122), 2, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 6, + ACTIONS(5682), 8, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(5301), 9, + STATE(5303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659450,7 +659679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159241] = 14, + [159510] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659473,7 +659702,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8180), 1, anon_sym_and, - STATE(5302), 9, + ACTIONS(8182), 1, + anon_sym_or, + STATE(5304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659483,7 +659714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -659495,7 +659726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6201), 25, + ACTIONS(5480), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -659511,7 +659742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -659521,7 +659751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [159326] = 13, + [159597] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659542,7 +659772,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5303), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8184), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659552,46 +659848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3459), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3461), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [159409] = 13, + [159734] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659612,7 +659869,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5304), 9, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, + anon_sym_LPAREN, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6570), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659622,19 +659903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3664), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3662), 26, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659645,9 +659914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -659660,8 +659926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [159492] = 21, + [159833] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659682,64 +659947,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6600), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5305), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8130), 1, + anon_sym_PIPE, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, + anon_sym_GT_GT, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8118), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8140), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [159591] = 21, + STATE(5307), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [159964] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659760,31 +660041,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6601), 1, + STATE(6553), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5306), 9, + STATE(5308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659794,7 +660075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659817,7 +660098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [159690] = 21, + [160063] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659838,31 +660119,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6603), 1, + STATE(6554), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5307), 9, + STATE(5309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659872,7 +660153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659895,7 +660176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [159789] = 18, + [160162] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659916,24 +660197,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8182), 1, - anon_sym_DOT, - ACTIONS(4058), 6, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5308), 9, + ACTIONS(7928), 1, + anon_sym_BANG, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6555), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659943,7 +660231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659954,9 +660242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -659969,8 +660254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [159882] = 41, + [160261] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659991,21 +660275,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -660029,15 +660313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(7888), 1, + ACTIONS(7877), 1, anon_sym_COMMA, - ACTIONS(8184), 1, + ACTIONS(8186), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -660058,7 +660342,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5309), 9, + STATE(5311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660068,7 +660352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160021] = 40, + [160400] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660089,73 +660373,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7926), 1, - anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(8160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(8162), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - ACTIONS(8186), 1, + ACTIONS(8188), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5694), 2, + ACTIONS(5878), 2, anon_sym_into, anon_sym_by, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5310), 9, + STATE(5312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660165,7 +660449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160158] = 27, + [160537] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660186,45 +660470,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8130), 1, - anon_sym_SLASH, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5311), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6601), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660234,22 +660504,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_on, anon_sym_equals, - anon_sym_as, - anon_sym_is, - [160269] = 21, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [160636] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660270,31 +660548,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6588), 1, + STATE(6602), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5312), 9, + STATE(5314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660304,7 +660582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -660327,104 +660605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [160368] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(7568), 1, - anon_sym_QMARK, - ACTIONS(7574), 1, - anon_sym_SLASH, - ACTIONS(7576), 1, - anon_sym_CARET, - ACTIONS(7578), 1, - anon_sym_PIPE, - ACTIONS(7580), 1, - anon_sym_AMP, - ACTIONS(7584), 1, - anon_sym_GT_GT, - ACTIONS(7590), 1, - anon_sym_DOT_DOT, - ACTIONS(7592), 1, - anon_sym_AMP_AMP, - ACTIONS(7594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7596), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7558), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(7566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7572), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7582), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7586), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7588), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5313), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [160505] = 21, + [160735] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660445,31 +660626,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7920), 1, sym_integer_literal, - STATE(6498), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6690), 1, + STATE(6596), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6548), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5314), 9, + STATE(5315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660479,7 +660660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -660502,7 +660683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [160604] = 40, + [160834] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660523,73 +660704,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, ACTIONS(7922), 1, - anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, + sym__identifier_token, ACTIONS(7926), 1, - anon_sym_PIPE, + anon_sym_LPAREN, ACTIONS(7928), 1, - anon_sym_AMP, + anon_sym_BANG, ACTIONS(7932), 1, - anon_sym_GT_GT, - ACTIONS(7938), 1, - anon_sym_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - ACTIONS(8186), 1, - anon_sym_QMARK, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5736), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7916), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7918), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7920), 2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6566), 1, + sym__preproc_expression, ACTIONS(7930), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7936), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5315), 9, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660599,7 +660738,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160741] = 40, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [160933] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660620,73 +660782,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8188), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5316), 9, + ACTIONS(7920), 1, + sym_integer_literal, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6618), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6548), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660696,7 +660816,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160878] = 40, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [161032] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660717,73 +660860,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7926), 1, - anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(8160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(8162), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - ACTIONS(8186), 1, + ACTIONS(8188), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5909), 2, + ACTIONS(5886), 2, anon_sym_into, anon_sym_by, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5317), 9, + STATE(5318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660793,7 +660936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161015] = 22, + [161169] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660814,36 +660957,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(7938), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5318), 9, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6603), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660853,26 +660991,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [161116] = 21, + anon_sym_select, + [161268] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660893,31 +661035,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7920), 1, sym_integer_literal, - STATE(6498), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6591), 1, + STATE(6634), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6548), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5319), 9, + STATE(5320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660927,7 +661069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -660950,7 +661092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [161215] = 33, + [161367] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660971,66 +661113,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(8140), 1, + ACTIONS(8000), 1, + anon_sym_AMP, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(8154), 1, + ACTIONS(8012), 1, anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8014), 1, anon_sym_is, - STATE(2455), 1, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, + anon_sym_AMP_AMP, + ACTIONS(8160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8188), 1, + anon_sym_QMARK, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8122), 2, + ACTIONS(5794), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8144), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 8, - anon_sym_CARET, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5320), 9, + ACTIONS(8008), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661040,7 +661189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161338] = 21, + [161504] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661061,31 +661210,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7986), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(7988), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(7990), 1, - sym_integer_literal, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6628), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6524), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5321), 9, + ACTIONS(8010), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661095,30 +661249,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(1229), 18, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, anon_sym_by, - anon_sym_select, - [161437] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [161605] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661139,31 +661289,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8022), 1, + anon_sym_QMARK, + ACTIONS(8028), 1, + anon_sym_SLASH, + ACTIONS(8030), 1, + anon_sym_CARET, + ACTIONS(8032), 1, + anon_sym_PIPE, + ACTIONS(8034), 1, + anon_sym_AMP, + ACTIONS(8038), 1, + anon_sym_GT_GT, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_AMP_AMP, + ACTIONS(8048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8050), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5866), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8040), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5323), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [161742] = 21, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, sym__reserved_identifier, - STATE(6579), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5322), 9, + STATE(3552), 1, + sym__variable_designation, + ACTIONS(3983), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3981), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661173,7 +661420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -661196,7 +661443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [161536] = 21, + [161841] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661217,31 +661464,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6615), 1, + STATE(6662), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5323), 9, + STATE(5325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661251,7 +661498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -661274,7 +661521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [161635] = 15, + [161940] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661297,9 +661544,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8180), 1, anon_sym_and, - ACTIONS(8190), 1, + ACTIONS(8182), 1, anon_sym_or, - STATE(5324), 9, + STATE(5326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661309,7 +661556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -661321,7 +661568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 24, + ACTIONS(6171), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -661346,163 +661593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [161722] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6580), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5325), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [161821] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3529), 1, - sym__variable_designation, - ACTIONS(3995), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3993), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5326), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [161920] = 40, + [162027] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661523,70 +661614,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7952), 1, + ACTIONS(8022), 1, anon_sym_QMARK, - ACTIONS(7958), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7960), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7962), 1, + ACTIONS(8032), 1, anon_sym_PIPE, - ACTIONS(7964), 1, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7976), 1, + ACTIONS(8046), 1, anon_sym_AMP_AMP, - ACTIONS(7978), 1, + ACTIONS(8048), 1, anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, + ACTIONS(8050), 1, anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, + ACTIONS(8052), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5736), 2, + ACTIONS(5886), 2, anon_sym_EQ_GT, anon_sym_into, - ACTIONS(7950), 2, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5327), 9, @@ -661599,7 +661690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162057] = 40, + [162164] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661619,73 +661710,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, aux_sym_preproc_undef_token1, ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + sym_comment, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_is, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8158), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5682), 4, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, STATE(5328), 9, sym_preproc_region, sym_preproc_endregion, @@ -661696,7 +661785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162194] = 21, + [162297] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661717,24 +661806,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(4011), 1, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3430), 1, + STATE(3470), 1, sym__variable_designation, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(3547), 1, sym_identifier, - ACTIONS(4003), 2, + ACTIONS(3987), 2, anon_sym_and, anon_sym_or, - ACTIONS(4001), 6, + ACTIONS(3985), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -661751,7 +661840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -661774,7 +661863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [162293] = 40, + [162396] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661795,72 +661884,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8162), 2, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3503), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + ACTIONS(3991), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3989), 6, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, STATE(5330), 9, sym_preproc_region, sym_preproc_endregion, @@ -661871,7 +661918,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162430] = 40, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [162495] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661892,70 +661962,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(7924), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7926), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(8146), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(8148), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(8152), 1, anon_sym_is, - ACTIONS(8186), 1, - anon_sym_QMARK, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5682), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7916), 2, + anon_sym_equals, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5331), 9, @@ -661968,7 +662038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162567] = 21, + [162632] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661989,24 +662059,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6616), 1, + STATE(6538), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, @@ -662023,7 +662093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -662046,7 +662116,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [162666] = 22, + [162731] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(7998), 1, + anon_sym_SLASH, + ACTIONS(8000), 1, + anon_sym_AMP, + ACTIONS(8004), 1, + anon_sym_GT_GT, + ACTIONS(8010), 1, + anon_sym_DOT_DOT, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, + anon_sym_AMP_AMP, + ACTIONS(8160), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8188), 1, + anon_sym_QMARK, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5866), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7992), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7994), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7996), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8006), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8008), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5333), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [162868] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662067,26 +662234,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -662096,7 +662263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5333), 9, + STATE(5334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662106,7 +662273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, + ACTIONS(5924), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -662125,7 +662292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [162767] = 40, + [162969] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662146,73 +662313,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7924), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7926), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8186), 1, - anon_sym_QMARK, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5777), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7916), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5334), 9, + ACTIONS(8190), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662222,7 +662389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162904] = 40, + [163106] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662243,73 +662410,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7926), 1, - anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(8160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(8162), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - ACTIONS(8186), 1, + ACTIONS(8188), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5172), 2, + ACTIONS(5870), 2, anon_sym_into, anon_sym_by, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5335), 9, + STATE(5336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662319,7 +662486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163041] = 40, + [163243] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662340,73 +662507,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7924), 1, - anon_sym_CARET, - ACTIONS(7926), 1, - anon_sym_PIPE, - ACTIONS(7928), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7932), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7940), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(8160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, + ACTIONS(8162), 1, anon_sym_QMARK_QMARK, - ACTIONS(7946), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_is, - ACTIONS(8186), 1, + ACTIONS(8188), 1, anon_sym_QMARK, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5783), 2, + ACTIONS(5238), 2, anon_sym_into, anon_sym_by, - ACTIONS(7916), 2, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7918), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7934), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7936), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5336), 9, + STATE(5337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662416,7 +662583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163178] = 40, + [163380] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662437,73 +662604,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7952), 1, - anon_sym_QMARK, - ACTIONS(7958), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, + ACTIONS(8000), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(8004), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7976), 1, + ACTIONS(8012), 1, + anon_sym_as, + ACTIONS(8014), 1, + anon_sym_is, + ACTIONS(8056), 1, + anon_sym_CARET, + ACTIONS(8154), 1, + anon_sym_PIPE, + ACTIONS(8156), 1, anon_sym_AMP_AMP, - ACTIONS(7978), 1, + ACTIONS(8160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, + ACTIONS(8162), 1, anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, + ACTIONS(8188), 1, + anon_sym_QMARK, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_EQ_GT, + ACTIONS(5874), 2, anon_sym_into, - ACTIONS(7950), 2, + anon_sym_by, + ACTIONS(7992), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(7994), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(7996), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8006), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8008), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5337), 9, + STATE(5338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662513,7 +662680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163315] = 15, + [163517] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662534,11 +662701,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8180), 1, - anon_sym_and, - ACTIONS(8190), 1, - anon_sym_or, - STATE(5338), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(7998), 1, + anon_sym_SLASH, + ACTIONS(8004), 1, + anon_sym_GT_GT, + ACTIONS(8010), 1, + anon_sym_DOT_DOT, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7994), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7996), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662548,44 +662753,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 12, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [163402] = 21, + [163632] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662606,31 +662787,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3475), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - ACTIONS(3985), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3983), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8028), 1, + anon_sym_SLASH, + ACTIONS(8034), 1, + anon_sym_AMP, + ACTIONS(8038), 1, + anon_sym_GT_GT, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8040), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 6, + anon_sym_CARET, anon_sym_EQ_GT, - STATE(5339), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662640,30 +662858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [163501] = 29, + [163759] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662684,116 +662879,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(7922), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7932), 1, + ACTIONS(8030), 1, + anon_sym_CARET, + ACTIONS(8034), 1, + anon_sym_AMP, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7938), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7920), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7930), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5340), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 12, - anon_sym_CARET, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 5, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - anon_sym_as, - anon_sym_is, - [163616] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, - anon_sym_LPAREN, - ACTIONS(8004), 1, - anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6626), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, STATE(5341), 9, sym_preproc_region, sym_preproc_endregion, @@ -662804,30 +662951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [163715] = 21, + [163888] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662848,30 +662972,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6589), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8028), 1, + anon_sym_SLASH, + ACTIONS(8038), 1, + anon_sym_GT_GT, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8040), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 6, + anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, STATE(5342), 9, sym_preproc_region, sym_preproc_endregion, @@ -662882,30 +663042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [163814] = 21, + [164013] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662926,30 +663063,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8008), 1, - anon_sym_SQUOTE, - ACTIONS(8010), 1, - sym_integer_literal, - STATE(6498), 1, - sym__reserved_identifier, - STATE(6632), 1, - sym__preproc_expression, - ACTIONS(8006), 2, - anon_sym_true, - anon_sym_false, - STATE(6609), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8120), 1, + anon_sym_QMARK, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8130), 1, + anon_sym_PIPE, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, + anon_sym_GT_GT, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8144), 1, + anon_sym_AMP_AMP, + ACTIONS(8146), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8148), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5878), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(8118), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8122), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8124), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8138), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8140), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5343), 9, sym_preproc_region, sym_preproc_endregion, @@ -662960,30 +663139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [163913] = 21, + [164150] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663004,24 +663160,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6582), 1, + STATE(6604), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, @@ -663038,7 +663194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -663061,7 +663217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [164012] = 40, + [164249] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663082,72 +663238,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8124), 1, - anon_sym_QMARK, - ACTIONS(8130), 1, + ACTIONS(7998), 1, anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8134), 1, - anon_sym_PIPE, - ACTIONS(8136), 1, - anon_sym_AMP, - ACTIONS(8140), 1, - anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, - anon_sym_AMP_AMP, - ACTIONS(8150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5694), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, + ACTIONS(7996), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8138), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8142), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8144), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(5345), 9, sym_preproc_region, sym_preproc_endregion, @@ -663158,7 +663285,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164149] = 41, + ACTIONS(5682), 14, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [164358] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663179,73 +663321,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(5694), 1, - anon_sym_into, - ACTIONS(5722), 1, - anon_sym_in, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(8088), 1, - anon_sym_QMARK, - ACTIONS(8094), 1, - anon_sym_SLASH, - ACTIONS(8096), 1, - anon_sym_CARET, - ACTIONS(8098), 1, - anon_sym_PIPE, - ACTIONS(8100), 1, - anon_sym_AMP, - ACTIONS(8104), 1, - anon_sym_GT_GT, - ACTIONS(8110), 1, - anon_sym_DOT_DOT, - ACTIONS(8112), 1, - anon_sym_AMP_AMP, - ACTIONS(8114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8086), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8092), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8102), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8106), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6612), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, STATE(5346), 9, sym_preproc_region, sym_preproc_endregion, @@ -663256,7 +663355,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164288] = 41, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [164457] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663277,73 +663399,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5736), 1, - anon_sym_into, - ACTIONS(5738), 1, - anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, - anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(8096), 1, - anon_sym_CARET, - ACTIONS(8098), 1, - anon_sym_PIPE, - ACTIONS(8100), 1, - anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, - anon_sym_AMP_AMP, - ACTIONS(8114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8052), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 8, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, STATE(5347), 9, sym_preproc_region, sym_preproc_endregion, @@ -663354,7 +663468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164427] = 37, + [164580] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663375,69 +663489,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_QMARK, + ACTIONS(7614), 1, anon_sym_SLASH, - ACTIONS(8132), 1, + ACTIONS(7616), 1, anon_sym_CARET, - ACTIONS(8134), 1, + ACTIONS(7618), 1, anon_sym_PIPE, - ACTIONS(8136), 1, + ACTIONS(7620), 1, anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(7624), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(7630), 1, anon_sym_DOT_DOT, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, + ACTIONS(7632), 1, + anon_sym_AMP_AMP, + ACTIONS(7634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7636), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8122), 2, + ACTIONS(7594), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(7610), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(7612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(7622), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(7626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(7628), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, STATE(5348), 9, sym_preproc_region, sym_preproc_endregion, @@ -663448,7 +663565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164558] = 38, + [164717] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663469,70 +663586,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(5878), 1, + anon_sym_into, + ACTIONS(5880), 1, + anon_sym_in, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8084), 1, + anon_sym_QMARK, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8132), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8134), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8136), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8112), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8122), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, STATE(5349), 9, sym_preproc_region, sym_preproc_endregion, @@ -663543,7 +663663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164691] = 40, + [164856] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663564,70 +663684,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, + ACTIONS(5886), 1, + anon_sym_into, + ACTIONS(5888), 1, + anon_sym_in, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8130), 1, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(8084), 1, + anon_sym_QMARK, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8132), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8134), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8136), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8150), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5350), 9, @@ -663640,7 +663761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164828] = 40, + [164995] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663661,83 +663782,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8124), 1, + ACTIONS(8054), 1, + anon_sym_and, + ACTIONS(8192), 1, + anon_sym_or, + STATE(5351), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8130), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8132), 1, - anon_sym_CARET, - ACTIONS(8134), 1, anon_sym_PIPE, - ACTIONS(8136), 1, anon_sym_AMP, - ACTIONS(8140), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - ACTIONS(8148), 1, - anon_sym_AMP_AMP, - ACTIONS(8150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, - anon_sym_as, - ACTIONS(8156), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(6171), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5736), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(8122), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8126), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5351), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [164965] = 35, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [165082] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663758,62 +663854,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7958), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(8030), 1, + anon_sym_CARET, + ACTIONS(8032), 1, + anon_sym_PIPE, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7982), 1, + ACTIONS(8052), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7950), 2, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_CARET, + ACTIONS(5682), 5, anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -663829,7 +663927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165092] = 41, + [165213] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663850,71 +663948,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5794), 1, anon_sym_into, - ACTIONS(5911), 1, + ACTIONS(5810), 1, anon_sym_in, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(8088), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8094), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8096), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8098), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8100), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8104), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8112), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8114), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8118), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8086), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8090), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8092), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8102), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8106), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8108), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5353), 9, @@ -663927,7 +664025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165231] = 22, + [165352] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663948,23 +664046,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(8110), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(5354), 9, @@ -664006,7 +664104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [165332] = 40, + [165453] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664027,70 +664125,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(8124), 1, + ACTIONS(8120), 1, anon_sym_QMARK, - ACTIONS(8130), 1, + ACTIONS(8126), 1, anon_sym_SLASH, - ACTIONS(8132), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(8134), 1, + ACTIONS(8130), 1, anon_sym_PIPE, - ACTIONS(8136), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8140), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8146), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8148), 1, + ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(8150), 1, + ACTIONS(8146), 1, anon_sym_PIPE_PIPE, - ACTIONS(8152), 1, + ACTIONS(8148), 1, anon_sym_QMARK_QMARK, - ACTIONS(8154), 1, + ACTIONS(8150), 1, anon_sym_as, - ACTIONS(8156), 1, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5909), 2, + ACTIONS(5886), 2, anon_sym_into, anon_sym_equals, - ACTIONS(8122), 2, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8126), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8128), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8138), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8142), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8144), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5355), 9, @@ -664103,7 +664201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165469] = 22, + [165590] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664124,35 +664222,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(7986), 1, + anon_sym_and, + ACTIONS(8070), 1, + anon_sym_or, STATE(5356), 9, sym_preproc_region, sym_preproc_endregion, @@ -664163,7 +664236,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 18, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6171), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -664173,16 +664262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [165570] = 36, + [165677] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664203,65 +664294,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7958), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7960), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7964), 1, + ACTIONS(8032), 1, + anon_sym_PIPE, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7968), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7982), 1, + ACTIONS(8046), 1, + anon_sym_AMP_AMP, + ACTIONS(8052), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7950), 2, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, + ACTIONS(5682), 4, anon_sym_EQ_GT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, @@ -664275,7 +664368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165699] = 34, + [165810] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664296,67 +664389,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7958), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7968), 1, + ACTIONS(8030), 1, + anon_sym_CARET, + ACTIONS(8032), 1, + anon_sym_PIPE, + ACTIONS(8034), 1, + anon_sym_AMP, + ACTIONS(8038), 1, + anon_sym_GT_GT, + ACTIONS(8044), 1, + anon_sym_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_AMP_AMP, + ACTIONS(8048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8050), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8052), 1, + anon_sym_is, + STATE(2469), 1, + sym_bracketed_argument_list, + STATE(3081), 1, + sym_argument_list, + ACTIONS(4883), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5682), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8026), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8036), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8040), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5358), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [165947] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4813), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, + anon_sym_switch, + ACTIONS(6313), 1, + anon_sym_with, + ACTIONS(8120), 1, + anon_sym_QMARK, + ACTIONS(8126), 1, + anon_sym_SLASH, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8130), 1, + anon_sym_PIPE, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7982), 1, + ACTIONS(8144), 1, + anon_sym_AMP_AMP, + ACTIONS(8146), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8148), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8150), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7950), 2, + ACTIONS(5794), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(8118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + ACTIONS(8122), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, + ACTIONS(8124), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 6, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5358), 9, + STATE(5359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664366,7 +664562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165824] = 26, + [166084] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664387,44 +664583,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(7922), 1, - anon_sym_SLASH, - ACTIONS(7938), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7920), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5359), 9, + STATE(5360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664434,7 +664622,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, + ACTIONS(1229), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -664442,14 +664632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, + anon_sym_equals, anon_sym_as, anon_sym_is, - [165933] = 33, + anon_sym_with, + [166185] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664470,66 +664662,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4829), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6338), 1, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6352), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, + ACTIONS(8010), 1, anon_sym_DOT_DOT, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7950), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7954), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7972), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 8, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5360), 9, + anon_sym_GT_GT, + STATE(5361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664539,7 +664705,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166056] = 37, + ACTIONS(5682), 16, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [166290] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664560,80 +664743,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(4295), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5362), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7958), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, anon_sym_PIPE, - ACTIONS(7964), 1, anon_sym_AMP, - ACTIONS(7968), 1, anon_sym_GT_GT, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, + anon_sym_DOT, + ACTIONS(5153), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7950), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7966), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7970), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7972), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5361), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [166187] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [166375] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664654,11 +664814,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8056), 1, + ACTIONS(8172), 1, anon_sym_and, - ACTIONS(8058), 1, + ACTIONS(8176), 1, anon_sym_or, - STATE(5362), 9, + STATE(5363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664668,9 +664828,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -664680,7 +664841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 24, + ACTIONS(6171), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -664700,12 +664861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [166274] = 15, + [166462] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664726,11 +664886,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8172), 1, + ACTIONS(4295), 4, + anon_sym_COLON, + anon_sym_when, anon_sym_and, - ACTIONS(8176), 1, anon_sym_or, - STATE(5363), 9, + STATE(5364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664740,10 +664901,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 12, + ACTIONS(5173), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -664753,7 +664913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 23, + ACTIONS(5171), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -664772,12 +664932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [166361] = 40, + [166547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664798,73 +664957,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(4881), 1, + anon_sym_BANG, + ACTIONS(6299), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6313), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6397), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8022), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8028), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8030), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8032), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8034), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8038), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8044), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8046), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8048), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8050), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8052), 1, anon_sym_is, - STATE(2502), 1, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5870), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(8020), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8024), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8026), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8036), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8192), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5364), 9, + STATE(5365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664874,7 +665033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166498] = 21, + [166684] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664895,31 +665054,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6660), 1, + STATE(6657), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5365), 9, + STATE(5366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664929,7 +665088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -664952,7 +665111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166597] = 21, + [166783] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664973,31 +665132,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6664), 1, + STATE(6661), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5366), 9, + STATE(5367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665007,7 +665166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -665030,102 +665189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166696] = 38, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, - anon_sym_AMP, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - ACTIONS(7976), 1, - anon_sym_AMP_AMP, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7950), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7970), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7972), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5367), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [166829] = 21, + [166882] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665146,24 +665210,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7922), 1, sym__identifier_token, - ACTIONS(8002), 1, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(8004), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(8008), 1, + ACTIONS(7932), 1, anon_sym_SQUOTE, - ACTIONS(8010), 1, + ACTIONS(7934), 1, sym_integer_literal, - STATE(6498), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(6669), 1, + STATE(6665), 1, sym__preproc_expression, - ACTIONS(8006), 2, + ACTIONS(7930), 2, anon_sym_true, anon_sym_false, - STATE(6609), 6, + STATE(6648), 6, sym_character_literal, sym_boolean_literal, sym_identifier, @@ -665180,7 +665244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -665203,7 +665267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166928] = 40, + [166981] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665224,72 +665288,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(6389), 1, - anon_sym_as, - ACTIONS(7958), 1, - anon_sym_SLASH, - ACTIONS(7960), 1, - anon_sym_CARET, - ACTIONS(7962), 1, - anon_sym_PIPE, - ACTIONS(7964), 1, - anon_sym_AMP, - ACTIONS(7968), 1, - anon_sym_GT_GT, - ACTIONS(7974), 1, - anon_sym_DOT_DOT, - ACTIONS(7976), 1, - anon_sym_AMP_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7980), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7982), 1, - anon_sym_is, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7950), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7954), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7956), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7970), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7972), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(7920), 1, + sym_integer_literal, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6533), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6548), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, STATE(5369), 9, sym_preproc_region, sym_preproc_endregion, @@ -665300,7 +665322,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167065] = 26, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [167080] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665321,43 +665366,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(7926), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, + ACTIONS(7928), 1, anon_sym_BANG, - ACTIONS(6338), 1, - anon_sym_switch, - ACTIONS(6352), 1, - anon_sym_with, - ACTIONS(8130), 1, - anon_sym_SLASH, - ACTIONS(8146), 1, - anon_sym_DOT_DOT, - STATE(2455), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8128), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(7932), 1, + anon_sym_SQUOTE, + ACTIONS(7934), 1, + sym_integer_literal, + STATE(6483), 1, + sym__reserved_identifier, + STATE(6541), 1, + sym__preproc_expression, + ACTIONS(7930), 2, + anon_sym_true, + anon_sym_false, + STATE(6648), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, STATE(5370), 9, sym_preproc_region, sym_preproc_endregion, @@ -665368,22 +665400,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 14, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_on, anon_sym_equals, - anon_sym_as, - anon_sym_is, - [167174] = 40, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [167179] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665404,23 +665444,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -665444,11 +665484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(8194), 1, anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -665479,7 +665519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167310] = 40, + [167315] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665500,71 +665540,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8196), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_by, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, - anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, - anon_sym_AMP, - ACTIONS(8214), 1, - anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8212), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_operator, + ACTIONS(8200), 1, + anon_sym_this, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(6078), 1, + sym_explicit_interface_specifier, + STATE(6305), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5372), 9, sym_preproc_region, sym_preproc_endregion, @@ -665575,7 +665576,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167446] = 29, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [167419] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665596,48 +665620,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8234), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8238), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8202), 1, + anon_sym_SEMI, STATE(5373), 9, sym_preproc_region, sym_preproc_endregion, @@ -665648,19 +665632,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5153), 24, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [167560] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [167503] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665681,69 +665690,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8244), 1, + ACTIONS(8204), 1, anon_sym_COLON, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5374), 9, @@ -665756,7 +665765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167696] = 26, + [167639] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665777,43 +665786,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8236), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8242), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8240), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8234), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5375), 9, sym_preproc_region, sym_preproc_endregion, @@ -665824,21 +665861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [167804] = 24, + [167775] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665859,39 +665882,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8242), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8242), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8222), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5376), 9, sym_preproc_region, sym_preproc_endregion, @@ -665902,23 +665957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [167908] = 35, + [167911] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665939,66 +665978,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8240), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8242), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8244), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8232), 2, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5377), 9, sym_preproc_region, sym_preproc_endregion, @@ -666009,7 +666053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168034] = 36, + [168047] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666030,78 +666074,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(8246), 1, + anon_sym_RPAREN, + STATE(5378), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4900), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8236), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, - anon_sym_CARET, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4898), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5378), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [168162] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [168131] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666122,65 +666144,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8240), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8242), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8288), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8248), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5379), 9, sym_preproc_region, sym_preproc_endregion, @@ -666191,65 +666219,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168286] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_SLASH, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8234), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + [168267] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8196), 1, + anon_sym_LPAREN, + ACTIONS(8250), 1, + anon_sym_operator, + ACTIONS(8252), 1, + anon_sym_this, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(6055), 1, + sym_explicit_interface_specifier, + STATE(6306), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5380), 9, sym_preproc_region, sym_preproc_endregion, @@ -666260,21 +666276,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [168396] = 33, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [168371] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666295,64 +666320,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8240), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8242), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8288), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8254), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5381), 9, sym_preproc_region, sym_preproc_endregion, @@ -666363,7 +666395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168518] = 22, + [168507] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666384,35 +666416,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8242), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8256), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8222), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5382), 9, sym_preproc_region, sym_preproc_endregion, @@ -666423,25 +666491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [168618] = 37, + [168643] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666462,68 +666512,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, - anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_SLASH, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - STATE(2502), 1, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8258), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5383), 9, sym_preproc_region, sym_preproc_endregion, @@ -666534,7 +666587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168748] = 38, + [168779] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666555,69 +666608,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - STATE(2502), 1, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8260), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5384), 9, sym_preproc_region, sym_preproc_endregion, @@ -666628,7 +666683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168880] = 40, + [168915] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666649,69 +666704,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_EQ_GT, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8262), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5385), 9, @@ -666724,7 +666779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169016] = 40, + [169051] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666745,69 +666800,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8300), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8264), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5386), 9, @@ -666820,7 +666875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169152] = 40, + [169187] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666841,69 +666896,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_EQ_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8266), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5387), 9, @@ -666916,7 +666971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169288] = 40, + [169323] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666937,69 +666992,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_EQ_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8268), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5388), 9, @@ -667012,7 +667067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169424] = 40, + [169459] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667033,21 +667088,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -667071,13 +667126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8304), 1, + ACTIONS(8270), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -667108,7 +667163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169560] = 40, + [169595] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667129,23 +667184,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2065), 1, + anon_sym_SEMI, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -667167,13 +667224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8306), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -667204,7 +667259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169696] = 40, + [169731] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667225,69 +667280,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8272), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5391), 9, @@ -667300,7 +667355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169832] = 40, + [169867] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667321,69 +667376,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8310), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5392), 9, @@ -667396,7 +667451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169968] = 40, + [170003] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667417,69 +667472,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8312), 1, + ACTIONS(8276), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5393), 9, @@ -667492,7 +667547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170104] = 40, + [170139] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667513,69 +667568,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8314), 1, + ACTIONS(8278), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5394), 9, @@ -667588,7 +667643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170240] = 40, + [170275] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667609,69 +667664,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8316), 1, + ACTIONS(8280), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5395), 9, @@ -667684,7 +667739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170376] = 18, + [170411] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667705,130 +667760,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8318), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4058), 5, - anon_sym_COMMA, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5396), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4056), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [170468] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8320), 1, - anon_sym_SEMI, - STATE(5397), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, anon_sym_PIPE, + ACTIONS(8220), 1, anon_sym_AMP, + ACTIONS(8224), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5015), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8282), 1, + anon_sym_COLON, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [170552] = 40, + STATE(5396), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [170547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667849,72 +667856,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8322), 1, + ACTIONS(8284), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5398), 9, + STATE(5397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667924,7 +667931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170688] = 40, + [170683] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667945,105 +667952,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8324), 1, + ACTIONS(8286), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5399), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [170824] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8326), 1, - anon_sym_RPAREN, - STATE(5400), 9, + STATE(5398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668053,44 +668027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4908), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4906), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [170908] = 40, + [170819] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668111,72 +668048,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8328), 1, + ACTIONS(8288), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5401), 9, + STATE(5399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668186,7 +668123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171044] = 40, + [170955] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668207,72 +668144,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8330), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8290), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5402), 9, + STATE(5400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668282,7 +668219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171180] = 14, + [171091] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668303,56 +668240,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_and, - STATE(5403), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8292), 1, + anon_sym_COLON, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [171264] = 40, + STATE(5401), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [171227] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668373,72 +668336,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8334), 1, + ACTIONS(8294), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5404), 9, + STATE(5402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668448,7 +668411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171400] = 40, + [171363] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668469,21 +668432,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -668507,13 +668470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8336), 1, + ACTIONS(8296), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -668534,7 +668497,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5405), 9, + STATE(5403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668544,7 +668507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171536] = 40, + [171499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668565,72 +668528,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8298), 1, + anon_sym_RPAREN, + STATE(5404), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4900), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8254), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, anon_sym_PIPE, - ACTIONS(8260), 1, anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8338), 1, + anon_sym_DOT, + ACTIONS(4898), 24, + anon_sym_LBRACK, anon_sym_COLON, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8250), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8252), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5406), 9, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [171583] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4745), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668640,7 +668612,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171672] = 24, + ACTIONS(4743), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [171665] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668661,33 +668667,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(5103), 3, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8342), 1, - anon_sym_operator, - ACTIONS(8344), 1, - anon_sym_this, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(6111), 1, - sym_explicit_interface_specifier, - STATE(6306), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5407), 9, + aux_sym_preproc_if_token1, + STATE(5406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668697,15 +668681,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5101), 33, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_this, anon_sym_scoped, + anon_sym_params, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -668720,7 +668714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [171776] = 40, + sym__identifier_token, + [171747] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668741,72 +668736,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8346), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8300), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5408), 9, + STATE(5407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668816,7 +668811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171912] = 40, + [171883] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668837,72 +668832,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8350), 1, - anon_sym_in, - ACTIONS(8352), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8360), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8362), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8378), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8302), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5409), 9, + STATE(5408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668912,7 +668907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172048] = 40, + [172019] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668933,72 +668928,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8384), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8304), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5410), 9, + STATE(5409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669008,7 +669003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172184] = 40, + [172155] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669029,72 +669024,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_SEMI, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8306), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5411), 9, + STATE(5410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669104,7 +669099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172320] = 40, + [172291] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669125,72 +669120,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8386), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8308), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5412), 9, + STATE(5411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669200,7 +669195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172456] = 40, + [172427] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669221,72 +669216,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8388), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8310), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5413), 9, + STATE(5412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669296,7 +669291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172592] = 40, + [172563] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669317,72 +669312,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8390), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8312), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5414), 9, + STATE(5413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669392,7 +669387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172728] = 40, + [172699] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669413,72 +669408,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8392), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8314), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5415), 9, + STATE(5414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669488,7 +669483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172864] = 40, + [172835] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669509,72 +669504,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8394), 1, + ACTIONS(8316), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5416), 9, + STATE(5415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669584,7 +669579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173000] = 40, + [172971] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669605,72 +669600,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8396), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5417), 9, + ACTIONS(5682), 5, + anon_sym_in, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669680,7 +669670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173136] = 40, + [173097] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669701,72 +669691,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8398), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8340), 1, + anon_sym_CARET, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5418), 9, + ACTIONS(5682), 4, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669776,7 +669762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173272] = 40, + [173225] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669797,72 +669783,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8400), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5419), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 5, + anon_sym_in, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669872,7 +669852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173408] = 40, + [173349] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669893,72 +669873,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8402), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5420), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_in, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669968,7 +669941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173544] = 40, + [173471] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669989,72 +669962,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8404), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5421), 9, + ACTIONS(5682), 4, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670064,7 +670034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173680] = 40, + [173601] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670085,72 +670055,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8338), 1, anon_sym_is, - ACTIONS(8406), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, + anon_sym_AMP_AMP, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5422), 9, + ACTIONS(5682), 3, + anon_sym_in, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670160,7 +670128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173816] = 40, + [173733] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670181,72 +670149,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5682), 1, + anon_sym_in, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8408), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5423), 9, + STATE(5422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670256,7 +670224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173952] = 40, + [173869] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670277,72 +670245,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(6571), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(6573), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(6575), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(6585), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(6589), 1, anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8410), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5424), 9, + STATE(5423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670352,7 +670320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174088] = 40, + [174005] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670373,72 +670341,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, - anon_sym_EQ_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8236), 1, - anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_SLASH, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - STATE(2502), 1, + ACTIONS(8350), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5425), 9, + STATE(5424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670448,7 +670416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174224] = 40, + [174141] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670469,69 +670437,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8384), 1, + anon_sym_by, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8412), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5425), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [174277] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5238), 1, + anon_sym_in, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8324), 1, + anon_sym_SLASH, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8330), 1, + anon_sym_GT_GT, + ACTIONS(8336), 1, + anon_sym_DOT_DOT, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, + anon_sym_AMP_AMP, + ACTIONS(8346), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8348), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8390), 1, + anon_sym_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8318), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8320), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8322), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5426), 9, @@ -670544,7 +670608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174360] = 40, + [174413] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670565,69 +670629,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8414), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8392), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5427), 9, @@ -670640,7 +670704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174496] = 40, + [174549] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670661,69 +670725,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5866), 1, + anon_sym_equals, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8396), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8420), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8424), 1, anon_sym_QMARK_QMARK, - ACTIONS(8416), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5428), 9, @@ -670736,7 +670800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174632] = 40, + [174685] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670757,21 +670821,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -670795,13 +670859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8418), 1, + ACTIONS(8430), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -670832,7 +670896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174768] = 40, + [174821] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670853,21 +670917,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -670891,13 +670955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8420), 1, + ACTIONS(8432), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -670928,7 +670992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174904] = 40, + [174957] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670949,21 +671013,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -670987,13 +671051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8422), 1, + ACTIONS(8434), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -671024,7 +671088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175040] = 40, + [175093] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671045,69 +671109,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8424), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8436), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5432), 9, @@ -671120,7 +671184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175176] = 35, + [175229] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671141,66 +671205,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4024), 1, + anon_sym_LBRACE, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, - anon_sym_SLASH, - ACTIONS(8364), 1, - anon_sym_AMP, - ACTIONS(8368), 1, - anon_sym_GT_GT, - ACTIONS(8374), 1, - anon_sym_DOT_DOT, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(6757), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8366), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8370), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8372), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_in, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_DOT, + ACTIONS(8441), 1, + anon_sym_LPAREN, + STATE(7315), 1, + sym_attribute_argument_list, + ACTIONS(8438), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(5433), 9, sym_preproc_region, sym_preproc_endregion, @@ -671211,7 +671234,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175302] = 36, + ACTIONS(4022), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [175327] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671232,67 +671282,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_in, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8358), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8364), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8382), 1, + ACTIONS(8338), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, + anon_sym_AMP_AMP, + ACTIONS(8346), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8348), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8390), 1, + anon_sym_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8348), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5434), 9, sym_preproc_region, sym_preproc_endregion, @@ -671303,7 +671357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175430] = 34, + [175463] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671324,76 +671378,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(8444), 1, + anon_sym_RPAREN, + STATE(5435), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4900), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8368), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(8374), 1, - anon_sym_DOT_DOT, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(4898), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8356), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_in, - anon_sym_CARET, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5435), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [175554] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [175547] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671414,64 +671448,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8368), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8372), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_in, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5436), 9, sym_preproc_region, sym_preproc_endregion, @@ -671482,7 +671500,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175676] = 37, + ACTIONS(5682), 11, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [175661] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671503,68 +671533,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(8360), 1, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(8362), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7245), 1, + anon_sym_COLON, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8382), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, STATE(5437), 9, sym_preproc_region, sym_preproc_endregion, @@ -671575,7 +671608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175806] = 38, + [175797] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671596,80 +671629,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(8446), 1, + anon_sym_and, + ACTIONS(8448), 1, + anon_sym_or, + STATE(5438), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8362), 1, anon_sym_PIPE, - ACTIONS(8364), 1, anon_sym_AMP, - ACTIONS(8368), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, - anon_sym_DOT_DOT, - ACTIONS(8376), 1, - anon_sym_AMP_AMP, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(5480), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8356), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_in, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5438), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [175938] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [175883] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671690,71 +671700,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8450), 1, + aux_sym_preproc_if_token3, + STATE(7537), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(4745), 3, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_in, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8358), 1, - anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8362), 1, - anon_sym_PIPE, - ACTIONS(8364), 1, - anon_sym_AMP, - ACTIONS(8368), 1, - anon_sym_GT_GT, - ACTIONS(8374), 1, - anon_sym_DOT_DOT, - ACTIONS(8376), 1, - anon_sym_AMP_AMP, - ACTIONS(8378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8356), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8366), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8370), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8372), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, STATE(5439), 9, sym_preproc_region, sym_preproc_endregion, @@ -671765,7 +671723,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176074] = 40, + ACTIONS(4743), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [175973] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671786,69 +671773,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8426), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8452), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5440), 9, @@ -671861,7 +671848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176210] = 40, + [176109] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671882,21 +671869,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -671920,13 +671907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8428), 1, + ACTIONS(8454), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -671957,7 +671944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176346] = 40, + [176245] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671978,69 +671965,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8430), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8456), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5442), 9, @@ -672053,7 +672040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176482] = 40, + [176381] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672074,71 +672061,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, - anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, - anon_sym_AMP, ACTIONS(8214), 1, - anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, + anon_sym_SLASH, ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8432), 1, - anon_sym_by, - STATE(2502), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8212), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(5443), 9, sym_preproc_region, sym_preproc_endregion, @@ -672149,7 +672108,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176618] = 29, + ACTIONS(5682), 13, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [176489] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672170,48 +672143,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, - anon_sym_SLASH, - ACTIONS(8214), 1, - anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8212), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, STATE(5444), 9, sym_preproc_region, sym_preproc_endregion, @@ -672222,8 +672186,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(5682), 15, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -672231,10 +672200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - [176732] = 40, + [176593] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672255,71 +672223,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_in, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8352), 1, - anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8362), 1, - anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, - anon_sym_AMP_AMP, - ACTIONS(8378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 5, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(5445), 9, sym_preproc_region, sym_preproc_endregion, @@ -672330,7 +672293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176868] = 40, + [176719] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672351,71 +672314,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8434), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5682), 4, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(5446), 9, sym_preproc_region, sym_preproc_endregion, @@ -672426,7 +672385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177004] = 26, + [176847] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672447,43 +672406,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8220), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8458), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5447), 9, sym_preproc_region, sym_preproc_endregion, @@ -672494,21 +672481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - [177112] = 24, + [176983] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672529,39 +672502,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8220), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8222), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(5682), 5, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(5448), 9, sym_preproc_region, sym_preproc_endregion, @@ -672572,23 +672571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - [177216] = 35, + [177107] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672609,66 +672592,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, - anon_sym_SLASH, - ACTIONS(8210), 1, - anon_sym_AMP, ACTIONS(8214), 1, - anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8228), 1, - anon_sym_as, + anon_sym_SLASH, ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, STATE(5449), 9, sym_preproc_region, sym_preproc_endregion, @@ -672679,7 +672640,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177342] = 36, + ACTIONS(5682), 13, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [177217] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672700,67 +672675,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8228), 1, - anon_sym_as, ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8460), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, STATE(5450), 9, sym_preproc_region, sym_preproc_endregion, @@ -672771,7 +672750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177470] = 40, + [177353] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672792,71 +672771,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8436), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, STATE(5451), 9, sym_preproc_region, sym_preproc_endregion, @@ -672867,7 +672839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177606] = 34, + [177475] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672888,65 +672860,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8214), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8462), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, STATE(5452), 9, sym_preproc_region, sym_preproc_endregion, @@ -672957,7 +672935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177730] = 27, + [177611] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672978,41 +672956,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8204), 1, - anon_sym_SLASH, - ACTIONS(8220), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, @@ -673026,7 +672995,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5924), 17, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -673034,13 +673006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - [177840] = 33, + anon_sym_with, + [177711] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673061,64 +673034,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, - anon_sym_SLASH, + ACTIONS(7255), 1, + anon_sym_as, ACTIONS(8214), 1, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8228), 1, - anon_sym_as, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5682), 4, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, STATE(5454), 9, sym_preproc_region, sym_preproc_endregion, @@ -673129,7 +673106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177962] = 22, + [177841] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673150,64 +673127,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8238), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5455), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 17, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, + ACTIONS(5682), 3, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [178062] = 37, + STATE(5455), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [177973] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673228,68 +673221,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5682), 1, + anon_sym_COLON, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8228), 1, - anon_sym_as, ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, STATE(5456), 9, sym_preproc_region, sym_preproc_endregion, @@ -673300,7 +673296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178192] = 38, + [178109] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673321,69 +673317,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8464), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, STATE(5457), 9, sym_preproc_region, sym_preproc_endregion, @@ -673394,7 +673392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178324] = 40, + [178245] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673415,69 +673413,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_by, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8204), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8466), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5458), 9, @@ -673490,7 +673488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178460] = 40, + [178381] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673511,69 +673509,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_equals, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8396), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8420), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8424), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8438), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5459), 9, @@ -673586,7 +673584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178596] = 40, + [178517] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673607,69 +673605,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_in, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8352), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8360), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8362), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8378), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5460), 9, @@ -673682,7 +673680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178732] = 40, + [178653] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673703,69 +673701,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_EQ_GT, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_by, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(8366), 1, + anon_sym_AMP, + ACTIONS(8370), 1, + anon_sym_GT_GT, + ACTIONS(8376), 1, + anon_sym_DOT_DOT, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - STATE(2502), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(8352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5461), 9, @@ -673778,7 +673776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178868] = 40, + [178789] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673799,72 +673797,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, + STATE(5462), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3678), 27, + anon_sym_alias, + anon_sym_global, + anon_sym_COLON, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, anon_sym_by, - ACTIONS(5322), 1, + anon_sym_select, + sym__identifier_token, + [178877] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7604), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5462), 9, + STATE(5463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673874,7 +673944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179004] = 40, + [179013] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673895,72 +673965,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5866), 1, + anon_sym_in, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(6671), 1, - anon_sym_CARET, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(8336), 1, + anon_sym_DOT_DOT, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, - ACTIONS(7245), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8390), 1, anon_sym_QMARK, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8278), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5463), 9, + STATE(5464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673970,7 +674040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179140] = 15, + [179149] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673991,57 +674061,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_and, - ACTIONS(8442), 1, - anon_sym_or, - STATE(5464), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, anon_sym_PIPE, + ACTIONS(8220), 1, anon_sym_AMP, + ACTIONS(8224), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8468), 1, + anon_sym_COLON, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [179226] = 40, + STATE(5465), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [179285] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674062,72 +674157,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_by, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_in, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(8390), 1, + anon_sym_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5465), 9, + STATE(5466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674137,7 +674232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179362] = 14, + [179421] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674158,56 +674253,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, - anon_sym_and, - STATE(5466), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6703), 1, anon_sym_SLASH, + ACTIONS(6705), 1, + anon_sym_CARET, + ACTIONS(6707), 1, anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6721), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6725), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8178), 1, + anon_sym_COLON, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6695), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [179446] = 15, + STATE(5467), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [179557] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674228,11 +674349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8440), 1, + ACTIONS(8470), 1, anon_sym_and, - ACTIONS(8442), 1, - anon_sym_or, - STATE(5467), 9, + STATE(5468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674242,7 +674361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(6201), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -674254,7 +674373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 23, + ACTIONS(6199), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -674268,17 +674387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [179532] = 40, + [179641] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674299,72 +674419,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8446), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8472), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5468), 9, + STATE(5469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674374,7 +674494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179668] = 40, + [179777] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674395,72 +674515,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_COLON, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8448), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5469), 9, + STATE(5470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674470,7 +674590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179804] = 40, + [179913] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674491,21 +674611,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -674529,13 +674649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8450), 1, + ACTIONS(8474), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -674556,7 +674676,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5470), 9, + STATE(5471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674566,7 +674686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179940] = 24, + [180049] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674587,33 +674707,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8340), 1, - anon_sym_LPAREN, - ACTIONS(8452), 1, - anon_sym_operator, - ACTIONS(8454), 1, - anon_sym_this, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(6063), 1, - sym_explicit_interface_specifier, - STATE(6307), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5471), 9, + ACTIONS(8476), 1, + anon_sym_and, + STATE(5472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674623,126 +674719,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [180044] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8254), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, anon_sym_PIPE, - ACTIONS(8260), 1, anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8456), 1, - anon_sym_COLON, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8250), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8252), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5472), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [180180] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [180133] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674763,69 +674777,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8396), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8420), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8424), 1, anon_sym_QMARK_QMARK, - ACTIONS(7564), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + ACTIONS(8478), 1, + anon_sym_equals, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5473), 9, @@ -674838,7 +674852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180316] = 40, + [180269] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674859,69 +674873,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, - anon_sym_in, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8352), 1, + ACTIONS(8482), 1, anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8360), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(8362), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, + ACTIONS(8506), 1, anon_sym_AMP_AMP, - ACTIONS(8378), 1, + ACTIONS(8508), 1, anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, + ACTIONS(8510), 1, anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, + ACTIONS(8512), 1, + anon_sym_on, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5474), 9, @@ -674934,7 +674948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180452] = 40, + [180405] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674955,69 +674969,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8458), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8518), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5475), 9, @@ -675030,7 +675044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180588] = 40, + [180541] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675051,69 +675065,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_in, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8352), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8360), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8362), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8378), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8520), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5476), 9, @@ -675126,7 +675140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180724] = 40, + [180677] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675147,69 +675161,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(6679), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8178), 1, - anon_sym_COLON, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8278), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(8522), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5477), 9, @@ -675222,7 +675236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180860] = 40, + [180813] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675243,69 +675257,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8460), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + ACTIONS(8524), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5478), 9, @@ -675318,7 +675332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180996] = 40, + [180949] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675339,21 +675353,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -675377,13 +675391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8462), 1, + ACTIONS(8526), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -675414,7 +675428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181132] = 14, + [181085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675435,8 +675449,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8464), 1, - anon_sym_RPAREN, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5866), 1, + anon_sym_on, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8482), 1, + anon_sym_QMARK, + ACTIONS(8488), 1, + anon_sym_SLASH, + ACTIONS(8490), 1, + anon_sym_CARET, + ACTIONS(8492), 1, + anon_sym_PIPE, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym_GT_GT, + ACTIONS(8504), 1, + anon_sym_DOT_DOT, + ACTIONS(8506), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8480), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8484), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8486), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5480), 9, sym_preproc_region, sym_preproc_endregion, @@ -675447,44 +675524,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4908), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [181221] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, anon_sym_PIPE, + ACTIONS(8220), 1, anon_sym_AMP, + ACTIONS(8224), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4906), 24, - anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8528), 1, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [181216] = 40, + STATE(5481), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [181357] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675505,72 +675641,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_on, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6523), 1, + ACTIONS(8482), 1, + anon_sym_QMARK, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(6527), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(6543), 1, + ACTIONS(8504), 1, + anon_sym_DOT_DOT, + ACTIONS(8506), 1, anon_sym_AMP_AMP, - ACTIONS(6545), 1, + ACTIONS(8508), 1, anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, + ACTIONS(8510), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(8514), 1, anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7319), 1, + ACTIONS(8516), 1, anon_sym_is, - ACTIONS(7488), 1, - anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5481), 9, + STATE(5482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675580,7 +675716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181352] = 40, + [181493] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675601,72 +675737,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8466), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8530), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5482), 9, + STATE(5483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675676,7 +675812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181488] = 40, + [181629] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675697,72 +675833,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8500), 1, - anon_sym_equals, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8532), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5483), 9, + STATE(5484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675772,7 +675908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181624] = 40, + [181765] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675793,72 +675929,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8508), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8514), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8534), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8538), 1, - anon_sym_on, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8534), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5484), 9, + STATE(5485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675868,7 +676004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181760] = 40, + [181901] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675889,72 +676025,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8544), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8536), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5485), 9, + STATE(5486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675964,7 +676100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181896] = 40, + [182037] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675985,72 +676121,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8546), 1, + ACTIONS(8538), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5486), 9, + STATE(5487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676060,7 +676196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182032] = 16, + [182173] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676081,20 +676217,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, + ACTIONS(8540), 1, + anon_sym_RPAREN, + STATE(5488), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4900), 11, anon_sym_LT, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 6, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4898), 24, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_DOT, - STATE(5487), 9, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [182257] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_and, + ACTIONS(8544), 1, + anon_sym_or, + STATE(5489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676104,35 +676301,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 27, - anon_sym_alias, - anon_sym_global, - anon_sym_COLON, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [182120] = 40, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5480), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [182343] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676153,72 +676358,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8548), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8546), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5488), 9, + STATE(5490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676228,7 +676433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182256] = 40, + [182479] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676249,23 +676454,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -676287,13 +676492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8550), 1, + ACTIONS(8548), 1, anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -676314,7 +676519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5489), 9, + STATE(5491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676324,7 +676529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182392] = 40, + [182615] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676345,82 +676550,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5061), 3, anon_sym_LBRACK, - ACTIONS(5769), 1, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5492), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5059), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, anon_sym_on, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8508), 1, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [182697] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_and, + ACTIONS(8544), 1, + anon_sym_or, + STATE(5493), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8514), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8516), 1, - anon_sym_CARET, - ACTIONS(8518), 1, anon_sym_PIPE, - ACTIONS(8520), 1, anon_sym_AMP, - ACTIONS(8524), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - ACTIONS(8532), 1, - anon_sym_AMP_AMP, - ACTIONS(8534), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6171), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5490), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [182528] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [182783] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676441,72 +676690,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8552), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8550), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5491), 9, + STATE(5494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676516,7 +676765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182664] = 40, + [182919] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676537,82 +676786,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5073), 3, anon_sym_LBRACK, - ACTIONS(5777), 1, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5495), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5071), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, anon_sym_on, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8508), 1, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [183001] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8552), 1, + anon_sym_and, + STATE(5496), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8514), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8516), 1, - anon_sym_CARET, - ACTIONS(8518), 1, anon_sym_PIPE, - ACTIONS(8520), 1, anon_sym_AMP, - ACTIONS(8524), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - ACTIONS(8532), 1, - anon_sym_AMP_AMP, - ACTIONS(8534), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5492), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [182800] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [183085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676633,72 +676925,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, ACTIONS(8554), 1, - anon_sym_COLON, - STATE(2502), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5493), 9, + STATE(5497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676708,7 +677000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182936] = 40, + [183221] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676729,72 +677021,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, ACTIONS(8556), 1, - anon_sym_COLON, - STATE(2502), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5494), 9, + STATE(5498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676804,7 +677096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183072] = 40, + [183357] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676825,72 +677117,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, ACTIONS(8558), 1, - anon_sym_COLON, - STATE(2502), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5495), 9, + STATE(5499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676900,7 +677192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183208] = 40, + [183493] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676921,72 +677213,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, + ACTIONS(8390), 1, + anon_sym_QMARK, ACTIONS(8560), 1, - anon_sym_SEMI, - STATE(2502), 1, + anon_sym_in, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5496), 9, + STATE(5500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676996,7 +677288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183344] = 40, + [183629] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677017,23 +677309,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -677057,11 +677349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(8562), 1, anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -677082,7 +677374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5497), 9, + STATE(5501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677092,7 +677384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183480] = 40, + [183765] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677113,23 +677405,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2051), 1, + anon_sym_SEMI, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -677151,13 +677445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8564), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -677178,7 +677470,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5498), 9, + STATE(5502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677188,7 +677480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183616] = 40, + [183901] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677209,107 +677501,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8566), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8564), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5499), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [183752] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8568), 1, - anon_sym_and, - ACTIONS(8570), 1, - anon_sym_or, - STATE(5500), 9, + STATE(5503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677319,43 +677576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [183838] = 40, + [184037] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677376,72 +677597,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8572), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8566), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5501), 9, + STATE(5504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677451,7 +677672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183974] = 17, + [184173] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677472,20 +677693,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8574), 1, - aux_sym_preproc_if_token3, - STATE(7708), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(4749), 3, + ACTIONS(3787), 3, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, - STATE(5502), 9, + STATE(5505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677495,7 +677707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 28, + ACTIONS(3785), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -677503,10 +677715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delegate, anon_sym_async, anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_this, anon_sym_scoped, + anon_sym_params, anon_sym_var, sym_predefined_type, anon_sym_yield, @@ -677524,78 +677741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [184064] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8568), 1, - anon_sym_and, - ACTIONS(8570), 1, - anon_sym_or, - STATE(5503), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [184150] = 40, + [184255] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677616,72 +677762,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8576), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8568), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5504), 9, + STATE(5506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677691,7 +677837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184286] = 40, + [184391] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677712,21 +677858,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -677750,13 +677896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8578), 1, + ACTIONS(8570), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -677777,7 +677923,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5505), 9, + STATE(5507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677787,7 +677933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184422] = 40, + [184527] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677808,72 +677954,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_SEMI, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5057), 3, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, - anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_GT_GT, - ACTIONS(7179), 1, - anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7161), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5506), 9, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677883,7 +677968,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184558] = 40, + ACTIONS(5055), 33, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_this, + anon_sym_scoped, + anon_sym_params, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [184609] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677904,21 +678023,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -677942,13 +678061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8580), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8572), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -677969,7 +678088,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5507), 9, + STATE(5509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677979,7 +678098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184694] = 40, + [184745] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678000,72 +678119,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8582), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8574), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5508), 9, + STATE(5510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678075,7 +678194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184830] = 40, + [184881] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678096,82 +678215,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8552), 1, + anon_sym_and, + ACTIONS(8576), 1, + anon_sym_or, + STATE(5511), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7295), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8584), 1, - anon_sym_RPAREN, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(5480), 23, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5509), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [184966] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [184967] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678192,72 +678286,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8586), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8578), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5510), 9, + STATE(5512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678267,7 +678361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185102] = 40, + [185103] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678288,72 +678382,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8352), 1, + ACTIONS(8580), 1, + anon_sym_into, + STATE(5517), 1, + aux_sym__query_body_repeat2, + STATE(5513), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8358), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8362), 1, anon_sym_PIPE, - ACTIONS(8364), 1, anon_sym_AMP, - ACTIONS(8368), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, - anon_sym_DOT_DOT, - ACTIONS(8376), 1, - anon_sym_AMP_AMP, - ACTIONS(8378), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, - anon_sym_is, - ACTIONS(8588), 1, - anon_sym_in, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6014), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8354), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8356), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5511), 9, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185189] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8580), 1, + anon_sym_into, + STATE(5518), 1, + aux_sym__query_body_repeat2, + STATE(5514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678363,7 +678467,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185238] = 40, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185275] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678384,23 +678524,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2025), 1, + anon_sym_SEMI, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -678422,13 +678564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8590), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -678449,7 +678589,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5512), 9, + STATE(5515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678459,7 +678599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185374] = 40, + [185411] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678480,72 +678620,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8552), 1, + anon_sym_and, + ACTIONS(8576), 1, + anon_sym_or, + STATE(5516), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8254), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, anon_sym_PIPE, - ACTIONS(8260), 1, anon_sym_AMP, - ACTIONS(8264), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8592), 1, + anon_sym_DOT, + ACTIONS(6171), 23, + anon_sym_LBRACK, anon_sym_COLON, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8250), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8252), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5513), 9, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185497] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8582), 1, + anon_sym_into, + STATE(5517), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678555,7 +678703,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185510] = 40, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6018), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185581] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678576,82 +678761,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8580), 1, + anon_sym_into, + STATE(5517), 1, + aux_sym__query_body_repeat2, + STATE(5518), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7163), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, - anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8594), 1, - anon_sym_SEMI, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6025), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5514), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [185646] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185667] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678672,21 +678832,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -678710,13 +678870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8596), 1, + ACTIONS(8585), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -678737,7 +678897,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5515), 9, + STATE(5519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678747,7 +678907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185782] = 40, + [185803] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678768,72 +678928,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_SEMI, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4753), 1, + aux_sym_preproc_if_token3, + STATE(7655), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(4745), 3, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, - anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_GT_GT, - ACTIONS(7179), 1, - anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7161), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5516), 9, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678843,7 +678951,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185918] = 40, + ACTIONS(4743), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [185893] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678864,72 +679001,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8598), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5517), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678939,7 +679053,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186054] = 40, + ACTIONS(5682), 11, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [186007] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678960,72 +679086,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8600), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8587), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5518), 9, + STATE(5522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679035,7 +679161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186190] = 40, + [186143] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679056,72 +679182,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8602), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8262), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5519), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679131,7 +679229,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186326] = 15, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [186251] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679152,38 +679264,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_and, - ACTIONS(8604), 1, - anon_sym_or, - STATE(5520), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5524), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -679193,16 +679317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [186412] = 40, + [186355] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679223,72 +679344,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8426), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8606), 1, - anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5521), 9, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679298,7 +679414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186548] = 15, + [186481] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679319,82 +679435,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8608), 1, - anon_sym_into, - STATE(5526), 1, - aux_sym__query_body_repeat2, - STATE(5522), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8402), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8404), 1, + anon_sym_CARET, + ACTIONS(8408), 1, anon_sym_AMP, + ACTIONS(8412), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5682), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [186634] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8608), 1, - anon_sym_into, - STATE(5527), 1, - aux_sym__query_body_repeat2, - STATE(5523), 9, + anon_sym_equals, + STATE(5526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679404,43 +679506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [186720] = 40, + [186609] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679461,72 +679527,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8610), 1, - anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5524), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679536,7 +679596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186856] = 15, + [186733] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679557,11 +679617,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_and, - ACTIONS(8604), 1, - anon_sym_or, - STATE(5525), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8402), 1, + anon_sym_SLASH, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679571,26 +679665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -679598,16 +679673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [186942] = 14, + [186843] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679628,56 +679700,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8612), 1, - anon_sym_into, - STATE(5526), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8402), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8412), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6046), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [187026] = 15, + anon_sym_equals, + STATE(5529), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [186965] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679698,37 +679789,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8608), 1, - anon_sym_into, - STATE(5526), 1, - aux_sym__query_body_repeat2, - STATE(5527), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5530), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5924), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -679739,16 +679839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [187112] = 40, + [187065] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679769,72 +679867,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8615), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5528), 9, + ACTIONS(5682), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679844,7 +679939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187248] = 14, + [187195] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679865,56 +679960,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8617), 1, - anon_sym_and, - STATE(5529), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8402), 1, anon_sym_SLASH, + ACTIONS(8404), 1, + anon_sym_CARET, + ACTIONS(8406), 1, anon_sym_PIPE, + ACTIONS(8408), 1, anon_sym_AMP, + ACTIONS(8412), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8420), 1, + anon_sym_AMP_AMP, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, + ACTIONS(5682), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [187332] = 14, + anon_sym_equals, + STATE(5532), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [187327] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679935,81 +680054,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym_RPAREN, - STATE(5530), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4908), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5682), 1, + anon_sym_equals, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8402), 1, anon_sym_SLASH, + ACTIONS(8404), 1, + anon_sym_CARET, + ACTIONS(8406), 1, anon_sym_PIPE, + ACTIONS(8408), 1, anon_sym_AMP, + ACTIONS(8412), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4906), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8420), 1, + anon_sym_AMP_AMP, + ACTIONS(8422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8424), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [187416] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4749), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5531), 9, + STATE(5533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680019,41 +680129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [187498] = 13, + [187463] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680074,11 +680150,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4981), 3, - anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5238), 1, + anon_sym_equals, + ACTIONS(5316), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5532), 9, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8396), 1, + anon_sym_QMARK, + ACTIONS(8402), 1, + anon_sym_SLASH, + ACTIONS(8404), 1, + anon_sym_CARET, + ACTIONS(8406), 1, + anon_sym_PIPE, + ACTIONS(8408), 1, + anon_sym_AMP, + ACTIONS(8412), 1, + anon_sym_GT_GT, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8420), 1, + anon_sym_AMP_AMP, + ACTIONS(8422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8424), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8400), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8410), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8414), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8416), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680088,41 +680225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4979), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [187580] = 40, + [187599] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680143,72 +680246,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, + ACTIONS(5794), 1, anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5533), 9, + STATE(5535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680218,7 +680321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187716] = 22, + [187735] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680239,23 +680342,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -680268,7 +680371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5534), 9, + STATE(5536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680296,7 +680399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [187816] = 40, + [187835] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680317,72 +680420,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5535), 9, + STATE(5537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680392,7 +680495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187952] = 15, + [187971] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680413,11 +680516,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8623), 1, + ACTIONS(8476), 1, anon_sym_and, - ACTIONS(8625), 1, + ACTIONS(8591), 1, anon_sym_or, - STATE(5536), 9, + STATE(5538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680427,7 +680530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -680439,7 +680542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 23, + ACTIONS(5480), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -680463,7 +680566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [188038] = 40, + [188057] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680484,72 +680587,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8627), 1, + ACTIONS(8593), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5537), 9, + STATE(5539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680559,7 +680662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188174] = 40, + [188193] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680580,72 +680683,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_equals, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8396), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8408), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8412), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8420), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8424), 1, anon_sym_QMARK_QMARK, - ACTIONS(8629), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5538), 9, + STATE(5540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680655,7 +680758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188310] = 15, + [188329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680676,11 +680779,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8623), 1, + ACTIONS(8476), 1, anon_sym_and, - ACTIONS(8625), 1, + ACTIONS(8591), 1, anon_sym_or, - STATE(5539), 9, + STATE(5541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680690,7 +680793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -680702,7 +680805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 23, + ACTIONS(6171), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -680726,7 +680829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [188396] = 40, + [188415] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680747,72 +680850,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, - anon_sym_equals, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(8595), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5540), 9, + STATE(5542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680822,7 +680925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188532] = 14, + [188551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680843,9 +680946,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8631), 1, - anon_sym_RPAREN, - STATE(5541), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_SLASH, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8597), 1, + anon_sym_SEMI, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680855,44 +681021,199 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4908), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [188687] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, anon_sym_PIPE, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7173), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4906), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7179), 1, + anon_sym_DOT_DOT, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8599), 1, + anon_sym_SEMI, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + STATE(5544), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [188823] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_by, + ACTIONS(6423), 1, anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, + anon_sym_SLASH, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, + anon_sym_AMP, + ACTIONS(8370), 1, + anon_sym_GT_GT, + ACTIONS(8376), 1, anon_sym_DOT_DOT, + ACTIONS(8378), 1, anon_sym_AMP_AMP, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [188616] = 22, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8358), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8368), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8372), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8374), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5545), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [188959] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680913,23 +681234,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -680942,7 +681263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5542), 9, + STATE(5546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680970,7 +681291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [188716] = 15, + [189059] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680991,11 +681312,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8633), 1, - anon_sym_into, - STATE(5701), 1, - aux_sym__query_body_repeat2, - STATE(5543), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8601), 1, + anon_sym_COLON, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8222), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681005,43 +681387,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + [189195] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, anon_sym_SLASH, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, anon_sym_PIPE, + ACTIONS(8366), 1, anon_sym_AMP, + ACTIONS(8370), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6036), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8376), 1, + anon_sym_DOT_DOT, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + ACTIONS(8603), 1, + anon_sym_by, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [188802] = 13, + STATE(5548), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [189331] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681062,11 +681504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5013), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5544), 9, + ACTIONS(8446), 1, + anon_sym_and, + STATE(5549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681076,41 +681516,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5011), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [188884] = 40, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [189415] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681131,72 +681574,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8466), 1, + anon_sym_EQ_GT, + ACTIONS(8607), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8633), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8635), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8635), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5545), 9, + STATE(5550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681206,7 +681649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189020] = 40, + [189551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681227,72 +681670,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8637), 1, + ACTIONS(8639), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5546), 9, + STATE(5551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681302,7 +681745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189156] = 40, + [189687] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681323,72 +681766,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8639), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8641), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5547), 9, + STATE(5552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681398,7 +681841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189292] = 40, + [189823] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681419,21 +681862,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -681457,13 +681900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8641), 1, + ACTIONS(8643), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -681484,7 +681927,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5548), 9, + STATE(5553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681494,7 +681937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189428] = 40, + [189959] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681515,82 +681958,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8645), 1, + anon_sym_into, + STATE(5702), 1, + aux_sym__query_body_repeat2, + STATE(5554), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(8204), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, anon_sym_PIPE, - ACTIONS(8210), 1, anon_sym_AMP, - ACTIONS(8214), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, - anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8643), 1, - anon_sym_by, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6008), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8202), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5549), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [189564] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [190045] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681611,72 +682029,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8645), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8647), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5550), 9, + STATE(5555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681686,7 +682104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189700] = 40, + [190181] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681707,72 +682125,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(8649), 1, + anon_sym_and, + ACTIONS(8651), 1, + anon_sym_or, + STATE(5556), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5482), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(5480), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [190267] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, - anon_sym_by, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8653), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5551), 9, + STATE(5557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681782,7 +682271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189836] = 14, + [190403] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681803,56 +682292,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_and, - STATE(5552), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(7301), 1, anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8655), 1, + anon_sym_RPAREN, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [189920] = 29, + STATE(5558), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [190539] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681873,96 +682388,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8254), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8264), 1, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8657), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8250), 2, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5553), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_COLON, - anon_sym_CARET, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [190034] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5045), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5554), 9, + STATE(5559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681972,41 +682463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5043), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [190116] = 40, + [190675] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682027,72 +682484,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8647), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8390), 1, + anon_sym_QMARK, + ACTIONS(8659), 1, + anon_sym_in, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5555), 9, + STATE(5560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682102,7 +682559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190252] = 26, + [190811] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682123,44 +682580,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8254), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8270), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8661), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8252), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5556), 9, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682170,21 +682655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [190360] = 40, + [190947] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682205,72 +682676,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5794), 1, + anon_sym_equals, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(8396), 1, + anon_sym_QMARK, + ACTIONS(8402), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(8404), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(8406), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(8408), 1, + anon_sym_AMP, + ACTIONS(8412), 1, + anon_sym_GT_GT, + ACTIONS(8418), 1, + anon_sym_DOT_DOT, + ACTIONS(8420), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(8422), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(8424), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - ACTIONS(8456), 1, - anon_sym_EQ_GT, - STATE(2502), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(8394), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(8400), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(8410), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(8414), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(8416), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5557), 9, + STATE(5562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682280,7 +682751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190496] = 24, + [191083] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682301,30 +682772,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8270), 1, + ACTIONS(8418), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -682334,7 +682801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5558), 9, + STATE(5563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682344,8 +682811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_COLON, + ACTIONS(1229), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -682355,12 +682821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_equals, anon_sym_as, anon_sym_is, - [190600] = 40, + anon_sym_with, + [191183] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682381,72 +682850,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8649), 1, + ACTIONS(8663), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5559), 9, + STATE(5564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682456,7 +682925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190736] = 15, + [191319] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682477,11 +682946,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(8470), 1, anon_sym_and, - ACTIONS(8651), 1, + ACTIONS(8665), 1, anon_sym_or, - STATE(5560), 9, + STATE(5565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682491,7 +682960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(5482), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -682503,7 +682972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5416), 23, + ACTIONS(5480), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -682522,12 +682991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [190822] = 40, + [191405] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682548,72 +683017,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8653), 1, + ACTIONS(8667), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5561), 9, + STATE(5566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682623,7 +683092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190958] = 15, + [191541] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682644,11 +683113,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(8470), 1, anon_sym_and, - ACTIONS(8651), 1, + ACTIONS(8665), 1, anon_sym_or, - STATE(5562), 9, + STATE(5567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682658,7 +683127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, + ACTIONS(6173), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -682670,7 +683139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6187), 23, + ACTIONS(6171), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -682689,12 +683158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [191044] = 40, + [191627] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682715,132 +683184,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_equals, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, - anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(7201), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(7205), 1, + anon_sym_GT_GT, + ACTIONS(7211), 1, + anon_sym_AMP, + ACTIONS(7219), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(7221), 1, anon_sym_PIPE, - ACTIONS(8482), 1, - anon_sym_AMP, - ACTIONS(8486), 1, - anon_sym_GT_GT, - ACTIONS(8492), 1, - anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(7223), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(7225), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(7227), 1, anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8230), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8669), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(7197), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(7199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(7203), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(7209), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5563), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [191180] = 22, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(8492), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1231), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5564), 9, + STATE(5568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682850,25 +683259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 17, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [191280] = 40, + [191763] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682889,72 +683280,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5794), 1, + anon_sym_on, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8482), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8506), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8508), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8510), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, anon_sym_is, - ACTIONS(8655), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5565), 9, + STATE(5569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682964,7 +683355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191416] = 15, + [191899] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682985,37 +683376,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8617), 1, - anon_sym_and, - ACTIONS(8657), 1, - anon_sym_or, - STATE(5566), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5418), 11, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(8504), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5416), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5570), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1229), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -683026,16 +683426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [191502] = 40, + [191999] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683056,176 +683454,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8659), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8671), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5567), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [191638] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3787), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5568), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3785), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [191720] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8617), 1, - anon_sym_and, - ACTIONS(8657), 1, - anon_sym_or, - STATE(5569), 9, + STATE(5571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683235,43 +683529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6187), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [191806] = 35, + [192135] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683292,67 +683550,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8260), 1, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8278), 1, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8673), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8246), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5570), 9, + STATE(5572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683362,7 +683625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191932] = 40, + [192271] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683383,72 +683646,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_on, - ACTIONS(6419), 1, + ACTIONS(5794), 1, + anon_sym_EQ_GT, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8508), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8607), 1, anon_sym_QMARK, - ACTIONS(8514), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(8534), 1, + ACTIONS(8633), 1, anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, + ACTIONS(8635), 1, anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8637), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5571), 9, + STATE(5573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683458,7 +683721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192068] = 22, + [192407] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683479,23 +683742,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8530), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -683508,7 +683771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5572), 9, + STATE(5574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683528,15 +683791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_with, - [192168] = 40, + [192507] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683557,72 +683820,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8661), 1, + ACTIONS(8675), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8206), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8210), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8212), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8222), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8228), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5575), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [192643] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, + anon_sym_SLASH, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, + anon_sym_AMP, + ACTIONS(8370), 1, + anon_sym_GT_GT, + ACTIONS(8376), 1, + anon_sym_DOT_DOT, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + ACTIONS(8677), 1, + anon_sym_by, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5573), 9, + STATE(5576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683632,7 +683991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192304] = 40, + [192779] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683653,72 +684012,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, - anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8663), 1, - anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5574), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683728,7 +684064,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192440] = 36, + ACTIONS(5682), 11, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + anon_sym_as, + anon_sym_is, + [192893] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683749,68 +684097,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8260), 1, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8278), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8679), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5575), 9, + STATE(5578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683820,7 +684172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192568] = 13, + [193029] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683841,11 +684193,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5053), 3, - anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5576), 9, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8488), 1, + anon_sym_SLASH, + ACTIONS(8504), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8486), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683855,41 +684240,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5051), 33, - anon_sym_alias, - anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_params, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [192650] = 40, + anon_sym_as, + anon_sym_is, + [193137] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683910,72 +684275,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_EQ_GT, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(8236), 1, + ACTIONS(8354), 1, + anon_sym_QMARK, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8240), 1, - anon_sym_GT_GT, - ACTIONS(8242), 1, - anon_sym_DOT_DOT, - ACTIONS(8282), 1, - anon_sym_AMP, - ACTIONS(8288), 1, - anon_sym_is, - ACTIONS(8290), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8292), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8294), 1, + ACTIONS(8366), 1, + anon_sym_AMP, + ACTIONS(8370), 1, + anon_sym_GT_GT, + ACTIONS(8376), 1, + anon_sym_DOT_DOT, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8296), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8298), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8302), 1, - anon_sym_QMARK, - STATE(2502), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + ACTIONS(8681), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8232), 2, + ACTIONS(8352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8234), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8238), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8280), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8284), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8286), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5577), 9, + STATE(5580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683985,7 +684350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192786] = 22, + [193273] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684006,26 +684371,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8242), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1231), 9, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -684035,7 +684404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5578), 9, + STATE(5581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684045,7 +684414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1229), 17, + ACTIONS(5682), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -684055,15 +684424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, - anon_sym_with, - [192886] = 40, + [193377] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684084,72 +684451,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8665), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8683), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5579), 9, + STATE(5582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684159,7 +684526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193022] = 40, + [193513] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684180,72 +684547,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8667), 1, + ACTIONS(8685), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5580), 9, + STATE(5583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684255,7 +684622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193158] = 34, + [193649] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684276,66 +684643,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8264), 1, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8278), 1, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_COLON, + ACTIONS(5682), 5, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5581), 9, + anon_sym_on, + STATE(5584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684345,7 +684713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193282] = 40, + [193775] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684366,72 +684734,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8669), 1, + ACTIONS(8687), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5582), 9, + STATE(5585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684441,7 +684809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193418] = 40, + [193911] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684462,72 +684830,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8671), 1, + ACTIONS(8689), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5583), 9, + STATE(5586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684537,7 +684905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193554] = 40, + [194047] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684558,72 +684926,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8673), 1, + ACTIONS(8691), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5584), 9, + STATE(5587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684633,7 +685001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193690] = 40, + [194183] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684654,72 +685022,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8675), 1, + ACTIONS(8693), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5585), 9, + STATE(5588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684729,7 +685097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193826] = 40, + [194319] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684750,72 +685118,199 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(8695), 1, + anon_sym_RPAREN, + STATE(5589), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4900), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4898), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [194403] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8677), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8697), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5586), 9, + STATE(5590), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [194539] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8196), 1, + anon_sym_LPAREN, + ACTIONS(8699), 1, + anon_sym_operator, + ACTIONS(8701), 1, + anon_sym_this, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(6093), 1, + sym_explicit_interface_specifier, + STATE(6307), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684825,7 +685320,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193962] = 40, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [194643] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684846,72 +685364,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8514), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8516), 1, anon_sym_is, - ACTIONS(8679), 1, - anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5587), 9, + ACTIONS(5682), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684921,7 +685435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194098] = 40, + [194771] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684942,72 +685456,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(7183), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8681), 1, - anon_sym_by, - STATE(2502), 1, + ACTIONS(8703), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5588), 9, + STATE(5593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685017,7 +685531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194234] = 14, + [194907] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685038,56 +685552,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8683), 1, - anon_sym_RPAREN, - STATE(5589), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4908), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8488), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8498), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4906), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8504), 1, + anon_sym_DOT_DOT, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8480), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8484), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 5, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [194318] = 27, + anon_sym_on, + STATE(5594), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [195031] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685108,45 +685642,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8254), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8270), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8250), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5590), 9, + STATE(5595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685156,8 +685690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_COLON, + ACTIONS(5682), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -685168,9 +685701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, - [194428] = 40, + [195141] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685191,23 +685725,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(1991), 1, + anon_sym_SEMI, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, ACTIONS(7157), 1, anon_sym_QMARK, @@ -685229,13 +685765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(7185), 1, anon_sym_QMARK_QMARK, - ACTIONS(8685), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7155), 2, @@ -685256,7 +685790,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5591), 9, + STATE(5596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685266,7 +685800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194564] = 29, + [195277] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685287,49 +685821,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8472), 2, + ACTIONS(8480), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5684), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5592), 9, + ACTIONS(5682), 7, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685339,19 +685889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [194678] = 40, + [195399] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685372,129 +685910,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, - anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8687), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5593), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [194814] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8340), 1, - anon_sym_LPAREN, - ACTIONS(8689), 1, - anon_sym_operator, - ACTIONS(8691), 1, - anon_sym_this, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(5997), 1, - sym_explicit_interface_specifier, - STATE(6305), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5594), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685504,30 +685949,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, + ACTIONS(5924), 17, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [194918] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [195499] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685548,72 +685988,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_SEMI, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5595), 9, + ACTIONS(5682), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685623,7 +686060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195054] = 40, + [195629] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685644,72 +686081,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8506), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, anon_sym_is, - ACTIONS(8693), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5596), 9, + ACTIONS(5682), 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685719,7 +686154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195190] = 40, + [195761] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685740,72 +686175,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, + ACTIONS(5794), 1, anon_sym_in, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8352), 1, - anon_sym_QMARK, - ACTIONS(8358), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8360), 1, - anon_sym_CARET, - ACTIONS(8362), 1, - anon_sym_PIPE, - ACTIONS(8364), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8368), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8376), 1, + ACTIONS(8338), 1, + anon_sym_is, + ACTIONS(8340), 1, + anon_sym_CARET, + ACTIONS(8342), 1, + anon_sym_PIPE, + ACTIONS(8344), 1, anon_sym_AMP_AMP, - ACTIONS(8378), 1, + ACTIONS(8346), 1, anon_sym_PIPE_PIPE, - ACTIONS(8380), 1, + ACTIONS(8348), 1, anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(8390), 1, + anon_sym_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8348), 2, + ACTIONS(8318), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8354), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8370), 2, + ACTIONS(8332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8372), 2, + ACTIONS(8334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5597), 9, + STATE(5601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685815,7 +686250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195326] = 26, + [195897] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685836,44 +686271,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5682), 1, + anon_sym_on, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8488), 1, anon_sym_SLASH, + ACTIONS(8490), 1, + anon_sym_CARET, ACTIONS(8492), 1, + anon_sym_PIPE, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym_GT_GT, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8506), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8474), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5598), 9, + ACTIONS(8486), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685883,21 +686346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [195434] = 24, + [196033] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685918,40 +686367,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, + ACTIONS(8482), 1, + anon_sym_QMARK, + ACTIONS(8488), 1, + anon_sym_SLASH, + ACTIONS(8490), 1, + anon_sym_CARET, ACTIONS(8492), 1, + anon_sym_PIPE, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym_GT_GT, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8506), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8514), 1, + anon_sym_as, + ACTIONS(8516), 1, + anon_sym_is, + ACTIONS(8705), 1, + anon_sym_on, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5599), 9, + ACTIONS(8486), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685961,23 +686442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [195538] = 35, + [196169] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685998,67 +686463,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5238), 1, + anon_sym_on, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, - anon_sym_SLASH, ACTIONS(8482), 1, + anon_sym_QMARK, + ACTIONS(8488), 1, + anon_sym_SLASH, + ACTIONS(8490), 1, + anon_sym_CARET, + ACTIONS(8492), 1, + anon_sym_PIPE, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(8506), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8514), 1, anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8516), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8468), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5600), 9, + STATE(5604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686068,7 +686538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195664] = 36, + [196305] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686089,68 +686559,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8482), 1, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8707), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8468), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5601), 9, + STATE(5605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686160,7 +686634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195792] = 34, + [196441] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686181,66 +686655,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(8330), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8328), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8490), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5602), 9, + STATE(5606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686250,7 +686707,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195916] = 27, + ACTIONS(5682), 11, + anon_sym_in, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [196555] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686271,45 +686740,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8492), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8472), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5603), 9, + STATE(5607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686319,7 +686787,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(5682), 13, + anon_sym_in, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -686330,10 +686799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, anon_sym_as, anon_sym_is, - [196026] = 40, + [196663] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686354,72 +686822,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8508), 1, - anon_sym_QMARK, - ACTIONS(8514), 1, - anon_sym_SLASH, - ACTIONS(8516), 1, - anon_sym_CARET, - ACTIONS(8518), 1, - anon_sym_PIPE, - ACTIONS(8520), 1, - anon_sym_AMP, - ACTIONS(8524), 1, - anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, - anon_sym_AMP_AMP, - ACTIONS(8534), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, - anon_sym_is, - ACTIONS(8695), 1, - anon_sym_on, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8522), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8526), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8528), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5604), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686429,7 +686865,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196162] = 33, + ACTIONS(5682), 15, + anon_sym_in, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [196767] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686450,65 +686902,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8324), 1, anon_sym_SLASH, - ACTIONS(8486), 1, - anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8320), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8322), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8490), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5605), 9, + anon_sym_GT_GT, + STATE(5609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686518,7 +686950,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196284] = 22, + ACTIONS(5682), 13, + anon_sym_in, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [196877] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686539,26 +686985,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8492), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -686568,7 +687014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5606), 9, + STATE(5610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686578,7 +687024,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, + ACTIONS(5924), 17, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -686592,11 +687039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_with, - [196384] = 37, + [196977] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686617,69 +687063,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_on, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(8482), 1, + anon_sym_QMARK, + ACTIONS(8488), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(8490), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(8492), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(8494), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8498), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8504), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(8506), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8510), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8514), 1, anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8516), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(8480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8484), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8486), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8496), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + STATE(5611), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [197113] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, anon_sym_AMP_AMP, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5607), 9, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8709), 1, + anon_sym_RPAREN, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686689,7 +687234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196514] = 38, + [197249] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686710,70 +687255,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5866), 1, + anon_sym_COLON, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5608), 9, + STATE(5613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686783,7 +687330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196646] = 40, + [197385] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686804,21 +687351,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -686842,13 +687389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8697), 1, - anon_sym_COMMA, - STATE(2502), 1, + ACTIONS(8711), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -686869,7 +687416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5609), 9, + STATE(5614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686879,7 +687426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196782] = 29, + [197521] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686900,49 +687447,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8358), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8368), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8374), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8713), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8354), 2, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8366), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5610), 9, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686952,19 +687522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_in, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [196896] = 26, + [197657] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686985,44 +687543,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8358), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8374), 1, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8715), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8356), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5611), 9, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687032,21 +687618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_in, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [197004] = 24, + [197793] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687067,40 +687639,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8374), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, + anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7301), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8717), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 9, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5612), 9, + ACTIONS(7293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7303), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7309), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687110,23 +687714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_in, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [197108] = 27, + [197929] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687147,45 +687735,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8358), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8374), 1, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8719), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8354), 2, + ACTIONS(7155), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8356), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5613), 9, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687195,21 +687810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_in, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [197218] = 22, + [198065] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687230,36 +687831,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8374), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, + anon_sym_SLASH, + ACTIONS(7165), 1, + anon_sym_CARET, + ACTIONS(7167), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7173), 1, + anon_sym_GT_GT, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(7181), 1, + anon_sym_AMP_AMP, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8721), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5614), 9, + ACTIONS(7161), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7171), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7177), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687269,25 +687906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_in, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [197318] = 40, + [198201] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687308,72 +687927,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_equals, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8476), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8723), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5615), 9, + STATE(5620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687383,7 +688002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197454] = 40, + [198337] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687404,72 +688023,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_equals, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, - anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8725), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5616), 9, + STATE(5621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687479,7 +688098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197590] = 40, + [198473] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687500,21 +688119,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -687538,13 +688157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8699), 1, + ACTIONS(8727), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -687565,7 +688184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5617), 9, + STATE(5622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687575,7 +688194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197726] = 40, + [198609] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687596,72 +688215,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5769), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8729), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5618), 9, + STATE(5623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687671,7 +688290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197862] = 33, + [198745] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687692,65 +688311,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(8264), 1, + ACTIONS(6951), 1, + anon_sym_CARET, + ACTIONS(6953), 1, + anon_sym_PIPE, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(8278), 1, + ACTIONS(6967), 1, + anon_sym_AMP_AMP, + ACTIONS(6969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6971), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8731), 1, + aux_sym_preproc_if_token3, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8268), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_COLON, - anon_sym_CARET, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5619), 9, + ACTIONS(6963), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687760,7 +688386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197984] = 17, + [198881] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687781,20 +688407,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4757), 1, - aux_sym_preproc_if_token3, - STATE(7419), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(4749), 3, - anon_sym_LBRACK, + ACTIONS(3630), 4, + anon_sym_COMMA, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5620), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + ACTIONS(3459), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687804,22 +688429,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 28, + ACTIONS(3633), 26, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -687833,7 +688456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [198074] = 40, + [198965] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687854,72 +688477,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_equals, - ACTIONS(6419), 1, + ACTIONS(5866), 1, + anon_sym_by, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8478), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8480), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8496), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5621), 9, + STATE(5626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687929,7 +688552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198210] = 22, + [199101] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687950,64 +688573,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8270), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, + anon_sym_QMARK, + ACTIONS(8214), 1, + anon_sym_SLASH, + ACTIONS(8216), 1, + anon_sym_CARET, + ACTIONS(8218), 1, + anon_sym_PIPE, + ACTIONS(8220), 1, + anon_sym_AMP, + ACTIONS(8224), 1, + anon_sym_GT_GT, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + ACTIONS(8232), 1, + anon_sym_AMP_AMP, + ACTIONS(8234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8236), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8733), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5622), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_COLON, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [198310] = 37, + STATE(5627), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [199237] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688028,69 +688669,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5866), 1, + anon_sym_EQ_GT, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8607), 1, + anon_sym_QMARK, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8278), 1, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8635), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8637), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5623), 9, + STATE(5628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688100,7 +688744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198440] = 38, + [199373] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688121,70 +688765,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7157), 1, + anon_sym_QMARK, + ACTIONS(7163), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7165), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7167), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7173), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7179), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7181), 1, anon_sym_AMP_AMP, - ACTIONS(8278), 1, - anon_sym_is, - STATE(2502), 1, + ACTIONS(7183), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7185), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8735), 1, + anon_sym_SEMI, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7155), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7161), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7171), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7175), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7177), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5624), 9, + STATE(5629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688194,7 +688840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198572] = 40, + [199509] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688215,21 +688861,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -688253,13 +688899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8701), 1, + ACTIONS(8737), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -688280,7 +688926,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5625), 9, + STATE(5630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688290,7 +688936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198708] = 40, + [199645] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688311,21 +688957,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -688349,13 +688995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8703), 1, + ACTIONS(8739), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -688376,7 +689022,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5626), 9, + STATE(5631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688386,7 +689032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198844] = 40, + [199781] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688407,21 +689053,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -688445,13 +689091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8705), 1, + ACTIONS(8741), 1, anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -688472,7 +689118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5627), 9, + STATE(5632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688482,7 +689128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198980] = 40, + [199917] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688503,72 +689149,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8707), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8743), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5628), 9, + STATE(5633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688578,7 +689224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199116] = 40, + [200053] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688599,72 +689245,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8709), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5629), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688674,7 +689297,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199252] = 40, + ACTIONS(5682), 11, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [200167] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688695,72 +689330,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8711), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8745), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5630), 9, + STATE(5635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688770,7 +689405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199388] = 40, + [200303] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688791,72 +689426,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_COLON, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8358), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8262), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5631), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688866,7 +689473,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199524] = 40, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [200411] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688887,72 +689508,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8713), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5684), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5632), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688962,7 +689551,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199660] = 40, + ACTIONS(5682), 15, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [200515] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688983,72 +689588,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_equals, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8470), 1, - anon_sym_QMARK, - ACTIONS(8476), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8478), 1, - anon_sym_CARET, - ACTIONS(8480), 1, - anon_sym_PIPE, - ACTIONS(8482), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8486), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8492), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8494), 1, - anon_sym_AMP_AMP, - ACTIONS(8496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8498), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8502), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8504), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8468), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8472), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8474), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8484), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8488), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8490), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5633), 9, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689058,7 +689658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199796] = 40, + [200641] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689079,72 +689679,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8715), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5634), 9, + ACTIONS(5682), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689154,7 +689750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199932] = 40, + [200769] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689175,72 +689771,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5635), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689250,7 +689840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200068] = 40, + [200893] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689271,72 +689861,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_COLON, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, - anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5636), 9, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689346,7 +689909,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200204] = 40, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [201003] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689367,72 +689944,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8719), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5637), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689442,7 +690012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200340] = 40, + [201125] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689463,72 +690033,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8721), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8268), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5638), 9, + ACTIONS(5684), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689538,7 +690085,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200476] = 40, + ACTIONS(5682), 11, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [201239] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689559,72 +690118,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_COLON, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8723), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5639), 9, + STATE(5644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689634,7 +690193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200612] = 40, + [201375] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689655,72 +690214,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8725), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8747), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5640), 9, + STATE(5645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689730,7 +690289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200748] = 21, + [201511] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689751,26 +690310,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_LBRACE, - ACTIONS(4136), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8182), 1, - anon_sym_DOT, - ACTIONS(8730), 1, - anon_sym_LPAREN, - STATE(7242), 1, - sym_attribute_argument_list, - ACTIONS(8727), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5641), 9, + ACTIONS(8360), 1, + anon_sym_SLASH, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, + anon_sym_AMP, + ACTIONS(8370), 1, + anon_sym_GT_GT, + ACTIONS(8376), 1, + anon_sym_DOT_DOT, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, + anon_sym_is, + ACTIONS(8749), 1, + anon_sym_by, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8358), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8368), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8372), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8374), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689780,34 +690385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [200846] = 40, + [201647] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689828,72 +690406,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, - anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_AMP_AMP, - ACTIONS(7183), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8733), 1, - anon_sym_SEMI, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7177), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5642), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689903,7 +690453,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200982] = 40, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [201755] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689924,72 +690488,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8751), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5643), 9, + STATE(5648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689999,7 +690563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201118] = 14, + [201891] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690020,9 +690584,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8623), 1, - anon_sym_and, - STATE(5644), 9, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8629), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5684), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690032,23 +690627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5682), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -690058,18 +690637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [201202] = 40, + [201995] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690090,72 +690664,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8735), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8753), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5645), 9, + STATE(5650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690165,7 +690739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201338] = 40, + [202131] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690186,72 +690760,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8737), 1, - anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5646), 9, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690261,7 +690830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201474] = 40, + [202257] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690282,72 +690851,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5777), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8637), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(5684), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5647), 9, + ACTIONS(5682), 4, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690357,7 +690922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201610] = 40, + [202385] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690378,72 +690943,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(7255), 1, anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8739), 1, - anon_sym_RPAREN, - STATE(2502), 1, + ACTIONS(8755), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5648), 9, + STATE(5653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690453,7 +691018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201746] = 40, + [202521] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690474,72 +691039,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8256), 1, - anon_sym_CARET, - ACTIONS(8258), 1, - anon_sym_PIPE, - ACTIONS(8260), 1, - anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, - anon_sym_AMP_AMP, - ACTIONS(8274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8741), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5649), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 5, + anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690549,7 +691108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201882] = 40, + [202645] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690570,72 +691129,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8743), 1, + ACTIONS(8757), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5650), 9, + STATE(5655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690645,7 +691204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202018] = 40, + [202781] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690666,72 +691225,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8629), 1, + anon_sym_DOT_DOT, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8609), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5684), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5656), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5682), 13, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_as, - ACTIONS(8248), 1, + anon_sym_is, + [202891] = 40, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8745), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8759), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5651), 9, + STATE(5657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690741,7 +691383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202154] = 40, + [203027] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690762,72 +691404,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, - anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8206), 1, - anon_sym_CARET, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8210), 1, - anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, - anon_sym_AMP_AMP, - ACTIONS(8224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8747), 1, - anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5652), 9, + ACTIONS(5684), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5682), 7, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690837,7 +691472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202290] = 15, + [203149] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690858,11 +691493,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(8761), 1, anon_sym_into, - STATE(5655), 1, + STATE(5661), 1, aux_sym__query_body_repeat2, - STATE(5653), 9, + STATE(5659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690872,7 +691507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -690884,7 +691519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 23, + ACTIONS(6014), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -690908,7 +691543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [202376] = 15, + [203235] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690929,11 +691564,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(8761), 1, anon_sym_into, - STATE(5656), 1, + STATE(5662), 1, aux_sym__query_body_repeat2, - STATE(5654), 9, + STATE(5660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690943,7 +691578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -690955,7 +691590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 23, + ACTIONS(6014), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -690979,7 +691614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [202462] = 14, + [203321] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691000,9 +691635,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8751), 1, + ACTIONS(8763), 1, anon_sym_into, - STATE(5655), 10, + STATE(5661), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691013,7 +691648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -691025,7 +691660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 23, + ACTIONS(6018), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -691049,7 +691684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [202546] = 15, + [203405] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691070,11 +691705,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(8761), 1, anon_sym_into, - STATE(5655), 1, + STATE(5661), 1, aux_sym__query_body_repeat2, - STATE(5656), 9, + STATE(5662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691084,7 +691719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -691096,7 +691731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 23, + ACTIONS(6025), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -691120,7 +691755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [202632] = 40, + [203491] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691141,72 +691776,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8754), 1, + ACTIONS(8766), 1, anon_sym_by, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5657), 9, + STATE(5663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691216,7 +691851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202768] = 40, + [203627] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691237,72 +691872,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8756), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5658), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691312,7 +691911,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202904] = 40, + ACTIONS(5924), 17, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [203727] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691333,72 +691950,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8758), 1, - anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5659), 9, + ACTIONS(5682), 4, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691408,7 +692022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203040] = 15, + [203857] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691429,82 +692043,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8760), 1, - anon_sym_into, - STATE(5662), 1, - aux_sym__query_body_repeat2, - STATE(5660), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8613), 1, anon_sym_SLASH, + ACTIONS(8615), 1, + anon_sym_CARET, + ACTIONS(8617), 1, anon_sym_PIPE, + ACTIONS(8619), 1, anon_sym_AMP, + ACTIONS(8623), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8629), 1, + anon_sym_DOT_DOT, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8637), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8609), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5682), 3, + anon_sym_EQ_GT, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203126] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8760), 1, - anon_sym_into, - STATE(5663), 1, - aux_sym__query_body_repeat2, - STATE(5661), 9, + STATE(5666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691514,43 +692116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6042), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203212] = 14, + [203989] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691571,81 +692137,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8762), 1, - anon_sym_into, - STATE(5662), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(6048), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5682), 1, + anon_sym_EQ_GT, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8613), 1, anon_sym_SLASH, + ACTIONS(8615), 1, + anon_sym_CARET, + ACTIONS(8617), 1, anon_sym_PIPE, + ACTIONS(8619), 1, anon_sym_AMP, + ACTIONS(8623), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6046), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8629), 1, + anon_sym_DOT_DOT, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8635), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8637), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8609), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203296] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8760), 1, - anon_sym_into, - STATE(5662), 1, - aux_sym__query_body_repeat2, - STATE(5663), 9, + STATE(5667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691655,43 +692212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6053), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203382] = 14, + [204125] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691712,81 +692233,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8568), 1, - anon_sym_and, - STATE(5664), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6203), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, + ACTIONS(7297), 1, + anon_sym_CARET, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(7301), 1, anon_sym_AMP, + ACTIONS(7305), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6201), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, + ACTIONS(7311), 1, + anon_sym_DOT_DOT, + ACTIONS(7313), 1, + anon_sym_AMP_AMP, + ACTIONS(7315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7319), 1, + anon_sym_is, + ACTIONS(8768), 1, + anon_sym_COMMA, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203466] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8608), 1, - anon_sym_into, - STATE(5522), 1, - aux_sym__query_body_repeat2, - STATE(5665), 9, + STATE(5668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691796,43 +692308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6036), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203552] = 40, + [204261] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691853,72 +692329,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5238), 1, + anon_sym_EQ_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7157), 1, + ACTIONS(8607), 1, anon_sym_QMARK, - ACTIONS(7163), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(7165), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(7173), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(7179), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(7183), 1, + ACTIONS(8633), 1, anon_sym_PIPE_PIPE, - ACTIONS(7185), 1, + ACTIONS(8635), 1, anon_sym_QMARK_QMARK, - ACTIONS(8765), 1, - anon_sym_SEMI, - STATE(2502), 1, + ACTIONS(8637), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7155), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7159), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7161), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7171), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7175), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7177), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5666), 9, + STATE(5669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691928,7 +692404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203688] = 40, + [204397] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691949,72 +692425,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8767), 1, - anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(5926), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7303), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7309), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5667), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692024,7 +692464,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203824] = 29, + ACTIONS(5924), 17, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [204497] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692045,49 +692503,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8514), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_GT_GT, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8522), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5756), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5668), 9, + ACTIONS(8542), 1, + anon_sym_and, + STATE(5671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692097,19 +692515,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, anon_sym_as, anon_sym_is, - [203938] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [204581] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692130,11 +692573,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(8770), 1, anon_sym_into, - STATE(5671), 1, + STATE(5674), 1, aux_sym__query_body_repeat2, - STATE(5669), 9, + STATE(5672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692144,7 +692587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -692156,7 +692599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 23, + ACTIONS(6014), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -692170,17 +692613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [204024] = 15, + [204667] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692201,11 +692644,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(8770), 1, anon_sym_into, - STATE(5672), 1, + STATE(5675), 1, aux_sym__query_body_repeat2, - STATE(5670), 9, + STATE(5673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692215,7 +692658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 11, + ACTIONS(6016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -692227,7 +692670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 23, + ACTIONS(6014), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -692241,17 +692684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [204110] = 14, + [204753] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692272,9 +692715,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8771), 1, + ACTIONS(8772), 1, anon_sym_into, - STATE(5671), 10, + STATE(5674), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692285,7 +692728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 11, + ACTIONS(6020), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -692297,7 +692740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 23, + ACTIONS(6018), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -692311,17 +692754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [204194] = 15, + [204837] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692342,11 +692785,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(8770), 1, anon_sym_into, - STATE(5671), 1, + STATE(5674), 1, aux_sym__query_body_repeat2, - STATE(5672), 9, + STATE(5675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692356,7 +692799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 11, + ACTIONS(6027), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -692368,7 +692811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 23, + ACTIONS(6025), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -692382,17 +692825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [204280] = 40, + [204923] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692413,72 +692856,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_EQ_GT, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8607), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8633), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8635), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8637), 1, anon_sym_is, - ACTIONS(8774), 1, - anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5673), 9, + STATE(5676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692488,7 +692931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204416] = 15, + [205059] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692509,11 +692952,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(8580), 1, anon_sym_into, - STATE(5653), 1, + STATE(5513), 1, aux_sym__query_body_repeat2, - STATE(5674), 9, + STATE(5677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692523,7 +692966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -692535,7 +692978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 23, + ACTIONS(6008), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -692554,94 +692997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [204502] = 26, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8514), 1, - anon_sym_SLASH, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8512), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5675), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - [204610] = 40, + [205145] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692662,21 +693023,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, ACTIONS(7289), 1, anon_sym_QMARK, @@ -692700,13 +693061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8776), 1, + ACTIONS(8775), 1, anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(7287), 2, @@ -692727,7 +693088,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5676), 9, + STATE(5678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692737,7 +693098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204746] = 24, + [205281] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692758,147 +693119,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5756), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5684), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5677), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5754), 15, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - [204850] = 35, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8514), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8520), 1, + ACTIONS(8362), 1, + anon_sym_CARET, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8540), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8506), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_CARET, + ACTIONS(5682), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5678), 9, + anon_sym_by, + STATE(5679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692908,7 +693191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204976] = 36, + [205411] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692929,68 +693212,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5684), 1, + anon_sym_QMARK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8514), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8520), 1, + ACTIONS(8364), 1, + anon_sym_PIPE, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8540), 1, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5756), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8506), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_AMP_AMP, + ACTIONS(5682), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5679), 9, + anon_sym_by, + STATE(5680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693000,7 +693285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205104] = 34, + [205543] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693021,76 +693306,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(8777), 1, + anon_sym_into, + STATE(5683), 1, + aux_sym__query_body_repeat2, + STATE(5681), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8514), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8524), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6014), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 5, - anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5680), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [205228] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [205629] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693111,45 +693377,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8514), 1, - anon_sym_SLASH, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5756), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5681), 9, + ACTIONS(8777), 1, + anon_sym_into, + STATE(5684), 1, + aux_sym__query_body_repeat2, + STATE(5682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693159,7 +693391,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 13, + ACTIONS(6016), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6014), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -693167,13 +693417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, anon_sym_as, anon_sym_is, - [205338] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [205715] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693194,75 +693448,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(8779), 1, + anon_sym_into, + STATE(5683), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym__query_body_repeat2, + ACTIONS(6020), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(8514), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8524), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6018), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8510), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8512), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8528), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5756), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5754), 7, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5682), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [205460] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [205799] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693283,36 +693518,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(8530), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5683), 9, + ACTIONS(8777), 1, + anon_sym_into, + STATE(5683), 1, + aux_sym__query_body_repeat2, + STATE(5684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693322,7 +693532,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, + ACTIONS(6027), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6025), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -693332,15 +693558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [205560] = 37, + [205885] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693361,69 +693589,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, + ACTIONS(5682), 1, + anon_sym_by, + ACTIONS(5684), 1, anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8514), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8540), 1, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8382), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8388), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5684), 9, + STATE(5685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693433,7 +693664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205690] = 38, + [206021] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693454,70 +693685,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(5870), 1, + anon_sym_EQ_GT, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8514), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(8607), 1, + anon_sym_QMARK, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(8615), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(8617), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(8619), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(8623), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(8629), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(8633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8635), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8637), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(8605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(8609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(8621), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(8627), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5685), 9, + STATE(5686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693527,7 +693760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205822] = 15, + [206157] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693548,11 +693781,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8760), 1, + ACTIONS(8761), 1, anon_sym_into, - STATE(5660), 1, + STATE(5659), 1, aux_sym__query_body_repeat2, - STATE(5686), 9, + STATE(5687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693562,7 +693795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -693574,7 +693807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 23, + ACTIONS(6008), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -693593,12 +693826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [205908] = 40, + [206243] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693619,72 +693852,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5238), 1, + anon_sym_by, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8778), 1, - anon_sym_COMMA, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5687), 9, + STATE(5688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693694,7 +693927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206044] = 40, + [206379] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693715,72 +693948,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_on, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8514), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, + anon_sym_QMARK, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8534), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8782), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5688), 9, + STATE(5689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693790,7 +694023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206180] = 40, + [206515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693811,72 +694044,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_on, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8508), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8514), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8534), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8784), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5689), 9, + STATE(5690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693886,7 +694119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206316] = 40, + [206651] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693907,82 +694140,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(8446), 1, + anon_sym_and, + ACTIONS(8448), 1, + anon_sym_or, + STATE(5691), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(7201), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7205), 1, - anon_sym_GT_GT, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7219), 1, - anon_sym_CARET, - ACTIONS(7221), 1, anon_sym_PIPE, - ACTIONS(7223), 1, - anon_sym_AMP_AMP, - ACTIONS(7225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7227), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7255), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_QMARK, - ACTIONS(8270), 1, - anon_sym_DOT_DOT, - ACTIONS(8278), 1, - anon_sym_is, - ACTIONS(8780), 1, - anon_sym_COLON, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6171), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7197), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7203), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5690), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [206452] = 15, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [206737] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694003,11 +694211,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(8770), 1, anon_sym_into, - STATE(5669), 1, + STATE(5672), 1, aux_sym__query_body_repeat2, - STATE(5691), 9, + STATE(5692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694017,7 +694225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6038), 11, + ACTIONS(6010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -694029,7 +694237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6036), 23, + ACTIONS(6008), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -694043,17 +694251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [206538] = 40, + [206823] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694074,72 +694282,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5783), 1, - anon_sym_on, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8508), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8514), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8516), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8518), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8520), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8524), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8530), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8532), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8534), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8536), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8540), 1, - anon_sym_as, - ACTIONS(8542), 1, + ACTIONS(7319), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(8786), 1, + anon_sym_COMMA, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8506), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8510), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8512), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8522), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8526), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8528), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5692), 9, + STATE(5693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694149,7 +694357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206674] = 40, + [206959] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694170,82 +694378,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(5874), 1, + anon_sym_by, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(7295), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(7297), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(7299), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(7301), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(7305), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(7313), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(7315), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8386), 1, + anon_sym_as, + ACTIONS(8388), 1, anon_sym_is, - ACTIONS(8782), 1, - anon_sym_RPAREN, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8358), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8368), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8372), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8374), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5694), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [207095] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8649), 1, + anon_sym_and, + STATE(5695), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6201), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6199), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5693), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [206810] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [207179] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694266,82 +694544,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8777), 1, + anon_sym_into, + STATE(5681), 1, + aux_sym__query_body_repeat2, + STATE(5696), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6010), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7295), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8784), 1, - anon_sym_RPAREN, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6008), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5694), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [206946] = 40, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [207265] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694362,72 +694615,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(7255), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(7289), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(7295), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(7297), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(7311), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(7313), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(7315), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(7317), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(7319), 1, anon_sym_is, - ACTIONS(8786), 1, - anon_sym_COLON, - STATE(2502), 1, + ACTIONS(8788), 1, + anon_sym_RPAREN, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(7287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(7291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(7303), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5695), 9, + STATE(5697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694437,7 +694690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207082] = 40, + [207401] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694458,72 +694711,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8788), 1, + ACTIONS(8790), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5696), 9, + STATE(5698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694533,7 +694786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207218] = 22, + [207537] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694554,23 +694807,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(8374), 1, + ACTIONS(8336), 1, anon_sym_DOT_DOT, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1231), 9, @@ -694583,7 +694836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5697), 9, + STATE(5699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694611,7 +694864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [207318] = 40, + [207637] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694632,72 +694885,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, ACTIONS(7255), 1, anon_sym_as, - ACTIONS(8248), 1, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(8254), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(8256), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(8258), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(8260), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(8264), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(8270), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(8272), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(8274), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(8276), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(8278), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8790), 1, + ACTIONS(8792), 1, anon_sym_COLON, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8246), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8250), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8252), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8262), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8266), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8268), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5698), 9, + STATE(5700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694707,7 +694960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207454] = 40, + [207773] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694728,168 +694981,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(8360), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(8362), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(8364), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(8370), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(8376), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(8378), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(8380), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(8382), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_as, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8792), 1, - anon_sym_by, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8202), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8212), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8216), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8218), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5699), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [207590] = 40, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, + ACTIONS(8386), 1, anon_sym_as, - ACTIONS(7289), 1, - anon_sym_QMARK, - ACTIONS(7295), 1, - anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, - anon_sym_PIPE, - ACTIONS(7301), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, + ACTIONS(8388), 1, anon_sym_is, ACTIONS(8794), 1, - anon_sym_RPAREN, - STATE(2502), 1, + anon_sym_by, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, + ACTIONS(8352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7291), 2, + ACTIONS(8356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7293), 2, + ACTIONS(8358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + ACTIONS(8368), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, + ACTIONS(8372), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, + ACTIONS(8374), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5700), 9, + STATE(5701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694899,7 +695056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207726] = 15, + [207909] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694920,11 +695077,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8645), 1, anon_sym_into, - STATE(5703), 1, + STATE(5704), 1, aux_sym__query_body_repeat2, - STATE(5701), 9, + STATE(5702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694934,7 +695091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 12, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -694947,7 +695104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 22, + ACTIONS(6014), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -694970,7 +695127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [207812] = 15, + [207995] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694991,11 +695148,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8645), 1, anon_sym_into, - STATE(5704), 1, + STATE(5705), 1, aux_sym__query_body_repeat2, - STATE(5702), 9, + STATE(5703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695005,7 +695162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6044), 12, + ACTIONS(6016), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -695018,7 +695175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6042), 22, + ACTIONS(6014), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -695041,7 +695198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [207898] = 14, + [208081] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695064,7 +695221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8796), 1, anon_sym_into, - STATE(5703), 10, + STATE(5704), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695075,7 +695232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(6048), 12, + ACTIONS(6020), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -695088,7 +695245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6046), 22, + ACTIONS(6018), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -695111,7 +695268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [207982] = 15, + [208165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695132,11 +695289,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8645), 1, anon_sym_into, - STATE(5703), 1, + STATE(5704), 1, aux_sym__query_body_repeat2, - STATE(5704), 9, + STATE(5705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695146,7 +695303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6055), 12, + ACTIONS(6027), 12, anon_sym_LT, anon_sym_GT, anon_sym_in, @@ -695159,7 +695316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6053), 22, + ACTIONS(6025), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -695182,7 +695339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [208068] = 40, + [208251] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695203,72 +695360,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(7255), 1, + anon_sym_as, + ACTIONS(8208), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(8214), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(8216), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(8218), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(8220), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(8224), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(8230), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(8232), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(8234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(8236), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(8238), 1, anon_sym_is, ACTIONS(8799), 1, - aux_sym_preproc_if_token3, - STATE(2502), 1, + anon_sym_COLON, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(8206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(8210), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(8212), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(8222), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(8226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(8228), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5705), 9, + STATE(5706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695278,7 +695435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208204] = 14, + [208387] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695299,19 +695456,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3628), 4, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8801), 1, + anon_sym_DOT, + ACTIONS(4024), 5, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3459), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5706), 9, + anon_sym_RBRACE, + STATE(5707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695321,7 +695482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3631), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695348,7 +695509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [208288] = 40, + [208479] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695369,82 +695530,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(7289), 1, + ACTIONS(8649), 1, + anon_sym_and, + ACTIONS(8651), 1, + anon_sym_or, + STATE(5708), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6173), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7295), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7297), 1, - anon_sym_CARET, - ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7301), 1, anon_sym_AMP, - ACTIONS(7305), 1, anon_sym_GT_GT, - ACTIONS(7311), 1, - anon_sym_DOT_DOT, - ACTIONS(7313), 1, - anon_sym_AMP_AMP, - ACTIONS(7315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7317), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7319), 1, - anon_sym_is, - ACTIONS(8801), 1, - anon_sym_RPAREN, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, + anon_sym_DOT, + ACTIONS(6171), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7287), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7303), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7307), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7309), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5707), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [208424] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [208565] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695465,72 +695601,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5370), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_by, - ACTIONS(6419), 1, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(8198), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(8204), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(8206), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(8208), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(8210), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(8214), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(8220), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(8222), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(8224), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(8226), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(8230), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2724), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8196), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8200), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8202), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8212), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8216), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8218), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5708), 9, + STATE(5709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695540,7 +695674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208560] = 39, + [208698] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695562,69 +695696,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, anon_sym_DOT, - ACTIONS(5629), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5650), 1, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5955), 1, + ACTIONS(5694), 1, anon_sym_SLASH, - ACTIONS(5957), 1, + ACTIONS(5698), 1, + anon_sym_GT_GT, + ACTIONS(5800), 1, anon_sym_CARET, - ACTIONS(5959), 1, + ACTIONS(5802), 1, anon_sym_PIPE, - ACTIONS(5961), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5977), 1, + ACTIONS(5812), 1, anon_sym_AMP_AMP, - ACTIONS(5979), 1, + ACTIONS(5814), 1, anon_sym_PIPE_PIPE, - ACTIONS(5981), 1, + ACTIONS(5816), 1, anon_sym_QMARK_QMARK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5949), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5951), 2, + ACTIONS(5690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5953), 2, + ACTIONS(5692), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5963), 2, + ACTIONS(5696), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5967), 2, + ACTIONS(5796), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5969), 2, + ACTIONS(5808), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5709), 9, + STATE(5710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695634,7 +695768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208693] = 39, + [208831] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695655,70 +695789,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7831), 1, + ACTIONS(7125), 1, anon_sym_SLASH, - ACTIONS(7833), 1, - anon_sym_CARET, - ACTIONS(7835), 1, - anon_sym_PIPE, - ACTIONS(7837), 1, + ACTIONS(7127), 1, anon_sym_AMP, - ACTIONS(7841), 1, + ACTIONS(7131), 1, anon_sym_GT_GT, - ACTIONS(7847), 1, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7147), 1, anon_sym_AMP_AMP, - ACTIONS(7849), 1, + ACTIONS(7149), 1, anon_sym_PIPE_PIPE, - ACTIONS(7851), 1, + ACTIONS(7151), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7823), 2, + ACTIONS(7119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7827), 2, + ACTIONS(7121), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7829), 2, + ACTIONS(7123), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7839), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7843), 2, + ACTIONS(7133), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7845), 2, + ACTIONS(7135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5710), 9, + STATE(5711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695728,7 +695862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208826] = 39, + [208964] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695749,70 +695883,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(4860), 1, + ACTIONS(4677), 1, anon_sym_DOT, - ACTIONS(4878), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6783), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6787), 1, + anon_sym_GT_GT, + ACTIONS(6797), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6801), 1, anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2455), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(6637), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6781), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6785), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5711), 9, + ACTIONS(6803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(5712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695822,7 +695956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208959] = 39, + [209097] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695843,70 +695977,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6669), 1, + ACTIONS(6615), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_BANG, + ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6671), 1, + ACTIONS(6647), 1, + anon_sym_GT_GT, + ACTIONS(6663), 1, anon_sym_CARET, - ACTIONS(6673), 1, + ACTIONS(6665), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6667), 1, anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(6671), 1, anon_sym_AMP_AMP, - ACTIONS(6689), 1, + ACTIONS(6673), 1, anon_sym_PIPE_PIPE, - ACTIONS(6691), 1, + ACTIONS(6675), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(4640), 1, sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6661), 2, + ACTIONS(6633), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6665), 2, + ACTIONS(6637), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6639), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6667), 2, + ACTIONS(6641), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6677), 2, + ACTIONS(6645), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6681), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6683), 2, + ACTIONS(6649), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5712), 9, + ACTIONS(6669), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(5713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695916,7 +696050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [209092] = 39, + [209230] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695937,70 +696071,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7673), 1, + ACTIONS(6685), 1, anon_sym_SLASH, - ACTIONS(7677), 1, + ACTIONS(6689), 1, anon_sym_GT_GT, - ACTIONS(7683), 1, - anon_sym_AMP, - ACTIONS(7691), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(7693), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(7695), 1, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6745), 1, anon_sym_AMP_AMP, - ACTIONS(7697), 1, + ACTIONS(6747), 1, anon_sym_PIPE_PIPE, - ACTIONS(7699), 1, + ACTIONS(6749), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(6681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7671), 2, + ACTIONS(6683), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7675), 2, + ACTIONS(6687), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7681), 2, + ACTIONS(6729), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7685), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7687), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5713), 9, + STATE(5714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696010,7 +696144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [209225] = 39, + [209363] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696031,122 +696165,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_DASH_GT, - ACTIONS(4779), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5650), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5704), 1, - anon_sym_SLASH, - ACTIONS(5706), 1, - anon_sym_CARET, - ACTIONS(5708), 1, - anon_sym_PIPE, - ACTIONS(5710), 1, - anon_sym_AMP, - ACTIONS(5714), 1, - anon_sym_GT_GT, - ACTIONS(5724), 1, - anon_sym_AMP_AMP, - ACTIONS(5726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5728), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6419), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + ACTIONS(7484), 1, + anon_sym_SLASH, + ACTIONS(7656), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_PIPE, + ACTIONS(7676), 1, + anon_sym_AMP_AMP, + ACTIONS(7678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7680), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3931), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5690), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5696), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5700), 2, + ACTIONS(7480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5702), 2, + ACTIONS(7482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5712), 2, + ACTIONS(7654), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5716), 2, + ACTIONS(7658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5718), 2, + ACTIONS(7664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5714), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [209358] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3431), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - ACTIONS(3923), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3921), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, STATE(5715), 9, sym_preproc_region, sym_preproc_endregion, @@ -696157,30 +696238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [209455] = 21, + [209496] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696201,28 +696259,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3435), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - ACTIONS(3999), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3997), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7554), 1, + anon_sym_SLASH, + ACTIONS(7558), 1, + anon_sym_GT_GT, + ACTIONS(7564), 1, + anon_sym_AMP, + ACTIONS(7572), 1, + anon_sym_CARET, + ACTIONS(7574), 1, + anon_sym_PIPE, + ACTIONS(7576), 1, + anon_sym_AMP_AMP, + ACTIONS(7578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7580), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3488), 1, + sym_argument_list, + ACTIONS(5374), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7550), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7552), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7566), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7568), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5716), 9, sym_preproc_region, sym_preproc_endregion, @@ -696233,108 +696332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [209552] = 23, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3504), 1, - sym__variable_designation, - STATE(5786), 1, - sym_property_pattern_clause, - ACTIONS(3933), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3935), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5717), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7041), 21, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [209653] = 18, + [209629] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696351,26 +696349,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_warning_token1, ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8803), 1, - anon_sym_DOT, - ACTIONS(4058), 4, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3903), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5718), 9, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(3554), 1, + sym__variable_designation, + STATE(5796), 1, + sym_property_pattern_clause, + ACTIONS(3927), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3929), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696380,7 +696388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696390,10 +696398,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -696406,8 +696410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [209744] = 39, + [209730] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696428,70 +696431,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4761), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4763), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5344), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6419), 1, + ACTIONS(5680), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2827), 1, + STATE(2934), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5719), 9, + STATE(5718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696501,7 +696504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [209877] = 23, + [209863] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696522,32 +696525,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(4011), 1, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3421), 1, + STATE(3403), 1, sym__variable_designation, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(3547), 1, sym_identifier, - STATE(5798), 1, - sym_property_pattern_clause, - ACTIONS(3921), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3923), 3, - anon_sym_when, + ACTIONS(4003), 2, anon_sym_and, anon_sym_or, - STATE(5720), 9, + ACTIONS(4001), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696557,7 +696557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696567,6 +696567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -696579,7 +696580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209978] = 39, + [209960] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696600,70 +696601,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6523), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7061), 1, anon_sym_SLASH, - ACTIONS(6525), 1, + ACTIONS(7063), 1, anon_sym_CARET, - ACTIONS(6527), 1, + ACTIONS(7065), 1, anon_sym_PIPE, - ACTIONS(6529), 1, + ACTIONS(7067), 1, anon_sym_AMP, - ACTIONS(6533), 1, + ACTIONS(7071), 1, anon_sym_GT_GT, - ACTIONS(6543), 1, + ACTIONS(7077), 1, anon_sym_AMP_AMP, - ACTIONS(6545), 1, + ACTIONS(7079), 1, anon_sym_PIPE_PIPE, - ACTIONS(6547), 1, + ACTIONS(7081), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6517), 2, + ACTIONS(7053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6519), 2, + ACTIONS(7057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6521), 2, + ACTIONS(7059), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6531), 2, + ACTIONS(7069), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6535), 2, + ACTIONS(7073), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6537), 2, + ACTIONS(7075), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5721), 9, + STATE(5720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696673,7 +696674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210111] = 14, + [210093] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696694,55 +696695,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2987), 2, - anon_sym_while, - anon_sym_else, - STATE(5722), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2989), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6817), 1, anon_sym_SLASH, + ACTIONS(6819), 1, + anon_sym_CARET, + ACTIONS(6821), 1, anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_AMP, + ACTIONS(6827), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2991), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6835), 1, + anon_sym_AMP_AMP, + ACTIONS(6837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6815), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6825), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6831), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, + STATE(5721), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [210226] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4160), 1, anon_sym_DASH_GT, - anon_sym_with, - [210194] = 39, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8803), 1, + anon_sym_DOT, + ACTIONS(4024), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5722), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4022), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [210317] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696763,67 +696862,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7125), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_AMP, - ACTIONS(7131), 1, + ACTIONS(7241), 1, anon_sym_GT_GT, - ACTIONS(7143), 1, + ACTIONS(7390), 1, anon_sym_CARET, - ACTIONS(7145), 1, + ACTIONS(7392), 1, anon_sym_PIPE, - ACTIONS(7147), 1, + ACTIONS(7394), 1, + anon_sym_AMP, + ACTIONS(7400), 1, anon_sym_AMP_AMP, - ACTIONS(7149), 1, + ACTIONS(7402), 1, anon_sym_PIPE_PIPE, - ACTIONS(7151), 1, + ACTIONS(7404), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7121), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7123), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7129), 2, + ACTIONS(7239), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7133), 2, + ACTIONS(7386), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7396), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7135), 2, + ACTIONS(7398), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5723), 9, @@ -696836,7 +696935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210327] = 39, + [210450] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696857,67 +696956,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7449), 1, + ACTIONS(6407), 1, anon_sym_SLASH, - ACTIONS(7451), 1, + ACTIONS(6409), 1, anon_sym_CARET, - ACTIONS(7453), 1, + ACTIONS(6411), 1, anon_sym_PIPE, - ACTIONS(7455), 1, + ACTIONS(6413), 1, anon_sym_AMP, - ACTIONS(7459), 1, + ACTIONS(6417), 1, anon_sym_GT_GT, - ACTIONS(7467), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6427), 1, anon_sym_AMP_AMP, - ACTIONS(7469), 1, + ACTIONS(6429), 1, anon_sym_PIPE_PIPE, - ACTIONS(7471), 1, + ACTIONS(6431), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7441), 2, + ACTIONS(6401), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7445), 2, + ACTIONS(6403), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7447), 2, + ACTIONS(6405), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(6415), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7461), 2, + ACTIONS(6419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7463), 2, + ACTIONS(6421), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5724), 9, @@ -696930,7 +697029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210460] = 39, + [210583] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696951,67 +697050,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7061), 1, + ACTIONS(6551), 1, anon_sym_SLASH, - ACTIONS(7063), 1, - anon_sym_CARET, - ACTIONS(7065), 1, - anon_sym_PIPE, - ACTIONS(7067), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(6557), 1, anon_sym_GT_GT, - ACTIONS(7077), 1, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6605), 1, + anon_sym_PIPE, + ACTIONS(6607), 1, anon_sym_AMP_AMP, - ACTIONS(7079), 1, + ACTIONS(6611), 1, anon_sym_PIPE_PIPE, - ACTIONS(7081), 1, + ACTIONS(6613), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7053), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7057), 2, + ACTIONS(6547), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7059), 2, + ACTIONS(6549), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7069), 2, + ACTIONS(6555), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6559), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7075), 2, + ACTIONS(6561), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5725), 9, @@ -697024,7 +697123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210593] = 18, + [210716] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697046,20 +697145,68 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(8805), 1, - anon_sym_DOT, - ACTIONS(4058), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7325), 1, + anon_sym_SLASH, + ACTIONS(7329), 1, + anon_sym_GT_GT, + ACTIONS(7414), 1, + anon_sym_CARET, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7418), 1, + anon_sym_AMP, + ACTIONS(7424), 1, + anon_sym_AMP_AMP, + ACTIONS(7426), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7428), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7323), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7327), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7420), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7422), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5726), 9, sym_preproc_region, sym_preproc_endregion, @@ -697070,34 +697217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [210684] = 18, + [210849] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697118,20 +697238,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8807), 1, - anon_sym_DOT, - ACTIONS(4058), 4, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6714), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + ACTIONS(3949), 5, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, STATE(5727), 9, sym_preproc_region, @@ -697143,7 +697262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(3947), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697170,7 +697289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [210775] = 39, + [210938] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697191,67 +697310,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5302), 1, anon_sym_LPAREN, ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6853), 1, anon_sym_SLASH, - ACTIONS(6111), 1, + ACTIONS(6855), 1, anon_sym_CARET, - ACTIONS(6113), 1, + ACTIONS(6857), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6859), 1, anon_sym_AMP, - ACTIONS(6119), 1, + ACTIONS(6863), 1, anon_sym_GT_GT, - ACTIONS(6129), 1, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6131), 1, + ACTIONS(6873), 1, anon_sym_PIPE_PIPE, - ACTIONS(6133), 1, + ACTIONS(6875), 1, anon_sym_QMARK_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3372), 1, sym_argument_list, ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6101), 2, + ACTIONS(6845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6849), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6107), 2, + ACTIONS(6851), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6117), 2, + ACTIONS(6861), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6121), 2, + ACTIONS(6865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6123), 2, + ACTIONS(6867), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5728), 9, @@ -697264,7 +697383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210908] = 39, + [211071] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697285,67 +697404,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7618), 1, + ACTIONS(7339), 1, anon_sym_SLASH, - ACTIONS(7622), 1, + ACTIONS(7343), 1, anon_sym_GT_GT, - ACTIONS(7628), 1, - anon_sym_AMP, - ACTIONS(7638), 1, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(7640), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7642), 1, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(7644), 1, + ACTIONS(7376), 1, anon_sym_PIPE_PIPE, - ACTIONS(7646), 1, + ACTIONS(7378), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7614), 2, + ACTIONS(7335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7616), 2, + ACTIONS(7337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7620), 2, + ACTIONS(7341), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7626), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7630), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7632), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5729), 9, @@ -697358,7 +697477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211041] = 39, + [211204] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697379,69 +697498,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4136), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(5629), 1, + ACTIONS(5310), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6620), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_GT_GT, - ACTIONS(6741), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6745), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6749), 1, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6751), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6753), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2655), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6633), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6641), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6645), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6649), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6747), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6963), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, STATE(5730), 9, sym_preproc_region, sym_preproc_endregion, @@ -697452,7 +697571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211174] = 18, + [211337] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697473,22 +697592,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(8805), 1, + anon_sym_COMMA, + ACTIONS(8807), 1, + anon_sym_RBRACE, + ACTIONS(8809), 1, + aux_sym_preproc_if_token1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(5835), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7066), 1, + sym_identifier, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7053), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5731), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [211438] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(8809), 1, + ACTIONS(8811), 1, anon_sym_DOT, - ACTIONS(4058), 4, + ACTIONS(4024), 4, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - STATE(5731), 9, + STATE(5732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697498,7 +697695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697525,7 +697722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [211265] = 39, + [211529] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697546,70 +697743,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(4846), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(5312), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, + ACTIONS(6133), 1, anon_sym_SLASH, - ACTIONS(6405), 1, + ACTIONS(6135), 1, anon_sym_CARET, - ACTIONS(6407), 1, + ACTIONS(6137), 1, anon_sym_PIPE, - ACTIONS(6409), 1, + ACTIONS(6139), 1, anon_sym_AMP, - ACTIONS(6413), 1, + ACTIONS(6143), 1, anon_sym_GT_GT, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6423), 1, + ACTIONS(6151), 1, anon_sym_AMP_AMP, - ACTIONS(6425), 1, + ACTIONS(6153), 1, anon_sym_PIPE_PIPE, - ACTIONS(6427), 1, + ACTIONS(6155), 1, anon_sym_QMARK_QMARK, - ACTIONS(6433), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3025), 1, + STATE(3372), 1, sym_argument_list, - ACTIONS(4884), 2, + ACTIONS(5314), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6395), 2, + ACTIONS(6125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6399), 2, + ACTIONS(6129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6401), 2, + ACTIONS(6131), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6411), 2, + ACTIONS(6141), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6415), 2, + ACTIONS(6145), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6417), 2, + ACTIONS(6147), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5732), 9, + STATE(5733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697619,7 +697816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211398] = 39, + [211662] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697640,70 +697837,139 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(2979), 2, + anon_sym_while, + anon_sym_else, + STATE(5734), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2981), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(2983), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, anon_sym_DASH_GT, - ACTIONS(5322), 1, + anon_sym_with, + [211745] = 39, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LBRACK, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7201), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(7205), 1, - anon_sym_GT_GT, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7219), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(7221), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(7223), 1, + ACTIONS(6955), 1, + anon_sym_AMP, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(7225), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(7227), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2469), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7197), 2, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7199), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7203), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7213), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7215), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5733), 9, + STATE(5735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697713,7 +697979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211531] = 18, + [211878] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697735,21 +698001,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(4136), 1, + anon_sym_DOT, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_BANG, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(8811), 1, - anon_sym_DOT, - ACTIONS(4058), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5734), 9, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7449), 1, + anon_sym_SLASH, + ACTIONS(7451), 1, + anon_sym_CARET, + ACTIONS(7453), 1, + anon_sym_PIPE, + ACTIONS(7455), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_GT, + ACTIONS(7467), 1, + anon_sym_AMP_AMP, + ACTIONS(7469), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + anon_sym_QMARK_QMARK, + STATE(2500), 1, + sym_bracketed_argument_list, + STATE(3372), 1, + sym_argument_list, + ACTIONS(5314), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7441), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7445), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7447), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7457), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7463), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697759,34 +698073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [211622] = 21, + [212011] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697807,29 +698094,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3542), 1, - sym__variable_designation, - ACTIONS(3971), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3969), 4, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8813), 1, + anon_sym_DOT, + ACTIONS(4024), 4, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(5735), 9, + STATE(5737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697839,7 +698119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697850,6 +698130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -697862,7 +698145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211719] = 39, + sym__identifier_token, + [212102] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697883,70 +698167,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(4779), 1, + ACTIONS(4677), 1, anon_sym_DOT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5682), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2935), 1, + STATE(3255), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5736), 9, + STATE(5738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697956,7 +698240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211852] = 39, + [212235] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697977,70 +698261,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6785), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(6787), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(6789), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(6791), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(6795), 1, + ACTIONS(6959), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(6915), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(6917), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6779), 2, + ACTIONS(6941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6781), 2, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6783), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6793), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6797), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6799), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5737), 9, + STATE(5739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698050,7 +698334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211985] = 39, + [212368] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698071,70 +698355,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6581), 1, + ACTIONS(6501), 1, anon_sym_SLASH, - ACTIONS(6583), 1, + ACTIONS(6571), 1, anon_sym_CARET, - ACTIONS(6585), 1, + ACTIONS(6573), 1, anon_sym_PIPE, - ACTIONS(6587), 1, + ACTIONS(6575), 1, anon_sym_AMP, - ACTIONS(6591), 1, + ACTIONS(6579), 1, anon_sym_GT_GT, - ACTIONS(6597), 1, + ACTIONS(6585), 1, anon_sym_AMP_AMP, - ACTIONS(6599), 1, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(6601), 1, + ACTIONS(6589), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6573), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6577), 2, + ACTIONS(6497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6579), 2, + ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6589), 2, + ACTIONS(6567), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6577), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6593), 2, + ACTIONS(6581), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6595), 2, + ACTIONS(6583), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5738), 9, + STATE(5740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698144,7 +698428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212118] = 23, + [212501] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698165,31 +698449,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(5073), 1, - anon_sym_LBRACK, - ACTIONS(8813), 1, - anon_sym_COMMA, - ACTIONS(8815), 1, - anon_sym_RBRACE, - ACTIONS(8817), 1, - aux_sym_preproc_if_token1, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(5842), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7069), 1, + STATE(3534), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7067), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5739), 9, + ACTIONS(3933), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3931), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698199,7 +698481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698222,7 +698504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212219] = 39, + [212598] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698243,70 +698525,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_LPAREN, - ACTIONS(5312), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8815), 1, + anon_sym_EQ, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(8817), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3680), 5, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, + anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7237), 1, - anon_sym_SLASH, - ACTIONS(7241), 1, - anon_sym_GT_GT, - ACTIONS(7390), 1, - anon_sym_CARET, - ACTIONS(7392), 1, - anon_sym_PIPE, - ACTIONS(7394), 1, - anon_sym_AMP, - ACTIONS(7400), 1, - anon_sym_AMP_AMP, - ACTIONS(7402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7404), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3333), 1, - sym_argument_list, - ACTIONS(5314), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7235), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7386), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7396), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7398), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5740), 9, + anon_sym_DOT, + STATE(5742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698316,7 +698554,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212352] = 39, + ACTIONS(3678), 23, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [212691] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698337,70 +698599,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, - anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - ACTIONS(7325), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, anon_sym_SLASH, - ACTIONS(7329), 1, - anon_sym_GT_GT, - ACTIONS(7414), 1, + ACTIONS(6951), 1, anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(6953), 1, anon_sym_PIPE, - ACTIONS(7418), 1, + ACTIONS(6955), 1, anon_sym_AMP, - ACTIONS(7424), 1, + ACTIONS(6959), 1, + anon_sym_GT_GT, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6967), 1, anon_sym_AMP_AMP, - ACTIONS(7426), 1, + ACTIONS(6969), 1, anon_sym_PIPE_PIPE, - ACTIONS(7428), 1, + ACTIONS(6971), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7321), 2, + ACTIONS(6941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7323), 2, + ACTIONS(6947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7327), 2, + ACTIONS(6957), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7410), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7420), 2, + ACTIONS(6961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7422), 2, + ACTIONS(6963), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5741), 9, + STATE(5743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698410,7 +698672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212485] = 18, + [212824] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698431,22 +698693,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8819), 1, - anon_sym_DOT, - ACTIONS(4058), 4, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3903), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5742), 9, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3533), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(5798), 1, + sym_property_pattern_clause, + ACTIONS(3931), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3933), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698456,7 +698728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698466,10 +698738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -698482,8 +698750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [212576] = 39, + [212925] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698504,70 +698771,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6701), 1, - anon_sym_SLASH, - ACTIONS(6703), 1, - anon_sym_CARET, - ACTIONS(6705), 1, - anon_sym_PIPE, - ACTIONS(6707), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_GT_GT, - ACTIONS(6719), 1, - anon_sym_AMP_AMP, - ACTIONS(6721), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6695), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6715), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5743), 9, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3536), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + ACTIONS(3999), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3997), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698577,7 +698803,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212709] = 39, + ACTIONS(6987), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [213022] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698598,70 +698847,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6849), 1, + ACTIONS(6703), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6853), 1, + ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6855), 1, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6859), 1, + ACTIONS(6713), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(6721), 1, anon_sym_AMP_AMP, - ACTIONS(6869), 1, + ACTIONS(6723), 1, anon_sym_PIPE_PIPE, - ACTIONS(6871), 1, + ACTIONS(6725), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6841), 2, + ACTIONS(6695), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6845), 2, + ACTIONS(6699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6847), 2, + ACTIONS(6701), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6857), 2, + ACTIONS(6711), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6861), 2, + ACTIONS(6715), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6863), 2, + ACTIONS(6717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5744), 9, + STATE(5746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698671,7 +698920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212842] = 39, + [213155] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698692,70 +698941,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5629), 1, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(5372), 1, + anon_sym_BANG, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6620), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_BANG, - ACTIONS(6813), 1, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7825), 1, anon_sym_SLASH, - ACTIONS(6815), 1, + ACTIONS(7827), 1, anon_sym_CARET, - ACTIONS(6817), 1, + ACTIONS(7829), 1, anon_sym_PIPE, - ACTIONS(6819), 1, + ACTIONS(7831), 1, anon_sym_AMP, - ACTIONS(6823), 1, + ACTIONS(7835), 1, anon_sym_GT_GT, - ACTIONS(6831), 1, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - ACTIONS(6833), 1, + ACTIONS(7843), 1, anon_sym_PIPE_PIPE, - ACTIONS(6835), 1, + ACTIONS(7845), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(4638), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(6637), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6805), 2, + ACTIONS(7817), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6809), 2, + ACTIONS(7821), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6811), 2, + ACTIONS(7823), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6821), 2, + ACTIONS(7833), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6825), 2, + ACTIONS(7837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6827), 2, + ACTIONS(7839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5745), 9, + STATE(5747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698765,7 +699014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212975] = 39, + [213288] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698786,70 +699035,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5312), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7339), 1, + ACTIONS(7201), 1, anon_sym_SLASH, - ACTIONS(7343), 1, + ACTIONS(7205), 1, anon_sym_GT_GT, - ACTIONS(7364), 1, + ACTIONS(7211), 1, + anon_sym_AMP, + ACTIONS(7219), 1, anon_sym_CARET, - ACTIONS(7366), 1, + ACTIONS(7221), 1, anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, + ACTIONS(7223), 1, anon_sym_AMP_AMP, - ACTIONS(7376), 1, + ACTIONS(7225), 1, anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, + ACTIONS(7227), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3333), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5314), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7335), 2, + ACTIONS(7197), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7337), 2, + ACTIONS(7199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7341), 2, + ACTIONS(7203), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, + ACTIONS(7209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7215), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5746), 9, + STATE(5748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698859,7 +699108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213108] = 19, + [213421] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698880,26 +699129,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8821), 1, - anon_sym_EQ, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(8823), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3682), 5, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, + ACTIONS(6757), 1, anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8819), 1, anon_sym_DOT, - STATE(5747), 9, + ACTIONS(4024), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(5749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698909,7 +699154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698920,6 +699165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -698933,7 +699181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [213201] = 39, + [213512] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698954,70 +699202,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5310), 1, - anon_sym_LBRACK, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(6419), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, + anon_sym_as, + ACTIONS(6975), 1, + anon_sym_is, + ACTIONS(7707), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(7711), 1, + anon_sym_GT_GT, + ACTIONS(7717), 1, + anon_sym_AMP, + ACTIONS(7725), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(7727), 1, anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(7729), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2669), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(7703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(7705), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(7709), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(7715), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(7721), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5748), 9, + STATE(5750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699027,7 +699275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213334] = 39, + [213645] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699048,70 +699296,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4761), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4763), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(5668), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5686), 1, anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(5953), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(5959), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(5961), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(5963), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(5967), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(5973), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(5979), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, + ACTIONS(6423), 1, + anon_sym_switch, + ACTIONS(6437), 1, + anon_sym_with, + ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_DOT_DOT, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3800), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, + ACTIONS(5949), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(5951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6935), 2, + ACTIONS(5957), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5965), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6939), 2, + ACTIONS(5969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6941), 2, + ACTIONS(5971), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5749), 9, + STATE(5751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699121,7 +699369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213467] = 21, + [213778] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699142,29 +699390,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3507), 1, - sym__variable_designation, - ACTIONS(3935), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3933), 4, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8821), 1, + anon_sym_DOT, + ACTIONS(4024), 4, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5750), 9, + anon_sym_LBRACE, + STATE(5752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699174,7 +699415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699185,6 +699426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -699197,7 +699441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213564] = 17, + sym__identifier_token, + [213869] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699218,21 +699463,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6702), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - ACTIONS(3945), 5, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8823), 1, + anon_sym_DOT, + ACTIONS(4024), 4, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - STATE(5751), 9, + STATE(5753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699242,7 +699488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3943), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699269,7 +699515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [213653] = 39, + [213960] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699290,164 +699536,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, - anon_sym_SLASH, - ACTIONS(6929), 1, - anon_sym_CARET, - ACTIONS(6931), 1, - anon_sym_PIPE, - ACTIONS(6933), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, - anon_sym_AMP_AMP, - ACTIONS(6947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 2, + ACTIONS(6757), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5752), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [213786] = 39, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(4846), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6322), 1, - anon_sym_SLASH, - ACTIONS(6324), 1, - anon_sym_CARET, - ACTIONS(6326), 1, - anon_sym_PIPE, - ACTIONS(6328), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_GT_GT, - ACTIONS(6342), 1, - anon_sym_AMP_AMP, - ACTIONS(6344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6346), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(2502), 1, - sym_bracketed_argument_list, - STATE(3025), 1, - sym_argument_list, - ACTIONS(4884), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6314), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6330), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5753), 9, + ACTIONS(8825), 1, + anon_sym_DOT, + ACTIONS(4024), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699457,7 +699561,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213919] = 39, + ACTIONS(4022), 26, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [214051] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699478,70 +699609,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7741), 1, + ACTIONS(7773), 1, anon_sym_SLASH, - ACTIONS(7745), 1, + ACTIONS(7777), 1, anon_sym_GT_GT, - ACTIONS(7751), 1, + ACTIONS(7783), 1, anon_sym_AMP, - ACTIONS(7761), 1, + ACTIONS(7793), 1, anon_sym_CARET, - ACTIONS(7763), 1, + ACTIONS(7795), 1, anon_sym_PIPE, - ACTIONS(7767), 1, + ACTIONS(7799), 1, anon_sym_AMP_AMP, - ACTIONS(7769), 1, + ACTIONS(7801), 1, anon_sym_PIPE_PIPE, - ACTIONS(7771), 1, + ACTIONS(7803), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7737), 2, + ACTIONS(7769), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7739), 2, + ACTIONS(7771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7743), 2, + ACTIONS(7775), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7749), 2, + ACTIONS(7781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7753), 2, + ACTIONS(7785), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7755), 2, + ACTIONS(7787), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5754), 9, + STATE(5755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699551,7 +699682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [214052] = 39, + [214184] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699572,70 +699703,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4158), 1, anon_sym_DOT, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(5316), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(5372), 1, anon_sym_BANG, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7793), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7795), 1, + ACTIONS(7498), 1, anon_sym_CARET, - ACTIONS(7797), 1, + ACTIONS(7500), 1, anon_sym_PIPE, - ACTIONS(7799), 1, + ACTIONS(7502), 1, anon_sym_AMP, - ACTIONS(7803), 1, + ACTIONS(7506), 1, anon_sym_GT_GT, - ACTIONS(7809), 1, + ACTIONS(7514), 1, anon_sym_AMP_AMP, - ACTIONS(7811), 1, + ACTIONS(7516), 1, anon_sym_PIPE_PIPE, - ACTIONS(7813), 1, + ACTIONS(7518), 1, anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3488), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(5374), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7785), 2, + ACTIONS(7488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7789), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7791), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7801), 2, + ACTIONS(7504), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7805), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7807), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5755), 9, + STATE(5756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699645,7 +699776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [214185] = 18, + [214317] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699666,22 +699797,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8825), 1, - anon_sym_DOT, - ACTIONS(4058), 4, - anon_sym_COMMA, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(3555), 1, + sym__variable_designation, + ACTIONS(3929), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3927), 4, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5756), 9, + anon_sym_RBRACE, + STATE(5757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699691,7 +699829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699702,9 +699840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -699717,8 +699852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [214276] = 39, + [214414] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699739,161 +699873,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_DOT, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(5322), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(5346), 1, + ACTIONS(4829), 1, + anon_sym_DOT, + ACTIONS(4881), 1, anon_sym_BANG, - ACTIONS(6419), 1, - anon_sym_switch, - ACTIONS(6433), 1, - anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(6921), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, + ACTIONS(6283), 1, anon_sym_SLASH, - ACTIONS(6929), 1, + ACTIONS(6285), 1, anon_sym_CARET, - ACTIONS(6931), 1, + ACTIONS(6287), 1, anon_sym_PIPE, - ACTIONS(6933), 1, + ACTIONS(6289), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6293), 1, anon_sym_GT_GT, - ACTIONS(6943), 1, - anon_sym_DOT_DOT, - ACTIONS(6945), 1, + ACTIONS(6303), 1, anon_sym_AMP_AMP, - ACTIONS(6947), 1, + ACTIONS(6305), 1, anon_sym_PIPE_PIPE, - ACTIONS(6949), 1, + ACTIONS(6307), 1, anon_sym_QMARK_QMARK, - ACTIONS(6951), 1, - anon_sym_as, - ACTIONS(6953), 1, - anon_sym_is, - STATE(3207), 1, - sym_bracketed_argument_list, - STATE(3403), 1, - sym_argument_list, - ACTIONS(5348), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6919), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6939), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6941), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5757), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [214409] = 39, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_DOT, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(5346), 1, - anon_sym_BANG, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(6419), 1, + ACTIONS(6423), 1, anon_sym_switch, - ACTIONS(6433), 1, + ACTIONS(6437), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_QMARK, ACTIONS(6943), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(6973), 1, anon_sym_as, - ACTIONS(6953), 1, + ACTIONS(6975), 1, anon_sym_is, - ACTIONS(7503), 1, - anon_sym_SLASH, - ACTIONS(7507), 1, - anon_sym_GT_GT, - ACTIONS(7513), 1, - anon_sym_AMP, - ACTIONS(7521), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_PIPE, - ACTIONS(7525), 1, - anon_sym_AMP_AMP, - ACTIONS(7527), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7529), 1, - anon_sym_QMARK_QMARK, - STATE(2502), 1, + STATE(2500), 1, sym_bracketed_argument_list, - STATE(3403), 1, + STATE(3081), 1, sym_argument_list, - ACTIONS(5348), 2, + ACTIONS(4883), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7499), 2, + ACTIONS(6275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6279), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7501), 2, + ACTIONS(6281), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7505), 2, + ACTIONS(6291), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7511), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7515), 2, + ACTIONS(6295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7517), 2, + ACTIONS(6297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(5758), 9, @@ -699906,7 +699946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [214542] = 22, + [214547] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699927,28 +699967,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(8817), 1, - aux_sym_preproc_if_token1, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, ACTIONS(8827), 1, - anon_sym_RBRACE, - STATE(2182), 1, - sym__reserved_identifier, - STATE(5842), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7069), 1, - sym_identifier, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7111), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, + anon_sym_DOT, + ACTIONS(4024), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, STATE(5759), 9, sym_preproc_region, sym_preproc_endregion, @@ -699959,7 +699991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699970,6 +700002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -699982,7 +700017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214640] = 20, + sym__identifier_token, + [214637] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700005,19 +700041,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3693), 1, anon_sym_COLON_COLON, - ACTIONS(6356), 1, + ACTIONS(6357), 1, anon_sym_LT, ACTIONS(8829), 1, anon_sym_EQ, - ACTIONS(8831), 1, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(8817), 3, anon_sym_COMMA, - ACTIONS(8834), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4163), 1, - sym_type_argument_list, - STATE(6902), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3682), 4, + ACTIONS(3680), 4, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR, @@ -700032,7 +700066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700056,7 +700090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [214734] = 18, + [214727] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700077,20 +700111,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(8837), 1, + ACTIONS(8831), 1, anon_sym_DOT, - ACTIONS(4058), 3, + ACTIONS(4024), 3, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_EQ_GT, STATE(5761), 9, sym_preproc_region, sym_preproc_endregion, @@ -700101,7 +700135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700128,7 +700162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [214824] = 18, + [214817] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700149,23 +700183,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8829), 1, - anon_sym_EQ, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(8839), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(3587), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4540), 1, + sym_identifier, + STATE(5951), 1, + sym_explicit_interface_specifier, + STATE(7567), 1, + sym__name, + ACTIONS(5632), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5762), 9, sym_preproc_region, sym_preproc_endregion, @@ -700176,7 +700214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700199,8 +700237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [214914] = 14, + [214913] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700221,7 +700258,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8841), 1, + ACTIONS(8833), 1, anon_sym_SEMI, STATE(5763), 9, sym_preproc_region, @@ -700233,7 +700270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5017), 11, + ACTIONS(5155), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -700245,7 +700282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5015), 22, + ACTIONS(5153), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -700268,7 +700305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [214996] = 18, + [214995] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700289,21 +700326,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8843), 1, - anon_sym_LPAREN, - STATE(4163), 1, - sym_type_argument_list, - STATE(6607), 1, - sym_parameter_list, - ACTIONS(3682), 4, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(5075), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + STATE(3728), 1, + sym__reserved_identifier, + STATE(5799), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7101), 1, + sym_type_parameter, + STATE(7336), 1, + sym_identifier, + ACTIONS(5085), 2, + anon_sym_in, + anon_sym_out, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, STATE(5764), 9, sym_preproc_region, sym_preproc_endregion, @@ -700314,15 +700358,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 25, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -700339,8 +700381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [215086] = 22, + [215093] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700361,28 +700402,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8835), 1, + anon_sym_EQ, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(8837), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(3680), 4, anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, - STATE(3709), 1, - sym__reserved_identifier, - STATE(5807), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7190), 1, - sym_identifier, - STATE(7253), 1, - sym_type_parameter, - ACTIONS(5083), 2, - anon_sym_in, - anon_sym_out, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, STATE(5765), 9, sym_preproc_region, sym_preproc_endregion, @@ -700393,7 +700429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700416,7 +700452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215184] = 18, + sym__identifier_token, + [215183] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700437,21 +700474,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8843), 1, - anon_sym_LPAREN, - STATE(4163), 1, - sym_type_argument_list, - STATE(6619), 1, - sym_parameter_list, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(3585), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4540), 1, + sym_identifier, + STATE(5951), 1, + sym_explicit_interface_specifier, + STATE(7567), 1, + sym__name, + ACTIONS(5632), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5766), 9, sym_preproc_region, sym_preproc_endregion, @@ -700462,15 +700505,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -700487,8 +700528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [215274] = 22, + [215279] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700509,28 +700549,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8839), 1, + anon_sym_DOT, + ACTIONS(4024), 3, anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(6161), 1, - sym_explicit_interface_specifier, - STATE(6334), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(5767), 9, sym_preproc_region, sym_preproc_endregion, @@ -700541,7 +700573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700552,6 +700584,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -700564,7 +700599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215372] = 22, + sym__identifier_token, + [215369] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700585,28 +700621,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5073), 1, - anon_sym_LBRACK, - ACTIONS(8817), 1, - aux_sym_preproc_if_token1, - ACTIONS(8846), 1, - anon_sym_RBRACE, - STATE(2182), 1, - sym__reserved_identifier, - STATE(5842), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7069), 1, - sym_identifier, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7111), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, + ACTIONS(8841), 1, + anon_sym_SEMI, STATE(5768), 9, sym_preproc_region, sym_preproc_endregion, @@ -700617,13 +700633,96 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5155), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5153), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [215451] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_type_argument_list, + STATE(6556), 1, + sym_parameter_list, + ACTIONS(3680), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5769), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3678), 25, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -700640,7 +700739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215470] = 21, + sym__identifier_token, + [215541] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700663,26 +700763,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(8809), 1, + aux_sym_preproc_if_token1, + ACTIONS(8846), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(3563), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4474), 1, + STATE(5835), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7066), 1, sym_identifier, - STATE(5945), 1, - sym_explicit_interface_specifier, - STATE(7384), 1, - sym__name, - ACTIONS(5625), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5769), 9, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7274), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700715,7 +700816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215566] = 18, + [215639] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700736,24 +700837,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8848), 1, - anon_sym_EQ, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(8823), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5770), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8196), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(6179), 1, + sym_explicit_interface_specifier, + STATE(6338), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700763,7 +700869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700786,8 +700892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [215656] = 22, + [215737] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700808,29 +700913,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(6152), 1, - sym_explicit_interface_specifier, - STATE(6336), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5771), 9, + STATE(4127), 1, + sym_type_argument_list, + STATE(6640), 1, + sym_parameter_list, + ACTIONS(3680), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700840,13 +700938,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3678), 25, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -700863,7 +700963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215754] = 21, + sym__identifier_token, + [215827] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700886,26 +700987,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(8196), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(3589), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4474), 1, - sym_identifier, - STATE(5945), 1, + STATE(6154), 1, sym_explicit_interface_specifier, - STATE(7384), 1, + STATE(6334), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, sym__name, - ACTIONS(5625), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5772), 9, + STATE(5773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700938,7 +701040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215850] = 18, + [215925] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700959,21 +701061,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(8850), 1, + ACTIONS(8848), 1, anon_sym_DOT, - ACTIONS(4058), 3, + ACTIONS(4024), 3, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, - STATE(5773), 9, + STATE(5774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700983,7 +701085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701010,7 +701112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [215940] = 18, + [216015] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701031,21 +701133,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8852), 1, - anon_sym_DOT, - ACTIONS(4058), 3, - anon_sym_COLON, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8196), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5774), 9, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(6171), 1, + sym_explicit_interface_specifier, + STATE(6337), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7677), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701055,7 +701165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701066,9 +701176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -701081,76 +701188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [216030] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8854), 1, - anon_sym_SEMI, - STATE(5775), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5017), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5015), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [216112] = 18, + [216113] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701171,21 +701209,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8843), 1, - anon_sym_LPAREN, - STATE(4163), 1, - sym_type_argument_list, - STATE(6610), 1, - sym_parameter_list, - ACTIONS(3682), 4, + ACTIONS(2993), 1, + sym__identifier_token, + ACTIONS(5075), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + STATE(3728), 1, + sym__reserved_identifier, + STATE(5799), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7180), 1, + sym_type_parameter, + STATE(7336), 1, + sym_identifier, + ACTIONS(5085), 2, + anon_sym_in, + anon_sym_out, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, STATE(5776), 9, sym_preproc_region, sym_preproc_endregion, @@ -701196,15 +701241,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 25, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -701221,8 +701264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [216202] = 18, + [216211] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701243,20 +701285,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_type_argument_list, + STATE(6658), 1, + sym_parameter_list, + ACTIONS(3680), 4, anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, anon_sym_QMARK, - ACTIONS(8856), 1, + anon_sym_STAR, anon_sym_DOT, - ACTIONS(4058), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, STATE(5777), 9, sym_preproc_region, sym_preproc_endregion, @@ -701267,20 +701310,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(3678), 25, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -701294,7 +701336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [216292] = 22, + [216301] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701315,28 +701357,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, - sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8835), 1, + anon_sym_EQ, + ACTIONS(8850), 1, + anon_sym_COMMA, + ACTIONS(8853), 1, + anon_sym_RPAREN, + STATE(4127), 1, + sym_type_argument_list, + STATE(7086), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3680), 4, anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, - STATE(3709), 1, - sym__reserved_identifier, - STATE(5807), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7003), 1, - sym_type_parameter, - STATE(7190), 1, - sym_identifier, - ACTIONS(5083), 2, - anon_sym_in, - anon_sym_out, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, STATE(5778), 9, sym_preproc_region, sym_preproc_endregion, @@ -701347,7 +701386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701370,7 +701409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216390] = 22, + sym__identifier_token, + [216395] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701393,23 +701433,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, - anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(6160), 1, - sym_explicit_interface_specifier, - STATE(6335), 1, + STATE(3562), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4540), 1, sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7501), 1, + STATE(5951), 1, + sym_explicit_interface_specifier, + STATE(7567), 1, sym__name, - STATE(4145), 3, + ACTIONS(5632), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -701446,7 +701485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216488] = 21, + [216491] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701469,25 +701508,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(8809), 1, + aux_sym_preproc_if_token1, + ACTIONS(8856), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(3560), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4474), 1, + STATE(5835), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7066), 1, sym_identifier, - STATE(5945), 1, - sym_explicit_interface_specifier, - STATE(7384), 1, - sym__name, - ACTIONS(5625), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7274), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, STATE(5780), 9, sym_preproc_region, sym_preproc_endregion, @@ -701521,7 +701561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216584] = 22, + [216589] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701542,27 +701582,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5073), 1, - anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, + ACTIONS(6929), 1, + anon_sym_LT, ACTIONS(8858), 1, - aux_sym_preproc_if_token3, - STATE(2182), 1, - sym__reserved_identifier, - STATE(5833), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(6766), 1, - sym_identifier, - STATE(7683), 1, - sym_enum_member_declaration, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, + anon_sym_COLON_COLON, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, STATE(5781), 9, sym_preproc_region, sym_preproc_endregion, @@ -701573,7 +701602,81 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3678), 27, + anon_sym_alias, + anon_sym_global, + anon_sym_COLON, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [216674] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8860), 1, + anon_sym_EQ, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5782), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701596,7 +701699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216681] = 21, + sym__identifier_token, + [216761] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701619,25 +701723,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8860), 1, - anon_sym_unsafe, ACTIONS(8862), 1, + anon_sym_unsafe, + ACTIONS(8864), 1, anon_sym_static, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(5792), 1, + STATE(5786), 1, aux_sym_using_directive_repeat1, - STATE(6482), 1, + STATE(6503), 1, sym_identifier, - STATE(7127), 1, + STATE(7152), 1, sym__name, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5782), 9, + STATE(5783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701670,7 +701774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216776] = 16, + [216856] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701691,17 +701795,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(8864), 1, - anon_sym_COLON_COLON, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - STATE(5783), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6120), 1, + aux_sym_using_directive_repeat1, + STATE(7152), 1, + sym__name, + ACTIONS(8864), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701711,10 +701824,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 27, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -701723,9 +701835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -701738,8 +701847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [216861] = 17, + [216949] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701760,22 +701868,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8866), 1, - anon_sym_EQ, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 6, - anon_sym_SEMI, + ACTIONS(6755), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, + ACTIONS(6757), 1, anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8866), 1, anon_sym_DOT, - STATE(5784), 9, + ACTIONS(4024), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701785,7 +701890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(4022), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701796,6 +701901,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -701809,7 +701917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [216948] = 19, + [217036] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701830,24 +701938,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8868), 1, - anon_sym_COMMA, - ACTIONS(8871), 1, - anon_sym_RPAREN, - STATE(4163), 1, - sym_type_argument_list, - STATE(6902), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5785), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6120), 1, + aux_sym_using_directive_repeat1, + STATE(7213), 1, + sym__name, + ACTIONS(8864), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701857,7 +701967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701880,8 +701990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [217039] = 21, + [217129] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701902,28 +702011,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3435), 1, - sym__variable_designation, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, sym_identifier, - ACTIONS(3997), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3999), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5786), 9, + STATE(6120), 1, + aux_sym_using_directive_repeat1, + STATE(7325), 1, + sym__name, + ACTIONS(8864), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701933,7 +702040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701943,6 +702050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -701955,7 +702063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217134] = 19, + [217222] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701976,25 +702084,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8873), 1, - sym__identifier_token, - ACTIONS(8879), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8868), 1, + anon_sym_EQ, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 6, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4197), 1, - sym__simple_name, - STATE(4458), 1, - sym_identifier, - ACTIONS(8881), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(5787), 9, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702004,7 +702109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8876), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702027,7 +702132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217225] = 19, + sym__identifier_token, + [217309] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702048,24 +702154,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(3872), 1, - anon_sym_COMMA, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8829), 1, - anon_sym_EQ, - ACTIONS(8839), 1, - anon_sym_RPAREN, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 4, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5075), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5788), 9, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + ACTIONS(8870), 1, + aux_sym_preproc_if_token3, + STATE(2182), 1, + sym__reserved_identifier, + STATE(5844), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(6773), 1, + sym_identifier, + STATE(7714), 1, + sym_enum_member_declaration, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702075,7 +702185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702098,8 +702208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [217316] = 17, + [217406] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702120,19 +702229,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8883), 1, - anon_sym_DOT, - ACTIONS(4058), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5789), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8864), 1, + anon_sym_static, + ACTIONS(8872), 1, + anon_sym_unsafe, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(5805), 1, + aux_sym_using_directive_repeat1, + STATE(6492), 1, + sym_identifier, + STATE(7301), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702142,7 +702259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702153,9 +702270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702168,8 +702282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [217403] = 19, + [217501] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702190,25 +702303,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_LPAREN, - ACTIONS(8885), 1, + ACTIONS(8874), 1, sym__identifier_token, - STATE(3709), 1, + ACTIONS(8880), 1, + anon_sym_LPAREN, + STATE(2182), 1, sym__reserved_identifier, - STATE(4020), 1, - sym_identifier, - STATE(4151), 1, + STATE(2187), 1, sym_generic_name, - STATE(4197), 1, + STATE(4191), 1, sym__simple_name, - ACTIONS(8881), 5, + STATE(4415), 1, + sym_identifier, + ACTIONS(8882), 5, anon_sym_ref, anon_sym_delegate, anon_sym_operator, anon_sym_checked, sym_predefined_type, - STATE(5790), 9, + STATE(5791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702218,7 +702331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8888), 22, + ACTIONS(8877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702241,7 +702354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217494] = 21, + [217592] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702264,25 +702377,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8862), 1, - anon_sym_static, - ACTIONS(8891), 1, - anon_sym_unsafe, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(5802), 1, - aux_sym_using_directive_repeat1, - STATE(6462), 1, + STATE(4540), 1, sym_identifier, - STATE(7209), 1, + STATE(6120), 1, + aux_sym_using_directive_repeat1, + STATE(7301), 1, sym__name, - STATE(4145), 3, + ACTIONS(8864), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5791), 9, + STATE(5792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702315,7 +702427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217589] = 20, + [217685] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702336,26 +702448,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(3534), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(6120), 1, - aux_sym_using_directive_repeat1, - STATE(7209), 1, - sym__name, - ACTIONS(8862), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5792), 9, + ACTIONS(3931), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3933), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702365,7 +702479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702375,7 +702489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702388,7 +702501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217682] = 23, + [217780] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702409,29 +702522,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8884), 1, + anon_sym_COMMA, + ACTIONS(8887), 1, + anon_sym_RPAREN, + STATE(4127), 1, + sym_type_argument_list, + STATE(7086), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3680), 4, anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, - ACTIONS(8858), 1, - aux_sym_preproc_if_token3, - STATE(2182), 1, - sym__reserved_identifier, - STATE(5833), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6066), 1, - sym_preproc_if_in_attribute_list, - STATE(6068), 1, - sym__attribute_list, - STATE(6122), 1, - sym_attribute_list, - STATE(6766), 1, - sym_identifier, - STATE(7683), 1, - sym_enum_member_declaration, - STATE(5793), 9, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702441,7 +702549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702464,7 +702572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217781] = 21, + sym__identifier_token, + [217871] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702485,28 +702594,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(4011), 1, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(3431), 1, - sym__variable_designation, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(3547), 1, sym_identifier, - ACTIONS(3921), 2, + STATE(3555), 1, + sym__variable_designation, + ACTIONS(3927), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(3923), 3, + ACTIONS(3929), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(5794), 9, + STATE(5795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702516,7 +702625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702538,7 +702647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217876] = 20, + [217966] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702559,26 +702668,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(3536), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(6120), 1, - aux_sym_using_directive_repeat1, - STATE(7284), 1, - sym__name, - ACTIONS(8862), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5795), 9, + ACTIONS(3997), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3999), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702588,7 +702699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702598,7 +702709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702611,7 +702721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217969] = 20, + [218061] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702634,24 +702744,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(8864), 1, + anon_sym_static, + ACTIONS(8889), 1, + anon_sym_unsafe, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(6120), 1, + STATE(5792), 1, aux_sym_using_directive_repeat1, - STATE(7218), 1, + STATE(6502), 1, + sym_identifier, + STATE(7216), 1, sym__name, - ACTIONS(8862), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5796), 9, + STATE(5797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702684,7 +702795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218062] = 17, + [218156] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702705,22 +702816,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8893), 1, - anon_sym_EQ, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 6, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5797), 9, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(3403), 1, + sym__variable_designation, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + ACTIONS(4001), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4003), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702730,7 +702847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(6987), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702740,7 +702857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702753,8 +702869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218149] = 21, + [218251] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702775,28 +702890,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(7039), 1, + ACTIONS(2993), 1, sym__identifier_token, - STATE(2604), 1, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + STATE(3728), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(5842), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7147), 1, sym_identifier, - STATE(3542), 1, - sym__variable_designation, - ACTIONS(3969), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3971), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5798), 9, + ACTIONS(8891), 2, + anon_sym_in, + anon_sym_out, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702806,7 +702920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702816,6 +702930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -702828,7 +702943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218244] = 21, + [218346] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702849,27 +702964,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8862), 1, - anon_sym_static, - ACTIONS(8895), 1, - anon_sym_unsafe, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(5801), 1, - aux_sym_using_directive_repeat1, - STATE(6506), 1, - sym_identifier, - STATE(7109), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5799), 9, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(3839), 1, + anon_sym_COMMA, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8835), 1, + anon_sym_EQ, + ACTIONS(8837), 1, + anon_sym_RPAREN, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702879,7 +702991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702902,7 +703014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218339] = 20, + sym__identifier_token, + [218437] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702927,22 +703040,22 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, STATE(6120), 1, aux_sym_using_directive_repeat1, - STATE(7109), 1, + STATE(7206), 1, sym__name, - ACTIONS(8862), 2, + ACTIONS(8864), 2, anon_sym_unsafe, anon_sym_static, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5800), 9, + STATE(5801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702975,7 +703088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218432] = 20, + [218530] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702998,24 +703111,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(8809), 1, + aux_sym_preproc_if_token1, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(5835), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5984), 1, + sym__attribute_list, + STATE(7066), 1, sym_identifier, - STATE(6120), 1, - aux_sym_using_directive_repeat1, - STATE(7179), 1, - sym__name, - ACTIONS(8862), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5801), 9, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7274), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703048,7 +703162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218525] = 20, + [218625] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703071,24 +703185,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(5075), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + aux_sym_preproc_if_token1, + ACTIONS(8870), 1, + aux_sym_preproc_if_token3, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(5844), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5983), 1, + sym_preproc_if_in_attribute_list, + STATE(5984), 1, + sym__attribute_list, + STATE(6118), 1, + sym_attribute_list, + STATE(6773), 1, sym_identifier, - STATE(6120), 1, - aux_sym_using_directive_repeat1, - STATE(7147), 1, - sym__name, - ACTIONS(8862), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5802), 9, + STATE(7714), 1, + sym_enum_member_declaration, + STATE(5803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703121,7 +703238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218618] = 21, + [218724] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703142,28 +703259,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(8893), 1, + anon_sym_using, + ACTIONS(3459), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(3507), 1, - sym__variable_designation, - ACTIONS(3933), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3935), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5803), 9, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703173,16 +703279,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 21, + ACTIONS(3461), 25, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -703195,7 +703304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218713] = 21, + sym__identifier_token, + [218805] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703218,88 +703328,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8862), 1, - anon_sym_static, - ACTIONS(8897), 1, - anon_sym_unsafe, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(5796), 1, - aux_sym_using_directive_repeat1, - STATE(6504), 1, + STATE(4540), 1, sym_identifier, - STATE(7284), 1, + STATE(6120), 1, + aux_sym_using_directive_repeat1, + STATE(7173), 1, sym__name, - STATE(4145), 3, + ACTIONS(8864), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5804), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [218808] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8899), 1, - anon_sym_using, - ACTIONS(3459), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, STATE(5805), 9, sym_preproc_region, sym_preproc_endregion, @@ -703310,15 +703355,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3461), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -703335,8 +703378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218889] = 21, + [218898] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703359,24 +703401,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5073), 1, - anon_sym_LBRACK, - ACTIONS(8817), 1, - aux_sym_preproc_if_token1, + ACTIONS(8864), 1, + anon_sym_static, + ACTIONS(8895), 1, + anon_sym_unsafe, STATE(2182), 1, sym__reserved_identifier, - STATE(5842), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7069), 1, + STATE(2187), 1, + sym_generic_name, + STATE(5787), 1, + aux_sym_using_directive_repeat1, + STATE(6467), 1, sym_identifier, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7111), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, + STATE(7206), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5806), 9, sym_preproc_region, sym_preproc_endregion, @@ -703410,7 +703452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218984] = 21, + [218993] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703431,26 +703473,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(8880), 1, + anon_sym_LPAREN, + ACTIONS(8897), 1, sym__identifier_token, - ACTIONS(5073), 1, - anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym_preproc_if_token1, - STATE(3709), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(5841), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, - sym__attribute_list, - STATE(7160), 1, + STATE(4028), 1, sym_identifier, - ACTIONS(8901), 2, - anon_sym_in, - anon_sym_out, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, + STATE(4135), 1, + sym_generic_name, + STATE(4191), 1, + sym__simple_name, + ACTIONS(8882), 5, + anon_sym_ref, + anon_sym_delegate, + anon_sym_operator, + anon_sym_checked, + sym_predefined_type, STATE(5807), 9, sym_preproc_region, sym_preproc_endregion, @@ -703461,7 +703501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(8900), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -703484,7 +703524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219079] = 14, + [219084] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703505,12 +703545,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4929), 1, - aux_sym_preproc_if_token3, - ACTIONS(4749), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8903), 1, + anon_sym_RBRACK, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6529), 1, + sym__name, + STATE(7294), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5808), 9, sym_preproc_region, sym_preproc_endregion, @@ -703521,20 +703573,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -703549,8 +703596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219159] = 20, + [219176] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703573,19 +703619,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8903), 1, + ACTIONS(8905), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -703622,7 +703668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219251] = 20, + [219268] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703643,24 +703689,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8905), 1, - anon_sym_RBRACK, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(6611), 1, - sym__name, - STATE(7199), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, + ACTIONS(4973), 1, + aux_sym_preproc_if_token3, + ACTIONS(4745), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, STATE(5810), 9, sym_preproc_region, sym_preproc_endregion, @@ -703671,15 +703705,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4743), 28, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -703694,7 +703733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219343] = 20, + sym__identifier_token, + [219348] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703721,15 +703761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -703766,7 +703806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219435] = 20, + [219440] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703793,15 +703833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -703838,7 +703878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219527] = 20, + [219532] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703865,15 +703905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -703910,7 +703950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219619] = 20, + [219624] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703937,15 +703977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -703982,7 +704022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219711] = 20, + [219716] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704009,15 +704049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704054,7 +704094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219803] = 20, + [219808] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704081,15 +704121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704126,7 +704166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219895] = 20, + [219900] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704153,15 +704193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704198,7 +704238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219987] = 20, + [219992] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704225,15 +704265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704270,7 +704310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220079] = 20, + [220084] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704297,15 +704337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704342,7 +704382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220171] = 20, + [220176] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704369,15 +704409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -704414,7 +704454,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220263] = 20, + [220268] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5821), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3678), 23, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [220354] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704441,19 +704550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5821), 9, + STATE(5822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704486,7 +704595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220355] = 17, + [220446] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704507,21 +704616,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5822), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8929), 1, + anon_sym_RBRACK, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6529), 1, + sym__name, + STATE(7294), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704531,7 +704644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -704554,8 +704667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220441] = 20, + [220538] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704578,23 +704690,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8929), 1, + ACTIONS(8931), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5823), 9, + STATE(5824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704627,7 +704739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220533] = 20, + [220630] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704650,23 +704762,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8931), 1, + ACTIONS(8933), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5824), 9, + STATE(5825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704699,7 +704811,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220625] = 20, + [220722] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_DOT, + ACTIONS(8441), 1, + anon_sym_LPAREN, + STATE(7315), 1, + sym_attribute_argument_list, + ACTIONS(8935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5826), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4022), 23, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [220814] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8939), 1, + anon_sym_LPAREN, + ACTIONS(8941), 6, + anon_sym_ref, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_this, + anon_sym_scoped, + STATE(5827), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym__parameter_type_with_modifiers_repeat1, + ACTIONS(8937), 24, + anon_sym_alias, + anon_sym_global, + anon_sym_delegate, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_var, + sym_predefined_type, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [220894] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704722,23 +704972,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8933), 1, + ACTIONS(8944), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5825), 9, + STATE(5828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704771,7 +705021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220717] = 20, + [220986] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704794,23 +705044,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8935), 1, + ACTIONS(8946), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5826), 9, + STATE(5829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704843,7 +705093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220809] = 20, + [221078] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704866,23 +705116,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8937), 1, + ACTIONS(8948), 1, anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7294), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5827), 9, + STATE(5830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704915,7 +705165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220901] = 20, + [221170] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704936,24 +705186,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(8182), 1, - anon_sym_DOT, - ACTIONS(8730), 1, - anon_sym_LPAREN, - STATE(7242), 1, - sym_attribute_argument_list, - ACTIONS(8939), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5828), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6529), 1, + sym__name, + STATE(6847), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704963,7 +705212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -704986,8 +705235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220993] = 20, + [221259] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705010,23 +705258,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8941), 1, - anon_sym_RBRACK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(6994), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5829), 9, + STATE(5832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705059,73 +705305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221085] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8945), 1, - anon_sym_LPAREN, - ACTIONS(8947), 6, - anon_sym_ref, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_this, - anon_sym_scoped, - STATE(5830), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__parameter_type_with_modifiers_repeat1, - ACTIONS(8943), 24, - anon_sym_alias, - anon_sym_global, - anon_sym_delegate, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [221165] = 19, + [221348] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705150,19 +705330,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(6968), 1, + STATE(6969), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5831), 9, + STATE(5833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705195,7 +705375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221254] = 17, + [221437] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705216,20 +705396,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, - ACTIONS(8950), 1, - anon_sym_in, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5832), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, + sym_identifier, + STATE(6529), 1, + sym__name, + STATE(7294), 1, + sym_attribute, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705239,7 +705422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705262,8 +705445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [221339] = 20, + [221526] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705286,22 +705468,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - ACTIONS(5089), 1, + ACTIONS(5091), 1, aux_sym_preproc_if_token1, STATE(2182), 1, sym__reserved_identifier, - STATE(5841), 1, + STATE(5842), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, + STATE(5984), 1, sym__attribute_list, - STATE(6782), 1, + STATE(7075), 1, sym_identifier, - STATE(6066), 2, + STATE(5983), 2, sym_attribute_list, sym_preproc_if_in_attribute_list, - STATE(5833), 9, + STATE(5835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705334,7 +705516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221430] = 19, + [221617] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705359,19 +705541,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7031), 1, + STATE(6910), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5834), 9, + STATE(5836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705404,7 +705586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221519] = 19, + [221706] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705429,19 +705611,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7100), 1, + STATE(6869), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5835), 9, + STATE(5837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705474,7 +705656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221608] = 19, + [221795] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705499,19 +705681,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6388), 1, sym__name, - STATE(6944), 1, - sym_attribute, - STATE(4145), 3, + STATE(6701), 1, + sym_primary_constructor_base_type, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5836), 9, + STATE(5838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705544,7 +705726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221697] = 19, + [221884] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705569,19 +705751,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7008), 1, + STATE(7076), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5837), 9, + STATE(5839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705614,7 +705796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221786] = 19, + [221973] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705639,19 +705821,19 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6529), 1, sym__name, - STATE(7199), 1, + STATE(7043), 1, sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5838), 9, + STATE(5840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705684,7 +705866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221875] = 19, + [222062] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705705,23 +705887,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(6611), 1, - sym__name, - STATE(6857), 1, - sym_attribute, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5839), 9, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8950), 1, + anon_sym_in, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705731,7 +705910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705754,7 +705933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221964] = 17, + sym__identifier_token, + [222147] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705775,20 +705955,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, - anon_sym_LT, ACTIONS(8952), 1, - anon_sym_in, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(3682), 4, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5840), 9, + ACTIONS(8955), 1, + aux_sym_preproc_if_token1, + STATE(5984), 1, + sym__attribute_list, + STATE(5983), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5842), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705798,10 +705974,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3680), 23, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(4771), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -705822,7 +706001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [222049] = 16, + [222230] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705843,16 +706022,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, + anon_sym_LT, + ACTIONS(8958), 1, + anon_sym_in, + STATE(4127), 1, + sym_type_argument_list, + ACTIONS(3680), 4, anon_sym_LBRACK, - ACTIONS(8957), 1, - aux_sym_preproc_if_token1, - STATE(6068), 1, - sym__attribute_list, - STATE(6066), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5841), 10, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705862,13 +706045,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat1, - ACTIONS(4767), 25, + ACTIONS(3678), 23, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -705889,7 +706069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [222132] = 20, + [222315] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705912,22 +706092,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5073), 1, + ACTIONS(5075), 1, anon_sym_LBRACK, - ACTIONS(5089), 1, + ACTIONS(5091), 1, aux_sym_preproc_if_token1, STATE(2182), 1, sym__reserved_identifier, - STATE(5841), 1, + STATE(5842), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(6068), 1, + STATE(5984), 1, sym__attribute_list, - STATE(6884), 1, + STATE(6761), 1, sym_identifier, - STATE(6066), 2, + STATE(5983), 2, sym_attribute_list, sym_preproc_if_in_attribute_list, - STATE(5842), 9, + STATE(5844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705960,7 +706140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222223] = 19, + [222406] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705981,23 +706161,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(6396), 1, - sym__name, - STATE(6712), 1, - sym_primary_constructor_base_type, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5843), 9, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(5845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706007,15 +706173,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2719), 30, anon_sym_alias, anon_sym_global, + anon_sym_ref, + anon_sym_delegate, anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_this, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -706030,7 +706203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222312] = 19, + sym__identifier_token, + [222483] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706055,19 +706229,17 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6611), 1, + STATE(6717), 1, sym__name, - STATE(6845), 1, - sym_attribute, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5844), 9, + STATE(5846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706100,71 +706272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222401] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2739), 1, - anon_sym_LPAREN, - STATE(5845), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2719), 30, - anon_sym_alias, - anon_sym_global, - anon_sym_ref, - anon_sym_delegate, - anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - sym_predefined_type, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [222478] = 20, + [222569] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706187,21 +706295,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7646), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8964), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5846), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706234,7 +706342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222568] = 20, + [222659] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706257,21 +706365,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7725), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(8964), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5847), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706304,7 +706412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222658] = 20, + [222749] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706327,80 +706435,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, ACTIONS(8966), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5848), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [222748] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4854), 5, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + STATE(6986), 1, + sym__variable_designation, STATE(5849), 9, sym_preproc_region, sym_preproc_endregion, @@ -706411,12 +706459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4852), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -706436,8 +706482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [222824] = 20, + [222839] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706460,20 +706505,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7811), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8968), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5850), 9, sym_preproc_region, sym_preproc_endregion, @@ -706507,7 +706552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222914] = 20, + [222929] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706534,16 +706579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8970), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6753), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7100), 1, + sym_using_variable_declarator, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5851), 9, sym_preproc_region, sym_preproc_endregion, @@ -706577,7 +706622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223004] = 20, + [223019] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706600,20 +706645,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7651), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(8968), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6341), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5852), 9, sym_preproc_region, sym_preproc_endregion, @@ -706647,7 +706692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223094] = 20, + [223109] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706674,16 +706719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8972), 1, + ACTIONS(8970), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5853), 9, sym_preproc_region, sym_preproc_endregion, @@ -706717,7 +706762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223184] = 20, + [223199] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706740,20 +706785,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7815), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8974), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5854), 9, sym_preproc_region, sym_preproc_endregion, @@ -706787,7 +706832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223274] = 20, + [223289] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706810,7 +706855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7779), 1, + ACTIONS(7905), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -706818,12 +706863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5855), 9, sym_preproc_region, sym_preproc_endregion, @@ -706857,7 +706902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223364] = 20, + [223379] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706880,20 +706925,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7851), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8976), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5856), 9, sym_preproc_region, sym_preproc_endregion, @@ -706927,7 +706972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223454] = 20, + [223469] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706948,22 +706993,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(8978), 1, - anon_sym_RPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, + ACTIONS(4835), 5, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, STATE(5857), 9, sym_preproc_region, sym_preproc_endregion, @@ -706974,10 +707009,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4833), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -706997,7 +707034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223544] = 20, + sym__identifier_token, + [223545] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707020,20 +707058,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7783), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(8972), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5858), 9, sym_preproc_region, sym_preproc_endregion, @@ -707067,7 +707105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223634] = 17, + [223635] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707088,18 +707126,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4757), 1, - aux_sym_preproc_if_token3, - ACTIONS(4749), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(7419), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(8974), 1, + anon_sym_RPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(6955), 1, + sym__variable_designation, STATE(5859), 9, sym_preproc_region, sym_preproc_endregion, @@ -707110,7 +707152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707133,8 +707175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [223718] = 18, + [223725] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707159,13 +707200,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6713), 1, + STATE(6446), 1, sym__name, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, @@ -707202,7 +707243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223804] = 20, + [223811] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707225,20 +707266,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7911), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, + STATE(6592), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5861), 9, sym_preproc_region, sym_preproc_endregion, @@ -707272,7 +707311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223894] = 20, + [223897] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707295,7 +707334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7879), 1, + ACTIONS(7588), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -707303,12 +707342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5862), 9, sym_preproc_region, sym_preproc_endregion, @@ -707342,7 +707381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223984] = 20, + [223987] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707365,20 +707404,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7821), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(2187), 1, + sym_generic_name, + STATE(4540), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, + STATE(7040), 1, + sym__name, + STATE(4123), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, STATE(5863), 9, sym_preproc_region, sym_preproc_endregion, @@ -707412,140 +707449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224074] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4807), 5, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5864), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4805), 25, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_in, - anon_sym_out, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [224150] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7556), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5865), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [224240] = 20, + [224073] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707568,7 +707472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7548), 1, + ACTIONS(7590), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -707576,83 +707480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5866), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [224330] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7861), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, + STATE(7385), 1, sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5867), 9, + STATE(5864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707685,7 +707519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224420] = 20, + [224163] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707712,17 +707546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8980), 1, + ACTIONS(8976), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5868), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707755,7 +707589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224510] = 20, + [224253] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707778,7 +707612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7735), 1, + ACTIONS(7745), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -707786,13 +707620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5869), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707825,7 +707659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224600] = 20, + [224343] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707848,7 +707682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7867), 1, + ACTIONS(7598), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -707856,13 +707690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5870), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707895,7 +707729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224690] = 20, + [224433] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707918,21 +707752,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7495), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(8978), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5871), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707965,7 +707799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224780] = 20, + [224523] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707988,21 +707822,91 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7550), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(8980), 1, anon_sym_RPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, + sym_identifier, + STATE(6855), 1, + sym__variable_designation, + STATE(5869), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [224613] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(8982), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5872), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708035,7 +707939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224870] = 20, + [224703] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708058,7 +707962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7554), 1, + ACTIONS(7914), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -708066,13 +707970,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, sym_parameter_list, - STATE(7619), 1, + STATE(5871), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [224793] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7685), 1, + anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, sym__lambda_parameters, - STATE(5873), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708105,7 +708079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224960] = 20, + [224883] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708132,17 +708106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8982), 1, + ACTIONS(8984), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5874), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708175,7 +708149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225050] = 18, + [224973] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708200,17 +708174,17 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(4474), 1, + STATE(4540), 1, sym_identifier, - STATE(6849), 1, + STATE(6731), 1, sym__name, - STATE(4145), 3, + STATE(4123), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5875), 9, + STATE(5874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708243,7 +708217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225136] = 20, + [225059] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708266,21 +708240,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8984), 1, + ACTIONS(8986), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(6758), 1, sym_identifier, - STATE(7043), 1, - sym__variable_designation, - STATE(5876), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708313,7 +708287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225226] = 20, + [225149] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708336,7 +708310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7602), 1, + ACTIONS(7765), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -708344,13 +708318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5877), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708383,7 +708357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225316] = 20, + [225239] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708410,17 +708384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8986), 1, + ACTIONS(8988), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5878), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708453,7 +708427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225406] = 18, + [225329] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708474,21 +708448,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, - sym_identifier, - STATE(6791), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5879), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4753), 1, + aux_sym_preproc_if_token3, + ACTIONS(4745), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(7655), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(5878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708498,7 +708470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4743), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708521,7 +708493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225492] = 18, + sym__identifier_token, + [225413] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708544,19 +708517,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7807), 1, + anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(6758), 1, sym_identifier, - STATE(6467), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5880), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708589,7 +708564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225578] = 18, + [225503] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708612,19 +708587,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(8990), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4474), 1, + STATE(6758), 1, sym_identifier, - STATE(6572), 1, - sym__name, - STATE(4145), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5881), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708657,7 +708634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225664] = 20, + [225593] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708678,23 +708655,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8988), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6483), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5882), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8992), 1, + aux_sym_preproc_if_token3, + ACTIONS(4745), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(7437), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(5881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708704,7 +708677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4743), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708727,7 +708700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225754] = 20, + sym__identifier_token, + [225677] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708750,21 +708724,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8990), 1, + ACTIONS(8994), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(6758), 1, sym_identifier, - STATE(6852), 1, - sym__variable_designation, - STATE(5883), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708797,7 +708771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225844] = 20, + [225767] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708820,21 +708794,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(8992), 1, + ACTIONS(7797), 1, anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(6758), 1, sym_identifier, - STATE(7016), 1, - sym__variable_designation, - STATE(5884), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708867,7 +708841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225934] = 20, + [225857] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708890,21 +708864,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7875), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6698), 1, + STATE(6758), 1, sym_identifier, - STATE(6816), 1, - sym_using_variable_declarator, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5885), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708937,7 +708911,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226024] = 20, + [225947] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4819), 5, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5885), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4817), 25, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [226023] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708960,20 +708997,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7753), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(8994), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5886), 9, sym_preproc_region, sym_preproc_endregion, @@ -709007,7 +709044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226114] = 20, + [226113] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709038,12 +709075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5887), 9, sym_preproc_region, sym_preproc_endregion, @@ -709077,7 +709114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226204] = 20, + [226203] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709100,7 +709137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7711), 1, + ACTIONS(7584), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -709108,12 +709145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5888), 9, sym_preproc_region, sym_preproc_endregion, @@ -709147,7 +709184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226294] = 20, + [226293] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709170,7 +709207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7733), 1, + ACTIONS(7586), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -709178,12 +709215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, STATE(5889), 9, sym_preproc_region, sym_preproc_endregion, @@ -709217,7 +709254,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226384] = 14, + [226383] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7857), 1, + anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5890), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [226473] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709243,7 +709350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9000), 2, anon_sym_static, anon_sym_async, - STATE(5890), 10, + STATE(5891), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709281,7 +709388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [226462] = 20, + [226551] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709304,7 +709411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7875), 1, + ACTIONS(7867), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -709312,13 +709419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5891), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709351,7 +709458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226552] = 20, + [226641] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709374,21 +709481,91 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7535), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5893), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [226731] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, + anon_sym_LPAREN, ACTIONS(9005), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5892), 9, + STATE(6940), 1, + sym__variable_designation, + STATE(5894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709421,7 +709598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226642] = 20, + [226821] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709444,21 +709621,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, - anon_sym_LPAREN, - ACTIONS(9007), 1, + ACTIONS(7759), 1, anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(6758), 1, sym_identifier, - STATE(7035), 1, - sym__variable_designation, - STATE(5893), 9, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709491,7 +709668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226732] = 13, + [226911] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709512,13 +709689,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4813), 5, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5894), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9007), 1, + anon_sym_RPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709528,12 +709715,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4811), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -709553,8 +709738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [226808] = 20, + [227001] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709585,13 +709769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5895), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709624,7 +709808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226898] = 20, + [227091] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709647,21 +709831,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7701), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9011), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5896), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709694,7 +709878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226988] = 14, + [227181] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709715,13 +709899,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9013), 1, - anon_sym_DOT, - ACTIONS(4015), 3, - anon_sym_COLON, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8968), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5897), 9, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6448), 1, + sym_identifier, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, + sym_variable_declarator, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709731,7 +709925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709742,9 +709936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -709757,8 +709948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [227066] = 20, + [227271] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709785,17 +709975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9015), 1, + ACTIONS(9011), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5898), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709828,7 +710018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227156] = 20, + [227361] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709851,21 +710041,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3919), 1, + ACTIONS(3913), 1, sym_discard, - ACTIONS(4011), 1, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(9017), 1, + ACTIONS(9013), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(3477), 1, + STATE(3545), 1, sym_parenthesized_variable_designation, - STATE(3480), 1, + STATE(3547), 1, sym_identifier, - STATE(7079), 1, + STATE(7059), 1, sym__variable_designation, - STATE(5899), 9, + STATE(5901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709898,7 +710088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227246] = 20, + [227451] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709921,7 +710111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7765), 1, + ACTIONS(7767), 1, anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, @@ -709929,13 +710119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5900), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709968,7 +710158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227336] = 20, + [227541] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709995,17 +710185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9019), 1, + ACTIONS(9015), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5901), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710038,7 +710228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227426] = 20, + [227631] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710061,21 +710251,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7873), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9021), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5902), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710108,7 +710298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227516] = 20, + [227721] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710135,17 +710325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9023), 1, + ACTIONS(9017), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5903), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710178,7 +710368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227606] = 20, + [227811] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710199,23 +710389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8988), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6340), 1, - sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5904), 9, + ACTIONS(4809), 5, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710225,10 +710405,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4807), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -710248,7 +710430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227696] = 20, + sym__identifier_token, + [227887] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710269,23 +710452,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(9019), 1, + anon_sym_DOT, + ACTIONS(4028), 3, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(9025), 1, - anon_sym_RPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5905), 9, + anon_sym_LBRACE, + STATE(5907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710295,7 +710468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4026), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710306,6 +710479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -710318,7 +710494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227786] = 20, + sym__identifier_token, + [227965] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710345,87 +710522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9027), 1, + ACTIONS(9021), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5906), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [227876] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7729), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, + STATE(7385), 1, sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5907), 9, + STATE(5908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710458,7 +710565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227966] = 20, + [228055] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710479,23 +710586,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7552), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5908), 9, + ACTIONS(4825), 5, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710505,10 +710602,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4823), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -710528,7 +710627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228056] = 13, + sym__identifier_token, + [228131] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710549,13 +710649,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4858), 5, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5909), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9023), 1, + anon_sym_RPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710565,12 +710675,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4856), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -710590,8 +710698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228132] = 20, + [228221] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710614,21 +710721,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7667), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9025), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5910), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710661,7 +710768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228222] = 20, + [228311] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710688,17 +710795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9029), 1, + ACTIONS(9027), 1, anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5911), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710731,7 +710838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228312] = 17, + [228401] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710752,19 +710859,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9031), 1, - aux_sym_preproc_if_token3, - ACTIONS(4749), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(7486), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5912), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9029), 1, + anon_sym_RPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6758), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710774,7 +710885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710797,8 +710908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228396] = 20, + [228491] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710821,21 +710931,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7721), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9031), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5913), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710868,7 +710978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228486] = 20, + [228581] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710899,13 +711009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5914), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710938,7 +711048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228576] = 20, + [228671] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710961,21 +711071,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(7592), 1, + anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9035), 1, - anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5915), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711008,7 +711118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228666] = 20, + [228761] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711031,21 +711141,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7775), 1, - anon_sym_RPAREN, ACTIONS(8960), 1, anon_sym_COMMA, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9035), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6773), 1, + STATE(6758), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5916), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(5917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711078,7 +711188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228756] = 20, + [228851] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711099,23 +711209,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7546), 1, - anon_sym_RPAREN, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6773), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5917), 9, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9037), 1, + anon_sym_DOT, + STATE(5918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711125,7 +711231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711148,7 +711254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228846] = 18, + sym__identifier_token, + [228936] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711169,19 +711276,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(8968), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9037), 1, - anon_sym_DOT, - STATE(5918), 9, + STATE(2616), 1, + sym__reserved_identifier, + STATE(7157), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(7766), 1, + sym_tuple_pattern, + STATE(5919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711191,7 +711300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711214,8 +711323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228931] = 19, + [229023] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711236,21 +711344,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(8988), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(7233), 1, - sym_identifier, - STATE(7361), 1, - sym_tuple_pattern, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5919), 9, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9039), 1, + anon_sym_DOT, + STATE(5920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711260,7 +711366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711283,7 +711389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229018] = 18, + sym__identifier_token, + [229108] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711304,19 +711411,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8960), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9039), 1, - anon_sym_DOT, - STATE(5920), 9, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6903), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711326,7 +711435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711349,8 +711458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229103] = 18, + [229195] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711371,19 +711479,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, ACTIONS(9041), 1, anon_sym_DOT, - STATE(5921), 9, + STATE(5922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711393,7 +711501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711417,7 +711525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229188] = 18, + [229280] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711438,19 +711546,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, ACTIONS(9043), 1, anon_sym_DOT, - STATE(5922), 9, + STATE(5923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711460,7 +711568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711484,7 +711592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229273] = 19, + [229365] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711505,21 +711613,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(3919), 1, - sym_discard, - ACTIONS(4011), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(3477), 1, - sym_parenthesized_variable_designation, - STATE(3480), 1, - sym_identifier, - STATE(7192), 1, - sym__variable_designation, - STATE(5923), 9, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9045), 1, + anon_sym_DOT, + STATE(5924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711529,7 +711635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711552,7 +711658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229360] = 18, + sym__identifier_token, + [229450] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711573,19 +711680,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(7012), 1, + ACTIONS(4801), 2, anon_sym_DOT, - ACTIONS(9045), 1, - anon_sym_SEMI, - STATE(5924), 9, + anon_sym_DASH_GT, + STATE(5925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711595,7 +711701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711619,7 +711725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229445] = 18, + [229533] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711640,19 +711746,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, ACTIONS(9047), 1, anon_sym_DOT, - STATE(5925), 9, + STATE(5926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711662,7 +711768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711686,7 +711792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229530] = 19, + [229618] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711707,21 +711813,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, - sym__identifier_token, - ACTIONS(8988), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(2604), 1, - sym__reserved_identifier, - STATE(7251), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7597), 1, - sym_tuple_pattern, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5926), 9, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9049), 1, + anon_sym_DOT, + STATE(5927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711731,7 +711835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711754,7 +711858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229617] = 17, + sym__identifier_token, + [229703] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711775,18 +711880,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(4521), 2, + ACTIONS(9051), 1, anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5927), 9, + STATE(5928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711796,7 +711902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711820,7 +711926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229700] = 18, + [229788] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711841,19 +711947,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9049), 1, + ACTIONS(9053), 1, anon_sym_DOT, - STATE(5928), 9, + STATE(5929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711863,7 +711969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711887,7 +711993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229785] = 19, + [229873] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711910,19 +712016,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8960), 1, - anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(3913), 1, + sym_discard, + ACTIONS(4007), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6817), 1, + STATE(3545), 1, + sym_parenthesized_variable_designation, + STATE(3547), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5929), 9, + STATE(7314), 1, + sym__variable_designation, + STATE(5930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711955,7 +712061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229872] = 18, + [229960] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711976,19 +712082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9051), 1, + ACTIONS(9055), 1, anon_sym_DOT, - STATE(5930), 9, + STATE(5931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711998,7 +712104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712022,7 +712128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229957] = 18, + [230045] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712043,19 +712149,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9051), 1, + ACTIONS(9057), 1, anon_sym_DOT, - STATE(5931), 9, + STATE(5932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712065,7 +712171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712089,7 +712195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230042] = 18, + [230130] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712110,19 +712216,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4761), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9053), 1, + ACTIONS(9059), 1, anon_sym_DOT, - STATE(5932), 9, + STATE(5933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712132,7 +712238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712156,7 +712262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230127] = 18, + [230215] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712177,19 +712283,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4801), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9055), 1, + ACTIONS(9061), 1, anon_sym_DOT, - STATE(5933), 9, + STATE(5934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712199,7 +712305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712223,7 +712329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230212] = 17, + [230300] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712244,18 +712350,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(4154), 2, + ACTIONS(9053), 1, anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5934), 9, + STATE(5935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712265,7 +712372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712289,7 +712396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230295] = 16, + [230385] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712310,18 +712417,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(7207), 1, - sym_identifier, - ACTIONS(9057), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5935), 9, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9059), 1, + anon_sym_DOT, + STATE(5936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712331,7 +712439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712354,7 +712462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230376] = 18, + sym__identifier_token, + [230470] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712375,19 +712484,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9059), 1, + ACTIONS(9061), 1, anon_sym_DOT, - STATE(5936), 9, + STATE(5937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712397,7 +712506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712421,7 +712530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230461] = 18, + [230555] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712442,19 +712551,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_LPAREN, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9061), 1, - anon_sym_DOT, - STATE(5937), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6857), 1, + sym_identifier, + ACTIONS(9063), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712464,7 +712572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712487,8 +712595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230546] = 18, + [230636] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712509,19 +712616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(9067), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9063), 1, - anon_sym_DOT, - STATE(5938), 9, + STATE(5939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712531,15 +712628,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(9065), 28, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -712555,7 +712657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230631] = 18, + [230711] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712576,19 +712678,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9069), 1, anon_sym_DOT, - STATE(5939), 9, + STATE(5940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712598,7 +712700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712622,7 +712724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230716] = 18, + [230796] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712643,19 +712745,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, + ACTIONS(4421), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9047), 1, + ACTIONS(9071), 1, anon_sym_DOT, - STATE(5940), 9, + STATE(5941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712665,7 +712767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712689,7 +712791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230801] = 18, + [230881] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712710,19 +712812,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9067), 1, + ACTIONS(4421), 2, anon_sym_DOT, - STATE(5941), 9, + anon_sym_DASH_GT, + STATE(5942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712732,7 +712833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712756,7 +712857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230886] = 18, + [230964] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712777,19 +712878,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4761), 1, + ACTIONS(4160), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9069), 1, + ACTIONS(9073), 1, anon_sym_DOT, - STATE(5942), 9, + STATE(5943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712799,7 +712900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712823,7 +712924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [230971] = 18, + [231049] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712844,19 +712945,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9061), 1, - anon_sym_DOT, - STATE(5943), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(7224), 1, + sym_identifier, + ACTIONS(9075), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712866,7 +712966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712889,8 +712989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231056] = 13, + [231130] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712911,9 +713010,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(5944), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(9077), 1, + anon_sym_SEMI, + STATE(5945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712923,20 +713032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9071), 28, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, - anon_sym_ref, - anon_sym_delegate, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -712952,7 +713056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231131] = 13, + [231215] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712973,9 +713077,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9077), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(5945), 9, + ACTIONS(4421), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9079), 1, + anon_sym_DOT, + STATE(5946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712985,20 +713099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 28, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, - anon_sym_ref, - anon_sym_delegate, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_checked, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -713014,7 +713123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231206] = 18, + [231300] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713035,19 +713144,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(6985), 1, + sym__identifier_token, + ACTIONS(8968), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9041), 1, - anon_sym_DOT, - STATE(5946), 9, + STATE(2616), 1, + sym__reserved_identifier, + STATE(7304), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(7612), 1, + sym_tuple_pattern, + STATE(5947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713057,7 +713168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713080,8 +713191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231291] = 17, + [231387] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713102,18 +713212,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(4761), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5947), 9, + ACTIONS(8874), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(4191), 1, + sym__simple_name, + STATE(4415), 1, + sym_identifier, + ACTIONS(8882), 2, + anon_sym_operator, + anon_sym_this, + STATE(5948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713123,7 +713235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(8877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713146,8 +713258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231374] = 18, + [231472] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713168,20 +713279,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8873), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4197), 1, - sym__simple_name, - STATE(4458), 1, - sym_identifier, - ACTIONS(8881), 2, - anon_sym_operator, - anon_sym_this, - STATE(5948), 9, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9081), 1, + anon_sym_DOT, + STATE(5949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713191,7 +713301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8876), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713214,7 +713324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231459] = 17, + sym__identifier_token, + [231557] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713235,18 +713346,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(4803), 2, + ACTIONS(9083), 1, anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5949), 9, + STATE(5950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713256,7 +713368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713280,7 +713392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231542] = 18, + [231642] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713301,19 +713413,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(9087), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9079), 1, - anon_sym_DOT, - STATE(5950), 9, + STATE(5951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713323,15 +713425,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(9085), 28, anon_sym_alias, anon_sym_global, + anon_sym_ref, + anon_sym_delegate, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_checked, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -713347,7 +713454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231627] = 18, + [231717] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713368,19 +713475,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(7012), 1, + ACTIONS(4138), 2, anon_sym_DOT, - ACTIONS(9081), 1, - anon_sym_SEMI, - STATE(5951), 9, + anon_sym_DASH_GT, + STATE(5952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713390,7 +713496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713414,7 +713520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231712] = 18, + [231800] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713435,19 +713541,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9083), 1, + ACTIONS(6927), 1, anon_sym_DOT, - STATE(5952), 9, + ACTIONS(9089), 1, + anon_sym_SEMI, + STATE(5953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713457,7 +713563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713481,7 +713587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231797] = 16, + [231885] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713502,18 +713608,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6890), 1, - sym_identifier, - ACTIONS(9085), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5953), 9, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_DASH_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9055), 1, + anon_sym_DOT, + STATE(5954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713523,7 +713630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713546,7 +713653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231878] = 18, + sym__identifier_token, + [231970] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713567,19 +713675,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9087), 1, + ACTIONS(4763), 2, anon_sym_DOT, - STATE(5954), 9, + anon_sym_DASH_GT, + STATE(5955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713589,7 +713696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713613,7 +713720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231963] = 18, + [232053] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713634,19 +713741,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, - ACTIONS(9089), 1, + ACTIONS(9083), 1, anon_sym_DOT, - STATE(5955), 9, + STATE(5956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713656,7 +713763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713680,7 +713787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [232048] = 18, + [232138] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713701,19 +713808,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4136), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, - ACTIONS(6729), 1, + ACTIONS(6755), 1, anon_sym_LBRACK, - ACTIONS(6731), 1, + ACTIONS(6757), 1, anon_sym_STAR, - ACTIONS(6773), 1, + ACTIONS(6761), 1, anon_sym_QMARK, ACTIONS(9091), 1, anon_sym_DOT, - STATE(5956), 9, + STATE(5957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713723,7 +713830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(4022), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713747,7 +713854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [232133] = 18, + [232223] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713768,19 +713875,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(9095), 1, anon_sym_LPAREN, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9067), 1, - anon_sym_DOT, - STATE(5957), 9, + STATE(5958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713790,15 +713887,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 23, + ACTIONS(9093), 28, anon_sym_alias, anon_sym_global, + anon_sym_ref, + anon_sym_delegate, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -713814,7 +713916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [232218] = 13, + [232298] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713835,9 +713937,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9095), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(5958), 9, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6714), 1, + sym_identifier, + STATE(7347), 1, + sym__lambda_parameters, + STATE(7385), 1, + sym_parameter_list, + STATE(5959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713847,20 +713959,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9093), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -713875,8 +713982,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [232382] = 18, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, sym__identifier_token, - [232293] = 18, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym__reserved_identifier, + STATE(7385), 1, + sym_parameter_list, + STATE(7438), 1, + sym__lambda_parameters, + STATE(7710), 1, + sym_identifier, + STATE(5960), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [232466] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713905,11 +714077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7015), 1, + STATE(6863), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, - STATE(5959), 9, + STATE(5961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713942,7 +714114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232377] = 18, + [232550] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713965,17 +714137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8962), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(7348), 1, + STATE(6677), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5960), 9, + STATE(6685), 1, + sym_tuple_pattern, + STATE(7088), 1, + sym_variable_declarator, + STATE(5962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714008,7 +714180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232461] = 18, + [232634] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714031,17 +714203,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6643), 1, + STATE(6378), 1, sym_identifier, - STATE(6905), 1, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, sym_variable_declarator, - STATE(5961), 9, + STATE(5963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714074,7 +714246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232545] = 18, + [232718] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714097,17 +714269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6372), 1, + STATE(7385), 1, + sym_parameter_list, + STATE(7454), 1, + sym__lambda_parameters, + STATE(7710), 1, sym_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6839), 1, - sym_variable_declarator, - STATE(5962), 9, + STATE(5964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714140,7 +714312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232629] = 18, + [232802] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714163,17 +714335,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, - anon_sym_LPAREN, + ACTIONS(9101), 1, + anon_sym_COMMA, + ACTIONS(9103), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(6535), 1, - sym_tuple_pattern, - STATE(6643), 1, + STATE(7042), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(6839), 1, - sym_variable_declarator, - STATE(5963), 9, + STATE(5965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714206,7 +714378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232713] = 18, + [232886] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714229,17 +714401,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9101), 1, + ACTIONS(9105), 1, anon_sym_COMMA, - ACTIONS(9103), 1, + ACTIONS(9107), 1, anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(6835), 1, + STATE(6916), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, - STATE(5964), 9, + STATE(5966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714272,7 +714444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232797] = 18, + [232970] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714299,13 +714471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(7348), 1, - sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7595), 1, + STATE(7347), 1, sym__lambda_parameters, - STATE(5965), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(7710), 1, + sym_identifier, + STATE(5967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714338,7 +714510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232881] = 18, + [233054] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714361,17 +714533,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9105), 1, - anon_sym_COMMA, - ACTIONS(9107), 1, - anon_sym_RBRACE, + ACTIONS(8962), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6999), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(6630), 1, sym_identifier, - STATE(5966), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(7454), 1, + sym__lambda_parameters, + STATE(5968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714404,7 +714576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232965] = 18, + [233138] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714427,17 +714599,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8962), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(7348), 1, + STATE(6536), 1, + sym_tuple_pattern, + STATE(6587), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7725), 1, - sym__lambda_parameters, - STATE(5967), 9, + STATE(6974), 1, + sym_variable_declarator, + STATE(5969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714470,7 +714642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233049] = 18, + [233222] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714493,17 +714665,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4745), 1, - sym_discard, - ACTIONS(8340), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6823), 1, + STATE(6751), 1, sym_identifier, - STATE(7097), 1, - sym_tuple_pattern, - STATE(5968), 9, + STATE(7385), 1, + sym_parameter_list, + STATE(7454), 1, + sym__lambda_parameters, + STATE(5970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714536,7 +714708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233133] = 18, + [233306] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714559,17 +714731,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, - anon_sym_LPAREN, ACTIONS(9109), 1, - sym_discard, + anon_sym_COMMA, + ACTIONS(9111), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7247), 1, - sym_tuple_pattern, - STATE(7302), 1, + STATE(6919), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(5969), 9, + STATE(5971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714602,7 +714774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233217] = 18, + [233390] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714625,17 +714797,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9111), 1, - anon_sym_COMMA, - ACTIONS(9113), 1, - anon_sym_RBRACE, + ACTIONS(8196), 1, + anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6987), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(6536), 1, + sym_tuple_pattern, + STATE(6587), 1, sym_identifier, - STATE(5970), 9, + STATE(7088), 1, + sym_variable_declarator, + STATE(5972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714668,7 +714840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233301] = 18, + [233474] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714691,17 +714863,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, + ACTIONS(9113), 1, + sym_discard, STATE(2182), 1, sym__reserved_identifier, - STATE(6673), 1, + STATE(7229), 1, sym_tuple_pattern, - STATE(6675), 1, + STATE(7334), 1, sym_identifier, - STATE(6905), 1, - sym_variable_declarator, - STATE(5971), 9, + STATE(5973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714734,7 +714906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233385] = 18, + [233558] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714757,17 +714929,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8962), 1, + ACTIONS(4739), 1, + sym_discard, + ACTIONS(8196), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6772), 1, + STATE(6933), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7595), 1, - sym__lambda_parameters, - STATE(5972), 9, + STATE(7084), 1, + sym_tuple_pattern, + STATE(5974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714800,7 +714972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233469] = 18, + [233642] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714823,17 +714995,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8340), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6673), 1, - sym_tuple_pattern, - STATE(6675), 1, + STATE(6677), 1, sym_identifier, - STATE(6947), 1, + STATE(6685), 1, + sym_tuple_pattern, + STATE(6966), 1, sym_variable_declarator, - STATE(5973), 9, + STATE(5975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714866,7 +715038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233553] = 18, + [233726] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714895,11 +715067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7020), 1, + STATE(6844), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, - STATE(5974), 9, + STATE(5976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714932,7 +715104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233637] = 18, + [233810] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714961,77 +715133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(6945), 1, + STATE(7046), 1, sym_with_initializer, - STATE(7545), 1, - sym_identifier, - STATE(5975), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [233721] = 18, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6538), 1, + STATE(7747), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7595), 1, - sym__lambda_parameters, - STATE(5976), 9, + STATE(5977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715064,7 +715170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233805] = 18, + [233894] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715085,19 +715191,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9123), 1, sym__identifier_token, - ACTIONS(8962), 1, - anon_sym_LPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(6702), 1, + STATE(7384), 1, sym_identifier, - STATE(7560), 1, - sym_parameter_list, - STATE(7619), 1, - sym__lambda_parameters, - STATE(5977), 9, + ACTIONS(9129), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715107,7 +715210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9126), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715130,7 +715233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233889] = 17, + [233973] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715151,79 +715254,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(9131), 1, sym__identifier_token, - STATE(2934), 1, - sym__reserved_identifier, - STATE(2944), 1, + STATE(2673), 1, sym_identifier, - STATE(2963), 1, + STATE(2738), 1, sym__simple_name, - STATE(2990), 1, + STATE(2809), 1, sym_generic_name, - STATE(5978), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3844), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [233970] = 16, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9123), 1, - sym__identifier_token, - STATE(2182), 1, + STATE(2849), 1, sym__reserved_identifier, - STATE(7493), 1, - sym_identifier, - ACTIONS(9129), 2, - anon_sym_unsafe, - anon_sym_static, STATE(5979), 9, sym_preproc_region, sym_preproc_endregion, @@ -715234,7 +715274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9126), 22, + ACTIONS(9133), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715257,7 +715297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234049] = 17, + [234054] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715280,14 +715320,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9135), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(2351), 1, - sym__simple_name, STATE(5980), 9, sym_preproc_region, sym_preproc_endregion, @@ -715321,7 +715361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234130] = 16, + [234135] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715342,13 +715382,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6314), 1, + STATE(6330), 1, sym_identifier, - ACTIONS(9131), 2, + ACTIONS(9137), 2, anon_sym_class, anon_sym_struct, STATE(5981), 9, @@ -715361,7 +715401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715384,7 +715424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234209] = 17, + [234214] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715405,16 +715445,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9133), 1, + ACTIONS(2993), 1, sym__identifier_token, - STATE(2251), 1, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4028), 1, sym_identifier, - STATE(2259), 1, - sym_generic_name, - STATE(2262), 1, + STATE(4112), 1, sym__simple_name, - STATE(2279), 1, - sym__reserved_identifier, + STATE(4135), 1, + sym_generic_name, STATE(5982), 9, sym_preproc_region, sym_preproc_endregion, @@ -715425,7 +715465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9135), 22, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715448,7 +715488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234290] = 17, + [234295] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715469,16 +715509,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2604), 1, - sym__reserved_identifier, - STATE(4137), 1, - sym__simple_name, - STATE(6368), 1, - sym_identifier, + ACTIONS(4745), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, STATE(5983), 9, sym_preproc_region, sym_preproc_endregion, @@ -715489,10 +715522,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(4743), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -715512,7 +715547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234371] = 17, + sym__identifier_token, + [234368] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715533,16 +715569,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9137), 1, - sym__identifier_token, - STATE(2664), 1, - sym_identifier, - STATE(2750), 1, - sym__simple_name, - STATE(2756), 1, - sym__reserved_identifier, - STATE(2790), 1, - sym_generic_name, + ACTIONS(5103), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, STATE(5984), 9, sym_preproc_region, sym_preproc_endregion, @@ -715553,10 +715582,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9139), 22, + ACTIONS(5101), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -715576,7 +715607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234452] = 17, + sym__identifier_token, + [234441] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715597,15 +715629,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4086), 1, sym__identifier_token, - STATE(2182), 1, + STATE(4318), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(4382), 1, sym_identifier, - STATE(2321), 1, + STATE(4419), 1, + sym_generic_name, + STATE(4448), 1, sym__simple_name, STATE(5985), 9, sym_preproc_region, @@ -715617,7 +715649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4088), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715640,7 +715672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234533] = 17, + [234522] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715661,16 +715693,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(4086), 1, sym__identifier_token, - STATE(3208), 1, + STATE(4318), 1, sym__reserved_identifier, - STATE(3215), 1, + STATE(4382), 1, sym_identifier, - STATE(3311), 1, - sym__simple_name, - STATE(3329), 1, + STATE(4419), 1, sym_generic_name, + STATE(4459), 1, + sym__simple_name, STATE(5986), 9, sym_preproc_region, sym_preproc_endregion, @@ -715681,7 +715713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 22, + ACTIONS(4088), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715704,7 +715736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234614] = 17, + [234603] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715725,16 +715757,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2361), 1, + STATE(2206), 1, sym__simple_name, + STATE(2254), 1, + sym__reserved_identifier, STATE(5987), 9, sym_preproc_region, sym_preproc_endregion, @@ -715745,7 +715777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715768,7 +715800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234695] = 17, + [234684] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715789,16 +715821,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9143), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2402), 1, sym_identifier, - STATE(2287), 1, + STATE(2436), 1, + sym__reserved_identifier, + STATE(2465), 1, sym__simple_name, + STATE(2472), 1, + sym_generic_name, STATE(5988), 9, sym_preproc_region, sym_preproc_endregion, @@ -715809,7 +715841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9145), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715832,7 +715864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234776] = 17, + [234765] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715853,15 +715885,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2378), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(2383), 1, - sym_identifier, - STATE(2424), 1, + STATE(2187), 1, sym_generic_name, - STATE(3746), 1, + STATE(2193), 1, + sym_identifier, + STATE(2953), 1, sym__simple_name, STATE(5989), 9, sym_preproc_region, @@ -715873,7 +715905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715896,7 +715928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234857] = 17, + [234846] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715917,16 +715949,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4096), 1, sym__identifier_token, - ACTIONS(9141), 1, - anon_sym_RBRACE, - STATE(2182), 1, + STATE(2374), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(2380), 1, sym_identifier, + STATE(2403), 1, + sym__simple_name, + STATE(2418), 1, + sym_generic_name, STATE(5990), 9, sym_preproc_region, sym_preproc_endregion, @@ -715937,7 +715969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4098), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715960,7 +715992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234938] = 17, + [234927] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715981,15 +716013,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2281), 1, + STATE(2414), 1, sym__simple_name, STATE(5991), 9, sym_preproc_region, @@ -716001,7 +716033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716024,7 +716056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235019] = 17, + [235008] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716045,16 +716077,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(9147), 1, sym__identifier_token, - STATE(2968), 1, - sym_identifier, - STATE(2981), 1, - sym__reserved_identifier, - STATE(3009), 1, - sym__simple_name, - STATE(3046), 1, + STATE(4135), 1, sym_generic_name, + STATE(4191), 1, + sym__simple_name, + STATE(5294), 1, + sym__reserved_identifier, + STATE(6325), 1, + sym_identifier, STATE(5992), 9, sym_preproc_region, sym_preproc_endregion, @@ -716065,7 +716097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 22, + ACTIONS(9149), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716088,7 +716120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235100] = 17, + [235089] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716109,16 +716141,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3891), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2995), 1, sym_identifier, - STATE(2362), 1, + STATE(3019), 1, sym__simple_name, + STATE(3102), 1, + sym_generic_name, STATE(5993), 9, sym_preproc_region, sym_preproc_endregion, @@ -716129,7 +716161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3893), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716152,7 +716184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235181] = 17, + [235170] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716173,15 +716205,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9151), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2258), 1, sym_identifier, - STATE(2363), 1, + STATE(2272), 1, + sym_generic_name, + STATE(2282), 1, + sym__reserved_identifier, + STATE(2285), 1, sym__simple_name, STATE(5994), 9, sym_preproc_region, @@ -716193,7 +716225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9153), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716216,7 +716248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235262] = 17, + [235251] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716237,15 +716269,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3891), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2980), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2995), 1, sym_identifier, - STATE(2357), 1, + STATE(3102), 1, + sym_generic_name, + STATE(3145), 1, sym__simple_name, STATE(5995), 9, sym_preproc_region, @@ -716257,7 +716289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3893), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716280,7 +716312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235343] = 17, + [235332] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716301,16 +716333,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9147), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2407), 1, - sym_identifier, - STATE(2452), 1, - sym__reserved_identifier, - STATE(2457), 1, + STATE(2187), 1, sym_generic_name, - STATE(2467), 1, + STATE(2193), 1, + sym_identifier, + STATE(2200), 1, sym__simple_name, + STATE(2254), 1, + sym__reserved_identifier, STATE(5996), 9, sym_preproc_region, sym_preproc_endregion, @@ -716321,7 +716353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9149), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716344,7 +716376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235424] = 17, + [235413] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716365,16 +716397,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(9151), 1, - anon_sym_operator, - ACTIONS(9153), 1, - anon_sym_this, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6387), 1, + STATE(6315), 1, sym_identifier, + ACTIONS(9155), 2, + anon_sym_class, + anon_sym_struct, STATE(5997), 9, sym_preproc_region, sym_preproc_endregion, @@ -716385,7 +716416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716408,7 +716439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235505] = 17, + [235492] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716429,16 +716460,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(2653), 1, - sym_identifier, - STATE(2816), 1, - sym__simple_name, - STATE(2866), 1, + STATE(2187), 1, sym_generic_name, + STATE(4112), 1, + sym__simple_name, + STATE(4415), 1, + sym_identifier, STATE(5998), 9, sym_preproc_region, sym_preproc_endregion, @@ -716449,7 +716480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716472,7 +716503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235586] = 17, + [235573] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716493,15 +716524,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(9147), 1, sym__identifier_token, - STATE(2189), 1, + STATE(4112), 1, + sym__simple_name, + STATE(4135), 1, sym_generic_name, - STATE(2604), 1, + STATE(5294), 1, sym__reserved_identifier, - STATE(4197), 1, - sym__simple_name, - STATE(6368), 1, + STATE(6325), 1, sym_identifier, STATE(5999), 9, sym_preproc_region, @@ -716513,71 +716544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235667] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9133), 1, - sym__identifier_token, - STATE(2251), 1, - sym_identifier, - STATE(2259), 1, - sym_generic_name, - STATE(2279), 1, - sym__reserved_identifier, - STATE(2316), 1, - sym__simple_name, - STATE(6000), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(9135), 22, + ACTIONS(9149), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716600,7 +716567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235748] = 17, + [235654] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716625,13 +716592,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2197), 1, + STATE(2336), 1, sym__simple_name, - STATE(6001), 9, + STATE(6000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716664,7 +716631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235829] = 17, + [235735] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716689,13 +716656,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2433), 1, + STATE(2196), 1, sym__simple_name, - STATE(6002), 9, + STATE(6001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716728,7 +716695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235910] = 17, + [235816] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716749,17 +716716,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(6320), 1, sym_identifier, - STATE(2379), 1, - sym__simple_name, - STATE(6003), 9, + ACTIONS(9157), 2, + anon_sym_class, + anon_sym_struct, + STATE(6002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716769,7 +716735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716792,7 +716758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235991] = 17, + [235895] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716813,17 +716779,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9133), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2251), 1, + STATE(3182), 1, sym_identifier, - STATE(2259), 1, + STATE(3189), 1, + sym__simple_name, + STATE(3205), 1, sym_generic_name, - STATE(2279), 1, + STATE(3241), 1, sym__reserved_identifier, - STATE(2306), 1, - sym__simple_name, - STATE(6004), 9, + STATE(6003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716833,7 +716799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9135), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716856,7 +716822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236072] = 17, + [235976] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716879,15 +716845,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9155), 1, - anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(6005), 9, + STATE(2387), 1, + sym__simple_name, + STATE(6004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716920,7 +716886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236153] = 17, + [236057] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716943,79 +716909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9157), 1, - anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, - sym_identifier, - STATE(6006), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236234] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9159), 1, - sym__identifier_token, - STATE(2383), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(2416), 1, + STATE(2197), 1, sym__simple_name, - STATE(2424), 1, - sym_generic_name, - STATE(2638), 1, - sym__reserved_identifier, - STATE(6007), 9, + STATE(6005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717025,7 +716927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9161), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717048,7 +716950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236315] = 17, + [236138] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717069,81 +716971,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2968), 1, - sym_identifier, - STATE(2981), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3016), 1, - sym__simple_name, - STATE(3046), 1, + STATE(2187), 1, sym_generic_name, - STATE(6008), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3893), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236396] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3897), 1, - sym__identifier_token, - STATE(2968), 1, + STATE(2193), 1, sym_identifier, - STATE(3009), 1, + STATE(2328), 1, sym__simple_name, - STATE(3046), 1, - sym_generic_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6009), 9, + STATE(6006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717153,7 +716991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717176,7 +717014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236477] = 17, + [236219] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717197,17 +717035,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2378), 1, - sym__reserved_identifier, - STATE(2383), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(2416), 1, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2265), 1, sym__simple_name, - STATE(2424), 1, - sym_generic_name, - STATE(6010), 9, + STATE(6007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717217,7 +717055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717240,7 +717078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236558] = 17, + [236300] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717261,17 +717099,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2995), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2357), 1, + STATE(3019), 1, sym__simple_name, - STATE(6011), 9, + STATE(3102), 1, + sym_generic_name, + STATE(3241), 1, + sym__reserved_identifier, + STATE(6008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717281,7 +717119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717304,7 +717142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236639] = 17, + [236381] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717329,13 +717167,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2402), 1, + STATE(2329), 1, sym__simple_name, - STATE(6012), 9, + STATE(6009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717368,38 +717206,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236720] = 17, - ACTIONS(3), 1, + [236462] = 17, + ACTIONS(7922), 1, + sym__identifier_token, + ACTIONS(9159), 1, + sym_integer_literal, + ACTIONS(9161), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, + STATE(6483), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(4137), 1, - sym__simple_name, - STATE(4458), 1, + STATE(7060), 1, sym_identifier, - STATE(6013), 9, + STATE(6010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717409,7 +717247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7924), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717432,7 +717270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236801] = 17, + [236543] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717453,17 +717291,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4096), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2374), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2380), 1, + sym_identifier, + STATE(2418), 1, sym_generic_name, - STATE(4197), 1, + STATE(3929), 1, sym__simple_name, - STATE(4458), 1, - sym_identifier, - STATE(6014), 9, + STATE(6011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717473,7 +717311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4098), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717496,7 +717334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236882] = 13, + [236624] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717517,10 +717355,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5013), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6015), 9, + ACTIONS(3798), 1, + sym__identifier_token, + STATE(3192), 1, + sym__reserved_identifier, + STATE(3207), 1, + sym_identifier, + STATE(3347), 1, + sym_generic_name, + STATE(3385), 1, + sym__simple_name, + STATE(6012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717530,12 +717375,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5011), 25, + ACTIONS(3800), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -717555,8 +717398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [236955] = 17, + [236705] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717577,17 +717419,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2935), 1, sym_identifier, - STATE(2200), 1, + STATE(2964), 1, + sym_generic_name, + STATE(2990), 1, sym__simple_name, - STATE(2256), 1, + STATE(3241), 1, sym__reserved_identifier, - STATE(6016), 9, + STATE(6013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717597,7 +717439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717620,7 +717462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237036] = 17, + [236786] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717641,17 +717483,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2935), 1, sym_identifier, - STATE(2274), 1, + STATE(2957), 1, sym__simple_name, - STATE(6017), 9, + STATE(2964), 1, + sym_generic_name, + STATE(3241), 1, + sym__reserved_identifier, + STATE(6014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717661,7 +717503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717684,7 +717526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237117] = 13, + [236867] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717705,10 +717547,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5045), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6018), 9, + ACTIONS(3897), 1, + sym__identifier_token, + STATE(3182), 1, + sym_identifier, + STATE(3205), 1, + sym_generic_name, + STATE(3241), 1, + sym__reserved_identifier, + STATE(3389), 1, + sym__simple_name, + STATE(6015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717718,12 +717567,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5043), 25, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -717743,8 +717590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [237190] = 17, + [236948] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717765,17 +717611,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2256), 1, - sym__reserved_identifier, - STATE(4197), 1, - sym__simple_name, - STATE(4458), 1, + STATE(2193), 1, sym_identifier, - STATE(6019), 9, + STATE(2195), 1, + sym__simple_name, + STATE(2254), 1, + sym__reserved_identifier, + STATE(6016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717785,7 +717631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717808,7 +717654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237271] = 17, + [237029] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717829,17 +717675,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3798), 1, sym__identifier_token, - STATE(2182), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(3207), 1, sym_identifier, - STATE(2280), 1, + STATE(3347), 1, + sym_generic_name, + STATE(3386), 1, sym__simple_name, - STATE(6020), 9, + STATE(6017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717849,7 +717695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3800), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717872,7 +717718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237352] = 17, + [237110] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717893,17 +717739,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(3891), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2980), 1, + sym__reserved_identifier, + STATE(2995), 1, sym_identifier, - STATE(2205), 1, + STATE(3054), 1, sym__simple_name, - STATE(2256), 1, - sym__reserved_identifier, - STATE(6021), 9, + STATE(3102), 1, + sym_generic_name, + STATE(6018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717913,7 +717759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(3893), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717936,7 +717782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237433] = 17, + [237191] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717957,17 +717803,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2201), 1, + STATE(2345), 1, sym__simple_name, - STATE(2256), 1, - sym__reserved_identifier, - STATE(6022), 9, + STATE(6019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717977,7 +717823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718000,7 +717846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237514] = 17, + [237272] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718023,15 +717869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6761), 1, + anon_sym_QMARK, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(6826), 1, sym_identifier, - STATE(2410), 1, - sym__simple_name, - STATE(6023), 9, + STATE(6020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718064,7 +717910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237595] = 17, + [237353] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718085,17 +717931,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9163), 1, + ACTIONS(2993), 1, sym__identifier_token, - STATE(3181), 1, + STATE(3728), 1, + sym__reserved_identifier, + STATE(4028), 1, sym_identifier, - STATE(3227), 1, + STATE(4135), 1, sym_generic_name, - STATE(3248), 1, + STATE(4191), 1, sym__simple_name, - STATE(3261), 1, - sym__reserved_identifier, - STATE(6024), 9, + STATE(6021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718105,7 +717951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9165), 22, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718128,7 +717974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237676] = 17, + [237434] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718149,17 +717995,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3709), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(4020), 1, - sym_identifier, - STATE(4151), 1, + STATE(2187), 1, sym_generic_name, - STATE(4197), 1, + STATE(2193), 1, + sym_identifier, + STATE(2288), 1, sym__simple_name, - STATE(6025), 9, + STATE(6022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718169,7 +718015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718192,7 +718038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237757] = 16, + [237515] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718213,16 +718059,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6313), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - ACTIONS(9167), 2, - anon_sym_class, - anon_sym_struct, - STATE(6026), 9, + STATE(2375), 1, + sym__simple_name, + STATE(6023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718232,7 +718079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718255,7 +718102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237836] = 17, + [237596] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718276,17 +718123,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2287), 1, + STATE(2294), 1, sym__simple_name, - STATE(6027), 9, + STATE(6024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718296,7 +718143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718319,7 +718166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237917] = 17, + [237677] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718340,17 +718187,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2934), 1, - sym__reserved_identifier, - STATE(2944), 1, + STATE(3207), 1, sym_identifier, - STATE(2962), 1, - sym__simple_name, - STATE(2990), 1, + STATE(3241), 1, + sym__reserved_identifier, + STATE(3347), 1, sym_generic_name, - STATE(6028), 9, + STATE(3442), 1, + sym__simple_name, + STATE(6025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718360,7 +718207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718383,7 +718230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237998] = 17, + [237758] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718404,17 +718251,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(9151), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2258), 1, sym_identifier, - STATE(2234), 1, + STATE(2264), 1, sym__simple_name, - STATE(2256), 1, + STATE(2272), 1, + sym_generic_name, + STATE(2282), 1, sym__reserved_identifier, - STATE(6029), 9, + STATE(6026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718424,7 +718271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(9153), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718447,7 +718294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238079] = 17, + [237839] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718468,17 +718315,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3208), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + STATE(2182), 1, sym__reserved_identifier, - STATE(3215), 1, + STATE(6826), 1, sym_identifier, - STATE(3329), 1, - sym_generic_name, - STATE(3478), 1, - sym__simple_name, - STATE(6030), 9, + STATE(6027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718488,7 +718335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718511,7 +718358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238160] = 17, + [237920] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718532,17 +718379,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2968), 1, - sym_identifier, - STATE(3046), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(3106), 1, + STATE(2193), 1, + sym_identifier, + STATE(2346), 1, sym__simple_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6031), 9, + STATE(6028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718552,7 +718399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718575,7 +718422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238241] = 17, + [238001] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718598,15 +718445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9169), 1, - anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(6032), 9, + STATE(2400), 1, + sym__simple_name, + STATE(6029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718639,7 +718486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238322] = 17, + [238082] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718660,17 +718507,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(5061), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6030), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5059), 25, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, + [238155] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9139), 1, + sym__identifier_token, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2414), 1, + STATE(2204), 1, sym__simple_name, - STATE(6033), 9, + STATE(2254), 1, + sym__reserved_identifier, + STATE(6031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718680,7 +718587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718703,7 +718610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238403] = 17, + [238236] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718724,17 +718631,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9183), 1, sym__identifier_token, - ACTIONS(9171), 1, - anon_sym_RBRACE, - STATE(2182), 1, - sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(2380), 1, sym_identifier, - STATE(6034), 9, + STATE(2403), 1, + sym__simple_name, + STATE(2418), 1, + sym_generic_name, + STATE(2662), 1, + sym__reserved_identifier, + STATE(6032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718744,7 +718651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9185), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718767,7 +718674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238484] = 17, + [238317] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718788,17 +718695,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2254), 1, + sym__reserved_identifier, + STATE(4191), 1, + sym__simple_name, + STATE(4415), 1, sym_identifier, - STATE(2197), 1, + STATE(6033), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9141), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [238398] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3897), 1, + sym__identifier_token, + STATE(2935), 1, + sym_identifier, + STATE(2964), 1, + sym_generic_name, + STATE(3086), 1, sym__simple_name, - STATE(2256), 1, + STATE(3241), 1, sym__reserved_identifier, - STATE(6035), 9, + STATE(6034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718808,7 +718779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718831,7 +718802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238565] = 17, + [238479] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718856,13 +718827,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2205), 1, + STATE(2406), 1, sym__simple_name, - STATE(6036), 9, + STATE(6035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718895,7 +718866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238646] = 17, + [238560] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718918,15 +718889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9187), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(2234), 1, - sym__simple_name, - STATE(6037), 9, + STATE(6036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718959,7 +718930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238727] = 17, + [238641] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718984,13 +718955,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, - sym_identifier, - STATE(2358), 1, + STATE(4191), 1, sym__simple_name, - STATE(6038), 9, + STATE(4415), 1, + sym_identifier, + STATE(6037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719023,7 +718994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238808] = 17, + [238722] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719044,17 +719015,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9173), 1, + ACTIONS(9151), 1, sym__identifier_token, - STATE(4020), 1, + STATE(2258), 1, sym_identifier, - STATE(4151), 1, + STATE(2272), 1, sym_generic_name, - STATE(4197), 1, - sym__simple_name, - STATE(5304), 1, + STATE(2282), 1, sym__reserved_identifier, - STATE(6039), 9, + STATE(2320), 1, + sym__simple_name, + STATE(6038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719064,7 +719035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9175), 22, + ACTIONS(9153), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719087,7 +719058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238889] = 17, + [238803] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719108,17 +719079,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym__identifier_token, - STATE(2968), 1, - sym_identifier, - STATE(3016), 1, - sym__simple_name, - STATE(3046), 1, - sym_generic_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6040), 9, + ACTIONS(5073), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719128,10 +719092,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(5071), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -719151,7 +719117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238970] = 17, + sym__identifier_token, + [238876] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719172,17 +719139,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(4300), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6761), 1, + anon_sym_QMARK, + STATE(2182), 1, sym__reserved_identifier, - STATE(4388), 1, + STATE(6823), 1, sym_identifier, - STATE(4497), 1, - sym_generic_name, - STATE(4512), 1, - sym__simple_name, - STATE(6041), 9, + STATE(6040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719192,7 +719159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4088), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719215,7 +719182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239051] = 17, + [238957] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719236,17 +719203,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(4300), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(4388), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(4413), 1, + STATE(2386), 1, sym__simple_name, - STATE(4497), 1, - sym_generic_name, - STATE(6042), 9, + STATE(6041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719256,7 +719223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4088), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719279,7 +719246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239132] = 17, + [239038] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719300,81 +719267,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(3869), 1, sym__identifier_token, - STATE(2944), 1, + STATE(2935), 1, sym_identifier, - STATE(2962), 1, - sym__simple_name, - STATE(2990), 1, - sym_generic_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6043), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3899), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [239213] = 17, - ACTIONS(7998), 1, - sym__identifier_token, - ACTIONS(9177), 1, - sym_integer_literal, - ACTIONS(9179), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - STATE(6498), 1, + STATE(2952), 1, sym__reserved_identifier, - STATE(6960), 1, - sym_identifier, - STATE(6044), 9, + STATE(2964), 1, + sym_generic_name, + STATE(3086), 1, + sym__simple_name, + STATE(6042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719384,7 +719287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(3871), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719407,7 +719310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239294] = 17, + [239119] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719428,17 +719331,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2952), 1, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2303), 1, sym__simple_name, - STATE(6045), 9, + STATE(6043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719448,7 +719351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719471,7 +719374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239375] = 17, + [239200] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719492,17 +719395,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2934), 1, - sym__reserved_identifier, - STATE(2944), 1, - sym_identifier, - STATE(2990), 1, + STATE(2187), 1, sym_generic_name, - STATE(3000), 1, + STATE(2193), 1, + sym_identifier, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2317), 1, sym__simple_name, - STATE(6046), 9, + STATE(6044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719512,7 +719415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3844), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719535,7 +719438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239456] = 17, + [239281] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719558,15 +719461,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9201), 1, - anon_sym_RBRACE, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(6823), 1, sym_identifier, - STATE(6047), 9, + STATE(6045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719599,7 +719502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239537] = 17, + [239362] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719620,17 +719523,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(4086), 1, sym__identifier_token, - STATE(2944), 1, + STATE(4318), 1, + sym__reserved_identifier, + STATE(4382), 1, sym_identifier, - STATE(2963), 1, - sym__simple_name, - STATE(2990), 1, + STATE(4419), 1, sym_generic_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6048), 9, + STATE(4679), 1, + sym__simple_name, + STATE(6046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719640,7 +719543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(4088), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719663,7 +719566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239618] = 17, + [239443] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719684,17 +719587,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9159), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2383), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(2393), 1, + STATE(2362), 1, sym__simple_name, - STATE(2424), 1, - sym_generic_name, - STATE(2638), 1, - sym__reserved_identifier, - STATE(6049), 9, + STATE(6047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719704,7 +719607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9161), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719727,7 +719630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239699] = 17, + [239524] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719750,15 +719653,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9203), 1, + ACTIONS(9189), 1, anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, + STATE(7342), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, - STATE(6050), 9, + STATE(6048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719791,7 +719694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239780] = 17, + [239605] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719812,17 +719715,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9173), 1, + ACTIONS(9191), 1, sym__identifier_token, - STATE(4020), 1, + STATE(2599), 1, sym_identifier, - STATE(4137), 1, - sym__simple_name, - STATE(4151), 1, + STATE(2626), 1, sym_generic_name, - STATE(5304), 1, + STATE(2645), 1, + sym__simple_name, + STATE(2665), 1, sym__reserved_identifier, - STATE(6051), 9, + STATE(6049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719832,7 +719735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9175), 22, + ACTIONS(9193), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719855,7 +719758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239861] = 17, + [239686] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719876,17 +719779,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3205), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3215), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(3311), 1, + STATE(2200), 1, sym__simple_name, - STATE(3329), 1, - sym_generic_name, - STATE(6052), 9, + STATE(6050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719896,7 +719799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719919,7 +719822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239942] = 17, + [239767] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719940,17 +719843,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2296), 1, + STATE(2223), 1, sym__simple_name, - STATE(6053), 9, + STATE(2254), 1, + sym__reserved_identifier, + STATE(6051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719960,7 +719863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719983,7 +719886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240023] = 17, + [239848] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720004,17 +719907,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2248), 1, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2362), 1, sym__simple_name, - STATE(6054), 9, + STATE(6052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720024,7 +719927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720047,7 +719950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240104] = 17, + [239929] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720068,17 +719971,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(3709), 1, - sym__reserved_identifier, - STATE(4020), 1, + STATE(2995), 1, sym_identifier, - STATE(4137), 1, - sym__simple_name, - STATE(4151), 1, + STATE(3102), 1, sym_generic_name, - STATE(6055), 9, + STATE(3145), 1, + sym__simple_name, + STATE(3241), 1, + sym__reserved_identifier, + STATE(6053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720088,7 +719991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720111,7 +720014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240185] = 17, + [240010] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720132,17 +720035,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3208), 1, + ACTIONS(9195), 1, + anon_sym_RBRACE, + STATE(2182), 1, sym__reserved_identifier, - STATE(3215), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(3310), 1, - sym__simple_name, - STATE(3329), 1, - sym_generic_name, - STATE(6056), 9, + STATE(6054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720152,7 +720055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3814), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720175,7 +720078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240266] = 17, + [240091] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720198,15 +720101,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9197), 1, + anon_sym_operator, + ACTIONS(9199), 1, + anon_sym_this, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(6390), 1, sym_identifier, - STATE(2359), 1, - sym__simple_name, - STATE(6057), 9, + STATE(6055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720239,7 +720142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240347] = 17, + [240172] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720260,17 +720163,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, - sym_identifier, - STATE(2256), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(2274), 1, + STATE(4112), 1, sym__simple_name, - STATE(6058), 9, + STATE(6342), 1, + sym_identifier, + STATE(6056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720280,7 +720183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720303,7 +720206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240428] = 17, + [240253] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720324,17 +720227,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3180), 1, - sym_identifier, - STATE(3205), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3253), 1, + STATE(2187), 1, sym_generic_name, - STATE(3275), 1, + STATE(2193), 1, + sym_identifier, + STATE(2360), 1, sym__simple_name, - STATE(6059), 9, + STATE(6057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720344,7 +720247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720367,7 +720270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240509] = 17, + [240334] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720392,13 +720295,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2338), 1, + STATE(2204), 1, sym__simple_name, - STATE(6060), 9, + STATE(6058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720431,7 +720334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240590] = 17, + [240415] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720456,13 +720359,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2206), 1, + STATE(2366), 1, sym__simple_name, - STATE(6061), 9, + STATE(6059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720495,7 +720398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240671] = 17, + [240496] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720518,15 +720421,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9201), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(2392), 1, - sym__simple_name, - STATE(6062), 9, + STATE(6060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720559,7 +720462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240752] = 17, + [240577] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720580,17 +720483,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9151), 1, sym__identifier_token, - ACTIONS(9205), 1, - anon_sym_operator, - ACTIONS(9207), 1, - anon_sym_this, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6392), 1, + STATE(2258), 1, sym_identifier, - STATE(6063), 9, + STATE(2261), 1, + sym__simple_name, + STATE(2272), 1, + sym_generic_name, + STATE(2282), 1, + sym__reserved_identifier, + STATE(6061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720600,7 +720503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9153), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720623,7 +720526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240833] = 17, + [240658] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720644,17 +720547,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(2995), 1, sym_identifier, - STATE(2198), 1, + STATE(3054), 1, sym__simple_name, - STATE(6064), 9, + STATE(3102), 1, + sym_generic_name, + STATE(3241), 1, + sym__reserved_identifier, + STATE(6062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720664,7 +720567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720687,7 +720590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240914] = 16, + [240739] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720708,73 +720611,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9123), 1, + ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9203), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7369), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - ACTIONS(9129), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6065), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(9126), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [240993] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4749), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6066), 9, + STATE(6063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720784,12 +720631,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -720809,8 +720654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [241066] = 17, + [240820] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720835,13 +720679,12 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7321), 1, sym_identifier, - STATE(2296), 1, - sym__simple_name, - STATE(6067), 9, + ACTIONS(8960), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720874,7 +720717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241147] = 13, + [240899] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720895,10 +720738,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4981), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6068), 9, + ACTIONS(9151), 1, + sym__identifier_token, + STATE(2258), 1, + sym_identifier, + STATE(2272), 1, + sym_generic_name, + STATE(2282), 1, + sym__reserved_identifier, + STATE(2311), 1, + sym__simple_name, + STATE(6065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720908,12 +720758,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4979), 25, + ACTIONS(9153), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -720933,8 +720781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [241220] = 17, + [240980] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720959,13 +720806,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2411), 1, + STATE(2266), 1, sym__simple_name, - STATE(6069), 9, + STATE(6066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720998,7 +720845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241301] = 17, + [241061] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721019,17 +720866,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9123), 1, sym__identifier_token, - ACTIONS(9209), 1, - anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(7743), 1, sym_identifier, - STATE(6070), 9, + ACTIONS(9129), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721039,7 +720885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9126), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721062,7 +720908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241382] = 17, + [241140] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721083,17 +720929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(3180), 1, - sym_identifier, - STATE(3205), 1, - sym__reserved_identifier, - STATE(3253), 1, + STATE(2187), 1, sym_generic_name, - STATE(3259), 1, + STATE(2193), 1, + sym_identifier, + STATE(2196), 1, sym__simple_name, - STATE(6071), 9, + STATE(2254), 1, + sym__reserved_identifier, + STATE(6068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721103,7 +720949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721126,7 +720972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241463] = 17, + [241221] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721147,17 +720993,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3180), 1, - sym_identifier, - STATE(3205), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3253), 1, + STATE(2187), 1, sym_generic_name, - STATE(3263), 1, + STATE(2193), 1, + sym_identifier, + STATE(2308), 1, sym__simple_name, - STATE(6072), 9, + STATE(6069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721167,7 +721013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721190,7 +721036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241544] = 17, + [241302] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721211,17 +721057,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(4096), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, - sym_identifier, - STATE(2256), 1, + STATE(2374), 1, sym__reserved_identifier, - STATE(2280), 1, + STATE(2380), 1, + sym_identifier, + STATE(2407), 1, sym__simple_name, - STATE(6073), 9, + STATE(2418), 1, + sym_generic_name, + STATE(6070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721231,7 +721077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(4098), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721254,7 +721100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241625] = 17, + [241383] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721275,17 +721121,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9211), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2600), 1, - sym_identifier, - STATE(2636), 1, - sym_generic_name, - STATE(2662), 1, + ACTIONS(9205), 1, + anon_sym_RBRACE, + STATE(2182), 1, sym__reserved_identifier, - STATE(2683), 1, - sym__simple_name, - STATE(6074), 9, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, + sym_identifier, + STATE(6071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721295,7 +721141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9213), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721318,7 +721164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241706] = 17, + [241464] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721339,17 +721185,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9133), 1, + ACTIONS(9123), 1, sym__identifier_token, - STATE(2251), 1, - sym_identifier, - STATE(2259), 1, - sym_generic_name, - STATE(2265), 1, - sym__simple_name, - STATE(2279), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6075), 9, + STATE(7372), 1, + sym_identifier, + ACTIONS(9129), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721359,7 +721204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9135), 22, + ACTIONS(9126), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721382,7 +721227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241787] = 17, + [241543] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721403,17 +721248,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - ACTIONS(9215), 1, - anon_sym_RBRACE, - STATE(2182), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2616), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(4191), 1, + sym__simple_name, + STATE(6342), 1, sym_identifier, - STATE(6076), 9, + STATE(6073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721423,7 +721268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721446,7 +721291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241868] = 17, + [241624] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721469,15 +721314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9217), 1, - anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(6077), 9, + STATE(2265), 1, + sym__simple_name, + STATE(6074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721510,7 +721355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241949] = 17, + [241705] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721531,17 +721376,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(9147), 1, sym__identifier_token, - STATE(2378), 1, - sym__reserved_identifier, - STATE(2383), 1, + STATE(4028), 1, sym_identifier, - STATE(2393), 1, + STATE(4112), 1, sym__simple_name, - STATE(2424), 1, + STATE(4135), 1, sym_generic_name, - STATE(6078), 9, + STATE(5294), 1, + sym__reserved_identifier, + STATE(6075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721551,7 +721396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 22, + ACTIONS(9149), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721574,7 +721419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242030] = 17, + [241786] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721595,17 +721440,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(6729), 1, + ACTIONS(3787), 2, anon_sym_LBRACK, - ACTIONS(6773), 1, - anon_sym_QMARK, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6901), 1, - sym_identifier, - STATE(6079), 9, + aux_sym_preproc_if_token1, + STATE(6076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721615,10 +721453,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3785), 25, anon_sym_alias, anon_sym_global, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -721638,7 +721478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242111] = 17, + sym__identifier_token, + [241859] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721659,17 +721500,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9133), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2251), 1, - sym_identifier, - STATE(2259), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2267), 1, + STATE(2193), 1, + sym_identifier, + STATE(2435), 1, sym__simple_name, - STATE(2279), 1, - sym__reserved_identifier, - STATE(6080), 9, + STATE(6077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721679,7 +721520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9135), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721702,7 +721543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242192] = 13, + [241940] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721723,10 +721564,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3787), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6081), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(9207), 1, + anon_sym_operator, + ACTIONS(9209), 1, + anon_sym_this, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6387), 1, + sym_identifier, + STATE(6078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721736,12 +721584,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3785), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -721761,8 +721607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [242265] = 17, + [242021] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721785,15 +721630,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3897), 1, sym__identifier_token, - STATE(3205), 1, - sym__reserved_identifier, - STATE(3215), 1, + STATE(3207), 1, sym_identifier, - STATE(3310), 1, - sym__simple_name, - STATE(3329), 1, + STATE(3241), 1, + sym__reserved_identifier, + STATE(3347), 1, sym_generic_name, - STATE(6082), 9, + STATE(3386), 1, + sym__simple_name, + STATE(6079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721826,7 +721671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242346] = 17, + [242102] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721849,15 +721694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9211), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(2328), 1, - sym__simple_name, - STATE(6083), 9, + STATE(6080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721890,7 +721735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242427] = 17, + [242183] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721911,17 +721756,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2256), 1, + ACTIONS(9213), 1, + anon_sym_RBRACE, + STATE(2182), 1, sym__reserved_identifier, - STATE(4137), 1, - sym__simple_name, - STATE(4458), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(6084), 9, + STATE(6081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721931,7 +721776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721954,7 +721799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242508] = 17, + [242264] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721975,17 +721820,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2293), 1, + STATE(2404), 1, sym__simple_name, - STATE(6085), 9, + STATE(6082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721995,7 +721840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722018,7 +721863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242589] = 17, + [242345] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722039,17 +721884,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9173), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(4151), 1, + STATE(2187), 1, sym_generic_name, - STATE(4197), 1, + STATE(2193), 1, + sym_identifier, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2294), 1, sym__simple_name, - STATE(5304), 1, + STATE(6083), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9141), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [242426] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, sym__reserved_identifier, - STATE(6326), 1, + STATE(2634), 1, sym_identifier, - STATE(6086), 9, + STATE(2805), 1, + sym__simple_name, + STATE(2847), 1, + sym_generic_name, + STATE(6084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722059,7 +721968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9175), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722082,7 +721991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242670] = 13, + [242507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722103,10 +722012,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5053), 2, + ACTIONS(5057), 2, anon_sym_LBRACK, aux_sym_preproc_if_token1, - STATE(6087), 9, + STATE(6085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722116,7 +722025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5051), 25, + ACTIONS(5055), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722142,7 +722051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [242743] = 17, + [242580] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722165,15 +722074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, + ACTIONS(9215), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(2337), 1, - sym__simple_name, - STATE(6088), 9, + STATE(6086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722206,7 +722115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242824] = 17, + [242661] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722227,17 +722136,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2968), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - STATE(2981), 1, + STATE(2254), 1, sym__reserved_identifier, - STATE(3046), 1, - sym_generic_name, - STATE(3106), 1, + STATE(2267), 1, sym__simple_name, - STATE(6089), 9, + STATE(6087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722247,7 +722156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3893), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722270,7 +722179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242905] = 17, + [242742] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722291,17 +722200,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2944), 1, - sym_identifier, - STATE(2990), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(3000), 1, + STATE(2193), 1, + sym_identifier, + STATE(2388), 1, sym__simple_name, - STATE(3205), 1, - sym__reserved_identifier, - STATE(6090), 9, + STATE(6088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722311,7 +722220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722334,7 +722243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242986] = 17, + [242823] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722359,13 +722268,13 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2360), 1, + STATE(2195), 1, sym__simple_name, - STATE(6091), 9, + STATE(6089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722398,7 +722307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243067] = 17, + [242904] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722419,17 +722328,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2189), 1, + STATE(3207), 1, + sym_identifier, + STATE(3241), 1, + sym__reserved_identifier, + STATE(3347), 1, sym_generic_name, - STATE(2192), 1, + STATE(3385), 1, + sym__simple_name, + STATE(6090), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3899), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [242985] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9183), 1, + sym__identifier_token, + STATE(2380), 1, sym_identifier, - STATE(2206), 1, + STATE(2407), 1, sym__simple_name, - STATE(2256), 1, + STATE(2418), 1, + sym_generic_name, + STATE(2662), 1, sym__reserved_identifier, - STATE(6092), 9, + STATE(6091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722439,7 +722412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(9185), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722462,7 +722435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243148] = 17, + [243066] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722485,15 +722458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, + ACTIONS(9217), 1, + anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7092), 1, + STATE(7342), 1, + sym_with_initializer, + STATE(7747), 1, sym_identifier, - STATE(6093), 9, + STATE(6092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722526,7 +722499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243229] = 17, + [243147] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722549,15 +722522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, + ACTIONS(9219), 1, + anon_sym_operator, + ACTIONS(9221), 1, + anon_sym_this, STATE(2182), 1, sym__reserved_identifier, - STATE(6901), 1, + STATE(6392), 1, sym_identifier, - STATE(6094), 9, + STATE(6093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722590,7 +722563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243310] = 16, + [243228] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722611,15 +722584,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9123), 1, + ACTIONS(3798), 1, sym__identifier_token, - STATE(2182), 1, + STATE(3192), 1, sym__reserved_identifier, - STATE(7380), 1, + STATE(3207), 1, sym_identifier, - ACTIONS(9129), 2, - anon_sym_unsafe, - anon_sym_static, + STATE(3347), 1, + sym_generic_name, + STATE(3442), 1, + sym__simple_name, + STATE(6094), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3800), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [243309] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9139), 1, + sym__identifier_token, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, + sym_identifier, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2266), 1, + sym__simple_name, STATE(6095), 9, sym_preproc_region, sym_preproc_endregion, @@ -722630,7 +722668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9126), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722653,7 +722691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243389] = 17, + [243390] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722674,15 +722712,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - ACTIONS(9219), 1, - anon_sym_RBRACE, - STATE(2182), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2254), 1, sym__reserved_identifier, - STATE(7308), 1, - sym_with_initializer, - STATE(7545), 1, + STATE(4112), 1, + sym__simple_name, + STATE(4415), 1, sym_identifier, STATE(6096), 9, sym_preproc_region, @@ -722694,7 +722732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722717,7 +722755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243470] = 17, + [243471] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722738,16 +722776,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(3897), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(3182), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2317), 1, + STATE(3205), 1, + sym_generic_name, + STATE(3217), 1, sym__simple_name, + STATE(3241), 1, + sym__reserved_identifier, STATE(6097), 9, sym_preproc_region, sym_preproc_endregion, @@ -722758,7 +722796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(3899), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722781,7 +722819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243551] = 17, + [243552] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722802,15 +722840,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2256), 1, - sym__reserved_identifier, - STATE(2337), 1, + STATE(2350), 1, sym__simple_name, STATE(6098), 9, sym_preproc_region, @@ -722822,7 +722860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722845,7 +722883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243632] = 17, + [243633] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722866,16 +722904,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9223), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(3181), 1, sym_identifier, - STATE(2201), 1, + STATE(3201), 1, sym__simple_name, + STATE(3208), 1, + sym_generic_name, + STATE(3251), 1, + sym__reserved_identifier, STATE(6099), 9, sym_preproc_region, sym_preproc_endregion, @@ -722886,7 +722924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9225), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722909,7 +722947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243713] = 17, + [243714] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722930,16 +722968,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9137), 1, - sym__identifier_token, - STATE(2664), 1, - sym_identifier, - STATE(2748), 1, - sym__simple_name, - STATE(2756), 1, - sym__reserved_identifier, - STATE(2790), 1, - sym_generic_name, + ACTIONS(3787), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + ACTIONS(9227), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(6100), 9, sym_preproc_region, sym_preproc_endregion, @@ -722950,7 +722984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9139), 22, + ACTIONS(3785), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722973,7 +723007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243794] = 17, + sym__identifier_token, + [243789] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722994,15 +723029,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(4300), 1, - sym__reserved_identifier, - STATE(4388), 1, - sym_identifier, - STATE(4497), 1, + STATE(2187), 1, sym_generic_name, - STATE(4681), 1, + STATE(2193), 1, + sym_identifier, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2288), 1, sym__simple_name, STATE(6101), 9, sym_preproc_region, @@ -723014,7 +723049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4088), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723037,7 +723072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243875] = 14, + [243870] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723058,12 +723093,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3787), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - ACTIONS(9221), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3869), 1, + sym__identifier_token, + STATE(2935), 1, + sym_identifier, + STATE(2952), 1, + sym__reserved_identifier, + STATE(2964), 1, + sym_generic_name, + STATE(2990), 1, + sym__simple_name, STATE(6102), 9, sym_preproc_region, sym_preproc_endregion, @@ -723074,7 +723113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3785), 23, + ACTIONS(3871), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723097,8 +723136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [243950] = 17, + [243951] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723121,13 +723159,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9223), 1, + ACTIONS(9229), 1, anon_sym_RBRACE, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, + STATE(7342), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, STATE(6103), 9, sym_preproc_region, @@ -723162,7 +723200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244031] = 17, + [244032] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723187,11 +723225,11 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2389), 1, + STATE(2247), 1, sym__simple_name, STATE(6104), 9, sym_preproc_region, @@ -723226,7 +723264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244112] = 17, + [244113] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723247,16 +723285,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2189), 1, + STATE(2182), 1, + sym__reserved_identifier, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2248), 1, + STATE(2352), 1, sym__simple_name, - STATE(2256), 1, - sym__reserved_identifier, STATE(6105), 9, sym_preproc_region, sym_preproc_endregion, @@ -723267,7 +723305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723290,7 +723328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244193] = 17, + [244194] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723311,16 +723349,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9173), 1, + ACTIONS(9131), 1, sym__identifier_token, - STATE(4137), 1, + STATE(2673), 1, + sym_identifier, + STATE(2737), 1, sym__simple_name, - STATE(4151), 1, + STATE(2809), 1, sym_generic_name, - STATE(5304), 1, + STATE(2849), 1, sym__reserved_identifier, - STATE(6326), 1, - sym_identifier, STATE(6106), 9, sym_preproc_region, sym_preproc_endregion, @@ -723331,7 +723369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9175), 22, + ACTIONS(9133), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723354,7 +723392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244274] = 16, + [244275] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723375,15 +723413,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(3869), 1, sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(6319), 1, + STATE(2935), 1, sym_identifier, - ACTIONS(9225), 2, - anon_sym_class, - anon_sym_struct, + STATE(2952), 1, + sym__reserved_identifier, + STATE(2957), 1, + sym__simple_name, + STATE(2964), 1, + sym_generic_name, STATE(6107), 9, sym_preproc_region, sym_preproc_endregion, @@ -723394,7 +723433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(3871), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723417,7 +723456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244353] = 17, + [244356] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723442,11 +723481,11 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2413), 1, + STATE(2223), 1, sym__simple_name, STATE(6108), 9, sym_preproc_region, @@ -723481,7 +723520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244434] = 17, + [244437] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723502,15 +723541,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3205), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(3215), 1, - sym_identifier, - STATE(3329), 1, + STATE(2187), 1, sym_generic_name, - STATE(3478), 1, + STATE(2193), 1, + sym_identifier, + STATE(2303), 1, sym__simple_name, STATE(6109), 9, sym_preproc_region, @@ -723522,7 +723561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3899), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723545,7 +723584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244515] = 17, + [244518] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723566,15 +723605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(9147), 1, sym__identifier_token, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(4028), 1, sym_identifier, - STATE(2198), 1, + STATE(4135), 1, + sym_generic_name, + STATE(4191), 1, sym__simple_name, - STATE(2256), 1, + STATE(5294), 1, sym__reserved_identifier, STATE(6110), 9, sym_preproc_region, @@ -723586,7 +723625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9145), 22, + ACTIONS(9149), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723609,7 +723648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244596] = 17, + [244599] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723630,16 +723669,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - ACTIONS(9227), 1, - anon_sym_operator, - ACTIONS(9229), 1, - anon_sym_this, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6391), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2352), 1, + sym__simple_name, STATE(6111), 9, sym_preproc_region, sym_preproc_endregion, @@ -723650,7 +723689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723673,7 +723712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244677] = 16, + [244680] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723694,15 +723733,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9123), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(7607), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - ACTIONS(9129), 2, - anon_sym_unsafe, - anon_sym_static, + STATE(2247), 1, + sym__simple_name, + STATE(2254), 1, + sym__reserved_identifier, STATE(6112), 9, sym_preproc_region, sym_preproc_endregion, @@ -723713,7 +723753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9126), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723736,7 +723776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244756] = 17, + [244761] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723757,16 +723797,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9123), 1, sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, - sym_generic_name, - STATE(2192), 1, + STATE(7606), 1, sym_identifier, - STATE(2200), 1, - sym__simple_name, + ACTIONS(9129), 2, + anon_sym_unsafe, + anon_sym_static, STATE(6113), 9, sym_preproc_region, sym_preproc_endregion, @@ -723777,7 +723816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9126), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723800,7 +723839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244837] = 17, + [244840] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723825,11 +723864,11 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2293), 1, + STATE(2206), 1, sym__simple_name, STATE(6114), 9, sym_preproc_region, @@ -723864,7 +723903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244918] = 17, + [244921] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723887,14 +723926,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6773), 1, - anon_sym_QMARK, STATE(2182), 1, sym__reserved_identifier, - STATE(7092), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, + STATE(2383), 1, + sym__simple_name, STATE(6115), 9, sym_preproc_region, sym_preproc_endregion, @@ -723928,7 +723967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244999] = 17, + [245002] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723953,11 +723992,11 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(2189), 1, + STATE(2187), 1, sym_generic_name, - STATE(2192), 1, + STATE(2193), 1, sym_identifier, - STATE(2381), 1, + STATE(2353), 1, sym__simple_name, STATE(6116), 9, sym_preproc_region, @@ -723992,7 +724031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245080] = 16, + [245083] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724013,15 +724052,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9139), 1, sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(7290), 1, + STATE(2187), 1, + sym_generic_name, + STATE(2193), 1, sym_identifier, - ACTIONS(8960), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2197), 1, + sym__simple_name, + STATE(2254), 1, + sym__reserved_identifier, STATE(6117), 9, sym_preproc_region, sym_preproc_endregion, @@ -724032,7 +724072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9141), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724055,7 +724095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245159] = 16, + [245164] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724076,14 +724116,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(9231), 1, - anon_sym_RPAREN, - STATE(2182), 1, - sym__reserved_identifier, - STATE(7362), 1, - sym_identifier, + ACTIONS(4973), 1, + aux_sym_preproc_if_token3, + ACTIONS(4745), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, STATE(6118), 9, sym_preproc_region, sym_preproc_endregion, @@ -724094,7 +724131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4743), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724117,7 +724154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245237] = 16, + sym__identifier_token, + [245238] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724140,11 +724178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8960), 1, - anon_sym_COMMA, + ACTIONS(9231), 1, + anon_sym_RPAREN, STATE(2182), 1, sym__reserved_identifier, - STATE(7078), 1, + STATE(7500), 1, sym_identifier, STATE(6119), 9, sym_preproc_region, @@ -724179,7 +724217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245315] = 13, + [245316] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724238,7 +724276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [245387] = 16, + [245388] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724259,13 +724297,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9238), 1, - sym_integer_literal, - STATE(6498), 1, + ACTIONS(8960), 1, + anon_sym_COMMA, + STATE(2182), 1, sym__reserved_identifier, - STATE(7137), 1, + STATE(6866), 1, sym_identifier, STATE(6121), 9, sym_preproc_region, @@ -724277,7 +724315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8000), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724300,7 +724338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245465] = 14, + [245466] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724321,11 +724359,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4929), 1, - aux_sym_preproc_if_token3, - ACTIONS(4749), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6797), 1, + sym_identifier, + STATE(7113), 1, + sym_using_variable_declarator, STATE(6122), 9, sym_preproc_region, sym_preproc_endregion, @@ -724336,7 +724377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4747), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724359,8 +724400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [245539] = 16, + [245544] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724385,9 +724425,9 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7308), 1, + STATE(7342), 1, sym_with_initializer, - STATE(7545), 1, + STATE(7747), 1, sym_identifier, STATE(6123), 9, sym_preproc_region, @@ -724422,7 +724462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245617] = 16, + [245622] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724443,14 +724483,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7922), 1, sym__identifier_token, - STATE(2182), 1, + ACTIONS(9238), 1, + sym_integer_literal, + STATE(6483), 1, sym__reserved_identifier, - STATE(7004), 1, + STATE(7310), 1, sym_identifier, - STATE(7171), 1, - sym_using_variable_declarator, STATE(6124), 9, sym_preproc_region, sym_preproc_endregion, @@ -724461,7 +724501,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7924), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [245700] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6985), 1, + sym__identifier_token, + STATE(2616), 1, + sym__reserved_identifier, + STATE(6348), 1, + sym_identifier, + STATE(6125), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724484,7 +724584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245695] = 15, + [245775] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724509,9 +724609,9 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6747), 1, + STATE(6241), 1, sym_identifier, - STATE(6125), 9, + STATE(6126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724544,7 +724644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245770] = 15, + [245850] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724569,67 +724669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6304), 1, - sym_identifier, - STATE(6126), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [245845] = 15, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7039), 1, - sym__identifier_token, - STATE(2604), 1, - sym__reserved_identifier, - STATE(7718), 1, + STATE(6263), 1, sym_identifier, STATE(6127), 9, sym_preproc_region, @@ -724641,7 +724681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724664,7 +724704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245920] = 15, + [245925] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724689,7 +724729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7198), 1, + STATE(6742), 1, sym_identifier, STATE(6128), 9, sym_preproc_region, @@ -724724,7 +724764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245995] = 15, + [246000] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724745,11 +724785,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6295), 1, + STATE(6332), 1, sym_identifier, STATE(6129), 9, sym_preproc_region, @@ -724761,7 +724801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724784,7 +724824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246070] = 15, + [246075] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724809,7 +724849,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6283), 1, + STATE(6255), 1, sym_identifier, STATE(6130), 9, sym_preproc_region, @@ -724844,7 +724884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246145] = 15, + [246150] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724865,11 +724905,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6286), 1, + STATE(6347), 1, sym_identifier, STATE(6131), 9, sym_preproc_region, @@ -724881,7 +724921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724904,7 +724944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246220] = 15, + [246225] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724929,7 +724969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6301), 1, + STATE(6300), 1, sym_identifier, STATE(6132), 9, sym_preproc_region, @@ -724964,7 +725004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246295] = 15, + [246300] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724985,11 +725025,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6318), 1, + STATE(6775), 1, sym_identifier, STATE(6133), 9, sym_preproc_region, @@ -725001,7 +725041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725024,7 +725064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246370] = 15, + [246375] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725049,7 +725089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6292), 1, + STATE(6304), 1, sym_identifier, STATE(6134), 9, sym_preproc_region, @@ -725084,7 +725124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246445] = 15, + [246450] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725109,7 +725149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6241), 1, + STATE(6702), 1, sym_identifier, STATE(6135), 9, sym_preproc_region, @@ -725144,7 +725184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246520] = 15, + [246525] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725169,7 +725209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6263), 1, + STATE(6296), 1, sym_identifier, STATE(6136), 9, sym_preproc_region, @@ -725204,7 +725244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246595] = 15, + [246600] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725225,11 +725265,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6291), 1, + STATE(6326), 1, sym_identifier, STATE(6137), 9, sym_preproc_region, @@ -725241,7 +725281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725264,7 +725304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246670] = 15, + [246675] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725289,7 +725329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6285), 1, + STATE(6295), 1, sym_identifier, STATE(6138), 9, sym_preproc_region, @@ -725324,7 +725364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246745] = 15, + [246750] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725345,11 +725385,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6298), 1, + STATE(6320), 1, sym_identifier, STATE(6139), 9, sym_preproc_region, @@ -725361,7 +725401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725384,7 +725424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246820] = 12, + [246825] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725405,6 +725445,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2182), 1, + sym__reserved_identifier, + STATE(6283), 1, + sym_identifier, STATE(6140), 9, sym_preproc_region, sym_preproc_endregion, @@ -725415,11 +725461,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9129), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_unsafe, - anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -725440,8 +725484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [246889] = 15, + [246900] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725466,7 +725509,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6289), 1, + STATE(6275), 1, sym_identifier, STATE(6141), 9, sym_preproc_region, @@ -725501,7 +725544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246964] = 15, + [246975] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725522,11 +725565,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(2993), 1, sym__identifier_token, - STATE(2604), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(6330), 1, + STATE(7122), 1, sym_identifier, STATE(6142), 9, sym_preproc_region, @@ -725538,7 +725581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725561,7 +725604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247039] = 15, + [247050] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725586,7 +725629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6266), 1, + STATE(6290), 1, sym_identifier, STATE(6143), 9, sym_preproc_region, @@ -725621,7 +725664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247114] = 15, + [247125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725646,7 +725689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7309), 1, + STATE(6767), 1, sym_identifier, STATE(6144), 9, sym_preproc_region, @@ -725681,7 +725724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247189] = 15, + [247200] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725702,11 +725745,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6350), 1, + STATE(6288), 1, sym_identifier, STATE(6145), 9, sym_preproc_region, @@ -725718,7 +725761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725741,7 +725784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247264] = 15, + [247275] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725762,11 +725805,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6719), 1, + STATE(6256), 1, sym_identifier, STATE(6146), 9, sym_preproc_region, @@ -725778,7 +725821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725801,7 +725844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247339] = 15, + [247350] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725822,11 +725865,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6361), 1, + STATE(6259), 1, sym_identifier, STATE(6147), 9, sym_preproc_region, @@ -725838,7 +725881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725861,7 +725904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247414] = 15, + [247425] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725886,7 +725929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6261), 1, + STATE(6276), 1, sym_identifier, STATE(6148), 9, sym_preproc_region, @@ -725921,7 +725964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247489] = 15, + [247500] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725946,7 +725989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7714), 1, + STATE(7708), 1, sym_identifier, STATE(6149), 9, sym_preproc_region, @@ -725981,7 +726024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247564] = 15, + [247575] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726002,11 +726045,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6315), 1, + STATE(7236), 1, sym_identifier, STATE(6150), 9, sym_preproc_region, @@ -726018,7 +726061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726041,7 +726084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247639] = 15, + [247650] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726066,7 +726109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6762), 1, + STATE(6252), 1, sym_identifier, STATE(6151), 9, sym_preproc_region, @@ -726101,7 +726144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247714] = 15, + [247725] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726126,7 +726169,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7095), 1, + STATE(6298), 1, sym_identifier, STATE(6152), 9, sym_preproc_region, @@ -726161,7 +726204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247789] = 15, + [247800] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726186,7 +726229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6282), 1, + STATE(6285), 1, sym_identifier, STATE(6153), 9, sym_preproc_region, @@ -726221,7 +726264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247864] = 15, + [247875] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726242,11 +726285,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3709), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(7255), 1, + STATE(6848), 1, sym_identifier, STATE(6154), 9, sym_preproc_region, @@ -726258,7 +726301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726281,7 +726324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247939] = 15, + [247950] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726302,11 +726345,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3709), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(7160), 1, + STATE(7349), 1, sym_identifier, STATE(6155), 9, sym_preproc_region, @@ -726318,7 +726361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2997), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726341,7 +726384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248014] = 15, + [248025] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726362,11 +726405,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6319), 1, + STATE(6413), 1, sym_identifier, STATE(6156), 9, sym_preproc_region, @@ -726378,7 +726421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726401,7 +726444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248089] = 15, + [248100] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726422,11 +726465,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6323), 1, + STATE(6311), 1, sym_identifier, STATE(6157), 9, sym_preproc_region, @@ -726438,7 +726481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726461,7 +726504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248164] = 15, + [248175] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726482,11 +726525,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(7547), 1, + STATE(6328), 1, sym_identifier, STATE(6158), 9, sym_preproc_region, @@ -726498,7 +726541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726521,7 +726564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248239] = 15, + [248250] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726546,7 +726589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6277), 1, + STATE(6260), 1, sym_identifier, STATE(6159), 9, sym_preproc_region, @@ -726581,7 +726624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248314] = 15, + [248325] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726606,7 +726649,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6807), 1, + STATE(6270), 1, sym_identifier, STATE(6160), 9, sym_preproc_region, @@ -726641,7 +726684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248389] = 15, + [248400] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726666,7 +726709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6893), 1, + STATE(6785), 1, sym_identifier, STATE(6161), 9, sym_preproc_region, @@ -726701,7 +726744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248464] = 15, + [248475] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726722,11 +726765,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6774), 1, + STATE(6319), 1, sym_identifier, STATE(6162), 9, sym_preproc_region, @@ -726738,7 +726781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726761,7 +726804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248539] = 15, + [248550] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726782,11 +726825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6249), 1, + STATE(6733), 1, sym_identifier, STATE(6163), 9, sym_preproc_region, @@ -726798,7 +726841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726821,7 +726864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248614] = 15, + [248625] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726842,11 +726885,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6314), 1, + STATE(6329), 1, sym_identifier, STATE(6164), 9, sym_preproc_region, @@ -726858,7 +726901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726881,7 +726924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248689] = 15, + [248700] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726902,11 +726945,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6382), 1, + STATE(7246), 1, sym_identifier, STATE(6165), 9, sym_preproc_region, @@ -726918,7 +726961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726941,7 +726984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248764] = 15, + [248775] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726962,11 +727005,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6258), 1, + STATE(6372), 1, sym_identifier, STATE(6166), 9, sym_preproc_region, @@ -726978,7 +727021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727001,7 +727044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248839] = 15, + [248850] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727026,7 +727069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7567), 1, + STATE(6750), 1, sym_identifier, STATE(6167), 9, sym_preproc_region, @@ -727061,7 +727104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248914] = 15, + [248925] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727082,12 +727125,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2182), 1, - sym__reserved_identifier, - STATE(6777), 1, - sym_identifier, STATE(6168), 9, sym_preproc_region, sym_preproc_endregion, @@ -727098,9 +727135,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9129), 25, anon_sym_alias, anon_sym_global, + anon_sym_unsafe, + anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -727121,7 +727160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248989] = 15, + sym__identifier_token, + [248994] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727146,7 +727186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6300), 1, + STATE(7583), 1, sym_identifier, STATE(6169), 9, sym_preproc_region, @@ -727181,7 +727221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249064] = 15, + [249069] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727202,11 +727242,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6725), 1, + STATE(6310), 1, sym_identifier, STATE(6170), 9, sym_preproc_region, @@ -727218,7 +727258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727241,7 +727281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249139] = 15, + [249144] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727262,11 +727302,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6333), 1, + STATE(6820), 1, sym_identifier, STATE(6171), 9, sym_preproc_region, @@ -727278,7 +727318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727301,7 +727341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249214] = 15, + [249219] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727322,11 +727362,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6780), 1, + STATE(6737), 1, sym_identifier, STATE(6172), 9, sym_preproc_region, @@ -727338,7 +727378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727361,7 +727401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249289] = 15, + [249294] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727382,11 +727422,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6321), 1, + STATE(7231), 1, sym_identifier, STATE(6173), 9, sym_preproc_region, @@ -727398,7 +727438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727421,7 +727461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249364] = 15, + [249369] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727442,11 +727482,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6769), 1, + STATE(6277), 1, sym_identifier, STATE(6174), 9, sym_preproc_region, @@ -727458,7 +727498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727481,7 +727521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249439] = 15, + [249444] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727502,11 +727542,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6299), 1, + STATE(6330), 1, sym_identifier, STATE(6175), 9, sym_preproc_region, @@ -727518,7 +727558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727541,7 +727581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249514] = 15, + [249519] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727562,11 +727602,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2993), 1, sym__identifier_token, - STATE(2182), 1, + STATE(3728), 1, sym__reserved_identifier, - STATE(7416), 1, + STATE(7147), 1, sym_identifier, STATE(6176), 9, sym_preproc_region, @@ -727578,7 +727618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727601,7 +727641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249589] = 15, + [249594] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727622,11 +727662,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6284), 1, + STATE(7351), 1, sym_identifier, STATE(6177), 9, sym_preproc_region, @@ -727638,7 +727678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727661,7 +727701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249664] = 15, + [249669] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727686,7 +727726,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(7276), 1, + STATE(6271), 1, sym_identifier, STATE(6178), 9, sym_preproc_region, @@ -727721,7 +727761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249739] = 15, + [249744] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727746,7 +727786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6271), 1, + STATE(6959), 1, sym_identifier, STATE(6179), 9, sym_preproc_region, @@ -727781,7 +727821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249814] = 15, + [249819] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727802,11 +727842,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6411), 1, + STATE(7348), 1, sym_identifier, STATE(6180), 9, sym_preproc_region, @@ -727818,7 +727858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727841,7 +727881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249889] = 15, + [249894] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727862,11 +727902,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6311), 1, + STATE(6772), 1, sym_identifier, STATE(6181), 9, sym_preproc_region, @@ -727878,7 +727918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727901,7 +727941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249964] = 15, + [249969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727922,11 +727962,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2182), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(6788), 1, + STATE(6317), 1, sym_identifier, STATE(6182), 9, sym_preproc_region, @@ -727938,7 +727978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727961,7 +728001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [250039] = 15, + [250044] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727982,11 +728022,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2182), 1, sym__reserved_identifier, - STATE(6310), 1, + STATE(6273), 1, sym_identifier, STATE(6183), 9, sym_preproc_region, @@ -727998,7 +728038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728021,7 +728061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [250114] = 15, + [250119] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728046,7 +728086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, STATE(2182), 1, sym__reserved_identifier, - STATE(6759), 1, + STATE(6713), 1, sym_identifier, STATE(6184), 9, sym_preproc_region, @@ -728081,7 +728121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [250189] = 15, + [250194] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728102,11 +728142,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(6985), 1, sym__identifier_token, - STATE(2604), 1, + STATE(2616), 1, sym__reserved_identifier, - STATE(7482), 1, + STATE(7692), 1, sym_identifier, STATE(6185), 9, sym_preproc_region, @@ -728118,7 +728158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 22, + ACTIONS(6987), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728141,7 +728181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [250264] = 14, + [250269] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728199,7 +728239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250336] = 14, + [250341] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728257,7 +728297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250408] = 14, + [250413] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728315,7 +728355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250480] = 14, + [250485] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728373,7 +728413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250552] = 14, + [250557] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728431,7 +728471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250624] = 14, + [250629] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728489,7 +728529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250696] = 13, + [250701] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728545,7 +728585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250765] = 13, + [250770] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728566,7 +728606,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9246), 7, + ACTIONS(9280), 7, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -728584,7 +728624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9250), 16, + ACTIONS(9282), 16, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -728601,7 +728641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250834] = 13, + [250839] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728622,7 +728662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9280), 7, + ACTIONS(9270), 7, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -728640,63 +728680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9282), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_true, - anon_sym_false, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [250903] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9264), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6195), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(9268), 16, + ACTIONS(9274), 16, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -728713,7 +728697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [250972] = 13, + [250908] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728742,7 +728726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_GT_GT, - STATE(6196), 9, + STATE(6195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728769,7 +728753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [251041] = 12, + [250977] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728790,7 +728774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(6197), 9, + STATE(6196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728824,7 +728808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [251108] = 13, + [251044] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728845,7 +728829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9258), 7, + ACTIONS(9240), 7, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -728853,7 +728837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_GT_GT, - STATE(6198), 9, + STATE(6197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728863,7 +728847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9262), 16, + ACTIONS(9244), 16, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -728880,7 +728864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [251177] = 24, + [251113] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728901,38 +728885,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9290), 1, - anon_sym_where, - ACTIONS(9292), 1, - anon_sym_from, - ACTIONS(9294), 1, - anon_sym_join, - ACTIONS(9296), 1, - anon_sym_let, - ACTIONS(9298), 1, - anon_sym_orderby, - ACTIONS(9300), 1, - anon_sym_group, - ACTIONS(9302), 1, - anon_sym_select, - STATE(3380), 1, - sym__query_body, - STATE(4070), 1, - sym__select_or_group_clause, - STATE(6278), 1, - aux_sym__query_body_repeat1, - STATE(6407), 1, - sym__query_clause, - STATE(3351), 2, - sym_group_clause, - sym_select_clause, - STATE(6403), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6199), 9, + ACTIONS(9246), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728942,7 +728903,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251263] = 24, + ACTIONS(9250), 16, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_true, + anon_sym_false, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [251182] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728973,28 +728951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9304), 1, + ACTIONS(9300), 1, anon_sym_group, - ACTIONS(9306), 1, + ACTIONS(9302), 1, anon_sym_select, - STATE(3035), 1, + STATE(3289), 1, sym__query_body, - STATE(5674), 1, + STATE(5133), 1, sym__select_or_group_clause, - STATE(6274), 1, + STATE(6265), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6200), 9, + STATE(6199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729004,7 +728982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251349] = 24, + [251268] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729035,28 +729013,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9308), 1, + ACTIONS(9304), 1, anon_sym_group, - ACTIONS(9310), 1, + ACTIONS(9306), 1, anon_sym_select, - STATE(3429), 1, + STATE(3156), 1, sym__query_body, - STATE(4821), 1, + STATE(4820), 1, sym__select_or_group_clause, - STATE(6255), 1, + STATE(6246), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6201), 9, + STATE(6200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729066,7 +729044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251435] = 24, + [251354] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729097,28 +729075,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9312), 1, + ACTIONS(9308), 1, anon_sym_group, - ACTIONS(9314), 1, + ACTIONS(9310), 1, anon_sym_select, - STATE(3429), 1, + STATE(3289), 1, sym__query_body, - STATE(4860), 1, + STATE(4821), 1, sym__select_or_group_clause, - STATE(6256), 1, + STATE(6289), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6202), 9, + STATE(6201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729128,7 +729106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251521] = 24, + [251440] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729159,28 +729137,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9316), 1, + ACTIONS(9312), 1, anon_sym_group, - ACTIONS(9318), 1, + ACTIONS(9314), 1, anon_sym_select, - STATE(3429), 1, + STATE(3156), 1, sym__query_body, - STATE(4355), 1, + STATE(4155), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6268), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6203), 9, + STATE(6202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729190,7 +729168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251607] = 24, + [251526] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729221,28 +729199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9320), 1, + ACTIONS(9316), 1, anon_sym_group, - ACTIONS(9322), 1, + ACTIONS(9318), 1, anon_sym_select, - STATE(3380), 1, + STATE(3416), 1, sym__query_body, - STATE(5128), 1, + STATE(5121), 1, sym__select_or_group_clause, - STATE(6302), 1, + STATE(6282), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6204), 9, + STATE(6203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729252,7 +729230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251693] = 24, + [251612] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729283,28 +729261,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9304), 1, + ACTIONS(9320), 1, anon_sym_group, - ACTIONS(9306), 1, + ACTIONS(9322), 1, anon_sym_select, - STATE(3147), 1, + STATE(3156), 1, sym__query_body, - STATE(5674), 1, + STATE(4181), 1, sym__select_or_group_clause, - STATE(6274), 1, + STATE(6266), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6205), 9, + STATE(6204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729314,7 +729292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251779] = 24, + [251698] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729349,24 +729327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9326), 1, anon_sym_select, - STATE(3035), 1, + STATE(3156), 1, sym__query_body, - STATE(4143), 1, + STATE(5696), 1, sym__select_or_group_clause, - STATE(6248), 1, + STATE(6293), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6206), 9, + STATE(6205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729376,7 +729354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251865] = 24, + [251784] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729411,24 +729389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9330), 1, anon_sym_select, - STATE(3147), 1, + STATE(3156), 1, sym__query_body, - STATE(4204), 1, + STATE(5687), 1, sym__select_or_group_clause, - STATE(6242), 1, + STATE(6253), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6207), 9, + STATE(6206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729438,7 +729416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251951] = 24, + [251870] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729473,24 +729451,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9334), 1, anon_sym_select, - STATE(3429), 1, + STATE(3289), 1, sym__query_body, - STATE(5133), 1, + STATE(4005), 1, sym__select_or_group_clause, - STATE(6246), 1, + STATE(6247), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6208), 9, + STATE(6207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729500,7 +729478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252037] = 24, + [251956] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729535,24 +729513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9338), 1, anon_sym_select, - STATE(3147), 1, + STATE(3289), 1, sym__query_body, - STATE(5665), 1, + STATE(5126), 1, sym__select_or_group_clause, - STATE(6280), 1, + STATE(6262), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6209), 9, + STATE(6208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729562,7 +729540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252123] = 24, + [252042] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729597,24 +729575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9342), 1, anon_sym_select, - STATE(3935), 1, + STATE(4641), 1, sym__query_body, - STATE(4101), 1, + STATE(5160), 1, sym__select_or_group_clause, - STATE(6262), 1, + STATE(6250), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6210), 9, + STATE(6209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729624,7 +729602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252209] = 24, + [252128] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729659,24 +729637,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9346), 1, anon_sym_select, - STATE(3035), 1, + STATE(3877), 1, sym__query_body, - STATE(4819), 1, + STATE(3986), 1, sym__select_or_group_clause, - STATE(6268), 1, + STATE(6258), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6211), 9, + STATE(6210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729686,7 +729664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252295] = 24, + [252214] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729721,24 +729699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9350), 1, anon_sym_select, - STATE(3380), 1, + STATE(3156), 1, sym__query_body, - STATE(5152), 1, + STATE(4259), 1, sym__select_or_group_clause, - STATE(6257), 1, + STATE(6264), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6212), 9, + STATE(6211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729748,7 +729726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252381] = 24, + [252300] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729779,28 +729757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9336), 1, + ACTIONS(9304), 1, anon_sym_group, - ACTIONS(9338), 1, + ACTIONS(9306), 1, anon_sym_select, - STATE(3035), 1, + STATE(3083), 1, sym__query_body, - STATE(5665), 1, + STATE(4820), 1, sym__select_or_group_clause, - STATE(6280), 1, + STATE(6246), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6213), 9, + STATE(6212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729810,7 +729788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252467] = 24, + [252386] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729841,28 +729819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9324), 1, + ACTIONS(9332), 1, anon_sym_group, - ACTIONS(9326), 1, + ACTIONS(9334), 1, anon_sym_select, - STATE(3147), 1, + STATE(3416), 1, sym__query_body, - STATE(4143), 1, + STATE(4005), 1, sym__select_or_group_clause, - STATE(6248), 1, + STATE(6247), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6214), 9, + STATE(6213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729872,7 +729850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252553] = 24, + [252472] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729903,28 +729881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9316), 1, + ACTIONS(9324), 1, anon_sym_group, - ACTIONS(9318), 1, + ACTIONS(9326), 1, anon_sym_select, - STATE(3380), 1, + STATE(3083), 1, sym__query_body, - STATE(4355), 1, + STATE(5696), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6293), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6215), 9, + STATE(6214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729934,7 +729912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252639] = 24, + [252558] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729969,24 +729947,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9354), 1, anon_sym_select, - STATE(3429), 1, + STATE(3289), 1, sym__query_body, - STATE(5115), 1, + STATE(5152), 1, sym__select_or_group_clause, - STATE(6253), 1, + STATE(6292), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6216), 9, + STATE(6215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729996,7 +729974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252725] = 24, + [252644] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730031,18 +730009,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9358), 1, anon_sym_select, - STATE(3147), 1, + STATE(3416), 1, sym__query_body, - STATE(5686), 1, + STATE(4364), 1, sym__select_or_group_clause, - STATE(6297), 1, + STATE(6242), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6216), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [252730] = 24, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9290), 1, + anon_sym_where, + ACTIONS(9292), 1, + anon_sym_from, + ACTIONS(9294), 1, + anon_sym_join, + ACTIONS(9296), 1, + anon_sym_let, + ACTIONS(9298), 1, + anon_sym_orderby, + ACTIONS(9360), 1, + anon_sym_group, + ACTIONS(9362), 1, + anon_sym_select, + STATE(3083), 1, + sym__query_body, + STATE(5677), 1, + sym__select_or_group_clause, + STATE(6254), 1, + aux_sym__query_body_repeat1, + STATE(6399), 1, + sym__query_clause, + STATE(3001), 2, + sym_group_clause, + sym_select_clause, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730058,7 +730098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252811] = 24, + [252816] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730089,22 +730129,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9356), 1, + ACTIONS(9336), 1, anon_sym_group, - ACTIONS(9358), 1, + ACTIONS(9338), 1, anon_sym_select, - STATE(3035), 1, + STATE(3416), 1, sym__query_body, - STATE(5686), 1, + STATE(5126), 1, sym__select_or_group_clause, - STATE(6297), 1, + STATE(6262), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730120,7 +730160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252897] = 24, + [252902] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730151,22 +730191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9320), 1, + ACTIONS(9316), 1, anon_sym_group, - ACTIONS(9322), 1, + ACTIONS(9318), 1, anon_sym_select, - STATE(3429), 1, + STATE(3289), 1, sym__query_body, - STATE(5128), 1, + STATE(5121), 1, sym__select_or_group_clause, - STATE(6302), 1, + STATE(6282), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730182,7 +730222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252983] = 24, + [252988] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730213,22 +730253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9300), 1, + ACTIONS(9364), 1, anon_sym_group, - ACTIONS(9302), 1, + ACTIONS(9366), 1, anon_sym_select, - STATE(3429), 1, - sym__query_body, - STATE(4070), 1, + STATE(3698), 1, sym__select_or_group_clause, - STATE(6278), 1, + STATE(3877), 1, + sym__query_body, + STATE(6291), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730244,7 +730284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253069] = 24, + [253074] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730275,22 +730315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9360), 1, + ACTIONS(9368), 1, anon_sym_group, - ACTIONS(9362), 1, + ACTIONS(9370), 1, anon_sym_select, - STATE(3147), 1, + STATE(3083), 1, sym__query_body, - STATE(5691), 1, + STATE(5554), 1, sym__select_or_group_clause, - STATE(6293), 1, + STATE(6239), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730306,7 +730346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253155] = 24, + [253160] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730337,22 +730377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9364), 1, + ACTIONS(9372), 1, anon_sym_group, - ACTIONS(9366), 1, + ACTIONS(9374), 1, anon_sym_select, - STATE(3035), 1, + STATE(3416), 1, sym__query_body, - STATE(4272), 1, + STATE(5116), 1, sym__select_or_group_clause, - STATE(6270), 1, + STATE(6245), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730368,7 +730408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253241] = 24, + [253246] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730399,22 +730439,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9368), 1, + ACTIONS(9356), 1, anon_sym_group, - ACTIONS(9370), 1, + ACTIONS(9358), 1, anon_sym_select, - STATE(3147), 1, + STATE(3289), 1, sym__query_body, - STATE(5543), 1, + STATE(4364), 1, sym__select_or_group_clause, - STATE(6264), 1, + STATE(6242), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730430,7 +730470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253327] = 24, + [253332] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730461,22 +730501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9372), 1, + ACTIONS(9360), 1, anon_sym_group, - ACTIONS(9374), 1, + ACTIONS(9362), 1, anon_sym_select, - STATE(4639), 1, + STATE(3156), 1, sym__query_body, - STATE(4891), 1, + STATE(5677), 1, sym__select_or_group_clause, - STATE(6265), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730492,7 +730532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253413] = 24, + [253418] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730523,22 +730563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9352), 1, + ACTIONS(9368), 1, anon_sym_group, - ACTIONS(9354), 1, + ACTIONS(9370), 1, anon_sym_select, - STATE(3380), 1, + STATE(3156), 1, sym__query_body, - STATE(5115), 1, + STATE(5554), 1, sym__select_or_group_clause, - STATE(6253), 1, + STATE(6239), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730554,7 +730594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253499] = 24, + [253504] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730585,22 +730625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9360), 1, + ACTIONS(9376), 1, anon_sym_group, - ACTIONS(9362), 1, + ACTIONS(9378), 1, anon_sym_select, - STATE(3035), 1, + STATE(3416), 1, sym__query_body, - STATE(5691), 1, + STATE(4863), 1, sym__select_or_group_clause, - STATE(6293), 1, + STATE(6269), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730616,7 +730656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253585] = 24, + [253590] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730647,22 +730687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9376), 1, + ACTIONS(9380), 1, anon_sym_group, - ACTIONS(9378), 1, + ACTIONS(9382), 1, anon_sym_select, - STATE(4517), 1, + STATE(4522), 1, sym__select_or_group_clause, - STATE(4639), 1, + STATE(4641), 1, sym__query_body, - STATE(6273), 1, + STATE(6278), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730678,7 +730718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253671] = 24, + [253676] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730709,22 +730749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9380), 1, + ACTIONS(9328), 1, anon_sym_group, - ACTIONS(9382), 1, + ACTIONS(9330), 1, anon_sym_select, - STATE(3726), 1, - sym__select_or_group_clause, - STATE(3935), 1, + STATE(3083), 1, sym__query_body, - STATE(6244), 1, + STATE(5687), 1, + sym__select_or_group_clause, + STATE(6253), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730740,7 +730780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253757] = 24, + [253762] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730771,22 +730811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9328), 1, + ACTIONS(9376), 1, anon_sym_group, - ACTIONS(9330), 1, + ACTIONS(9378), 1, anon_sym_select, - STATE(3035), 1, + STATE(3289), 1, sym__query_body, - STATE(4204), 1, + STATE(4863), 1, sym__select_or_group_clause, - STATE(6242), 1, + STATE(6269), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730802,7 +730842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253843] = 24, + [253848] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730833,22 +730873,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9364), 1, + ACTIONS(9384), 1, anon_sym_group, - ACTIONS(9366), 1, + ACTIONS(9386), 1, anon_sym_select, - STATE(3147), 1, + STATE(3156), 1, sym__query_body, - STATE(4272), 1, + STATE(5692), 1, sym__select_or_group_clause, - STATE(6270), 1, + STATE(6243), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730864,7 +730904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253929] = 24, + [253934] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730895,22 +730935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9368), 1, + ACTIONS(9320), 1, anon_sym_group, - ACTIONS(9370), 1, + ACTIONS(9322), 1, anon_sym_select, - STATE(3035), 1, + STATE(3083), 1, sym__query_body, - STATE(5543), 1, + STATE(4181), 1, sym__select_or_group_clause, - STATE(6264), 1, + STATE(6266), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730926,7 +730966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254015] = 24, + [254020] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730957,22 +730997,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9344), 1, + ACTIONS(9372), 1, anon_sym_group, - ACTIONS(9346), 1, + ACTIONS(9374), 1, anon_sym_select, - STATE(3147), 1, + STATE(3289), 1, sym__query_body, - STATE(4819), 1, + STATE(5116), 1, sym__select_or_group_clause, - STATE(6268), 1, + STATE(6245), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -730988,7 +731028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254101] = 24, + [254106] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731019,22 +731059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9332), 1, + ACTIONS(9352), 1, anon_sym_group, - ACTIONS(9334), 1, + ACTIONS(9354), 1, anon_sym_select, - STATE(3380), 1, + STATE(3416), 1, sym__query_body, - STATE(5133), 1, + STATE(5152), 1, sym__select_or_group_clause, - STATE(6246), 1, + STATE(6292), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731050,7 +731090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254187] = 24, + [254192] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731081,22 +731121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9308), 1, + ACTIONS(9384), 1, anon_sym_group, - ACTIONS(9310), 1, + ACTIONS(9386), 1, anon_sym_select, - STATE(3380), 1, + STATE(3083), 1, sym__query_body, - STATE(4821), 1, + STATE(5692), 1, sym__select_or_group_clause, - STATE(6255), 1, + STATE(6243), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731112,7 +731152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254273] = 24, + [254278] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731143,22 +731183,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9348), 1, + ACTIONS(9308), 1, anon_sym_group, - ACTIONS(9350), 1, + ACTIONS(9310), 1, anon_sym_select, - STATE(3429), 1, + STATE(3416), 1, sym__query_body, - STATE(5152), 1, + STATE(4821), 1, sym__select_or_group_clause, - STATE(6257), 1, + STATE(6289), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731174,7 +731214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254359] = 24, + [254364] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731205,22 +731245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9312), 1, + ACTIONS(9300), 1, anon_sym_group, - ACTIONS(9314), 1, + ACTIONS(9302), 1, anon_sym_select, - STATE(3380), 1, + STATE(3416), 1, sym__query_body, - STATE(4860), 1, + STATE(5133), 1, sym__select_or_group_clause, - STATE(6256), 1, + STATE(6265), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731236,7 +731276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254445] = 24, + [254450] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731267,22 +731307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9384), 1, + ACTIONS(9312), 1, anon_sym_group, - ACTIONS(9386), 1, + ACTIONS(9314), 1, anon_sym_select, - STATE(3429), 1, + STATE(3083), 1, sym__query_body, - STATE(5122), 1, + STATE(4155), 1, sym__select_or_group_clause, - STATE(6275), 1, + STATE(6268), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731298,7 +731338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254531] = 24, + [254536] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731329,22 +731369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9384), 1, + ACTIONS(9348), 1, anon_sym_group, - ACTIONS(9386), 1, + ACTIONS(9350), 1, anon_sym_select, - STATE(3380), 1, + STATE(3083), 1, sym__query_body, - STATE(5122), 1, + STATE(4259), 1, sym__select_or_group_clause, - STATE(6275), 1, + STATE(6264), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731360,7 +731400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254617] = 23, + [254622] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731391,20 +731431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9312), 1, + ACTIONS(9368), 1, anon_sym_group, - ACTIONS(9314), 1, + ACTIONS(9370), 1, anon_sym_select, - STATE(3320), 1, + STATE(5703), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731420,7 +731460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254700] = 23, + [254705] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731455,16 +731495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9338), 1, anon_sym_select, - STATE(3101), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731480,7 +731520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254783] = 23, + [254788] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731515,16 +731555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9362), 1, anon_sym_select, - STATE(3020), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6252), 1, + STATE(6302), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731540,7 +731580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254866] = 23, + [254871] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731571,20 +731611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9328), 1, + ACTIONS(9356), 1, anon_sym_group, - ACTIONS(9330), 1, + ACTIONS(9358), 1, anon_sym_select, - STATE(4184), 1, + STATE(4366), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731600,7 +731640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254949] = 23, + [254954] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731631,20 +731671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9356), 1, + ACTIONS(9384), 1, anon_sym_group, - ACTIONS(9358), 1, + ACTIONS(9386), 1, anon_sym_select, - STATE(3101), 1, + STATE(5673), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731660,7 +731700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255032] = 23, + [255037] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731691,20 +731731,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9380), 1, + ACTIONS(9320), 1, anon_sym_group, - ACTIONS(9382), 1, + ACTIONS(9322), 1, anon_sym_select, - STATE(3728), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731720,7 +731760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255115] = 23, + [255120] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731751,20 +731791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9308), 1, + ACTIONS(9372), 1, anon_sym_group, - ACTIONS(9310), 1, + ACTIONS(9374), 1, anon_sym_select, - STATE(3320), 1, + STATE(5118), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731780,7 +731820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255198] = 23, + [255203] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731811,20 +731851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9332), 1, + ACTIONS(9304), 1, anon_sym_group, - ACTIONS(9334), 1, + ACTIONS(9306), 1, anon_sym_select, - STATE(5135), 1, + STATE(4684), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731840,7 +731880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255281] = 23, + [255286] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731871,20 +731911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9300), 1, + ACTIONS(9332), 1, anon_sym_group, - ACTIONS(9302), 1, + ACTIONS(9334), 1, anon_sym_select, - STATE(3320), 1, + STATE(4063), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731900,7 +731940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255364] = 23, + [255369] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731931,20 +731971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9324), 1, + ACTIONS(9316), 1, anon_sym_group, - ACTIONS(9326), 1, + ACTIONS(9318), 1, anon_sym_select, - STATE(4115), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -731960,7 +732000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255447] = 23, + [255452] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731991,20 +732031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9324), 1, + ACTIONS(9340), 1, anon_sym_group, - ACTIONS(9326), 1, + ACTIONS(9342), 1, anon_sym_select, - STATE(3020), 1, + STATE(4722), 1, sym__select_or_group_clause, - STATE(6250), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732020,7 +732060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255530] = 23, + [255535] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732051,20 +732091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9324), 1, + ACTIONS(9340), 1, anon_sym_group, - ACTIONS(9326), 1, + ACTIONS(9342), 1, anon_sym_select, - STATE(3101), 1, + STATE(4930), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732080,7 +732120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255613] = 23, + [255618] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732111,20 +732151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9344), 1, + ACTIONS(9308), 1, anon_sym_group, - ACTIONS(9346), 1, + ACTIONS(9310), 1, anon_sym_select, - STATE(3101), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732140,7 +732180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255696] = 23, + [255701] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732171,20 +732211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9360), 1, + ACTIONS(9304), 1, anon_sym_group, - ACTIONS(9362), 1, + ACTIONS(9306), 1, anon_sym_select, - STATE(3101), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6287), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732200,7 +732240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255779] = 23, + [255784] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732231,20 +732271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9352), 1, + ACTIONS(9328), 1, anon_sym_group, - ACTIONS(9354), 1, + ACTIONS(9330), 1, anon_sym_select, - STATE(5117), 1, + STATE(5660), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732260,7 +732300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255862] = 23, + [255867] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732291,20 +732331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9316), 1, + ACTIONS(9360), 1, anon_sym_group, - ACTIONS(9318), 1, + ACTIONS(9362), 1, anon_sym_select, - STATE(4357), 1, + STATE(5514), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732320,7 +732360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255945] = 23, + [255950] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732351,20 +732391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9308), 1, + ACTIONS(9332), 1, anon_sym_group, - ACTIONS(9310), 1, + ACTIONS(9334), 1, anon_sym_select, - STATE(4823), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6261), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732380,7 +732420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256028] = 23, + [256033] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732411,20 +732451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9312), 1, + ACTIONS(9348), 1, anon_sym_group, - ACTIONS(9314), 1, + ACTIONS(9350), 1, anon_sym_select, - STATE(4862), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6294), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732440,7 +732480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256111] = 23, + [256116] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732471,20 +732511,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9348), 1, + ACTIONS(9344), 1, anon_sym_group, - ACTIONS(9350), 1, + ACTIONS(9346), 1, anon_sym_select, - STATE(5155), 1, + STATE(3781), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732500,7 +732540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256194] = 23, + [256199] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732531,20 +732571,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9348), 1, + ACTIONS(9344), 1, anon_sym_group, - ACTIONS(9350), 1, + ACTIONS(9346), 1, anon_sym_select, - STATE(3319), 1, + STATE(3996), 1, sym__select_or_group_clause, - STATE(6259), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732560,7 +732600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256277] = 23, + [256282] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732591,20 +732631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9348), 1, + ACTIONS(9300), 1, anon_sym_group, - ACTIONS(9350), 1, + ACTIONS(9302), 1, anon_sym_select, - STATE(3320), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6286), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732620,7 +732660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256360] = 23, + [256365] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732651,20 +732691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9372), 1, + ACTIONS(9308), 1, anon_sym_group, - ACTIONS(9374), 1, + ACTIONS(9310), 1, anon_sym_select, - STATE(4721), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6251), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732680,7 +732720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256443] = 23, + [256448] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732711,20 +732751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9372), 1, + ACTIONS(9332), 1, anon_sym_group, - ACTIONS(9374), 1, + ACTIONS(9334), 1, anon_sym_select, - STATE(4714), 1, + STATE(3340), 1, sym__select_or_group_clause, - STATE(6260), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732740,7 +732780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256526] = 23, + [256531] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732771,20 +732811,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9340), 1, + ACTIONS(9336), 1, anon_sym_group, - ACTIONS(9342), 1, + ACTIONS(9338), 1, anon_sym_select, - STATE(4027), 1, + STATE(5128), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732800,7 +732840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256609] = 23, + [256614] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732831,20 +732871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9380), 1, + ACTIONS(9328), 1, anon_sym_group, - ACTIONS(9382), 1, + ACTIONS(9330), 1, anon_sym_select, - STATE(3737), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6267), 1, + STATE(6280), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732860,7 +732900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256692] = 23, + [256697] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732891,20 +732931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9368), 1, + ACTIONS(9348), 1, anon_sym_group, - ACTIONS(9370), 1, + ACTIONS(9350), 1, anon_sym_select, - STATE(5702), 1, + STATE(4268), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732920,7 +732960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256775] = 23, + [256780] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732951,20 +732991,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9372), 1, + ACTIONS(9300), 1, anon_sym_group, - ACTIONS(9374), 1, + ACTIONS(9302), 1, anon_sym_select, - STATE(4931), 1, + STATE(5135), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -732980,7 +733020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256858] = 23, + [256863] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733011,20 +733051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9364), 1, + ACTIONS(9320), 1, anon_sym_group, - ACTIONS(9366), 1, + ACTIONS(9322), 1, anon_sym_select, - STATE(3020), 1, + STATE(4197), 1, sym__select_or_group_clause, - STATE(6276), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733040,7 +733080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256941] = 23, + [256946] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733071,20 +733111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9380), 1, + ACTIONS(9356), 1, anon_sym_group, - ACTIONS(9382), 1, + ACTIONS(9358), 1, anon_sym_select, - STATE(3773), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733100,7 +733140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257024] = 23, + [257029] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733131,20 +733171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9344), 1, + ACTIONS(9312), 1, anon_sym_group, - ACTIONS(9346), 1, + ACTIONS(9314), 1, anon_sym_select, - STATE(4680), 1, + STATE(4148), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733160,7 +733200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257107] = 23, + [257112] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733191,20 +733231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9340), 1, + ACTIONS(9376), 1, anon_sym_group, - ACTIONS(9342), 1, + ACTIONS(9378), 1, anon_sym_select, - STATE(3773), 1, + STATE(4865), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733220,7 +733260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257190] = 23, + [257195] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733251,20 +733291,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9364), 1, + ACTIONS(9344), 1, anon_sym_group, - ACTIONS(9366), 1, + ACTIONS(9346), 1, anon_sym_select, - STATE(4254), 1, + STATE(3887), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6257), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733280,7 +733320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257273] = 23, + [257278] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733315,16 +733355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9370), 1, anon_sym_select, - STATE(3020), 1, + STATE(3079), 1, sym__select_or_group_clause, STATE(6272), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733340,7 +733380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257356] = 23, + [257361] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733375,16 +733415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9370), 1, anon_sym_select, - STATE(3101), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733400,7 +733440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257439] = 23, + [257444] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733431,20 +733471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9376), 1, + ACTIONS(9320), 1, anon_sym_group, - ACTIONS(9378), 1, + ACTIONS(9322), 1, anon_sym_select, - STATE(4519), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6244), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733460,7 +733500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257522] = 23, + [257527] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733491,20 +733531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9304), 1, + ACTIONS(9376), 1, anon_sym_group, - ACTIONS(9306), 1, + ACTIONS(9378), 1, anon_sym_select, - STATE(5654), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733520,7 +733560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257605] = 23, + [257610] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733551,20 +733591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9384), 1, + ACTIONS(9372), 1, anon_sym_group, - ACTIONS(9386), 1, + ACTIONS(9374), 1, anon_sym_select, - STATE(5124), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6281), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733580,7 +733620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257688] = 23, + [257693] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733611,20 +733651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9364), 1, + ACTIONS(9312), 1, anon_sym_group, - ACTIONS(9366), 1, + ACTIONS(9314), 1, anon_sym_select, - STATE(3101), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6279), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733640,7 +733680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257771] = 23, + [257776] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733671,20 +733711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9376), 1, + ACTIONS(9356), 1, anon_sym_group, - ACTIONS(9378), 1, + ACTIONS(9358), 1, anon_sym_select, - STATE(4714), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6281), 1, + STATE(6267), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733700,7 +733740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257854] = 23, + [257859] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733731,20 +733771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9300), 1, + ACTIONS(9380), 1, anon_sym_group, - ACTIONS(9302), 1, + ACTIONS(9382), 1, anon_sym_select, - STATE(4089), 1, + STATE(4524), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733760,7 +733800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257937] = 23, + [257942] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733791,20 +733831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9320), 1, + ACTIONS(9312), 1, anon_sym_group, - ACTIONS(9322), 1, + ACTIONS(9314), 1, anon_sym_select, - STATE(3320), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733820,7 +733860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258020] = 23, + [258025] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733851,20 +733891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9336), 1, + ACTIONS(9328), 1, anon_sym_group, - ACTIONS(9338), 1, + ACTIONS(9330), 1, anon_sym_select, - STATE(5523), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733880,7 +733920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258103] = 23, + [258108] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733911,20 +733951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9376), 1, + ACTIONS(9372), 1, anon_sym_group, - ACTIONS(9378), 1, + ACTIONS(9374), 1, anon_sym_select, - STATE(4721), 1, + STATE(3340), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(4640), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -733940,7 +733980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258186] = 23, + [258191] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733971,20 +734011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9340), 1, + ACTIONS(9316), 1, anon_sym_group, - ACTIONS(9342), 1, + ACTIONS(9318), 1, anon_sym_select, - STATE(3737), 1, + STATE(5123), 1, sym__select_or_group_clause, - STATE(6269), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3937), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734000,7 +734040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258269] = 23, + [258274] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734031,20 +734071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9316), 1, + ACTIONS(9380), 1, anon_sym_group, - ACTIONS(9318), 1, + ACTIONS(9382), 1, anon_sym_select, - STATE(3319), 1, + STATE(4715), 1, sym__select_or_group_clause, - STATE(6288), 1, + STATE(6284), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734060,7 +734100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258352] = 23, + [258357] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734091,20 +734131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9328), 1, + ACTIONS(9380), 1, anon_sym_group, - ACTIONS(9330), 1, + ACTIONS(9382), 1, anon_sym_select, - STATE(3020), 1, + STATE(4722), 1, sym__select_or_group_clause, - STATE(6303), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734120,7 +734160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258435] = 23, + [258440] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734151,20 +734191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9384), 1, + ACTIONS(9340), 1, anon_sym_group, - ACTIONS(9386), 1, + ACTIONS(9342), 1, anon_sym_select, - STATE(3319), 1, + STATE(4715), 1, sym__select_or_group_clause, - STATE(6290), 1, + STATE(6249), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(4642), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734180,7 +734220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258518] = 23, + [258523] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734211,20 +734251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9304), 1, + ACTIONS(9300), 1, anon_sym_group, - ACTIONS(9306), 1, + ACTIONS(9302), 1, anon_sym_select, - STATE(3020), 1, + STATE(3340), 1, sym__select_or_group_clause, - STATE(6287), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734240,7 +734280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258601] = 23, + [258606] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734275,16 +734315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, ACTIONS(9306), 1, anon_sym_select, - STATE(3101), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734300,7 +734340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258684] = 23, + [258689] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734331,20 +734371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9316), 1, + ACTIONS(9336), 1, anon_sym_group, - ACTIONS(9318), 1, + ACTIONS(9338), 1, anon_sym_select, - STATE(3320), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6240), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734360,7 +734400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258767] = 23, + [258772] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734391,20 +734431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9332), 1, + ACTIONS(9308), 1, anon_sym_group, - ACTIONS(9334), 1, + ACTIONS(9310), 1, anon_sym_select, - STATE(3319), 1, + STATE(4823), 1, sym__select_or_group_clause, - STATE(6294), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734420,7 +734460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258850] = 23, + [258855] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734451,20 +734491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9384), 1, + ACTIONS(9316), 1, anon_sym_group, - ACTIONS(9386), 1, + ACTIONS(9318), 1, anon_sym_select, - STATE(3320), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6248), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734480,7 +734520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258933] = 23, + [258938] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734511,20 +734551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9352), 1, + ACTIONS(9364), 1, anon_sym_group, - ACTIONS(9354), 1, + ACTIONS(9366), 1, anon_sym_select, - STATE(3319), 1, + STATE(3700), 1, sym__select_or_group_clause, - STATE(6296), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734540,7 +734580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259016] = 23, + [259021] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734571,20 +734611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9312), 1, + ACTIONS(9352), 1, anon_sym_group, - ACTIONS(9314), 1, + ACTIONS(9354), 1, anon_sym_select, - STATE(3319), 1, + STATE(5155), 1, sym__select_or_group_clause, - STATE(6239), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734600,7 +734640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259099] = 23, + [259104] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734631,20 +734671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9360), 1, + ACTIONS(9324), 1, anon_sym_group, - ACTIONS(9362), 1, + ACTIONS(9326), 1, anon_sym_select, - STATE(5670), 1, + STATE(5682), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734660,7 +734700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259182] = 23, + [259187] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734691,20 +734731,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9332), 1, + ACTIONS(9348), 1, anon_sym_group, - ACTIONS(9334), 1, + ACTIONS(9350), 1, anon_sym_select, - STATE(3320), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734720,7 +734760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259265] = 23, + [259270] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734751,20 +734791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9344), 1, + ACTIONS(9364), 1, anon_sym_group, - ACTIONS(9346), 1, + ACTIONS(9366), 1, anon_sym_select, - STATE(3020), 1, + STATE(3887), 1, sym__select_or_group_clause, - STATE(6251), 1, + STATE(6301), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734780,7 +734820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259348] = 23, + [259353] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734811,20 +734851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9352), 1, + ACTIONS(9324), 1, anon_sym_group, - ACTIONS(9354), 1, + ACTIONS(9326), 1, anon_sym_select, - STATE(3320), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6308), 1, + STATE(6297), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734840,7 +734880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259431] = 23, + [259436] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734871,20 +734911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9356), 1, + ACTIONS(9324), 1, anon_sym_group, - ACTIONS(9358), 1, + ACTIONS(9326), 1, anon_sym_select, - STATE(5661), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734900,7 +734940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259514] = 23, + [259519] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734931,20 +734971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9320), 1, + ACTIONS(9352), 1, anon_sym_group, - ACTIONS(9322), 1, + ACTIONS(9354), 1, anon_sym_select, - STATE(3319), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6279), 1, + STATE(6299), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -734960,7 +735000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259597] = 23, + [259602] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734991,20 +735031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9300), 1, + ACTIONS(9352), 1, anon_sym_group, - ACTIONS(9302), 1, + ACTIONS(9354), 1, anon_sym_select, - STATE(3319), 1, + STATE(3340), 1, sym__select_or_group_clause, - STATE(6247), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735020,7 +735060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259680] = 23, + [259685] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735051,20 +735091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_group, - ACTIONS(9338), 1, + ACTIONS(9386), 1, anon_sym_select, - STATE(3020), 1, + STATE(3079), 1, sym__select_or_group_clause, - STATE(6240), 1, + STATE(6303), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735080,7 +735120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259763] = 23, + [259768] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735111,20 +735151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9356), 1, + ACTIONS(9364), 1, anon_sym_group, - ACTIONS(9358), 1, + ACTIONS(9366), 1, anon_sym_select, - STATE(3020), 1, + STATE(3781), 1, sym__select_or_group_clause, - STATE(6243), 1, + STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3884), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735140,7 +735180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259846] = 23, + [259851] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735171,20 +735211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9320), 1, + ACTIONS(9360), 1, anon_sym_group, - ACTIONS(9322), 1, + ACTIONS(9362), 1, anon_sym_select, - STATE(5130), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735200,7 +735240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259929] = 23, + [259934] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735231,20 +735271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9328), 1, + ACTIONS(9384), 1, anon_sym_group, - ACTIONS(9330), 1, + ACTIONS(9386), 1, anon_sym_select, - STATE(3101), 1, + STATE(3047), 1, sym__select_or_group_clause, STATE(6308), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3058), 2, + STATE(3001), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735260,7 +735300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260012] = 23, + [260017] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735291,20 +735331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9298), 1, anon_sym_orderby, - ACTIONS(9308), 1, + ACTIONS(9376), 1, anon_sym_group, - ACTIONS(9310), 1, + ACTIONS(9378), 1, anon_sym_select, - STATE(3319), 1, + STATE(3291), 1, sym__select_or_group_clause, - STATE(6245), 1, + STATE(6274), 1, aux_sym__query_body_repeat1, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, - STATE(3351), 2, + STATE(3356), 2, sym_group_clause, sym_select_clause, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735320,7 +735360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260095] = 26, + [260100] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735341,11 +735381,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(7022), 1, + ACTIONS(7047), 1, anon_sym_COLON_COLON, ACTIONS(8962), 1, anon_sym_LPAREN, @@ -735357,17 +735397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9396), 1, anon_sym_EQ_GT, - STATE(2186), 1, + STATE(2184), 1, sym_type_argument_list, - STATE(2670), 1, + STATE(2669), 1, sym_accessor_list, - STATE(6375), 1, + STATE(6360), 1, sym_parameter_list, - STATE(6983), 1, + STATE(7104), 1, sym_bracketed_argument_list, - STATE(7226), 1, + STATE(7309), 1, sym_type_parameter_list, - STATE(7438), 1, + STATE(7571), 1, sym_arrow_expression_clause, ACTIONS(9388), 2, anon_sym_SEMI, @@ -735382,7 +735422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260183] = 26, + [260188] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735403,11 +735443,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(7022), 1, + ACTIONS(7047), 1, anon_sym_COLON_COLON, ACTIONS(8962), 1, anon_sym_LPAREN, @@ -735419,17 +735459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9396), 1, anon_sym_EQ_GT, - STATE(2186), 1, + STATE(2184), 1, sym_type_argument_list, - STATE(2677), 1, + STATE(2684), 1, sym_accessor_list, - STATE(6381), 1, + STATE(6350), 1, sym_parameter_list, - STATE(6983), 1, + STATE(7104), 1, sym_bracketed_argument_list, - STATE(7227), 1, + STATE(7278), 1, sym_type_parameter_list, - STATE(7495), 1, + STATE(7641), 1, sym_arrow_expression_clause, ACTIONS(9388), 2, anon_sym_SEMI, @@ -735444,7 +735484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260271] = 26, + [260276] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735465,11 +735505,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3680), 1, anon_sym_DOT, - ACTIONS(5629), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(7022), 1, + ACTIONS(7047), 1, anon_sym_COLON_COLON, ACTIONS(8962), 1, anon_sym_LPAREN, @@ -735481,17 +735521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9396), 1, anon_sym_EQ_GT, - STATE(2186), 1, + STATE(2184), 1, sym_type_argument_list, - STATE(2682), 1, + STATE(2651), 1, sym_accessor_list, - STATE(6360), 1, + STATE(6369), 1, sym_parameter_list, - STATE(6983), 1, + STATE(7104), 1, sym_bracketed_argument_list, - STATE(7126), 1, + STATE(7107), 1, sym_type_parameter_list, - STATE(7349), 1, + STATE(7797), 1, sym_arrow_expression_clause, ACTIONS(9388), 2, anon_sym_SEMI, @@ -735506,7 +735546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260359] = 19, + [260364] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735537,12 +735577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(9410), 1, anon_sym_orderby, - STATE(6407), 1, + STATE(6399), 1, sym__query_clause, ACTIONS(9413), 2, anon_sym_group, anon_sym_select, - STATE(6403), 5, + STATE(6427), 5, sym_from_clause, sym_join_clause, sym_let_clause, @@ -735559,7 +735599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat1, - [260431] = 16, + [260436] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735580,15 +735620,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3680), 1, + ACTIONS(3678), 1, anon_sym_COLON, ACTIONS(9415), 1, anon_sym_LT, ACTIONS(9418), 1, anon_sym_COLON_COLON, - STATE(4163), 1, + STATE(4127), 1, sym_type_argument_list, - ACTIONS(3682), 9, + ACTIONS(3680), 9, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -735608,585 +735648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260496] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6316), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6647), 1, - sym_record_base, - STATE(6648), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9420), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6310), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260570] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6324), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6638), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9428), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6492), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6311), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260642] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6362), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6528), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6530), 1, - sym_record_base, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9432), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6312), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260716] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6312), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6529), 1, - sym_record_base, - STATE(6531), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9434), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6313), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260790] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6328), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6525), 1, - sym_record_base, - STATE(6526), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9436), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6314), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260864] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6320), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6552), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9438), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6492), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6315), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [260936] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6362), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6686), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6687), 1, - sym_record_base, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9440), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6316), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [261010] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6341), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6636), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9442), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6492), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6317), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [261082] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6331), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6662), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9444), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6492), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6318), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [261154] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9422), 1, - anon_sym_COLON, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6325), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6556), 1, - sym_record_base, - STATE(6557), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9446), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6319), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [261228] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6341), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9448), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6492), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6320), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [261300] = 20, + [260501] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736209,26 +735671,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6329), 1, + STATE(6321), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6592), 1, + STATE(6611), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9450), 2, + ACTIONS(9420), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6321), 9, + STATE(6310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736238,7 +735700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261372] = 20, + [260573] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736261,26 +735723,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6341), 1, + STATE(6313), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6656), 1, + STATE(6643), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9452), 2, + ACTIONS(9428), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6322), 9, + STATE(6311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736290,7 +735752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261444] = 20, + [260645] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736317,22 +735779,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, + ACTIONS(9432), 1, anon_sym_COLON, - STATE(6317), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6560), 1, + STATE(6361), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6557), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6558), 1, + sym_record_base, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9454), 2, + ACTIONS(9430), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6469), 2, sym_type_parameter_list, - sym_base_list, sym_parameter_list, - STATE(6323), 9, + STATE(6312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736342,7 +735805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261516] = 20, + [260719] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736365,26 +735828,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6341), 1, + STATE(6339), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6653), 1, + STATE(6684), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9456), 2, + ACTIONS(9434), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6324), 9, + STATE(6313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736394,7 +735857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261588] = 21, + [260791] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736423,21 +735886,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - STATE(6362), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6634), 1, + STATE(6339), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6622), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6635), 1, - sym_record_base, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9458), 2, + ACTIONS(9436), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6488), 2, + STATE(6470), 3, sym_type_parameter_list, + sym_base_list, sym_parameter_list, - STATE(6325), 9, + STATE(6314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736447,7 +735909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261662] = 14, + [260863] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736468,11 +735930,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9415), 1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, anon_sym_LT, - STATE(4163), 1, - sym_type_argument_list, - STATE(6326), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9432), 1, + anon_sym_COLON, + STATE(6312), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6559), 1, + sym_record_base, + STATE(6569), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9438), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6469), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736482,18 +735962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3682), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - [261722] = 14, + [260937] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736514,22 +735983,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_COLON, - ACTIONS(3459), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3628), 6, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(8962), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, anon_sym_LT, + ACTIONS(9426), 1, anon_sym_where, - STATE(6327), 9, + STATE(6339), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6636), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9440), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736539,7 +736014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261782] = 21, + [261009] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736568,21 +736043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - STATE(6362), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6547), 1, + STATE(6314), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6571), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6548), 1, - sym_record_base, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9460), 2, + ACTIONS(9442), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6488), 2, + STATE(6470), 3, sym_type_parameter_list, + sym_base_list, sym_parameter_list, - STATE(6328), 9, + STATE(6317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736592,7 +736066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261856] = 20, + [261081] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736619,22 +736093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, + ACTIONS(9432), 1, anon_sym_COLON, - STATE(6341), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6674), 1, + STATE(6361), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6524), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6526), 1, + sym_record_base, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9462), 2, + ACTIONS(9444), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6469), 2, sym_type_parameter_list, - sym_base_list, sym_parameter_list, - STATE(6329), 9, + STATE(6318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736644,7 +736119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261928] = 20, + [261155] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736671,22 +736146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, + ACTIONS(9432), 1, anon_sym_COLON, - STATE(6332), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6663), 1, + STATE(6331), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6624), 1, + sym_record_base, + STATE(6631), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9464), 2, + ACTIONS(9446), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6469), 2, sym_type_parameter_list, - sym_base_list, sym_parameter_list, - STATE(6330), 9, + STATE(6319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736696,7 +736172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262000] = 20, + [261229] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736723,22 +736199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, + ACTIONS(9432), 1, anon_sym_COLON, - STATE(6341), 1, - aux_sym__class_declaration_initializer_repeat3, + STATE(6318), 1, + aux_sym__record_declaration_initializer_repeat1, STATE(6551), 1, + sym_record_base, + STATE(6552), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9466), 2, + ACTIONS(9448), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6469), 2, sym_type_parameter_list, - sym_base_list, sym_parameter_list, - STATE(6331), 9, + STATE(6320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736748,7 +736225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262072] = 20, + [261303] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736771,26 +736248,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6341), 1, + STATE(6339), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6539), 1, + STATE(6668), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9468), 2, + ACTIONS(9450), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6332), 9, + STATE(6321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736800,7 +736277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262144] = 20, + [261375] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736823,26 +736300,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9430), 1, - anon_sym_COLON, - STATE(6322), 1, + STATE(6339), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6587), 1, + STATE(6582), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9470), 2, + ACTIONS(9452), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6333), 9, + STATE(6322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736852,7 +736329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262216] = 22, + [261447] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736873,29 +736350,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, - anon_sym_DOT, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(7014), 1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9388), 1, - anon_sym_COMMA, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9472), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6339), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6610), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9454), 2, anon_sym_SEMI, - ACTIONS(9475), 1, - anon_sym_EQ, - STATE(2186), 1, - sym_type_argument_list, - STATE(2799), 1, - sym_accessor_list, - STATE(6983), 1, - sym_bracketed_argument_list, - STATE(6334), 9, + anon_sym_LBRACE, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736905,7 +736381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262291] = 22, + [261519] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736926,29 +736402,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, - anon_sym_DOT, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(7014), 1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9388), 1, - anon_sym_COMMA, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_EQ, - ACTIONS(9477), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6339), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6606), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9456), 2, anon_sym_SEMI, - STATE(2186), 1, - sym_type_argument_list, - STATE(2763), 1, - sym_accessor_list, - STATE(6983), 1, - sym_bracketed_argument_list, - STATE(6335), 9, + anon_sym_LBRACE, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736958,7 +736433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262366] = 22, + [261591] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736979,29 +736454,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3682), 1, - anon_sym_DOT, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(7014), 1, + ACTIONS(9415), 1, anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9388), 1, - anon_sym_COMMA, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_EQ, - ACTIONS(9480), 1, - anon_sym_SEMI, - STATE(2186), 1, + STATE(4127), 1, sym_type_argument_list, - STATE(2731), 1, - sym_accessor_list, - STATE(6983), 1, - sym_bracketed_argument_list, - STATE(6336), 9, + STATE(6325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737011,54 +736468,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262441] = 16, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9483), 1, - anon_sym_DOT, - ACTIONS(4058), 7, + ACTIONS(3680), 10, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LT, anon_sym_where, - STATE(6337), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [262504] = 13, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + [261651] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737079,20 +736500,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 5, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, + anon_sym_LT, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6322), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6564), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9458), 2, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - ACTIONS(3459), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(6338), 9, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737102,7 +736531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262561] = 16, + [261723] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737123,22 +736552,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_COLON, - ACTIONS(9488), 1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, anon_sym_LT, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 6, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9432), 1, + anon_sym_COLON, + STATE(6361), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6608), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6609), 1, + sym_record_base, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9460), 2, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_where, - anon_sym_DOT, - STATE(6339), 9, + STATE(6469), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737148,7 +736584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262623] = 20, + [261797] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737169,26 +736605,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(5629), 1, - anon_sym_LBRACK, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9390), 1, - anon_sym_EQ, + ACTIONS(9422), 1, + anon_sym_COLON, ACTIONS(9424), 1, anon_sym_LT, - STATE(6697), 1, - sym_parameter_list, - STATE(6983), 1, - sym_bracketed_argument_list, - STATE(7195), 1, - sym_type_parameter_list, - ACTIONS(9388), 2, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6316), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6616), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9462), 2, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6340), 9, + anon_sym_LBRACE, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737198,7 +736636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262693] = 16, + [261869] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737219,21 +736657,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9495), 1, - anon_sym_COLON, - ACTIONS(9498), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9501), 1, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, anon_sym_LT, - ACTIONS(9493), 3, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6324), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6688), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9464), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6492), 3, + STATE(6470), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6341), 10, + STATE(6329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737243,8 +736688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat3, - [262755] = 20, + [261941] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737265,25 +736709,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2778), 1, - sym__function_body, - STATE(6352), 1, + ACTIONS(9432), 1, + anon_sym_COLON, + STATE(6327), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6540), 1, + sym_record_base, + STATE(6543), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6342), 9, + ACTIONS(9466), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6469), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737293,7 +736741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262824] = 16, + [262015] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737314,21 +736762,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(6356), 1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, anon_sym_LT, - STATE(4163), 1, - sym_type_argument_list, - ACTIONS(9508), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3682), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6343), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9432), 1, + anon_sym_COLON, + STATE(6361), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6666), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6667), 1, + sym_record_base, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9468), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6469), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737338,7 +736794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262885] = 20, + [262089] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737359,25 +736815,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9422), 1, + anon_sym_COLON, + ACTIONS(9424), 1, + anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2786), 1, - sym__function_body, - STATE(6351), 1, + STATE(6323), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6546), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6344), 9, + ACTIONS(9470), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737387,7 +736846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262954] = 20, + [262161] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737408,25 +736867,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(3633), 1, + anon_sym_COLON, + ACTIONS(3459), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(3630), 6, anon_sym_SEMI, - ACTIONS(9506), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2740), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6345), 9, + anon_sym_LT, + anon_sym_where, + STATE(6333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737436,7 +736892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263023] = 20, + [262221] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737457,25 +736913,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, + ACTIONS(3680), 1, + anon_sym_DOT, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6929), 1, + anon_sym_LT, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9388), 1, + anon_sym_COMMA, + ACTIONS(9392), 1, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2779), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6346), 9, + ACTIONS(9472), 1, + anon_sym_SEMI, + ACTIONS(9475), 1, + anon_sym_EQ, + STATE(2184), 1, + sym_type_argument_list, + STATE(2687), 1, + sym_accessor_list, + STATE(7104), 1, + sym_bracketed_argument_list, + STATE(6334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737485,7 +736945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263092] = 20, + [262296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737506,25 +736966,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, + ACTIONS(9477), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9511), 1, - anon_sym_SEMI, - STATE(1967), 1, - sym__function_body, - STATE(1991), 1, - sym_block, - STATE(6353), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7735), 1, - sym_arrow_expression_clause, - STATE(6347), 9, + anon_sym_EQ_GT, + ACTIONS(3459), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(6335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737534,7 +736989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263161] = 20, + [262353] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737555,25 +737010,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9480), 1, + anon_sym_DOT, + ACTIONS(4024), 7, anon_sym_SEMI, - ACTIONS(9506), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2791), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6348), 9, + anon_sym_LT, + anon_sym_where, + STATE(6336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737583,7 +737036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263230] = 20, + [262416] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737604,25 +737057,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, + ACTIONS(3680), 1, + anon_sym_DOT, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6929), 1, + anon_sym_LT, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9388), 1, + anon_sym_COMMA, + ACTIONS(9392), 1, anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9513), 1, + ACTIONS(9475), 1, + anon_sym_EQ, + ACTIONS(9482), 1, anon_sym_SEMI, - STATE(2141), 1, - sym_block, - STATE(2143), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7446), 1, - sym_arrow_expression_clause, - STATE(6349), 9, + STATE(2184), 1, + sym_type_argument_list, + STATE(2757), 1, + sym_accessor_list, + STATE(7104), 1, + sym_bracketed_argument_list, + STATE(6337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737632,7 +737089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263299] = 19, + [262491] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737653,24 +737110,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9424), 1, + ACTIONS(3680), 1, + anon_sym_DOT, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(6929), 1, anon_sym_LT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9517), 1, - anon_sym_COLON, - STATE(6405), 1, - sym_type_parameter_list, - STATE(6604), 1, - sym_base_list, - STATE(6606), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9515), 2, - anon_sym_SEMI, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9388), 1, + anon_sym_COMMA, + ACTIONS(9392), 1, anon_sym_LBRACE, - STATE(6350), 9, + ACTIONS(9475), 1, + anon_sym_EQ, + ACTIONS(9485), 1, + anon_sym_SEMI, + STATE(2184), 1, + sym_type_argument_list, + STATE(2803), 1, + sym_accessor_list, + STATE(7104), 1, + sym_bracketed_argument_list, + STATE(6338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737680,7 +737142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263366] = 20, + [262566] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737701,25 +737163,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(9490), 1, + anon_sym_COLON, + ACTIONS(9493), 1, + anon_sym_LPAREN, + ACTIONS(9496), 1, + anon_sym_LT, + ACTIONS(9488), 3, anon_sym_SEMI, - ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2703), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6351), 9, + anon_sym_where, + STATE(6470), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6339), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737729,7 +737187,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263435] = 20, + aux_sym__class_declaration_initializer_repeat3, + [262628] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737750,25 +737209,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(9499), 1, + anon_sym_LT, + ACTIONS(9502), 1, + anon_sym_COLON_COLON, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 6, anon_sym_SEMI, - ACTIONS(9506), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2783), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6352), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737778,7 +737234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263504] = 20, + [262690] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737799,25 +737255,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, + ACTIONS(3691), 1, anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9511), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9390), 1, + anon_sym_EQ, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(6792), 1, + sym_parameter_list, + STATE(7104), 1, + sym_bracketed_argument_list, + STATE(7339), 1, + sym_type_parameter_list, + ACTIONS(9388), 2, anon_sym_SEMI, - STATE(1955), 1, - sym__function_body, - STATE(1991), 1, - sym_block, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7735), 1, - sym_arrow_expression_clause, - STATE(6353), 9, + anon_sym_COMMA, + STATE(6341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737827,7 +737284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263573] = 20, + [262760] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737848,25 +737305,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(9499), 1, + anon_sym_LT, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 7, anon_sym_SEMI, - ACTIONS(9506), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2766), 1, - sym__function_body, - STATE(6346), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6354), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737876,7 +737327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263642] = 20, + [262817] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737905,17 +737356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2768), 1, + STATE(2736), 1, sym__function_body, - STATE(6384), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6355), 9, + STATE(6343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737925,7 +737376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263711] = 20, + [262886] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737946,25 +737397,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, + ACTIONS(9510), 1, + anon_sym_into, + STATE(6404), 1, + sym_join_into_clause, + ACTIONS(9508), 7, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2716), 1, - sym__function_body, - STATE(6380), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6356), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737974,7 +737419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263780] = 20, + [262943] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737995,25 +737440,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(9514), 1, + anon_sym_COMMA, + ACTIONS(9516), 1, + anon_sym_LPAREN, + STATE(6396), 1, + sym_argument_list, + STATE(6397), 1, + aux_sym_base_list_repeat1, + ACTIONS(9512), 5, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, + anon_sym_LT, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - STATE(2615), 1, - sym_block, - STATE(6373), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7311), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6357), 9, + STATE(6345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738023,7 +737464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263849] = 20, + [263004] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738044,25 +737485,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, + ACTIONS(9519), 1, + anon_sym_COMMA, + STATE(6351), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9521), 7, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2755), 1, - sym__function_body, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6358), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738072,7 +737507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263918] = 20, + [263061] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738093,25 +737528,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, + ACTIONS(9424), 1, + anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2700), 1, - sym__function_body, - STATE(6345), 1, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(6414), 1, + sym_type_parameter_list, + STATE(6561), 1, + sym_base_list, + STATE(6562), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6359), 9, + ACTIONS(9523), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738121,7 +737555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263987] = 20, + [263128] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738142,25 +737576,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, + ACTIONS(9424), 1, + anon_sym_LT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2851), 1, - sym__function_body, - STATE(6364), 1, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(6406), 1, + sym_type_parameter_list, + STATE(6590), 1, + sym_base_list, + STATE(6594), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6360), 9, + ACTIONS(9527), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738170,7 +737603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264056] = 19, + [263195] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738191,24 +737624,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9424), 1, - anon_sym_LT, + ACTIONS(9396), 1, + anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9517), 1, - anon_sym_COLON, - STATE(6419), 1, - sym_type_parameter_list, - STATE(6668), 1, - sym_base_list, - STATE(6670), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9519), 2, + ACTIONS(9504), 1, anon_sym_SEMI, + ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(6361), 9, + STATE(2605), 1, + sym_block, + STATE(2785), 1, + sym__function_body, + STATE(6354), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738218,7 +737652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264123] = 15, + [263264] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738239,19 +737673,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9523), 1, - anon_sym_LPAREN, - ACTIONS(9526), 1, - anon_sym_LT, - STATE(6488), 2, - sym_type_parameter_list, - sym_parameter_list, - ACTIONS(9521), 4, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6362), 10, + STATE(2605), 1, + sym_block, + STATE(2807), 1, + sym__function_body, + STATE(6373), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738261,8 +737701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__record_declaration_initializer_repeat1, - [264182] = 20, + [263333] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738283,25 +737722,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, ACTIONS(9529), 1, - anon_sym_SEMI, - STATE(2019), 1, - sym__function_body, - STATE(2063), 1, - sym_block, - STATE(6374), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7444), 1, - sym_arrow_expression_clause, - STATE(6363), 9, + anon_sym_COMMA, + ACTIONS(9532), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6351), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738311,7 +737742,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264251] = 20, + aux_sym_order_by_clause_repeat1, + [263388] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738340,17 +737772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2729), 1, + STATE(2786), 1, sym__function_body, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6364), 9, + STATE(6352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738360,7 +737792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264320] = 14, + [263457] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738381,19 +737813,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9531), 1, - anon_sym_COMMA, - STATE(6367), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9533), 7, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6365), 9, + ACTIONS(9534), 1, + anon_sym_SEMI, + STATE(1968), 1, + sym_block, + STATE(1971), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7731), 1, + sym_arrow_expression_clause, + STATE(6353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738403,7 +737841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264377] = 14, + [263526] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738424,19 +737862,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9537), 1, - anon_sym_into, - STATE(6428), 1, - sym_join_into_clause, - ACTIONS(9535), 7, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6366), 9, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2815), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738446,7 +737890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264434] = 14, + [263595] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738467,19 +737911,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9531), 1, - anon_sym_COMMA, - STATE(6383), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9539), 7, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6367), 9, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2749), 1, + sym__function_body, + STATE(6352), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738489,7 +737939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264491] = 14, + [263664] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738510,19 +737960,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9488), 1, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + ACTIONS(6357), 1, anon_sym_LT, - STATE(2186), 1, + STATE(4127), 1, sym_type_argument_list, - ACTIONS(3682), 7, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(9536), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, + anon_sym_GT, + ACTIONS(3680), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_DOT, - STATE(6368), 9, + STATE(6356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738532,7 +737984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264548] = 20, + [263725] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738561,62 +738013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2774), 1, + STATE(2754), 1, sym__function_body, - STATE(6468), 1, + STATE(6382), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6369), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [264617] = 16, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9543), 1, - anon_sym_COMMA, - ACTIONS(9545), 1, - anon_sym_LPAREN, - STATE(6395), 1, - sym_argument_list, - STATE(6397), 1, - aux_sym_base_list_repeat1, - ACTIONS(9541), 5, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6370), 9, + STATE(6357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738626,7 +738033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264678] = 20, + [263794] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738655,65 +738062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2753), 1, + STATE(2755), 1, sym__function_body, - STATE(6369), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6371), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [264747] = 19, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - ACTIONS(9475), 1, - anon_sym_EQ, - STATE(6771), 1, - sym_parameter_list, - STATE(6983), 1, - sym_bracketed_argument_list, - STATE(7289), 1, - sym_type_parameter_list, - ACTIONS(9388), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6372), 9, + STATE(6358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738723,7 +738082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264814] = 20, + [263863] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738744,25 +738103,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(5322), 1, anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(9539), 1, anon_sym_SEMI, - STATE(2615), 1, + STATE(2027), 1, + sym__function_body, + STATE(2066), 1, sym_block, - STATE(6468), 1, + STATE(6375), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7186), 1, - sym__function_body, - STATE(7351), 1, + STATE(7675), 1, sym_arrow_expression_clause, - STATE(6373), 9, + STATE(6359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738772,7 +738131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264883] = 20, + [263932] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738793,25 +738152,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9529), 1, + ACTIONS(9504), 1, anon_sym_SEMI, - STATE(2063), 1, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, sym_block, - STATE(2067), 1, + STATE(2760), 1, sym__function_body, - STATE(6468), 1, + STATE(6381), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7444), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6374), 9, + STATE(6360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738821,7 +738180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264952] = 20, + [264001] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738842,25 +738201,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9546), 1, + anon_sym_LT, + STATE(6469), 2, + sym_type_parameter_list, + sym_parameter_list, + ACTIONS(9541), 4, anon_sym_SEMI, - ACTIONS(9506), 1, + anon_sym_COLON, anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2872), 1, - sym__function_body, - STATE(6348), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6375), 9, + anon_sym_where, + STATE(6361), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738870,7 +738223,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265021] = 20, + aux_sym__record_declaration_initializer_repeat1, + [264060] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738891,25 +738245,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(5722), 1, + anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9504), 1, + ACTIONS(9549), 1, anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2693), 1, + STATE(2120), 1, sym__function_body, - STATE(6377), 1, + STATE(2139), 1, + sym_block, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7723), 1, sym_arrow_expression_clause, - STATE(6376), 9, + STATE(6362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738919,7 +738273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265090] = 20, + [264129] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738940,25 +738294,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(5638), 1, + anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2702), 1, - sym__function_body, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7332), 1, + sym__function_body, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6377), 9, + STATE(6363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738968,7 +738322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265159] = 20, + [264198] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738989,25 +738343,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9513), 1, + ACTIONS(9534), 1, anon_sym_SEMI, - STATE(2141), 1, + STATE(1968), 1, sym_block, - STATE(2142), 1, + STATE(1974), 1, sym__function_body, - STATE(6349), 1, + STATE(6353), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7446), 1, + STATE(7731), 1, sym_arrow_expression_clause, - STATE(6378), 9, + STATE(6364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739017,7 +738371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265228] = 20, + [264267] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739046,17 +738400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2719), 1, + STATE(2827), 1, sym__function_body, - STATE(6358), 1, + STATE(6379), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6379), 9, + STATE(6365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739066,7 +738420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265297] = 20, + [264336] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739087,25 +738441,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(5638), 1, + anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2754), 1, - sym__function_body, - STATE(6468), 1, + STATE(6363), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7148), 1, + sym__function_body, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6380), 9, + STATE(6366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739115,7 +738469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265366] = 20, + [264405] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739144,17 +738498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2734), 1, + STATE(2828), 1, sym__function_body, - STATE(6385), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6381), 9, + STATE(6367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739164,7 +738518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265435] = 19, + [264474] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739185,24 +738539,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9424), 1, - anon_sym_LT, + ACTIONS(9396), 1, + anon_sym_EQ_GT, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9517), 1, - anon_sym_COLON, - STATE(6404), 1, - sym_type_parameter_list, - STATE(6561), 1, - sym_base_list, - STATE(6562), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9548), 2, + ACTIONS(9504), 1, anon_sym_SEMI, + ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(6382), 9, + STATE(2605), 1, + sym_block, + STATE(2832), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739212,7 +738567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265502] = 13, + [264543] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739233,17 +738588,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9550), 1, - anon_sym_COMMA, - ACTIONS(9553), 7, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6383), 10, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2694), 1, + sym__function_body, + STATE(6358), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739253,8 +738616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_order_by_clause_repeat1, - [265557] = 20, + [264612] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739283,17 +738645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2780), 1, + STATE(2866), 1, sym__function_body, - STATE(6468), 1, + STATE(6383), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6384), 9, + STATE(6370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739303,7 +738665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265626] = 20, + [264681] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739332,17 +738694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2769), 1, + STATE(2882), 1, sym__function_body, - STATE(6468), 1, + STATE(6384), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6385), 9, + STATE(6371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739352,7 +738714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265695] = 13, + [264750] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739373,16 +738735,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9557), 1, - anon_sym_COMMA, - ACTIONS(9555), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9424), 1, anon_sym_LT, + ACTIONS(9426), 1, anon_sym_where, - STATE(6386), 10, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(6420), 1, + sym_type_parameter_list, + STATE(6650), 1, + sym_base_list, + STATE(6664), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9551), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739392,8 +738762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [265749] = 19, + [264817] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739414,23 +738783,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9392), 1, - anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(2663), 1, - sym_accessor_list, - STATE(6376), 1, - sym_parameter_list, - STATE(7153), 1, - sym_type_parameter_list, - STATE(7636), 1, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2883), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6387), 9, + STATE(6373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739440,7 +738811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265815] = 14, + [264886] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739461,18 +738832,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_COMMA, - STATE(6386), 1, - aux_sym_base_list_repeat1, - ACTIONS(9560), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(5722), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - STATE(6388), 9, + ACTIONS(9549), 1, + anon_sym_SEMI, + STATE(2139), 1, + sym_block, + STATE(2142), 1, + sym__function_body, + STATE(6362), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7723), 1, + sym_arrow_expression_clause, + STATE(6374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739482,7 +738860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265871] = 14, + [264955] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739503,18 +738881,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN, - STATE(6414), 1, - sym_argument_list, - ACTIONS(9555), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5322), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - STATE(6389), 9, + ACTIONS(9539), 1, + anon_sym_SEMI, + STATE(2037), 1, + sym__function_body, + STATE(2066), 1, + sym_block, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7675), 1, + sym_arrow_expression_clause, + STATE(6375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739524,7 +738909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265927] = 12, + [265024] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739545,16 +738930,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9565), 8, - anon_sym_COMMA, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6390), 9, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2796), 1, + sym__function_body, + STATE(6367), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739564,7 +738958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265979] = 19, + [265093] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739585,23 +738979,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9392), 1, - anon_sym_LBRACE, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(2657), 1, - sym_accessor_list, - STATE(6354), 1, - sym_parameter_list, - STATE(7287), 1, - sym_type_parameter_list, - STATE(7638), 1, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2799), 1, + sym__function_body, + STATE(6368), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6391), 9, + STATE(6377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739611,7 +739007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266045] = 19, + [265162] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739632,23 +739028,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(5636), 1, + anon_sym_LBRACK, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, ACTIONS(9424), 1, anon_sym_LT, - STATE(2644), 1, - sym_accessor_list, - STATE(6356), 1, + ACTIONS(9475), 1, + anon_sym_EQ, + STATE(6764), 1, sym_parameter_list, - STATE(7164), 1, + STATE(7104), 1, + sym_bracketed_argument_list, + STATE(7133), 1, sym_type_parameter_list, - STATE(7414), 1, - sym_arrow_expression_clause, - STATE(6392), 9, + ACTIONS(9388), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739658,7 +739055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266111] = 13, + [265229] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739679,17 +739076,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9567), 1, - anon_sym_DOT, - ACTIONS(4015), 7, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6393), 9, + STATE(2605), 1, + sym_block, + STATE(2685), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739699,7 +739104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266165] = 12, + [265298] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739720,16 +739125,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9553), 8, - anon_sym_COMMA, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6394), 9, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2884), 1, + sym__function_body, + STATE(6343), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739739,7 +739153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266217] = 14, + [265367] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739760,18 +739174,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_COMMA, - STATE(6388), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 6, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6395), 9, + STATE(2605), 1, + sym_block, + STATE(2800), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739781,7 +739202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266273] = 17, + [265436] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739802,21 +739223,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(9573), 1, - anon_sym_COMMA, - STATE(6550), 1, - aux_sym_record_base_repeat1, - STATE(6720), 1, - sym_argument_list, - ACTIONS(9571), 3, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, anon_sym_SEMI, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6396), 9, + STATE(2605), 1, + sym_block, + STATE(2787), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739826,7 +739251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266335] = 14, + [265505] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739847,18 +739272,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_COMMA, - STATE(6386), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 6, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6397), 9, + STATE(2605), 1, + sym_block, + STATE(2703), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739868,7 +739300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266391] = 17, + [265574] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739889,20 +739321,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9577), 1, - sym_interpolation_end_quote, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - STATE(6415), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6398), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2704), 1, + sym__function_body, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739912,7 +739349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266452] = 17, + [265643] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739933,20 +739370,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9581), 1, - anon_sym_catch, - ACTIONS(9583), 1, - anon_sym_finally, - STATE(6400), 1, - aux_sym_try_statement_repeat1, - STATE(6706), 1, - sym_catch_clause, - STATE(7326), 1, - sym_finally_clause, - ACTIONS(3121), 2, - anon_sym_while, - anon_sym_else, - STATE(6399), 9, + ACTIONS(9519), 1, + anon_sym_COMMA, + STATE(6346), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9553), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739956,7 +739392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266513] = 17, + [265700] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739977,20 +739413,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9581), 1, - anon_sym_catch, - ACTIONS(9583), 1, - anon_sym_finally, - STATE(6514), 1, - aux_sym_try_statement_repeat1, - STATE(6706), 1, - sym_catch_clause, - STATE(7172), 1, - sym_finally_clause, - ACTIONS(3131), 2, - anon_sym_while, - anon_sym_else, - STATE(6400), 9, + ACTIONS(9555), 8, + anon_sym_COMMA, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740000,7 +739432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266574] = 17, + [265752] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740021,20 +739453,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(6460), 1, - aux_sym_catch_clause_repeat1, - STATE(6732), 1, - sym_block, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6401), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(2649), 1, + sym_accessor_list, + STATE(6376), 1, + sym_parameter_list, + STATE(7174), 1, + sym_type_parameter_list, + STATE(7478), 1, + sym_arrow_expression_clause, + STATE(6387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740044,7 +739479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266635] = 12, + [265818] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740065,15 +739500,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4150), 7, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5316), 1, anon_sym_LPAREN, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(9559), 1, + anon_sym_COMMA, + STATE(6534), 1, + aux_sym_record_base_repeat1, + STATE(6790), 1, + sym_argument_list, + ACTIONS(9557), 3, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6402), 9, + STATE(6388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740083,7 +739524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266686] = 12, + [265880] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740104,15 +739545,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9589), 7, + ACTIONS(9561), 1, + anon_sym_DOT, + ACTIONS(4028), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6403), 9, + STATE(6389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740122,7 +739565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266737] = 17, + [265934] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740143,20 +739586,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(9517), 1, - anon_sym_COLON, - STATE(6639), 1, - sym_base_list, - STATE(6640), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9591), 2, - anon_sym_SEMI, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9392), 1, anon_sym_LBRACE, - STATE(6404), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(2678), 1, + sym_accessor_list, + STATE(6370), 1, + sym_parameter_list, + STATE(7116), 1, + sym_type_parameter_list, + STATE(7379), 1, + sym_arrow_expression_clause, + STATE(6390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740166,7 +739612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266798] = 17, + [266000] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740187,20 +739633,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, + ACTIONS(9532), 8, + anon_sym_COMMA, anon_sym_where, - ACTIONS(9517), 1, - anon_sym_COLON, - STATE(6678), 1, - sym_base_list, - STATE(6679), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9593), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6405), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740210,7 +739652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266859] = 17, + [266052] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740231,20 +739673,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(1947), 1, - sym_block, - STATE(6417), 1, - aux_sym_catch_clause_repeat1, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6406), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(2674), 1, + sym_accessor_list, + STATE(6355), 1, + sym_parameter_list, + STATE(7159), 1, + sym_type_parameter_list, + STATE(7689), 1, + sym_arrow_expression_clause, + STATE(6392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740254,7 +739699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266920] = 12, + [266118] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740275,15 +739720,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9595), 7, + ACTIONS(9565), 1, + anon_sym_LPAREN, + STATE(6424), 1, + sym_argument_list, + ACTIONS(9563), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6407), 9, + STATE(6393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740293,7 +739741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266971] = 16, + [266174] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740314,19 +739762,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(9597), 1, + ACTIONS(9514), 1, anon_sym_COMMA, - STATE(6657), 1, - sym_argument_list, - STATE(6658), 1, + STATE(6395), 1, aux_sym_base_list_repeat1, - ACTIONS(9541), 3, + ACTIONS(9568), 6, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6408), 9, + STATE(6394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740336,7 +739783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267030] = 17, + [266230] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740357,20 +739804,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9599), 1, - sym_interpolation_end_quote, - STATE(6398), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6409), 9, + ACTIONS(9570), 1, + anon_sym_COMMA, + ACTIONS(9563), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6395), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740380,7 +739823,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267091] = 17, + aux_sym_base_list_repeat1, + [266284] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740401,20 +739845,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(9514), 1, + anon_sym_COMMA, + STATE(6394), 1, + aux_sym_base_list_repeat1, + ACTIONS(9573), 6, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(6401), 1, - aux_sym_catch_clause_repeat1, - STATE(6724), 1, - sym_block, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6410), 9, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740424,7 +739866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267152] = 12, + [266340] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740445,15 +739887,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9601), 7, + ACTIONS(9514), 1, + anon_sym_COMMA, + STATE(6395), 1, + aux_sym_base_list_repeat1, + ACTIONS(9573), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6411), 9, + STATE(6397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740463,7 +739908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267203] = 17, + [266396] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740484,20 +739929,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9603), 1, - sym_interpolation_end_quote, - STATE(6415), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6412), 9, + ACTIONS(5722), 1, + anon_sym_LBRACE, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(2097), 1, + sym_block, + STATE(6421), 1, + aux_sym_catch_clause_repeat1, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740507,7 +739952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267264] = 17, + [266457] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740528,20 +739973,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9605), 1, - sym_interpolation_end_quote, - STATE(6415), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6413), 9, + ACTIONS(9579), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740551,7 +739991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267325] = 12, + [266508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740572,15 +740012,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9607), 7, + ACTIONS(9581), 7, anon_sym_SEMI, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - STATE(6414), 9, + anon_sym_EQ_GT, + STATE(6400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740590,7 +740030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267376] = 16, + [266559] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740611,18 +740051,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9612), 1, - sym_interpolation_end_quote, - ACTIONS(9614), 1, - sym_interpolation_open_brace, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9609), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6415), 10, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9583), 1, + aux_sym_preproc_if_token3, + STATE(6671), 1, + sym_attribute_list, + STATE(7758), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740632,8 +740074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat1, - [267435] = 12, + [266620] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740654,7 +740095,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9617), 7, + ACTIONS(9585), 7, anon_sym_SEMI, anon_sym_COLON, anon_sym_LPAREN, @@ -740662,7 +740103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_where, anon_sym_EQ_GT, - STATE(6416), 9, + STATE(6402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740672,7 +740113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267486] = 17, + [266671] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740693,20 +740134,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5322), 1, anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(9575), 1, anon_sym_LPAREN, - ACTIONS(9587), 1, + ACTIONS(9577), 1, anon_sym_when, - STATE(1979), 1, + STATE(1956), 1, sym_block, - STATE(6460), 1, + STATE(6468), 1, aux_sym_catch_clause_repeat1, - STATE(6935), 2, + STATE(6936), 2, sym_catch_declaration, sym_catch_filter_clause, - STATE(6417), 9, + STATE(6403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740716,7 +740157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267547] = 17, + [266732] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740737,20 +740178,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9619), 1, + ACTIONS(9587), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6404), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [266783] = 17, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9591), 1, sym_interpolation_end_quote, - STATE(6415), 1, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + STATE(6435), 1, aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, + STATE(6738), 1, sym_interpolation, - STATE(6737), 1, + STATE(6754), 1, sym__interpolated_string_content, - ACTIONS(9575), 2, + ACTIONS(9589), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6418), 9, + STATE(6405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740760,7 +740240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267608] = 17, + [266844] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740783,18 +740263,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(9517), 1, + ACTIONS(9525), 1, anon_sym_COLON, - STATE(6553), 1, + STATE(6682), 1, sym_base_list, - STATE(6554), 1, + STATE(6686), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9621), 2, + ACTIONS(9595), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6419), 9, + STATE(6406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740804,7 +740284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267669] = 17, + [266905] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740825,20 +740305,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(2096), 1, - sym_block, - STATE(6434), 1, - aux_sym_catch_clause_repeat1, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6420), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9597), 1, + sym_interpolation_end_quote, + STATE(6417), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740848,7 +740328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267730] = 12, + [266966] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740869,15 +740349,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9623), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6421), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9599), 1, + sym_interpolation_end_quote, + STATE(6434), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740887,7 +740372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267781] = 17, + [267027] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740908,20 +740393,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9625), 1, - aux_sym_preproc_if_token3, - STATE(6688), 1, - sym_attribute_list, - STATE(7445), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6422), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9601), 1, + sym_interpolation_end_quote, + STATE(6434), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740931,7 +740416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267842] = 17, + [267088] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740952,20 +740437,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9627), 1, - sym_interpolation_end_quote, - STATE(6415), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6423), 9, + ACTIONS(9603), 1, + anon_sym_catch, + ACTIONS(9605), 1, + anon_sym_finally, + STATE(6520), 1, + aux_sym_try_statement_repeat1, + STATE(6791), 1, + sym_catch_clause, + STATE(7330), 1, + sym_finally_clause, + ACTIONS(3135), 2, + anon_sym_while, + anon_sym_else, + STATE(6410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740975,7 +740460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267903] = 17, + [267149] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740998,18 +740483,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4749), 1, aux_sym_preproc_else_token1, - ACTIONS(4755), 1, + ACTIONS(4751), 1, aux_sym_preproc_elif_token1, - ACTIONS(9629), 1, + ACTIONS(9607), 1, aux_sym_preproc_if_token3, STATE(6544), 1, sym_attribute_list, - STATE(7535), 2, + STATE(7493), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(6424), 9, + STATE(6411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741019,7 +740504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267964] = 12, + [267210] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741040,15 +740525,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9631), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(5327), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6425), 9, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(1940), 1, + sym_block, + STATE(6416), 1, + aux_sym_catch_clause_repeat1, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741058,7 +740548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268015] = 17, + [267271] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741079,20 +740569,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9633), 1, - aux_sym_preproc_if_token3, - STATE(6559), 1, - sym_attribute_list, - STATE(7705), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6426), 9, + ACTIONS(9609), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741102,7 +740587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268076] = 17, + [267322] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741123,20 +740608,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(6617), 1, + sym_base_list, + STATE(6619), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9611), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(1939), 1, - sym_block, - STATE(6437), 1, - aux_sym_catch_clause_repeat1, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6427), 9, + STATE(6414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741146,7 +740631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268137] = 12, + [267383] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741167,15 +740652,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9635), 7, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(9613), 1, + anon_sym_COMMA, + STATE(6653), 1, + sym_argument_list, + STATE(6654), 1, + aux_sym_base_list_repeat1, + ACTIONS(9512), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6428), 9, + STATE(6415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741185,7 +740674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268188] = 17, + [267442] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741206,20 +740695,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9637), 1, - sym_interpolation_end_quote, - STATE(6423), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6429), 9, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(1938), 1, + sym_block, + STATE(6468), 1, + aux_sym_catch_clause_repeat1, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741229,7 +740718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268249] = 17, + [267503] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741250,20 +740739,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9639), 1, + ACTIONS(9615), 1, sym_interpolation_end_quote, - STATE(6418), 1, + STATE(6434), 1, aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, + STATE(6738), 1, sym_interpolation, - STATE(6737), 1, + STATE(6754), 1, sym__interpolated_string_content, - ACTIONS(9575), 2, + ACTIONS(9589), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6430), 9, + STATE(6417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741273,7 +740762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268310] = 17, + [267564] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741294,20 +740783,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9641), 1, - sym_interpolation_end_quote, - STATE(6412), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6431), 9, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9617), 1, + aux_sym_preproc_if_token3, + STATE(6528), 1, + sym_attribute_list, + STATE(7663), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741317,7 +740806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268371] = 12, + [267625] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741338,15 +740827,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9643), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(5638), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6432), 9, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(6425), 1, + aux_sym_catch_clause_repeat1, + STATE(6786), 1, + sym_block, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741356,7 +740850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268422] = 17, + [267686] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741377,20 +740871,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9645), 1, - sym_interpolation_end_quote, - STATE(6413), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6735), 1, - sym_interpolation, - STATE(6737), 1, - sym__interpolated_string_content, - ACTIONS(9575), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6433), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(6532), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6689), 1, + sym_base_list, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9619), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741400,7 +740894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268483] = 17, + [267747] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741421,20 +740915,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, + ACTIONS(5722), 1, anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(9575), 1, anon_sym_LPAREN, - ACTIONS(9587), 1, + ACTIONS(9577), 1, anon_sym_when, - STATE(2097), 1, + STATE(2096), 1, sym_block, - STATE(6460), 1, + STATE(6468), 1, aux_sym_catch_clause_repeat1, - STATE(6935), 2, + STATE(6936), 2, sym_catch_declaration, sym_catch_filter_clause, - STATE(6434), 9, + STATE(6421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741444,7 +740938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268544] = 17, + [267808] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741465,20 +740959,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9647), 1, - aux_sym_preproc_if_token3, - STATE(6677), 1, - sym_attribute_list, - STATE(7407), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6435), 9, + ACTIONS(5322), 1, + anon_sym_LBRACE, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(1984), 1, + sym_block, + STATE(6403), 1, + aux_sym_catch_clause_repeat1, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741488,7 +740982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268605] = 17, + [267869] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741509,20 +741003,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9649), 1, - aux_sym_preproc_if_token3, - STATE(6542), 1, - sym_attribute_list, - STATE(7509), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6436), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9621), 1, + sym_interpolation_end_quote, + STATE(6409), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741532,7 +741026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268666] = 17, + [267930] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741553,20 +741047,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(9623), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(9587), 1, - anon_sym_when, - STATE(1941), 1, - sym_block, - STATE(6460), 1, - aux_sym_catch_clause_repeat1, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6437), 9, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741576,7 +741065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268727] = 17, + [267981] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741597,20 +741086,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2669), 1, - aux_sym_preproc_if_token3, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - STATE(6563), 1, - sym_attribute_list, - STATE(7798), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6438), 9, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_when, + STATE(6468), 1, + aux_sym_catch_clause_repeat1, + STATE(6716), 1, + sym_block, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741620,7 +741109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268788] = 17, + [268042] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741641,19 +741130,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9577), 1, - sym_interpolation_end_quote, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6494), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6439), 9, + ACTIONS(9625), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741663,40 +741148,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268848] = 17, - ACTIONS(9181), 1, + [268093] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9653), 1, - anon_sym_DQUOTE, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - STATE(6465), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6440), 9, + ACTIONS(9627), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741706,7 +741187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268908] = 14, + [268144] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741727,16 +741208,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9663), 1, - anon_sym_COMMA, - STATE(6516), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9661), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6441), 9, + ACTIONS(2659), 1, + aux_sym_preproc_if_token3, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + STATE(6573), 1, + sym_attribute_list, + STATE(7770), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741746,7 +741231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268962] = 17, + [268205] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741767,19 +741252,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9599), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6439), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6442), 9, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9629), 1, + aux_sym_preproc_if_token3, + STATE(6580), 1, + sym_attribute_list, + STATE(7531), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741789,7 +741275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269022] = 13, + [268266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741810,14 +741296,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9667), 1, - anon_sym_COMMA, - ACTIONS(9665), 4, + ACTIONS(9631), 7, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, anon_sym_EQ_GT, - STATE(6443), 10, + STATE(6430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741827,8 +741314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_parameter_constraints_clause_repeat1, - [269074] = 13, + [268317] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741849,15 +741335,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9672), 1, - anon_sym_QMARK, - ACTIONS(9670), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6444), 9, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9633), 1, + aux_sym_preproc_if_token3, + STATE(6641), 1, + sym_attribute_list, + STATE(7485), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741867,7 +741358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269126] = 17, + [268378] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741888,19 +741379,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9603), 1, + ACTIONS(9635), 1, sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6494), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, + STATE(6408), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6445), 9, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741910,7 +741402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269186] = 17, + [268439] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741931,19 +741423,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(7012), 1, - anon_sym_DOT, - ACTIONS(9674), 1, - anon_sym_COMMA, - ACTIONS(9676), 1, - anon_sym_QMARK, - STATE(6446), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9637), 1, + sym_interpolation_end_quote, + STATE(6434), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741953,7 +741446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269246] = 17, + [268500] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741974,19 +741467,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2739), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6447), 9, + ACTIONS(9642), 1, + sym_interpolation_end_quote, + ACTIONS(9644), 1, + sym_interpolation_open_brace, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9639), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6434), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741996,7 +741488,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269306] = 17, + aux_sym_interpolated_string_expression_repeat1, + [268559] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742017,19 +741510,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9678), 1, + ACTIONS(9647), 1, sym_interpolation_end_quote, - ACTIONS(9680), 1, - sym_interpolation_string_content, - STATE(6485), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, + STATE(6434), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6448), 9, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742039,40 +741533,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269366] = 17, - ACTIONS(9181), 1, + [268620] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9649), 1, + sym_interpolation_end_quote, + STATE(6433), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6738), 1, + sym_interpolation, + STATE(6754), 1, + sym__interpolated_string_content, + ACTIONS(9589), 2, + sym_interpolation_string_content, sym_escape_sequence, - ACTIONS(9682), 1, - anon_sym_DQUOTE, - STATE(6502), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6449), 9, + STATE(6436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742082,7 +741577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269426] = 13, + [268681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742103,15 +741598,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(4131), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, anon_sym_EQ_GT, - ACTIONS(3840), 5, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6450), 9, + STATE(6437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742121,7 +741616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269478] = 12, + [268732] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742142,14 +741637,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9684), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6451), 9, + ACTIONS(9603), 1, + anon_sym_catch, + ACTIONS(9605), 1, + anon_sym_finally, + STATE(6410), 1, + aux_sym_try_statement_repeat1, + STATE(6791), 1, + sym_catch_clause, + STATE(7298), 1, + sym_finally_clause, + ACTIONS(3123), 2, + anon_sym_while, + anon_sym_else, + STATE(6438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742159,40 +741660,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269528] = 17, - ACTIONS(9181), 1, + [268793] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - ACTIONS(9686), 1, - anon_sym_DQUOTE, - STATE(6456), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6452), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9651), 1, + sym_interpolation_end_quote, + ACTIONS(9653), 1, + sym_interpolation_string_content, + STATE(6466), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742202,7 +741703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269588] = 14, + [268853] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742223,16 +741724,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(9688), 1, - anon_sym_EQ, - ACTIONS(3840), 4, + ACTIONS(5316), 1, + anon_sym_LPAREN, + STATE(6424), 1, + sym_argument_list, + ACTIONS(9563), 4, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6453), 9, + anon_sym_LBRACE, + anon_sym_where, + STATE(6440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742242,40 +741743,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269642] = 17, - ACTIONS(9181), 1, + [268907] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, + anon_sym_DQUOTE, ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, + aux_sym_string_literal_content_token1, ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, sym_escape_sequence, - ACTIONS(9690), 1, - anon_sym_DQUOTE, - STATE(6465), 1, + STATE(6462), 1, aux_sym_string_literal_repeat1, - STATE(6760), 1, + STATE(6770), 1, sym_string_literal_content, - STATE(6454), 9, + STATE(6441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742285,7 +741786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269702] = 12, + [268967] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742306,14 +741807,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9692), 6, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6455), 9, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2789), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742323,40 +741829,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269752] = 17, - ACTIONS(9181), 1, + [269027] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - ACTIONS(9694), 1, - anon_sym_DQUOTE, - STATE(6465), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6456), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9635), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6497), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742366,7 +741872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269812] = 12, + [269087] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742387,14 +741893,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9696), 6, + ACTIONS(9665), 6, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6457), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742404,7 +741910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269862] = 12, + [269137] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742425,14 +741931,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9698), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6458), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9667), 1, + sym_interpolation_end_quote, + STATE(6498), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742442,7 +741953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269912] = 17, + [269197] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742463,19 +741974,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9700), 1, - sym_interpolation_end_quote, - STATE(6448), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6459), 9, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(9559), 1, + anon_sym_COMMA, + STATE(6651), 1, + aux_sym_record_base_repeat1, + ACTIONS(9669), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742485,7 +741994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269972] = 15, + [269253] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742506,16 +742015,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9702), 1, - anon_sym_LPAREN, - ACTIONS(9705), 1, + ACTIONS(9673), 1, + anon_sym_COMMA, + ACTIONS(9671), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9707), 1, - anon_sym_when, - STATE(6935), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6460), 10, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6447), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742525,8 +742032,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_catch_clause_repeat1, - [270028] = 17, + aux_sym_type_parameter_constraints_clause_repeat1, + [269305] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742547,19 +742054,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, + ACTIONS(3691), 1, anon_sym_EQ_GT, - ACTIONS(9504), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + anon_sym_EQ, + STATE(7104), 1, + sym_bracketed_argument_list, + ACTIONS(9388), 2, anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2745), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6461), 9, + anon_sym_COMMA, + STATE(6448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742569,7 +742075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270088] = 16, + [269363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742590,18 +742096,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9710), 1, - anon_sym_EQ, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 2, + ACTIONS(9676), 6, anon_sym_SEMI, - anon_sym_DOT, - STATE(6462), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742611,7 +742113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270146] = 17, + [269413] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742632,19 +742134,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2761), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6463), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9678), 1, + sym_interpolation_end_quote, + STATE(6515), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742654,7 +742156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270206] = 17, + [269473] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742681,54 +742183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2685), 1, + STATE(2722), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6464), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [270266] = 16, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(9712), 1, - anon_sym_DQUOTE, - ACTIONS(9714), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9717), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9720), 1, - sym_escape_sequence, - STATE(6760), 1, - sym_string_literal_content, - STATE(6465), 10, + STATE(6451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742738,8 +742199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_string_literal_repeat1, - [270324] = 17, + [269533] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742766,13 +742226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2776), 1, + STATE(2726), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6466), 9, + STATE(6452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742782,7 +742242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270384] = 15, + [269593] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742803,17 +742263,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(9573), 1, - anon_sym_COMMA, - STATE(6661), 1, - aux_sym_record_base_repeat1, - ACTIONS(9723), 3, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9680), 1, anon_sym_SEMI, + ACTIONS(9682), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6467), 9, + STATE(3415), 1, + sym_block, + STATE(3484), 1, + sym__function_body, + STATE(7393), 1, + sym_arrow_expression_clause, + STATE(6453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742823,7 +742285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270440] = 14, + [269653] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742844,15 +742306,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_where, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9725), 3, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, anon_sym_SEMI, + ACTIONS(9506), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6468), 10, + STATE(2605), 1, + sym_block, + STATE(2735), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742862,8 +742328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat4, - [270494] = 17, + [269713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742884,19 +742349,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9730), 1, - sym_interpolation_end_quote, - STATE(6475), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6469), 9, + ACTIONS(9684), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742906,7 +742366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270554] = 17, + [269763] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742929,17 +742389,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9504), 1, + ACTIONS(9680), 1, anon_sym_SEMI, - ACTIONS(9506), 1, + ACTIONS(9682), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(3415), 1, sym_block, - STATE(2707), 1, + STATE(3462), 1, sym__function_body, - STATE(7351), 1, + STATE(7393), 1, sym_arrow_expression_clause, - STATE(6470), 9, + STATE(6456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742949,7 +742409,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270614] = 17, + [269823] = 16, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9686), 1, + anon_sym_DQUOTE, + ACTIONS(9688), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9691), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9694), 1, + sym_escape_sequence, + STATE(6770), 1, + sym_string_literal_content, + STATE(6457), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym_string_literal_repeat1, + [269881] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742970,19 +742472,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9732), 1, + ACTIONS(9601), 1, sym_interpolation_end_quote, - STATE(6485), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6509), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6471), 9, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742992,7 +742494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270674] = 17, + [269941] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743015,17 +742517,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9504), 1, + ACTIONS(9680), 1, anon_sym_SEMI, - ACTIONS(9506), 1, + ACTIONS(9682), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(3415), 1, sym_block, - STATE(2882), 1, + STATE(3539), 1, sym__function_body, - STATE(7351), 1, + STATE(7393), 1, sym_arrow_expression_clause, - STATE(6472), 9, + STATE(6459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743035,7 +742537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270734] = 17, + [270001] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743058,17 +742560,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9734), 1, + ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9736), 1, + ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(3426), 1, + STATE(2605), 1, sym_block, - STATE(3483), 1, + STATE(2783), 1, sym__function_body, - STATE(7629), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6473), 9, + STATE(6460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743078,7 +742580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270794] = 17, + [270061] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743099,19 +742601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9680), 1, + ACTIONS(9653), 1, sym_interpolation_string_content, - ACTIONS(9738), 1, + ACTIONS(9697), 1, sym_interpolation_end_quote, - STATE(6471), 1, + STATE(6515), 1, aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, + STATE(7047), 1, sym__interpolated_raw_string_content, - STATE(6474), 9, + STATE(7097), 1, + sym_interpolation, + STATE(6461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743121,40 +742623,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270854] = 17, - ACTIONS(3), 1, + [270121] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9740), 1, - sym_interpolation_end_quote, - STATE(6485), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6475), 9, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9699), 1, + anon_sym_DQUOTE, + STATE(6457), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743164,7 +742666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270914] = 17, + [270181] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743185,19 +742687,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2710), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6476), 9, + ACTIONS(4024), 1, + anon_sym_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(9701), 1, + anon_sym_COMMA, + ACTIONS(9703), 1, + anon_sym_QMARK, + STATE(6463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743207,40 +742709,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270974] = 17, - ACTIONS(9181), 1, + [270241] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, + aux_sym_string_literal_content_token1, ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, sym_escape_sequence, - ACTIONS(9742), 1, + ACTIONS(9705), 1, anon_sym_DQUOTE, - STATE(6440), 1, + STATE(6507), 1, aux_sym_string_literal_repeat1, - STATE(6760), 1, + STATE(6770), 1, sym_string_literal_content, - STATE(6477), 9, + STATE(6464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743250,40 +742752,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271034] = 17, - ACTIONS(9181), 1, + [270301] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - ACTIONS(9744), 1, - anon_sym_DQUOTE, - STATE(6465), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6478), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9647), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6509), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743293,7 +742795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271094] = 14, + [270361] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743314,16 +742816,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(9688), 1, - anon_sym_EQ, - ACTIONS(3840), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6479), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9707), 1, + sym_interpolation_end_quote, + STATE(6515), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743333,7 +742838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271148] = 17, + [270421] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743354,19 +742859,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9639), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6490), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6480), 9, + ACTIONS(6929), 1, + anon_sym_LT, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9709), 1, + anon_sym_EQ, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743376,7 +742880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271208] = 17, + [270479] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743397,19 +742901,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9627), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6494), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6481), 9, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9714), 1, + anon_sym_LBRACE, + ACTIONS(9716), 1, + anon_sym_when, + STATE(6936), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6468), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743419,7 +742920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271268] = 16, + aux_sym_catch_clause_repeat1, + [270535] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743440,18 +742942,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9746), 1, - anon_sym_EQ, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 2, + ACTIONS(9719), 6, anon_sym_SEMI, - anon_sym_DOT, - STATE(6482), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743461,7 +742959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271326] = 16, + [270585] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743482,18 +742980,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_EQ, - STATE(6983), 1, - sym_bracketed_argument_list, - ACTIONS(9388), 2, + ACTIONS(9721), 6, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6483), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743503,7 +742997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271384] = 17, + [270635] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743530,13 +743024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2760), 1, + STATE(2822), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6484), 9, + STATE(6471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743546,7 +743040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271444] = 16, + [270695] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743567,17 +743061,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9748), 1, - sym_interpolation_end_quote, - ACTIONS(9750), 1, - sym_interpolation_open_brace, - ACTIONS(9753), 1, - sym_interpolation_string_content, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6485), 10, + ACTIONS(9725), 1, + anon_sym_COMMA, + STATE(6447), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9723), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743587,41 +743080,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat3, - [271502] = 17, - ACTIONS(9181), 1, + [270749] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, + aux_sym_string_literal_content_token1, ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, sym_escape_sequence, - ACTIONS(9756), 1, + ACTIONS(9727), 1, anon_sym_DQUOTE, - STATE(6465), 1, + STATE(6517), 1, aux_sym_string_literal_repeat1, - STATE(6760), 1, + STATE(6770), 1, sym_string_literal_content, - STATE(6486), 9, + STATE(6473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743631,7 +743123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271562] = 16, + [270809] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743652,18 +743144,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(7012), 1, - anon_sym_DOT, - ACTIONS(9676), 1, - anon_sym_QMARK, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6487), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9649), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6514), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6474), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [270869] = 17, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9729), 1, + anon_sym_DQUOTE, + STATE(6491), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743673,7 +743209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271620] = 12, + [270929] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743694,14 +743230,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9758), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6488), 9, + ACTIONS(9591), 1, + sym_interpolation_end_quote, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6465), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743711,7 +743252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271670] = 17, + [270989] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743738,13 +743279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2771), 1, + STATE(2792), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6489), 9, + STATE(6477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743754,7 +743295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271730] = 17, + [271049] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743775,19 +743316,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9619), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, + ACTIONS(9653), 1, sym_interpolation_string_content, - STATE(6494), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, + ACTIONS(9731), 1, + sym_interpolation_end_quote, + STATE(6450), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6490), 9, + STATE(6478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743797,7 +743338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271790] = 17, + [271109] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743820,17 +743361,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9734), 1, + ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9736), 1, + ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(3419), 1, - sym__function_body, - STATE(3426), 1, + STATE(2605), 1, sym_block, - STATE(7629), 1, + STATE(2793), 1, + sym__function_body, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6491), 9, + STATE(6479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743840,7 +743381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271850] = 12, + [271169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743861,14 +743402,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9760), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6492), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9597), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6494), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743878,7 +743424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271900] = 17, + [271229] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743899,19 +743445,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, + ACTIONS(3691), 1, anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2858), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6493), 9, + ACTIONS(3881), 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + STATE(6481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743921,38 +743463,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271960] = 16, - ACTIONS(3), 1, + [271281] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9762), 1, - sym_interpolation_end_quote, - ACTIONS(9764), 1, - sym_interpolation_open_brace, - ACTIONS(9767), 1, - sym_interpolation_string_content, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6494), 10, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + STATE(6489), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743962,8 +743506,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat2, - [272018] = 12, + [271341] = 13, + ACTIONS(3664), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(3662), 5, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6483), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [271393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743984,14 +743566,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9770), 6, + ACTIONS(9735), 6, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6495), 9, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744001,7 +743583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272068] = 17, + [271443] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744028,13 +743610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2711), 1, + STATE(2839), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6496), 9, + STATE(6485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744044,7 +743626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272128] = 17, + [271503] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744071,13 +743653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2880), 1, + STATE(2688), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6497), 9, + STATE(6486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744087,36 +743669,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272188] = 13, - ACTIONS(3664), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [271563] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6498), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2851), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744126,7 +743712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272240] = 17, + [271623] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744149,17 +743735,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - ACTIONS(9734), 1, + ACTIONS(9504), 1, anon_sym_SEMI, - ACTIONS(9736), 1, + ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(3426), 1, + STATE(2605), 1, sym_block, - STATE(3461), 1, + STATE(2852), 1, sym__function_body, - STATE(7629), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6499), 9, + STATE(6488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744169,40 +743755,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272300] = 17, - ACTIONS(9181), 1, + [271683] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, + aux_sym_string_literal_content_token1, ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, sym_escape_sequence, - ACTIONS(9772), 1, + ACTIONS(9737), 1, anon_sym_DQUOTE, - STATE(6454), 1, + STATE(6457), 1, aux_sym_string_literal_repeat1, - STATE(6760), 1, + STATE(6770), 1, sym_string_literal_content, - STATE(6500), 9, + STATE(6489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744212,7 +743798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272360] = 17, + [271743] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744233,19 +743819,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9774), 1, - sym_interpolation_end_quote, - STATE(6519), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6501), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(9739), 1, + anon_sym_EQ, + ACTIONS(3881), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + STATE(6490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744255,83 +743838,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272420] = 17, - ACTIONS(9181), 1, + [271797] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, + aux_sym_string_literal_content_token1, ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, sym_escape_sequence, - ACTIONS(9776), 1, + ACTIONS(9741), 1, anon_sym_DQUOTE, - STATE(6465), 1, + STATE(6457), 1, aux_sym_string_literal_repeat1, - STATE(6760), 1, + STATE(6770), 1, sym_string_literal_content, - STATE(6502), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [272480] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9637), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6481), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6503), 9, + STATE(6491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744341,7 +743881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272540] = 16, + [271857] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744362,61 +743902,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, + ACTIONS(6929), 1, anon_sym_LT, - ACTIONS(7022), 1, + ACTIONS(7047), 1, anon_sym_COLON_COLON, - ACTIONS(9778), 1, + ACTIONS(9743), 1, anon_sym_EQ, - STATE(2186), 1, + STATE(2184), 1, sym_type_argument_list, - ACTIONS(3682), 2, + ACTIONS(3680), 2, anon_sym_SEMI, anon_sym_DOT, - STATE(6504), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [272598] = 17, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - ACTIONS(9780), 1, - anon_sym_DQUOTE, - STATE(6478), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6505), 9, + STATE(6492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744426,7 +743923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272658] = 16, + [271915] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744447,18 +743944,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_LT, - ACTIONS(7022), 1, - anon_sym_COLON_COLON, - ACTIONS(9782), 1, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(9739), 1, anon_sym_EQ, - STATE(2186), 1, - sym_type_argument_list, - ACTIONS(3682), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6506), 9, + ACTIONS(3881), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + STATE(6493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744468,7 +743963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272716] = 17, + [271969] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744489,19 +743984,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9605), 1, + ACTIONS(9615), 1, sym_interpolation_end_quote, - ACTIONS(9651), 1, + ACTIONS(9663), 1, sym_interpolation_string_content, - STATE(6494), 1, + STATE(6509), 1, aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, + STATE(7071), 1, sym_interpolation, - STATE(6904), 1, + STATE(7077), 1, sym__interpolated_verbatim_string_content, - STATE(6507), 9, + STATE(6494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744511,7 +744006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272776] = 17, + [272029] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744532,19 +744027,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9641), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, + ACTIONS(9653), 1, sym_interpolation_string_content, - STATE(6445), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, + ACTIONS(9745), 1, + sym_interpolation_end_quote, + STATE(6515), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6508), 9, + STATE(6495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744554,40 +744049,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272836] = 17, - ACTIONS(3), 1, + [272089] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2773), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6509), 9, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9747), 1, + anon_sym_DQUOTE, + STATE(6508), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744597,7 +744092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272896] = 17, + [272149] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744618,19 +744113,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - ACTIONS(9504), 1, - anon_sym_SEMI, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_block, - STATE(2834), 1, - sym__function_body, - STATE(7351), 1, - sym_arrow_expression_clause, - STATE(6510), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9599), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6509), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744640,7 +744135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272956] = 14, + [272209] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744661,16 +744156,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_LPAREN, - STATE(6414), 1, - sym_argument_list, - ACTIONS(9555), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(6511), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9749), 1, + sym_interpolation_end_quote, + STATE(6515), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744680,7 +744178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273010] = 17, + [272269] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744701,19 +744199,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9593), 1, sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9784), 1, + ACTIONS(9621), 1, sym_interpolation_end_quote, - STATE(6522), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6458), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6512), 9, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744723,7 +744221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273070] = 12, + [272329] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744744,14 +744242,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9786), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6513), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9751), 1, + sym_interpolation_end_quote, + STATE(6461), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744761,7 +744264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273120] = 14, + [272389] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744782,59 +744285,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9788), 1, - anon_sym_catch, - STATE(6706), 1, - sym_catch_clause, - ACTIONS(3141), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - STATE(6514), 10, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym_try_statement_repeat1, - [273174] = 17, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(9655), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9657), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9659), 1, - sym_escape_sequence, - ACTIONS(9791), 1, - anon_sym_DQUOTE, - STATE(6486), 1, - aux_sym_string_literal_repeat1, - STATE(6760), 1, - sym_string_literal_content, - STATE(6515), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2779), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744844,7 +744307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273234] = 14, + [272449] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744865,16 +744328,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9663), 1, - anon_sym_COMMA, - STATE(6443), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9793), 4, + ACTIONS(6929), 1, + anon_sym_LT, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9753), 1, + anon_sym_EQ, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6516), 9, + anon_sym_DOT, + STATE(6502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744884,7 +744349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273288] = 16, + [272507] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744905,18 +744370,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_LPAREN, - ACTIONS(9795), 1, - anon_sym_COMMA, - STATE(6703), 1, - sym_argument_list, - STATE(6709), 1, - aux_sym_base_list_repeat1, - ACTIONS(9541), 2, + ACTIONS(6929), 1, + anon_sym_LT, + ACTIONS(7047), 1, + anon_sym_COLON_COLON, + ACTIONS(9755), 1, + anon_sym_EQ, + STATE(2184), 1, + sym_type_argument_list, + ACTIONS(3680), 2, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6517), 9, + anon_sym_DOT, + STATE(6503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744926,7 +744391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273346] = 17, + [272565] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744953,13 +744418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(9506), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2605), 1, sym_block, - STATE(2782), 1, + STATE(2776), 1, sym__function_body, - STATE(7351), 1, + STATE(7760), 1, sym_arrow_expression_clause, - STATE(6518), 9, + STATE(6504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744969,7 +744434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273406] = 17, + [272625] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744990,19 +744455,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9797), 1, - sym_interpolation_end_quote, - STATE(6485), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6519), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(9703), 1, + anon_sym_QMARK, + ACTIONS(4024), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745012,36 +744476,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273466] = 13, - ACTIONS(3459), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [272683] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3461), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6520), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2814), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745051,40 +744519,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273518] = 17, - ACTIONS(3), 1, + [272743] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9645), 1, - sym_interpolation_end_quote, - ACTIONS(9651), 1, - sym_interpolation_string_content, - STATE(6507), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6886), 1, - sym_interpolation, - STATE(6904), 1, - sym__interpolated_verbatim_string_content, - STATE(6521), 9, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9757), 1, + anon_sym_DQUOTE, + STATE(6457), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745094,40 +744562,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273578] = 17, - ACTIONS(3), 1, + [272803] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9579), 1, - sym_interpolation_open_brace, - ACTIONS(9680), 1, - sym_interpolation_string_content, - ACTIONS(9799), 1, - sym_interpolation_end_quote, - STATE(6485), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6919), 1, - sym_interpolation, - STATE(6920), 1, - sym__interpolated_raw_string_content, - STATE(6522), 9, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9759), 1, + anon_sym_DQUOTE, + STATE(6457), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745137,7 +744605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273638] = 16, + [272863] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745158,17 +744626,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9801), 1, - anon_sym_RBRACE, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - STATE(6625), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6523), 9, + ACTIONS(9761), 1, + sym_interpolation_end_quote, + ACTIONS(9763), 1, + sym_interpolation_open_brace, + ACTIONS(9766), 1, + sym_interpolation_string_content, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6509), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745178,7 +744646,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273695] = 12, + aux_sym_interpolated_string_expression_repeat2, + [272921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745199,13 +744668,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9807), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6524), 9, + ACTIONS(9769), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745215,7 +744685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273744] = 15, + [272971] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745236,16 +744706,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, + ACTIONS(9773), 1, anon_sym_where, - STATE(6547), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9460), 2, + ACTIONS(9771), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6525), 9, + anon_sym_EQ_GT, + STATE(6511), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745255,7 +744724,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273799] = 15, + aux_sym__class_declaration_initializer_repeat4, + [273025] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745276,16 +744746,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9460), 2, + ACTIONS(9778), 1, + anon_sym_QMARK, + ACTIONS(9776), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6526), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745295,7 +744764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273854] = 16, + [273077] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745316,17 +744785,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(9809), 1, - anon_sym_RBRACE, - STATE(6575), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6527), 9, + ACTIONS(9780), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745336,7 +744802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273911] = 15, + [273127] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745357,16 +744823,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9811), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6528), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9637), 1, + sym_interpolation_end_quote, + ACTIONS(9663), 1, + sym_interpolation_string_content, + STATE(6509), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7071), 1, + sym_interpolation, + STATE(7077), 1, + sym__interpolated_verbatim_string_content, + STATE(6514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745376,7 +744845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273966] = 15, + [273187] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745397,16 +744866,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6528), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9432), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6529), 9, + ACTIONS(9782), 1, + sym_interpolation_end_quote, + ACTIONS(9784), 1, + sym_interpolation_open_brace, + ACTIONS(9787), 1, + sym_interpolation_string_content, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6515), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745416,7 +744886,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274021] = 15, + aux_sym_interpolated_string_expression_repeat3, + [273245] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745437,16 +744908,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6558), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9811), 2, + ACTIONS(9725), 1, + anon_sym_COMMA, + STATE(6472), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9790), 4, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6530), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745456,37 +744927,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274076] = 15, - ACTIONS(3), 1, + [273299] = 17, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9432), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6531), 9, + ACTIONS(9657), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9659), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9661), 1, + sym_escape_sequence, + ACTIONS(9792), 1, + anon_sym_DQUOTE, + STATE(6457), 1, + aux_sym_string_literal_repeat1, + STATE(6770), 1, + sym_string_literal_content, + STATE(6517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745496,7 +744970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274131] = 16, + [273359] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745517,17 +744991,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9813), 1, - anon_sym_COMMA, - ACTIONS(9815), 1, - anon_sym_RBRACK, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - STATE(7060), 1, - aux_sym_list_pattern_repeat1, - STATE(6532), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + ACTIONS(9504), 1, + anon_sym_SEMI, + ACTIONS(9506), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_block, + STATE(2709), 1, + sym__function_body, + STATE(7760), 1, + sym_arrow_expression_clause, + STATE(6518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745537,37 +745013,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274188] = 15, - ACTIONS(9181), 1, + [273419] = 13, + ACTIONS(3459), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9827), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(3461), 5, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6533), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745577,37 +745052,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274243] = 15, - ACTIONS(9181), 1, + [273471] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9829), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6534), 9, + ACTIONS(9794), 1, + anon_sym_catch, + STATE(6791), 1, + sym_catch_clause, + ACTIONS(3141), 3, + anon_sym_while, + anon_sym_finally, + anon_sym_else, + STATE(6520), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745617,7 +745091,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274298] = 15, + aux_sym_try_statement_repeat1, + [273525] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745638,16 +745113,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(9833), 1, - anon_sym_EQ, - STATE(6804), 1, - sym_bracketed_argument_list, - ACTIONS(9831), 2, - anon_sym_SEMI, + ACTIONS(5316), 1, + anon_sym_LPAREN, + ACTIONS(9797), 1, anon_sym_COMMA, - STATE(6535), 9, + STATE(6780), 1, + sym_argument_list, + STATE(6793), 1, + aux_sym_base_list_repeat1, + ACTIONS(9512), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745657,7 +745134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274353] = 15, + [273583] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745678,16 +745155,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9835), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6536), 9, + ACTIONS(9593), 1, + sym_interpolation_open_brace, + ACTIONS(9653), 1, + sym_interpolation_string_content, + ACTIONS(9799), 1, + sym_interpolation_end_quote, + STATE(6495), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7047), 1, + sym__interpolated_raw_string_content, + STATE(7097), 1, + sym_interpolation, + STATE(6522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745697,37 +745177,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274408] = 15, - ACTIONS(9181), 1, + [273643] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9837), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6537), 9, + ACTIONS(9801), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745737,7 +745214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274463] = 16, + [273692] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745758,17 +745235,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(6771), 1, - sym_parameter_list, - STATE(7289), 1, - sym_type_parameter_list, - STATE(6538), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9803), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745778,7 +745254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274520] = 15, + [273747] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745801,14 +745277,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9839), 2, + ACTIONS(9805), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6539), 9, + STATE(6525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745818,7 +745294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274575] = 15, + [273802] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745841,14 +745317,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6588), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9841), 2, + ACTIONS(9803), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6540), 9, + STATE(6526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745858,7 +745334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274630] = 13, + [273857] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745879,14 +745355,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(6201), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - STATE(6541), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9807), 1, + anon_sym_LBRACE, + STATE(4660), 1, + sym_block, + STATE(7241), 1, + sym_parameter_list, + STATE(6527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745896,7 +745375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274681] = 15, + [273914] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745917,16 +745396,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4749), 1, aux_sym_preproc_else_token1, - ACTIONS(4755), 1, + ACTIONS(4751), 1, aux_sym_preproc_elif_token1, - ACTIONS(9843), 1, + ACTIONS(8450), 1, aux_sym_preproc_if_token3, - STATE(7599), 2, + STATE(7537), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(6542), 9, + STATE(6528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745936,7 +745415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274736] = 16, + [273969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745957,17 +745436,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(7012), 1, + ACTIONS(7940), 1, anon_sym_DOT, - ACTIONS(9674), 1, + ACTIONS(9809), 1, + anon_sym_LPAREN, + STATE(7315), 1, + sym_attribute_argument_list, + ACTIONS(8935), 2, anon_sym_COMMA, - STATE(6543), 9, + anon_sym_RBRACK, + STATE(6529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745977,37 +745455,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274793] = 15, - ACTIONS(3), 1, + [274024] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4947), 1, - aux_sym_preproc_if_token3, - STATE(7608), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6544), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9817), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746017,37 +745495,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274848] = 15, - ACTIONS(9181), 1, + [274079] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9845), 1, + ACTIONS(9819), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6545), 9, + STATE(6531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746057,7 +745535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274903] = 16, + [274134] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746078,17 +745556,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9821), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4658), 1, - sym_block, - STATE(7215), 1, - sym_parameter_list, - STATE(6546), 9, + STATE(6532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746098,7 +745575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274960] = 15, + [274189] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746119,16 +745596,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9849), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6547), 9, + ACTIONS(9823), 1, + anon_sym_RPAREN, + ACTIONS(9827), 1, + anon_sym_AMP_AMP, + ACTIONS(9829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746138,7 +745615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275015] = 15, + [274244] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746159,16 +745636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6570), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9849), 2, + ACTIONS(9559), 1, + anon_sym_COMMA, + STATE(6593), 1, + aux_sym_record_base_repeat1, + ACTIONS(9831), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6548), 9, + anon_sym_where, + STATE(6534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746178,7 +745654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275070] = 16, + [274297] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746199,17 +745675,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(9851), 1, - anon_sym_RBRACE, - STATE(6575), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6549), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9833), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746219,7 +745694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275127] = 14, + [274352] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746240,15 +745715,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9573), 1, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(9835), 1, + anon_sym_EQ, + STATE(7062), 1, + sym_bracketed_argument_list, + ACTIONS(9837), 2, anon_sym_COMMA, - STATE(6573), 1, - aux_sym_record_base_repeat1, - ACTIONS(9853), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6550), 9, + anon_sym_RPAREN, + STATE(6536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746258,7 +745734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275180] = 15, + [274407] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746281,14 +745757,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9855), 2, + ACTIONS(9839), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6551), 9, + STATE(6537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746298,37 +745774,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275235] = 15, - ACTIONS(3), 1, + [274462] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9448), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6552), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9841), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746338,37 +745814,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275290] = 15, - ACTIONS(3), 1, + [274517] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6633), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9857), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6553), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9843), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746378,7 +745854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275345] = 15, + [274572] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746401,14 +745877,52 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6608), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9857), 2, + ACTIONS(9460), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6554), 9, + STATE(6540), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [274627] = 13, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9847), 1, + aux_sym_preproc_if_token2, + ACTIONS(9845), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746418,7 +745932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275400] = 15, + [274678] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746439,16 +745953,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9859), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6555), 9, + ACTIONS(4024), 1, + anon_sym_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(9701), 1, + anon_sym_COMMA, + ACTIONS(9703), 1, + anon_sym_QMARK, + STATE(6542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746458,7 +745973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275455] = 15, + [274735] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746481,14 +745996,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6634), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9458), 2, + ACTIONS(9460), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6556), 9, + STATE(6543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746498,7 +746013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275510] = 15, + [274790] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746519,16 +746034,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9458), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6557), 9, + ACTIONS(4747), 1, + aux_sym_preproc_if_token3, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + STATE(7433), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6544), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [274845] = 15, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9849), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746538,7 +746093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275565] = 15, + [274900] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746561,14 +746116,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9861), 2, + ACTIONS(9454), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6558), 9, + STATE(6546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746578,7 +746133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275620] = 15, + [274955] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746599,16 +746154,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4751), 1, - aux_sym_preproc_if_token3, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - STATE(7546), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6559), 9, + ACTIONS(8669), 1, + anon_sym_COLON, + ACTIONS(9851), 1, + anon_sym_when, + ACTIONS(9853), 1, + anon_sym_and, + ACTIONS(9855), 1, + anon_sym_or, + STATE(7443), 1, + sym_when_clause, + STATE(6547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746618,7 +746174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275675] = 15, + [275012] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746639,16 +746195,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9442), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6560), 9, + ACTIONS(9857), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746658,7 +746211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275730] = 15, + [275061] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746679,16 +746232,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6644), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9863), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6561), 9, + ACTIONS(9859), 1, + anon_sym_RBRACE, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + STATE(6550), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746698,7 +746252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275785] = 15, + [275118] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746719,16 +746273,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9863), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6562), 9, + ACTIONS(9865), 1, + anon_sym_RBRACE, + ACTIONS(9867), 1, + anon_sym_case, + ACTIONS(9870), 1, + anon_sym_default, + STATE(6925), 1, + sym_switch_section, + STATE(6550), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746738,7 +746291,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275840] = 15, + aux_sym_switch_body_repeat1, + [275173] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746759,16 +746313,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4757), 1, - aux_sym_preproc_if_token3, - STATE(7419), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6563), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6524), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9444), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746778,7 +746332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275895] = 16, + [275228] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746799,17 +746353,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9444), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3379), 1, - sym_block, - STATE(7245), 1, - sym_parameter_list, - STATE(6564), 9, + STATE(6552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746819,37 +746372,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275952] = 15, - ACTIONS(9181), 1, + [275283] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9867), 1, + ACTIONS(9873), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6565), 9, + STATE(6553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746859,37 +746412,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276007] = 15, - ACTIONS(9181), 1, + [275338] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9869), 1, + ACTIONS(9875), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6566), 9, + STATE(6554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746899,38 +746452,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276062] = 16, - ACTIONS(3), 1, + [275393] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(9871), 1, - anon_sym_RBRACE, - STATE(6549), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6567), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9877), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746940,7 +746492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276119] = 16, + [275448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746961,17 +746513,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8780), 1, + ACTIONS(9881), 1, anon_sym_COLON, - ACTIONS(9873), 1, - anon_sym_when, - ACTIONS(9875), 1, - anon_sym_and, - ACTIONS(9877), 1, - anon_sym_or, - STATE(7354), 1, - sym_when_clause, - STATE(6568), 9, + STATE(7079), 1, + sym_constructor_initializer, + ACTIONS(9879), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746981,37 +746531,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276176] = 15, - ACTIONS(9181), 1, + [275501] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9879), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6569), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9883), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747021,7 +746571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276231] = 15, + [275556] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747044,14 +746594,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6537), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9881), 2, + ACTIONS(9883), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6570), 9, + STATE(6558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747061,37 +746611,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276286] = 15, - ACTIONS(9181), 1, + [275611] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9883), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6571), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6557), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9430), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747101,7 +746651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276341] = 13, + [275666] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747122,14 +746672,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(9885), 4, - anon_sym_SEMI, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(6199), 4, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(6572), 9, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + STATE(6560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747139,7 +746689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276392] = 13, + [275717] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747160,13 +746710,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9887), 1, - anon_sym_COMMA, - ACTIONS(9885), 3, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6623), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9887), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6573), 10, + STATE(6561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747176,38 +746729,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_record_base_repeat1, - [276443] = 15, - ACTIONS(9181), 1, + [275772] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9890), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6574), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9887), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747217,7 +746769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276498] = 15, + [275827] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747238,15 +746790,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym_RBRACE, - ACTIONS(9894), 1, - anon_sym_case, - ACTIONS(9897), 1, - anon_sym_default, - STATE(6900), 1, - sym_switch_section, - STATE(6575), 10, + ACTIONS(8164), 1, + aux_sym_preproc_else_token1, + ACTIONS(8166), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9889), 1, + aux_sym_preproc_if_token3, + STATE(7604), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747256,8 +746809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_switch_body_repeat1, - [276553] = 16, + [275882] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747278,17 +746830,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(9900), 1, - anon_sym_COMMA, - ACTIONS(9902), 1, - anon_sym_RBRACK, - STATE(7085), 1, - aux_sym_list_pattern_repeat1, - STATE(6576), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9452), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747298,7 +746849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276610] = 16, + [275937] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747315,21 +746866,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_warning_token1, ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(3152), 1, - sym_block, - STATE(7310), 1, - sym_parameter_list, - STATE(6577), 9, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9891), 1, + anon_sym_COMMA, + ACTIONS(9893), 1, + anon_sym_RBRACK, + ACTIONS(9895), 1, + anon_sym_or, + STATE(6939), 1, + aux_sym_list_pattern_repeat1, + STATE(6565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747339,35 +746890,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276667] = 13, - ACTIONS(9181), 1, + [275994] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9906), 1, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9897), 1, aux_sym_preproc_if_token2, - ACTIONS(9904), 4, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6578), 9, + STATE(6566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747377,35 +746930,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276718] = 13, - ACTIONS(9181), 1, + [276049] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9910), 1, - aux_sym_preproc_if_token2, - ACTIONS(9908), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6579), 9, + ACTIONS(9899), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747415,36 +746967,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276769] = 14, - ACTIONS(9181), 1, + [276098] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9910), 1, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9901), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9908), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6580), 9, + STATE(6568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747454,7 +747007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276822] = 12, + [276153] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747475,13 +747028,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9912), 5, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9430), 2, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6581), 9, + STATE(6569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747491,37 +747047,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276871] = 15, - ACTIONS(9181), 1, + [276208] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9908), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9910), 1, + ACTIONS(9903), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6582), 9, + STATE(6570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747531,7 +747087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276926] = 16, + [276263] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747552,17 +747108,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9436), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3398), 1, - sym_block, - STATE(7225), 1, - sym_parameter_list, - STATE(6583), 9, + STATE(6571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747572,7 +747127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276983] = 15, + [276318] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747593,16 +747148,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8168), 1, - aux_sym_preproc_else_token1, - ACTIONS(8170), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9914), 1, - aux_sym_preproc_if_token3, - STATE(7603), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6584), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(9905), 1, + anon_sym_RBRACE, + STATE(6550), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747612,37 +747168,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277038] = 15, - ACTIONS(9181), 1, + [276375] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9916), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6585), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4753), 1, + aux_sym_preproc_if_token3, + STATE(7655), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747652,35 +747208,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277093] = 13, - ACTIONS(5023), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [276430] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(5025), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6586), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(9907), 1, + anon_sym_RBRACE, + STATE(6550), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747690,7 +747249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277144] = 15, + [276487] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747711,16 +747270,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9452), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6587), 9, + ACTIONS(9909), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747730,37 +747286,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277199] = 15, - ACTIONS(9181), 1, + [276536] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9918), 1, + ACTIONS(9911), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6588), 9, + STATE(6576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747770,37 +747326,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277254] = 15, - ACTIONS(9181), 1, + [276591] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9920), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6589), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(9913), 1, + anon_sym_RBRACE, + STATE(6572), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747810,7 +747367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277309] = 12, + [276648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747831,53 +747388,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9665), 5, + ACTIONS(9915), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(6590), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [277358] = 15, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9922), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6591), 9, + STATE(6578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747887,7 +747404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277413] = 15, + [276697] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747908,56 +747425,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9462), 2, + ACTIONS(9671), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6592), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [277468] = 15, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9924), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6593), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747967,37 +747441,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277523] = 15, - ACTIONS(9181), 1, + [276746] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9926), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6594), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4937), 1, + aux_sym_preproc_if_token3, + STATE(7596), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748007,7 +747481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277578] = 12, + [276801] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748028,13 +747502,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9928), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6595), 9, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(9917), 1, + anon_sym_COMMA, + ACTIONS(9919), 1, + anon_sym_RBRACK, + STATE(6896), 1, + aux_sym_list_pattern_repeat1, + STATE(6581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748044,37 +747522,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277627] = 15, - ACTIONS(9181), 1, + [276858] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9930), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6596), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9921), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748084,7 +747562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277682] = 15, + [276913] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748105,16 +747583,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9932), 1, - anon_sym_RPAREN, - ACTIONS(9936), 1, - anon_sym_AMP_AMP, - ACTIONS(9938), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6597), 9, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(3124), 1, + sym_block, + STATE(7307), 1, + sym_parameter_list, + STATE(6583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748124,35 +747603,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277737] = 13, - ACTIONS(9181), 1, + [276970] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9928), 1, - aux_sym_preproc_if_token2, - ACTIONS(9940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6598), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACE, + STATE(3364), 1, + sym_block, + STATE(7326), 1, + sym_parameter_list, + STATE(6584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748162,7 +747644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277788] = 16, + [277027] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748183,17 +747665,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(9885), 1, anon_sym_and, - ACTIONS(9819), 1, + ACTIONS(9895), 1, anon_sym_or, - ACTIONS(9942), 1, + ACTIONS(9925), 1, anon_sym_COMMA, - ACTIONS(9944), 1, + ACTIONS(9927), 1, anon_sym_RBRACK, - STATE(6841), 1, + STATE(6952), 1, aux_sym_list_pattern_repeat1, - STATE(6599), 9, + STATE(6585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748203,37 +747685,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277845] = 15, - ACTIONS(9181), 1, + [277084] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9946), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6600), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9929), 1, + anon_sym_LBRACE, + STATE(3075), 1, + sym_block, + STATE(7341), 1, + sym_parameter_list, + STATE(6586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748243,37 +747726,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277900] = 15, - ACTIONS(9181), 1, + [277141] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9948), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6601), 9, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(9931), 1, + anon_sym_EQ, + STATE(7064), 1, + sym_bracketed_argument_list, + ACTIONS(9388), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748283,7 +747766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277955] = 16, + [277196] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748304,17 +747787,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9950), 1, - anon_sym_DOT, - STATE(6602), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9933), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748324,37 +747806,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278012] = 15, - ACTIONS(9181), 1, + [277251] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9952), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6603), 9, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9935), 1, + anon_sym_DOT, + STATE(6589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748364,7 +747847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278067] = 15, + [277308] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748387,14 +747870,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6680), 1, + STATE(6525), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9954), 2, + ACTIONS(9937), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6604), 9, + STATE(6590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748404,37 +747887,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278122] = 15, - ACTIONS(9181), 1, + [277363] = 13, + ACTIONS(5145), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9956), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(5147), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6605), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748444,7 +747925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278177] = 15, + [277414] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748465,16 +747946,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9954), 2, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(9939), 4, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6606), 9, + anon_sym_where, + STATE(6592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748484,7 +747963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278232] = 14, + [277465] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748505,53 +747984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9960), 1, - anon_sym_COLON, - STATE(6864), 1, - sym_constructor_initializer, - ACTIONS(9958), 3, + ACTIONS(9941), 1, + anon_sym_COMMA, + ACTIONS(9939), 3, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6607), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [278285] = 13, - ACTIONS(4975), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(4977), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6608), 9, + anon_sym_where, + STATE(6593), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748561,35 +748000,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278336] = 13, - ACTIONS(9181), 1, + aux_sym_record_base_repeat1, + [277516] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9807), 1, - aux_sym_preproc_if_token2, - ACTIONS(9962), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6609), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9937), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748599,7 +748041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278387] = 14, + [277571] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748620,15 +748062,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9960), 1, - anon_sym_COLON, - STATE(6842), 1, - sym_constructor_initializer, - ACTIONS(9964), 3, - anon_sym_SEMI, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9807), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6610), 9, + STATE(4638), 1, + sym_block, + STATE(7247), 1, + sym_parameter_list, + STATE(6595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748638,7 +748082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278440] = 15, + [277628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748659,16 +748103,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(9966), 1, - anon_sym_LPAREN, - STATE(7242), 1, - sym_attribute_argument_list, - ACTIONS(8939), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6611), 9, + ACTIONS(9944), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748678,7 +748119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278495] = 15, + [277677] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748699,16 +748140,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8168), 1, - aux_sym_preproc_else_token1, - ACTIONS(8170), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9968), 1, - aux_sym_preproc_if_token3, - STATE(7357), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6612), 9, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(3143), 1, + sym_block, + STATE(7252), 1, + sym_parameter_list, + STATE(6597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748718,7 +748160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278550] = 16, + [277734] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748739,17 +748181,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, + ACTIONS(5640), 1, anon_sym_STAR, ACTIONS(8962), 1, anon_sym_LPAREN, - ACTIONS(9970), 1, + ACTIONS(9946), 1, anon_sym_LBRACE, - STATE(3416), 1, + STATE(3897), 1, sym_block, - STATE(7146), 1, + STATE(7172), 1, sym_parameter_list, - STATE(6613), 9, + STATE(6598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748759,34 +748201,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278607] = 12, - ACTIONS(3), 1, + [277791] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9972), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6614), 9, + ACTIONS(9909), 1, + aux_sym_preproc_if_token2, + ACTIONS(9948), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748796,37 +748239,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278656] = 15, - ACTIONS(9181), 1, + [277842] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9974), 1, + ACTIONS(9950), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6615), 9, + STATE(6600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748836,37 +748279,74 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278711] = 15, - ACTIONS(9181), 1, + [277897] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9944), 1, + aux_sym_preproc_if_token2, + ACTIONS(9952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(9825), 1, anon_sym_PIPE_PIPE, - ACTIONS(9976), 1, + STATE(6601), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [277948] = 14, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9944), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6616), 9, + ACTIONS(9952), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748876,37 +748356,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278766] = 15, - ACTIONS(3), 1, + [278001] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(9676), 1, - anon_sym_QMARK, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6617), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9944), 1, + aux_sym_preproc_if_token2, + ACTIONS(9952), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748916,38 +748396,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278821] = 16, - ACTIONS(3), 1, + [278056] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - anon_sym_LBRACE, - STATE(4636), 1, - sym_block, - STATE(7140), 1, - sym_parameter_list, - STATE(6618), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9954), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748957,36 +748436,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278878] = 14, - ACTIONS(3), 1, + [278111] = 13, + ACTIONS(4999), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9960), 1, - anon_sym_COLON, - STATE(6843), 1, - sym_constructor_initializer, - ACTIONS(9978), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6619), 9, + ACTIONS(5001), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748996,7 +748474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278931] = 16, + [278162] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749017,17 +748495,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9980), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9956), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3903), 1, - sym_block, - STATE(7316), 1, - sym_parameter_list, - STATE(6620), 9, + STATE(6606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749037,7 +748514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278988] = 16, + [278217] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749058,17 +748535,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9982), 1, - anon_sym_EQ_GT, - ACTIONS(9984), 1, - anon_sym_when, - ACTIONS(9986), 1, - anon_sym_and, - ACTIONS(9988), 1, - anon_sym_or, - STATE(7784), 1, - sym_when_clause, - STATE(6621), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9958), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749078,7 +748554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279045] = 16, + [278272] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749099,17 +748575,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9990), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9960), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3054), 1, - sym_block, - STATE(7275), 1, - sym_parameter_list, - STATE(6622), 9, + STATE(6608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749119,7 +748594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279102] = 16, + [278327] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749140,17 +748615,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(9992), 1, - anon_sym_COMMA, - ACTIONS(9994), 1, - anon_sym_RBRACK, - STATE(6933), 1, - aux_sym_list_pattern_repeat1, - STATE(6623), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6633), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9960), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749160,7 +748634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279159] = 16, + [278382] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749181,17 +748655,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9970), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9962), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3460), 1, - sym_block, - STATE(7157), 1, - sym_parameter_list, - STATE(6624), 9, + STATE(6610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749201,7 +748674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279216] = 16, + [278437] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749222,17 +748695,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(9996), 1, - anon_sym_RBRACE, - STATE(6575), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6625), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9450), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749242,37 +748714,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279273] = 15, - ACTIONS(9181), 1, + [278492] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(9998), 1, + ACTIONS(9964), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6626), 9, + STATE(6612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749282,7 +748754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279328] = 12, + [278547] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749303,13 +748775,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9906), 5, + ACTIONS(9847), 5, anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6627), 9, + STATE(6613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749319,7 +748791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279377] = 12, + [278596] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749340,13 +748812,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9910), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6628), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9923), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym_block, + STATE(7202), 1, + sym_parameter_list, + STATE(6614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749356,35 +748832,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279426] = 13, - ACTIONS(3), 1, + [278653] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9910), 3, - anon_sym_RPAREN, + ACTIONS(9813), 1, anon_sym_AMP_AMP, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - STATE(6629), 9, + ACTIONS(9966), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749394,7 +748872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279477] = 14, + [278708] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749415,15 +748893,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_AMP_AMP, - ACTIONS(9910), 2, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - ACTIONS(9934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6630), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9440), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749433,7 +748912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279530] = 15, + [278763] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749456,14 +748935,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6652), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10000), 2, + ACTIONS(9968), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6631), 9, + STATE(6617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749473,37 +748952,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279585] = 15, - ACTIONS(9181), 1, + [278818] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10002), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6632), 9, + ACTIONS(9944), 3, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749513,7 +748990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279640] = 15, + [278869] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749536,14 +749013,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10004), 2, + ACTIONS(9968), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6633), 9, + STATE(6619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749553,7 +749030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279695] = 15, + [278924] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749574,16 +749051,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10006), 2, - anon_sym_SEMI, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9970), 1, anon_sym_LBRACE, - STATE(6634), 9, + STATE(3433), 1, + sym_block, + STATE(7201), 1, + sym_parameter_list, + STATE(6620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749593,37 +749071,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279750] = 15, - ACTIONS(3), 1, + [278981] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6646), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10006), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6635), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9972), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749633,7 +749111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279805] = 15, + [279036] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749656,14 +749134,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10008), 2, + ACTIONS(9974), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6636), 9, + STATE(6622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749673,7 +749151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279860] = 16, + [279091] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749694,17 +749172,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9990), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9976), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3079), 1, - sym_block, - STATE(7178), 1, - sym_parameter_list, - STATE(6637), 9, + STATE(6623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749714,7 +749191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279917] = 15, + [279146] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749737,14 +749214,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6666), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9456), 2, + ACTIONS(9468), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6638), 9, + STATE(6624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749754,37 +749231,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279972] = 15, - ACTIONS(3), 1, + [279201] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6655), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10010), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6639), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9978), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749794,7 +749271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280027] = 15, + [279256] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749815,16 +749292,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10010), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6640), 9, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(9980), 1, + anon_sym_COMMA, + ACTIONS(9982), 1, + anon_sym_RBRACK, + STATE(6854), 1, + aux_sym_list_pattern_repeat1, + STATE(6626), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [279313] = 15, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9984), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749834,7 +749352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280082] = 16, + [279368] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749855,17 +749373,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(10012), 1, - anon_sym_COMMA, - ACTIONS(10014), 1, - anon_sym_RBRACK, - STATE(7014), 1, - aux_sym_list_pattern_repeat1, - STATE(6641), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(9986), 1, + anon_sym_RBRACE, + STATE(6644), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749875,7 +749393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280139] = 16, + [279425] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749896,17 +749414,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(10016), 1, - anon_sym_RBRACE, - STATE(6649), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6642), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9988), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749916,7 +749433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280196] = 15, + [279480] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749937,16 +749454,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(9475), 1, - anon_sym_EQ, - STATE(6983), 1, - sym_bracketed_argument_list, - ACTIONS(9388), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6643), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(6764), 1, + sym_parameter_list, + STATE(7133), 1, + sym_type_parameter_list, + STATE(6630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749956,7 +749474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280251] = 15, + [279537] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749979,14 +749497,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10018), 2, + ACTIONS(9468), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6644), 9, + STATE(6631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749996,7 +749514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280306] = 12, + [279592] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750017,13 +749535,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9670), 5, - anon_sym_SEMI, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(9703), 1, + anon_sym_QMARK, + ACTIONS(4024), 2, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6645), 9, + anon_sym_GT, + STATE(6632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750033,7 +749554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280355] = 15, + [279647] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750056,14 +749577,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10020), 2, + ACTIONS(9990), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6646), 9, + STATE(6633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750073,7 +749594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280410] = 15, + [279702] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750094,16 +749615,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6686), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9440), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6647), 9, + ACTIONS(9827), 1, + anon_sym_AMP_AMP, + ACTIONS(9825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9944), 2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + STATE(6634), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [279755] = 15, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9992), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750113,7 +749673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280465] = 15, + [279810] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750136,14 +749696,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9440), 2, + ACTIONS(9994), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6648), 9, + STATE(6636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750153,38 +749713,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280520] = 16, - ACTIONS(3), 1, + [279865] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(10022), 1, - anon_sym_RBRACE, - STATE(6575), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6649), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9996), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750194,7 +749753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280577] = 16, + [279920] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750215,17 +749774,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(9885), 1, anon_sym_and, - ACTIONS(9819), 1, + ACTIONS(9895), 1, anon_sym_or, - ACTIONS(10024), 1, + ACTIONS(9998), 1, anon_sym_COMMA, - ACTIONS(10026), 1, + ACTIONS(10000), 1, anon_sym_RBRACK, - STATE(7041), 1, + STATE(6839), 1, aux_sym_list_pattern_repeat1, - STATE(6650), 9, + STATE(6638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750235,38 +749794,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280634] = 16, - ACTIONS(3), 1, + [279977] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9980), 1, - anon_sym_LBRACE, - STATE(3834), 1, - sym_block, - STATE(7323), 1, - sym_parameter_list, - STATE(6651), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10002), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750276,7 +749834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280691] = 16, + [280032] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750297,17 +749855,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(10028), 1, - anon_sym_COMMA, - ACTIONS(10030), 1, - anon_sym_RBRACK, - STATE(7033), 1, - aux_sym_list_pattern_repeat1, - STATE(6652), 9, + ACTIONS(9881), 1, + anon_sym_COLON, + STATE(6890), 1, + sym_constructor_initializer, + ACTIONS(10004), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750317,7 +749873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280748] = 15, + [280085] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750338,16 +749894,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10032), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6653), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10006), 1, + aux_sym_preproc_if_token3, + STATE(7397), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750357,7 +749913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280803] = 14, + [280140] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750378,15 +749934,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(6187), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6654), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9970), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym_block, + STATE(7262), 1, + sym_parameter_list, + STATE(6642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750396,7 +749954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280856] = 15, + [280197] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750419,14 +749977,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10034), 2, + ACTIONS(9434), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6655), 9, + STATE(6643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750436,7 +749994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280911] = 15, + [280252] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750457,16 +750015,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10036), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6656), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(10008), 1, + anon_sym_RBRACE, + STATE(6550), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750476,7 +750035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280966] = 14, + [280309] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750497,15 +750056,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9597), 1, - anon_sym_COMMA, - STATE(6666), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 3, - anon_sym_SEMI, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9946), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6657), 9, + STATE(3783), 1, + sym_block, + STATE(7268), 1, + sym_parameter_list, + STATE(6645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750515,7 +750076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281019] = 14, + [280366] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750536,15 +750097,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9597), 1, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(10010), 1, anon_sym_COMMA, - STATE(6667), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6658), 9, + ACTIONS(10012), 1, + anon_sym_RBRACK, + STATE(7051), 1, + aux_sym_list_pattern_repeat1, + STATE(6646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750554,37 +750117,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281072] = 15, - ACTIONS(9181), 1, + [280423] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10038), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6659), 9, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(10014), 1, + anon_sym_COMMA, + ACTIONS(10016), 1, + anon_sym_RBRACK, + STATE(7058), 1, + aux_sym_list_pattern_repeat1, + STATE(6647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750594,37 +750158,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281127] = 15, - ACTIONS(9181), 1, + [280480] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10040), 1, + ACTIONS(9857), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(10018), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6660), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750634,7 +750196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281182] = 14, + [280531] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750655,15 +750217,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9573), 1, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(6171), 3, anon_sym_COMMA, - STATE(6573), 1, - aux_sym_record_base_repeat1, - ACTIONS(10042), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6661), 9, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750673,7 +750235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281235] = 15, + [280584] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750696,14 +750258,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6535), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(9466), 2, + ACTIONS(10020), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6662), 9, + STATE(6650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750713,7 +750275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281290] = 15, + [280639] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750734,16 +750296,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9468), 2, + ACTIONS(9559), 1, + anon_sym_COMMA, + STATE(6593), 1, + aux_sym_record_base_repeat1, + ACTIONS(10022), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6663), 9, + anon_sym_where, + STATE(6651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750753,37 +750314,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281345] = 15, - ACTIONS(9181), 1, + [280692] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10044), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6664), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10024), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750793,7 +750354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281400] = 12, + [280747] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750814,13 +750375,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10046), 5, - anon_sym_SEMI, + ACTIONS(9613), 1, anon_sym_COMMA, + STATE(6659), 1, + aux_sym_base_list_repeat1, + ACTIONS(9573), 3, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - anon_sym_EQ_GT, - STATE(6665), 9, + STATE(6653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750830,7 +750393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281449] = 14, + [280800] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750851,15 +750414,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9597), 1, + ACTIONS(9613), 1, anon_sym_COMMA, - STATE(6667), 1, + STATE(6660), 1, aux_sym_base_list_repeat1, - ACTIONS(9560), 3, + ACTIONS(9573), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - STATE(6666), 9, + STATE(6654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750869,34 +750432,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281502] = 13, - ACTIONS(3), 1, + [280853] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10048), 1, - anon_sym_COMMA, - ACTIONS(9555), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6667), 10, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10026), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750906,8 +750472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [281553] = 15, + [280908] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750928,16 +750493,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6555), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10051), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6668), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(10028), 1, + anon_sym_RBRACE, + STATE(6549), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750947,37 +750513,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281608] = 15, - ACTIONS(9181), 1, + [280965] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(10053), 1, + ACTIONS(10030), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6669), 9, + STATE(6657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750987,7 +750553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281663] = 15, + [281020] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751008,16 +750574,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10051), 2, + ACTIONS(9881), 1, + anon_sym_COLON, + STATE(6975), 1, + sym_constructor_initializer, + ACTIONS(10032), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6670), 9, + anon_sym_EQ_GT, + STATE(6658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751027,7 +750592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281718] = 16, + [281073] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751048,17 +750613,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_case, - ACTIONS(9805), 1, - anon_sym_default, - ACTIONS(10055), 1, - anon_sym_RBRACE, - STATE(6527), 1, - aux_sym_switch_body_repeat1, - STATE(6900), 1, - sym_switch_section, - STATE(6671), 9, + ACTIONS(9613), 1, + anon_sym_COMMA, + STATE(6660), 1, + aux_sym_base_list_repeat1, + ACTIONS(9568), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751068,37 +750631,75 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281775] = 15, - ACTIONS(9181), 1, + [281126] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(10034), 1, + anon_sym_COMMA, + ACTIONS(9563), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6660), 10, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym_base_list_repeat1, + [281177] = 15, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(10057), 1, + ACTIONS(10037), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6672), 9, + STATE(6661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751108,37 +750709,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281830] = 15, - ACTIONS(3), 1, + [281232] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(10059), 1, - anon_sym_EQ, - STATE(7066), 1, - sym_bracketed_argument_list, - ACTIONS(9831), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6673), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10039), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751148,7 +750749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281885] = 15, + [281287] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751169,16 +750770,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10061), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6674), 9, + ACTIONS(9827), 1, + anon_sym_AMP_AMP, + ACTIONS(9829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10041), 1, + anon_sym_RPAREN, + ACTIONS(9825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751188,7 +750789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281940] = 15, + [281342] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751209,16 +750810,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(10063), 1, - anon_sym_EQ, - STATE(7073), 1, - sym_bracketed_argument_list, - ACTIONS(9388), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6675), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10020), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751228,37 +750829,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281995] = 15, - ACTIONS(9181), 1, + [281397] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(10065), 1, + ACTIONS(10043), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6676), 9, + STATE(6665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751268,7 +750869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282050] = 15, + [281452] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751289,16 +750890,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9031), 1, - aux_sym_preproc_if_token3, - STATE(7486), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6677), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10045), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751308,7 +750909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282105] = 15, + [281507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751331,14 +750932,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6540), 1, + STATE(6629), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10067), 2, + ACTIONS(10045), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6678), 9, + STATE(6667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751348,7 +750949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282160] = 15, + [281562] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751371,14 +750972,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - STATE(6468), 1, + STATE(6511), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - ACTIONS(10067), 2, + ACTIONS(10047), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6679), 9, + STATE(6668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751388,7 +750989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282215] = 15, + [281617] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751409,16 +751010,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10069), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6680), 9, + ACTIONS(9861), 1, + anon_sym_case, + ACTIONS(9863), 1, + anon_sym_default, + ACTIONS(10049), 1, + anon_sym_RBRACE, + STATE(6574), 1, + aux_sym_switch_body_repeat1, + STATE(6925), 1, + sym_switch_section, + STATE(6669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751428,37 +751030,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282270] = 15, - ACTIONS(3), 1, + [281674] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9938), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(10071), 1, - anon_sym_RPAREN, - ACTIONS(9934), 2, + ACTIONS(10051), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6681), 9, + STATE(6670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751468,7 +751070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282325] = 16, + [281729] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751489,17 +751091,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(10073), 1, - anon_sym_STAR, - STATE(3154), 1, - sym_block, - STATE(7150), 1, - sym_parameter_list, - STATE(6682), 9, + ACTIONS(4749), 1, + aux_sym_preproc_else_token1, + ACTIONS(4751), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8992), 1, + aux_sym_preproc_if_token3, + STATE(7437), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6671), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [281784] = 15, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10053), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751509,7 +751150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282382] = 16, + [281839] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751530,17 +751171,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(9674), 1, - anon_sym_COMMA, - ACTIONS(9676), 1, - anon_sym_QMARK, - STATE(6683), 9, + ACTIONS(10055), 1, + anon_sym_EQ_GT, + ACTIONS(10057), 1, + anon_sym_when, + ACTIONS(10059), 1, + anon_sym_and, + ACTIONS(10061), 1, + anon_sym_or, + STATE(7741), 1, + sym_when_clause, + STATE(6673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751550,37 +751191,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282439] = 15, - ACTIONS(9181), 1, + [281896] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9813), 1, anon_sym_AMP_AMP, - ACTIONS(9825), 1, + ACTIONS(9815), 1, anon_sym_PIPE_PIPE, - ACTIONS(10075), 1, + ACTIONS(10063), 1, aux_sym_preproc_if_token2, - ACTIONS(9821), 2, + ACTIONS(9811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6684), 9, + STATE(6674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751590,7 +751231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282494] = 16, + [281951] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751611,17 +751252,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(10077), 1, - anon_sym_COMMA, - ACTIONS(10079), 1, - anon_sym_RBRACK, - STATE(7090), 1, - aux_sym_list_pattern_repeat1, - STATE(6685), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10065), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751631,37 +751271,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282551] = 15, - ACTIONS(3), 1, + [282006] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10081), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6686), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10067), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751671,7 +751311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282606] = 15, + [282061] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751692,16 +751332,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - STATE(6536), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - ACTIONS(10081), 2, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(9475), 1, + anon_sym_EQ, + STATE(7104), 1, + sym_bracketed_argument_list, + ACTIONS(9388), 2, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6687), 9, + anon_sym_COMMA, + STATE(6677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751711,7 +751351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282661] = 15, + [282116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751732,16 +751372,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4753), 1, - aux_sym_preproc_else_token1, - ACTIONS(4755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8574), 1, - aux_sym_preproc_if_token3, - STATE(7708), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6688), 9, + ACTIONS(9776), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751751,7 +751388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282716] = 16, + [282165] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751772,17 +751409,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5637), 1, - anon_sym_STAR, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(3154), 1, + ACTIONS(10069), 1, + anon_sym_STAR, + STATE(3124), 1, sym_block, - STATE(7150), 1, + STATE(7307), 1, sym_parameter_list, - STATE(6689), 9, + STATE(6679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751792,37 +751429,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282773] = 15, - ACTIONS(9181), 1, + [282222] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_AMP_AMP, - ACTIONS(9825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10083), 1, - aux_sym_preproc_if_token2, - ACTIONS(9821), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6690), 9, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(10071), 1, + anon_sym_COMMA, + ACTIONS(10073), 1, + anon_sym_RBRACK, + STATE(6840), 1, + aux_sym_list_pattern_repeat1, + STATE(6680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751832,7 +751470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282828] = 13, + [282279] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751853,12 +751491,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10085), 1, - anon_sym_COMMA, - ACTIONS(10088), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6691), 10, + ACTIONS(8164), 1, + aux_sym_preproc_else_token1, + ACTIONS(8166), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10075), 1, + aux_sym_preproc_if_token3, + STATE(7725), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751868,8 +751510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_parameter_list_repeat1, - [282878] = 15, + [282334] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751892,13 +751533,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9426), 1, anon_sym_where, - ACTIONS(10090), 1, - anon_sym_SEMI, - STATE(6468), 1, + STATE(6675), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, + STATE(6703), 1, sym_type_parameter_constraints_clause, - STATE(6692), 9, + ACTIONS(10077), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751908,7 +751550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282932] = 14, + [282389] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751929,14 +751571,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_and, - ACTIONS(9819), 1, - anon_sym_or, - ACTIONS(10092), 2, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(9701), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6693), 9, + STATE(6683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751946,7 +751591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282984] = 15, + [282446] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751967,15 +751612,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10094), 1, - anon_sym_LT, - ACTIONS(10096), 1, - anon_sym_unmanaged, - ACTIONS(10098), 1, - anon_sym_managed, - STATE(7372), 1, - sym_calling_convention, - STATE(6694), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10079), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751985,7 +751631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283038] = 12, + [282501] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752006,12 +751652,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10100), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6695), 9, + ACTIONS(5636), 1, + anon_sym_LBRACK, + ACTIONS(10081), 1, + anon_sym_EQ, + STATE(7094), 1, + sym_bracketed_argument_list, + ACTIONS(9837), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752021,7 +751671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283086] = 15, + [282556] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752042,15 +751692,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(10077), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - STATE(2687), 1, - sym_accessor_list, - STATE(7611), 1, - sym_arrow_expression_clause, - STATE(6696), 9, + STATE(6686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752060,33 +751711,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283140] = 12, - ACTIONS(3), 1, + [282611] = 15, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10102), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6697), 9, + ACTIONS(9813), 1, + anon_sym_AMP_AMP, + ACTIONS(9815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10083), 1, + aux_sym_preproc_if_token2, + ACTIONS(9811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752096,7 +751751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283188] = 15, + [282666] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752117,15 +751772,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(10104), 1, - anon_sym_EQ, - ACTIONS(10106), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_RPAREN, - STATE(6698), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9456), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752135,7 +751791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283242] = 15, + [282721] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752156,15 +751812,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, - anon_sym_COMMA, - ACTIONS(10111), 1, - anon_sym_RPAREN, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - STATE(6699), 9, + ACTIONS(9426), 1, + anon_sym_where, + STATE(6607), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9821), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752174,7 +751831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283296] = 14, + [282776] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752195,14 +751852,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9986), 1, - anon_sym_and, - ACTIONS(9988), 1, - anon_sym_or, - ACTIONS(6187), 2, - anon_sym_EQ_GT, - anon_sym_when, - STATE(6700), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9929), 1, + anon_sym_LBRACE, + STATE(3003), 1, + sym_block, + STATE(7212), 1, + sym_parameter_list, + STATE(6690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752212,7 +751872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283348] = 12, + [282833] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752233,12 +751893,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4031), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6701), 9, + ACTIONS(10059), 1, + anon_sym_and, + ACTIONS(10061), 1, + anon_sym_or, + ACTIONS(6171), 2, + anon_sym_EQ_GT, + anon_sym_when, + STATE(6691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752248,7 +751910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283396] = 13, + [282885] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752269,13 +751931,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(10117), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6702), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10085), 1, + anon_sym_SEMI, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6771), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752285,7 +751949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283446] = 14, + [282939] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752306,14 +751970,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9795), 1, - anon_sym_COMMA, - STATE(6726), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 2, + ACTIONS(10087), 1, anon_sym_SEMI, + ACTIONS(10089), 1, anon_sym_LBRACE, - STATE(6703), 9, + STATE(2773), 1, + sym__declaration_list_body, + STATE(7704), 1, + sym_declaration_list, + STATE(6693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752323,7 +751988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283498] = 15, + [282993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752344,15 +752009,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, + ACTIONS(10091), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9396), 1, + anon_sym_where, anon_sym_EQ_GT, - STATE(2714), 1, - sym_accessor_list, - STATE(7710), 1, - sym_arrow_expression_clause, - STATE(6704), 9, + STATE(6694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752362,7 +752024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283552] = 14, + [283041] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752383,14 +752045,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - ACTIONS(10092), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6705), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2744), 1, + sym_accessor_list, + STATE(7360), 1, + sym_arrow_expression_clause, + STATE(6695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752400,7 +752063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283604] = 12, + [283095] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752421,12 +752084,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3163), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6706), 9, + ACTIONS(4040), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752436,7 +752099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283652] = 14, + [283143] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752457,14 +752120,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(9885), 1, anon_sym_and, - ACTIONS(9819), 1, + ACTIONS(9895), 1, anon_sym_or, - ACTIONS(10119), 2, + ACTIONS(10093), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(6707), 9, + STATE(6697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752474,7 +752137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283704] = 15, + [283195] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752495,15 +752158,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - STATE(2806), 1, - sym_accessor_list, - STATE(7522), 1, - sym_arrow_expression_clause, - STATE(6708), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(9703), 1, + anon_sym_QMARK, + ACTIONS(4024), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752513,7 +752175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283758] = 14, + [283247] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752534,14 +752196,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9795), 1, + ACTIONS(10093), 1, anon_sym_COMMA, - STATE(6730), 1, - aux_sym_base_list_repeat1, - ACTIONS(9569), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6709), 9, + ACTIONS(10095), 1, + anon_sym_RPAREN, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + STATE(6699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752551,7 +752214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283810] = 15, + [283301] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752572,15 +752235,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, + ACTIONS(10089), 1, anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - STATE(2733), 1, - sym_accessor_list, - STATE(7498), 1, - sym_arrow_expression_clause, - STATE(6710), 9, + ACTIONS(10101), 1, + anon_sym_SEMI, + STATE(2092), 1, + sym__declaration_list_body, + STATE(7464), 1, + sym_declaration_list, + STATE(6700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752590,7 +752253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283864] = 15, + [283355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752611,15 +752274,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, - anon_sym_unmanaged, - ACTIONS(10098), 1, - anon_sym_managed, - ACTIONS(10121), 1, - anon_sym_LT, - STATE(7789), 1, - sym_calling_convention, - STATE(6711), 9, + ACTIONS(10103), 1, + anon_sym_COMMA, + ACTIONS(9557), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752629,7 +752290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283918] = 13, + [283405] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752650,13 +752311,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10123), 1, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(10107), 3, anon_sym_COMMA, - ACTIONS(9571), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6712), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752666,7 +752327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283968] = 15, + [283455] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752687,15 +752348,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10125), 1, + ACTIONS(10109), 4, anon_sym_SEMI, - ACTIONS(10127), 1, anon_sym_LBRACE, - STATE(7399), 1, - sym_declaration_list, - STATE(6713), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752705,7 +752363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284022] = 12, + [283503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752726,12 +752384,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4054), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6714), 9, + ACTIONS(10111), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752741,7 +752399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284070] = 15, + [283551] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752762,15 +752420,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(10129), 1, + ACTIONS(10089), 1, + anon_sym_LBRACE, + ACTIONS(10101), 1, anon_sym_SEMI, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(6715), 9, + STATE(2073), 1, + sym__declaration_list_body, + STATE(7464), 1, + sym_declaration_list, + STATE(6705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752780,7 +752438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284124] = 15, + [283605] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752801,15 +752459,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - STATE(2830), 1, - sym_accessor_list, - STATE(7573), 1, - sym_arrow_expression_clause, - STATE(6716), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(6927), 1, + anon_sym_DOT, + STATE(6706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752819,7 +752477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284178] = 15, + [283659] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752840,15 +752498,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, - anon_sym_COMMA, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - ACTIONS(10131), 1, - anon_sym_RPAREN, - STATE(6717), 9, + ACTIONS(10089), 1, + anon_sym_LBRACE, + ACTIONS(10101), 1, + anon_sym_SEMI, + STATE(2094), 1, + sym__declaration_list_body, + STATE(7464), 1, + sym_declaration_list, + STATE(6707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752858,7 +752516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284232] = 14, + [283713] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752879,14 +752537,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9875), 1, + ACTIONS(9853), 1, anon_sym_and, - ACTIONS(9877), 1, + ACTIONS(9855), 1, anon_sym_or, - ACTIONS(6187), 2, + ACTIONS(6171), 2, anon_sym_COLON, anon_sym_when, - STATE(6718), 9, + STATE(6708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752896,7 +752554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284284] = 14, + [283765] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752917,14 +752575,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_COLON, - STATE(7244), 1, - sym_base_list, - ACTIONS(10133), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6719), 9, + ACTIONS(10113), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752934,7 +752590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284336] = 12, + [283813] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752955,12 +752611,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10137), 4, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9392), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6720), 9, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2693), 1, + sym_accessor_list, + STATE(7611), 1, + sym_arrow_expression_clause, + STATE(6710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752970,7 +752629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284384] = 15, + [283867] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752991,15 +752650,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(9396), 1, - anon_sym_EQ_GT, - STATE(2765), 1, - sym_accessor_list, - STATE(7696), 1, - sym_arrow_expression_clause, - STATE(6721), 9, + ACTIONS(10093), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + ACTIONS(10115), 1, + anon_sym_RPAREN, + STATE(6711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753009,7 +752668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284438] = 12, + [283921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753030,12 +752689,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10139), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6722), 9, + ACTIONS(10117), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753045,7 +752704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284486] = 14, + [283969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753066,14 +752725,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - ACTIONS(6187), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6723), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(7114), 1, + sym_type_parameter_list, + STATE(7115), 1, + sym_parameter_list, + STATE(6713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753083,7 +752743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284538] = 12, + [284023] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753104,12 +752764,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3159), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6724), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(10119), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753119,7 +752780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284586] = 13, + [284073] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753140,13 +752801,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10141), 1, - anon_sym_EQ, - ACTIONS(10143), 3, + ACTIONS(10121), 1, anon_sym_COMMA, + ACTIONS(10124), 2, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6725), 9, + STATE(6715), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753156,7 +752816,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284636] = 14, + aux_sym_bracketed_parameter_list_repeat1, + [284123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753177,14 +752838,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9795), 1, - anon_sym_COMMA, - STATE(6730), 1, - aux_sym_base_list_repeat1, - ACTIONS(9560), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6726), 9, + ACTIONS(3152), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753194,7 +752853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284688] = 12, + [284171] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753215,12 +752874,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10145), 4, - anon_sym_SEMI, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(10089), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6727), 9, + ACTIONS(10126), 1, + anon_sym_SEMI, + STATE(7759), 1, + sym_declaration_list, + STATE(6717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753230,7 +752892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284736] = 12, + [284225] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753251,12 +752913,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10147), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6728), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2864), 1, + sym_accessor_list, + STATE(7646), 1, + sym_arrow_expression_clause, + STATE(6718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753266,7 +752931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284784] = 12, + [284279] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753287,12 +752952,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4045), 4, - anon_sym_LBRACK, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(1899), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6729), 9, + anon_sym_RBRACK, + STATE(6719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753302,7 +752969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284832] = 13, + [284331] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753323,12 +752990,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10149), 1, - anon_sym_COMMA, - ACTIONS(9555), 2, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10128), 1, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6730), 10, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753338,8 +753008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [284882] = 15, + [284385] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753360,15 +753029,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(10093), 1, anon_sym_COMMA, - ACTIONS(10113), 1, + ACTIONS(10097), 1, anon_sym_and, - ACTIONS(10115), 1, + ACTIONS(10099), 1, anon_sym_or, - ACTIONS(10152), 1, + ACTIONS(10130), 1, anon_sym_RPAREN, - STATE(6731), 9, + STATE(6721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753378,7 +753047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284936] = 12, + [284439] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753399,12 +753068,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3167), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6732), 9, + ACTIONS(4050), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753414,7 +753083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284984] = 13, + [284487] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753435,12 +753104,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + ACTIONS(6171), 2, anon_sym_COMMA, - ACTIONS(10157), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6733), 10, + anon_sym_RPAREN, + STATE(6723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753450,8 +753121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat1, - [285034] = 15, + [284539] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753472,15 +753142,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(10093), 1, anon_sym_COMMA, - ACTIONS(10113), 1, + ACTIONS(10097), 1, anon_sym_and, - ACTIONS(10115), 1, + ACTIONS(10099), 1, anon_sym_or, - ACTIONS(10159), 1, + ACTIONS(10132), 1, anon_sym_RPAREN, - STATE(6734), 9, + STATE(6724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753490,7 +753160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285088] = 12, + [284593] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753511,12 +753181,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10161), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6735), 9, + ACTIONS(9797), 1, + anon_sym_COMMA, + STATE(6728), 1, + aux_sym_base_list_repeat1, + ACTIONS(9568), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753526,7 +753198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285136] = 15, + [284645] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753547,15 +753219,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10163), 1, - anon_sym_SEMI, - STATE(2092), 1, - sym__declaration_list_body, - STATE(7443), 1, - sym_declaration_list, - STATE(6736), 9, + ACTIONS(4024), 1, + anon_sym_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(9701), 1, + anon_sym_COMMA, + ACTIONS(9703), 1, + anon_sym_QMARK, + STATE(6726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753565,7 +753237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285190] = 12, + [284699] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753586,12 +753258,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10165), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6737), 9, + ACTIONS(10093), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + ACTIONS(10134), 1, + anon_sym_RPAREN, + STATE(6727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753601,7 +753276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285238] = 15, + [284753] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753622,15 +753297,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(10167), 1, + ACTIONS(10136), 1, + anon_sym_COMMA, + ACTIONS(9563), 2, anon_sym_SEMI, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(6793), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6738), 9, + anon_sym_LBRACE, + STATE(6728), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753640,7 +753312,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285292] = 15, + aux_sym_base_list_repeat1, + [284803] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753661,15 +753334,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(10139), 1, + anon_sym_LT, + ACTIONS(10141), 1, anon_sym_unmanaged, - ACTIONS(10098), 1, + ACTIONS(10143), 1, anon_sym_managed, - ACTIONS(10169), 1, - anon_sym_LT, - STATE(7604), 1, + STATE(7375), 1, sym_calling_convention, - STATE(6739), 9, + STATE(6729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753679,7 +753352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285346] = 15, + [284857] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753700,15 +753373,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, + ACTIONS(10089), 1, anon_sym_LBRACE, - ACTIONS(10163), 1, + ACTIONS(10145), 1, anon_sym_SEMI, - STATE(2094), 1, + STATE(2013), 1, sym__declaration_list_body, - STATE(7443), 1, + STATE(7751), 1, sym_declaration_list, - STATE(6740), 9, + STATE(6730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753718,7 +753391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285400] = 15, + [284911] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753739,15 +753412,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(10089), 1, anon_sym_LBRACE, - ACTIONS(10171), 1, + ACTIONS(10147), 1, anon_sym_SEMI, - STATE(2845), 1, - sym__declaration_list_body, - STATE(7429), 1, + STATE(7415), 1, sym_declaration_list, - STATE(6741), 9, + STATE(6731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753757,7 +753430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285454] = 15, + [284965] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753778,15 +753451,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(7012), 1, - anon_sym_DOT, - STATE(6742), 9, + ACTIONS(10141), 1, + anon_sym_unmanaged, + ACTIONS(10143), 1, + anon_sym_managed, + ACTIONS(10149), 1, + anon_sym_LT, + STATE(7603), 1, + sym_calling_convention, + STATE(6732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753796,7 +753469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285508] = 15, + [285019] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753817,15 +753490,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10171), 1, + ACTIONS(10153), 1, + anon_sym_COLON, + STATE(7319), 1, + sym_base_list, + ACTIONS(10151), 2, anon_sym_SEMI, - STATE(2846), 1, - sym__declaration_list_body, - STATE(7429), 1, - sym_declaration_list, - STATE(6743), 9, + anon_sym_LBRACE, + STATE(6733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753835,7 +753507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285562] = 15, + [285071] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753856,15 +753528,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10171), 1, - anon_sym_SEMI, - STATE(2848), 1, - sym__declaration_list_body, - STATE(7429), 1, - sym_declaration_list, - STATE(6744), 9, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(6199), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_or, + STATE(6734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753874,7 +753544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285616] = 15, + [285121] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753895,15 +753565,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(10173), 1, + ACTIONS(10089), 1, + anon_sym_LBRACE, + ACTIONS(10145), 1, anon_sym_SEMI, - STATE(6715), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(6745), 9, + STATE(2000), 1, + sym__declaration_list_body, + STATE(7751), 1, + sym_declaration_list, + STATE(6735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753913,7 +753583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285670] = 15, + [285175] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753934,15 +753604,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, - anon_sym_unmanaged, - ACTIONS(10098), 1, - anon_sym_managed, - ACTIONS(10175), 1, - anon_sym_LT, - STATE(7639), 1, - sym_calling_convention, - STATE(6746), 9, + ACTIONS(10089), 1, + anon_sym_LBRACE, + ACTIONS(10145), 1, + anon_sym_SEMI, + STATE(2005), 1, + sym__declaration_list_body, + STATE(7751), 1, + sym_declaration_list, + STATE(6736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753952,7 +753622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285724] = 15, + [285229] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753973,15 +753643,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(7132), 1, - sym_parameter_list, - STATE(7328), 1, - sym_type_parameter_list, - STATE(6747), 9, + ACTIONS(10153), 1, + anon_sym_COLON, + STATE(7217), 1, + sym_base_list, + ACTIONS(10155), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753991,7 +753660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285778] = 15, + [285281] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754012,15 +753681,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10171), 1, - anon_sym_SEMI, - STATE(2850), 1, - sym__declaration_list_body, - STATE(7429), 1, - sym_declaration_list, - STATE(6748), 9, + ACTIONS(10157), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754030,7 +753696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285832] = 15, + [285329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754051,15 +753717,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10177), 1, + ACTIONS(10141), 1, + anon_sym_unmanaged, + ACTIONS(10143), 1, + anon_sym_managed, + ACTIONS(10159), 1, + anon_sym_LT, + STATE(7636), 1, + sym_calling_convention, + STATE(6739), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [285383] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10161), 1, anon_sym_SEMI, - STATE(2008), 1, - sym__declaration_list_body, - STATE(7762), 1, - sym_declaration_list, - STATE(6749), 9, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6720), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754069,7 +753774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285886] = 15, + [285437] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754090,15 +753795,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, + ACTIONS(10089), 1, anon_sym_LBRACE, - ACTIONS(10177), 1, + ACTIONS(10145), 1, anon_sym_SEMI, - STATE(2009), 1, + STATE(2018), 1, sym__declaration_list_body, - STATE(7762), 1, + STATE(7751), 1, sym_declaration_list, - STATE(6750), 9, + STATE(6741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754108,7 +753813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285940] = 15, + [285491] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754129,15 +753834,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, - anon_sym_unmanaged, - ACTIONS(10098), 1, - anon_sym_managed, - ACTIONS(10179), 1, - anon_sym_LT, - STATE(7666), 1, - sym_calling_convention, - STATE(6751), 9, + ACTIONS(10163), 1, + anon_sym_EQ, + ACTIONS(10165), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754147,7 +753850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285994] = 15, + [285541] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754168,15 +753871,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10177), 1, - anon_sym_SEMI, - STATE(2011), 1, - sym__declaration_list_body, - STATE(7762), 1, - sym_declaration_list, - STATE(6752), 9, + ACTIONS(4054), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754186,7 +753886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286048] = 15, + [285589] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754207,15 +753907,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(10181), 1, - anon_sym_SEMI, - STATE(6692), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(6753), 9, + ACTIONS(9853), 1, + anon_sym_and, + ACTIONS(6199), 3, + anon_sym_COLON, + anon_sym_when, + anon_sym_or, + STATE(6744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754225,7 +753923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286102] = 15, + [285639] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754246,15 +753944,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, + ACTIONS(10089), 1, anon_sym_LBRACE, - ACTIONS(10177), 1, + ACTIONS(10101), 1, anon_sym_SEMI, - STATE(2013), 1, + STATE(2086), 1, sym__declaration_list_body, - STATE(7762), 1, + STATE(7464), 1, sym_declaration_list, - STATE(6754), 9, + STATE(6745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754264,7 +753962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286156] = 14, + [285693] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754285,14 +753983,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(9676), 1, - anon_sym_QMARK, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6755), 9, + ACTIONS(10087), 1, + anon_sym_SEMI, + ACTIONS(10089), 1, + anon_sym_LBRACE, + STATE(2768), 1, + sym__declaration_list_body, + STATE(7704), 1, + sym_declaration_list, + STATE(6746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754302,7 +754001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286208] = 12, + [285747] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754323,12 +754022,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4023), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6756), 9, + ACTIONS(10087), 1, + anon_sym_SEMI, + ACTIONS(10089), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym__declaration_list_body, + STATE(7704), 1, + sym_declaration_list, + STATE(6747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754338,7 +754040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286256] = 12, + [285801] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754359,12 +754061,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10183), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6757), 9, + ACTIONS(10141), 1, + anon_sym_unmanaged, + ACTIONS(10143), 1, + anon_sym_managed, + ACTIONS(10167), 1, + anon_sym_LT, + STATE(7661), 1, + sym_calling_convention, + STATE(6748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754374,7 +754079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286304] = 15, + [285855] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754395,15 +754100,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(10141), 1, anon_sym_unmanaged, - ACTIONS(10098), 1, + ACTIONS(10143), 1, anon_sym_managed, - ACTIONS(10185), 1, + ACTIONS(10169), 1, anon_sym_LT, - STATE(7682), 1, + STATE(7694), 1, sym_calling_convention, - STATE(6758), 9, + STATE(6749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754413,7 +754118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286358] = 13, + [285909] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754434,13 +754139,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10187), 1, - anon_sym_EQ, - ACTIONS(10189), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6759), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(7280), 1, + sym_type_parameter_list, + STATE(7281), 1, + sym_parameter_list, + STATE(6750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754450,34 +754157,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286408] = 13, - ACTIONS(9181), 1, + [285963] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10191), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6760), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(10171), 1, + anon_sym_EQ, + ACTIONS(10165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754487,7 +754195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286458] = 12, + [286015] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754508,12 +754216,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10195), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6761), 9, + ACTIONS(10173), 1, + anon_sym_COMMA, + ACTIONS(10176), 2, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6752), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754523,7 +754231,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286506] = 15, + aux_sym_type_argument_list_repeat1, + [286065] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754544,15 +754253,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(7282), 1, - sym_type_parameter_list, - STATE(7286), 1, - sym_parameter_list, - STATE(6762), 9, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(10178), 1, + anon_sym_EQ, + ACTIONS(10180), 1, + anon_sym_COMMA, + ACTIONS(10183), 1, + anon_sym_RPAREN, + STATE(6753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754562,7 +754271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286560] = 15, + [286119] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754583,15 +754292,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10163), 1, - anon_sym_SEMI, - STATE(2085), 1, - sym__declaration_list_body, - STATE(7443), 1, - sym_declaration_list, - STATE(6763), 9, + ACTIONS(10185), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754601,7 +754307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286614] = 15, + [286167] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754622,15 +754328,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(10141), 1, anon_sym_unmanaged, - ACTIONS(10098), 1, + ACTIONS(10143), 1, anon_sym_managed, - ACTIONS(10197), 1, + ACTIONS(10187), 1, anon_sym_LT, - STATE(7694), 1, + STATE(7678), 1, sym_calling_convention, - STATE(6764), 9, + STATE(6755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754640,7 +754346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286668] = 13, + [286221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754661,13 +754367,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9875), 1, - anon_sym_and, - ACTIONS(6201), 3, - anon_sym_COLON, - anon_sym_when, - anon_sym_or, - STATE(6765), 9, + ACTIONS(4032), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6756), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [286269] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10189), 1, + anon_sym_SEMI, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6779), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754677,7 +754421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286718] = 13, + [286323] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754698,13 +754442,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10199), 1, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(9739), 1, anon_sym_EQ, - ACTIONS(10201), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6766), 9, + ACTIONS(10191), 1, + anon_sym_COMMA, + ACTIONS(10195), 1, + anon_sym_RPAREN, + STATE(6758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754714,7 +754460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286768] = 15, + [286377] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754735,15 +754481,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(10141), 1, anon_sym_unmanaged, - ACTIONS(10098), 1, + ACTIONS(10143), 1, anon_sym_managed, - ACTIONS(10203), 1, + ACTIONS(10197), 1, anon_sym_LT, - STATE(7706), 1, + STATE(7691), 1, sym_calling_convention, - STATE(6767), 9, + STATE(6759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754753,7 +754499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286822] = 13, + [286431] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754774,12 +754520,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10205), 1, + ACTIONS(4024), 1, + anon_sym_GT, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(9701), 1, anon_sym_COMMA, - ACTIONS(7558), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6768), 10, + STATE(6760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754789,8 +754538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [286872] = 14, + [286485] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754811,14 +754559,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_COLON, - STATE(7155), 1, - sym_base_list, - ACTIONS(10208), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6769), 9, + ACTIONS(10199), 1, + anon_sym_EQ, + ACTIONS(10201), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754828,7 +754575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286924] = 13, + [286535] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754849,13 +754596,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(6201), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_or, - STATE(6770), 9, + ACTIONS(10141), 1, + anon_sym_unmanaged, + ACTIONS(10143), 1, + anon_sym_managed, + ACTIONS(10203), 1, + anon_sym_LT, + STATE(7703), 1, + sym_calling_convention, + STATE(6762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754865,33 +754614,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286974] = 12, - ACTIONS(3), 1, + [286589] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10210), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6771), 9, + ACTIONS(10207), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10205), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754901,7 +754651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287022] = 14, + [286639] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754922,14 +754672,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(10209), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - ACTIONS(10212), 1, - anon_sym_EQ, - ACTIONS(10214), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6772), 9, + STATE(6764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754939,7 +754687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287074] = 15, + [286687] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754960,15 +754708,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(9688), 1, - anon_sym_EQ, - ACTIONS(10189), 1, - anon_sym_RPAREN, - ACTIONS(10216), 1, - anon_sym_COMMA, - STATE(6773), 9, + ACTIONS(10211), 1, + anon_sym_LPAREN, + ACTIONS(10215), 1, + sym_integer_literal, + ACTIONS(10213), 2, + anon_sym_default, + anon_sym_hidden, + STATE(6765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754978,7 +754725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287128] = 14, + [286739] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754999,14 +754746,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_COLON, - STATE(7329), 1, - sym_base_list, - ACTIONS(10220), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6774), 9, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + ACTIONS(10093), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755016,34 +754763,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287180] = 13, - ACTIONS(9181), 1, + [286791] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10224), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10222), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6775), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(6694), 1, + sym_parameter_list, + STATE(7300), 1, + sym_type_parameter_list, + STATE(6767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755053,7 +754802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287230] = 15, + [286845] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755074,15 +754823,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9674), 1, - anon_sym_COMMA, - STATE(6776), 9, + ACTIONS(10217), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755092,36 +754838,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287284] = 15, - ACTIONS(3), 1, + [286893] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(6792), 1, - sym_parameter_list, - STATE(7110), 1, - sym_type_parameter_list, - STATE(6777), 9, + ACTIONS(10207), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10205), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755131,36 +754875,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287338] = 15, - ACTIONS(3), 1, + [286943] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10163), 1, - anon_sym_SEMI, - STATE(2086), 1, - sym__declaration_list_body, - STATE(7443), 1, - sym_declaration_list, - STATE(6778), 9, + ACTIONS(10221), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10219), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755170,7 +754912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287392] = 12, + [286993] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755191,12 +754933,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6779), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10223), 1, + anon_sym_SEMI, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755206,7 +754951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287440] = 13, + [287047] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755227,13 +754972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10226), 1, + ACTIONS(10225), 1, anon_sym_EQ, - ACTIONS(10214), 3, + ACTIONS(10195), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6780), 9, + STATE(6772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755243,7 +754988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287490] = 15, + [287097] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755264,15 +755009,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(9674), 1, - anon_sym_COMMA, - ACTIONS(9676), 1, - anon_sym_QMARK, - STATE(6781), 9, + ACTIONS(10227), 1, + anon_sym_EQ, + ACTIONS(10229), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755282,7 +755025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287544] = 13, + [287147] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755303,13 +755046,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10228), 1, - anon_sym_EQ, - ACTIONS(10230), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6782), 9, + ACTIONS(9885), 1, + anon_sym_and, + ACTIONS(9895), 1, + anon_sym_or, + ACTIONS(10231), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755319,7 +755063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287594] = 13, + [287199] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755340,13 +755084,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9986), 1, - anon_sym_and, - ACTIONS(6201), 3, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_or, - STATE(6783), 9, + ACTIONS(10153), 1, + anon_sym_COLON, + STATE(7295), 1, + sym_base_list, + ACTIONS(10233), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755356,7 +755101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287644] = 14, + [287251] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755377,14 +755122,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - ACTIONS(10119), 2, + ACTIONS(10235), 1, anon_sym_COMMA, + ACTIONS(7594), 2, anon_sym_RPAREN, - STATE(6784), 9, + anon_sym_RBRACE, + STATE(6776), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755394,7 +755137,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287696] = 12, + aux_sym__for_statement_conditions_repeat1, + [287301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755415,12 +755159,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10232), 4, + ACTIONS(10238), 4, sym_interpolation_end_quote, sym_interpolation_open_brace, sym_interpolation_string_content, sym_escape_sequence, - STATE(6785), 9, + STATE(6777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755430,7 +755174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287744] = 13, + [287349] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755451,13 +755195,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5424), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(5428), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6786), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2795), 1, + sym_accessor_list, + STATE(7429), 1, + sym_arrow_expression_clause, + STATE(6778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755467,7 +755213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287794] = 14, + [287403] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755488,14 +755234,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10234), 1, - anon_sym_LPAREN, - ACTIONS(10238), 1, - sym_integer_literal, - ACTIONS(10236), 2, - anon_sym_default, - anon_sym_hidden, - STATE(6787), 9, + ACTIONS(9426), 1, + anon_sym_where, + ACTIONS(10240), 1, + anon_sym_SEMI, + STATE(6511), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6703), 1, + sym_type_parameter_constraints_clause, + STATE(6779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755505,7 +755252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287846] = 15, + [287457] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755526,15 +755273,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - ACTIONS(9424), 1, - anon_sym_LT, - STATE(7154), 1, - sym_type_parameter_list, - STATE(7166), 1, - sym_parameter_list, - STATE(6788), 9, + ACTIONS(9797), 1, + anon_sym_COMMA, + STATE(6725), 1, + aux_sym_base_list_repeat1, + ACTIONS(9573), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755544,7 +755290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287900] = 15, + [287509] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755565,15 +755311,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(4020), 4, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(10113), 1, - anon_sym_and, - ACTIONS(10115), 1, - anon_sym_or, - ACTIONS(10240), 1, - anon_sym_RPAREN, - STATE(6789), 9, + anon_sym_GT, + anon_sym_STAR, + STATE(6781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755583,34 +755326,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287954] = 13, - ACTIONS(9181), 1, + [287557] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10224), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10222), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6790), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2758), 1, + sym_accessor_list, + STATE(7396), 1, + sym_arrow_expression_clause, + STATE(6782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755620,7 +755365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288004] = 15, + [287611] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755641,15 +755386,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10127), 1, - anon_sym_LBRACE, - ACTIONS(10242), 1, - anon_sym_SEMI, - STATE(7412), 1, - sym_declaration_list, - STATE(6791), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9701), 1, + anon_sym_COMMA, + STATE(6783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755659,7 +755404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288058] = 12, + [287665] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755680,12 +755425,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10244), 4, + ACTIONS(10242), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(6792), 9, + STATE(6784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755695,7 +755440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288106] = 15, + [287713] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755716,15 +755461,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_where, - ACTIONS(10246), 1, - anon_sym_SEMI, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6722), 1, - sym_type_parameter_constraints_clause, - STATE(6793), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, + anon_sym_LT, + STATE(7164), 1, + sym_type_parameter_list, + STATE(7166), 1, + sym_parameter_list, + STATE(6785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755734,7 +755479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288160] = 15, + [287767] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755755,15 +755500,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_GT, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(9674), 1, - anon_sym_COMMA, - STATE(6794), 9, + ACTIONS(3159), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755773,7 +755515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288214] = 14, + [287815] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755794,14 +755536,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(5433), 2, anon_sym_and, - ACTIONS(9819), 1, anon_sym_or, - ACTIONS(1953), 2, + ACTIONS(5496), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6795), 9, + anon_sym_RPAREN, + STATE(6787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755811,7 +755552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288266] = 14, + [287865] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755832,13 +755573,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(10248), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6796), 9, + ACTIONS(10059), 1, + anon_sym_and, + ACTIONS(6199), 3, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_or, + STATE(6788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755848,7 +755589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288317] = 14, + [287915] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755869,13 +755610,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10250), 1, + ACTIONS(10097), 1, + anon_sym_and, + ACTIONS(10099), 1, + anon_sym_or, + ACTIONS(10231), 2, anon_sym_COMMA, - ACTIONS(10252), 1, anon_sym_RPAREN, - STATE(7010), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6797), 9, + STATE(6789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755885,7 +755627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288368] = 14, + [287967] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755906,13 +755648,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2825), 1, - anon_sym_RBRACE, - ACTIONS(10254), 1, + ACTIONS(10244), 4, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6974), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6798), 9, + anon_sym_LBRACE, + anon_sym_where, + STATE(6790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755922,7 +755663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288419] = 14, + [288015] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755943,13 +755684,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2705), 1, - anon_sym_RBRACK, - ACTIONS(10256), 1, - anon_sym_COMMA, - STATE(6869), 1, - aux_sym_argument_list_repeat1, - STATE(6799), 9, + ACTIONS(3163), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755959,7 +755699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288470] = 14, + [288063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755980,13 +755720,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - ACTIONS(10260), 1, - anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(6800), 9, + ACTIONS(10246), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755996,7 +755735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288521] = 14, + [288111] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756017,13 +755756,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_RBRACE, - ACTIONS(10262), 1, + ACTIONS(9797), 1, anon_sym_COMMA, - STATE(6887), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6801), 9, + STATE(6728), 1, + aux_sym_base_list_repeat1, + ACTIONS(9573), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756033,7 +755773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288572] = 14, + [288163] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756054,13 +755794,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_RBRACE, - ACTIONS(10264), 1, - anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6802), 9, + ACTIONS(10087), 1, + anon_sym_SEMI, + ACTIONS(10089), 1, + anon_sym_LBRACE, + STATE(2766), 1, + sym__declaration_list_body, + STATE(7704), 1, + sym_declaration_list, + STATE(6794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756070,7 +755812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288623] = 14, + [288217] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756091,13 +755833,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10266), 1, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(9396), 1, + anon_sym_EQ_GT, + STATE(2804), 1, + sym_accessor_list, + STATE(7719), 1, + sym_arrow_expression_clause, + STATE(6795), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288271] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10248), 1, anon_sym_COMMA, - ACTIONS(10268), 1, + ACTIONS(10251), 1, anon_sym_RBRACE, - STATE(6827), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6803), 9, + STATE(6796), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756107,7 +755886,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288674] = 13, + aux_sym_positional_pattern_clause_repeat1, + [288320] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756128,12 +755908,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10272), 1, + ACTIONS(10253), 1, anon_sym_EQ, - ACTIONS(10270), 2, - anon_sym_SEMI, + ACTIONS(10183), 2, anon_sym_COMMA, - STATE(6804), 9, + anon_sym_RPAREN, + STATE(6797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756143,7 +755923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288723] = 14, + [288369] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756164,13 +755944,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_LBRACE, - ACTIONS(10274), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_block, - STATE(6805), 9, + ACTIONS(10255), 1, + anon_sym_COMMA, + ACTIONS(10258), 1, + anon_sym_RPAREN, + STATE(6798), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756180,7 +755958,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288774] = 14, + aux_sym_using_variable_declaration_repeat1, + [288418] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756201,13 +755980,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(7661), 1, + ACTIONS(7761), 1, anon_sym_RBRACK, - STATE(6918), 1, + STATE(6943), 1, aux_sym_array_rank_specifier_repeat1, - STATE(6806), 9, + STATE(6799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756217,7 +755996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288825] = 14, + [288469] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756238,13 +756017,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(10276), 1, - anon_sym_SEMI, - STATE(2875), 1, - sym_accessor_list, - STATE(6807), 9, + ACTIONS(10260), 1, + anon_sym_COMMA, + ACTIONS(10262), 1, + anon_sym_GT, + STATE(6845), 1, + aux_sym_type_argument_list_repeat2, + STATE(6800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756254,7 +756033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288876] = 14, + [288520] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756275,13 +756054,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10278), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10280), 1, - anon_sym_RBRACK, - STATE(7094), 1, - aux_sym_global_attribute_repeat1, - STATE(6808), 9, + ACTIONS(10262), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756291,7 +756070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288927] = 14, + [288571] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756312,13 +756091,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - ACTIONS(10284), 1, + ACTIONS(10266), 1, anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6809), 9, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756328,7 +756107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288978] = 14, + [288622] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756349,13 +756128,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2961), 1, - aux_sym_preproc_if_token3, - ACTIONS(3003), 1, - anon_sym_LBRACK, - STATE(7408), 1, - sym_attribute_list, - STATE(6810), 9, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(7863), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756365,7 +756144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289029] = 14, + [288673] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756386,13 +756165,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10268), 1, anon_sym_COMMA, - ACTIONS(10286), 1, - anon_sym_RBRACK, - STATE(6819), 1, - aux_sym_type_argument_list_repeat1, - STATE(6811), 9, + ACTIONS(10271), 1, + anon_sym_RPAREN, + STATE(6804), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756402,7 +756179,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289080] = 14, + aux_sym_attribute_argument_list_repeat1, + [288722] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756423,13 +756201,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, - anon_sym_COMMA, - ACTIONS(10290), 1, + ACTIONS(8925), 1, anon_sym_RBRACK, - STATE(6915), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6812), 9, + ACTIONS(10273), 1, + anon_sym_COMMA, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6805), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288773] = 14, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10275), 1, + anon_sym_DQUOTE, + ACTIONS(10277), 1, + aux_sym_preproc_if_token2, + STATE(7789), 1, + sym_string_literal, + STATE(6806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756439,7 +756254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289131] = 14, + [288824] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756460,13 +756275,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(7594), 1, + anon_sym_SEMI, + ACTIONS(10279), 1, anon_sym_COMMA, - ACTIONS(10292), 1, - anon_sym_RBRACK, - STATE(7105), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6813), 9, + STATE(6807), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756476,7 +756289,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289182] = 14, + aux_sym__for_statement_conditions_repeat1, + [288873] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756497,13 +756311,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_RBRACK, - STATE(6853), 1, + ACTIONS(10284), 1, + anon_sym_RPAREN, + STATE(6873), 1, aux_sym_argument_list_repeat1, - STATE(6814), 9, + STATE(6808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756513,7 +756327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289233] = 14, + [288924] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756534,13 +756348,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(7907), 3, anon_sym_COMMA, - ACTIONS(10300), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(6815), 9, + STATE(6809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756550,7 +756362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289284] = 14, + [288971] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756571,13 +756383,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10250), 1, + ACTIONS(2855), 1, + anon_sym_RBRACE, + ACTIONS(10286), 1, anon_sym_COMMA, - ACTIONS(10302), 1, - anon_sym_RPAREN, - STATE(6797), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6816), 9, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756587,7 +756399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289335] = 14, + [289022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756608,13 +756420,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(10117), 1, - anon_sym_RPAREN, - ACTIONS(10304), 1, + ACTIONS(10288), 1, anon_sym_COMMA, - STATE(6817), 9, + ACTIONS(10291), 1, + anon_sym_GT, + STATE(6811), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756624,7 +756434,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289386] = 14, + aux_sym_type_parameter_list_repeat1, + [289071] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756645,13 +756456,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_LPAREN, + STATE(1951), 1, + sym_block, + STATE(6812), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [289122] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10307), 1, - anon_sym_GT, - STATE(6733), 1, + ACTIONS(10295), 1, + anon_sym_RBRACK, + STATE(6825), 1, aux_sym_type_argument_list_repeat1, - STATE(6818), 9, + STATE(6813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756661,7 +756509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289437] = 14, + [289173] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756682,13 +756530,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10297), 1, anon_sym_COMMA, - ACTIONS(10309), 1, + ACTIONS(10299), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6819), 9, + STATE(7034), 1, + aux_sym_calling_convention_repeat1, + STATE(6814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756698,7 +756546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289488] = 14, + [289224] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756719,13 +756567,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, + ACTIONS(10301), 1, anon_sym_COMMA, - ACTIONS(10311), 1, + ACTIONS(10303), 1, + anon_sym_RBRACK, + STATE(6967), 1, + aux_sym_global_attribute_repeat1, + STATE(6815), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [289275] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10305), 1, + anon_sym_COMMA, + ACTIONS(10308), 1, anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6820), 9, + STATE(6816), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756735,7 +756618,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289539] = 14, + aux_sym_variable_declaration_repeat1, + [289324] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756756,13 +756640,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_RBRACE, - ACTIONS(10313), 1, + ACTIONS(10310), 1, anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6821), 9, + ACTIONS(10312), 1, + anon_sym_RBRACK, + STATE(6973), 1, + aux_sym_argument_list_repeat1, + STATE(6817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756772,7 +756656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289590] = 14, + [289375] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756793,13 +756677,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10314), 1, + anon_sym_COMMA, + ACTIONS(10316), 1, + anon_sym_RPAREN, + STATE(6918), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6818), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [289426] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7877), 3, anon_sym_COMMA, - ACTIONS(10315), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6822), 9, + anon_sym_RPAREN, + STATE(6819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756809,7 +756728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289641] = 14, + [289473] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756830,13 +756749,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_RPAREN, - ACTIONS(10317), 1, - anon_sym_COMMA, - STATE(6902), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6823), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(10318), 1, + anon_sym_SEMI, + STATE(2791), 1, + sym_accessor_list, + STATE(6820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756846,7 +756765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289692] = 14, + [289524] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756867,13 +756786,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10319), 1, - sym_integer_literal, - ACTIONS(10321), 1, - anon_sym_DQUOTE, - STATE(7652), 1, - sym_string_literal, - STATE(6824), 9, + ACTIONS(7648), 1, + anon_sym_COMMA, + ACTIONS(10320), 1, + anon_sym_RPAREN, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756883,7 +756802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289743] = 14, + [289575] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756904,13 +756823,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10325), 1, - anon_sym_GT, - STATE(6836), 1, - aux_sym_type_argument_list_repeat2, - STATE(6825), 9, + ACTIONS(10322), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756920,7 +756839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289794] = 14, + [289626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756941,13 +756860,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10324), 3, anon_sym_COMMA, - ACTIONS(10325), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6826), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756957,7 +756874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289845] = 14, + [289673] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756978,13 +756895,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2795), 1, - anon_sym_RBRACE, - ACTIONS(10327), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(6974), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6827), 9, + ACTIONS(7672), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756994,7 +756911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289896] = 14, + [289724] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757015,13 +756932,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10329), 1, + ACTIONS(10326), 1, anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6828), 9, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757031,7 +756948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289947] = 14, + [289775] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757052,13 +756969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10331), 1, + ACTIONS(10328), 3, anon_sym_COMMA, - ACTIONS(10333), 1, - anon_sym_RBRACE, - STATE(6840), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6829), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757068,7 +756983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289998] = 14, + [289822] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757089,13 +757004,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10330), 1, anon_sym_COMMA, - ACTIONS(10335), 1, - anon_sym_GT, - STATE(6833), 1, - aux_sym_type_argument_list_repeat2, - STATE(6830), 9, + ACTIONS(10332), 1, + anon_sym_RBRACE, + STATE(6853), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757105,7 +757020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290049] = 14, + [289873] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757126,13 +757041,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10335), 1, + ACTIONS(10334), 1, anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6831), 9, + STATE(6836), 1, + aux_sym_type_argument_list_repeat2, + STATE(6828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757142,7 +757057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290100] = 14, + [289924] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757163,13 +757078,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2773), 1, - anon_sym_RBRACE, - ACTIONS(10337), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(6974), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6832), 9, + ACTIONS(10334), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757179,7 +757094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290151] = 14, + [289975] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757200,13 +757115,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10339), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6833), 9, + ACTIONS(10336), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757216,34 +757131,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290202] = 14, - ACTIONS(3), 1, + [290026] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_COMMA, - ACTIONS(10341), 1, - anon_sym_RPAREN, - STATE(6815), 1, - aux_sym_argument_list_repeat1, - STATE(6834), 9, + ACTIONS(10338), 1, + aux_sym_preproc_if_token2, + ACTIONS(10340), 2, + anon_sym_annotations, + anon_sym_warnings, + STATE(6831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757253,7 +757167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290253] = 14, + [290075] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757274,13 +757188,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10343), 1, + ACTIONS(10342), 3, anon_sym_COMMA, - ACTIONS(10345), 1, - anon_sym_RBRACE, - STATE(6846), 1, - aux_sym__with_body_repeat1, - STATE(6835), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757290,7 +757202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290304] = 14, + [290122] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757311,13 +757223,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10347), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6836), 9, + ACTIONS(10346), 1, + anon_sym_RPAREN, + STATE(6715), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757327,7 +757239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290355] = 14, + [290173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757348,13 +757260,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10349), 1, - anon_sym_COMMA, - ACTIONS(10351), 1, - anon_sym_GT, - STATE(7049), 1, - aux_sym_type_parameter_list_repeat1, - STATE(6837), 9, + ACTIONS(10348), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757364,7 +757274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290406] = 14, + [290220] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757385,13 +757295,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10353), 1, - anon_sym_RBRACK, - STATE(6844), 1, - aux_sym_type_argument_list_repeat1, - STATE(6838), 9, + ACTIONS(10350), 1, + anon_sym_GT, + STATE(6849), 1, + aux_sym_type_argument_list_repeat2, + STATE(6835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757401,7 +757311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290457] = 14, + [290271] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757422,13 +757332,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10355), 1, - anon_sym_SEMI, - ACTIONS(10357), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(6907), 1, - aux_sym_variable_declaration_repeat1, - STATE(6839), 9, + ACTIONS(10352), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757438,7 +757348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290508] = 14, + [290322] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757459,13 +757369,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(10359), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(6887), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6840), 9, + ACTIONS(10350), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757475,7 +757385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290559] = 14, + [290373] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757496,13 +757406,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_RBRACK, - ACTIONS(10361), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(6841), 9, + ACTIONS(10354), 1, + anon_sym_RPAREN, + STATE(6852), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757512,7 +757422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290610] = 12, + [290424] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757533,11 +757443,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10363), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6842), 9, + ACTIONS(2335), 1, + anon_sym_RBRACK, + ACTIONS(10356), 1, + anon_sym_COMMA, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757547,7 +757459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290657] = 12, + [290475] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757568,11 +757480,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10365), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6843), 9, + ACTIONS(2339), 1, + anon_sym_RBRACK, + ACTIONS(10358), 1, + anon_sym_COMMA, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757582,7 +757496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290704] = 14, + [290526] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757603,13 +757517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10367), 1, + ACTIONS(10360), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6844), 9, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757619,7 +757533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290755] = 14, + [290577] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757640,13 +757554,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10369), 1, + ACTIONS(10362), 3, anon_sym_COMMA, - ACTIONS(10371), 1, anon_sym_RBRACK, - STATE(7053), 1, - aux_sym_global_attribute_repeat1, - STATE(6845), 9, + anon_sym_RPAREN, + STATE(6842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757656,7 +757568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290806] = 14, + [290624] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757677,13 +757589,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9219), 1, - anon_sym_RBRACE, - ACTIONS(10373), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(6846), 9, + ACTIONS(10366), 1, + anon_sym_GT, + STATE(6811), 1, + aux_sym_type_parameter_list_repeat1, + STATE(6843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757693,7 +757605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290857] = 14, + [290675] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757714,13 +757626,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10368), 1, anon_sym_COMMA, - ACTIONS(10375), 1, - anon_sym_RPAREN, - STATE(6691), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6847), 9, + ACTIONS(10370), 1, + anon_sym_RBRACE, + STATE(6856), 1, + aux_sym__with_body_repeat1, + STATE(6844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757730,7 +757642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290908] = 14, + [290726] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757751,13 +757663,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(7659), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6848), 9, + ACTIONS(10372), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757767,7 +757679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290959] = 14, + [290777] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757788,13 +757700,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10127), 1, - anon_sym_LBRACE, - STATE(7643), 1, - sym_declaration_list, - STATE(6849), 9, + ACTIONS(8923), 1, + anon_sym_RBRACK, + ACTIONS(10374), 1, + anon_sym_COMMA, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757804,7 +757716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291010] = 12, + [290828] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757825,11 +757737,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7888), 3, - anon_sym_COMMA, + ACTIONS(8923), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6850), 9, + ACTIONS(10374), 1, + anon_sym_COMMA, + STATE(6871), 1, + aux_sym_global_attribute_repeat1, + STATE(6847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757839,7 +757753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291057] = 14, + [290879] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757860,13 +757774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_RBRACE, - ACTIONS(10377), 1, - anon_sym_COMMA, - STATE(7096), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6851), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(10376), 1, + anon_sym_SEMI, + STATE(2725), 1, + sym_accessor_list, + STATE(6848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757876,7 +757790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291108] = 14, + [290930] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757897,13 +757811,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10379), 1, - anon_sym_RPAREN, - STATE(6941), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6852), 9, + ACTIONS(10378), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757913,7 +757827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291159] = 14, + [290981] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757934,13 +757848,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2709), 1, - anon_sym_RBRACK, - ACTIONS(10381), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6761), 1, + anon_sym_QMARK, + ACTIONS(9701), 1, anon_sym_COMMA, - STATE(6869), 1, - aux_sym_argument_list_repeat1, - STATE(6853), 9, + STATE(6850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757950,7 +757864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291210] = 13, + [291032] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757971,11 +757885,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10383), 1, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(9701), 1, anon_sym_COMMA, - ACTIONS(10386), 1, - anon_sym_RBRACK, - STATE(6854), 10, + STATE(6851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757985,8 +757901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_global_attribute_repeat1, - [291259] = 14, + [291083] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758007,13 +757922,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10388), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10390), 1, + ACTIONS(10380), 1, + anon_sym_RPAREN, + STATE(6715), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6852), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [291134] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2267), 1, anon_sym_RBRACE, - STATE(6832), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6855), 9, + ACTIONS(10382), 1, + anon_sym_COMMA, + STATE(6922), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758023,7 +757975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291310] = 14, + [291185] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758044,13 +757996,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8941), 1, + ACTIONS(2311), 1, anon_sym_RBRACK, - ACTIONS(10392), 1, + ACTIONS(10384), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6856), 9, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758060,7 +758012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291361] = 14, + [291236] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758081,13 +758033,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10394), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10396), 1, - anon_sym_RBRACK, - STATE(6961), 1, - aux_sym_global_attribute_repeat1, - STATE(6857), 9, + ACTIONS(10388), 1, + anon_sym_RPAREN, + STATE(6868), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758097,7 +758049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291412] = 14, + [291287] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758118,13 +758070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(9215), 1, + anon_sym_RBRACE, + ACTIONS(10390), 1, anon_sym_COMMA, - ACTIONS(10398), 1, - anon_sym_GT, - STATE(6861), 1, - aux_sym_type_argument_list_repeat2, - STATE(6858), 9, + STATE(6972), 1, + aux_sym__with_body_repeat1, + STATE(6856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758134,7 +758086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291463] = 14, + [291338] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758155,13 +758107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10297), 1, anon_sym_COMMA, - ACTIONS(10398), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6859), 9, + ACTIONS(10392), 1, + anon_sym_RBRACK, + STATE(6814), 1, + aux_sym_calling_convention_repeat1, + STATE(6857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758171,7 +758123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291514] = 14, + [291389] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758192,13 +758144,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10394), 1, anon_sym_COMMA, - ACTIONS(10400), 1, - anon_sym_RBRACK, - STATE(6863), 1, - aux_sym_type_argument_list_repeat1, - STATE(6860), 9, + ACTIONS(10396), 1, + anon_sym_RBRACE, + STATE(6983), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758208,7 +758160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291565] = 14, + [291440] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758229,13 +758181,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10402), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6861), 9, + ACTIONS(10398), 1, + anon_sym_RBRACK, + STATE(7056), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758245,7 +758197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291616] = 14, + [291491] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758266,13 +758218,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10404), 1, - anon_sym_SEMI, - STATE(7080), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6862), 9, + ACTIONS(10400), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758282,7 +758234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291667] = 14, + [291542] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758303,13 +758255,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10406), 1, + ACTIONS(10402), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6863), 9, + STATE(7074), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758319,7 +758271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291718] = 12, + [291593] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758340,11 +758292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10408), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6864), 9, + ACTIONS(5077), 1, + anon_sym_COMMA, + ACTIONS(10404), 1, + anon_sym_RBRACK, + STATE(6870), 1, + aux_sym_type_argument_list_repeat1, + STATE(6862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758354,7 +758308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291765] = 14, + [291644] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758375,13 +758329,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, - anon_sym_LBRACE, - ACTIONS(10274), 1, - anon_sym_LPAREN, - STATE(2125), 1, - sym_block, - STATE(6865), 9, + ACTIONS(10406), 1, + anon_sym_COMMA, + ACTIONS(10408), 1, + anon_sym_RBRACE, + STATE(7021), 1, + aux_sym__with_body_repeat1, + STATE(6863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758391,7 +758345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291816] = 14, + [291695] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758412,13 +758366,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(10410), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6866), 9, + ACTIONS(10410), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758428,7 +758380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291867] = 12, + [291742] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758449,11 +758401,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 3, + ACTIONS(10260), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6867), 9, + ACTIONS(10412), 1, + anon_sym_GT, + STATE(6924), 1, + aux_sym_type_argument_list_repeat2, + STATE(6865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758463,7 +758417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291914] = 12, + [291793] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758484,11 +758438,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10414), 3, - anon_sym_disable, - anon_sym_restore, - anon_sym_enable, - STATE(6868), 9, + ACTIONS(10195), 1, + anon_sym_RPAREN, + ACTIONS(10225), 1, + anon_sym_EQ, + ACTIONS(10414), 1, + anon_sym_COMMA, + STATE(6866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758498,7 +758454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291961] = 13, + [291844] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758519,11 +758475,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_RBRACK, - ACTIONS(10416), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(6869), 10, + ACTIONS(10412), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758533,8 +758491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [292010] = 14, + [291895] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758555,13 +758512,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10419), 1, + ACTIONS(10417), 1, anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6870), 9, + STATE(6965), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758571,7 +758528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292061] = 14, + [291946] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758592,13 +758549,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6773), 1, - anon_sym_QMARK, - ACTIONS(9674), 1, + ACTIONS(10419), 1, anon_sym_COMMA, - STATE(6871), 9, + ACTIONS(10421), 1, + anon_sym_RBRACK, + STATE(6929), 1, + aux_sym_global_attribute_repeat1, + STATE(6869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758608,7 +758565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292112] = 14, + [291997] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758629,13 +758586,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10421), 1, + ACTIONS(5077), 1, anon_sym_COMMA, ACTIONS(10423), 1, - anon_sym_RPAREN, - STATE(6881), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6872), 9, + anon_sym_RBRACK, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758645,7 +758602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292163] = 12, + [292048] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758666,11 +758623,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10425), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6873), 9, + ACTIONS(8927), 1, + anon_sym_RBRACK, + ACTIONS(10425), 1, + anon_sym_COMMA, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758680,7 +758639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292210] = 14, + [292099] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758701,13 +758660,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, - anon_sym_COMMA, ACTIONS(10427), 1, - anon_sym_GT, - STATE(6878), 1, - aux_sym_type_argument_list_repeat2, - STATE(6874), 9, + anon_sym_COMMA, + ACTIONS(10430), 1, + anon_sym_RPAREN, + STATE(6872), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758717,7 +758674,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292261] = 14, + aux_sym_tuple_type_repeat1, + [292148] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758738,13 +758696,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10432), 1, anon_sym_COMMA, - ACTIONS(10427), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6875), 9, + ACTIONS(10435), 1, + anon_sym_RPAREN, + STATE(6873), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758754,7 +758710,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292312] = 14, + aux_sym_argument_list_repeat1, + [292197] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758775,13 +758732,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10429), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10431), 1, - anon_sym_RBRACK, - STATE(6943), 1, - aux_sym_global_attribute_repeat1, - STATE(6876), 9, + ACTIONS(10437), 1, + anon_sym_GT, + STATE(6917), 1, + aux_sym_type_argument_list_repeat2, + STATE(6874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758791,7 +758748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292363] = 14, + [292248] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758812,13 +758769,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(9674), 1, + ACTIONS(2687), 1, + anon_sym_RBRACK, + ACTIONS(10439), 1, anon_sym_COMMA, - STATE(6877), 9, + STATE(7050), 1, + aux_sym_argument_list_repeat1, + STATE(6875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758828,7 +758785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292414] = 14, + [292299] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758849,13 +758806,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(2177), 1, + anon_sym_RBRACE, + ACTIONS(10441), 1, anon_sym_COMMA, - ACTIONS(10433), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6878), 9, + STATE(6922), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758865,7 +758822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292465] = 14, + [292350] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758886,13 +758843,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(5077), 1, anon_sym_COMMA, ACTIONS(10437), 1, - anon_sym_RBRACK, - STATE(6952), 1, - aux_sym_argument_list_repeat1, - STATE(6879), 9, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758902,7 +758859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292516] = 14, + [292401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758923,13 +758880,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, - ACTIONS(6773), 1, - anon_sym_QMARK, - STATE(6880), 9, + ACTIONS(7638), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758939,7 +758894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292567] = 14, + [292448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758960,13 +758915,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10421), 1, - anon_sym_COMMA, - ACTIONS(10439), 1, - anon_sym_RPAREN, - STATE(7032), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6881), 9, + ACTIONS(10443), 1, + anon_sym_SEMI, + ACTIONS(10445), 1, + anon_sym_LBRACE, + STATE(7355), 1, + sym_enum_member_declaration_list, + STATE(6879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758976,7 +758931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292618] = 14, + [292499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758997,13 +758952,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8846), 1, - anon_sym_RBRACE, - ACTIONS(10441), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - STATE(6977), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(6882), 9, + ACTIONS(10447), 1, + anon_sym_RPAREN, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759013,7 +758968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292669] = 14, + [292550] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759034,13 +758989,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(10274), 1, - anon_sym_LPAREN, - STATE(7107), 1, - sym_block, - STATE(6883), 9, + ACTIONS(10449), 1, + anon_sym_COMMA, + ACTIONS(10452), 1, + anon_sym_RBRACE, + STATE(6881), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759050,7 +759003,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292720] = 13, + aux_sym_anonymous_object_creation_expression_repeat1, + [292599] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759071,12 +759025,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10443), 1, - anon_sym_EQ, - ACTIONS(10230), 2, + ACTIONS(5077), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6884), 9, + ACTIONS(10454), 1, + anon_sym_RBRACK, + STATE(6938), 1, + aux_sym_type_argument_list_repeat1, + STATE(6882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759086,7 +759041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292769] = 14, + [292650] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759107,13 +759062,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9171), 1, - anon_sym_RBRACE, - ACTIONS(10445), 1, + ACTIONS(8909), 1, + anon_sym_RBRACK, + ACTIONS(10456), 1, anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(6885), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759123,7 +759078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292820] = 12, + [292701] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759144,11 +759099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10447), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6886), 9, + ACTIONS(10282), 1, + anon_sym_COMMA, + ACTIONS(10458), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759158,7 +759115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292867] = 13, + [292752] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759179,11 +759136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10449), 1, - anon_sym_COMMA, - ACTIONS(10452), 1, + ACTIONS(2811), 1, anon_sym_RBRACE, - STATE(6887), 10, + ACTIONS(10460), 1, + anon_sym_COMMA, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759193,8 +759152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__switch_expression_body_repeat1, - [292916] = 14, + [292803] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759215,13 +759173,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10454), 1, + ACTIONS(10462), 1, anon_sym_RPAREN, - STATE(6691), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6888), 9, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759231,7 +759189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292967] = 14, + [292854] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759252,13 +759210,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10456), 1, - anon_sym_SEMI, - ACTIONS(10458), 1, - anon_sym_LBRACE, - STATE(7434), 1, - sym_enum_member_declaration_list, - STATE(6889), 9, + ACTIONS(10464), 1, + anon_sym_COMMA, + ACTIONS(10466), 1, + anon_sym_RBRACE, + STATE(6876), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759268,7 +759226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293018] = 14, + [292905] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759289,13 +759247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10460), 1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + ACTIONS(10468), 1, anon_sym_COMMA, - ACTIONS(10462), 1, - anon_sym_RBRACK, - STATE(7052), 1, - aux_sym_calling_convention_repeat1, - STATE(6890), 9, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759305,7 +759263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293069] = 14, + [292956] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759326,13 +759284,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10464), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10466), 1, - anon_sym_RBRACE, - STATE(7051), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6891), 9, + ACTIONS(10470), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759342,7 +759300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293120] = 14, + [293007] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759363,13 +759321,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, - anon_sym_COMMA, - ACTIONS(10468), 1, - anon_sym_RPAREN, - STATE(7101), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6892), 9, + ACTIONS(10472), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759379,7 +759335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293171] = 14, + [293054] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759400,13 +759356,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(10470), 1, - anon_sym_SEMI, - STATE(2709), 1, - sym_accessor_list, - STATE(6893), 9, + ACTIONS(5077), 1, + anon_sym_COMMA, + ACTIONS(10474), 1, + anon_sym_RBRACK, + STATE(6895), 1, + aux_sym_type_argument_list_repeat1, + STATE(6891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759416,7 +759372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293222] = 14, + [293105] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759437,13 +759393,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10248), 1, - anon_sym_GT, - ACTIONS(10323), 1, - anon_sym_COMMA, - STATE(6897), 1, - aux_sym_type_argument_list_repeat2, - STATE(6894), 9, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6761), 1, + anon_sym_QMARK, + STATE(6892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759453,7 +759409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293273] = 14, + [293156] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759474,13 +759430,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10458), 1, - anon_sym_LBRACE, - ACTIONS(10472), 1, - anon_sym_SEMI, - STATE(7766), 1, - sym_enum_member_declaration_list, - STATE(6895), 9, + ACTIONS(10344), 1, + anon_sym_COMMA, + ACTIONS(10476), 1, + anon_sym_RPAREN, + STATE(6833), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759490,7 +759446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293324] = 12, + [293207] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759511,11 +759467,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7488), 3, + ACTIONS(10264), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10478), 1, anon_sym_RPAREN, - STATE(6896), 9, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759525,7 +759483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293371] = 14, + [293258] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759546,13 +759504,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10474), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6897), 9, + ACTIONS(10480), 1, + anon_sym_RBRACK, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759562,7 +759520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293422] = 14, + [293309] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759583,13 +759541,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(2353), 1, + anon_sym_RBRACK, + ACTIONS(10482), 1, anon_sym_COMMA, - ACTIONS(10476), 1, - anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(6898), 9, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759599,7 +759557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293473] = 14, + [293360] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759620,13 +759578,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(8913), 1, + anon_sym_RBRACK, + ACTIONS(10484), 1, anon_sym_COMMA, - ACTIONS(10478), 1, - anon_sym_GT, - STATE(6962), 1, - aux_sym_type_argument_list_repeat2, - STATE(6899), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759636,7 +759594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293524] = 12, + [293411] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759657,11 +759615,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10480), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(6900), 9, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(10486), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759671,7 +759631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293571] = 12, + [293462] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759692,11 +759652,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10482), 3, + ACTIONS(10260), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6901), 9, + ACTIONS(10488), 1, + anon_sym_GT, + STATE(6901), 1, + aux_sym_type_argument_list_repeat2, + STATE(6899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759706,7 +759668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293618] = 14, + [293513] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759727,13 +759689,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10484), 1, - anon_sym_RPAREN, - STATE(7101), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6902), 9, + ACTIONS(10488), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759743,7 +759705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293669] = 12, + [293564] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759764,11 +759726,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10486), 3, + ACTIONS(10260), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6903), 9, + ACTIONS(10490), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759778,7 +759742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293716] = 12, + [293615] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759799,46 +759763,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10488), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6904), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [293763] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(10490), 3, - anon_sym_SEMI, + ACTIONS(10282), 1, anon_sym_COMMA, + ACTIONS(10492), 1, anon_sym_RPAREN, - STATE(6905), 9, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759848,7 +759779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293810] = 12, + [293666] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759869,11 +759800,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10492), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(10119), 1, anon_sym_RPAREN, - STATE(6906), 9, + ACTIONS(10494), 1, + anon_sym_COMMA, + STATE(6903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759883,7 +759816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293857] = 14, + [293717] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759904,13 +759837,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10357), 1, + ACTIONS(10497), 1, anon_sym_COMMA, - ACTIONS(10494), 1, - anon_sym_SEMI, - STATE(6912), 1, - aux_sym_variable_declaration_repeat1, - STATE(6907), 9, + ACTIONS(10499), 1, + anon_sym_RBRACE, + STATE(6946), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759920,7 +759853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293908] = 14, + [293768] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759941,13 +759874,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(7865), 1, + ACTIONS(10501), 1, anon_sym_RBRACK, - STATE(6918), 1, + STATE(6943), 1, aux_sym_array_rank_specifier_repeat1, - STATE(6908), 9, + STATE(6905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759957,7 +759890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293959] = 14, + [293819] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759978,13 +759911,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(10496), 1, - anon_sym_GT, - STATE(6913), 1, - aux_sym_type_argument_list_repeat2, - STATE(6909), 9, + ACTIONS(10503), 1, + anon_sym_RPAREN, + STATE(6953), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759994,7 +759927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294010] = 14, + [293870] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760015,13 +759948,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10505), 1, anon_sym_COMMA, - ACTIONS(10496), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6910), 9, + ACTIONS(10507), 1, + anon_sym_RBRACE, + STATE(6937), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760031,7 +759964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294061] = 14, + [293921] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760052,13 +759985,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10498), 1, - anon_sym_GT, - STATE(6990), 1, - aux_sym_type_argument_list_repeat2, - STATE(6911), 9, + ACTIONS(10509), 1, + anon_sym_RBRACK, + STATE(6912), 1, + aux_sym_type_argument_list_repeat1, + STATE(6908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760068,7 +760001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294112] = 13, + [293972] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760089,11 +760022,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10490), 1, - anon_sym_SEMI, - ACTIONS(10500), 1, + ACTIONS(10511), 1, anon_sym_COMMA, - STATE(6912), 10, + ACTIONS(10513), 1, + anon_sym_RBRACE, + STATE(6954), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760103,8 +760038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [294161] = 14, + [294023] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760125,13 +760059,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(8913), 1, + anon_sym_RBRACK, + ACTIONS(10484), 1, anon_sym_COMMA, - ACTIONS(10503), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6913), 9, + STATE(6883), 1, + aux_sym_global_attribute_repeat1, + STATE(6910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760141,7 +760075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294212] = 13, + [294074] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760162,11 +760096,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10505), 1, + ACTIONS(2895), 1, + anon_sym_RBRACE, + ACTIONS(10515), 1, anon_sym_COMMA, - ACTIONS(10508), 1, - anon_sym_RPAREN, - STATE(6914), 10, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760176,8 +760112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_type_repeat1, - [294261] = 14, + [294125] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760198,50 +760133,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10510), 1, + ACTIONS(10517), 1, anon_sym_RBRACK, - STATE(6691), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6915), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [294312] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(10498), 1, - anon_sym_GT, - STATE(6733), 1, + STATE(6752), 1, aux_sym_type_argument_list_repeat1, - STATE(6916), 9, + STATE(6912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760251,7 +760149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294363] = 14, + [294176] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760272,13 +760170,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2831), 1, + anon_sym_RBRACE, + ACTIONS(10519), 1, anon_sym_COMMA, - ACTIONS(10512), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6917), 9, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760288,7 +760186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294414] = 13, + [294227] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760309,11 +760207,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8164), 1, - anon_sym_RBRACK, - ACTIONS(10514), 1, + ACTIONS(6927), 1, + anon_sym_DOT, + ACTIONS(4028), 2, anon_sym_COMMA, - STATE(6918), 10, + anon_sym_GT, + STATE(6914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760323,8 +760222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_array_rank_specifier_repeat1, - [294463] = 12, + [294276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760345,11 +760243,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10517), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6919), 9, + ACTIONS(10521), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760359,7 +760257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294510] = 12, + [294323] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760380,11 +760278,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10519), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6920), 9, + ACTIONS(10523), 1, + anon_sym_COMMA, + ACTIONS(10525), 1, + anon_sym_RBRACE, + STATE(6941), 1, + aux_sym__with_body_repeat1, + STATE(6916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760394,7 +760294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294557] = 13, + [294374] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760415,11 +760315,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_RBRACK, - ACTIONS(10521), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(6921), 10, + ACTIONS(10527), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760429,8 +760331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_list_pattern_repeat1, - [294606] = 14, + [294425] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760451,13 +760352,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10524), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(10526), 1, - anon_sym_RBRACK, - STATE(6995), 1, - aux_sym_global_attribute_repeat1, - STATE(6922), 9, + ACTIONS(10529), 1, + anon_sym_RPAREN, + STATE(6947), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760467,7 +760368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294657] = 14, + [294476] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760488,13 +760389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(10531), 1, anon_sym_COMMA, - ACTIONS(10530), 1, - anon_sym_RPAREN, - STATE(7061), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6923), 9, + ACTIONS(10533), 1, + anon_sym_RBRACE, + STATE(6960), 1, + aux_sym__with_body_repeat1, + STATE(6919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760504,7 +760405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294708] = 13, + [294527] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760525,11 +760426,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10532), 1, + ACTIONS(7737), 1, anon_sym_COMMA, ACTIONS(10535), 1, - anon_sym_GT, - STATE(6924), 10, + anon_sym_SEMI, + STATE(6807), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760539,8 +760442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat2, - [294757] = 14, + [294578] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760561,13 +760463,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10537), 1, - anon_sym_COMMA, - ACTIONS(10539), 1, - anon_sym_RBRACE, - STATE(7075), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6925), 9, + ACTIONS(2921), 1, + aux_sym_preproc_if_token3, + ACTIONS(3003), 1, + anon_sym_LBRACK, + STATE(7699), 1, + sym_attribute_list, + STATE(6921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760577,7 +760479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294808] = 14, + [294629] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760598,13 +760500,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10541), 1, + ACTIONS(10537), 1, anon_sym_COMMA, - ACTIONS(10543), 1, + ACTIONS(10540), 1, anon_sym_RBRACE, - STATE(6801), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6926), 9, + STATE(6922), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760614,7 +760514,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294859] = 12, + aux_sym__switch_expression_body_repeat1, + [294678] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760635,11 +760536,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10545), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6927), 9, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_LPAREN, + STATE(7237), 1, + sym_block, + STATE(6923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760649,7 +760552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294906] = 14, + [294729] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760670,13 +760573,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10478), 1, + ACTIONS(10542), 1, anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6928), 9, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760686,7 +760589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294957] = 14, + [294780] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760707,13 +760610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10547), 1, - anon_sym_COMMA, - ACTIONS(10549), 1, - anon_sym_RBRACK, - STATE(7017), 1, - aux_sym_argument_list_repeat1, - STATE(6929), 9, + ACTIONS(10544), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(6925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760723,7 +760624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295008] = 14, + [294827] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760744,13 +760645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8903), 1, + ACTIONS(1899), 1, anon_sym_RBRACK, - ACTIONS(10551), 1, + ACTIONS(10546), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6930), 9, + STATE(6926), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760760,7 +760659,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295059] = 14, + aux_sym_list_pattern_repeat1, + [294876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760781,13 +760681,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, + ACTIONS(10251), 3, anon_sym_COMMA, - ACTIONS(10555), 1, - anon_sym_RBRACK, - STATE(7029), 1, - aux_sym_global_attribute_repeat1, - STATE(6931), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760797,7 +760695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295110] = 14, + [294923] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760818,13 +760716,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10557), 1, - anon_sym_COMMA, - ACTIONS(10559), 1, + ACTIONS(2689), 1, anon_sym_RBRACK, - STATE(7034), 1, + ACTIONS(10549), 1, + anon_sym_COMMA, + STATE(7050), 1, aux_sym_argument_list_repeat1, - STATE(6932), 9, + STATE(6928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760834,7 +760732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295161] = 14, + [294974] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760855,13 +760753,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(8919), 1, anon_sym_RBRACK, - ACTIONS(10561), 1, + ACTIONS(10551), 1, anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(6933), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760871,7 +760769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295212] = 13, + [295025] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760892,11 +760790,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10545), 1, - anon_sym_RPAREN, - ACTIONS(10563), 1, + ACTIONS(2915), 1, + anon_sym_RBRACE, + ACTIONS(10553), 1, anon_sym_COMMA, - STATE(6934), 10, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760906,8 +760806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [295261] = 12, + [295076] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760928,11 +760827,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10566), 3, - anon_sym_LPAREN, + ACTIONS(10445), 1, anon_sym_LBRACE, - anon_sym_when, - STATE(6935), 9, + ACTIONS(10555), 1, + anon_sym_SEMI, + STATE(7754), 1, + sym_enum_member_declaration_list, + STATE(6931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760942,7 +760843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295308] = 14, + [295127] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760963,13 +760864,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10570), 1, - anon_sym_RBRACK, - STATE(6967), 1, - aux_sym_global_attribute_repeat1, - STATE(6936), 9, + ACTIONS(10557), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760979,7 +760880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295359] = 14, + [295178] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761000,13 +760901,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(8887), 1, + anon_sym_RPAREN, + ACTIONS(10559), 1, anon_sym_COMMA, - ACTIONS(10574), 1, - anon_sym_RBRACK, - STATE(6969), 1, - aux_sym_argument_list_repeat1, - STATE(6937), 9, + STATE(7086), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761016,7 +760917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295410] = 14, + [295229] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761037,13 +760938,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10576), 1, + ACTIONS(10561), 1, anon_sym_RPAREN, - STATE(7018), 1, + STATE(6884), 1, aux_sym_argument_list_repeat1, - STATE(6938), 9, + STATE(6934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761053,7 +760954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295461] = 14, + [295280] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761074,13 +760975,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10578), 1, + ACTIONS(10563), 1, anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6939), 9, + STATE(7039), 1, + aux_sym_type_argument_list_repeat1, + STATE(6935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761090,7 +760991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295512] = 14, + [295331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761111,13 +761012,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 1, - anon_sym_COMMA, - ACTIONS(10580), 1, - anon_sym_RPAREN, - STATE(7038), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6940), 9, + ACTIONS(10565), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761127,7 +761026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295563] = 14, + [295378] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761148,13 +761047,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(2277), 1, + anon_sym_RBRACE, + ACTIONS(10567), 1, anon_sym_COMMA, - ACTIONS(10582), 1, - anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6941), 9, + STATE(6922), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761164,7 +761063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295614] = 14, + [295429] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761185,13 +761084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2803), 1, - anon_sym_RBRACE, - ACTIONS(10584), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(6974), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6942), 9, + ACTIONS(10569), 1, + anon_sym_RBRACK, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761201,7 +761100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295665] = 14, + [295480] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761222,13 +761121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(2331), 1, anon_sym_RBRACK, - ACTIONS(10586), 1, + ACTIONS(10571), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6943), 9, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761238,7 +761137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295716] = 14, + [295531] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761259,13 +761158,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym_RBRACK, - ACTIONS(10586), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - STATE(6994), 1, - aux_sym_global_attribute_repeat1, - STATE(6944), 9, + ACTIONS(10573), 1, + anon_sym_RPAREN, + STATE(6945), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761275,7 +761174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295767] = 14, + [295582] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761296,13 +761195,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10588), 1, - anon_sym_COMMA, - ACTIONS(10590), 1, + ACTIONS(9195), 1, anon_sym_RBRACE, - STATE(7099), 1, + ACTIONS(10575), 1, + anon_sym_COMMA, + STATE(6972), 1, aux_sym__with_body_repeat1, - STATE(6945), 9, + STATE(6941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761312,7 +761211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295818] = 14, + [295633] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761333,13 +761232,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10592), 1, + ACTIONS(10577), 1, anon_sym_COMMA, - ACTIONS(10594), 1, + ACTIONS(10579), 1, anon_sym_RBRACE, - STATE(6851), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6946), 9, + STATE(6885), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761349,7 +761248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295869] = 14, + [295684] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761370,13 +761269,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10355), 1, - anon_sym_RPAREN, - ACTIONS(10596), 1, + ACTIONS(8158), 1, + anon_sym_RBRACK, + ACTIONS(10581), 1, anon_sym_COMMA, - STATE(7072), 1, - aux_sym_variable_declaration_repeat1, - STATE(6947), 9, + STATE(6943), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761386,44 +761283,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295920] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(5316), 1, - anon_sym_LBRACE, - ACTIONS(10274), 1, - anon_sym_LPAREN, - STATE(1981), 1, - sym_block, - STATE(6948), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [295971] = 14, + aux_sym_array_rank_specifier_repeat1, + [295733] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761444,48 +761305,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10598), 1, + ACTIONS(10584), 1, anon_sym_GT, - STATE(6924), 1, + STATE(7054), 1, aux_sym_type_argument_list_repeat2, - STATE(6949), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [296022] = 13, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(10600), 1, - anon_sym_COMMA, - ACTIONS(10603), 1, - anon_sym_RBRACE, - STATE(6950), 10, + STATE(6944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761495,8 +761321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__with_body_repeat1, - [296071] = 12, + [295784] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761517,11 +761342,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7869), 3, + ACTIONS(10386), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10586), 1, anon_sym_RPAREN, - STATE(6951), 9, + STATE(6965), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761531,7 +761358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296118] = 14, + [295835] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761552,13 +761379,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2687), 1, - anon_sym_RBRACK, - ACTIONS(10605), 1, + ACTIONS(2299), 1, + anon_sym_RBRACE, + ACTIONS(10588), 1, anon_sym_COMMA, - STATE(6869), 1, - aux_sym_argument_list_repeat1, - STATE(6952), 9, + STATE(6922), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761568,7 +761395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296169] = 14, + [295886] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761589,50 +761416,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_COMMA, - ACTIONS(10607), 1, + ACTIONS(10251), 1, anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(6953), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [296220] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(10258), 1, + ACTIONS(10590), 1, anon_sym_COMMA, - ACTIONS(10609), 1, - anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(6954), 9, + STATE(6947), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761642,7 +761430,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296271] = 13, + aux_sym_positional_pattern_clause_repeat1, + [295935] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761663,11 +761452,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10611), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10614), 1, - anon_sym_RPAREN, - STATE(6955), 10, + ACTIONS(10593), 1, + anon_sym_GT, + STATE(6951), 1, + aux_sym_type_argument_list_repeat2, + STATE(6948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761677,8 +761468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parenthesized_variable_designation_repeat1, - [296320] = 14, + [295986] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761699,13 +761489,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10616), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(6956), 9, + ACTIONS(10593), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761715,7 +761505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296371] = 14, + [296037] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761736,13 +761526,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2935), 1, - anon_sym_RBRACE, - ACTIONS(10618), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6957), 9, + ACTIONS(10595), 1, + anon_sym_GT, + STATE(6944), 1, + aux_sym_type_argument_list_repeat2, + STATE(6950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761752,7 +761542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296422] = 14, + [296088] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761773,13 +761563,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10620), 1, - anon_sym_RPAREN, - STATE(6996), 1, - aux_sym_argument_list_repeat1, - STATE(6958), 9, + ACTIONS(10597), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(6951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761789,7 +761579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296473] = 14, + [296139] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761810,13 +761600,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10622), 1, + ACTIONS(2345), 1, + anon_sym_RBRACK, + ACTIONS(10599), 1, anon_sym_COMMA, - ACTIONS(10624), 1, - anon_sym_RBRACE, - STATE(6998), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6959), 9, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(6952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761826,34 +761616,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296524] = 14, - ACTIONS(9181), 1, + [296190] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10626), 1, + ACTIONS(10314), 1, anon_sym_COMMA, - ACTIONS(10628), 1, - aux_sym_preproc_if_token2, - STATE(7083), 1, - aux_sym_preproc_pragma_repeat1, - STATE(6960), 9, + ACTIONS(10601), 1, + anon_sym_RPAREN, + STATE(6947), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761863,7 +761653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296575] = 14, + [296241] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761884,13 +761674,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8911), 1, - anon_sym_RBRACK, - ACTIONS(10630), 1, + ACTIONS(2303), 1, + anon_sym_RBRACE, + ACTIONS(10603), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6961), 9, + STATE(6796), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761900,7 +761690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296626] = 14, + [296292] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761921,13 +761711,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10632), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6962), 9, + ACTIONS(10605), 1, + anon_sym_RPAREN, + STATE(6968), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761937,7 +761727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296677] = 12, + [296343] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761958,11 +761748,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10634), 3, + ACTIONS(5077), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10595), 1, anon_sym_GT, - STATE(6963), 9, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761972,7 +761764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296724] = 14, + [296394] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761993,13 +761785,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8909), 1, - anon_sym_RBRACK, - ACTIONS(10636), 1, + ACTIONS(10607), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6964), 9, + ACTIONS(10609), 1, + anon_sym_RBRACK, + STATE(6991), 1, + aux_sym_argument_list_repeat1, + STATE(6957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762009,7 +761801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296775] = 14, + [296445] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762030,13 +761822,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - ACTIONS(10638), 1, + ACTIONS(10611), 1, anon_sym_RPAREN, - STATE(6914), 1, + STATE(6872), 1, aux_sym_tuple_type_repeat1, - STATE(6965), 9, + STATE(6958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762046,7 +761838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296826] = 14, + [296496] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762067,13 +761859,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(7727), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6966), 9, + ACTIONS(9392), 1, + anon_sym_LBRACE, + ACTIONS(10613), 1, + anon_sym_SEMI, + STATE(2837), 1, + sym_accessor_list, + STATE(6959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762083,7 +761875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296877] = 14, + [296547] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762104,13 +761896,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8921), 1, - anon_sym_RBRACK, - ACTIONS(10640), 1, + ACTIONS(9217), 1, + anon_sym_RBRACE, + ACTIONS(10615), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6967), 9, + STATE(6972), 1, + aux_sym__with_body_repeat1, + STATE(6960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762120,7 +761912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296928] = 14, + [296598] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762141,13 +761933,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8921), 1, - anon_sym_RBRACK, - ACTIONS(10640), 1, + ACTIONS(10617), 1, anon_sym_COMMA, - STATE(7005), 1, + ACTIONS(10619), 1, + anon_sym_RBRACK, + STATE(6993), 1, aux_sym_global_attribute_repeat1, - STATE(6968), 9, + STATE(6961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762157,7 +761949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296979] = 14, + [296649] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762178,13 +761970,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2693), 1, - anon_sym_RBRACK, - ACTIONS(10642), 1, + ACTIONS(10621), 1, anon_sym_COMMA, - STATE(6869), 1, + ACTIONS(10623), 1, + anon_sym_RBRACK, + STATE(6996), 1, aux_sym_argument_list_repeat1, - STATE(6969), 9, + STATE(6962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762194,7 +761986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297030] = 14, + [296700] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762215,13 +762007,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10625), 1, anon_sym_COMMA, - ACTIONS(10644), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(6970), 9, + ACTIONS(10628), 1, + anon_sym_RBRACK, + STATE(6963), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762231,7 +762021,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297081] = 14, + aux_sym_global_attribute_repeat1, + [296749] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762252,13 +762043,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10646), 1, + ACTIONS(10630), 1, anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(6971), 9, + STATE(6965), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762268,7 +762059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297132] = 14, + [296800] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762289,13 +762080,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10632), 1, anon_sym_COMMA, - ACTIONS(10648), 1, + ACTIONS(10635), 1, anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(6972), 9, + STATE(6965), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762305,7 +762094,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297183] = 14, + aux_sym_parenthesized_variable_designation_repeat1, + [296849] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762326,13 +762116,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10637), 1, + anon_sym_SEMI, + ACTIONS(10639), 1, anon_sym_COMMA, - ACTIONS(7497), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6973), 9, + STATE(7102), 1, + aux_sym_variable_declaration_repeat1, + STATE(6966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762342,7 +762132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297234] = 13, + [296900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762363,11 +762153,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10650), 1, + ACTIONS(8929), 1, + anon_sym_RBRACK, + ACTIONS(10641), 1, anon_sym_COMMA, - ACTIONS(10653), 1, - anon_sym_RBRACE, - STATE(6974), 10, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762377,8 +762169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_anonymous_object_creation_expression_repeat1, - [297283] = 14, + [296951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762399,13 +762190,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10655), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6975), 9, + ACTIONS(10643), 1, + anon_sym_RPAREN, + STATE(6965), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762415,7 +762206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297334] = 14, + [297002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762436,13 +762227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_RBRACE, - ACTIONS(10657), 1, + ACTIONS(8929), 1, + anon_sym_RBRACK, + ACTIONS(10641), 1, anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6976), 9, + STATE(6805), 1, + aux_sym_global_attribute_repeat1, + STATE(6969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762452,7 +762243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297385] = 13, + [297053] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762473,11 +762264,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10659), 1, - anon_sym_COMMA, - ACTIONS(10662), 1, + ACTIONS(2883), 1, anon_sym_RBRACE, - STATE(6977), 10, + ACTIONS(10645), 1, + anon_sym_COMMA, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762487,8 +762280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_enum_member_declaration_list_repeat1, - [297434] = 14, + [297104] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762509,13 +762301,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(7881), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6978), 9, + ACTIONS(10647), 1, + anon_sym_RPAREN, + STATE(6902), 1, + aux_sym_argument_list_repeat1, + STATE(6971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762525,7 +762317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297485] = 14, + [297155] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762546,13 +762338,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10664), 1, + ACTIONS(10649), 1, anon_sym_COMMA, - ACTIONS(10666), 1, + ACTIONS(10652), 1, anon_sym_RBRACE, - STATE(7012), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6979), 9, + STATE(6972), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762562,7 +762352,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297536] = 14, + aux_sym__with_body_repeat1, + [297204] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762583,13 +762374,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(2703), 1, + anon_sym_RBRACK, + ACTIONS(10654), 1, anon_sym_COMMA, - ACTIONS(10668), 1, - anon_sym_RPAREN, - STATE(7006), 1, + STATE(7050), 1, aux_sym_argument_list_repeat1, - STATE(6980), 9, + STATE(6973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762599,7 +762390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297587] = 14, + [297255] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762620,13 +762411,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10670), 1, + ACTIONS(10637), 1, + anon_sym_RPAREN, + ACTIONS(10656), 1, anon_sym_COMMA, - ACTIONS(10672), 1, - anon_sym_RBRACE, - STATE(7007), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6981), 9, + STATE(7063), 1, + aux_sym_variable_declaration_repeat1, + STATE(6974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762636,32 +762427,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297638] = 13, - ACTIONS(9181), 1, + [297306] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10674), 1, - anon_sym_COMMA, - ACTIONS(10677), 1, - aux_sym_preproc_if_token2, - STATE(6982), 10, + ACTIONS(10658), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762671,8 +762462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_preproc_pragma_repeat1, - [297687] = 13, + [297353] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762693,12 +762483,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10681), 1, - anon_sym_EQ, - ACTIONS(10679), 2, - anon_sym_SEMI, + ACTIONS(10282), 1, anon_sym_COMMA, - STATE(6983), 9, + ACTIONS(10660), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762708,7 +762499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297736] = 14, + [297404] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762729,13 +762520,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - ACTIONS(10683), 1, - anon_sym_GT, - STATE(6991), 1, - aux_sym_type_argument_list_repeat2, - STATE(6984), 9, + ACTIONS(10662), 1, + anon_sym_RPAREN, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762745,7 +762536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297787] = 14, + [297455] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762766,13 +762557,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(8905), 1, + anon_sym_RBRACK, + ACTIONS(10664), 1, anon_sym_COMMA, - ACTIONS(10683), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6985), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762782,7 +762573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297838] = 14, + [297506] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762803,13 +762594,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10685), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6986), 9, + ACTIONS(10666), 1, + anon_sym_GT, + STATE(6984), 1, + aux_sym_type_argument_list_repeat2, + STATE(6979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762819,7 +762610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297889] = 14, + [297557] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762840,13 +762631,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10689), 1, - anon_sym_RBRACE, - STATE(7024), 1, - aux_sym__with_body_repeat1, - STATE(6987), 9, + ACTIONS(10666), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(6980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762856,7 +762647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297940] = 14, + [297608] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762877,13 +762668,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2931), 1, + anon_sym_RBRACE, + ACTIONS(10668), 1, anon_sym_COMMA, - ACTIONS(7863), 1, - anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6988), 9, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762893,7 +762684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297991] = 14, + [297659] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762914,13 +762705,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10458), 1, + ACTIONS(5722), 1, anon_sym_LBRACE, - ACTIONS(10691), 1, - anon_sym_SEMI, - STATE(7631), 1, - sym_enum_member_declaration_list, - STATE(6989), 9, + ACTIONS(10293), 1, + anon_sym_LPAREN, + STATE(2114), 1, + sym_block, + STATE(6982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762930,7 +762721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298042] = 14, + [297710] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762951,13 +762742,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(2269), 1, + anon_sym_RBRACE, + ACTIONS(10670), 1, anon_sym_COMMA, - ACTIONS(10693), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(6990), 9, + STATE(6796), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762967,7 +762758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298093] = 14, + [297761] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762988,13 +762779,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10695), 1, + ACTIONS(10672), 1, anon_sym_GT, - STATE(6924), 1, + STATE(7054), 1, aux_sym_type_argument_list_repeat2, - STATE(6991), 9, + STATE(6984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763004,7 +762795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298144] = 14, + [297812] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763025,13 +762816,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10697), 1, - anon_sym_GT, - STATE(7021), 1, - aux_sym_type_argument_list_repeat2, - STATE(6992), 9, + ACTIONS(10674), 1, + anon_sym_RPAREN, + STATE(6808), 1, + aux_sym_argument_list_repeat1, + STATE(6985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763041,7 +762832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298195] = 14, + [297863] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763062,13 +762853,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - ACTIONS(10697), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(6993), 9, + ACTIONS(10676), 1, + anon_sym_RPAREN, + STATE(6964), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763078,7 +762869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298246] = 14, + [297914] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763099,13 +762890,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_RBRACK, - ACTIONS(10699), 1, + ACTIONS(10678), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6994), 9, + ACTIONS(10680), 1, + anon_sym_RBRACE, + STATE(6810), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763115,7 +762906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298297] = 14, + [297965] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763136,13 +762927,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8923), 1, - anon_sym_RBRACK, - ACTIONS(10701), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(6995), 9, + ACTIONS(10682), 1, + anon_sym_RPAREN, + STATE(6886), 1, + aux_sym_argument_list_repeat1, + STATE(6988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763152,7 +762943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298348] = 14, + [298016] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763173,13 +762964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10684), 1, anon_sym_COMMA, - ACTIONS(10703), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(6996), 9, + ACTIONS(10686), 1, + anon_sym_RBRACE, + STATE(6913), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763189,7 +762980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298399] = 14, + [298067] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763210,13 +763001,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(10705), 1, - anon_sym_RBRACK, - STATE(6822), 1, - aux_sym_type_argument_list_repeat1, - STATE(6997), 9, + ACTIONS(10688), 1, + sym_integer_literal, + ACTIONS(10690), 1, + anon_sym_DQUOTE, + STATE(7457), 1, + sym_string_literal, + STATE(6990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763226,7 +763017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298450] = 14, + [298118] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763247,13 +763038,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_RBRACE, - ACTIONS(10707), 1, + ACTIONS(2709), 1, + anon_sym_RBRACK, + ACTIONS(10692), 1, anon_sym_COMMA, - STATE(6974), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6998), 9, + STATE(7050), 1, + aux_sym_argument_list_repeat1, + STATE(6991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763263,7 +763054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298501] = 14, + [298169] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763284,13 +763075,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10709), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - ACTIONS(10711), 1, - anon_sym_RBRACE, - STATE(6885), 1, - aux_sym__with_body_repeat1, - STATE(6999), 9, + ACTIONS(10694), 1, + anon_sym_RPAREN, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763300,7 +763091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298552] = 14, + [298220] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763321,13 +763112,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(8903), 1, + anon_sym_RBRACK, + ACTIONS(10696), 1, anon_sym_COMMA, - ACTIONS(10713), 1, - anon_sym_GT, - STATE(7022), 1, - aux_sym_type_argument_list_repeat2, - STATE(7000), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(6993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763337,7 +763128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298603] = 14, + [298271] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763358,13 +763149,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(8903), 1, + anon_sym_RBRACK, + ACTIONS(10696), 1, anon_sym_COMMA, - ACTIONS(10713), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(7001), 9, + STATE(7030), 1, + aux_sym_global_attribute_repeat1, + STATE(6994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763374,7 +763165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298654] = 14, + [298322] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763395,13 +763186,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2923), 1, + anon_sym_RBRACE, + ACTIONS(10698), 1, anon_sym_COMMA, - ACTIONS(10715), 1, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6995), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [298373] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(2691), 1, anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7002), 9, + ACTIONS(10700), 1, + anon_sym_COMMA, + STATE(7050), 1, + aux_sym_argument_list_repeat1, + STATE(6996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763411,7 +763239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298705] = 14, + [298424] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763432,13 +763260,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10349), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10717), 1, - anon_sym_GT, - STATE(6837), 1, - aux_sym_type_parameter_list_repeat1, - STATE(7003), 9, + ACTIONS(10702), 1, + anon_sym_RPAREN, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(6997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763448,7 +763276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298756] = 13, + [298475] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763469,12 +763297,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10719), 1, - anon_sym_EQ, - ACTIONS(10109), 2, + ACTIONS(10264), 1, anon_sym_COMMA, + ACTIONS(10704), 1, anon_sym_RPAREN, - STATE(7004), 9, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(6998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763484,7 +763313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298805] = 14, + [298526] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763505,13 +763334,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8933), 1, - anon_sym_RBRACK, - ACTIONS(10721), 1, + ACTIONS(2913), 1, + anon_sym_RBRACE, + ACTIONS(10706), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(7005), 9, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763521,7 +763350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298856] = 14, + [298577] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763542,13 +763371,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10723), 1, + ACTIONS(10708), 1, anon_sym_RPAREN, - STATE(7018), 1, + STATE(7031), 1, aux_sym_argument_list_repeat1, - STATE(7006), 9, + STATE(7000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763558,7 +763387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298907] = 14, + [298628] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763579,13 +763408,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(10710), 1, + anon_sym_COMMA, + ACTIONS(10712), 1, anon_sym_RBRACE, - ACTIONS(10725), 1, + STATE(7032), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7001), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [298679] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10714), 1, anon_sym_COMMA, - STATE(6974), 1, + ACTIONS(10716), 1, + anon_sym_RBRACE, + STATE(7025), 1, aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7007), 9, + STATE(7002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763595,7 +763461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298958] = 14, + [298730] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763616,13 +763482,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8923), 1, - anon_sym_RBRACK, - ACTIONS(10701), 1, + ACTIONS(10718), 1, anon_sym_COMMA, - STATE(6930), 1, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(6897), 1, aux_sym_global_attribute_repeat1, - STATE(7008), 9, + STATE(7003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763632,7 +763498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299009] = 14, + [298781] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763653,13 +763519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10727), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10729), 1, - anon_sym_RBRACE, - STATE(7036), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7009), 9, + ACTIONS(10722), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(7004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763669,7 +763535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299060] = 13, + [298832] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763690,11 +763556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10731), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10734), 1, - anon_sym_RPAREN, - STATE(7010), 10, + ACTIONS(10722), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(7005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763704,8 +763572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_variable_declaration_repeat1, - [299109] = 14, + [298883] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763726,13 +763593,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10736), 1, + ACTIONS(7699), 1, anon_sym_RBRACK, - STATE(6918), 1, + STATE(6943), 1, aux_sym_array_rank_specifier_repeat1, - STATE(7011), 9, + STATE(7006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763742,7 +763609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299160] = 14, + [298934] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763763,13 +763630,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(10738), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(6887), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7012), 9, + ACTIONS(10724), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(7007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763779,7 +763646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299211] = 14, + [298985] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763800,13 +763667,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_COMMA, - ACTIONS(10742), 1, - anon_sym_RBRACE, - STATE(7030), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7013), 9, + ACTIONS(10726), 3, + anon_sym_disable, + anon_sym_restore, + anon_sym_enable, + STATE(7008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763816,7 +763681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299262] = 14, + [299032] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763837,13 +763702,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_RBRACK, - ACTIONS(10744), 1, + ACTIONS(10728), 1, anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7014), 9, + ACTIONS(10730), 1, + anon_sym_RBRACK, + STATE(6928), 1, + aux_sym_argument_list_repeat1, + STATE(7009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763853,7 +763718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299313] = 14, + [299083] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763874,13 +763739,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10746), 1, + ACTIONS(10445), 1, + anon_sym_LBRACE, + ACTIONS(10732), 1, + anon_sym_SEMI, + STATE(7707), 1, + sym_enum_member_declaration_list, + STATE(7010), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [299134] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10734), 1, anon_sym_COMMA, - ACTIONS(10748), 1, + ACTIONS(10736), 1, anon_sym_RBRACE, - STATE(7050), 1, - aux_sym__with_body_repeat1, - STATE(7015), 9, + STATE(6888), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763890,7 +763792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299364] = 14, + [299185] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763911,13 +763813,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(10750), 1, + ACTIONS(10738), 1, anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7016), 9, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763927,7 +763829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299415] = 14, + [299236] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763948,13 +763850,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2707), 1, - anon_sym_RBRACK, - ACTIONS(10752), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(6869), 1, - aux_sym_argument_list_repeat1, - STATE(7017), 9, + ACTIONS(7859), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763964,7 +763866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299466] = 13, + [299287] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763985,11 +763887,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_RPAREN, - ACTIONS(10754), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(7018), 10, + ACTIONS(10740), 1, + anon_sym_GT, + STATE(7017), 1, + aux_sym_type_argument_list_repeat2, + STATE(7014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763999,8 +763903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [299515] = 12, + [299338] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764021,11 +763924,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7598), 3, + ACTIONS(5077), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7019), 9, + ACTIONS(10740), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(7015), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [299389] = 14, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10742), 1, + anon_sym_COMMA, + ACTIONS(10744), 1, + aux_sym_preproc_if_token2, + STATE(7089), 1, + aux_sym_preproc_pragma_repeat1, + STATE(7016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764035,7 +763977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299562] = 14, + [299440] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764056,13 +763998,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10757), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10759), 1, - anon_sym_RBRACE, - STATE(7039), 1, - aux_sym__with_body_repeat1, - STATE(7020), 9, + ACTIONS(10746), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(7017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764072,7 +764014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299613] = 14, + [299491] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764093,13 +764035,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10761), 1, + ACTIONS(10748), 1, anon_sym_GT, - STATE(6924), 1, + STATE(7045), 1, aux_sym_type_argument_list_repeat2, - STATE(7021), 9, + STATE(7018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764109,7 +764051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299664] = 14, + [299542] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764130,13 +764072,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10763), 1, + ACTIONS(10748), 1, anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(7022), 9, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(7019), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [299593] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10435), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7020), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [299640] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9189), 1, + anon_sym_RBRACE, + ACTIONS(10750), 1, + anon_sym_COMMA, + STATE(6972), 1, + aux_sym__with_body_repeat1, + STATE(7021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764146,7 +764160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299715] = 14, + [299691] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764167,13 +764181,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10765), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(7023), 9, + ACTIONS(10752), 1, + anon_sym_GT, + STATE(7028), 1, + aux_sym_type_argument_list_repeat2, + STATE(7022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764183,7 +764197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299766] = 14, + [299742] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764204,13 +764218,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9217), 1, - anon_sym_RBRACE, - ACTIONS(10767), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(7024), 9, + ACTIONS(10752), 1, + anon_sym_GT, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(7023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764220,7 +764234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299817] = 14, + [299793] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764241,13 +764255,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10769), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10771), 1, + ACTIONS(7530), 1, anon_sym_RBRACK, - STATE(6799), 1, - aux_sym_argument_list_repeat1, - STATE(7025), 9, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764257,7 +764271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299868] = 13, + [299844] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764278,11 +764292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10773), 1, + ACTIONS(2783), 1, + anon_sym_RBRACE, + ACTIONS(10754), 1, anon_sym_COMMA, - ACTIONS(10776), 1, - anon_sym_RBRACK, - STATE(7026), 10, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764292,8 +764308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_calling_convention_repeat1, - [299917] = 14, + [299895] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764314,13 +764329,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10778), 1, - anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(7027), 9, + ACTIONS(10756), 1, + anon_sym_GT, + STATE(7049), 1, + aux_sym_type_argument_list_repeat2, + STATE(7026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764330,7 +764345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299968] = 14, + [299946] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764351,13 +764366,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10780), 1, + ACTIONS(10756), 1, anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(7028), 9, + STATE(6752), 1, + aux_sym_type_argument_list_repeat1, + STATE(7027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764367,7 +764382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300019] = 14, + [299997] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764388,13 +764403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8935), 1, - anon_sym_RBRACK, - ACTIONS(10782), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(7029), 9, + ACTIONS(10758), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(7028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764404,7 +764419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300070] = 14, + [300048] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764425,13 +764440,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_RBRACE, - ACTIONS(10784), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(6887), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7030), 9, + ACTIONS(10760), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764441,7 +764456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300121] = 14, + [300099] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764462,13 +764477,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8935), 1, + ACTIONS(8921), 1, anon_sym_RBRACK, - ACTIONS(10782), 1, + ACTIONS(10762), 1, anon_sym_COMMA, - STATE(6964), 1, + STATE(6963), 1, aux_sym_global_attribute_repeat1, - STATE(7031), 9, + STATE(7030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764478,7 +764493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300172] = 13, + [300150] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764499,11 +764514,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10786), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(10789), 1, + ACTIONS(10764), 1, anon_sym_RPAREN, - STATE(7032), 10, + STATE(6873), 1, + aux_sym_argument_list_repeat1, + STATE(7031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764513,8 +764530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_argument_list_repeat1, - [300221] = 14, + [300201] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764535,13 +764551,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2343), 1, - anon_sym_RBRACK, - ACTIONS(10791), 1, + ACTIONS(2849), 1, + anon_sym_RBRACE, + ACTIONS(10766), 1, anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7033), 9, + STATE(6881), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764551,7 +764567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300272] = 14, + [300252] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764572,13 +764588,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2715), 1, - anon_sym_RBRACK, - ACTIONS(10793), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(6869), 1, - aux_sym_argument_list_repeat1, - STATE(7034), 9, + ACTIONS(10768), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764588,7 +764604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300323] = 14, + [300303] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764609,13 +764625,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10770), 1, anon_sym_COMMA, - ACTIONS(10795), 1, - anon_sym_RPAREN, - STATE(7055), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7035), 9, + ACTIONS(10773), 1, + anon_sym_RBRACK, + STATE(7034), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764625,7 +764639,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300374] = 14, + aux_sym_calling_convention_repeat1, + [300352] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764646,50 +764661,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2229), 1, - anon_sym_RBRACE, - ACTIONS(10797), 1, + ACTIONS(10775), 1, anon_sym_COMMA, - STATE(6887), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7036), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [300425] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2963), 1, + ACTIONS(10777), 1, anon_sym_RBRACE, - ACTIONS(10799), 1, - anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7037), 9, + STATE(7057), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764699,7 +764677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300476] = 14, + [300403] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764720,50 +764698,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(10779), 1, anon_sym_COMMA, - ACTIONS(10801), 1, - anon_sym_RPAREN, - STATE(6934), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7038), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [300527] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9201), 1, + ACTIONS(10781), 1, anon_sym_RBRACE, - ACTIONS(10803), 1, - anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(7039), 9, + STATE(7048), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764773,7 +764714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300578] = 14, + [300454] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764794,13 +764735,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(8933), 1, + anon_sym_RBRACK, + ACTIONS(10783), 1, anon_sym_COMMA, - ACTIONS(10805), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(7040), 9, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(7037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764810,7 +764751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300629] = 14, + [300505] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764831,13 +764772,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2347), 1, - anon_sym_RBRACK, - ACTIONS(10807), 1, - anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7041), 9, + ACTIONS(6994), 1, + anon_sym_COLON, + ACTIONS(10785), 1, + sym_interpolation_close_brace, + STATE(7753), 1, + sym_interpolation_format_clause, + STATE(7038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764847,7 +764788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300680] = 14, + [300556] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764868,13 +764809,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - ACTIONS(10809), 1, + ACTIONS(10787), 1, anon_sym_RBRACK, - STATE(7062), 1, + STATE(6752), 1, aux_sym_type_argument_list_repeat1, - STATE(7042), 9, + STATE(7039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764884,7 +764825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300731] = 14, + [300607] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764905,13 +764846,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, - anon_sym_COMMA, - ACTIONS(10811), 1, - anon_sym_RPAREN, - STATE(7058), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7043), 9, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(10089), 1, + anon_sym_LBRACE, + STATE(7665), 1, + sym_declaration_list, + STATE(7040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764921,7 +764862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300782] = 14, + [300658] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764942,13 +764883,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10789), 1, anon_sym_COMMA, - ACTIONS(10813), 1, - anon_sym_RPAREN, - STATE(6914), 1, - aux_sym_tuple_type_repeat1, - STATE(7044), 9, + ACTIONS(10791), 1, + anon_sym_RBRACK, + STATE(6846), 1, + aux_sym_global_attribute_repeat1, + STATE(7041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764958,7 +764899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300833] = 14, + [300709] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764979,13 +764920,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10793), 1, anon_sym_COMMA, - ACTIONS(10815), 1, - anon_sym_RBRACK, - STATE(7064), 1, - aux_sym_type_argument_list_repeat1, - STATE(7045), 9, + ACTIONS(10795), 1, + anon_sym_RBRACE, + STATE(7052), 1, + aux_sym__with_body_repeat1, + STATE(7042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764995,7 +764936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300884] = 14, + [300760] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765016,13 +764957,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_RBRACE, - ACTIONS(10817), 1, + ACTIONS(8933), 1, + anon_sym_RBRACK, + ACTIONS(10783), 1, anon_sym_COMMA, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7046), 9, + STATE(6978), 1, + aux_sym_global_attribute_repeat1, + STATE(7043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765032,7 +764973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300935] = 14, + [300811] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765053,13 +764994,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10797), 1, anon_sym_COMMA, - ACTIONS(10819), 1, - anon_sym_RPAREN, - STATE(7102), 1, + ACTIONS(10799), 1, + anon_sym_RBRACK, + STATE(6875), 1, aux_sym_argument_list_repeat1, - STATE(7047), 9, + STATE(7044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765069,7 +765010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300986] = 14, + [300862] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765090,13 +765031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10821), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10823), 1, - anon_sym_RBRACE, - STATE(6798), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7048), 9, + ACTIONS(10801), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(7045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765106,7 +765047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301037] = 13, + [300913] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765127,11 +765068,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10825), 1, + ACTIONS(10803), 1, anon_sym_COMMA, - ACTIONS(10828), 1, - anon_sym_GT, - STATE(7049), 10, + ACTIONS(10805), 1, + anon_sym_RBRACE, + STATE(7061), 1, + aux_sym__with_body_repeat1, + STATE(7046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765141,8 +765084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_parameter_list_repeat1, - [301086] = 14, + [300964] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765163,13 +765105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9155), 1, - anon_sym_RBRACE, - ACTIONS(10830), 1, - anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(7050), 9, + ACTIONS(10807), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765179,7 +765119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301137] = 14, + [301011] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765200,13 +765140,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2211), 1, anon_sym_RBRACE, - ACTIONS(10832), 1, + ACTIONS(10809), 1, anon_sym_COMMA, - STATE(6887), 1, + STATE(6922), 1, aux_sym__switch_expression_body_repeat1, - STATE(7051), 9, + STATE(7048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765216,7 +765156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301188] = 14, + [301062] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765237,13 +765177,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10460), 1, + ACTIONS(10260), 1, anon_sym_COMMA, - ACTIONS(10834), 1, - anon_sym_RBRACK, - STATE(7026), 1, - aux_sym_calling_convention_repeat1, - STATE(7052), 9, + ACTIONS(10811), 1, + anon_sym_GT, + STATE(7054), 1, + aux_sym_type_argument_list_repeat2, + STATE(7049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765253,7 +765193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301239] = 14, + [301113] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765274,13 +765214,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8917), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, - ACTIONS(10836), 1, + ACTIONS(10813), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(7053), 9, + STATE(7050), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765290,7 +765228,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301290] = 14, + aux_sym_argument_list_repeat1, + [301162] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765311,13 +765250,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(2323), 1, + anon_sym_RBRACK, + ACTIONS(10816), 1, anon_sym_COMMA, - ACTIONS(10838), 1, - anon_sym_GT, - STATE(7071), 1, - aux_sym_type_argument_list_repeat2, - STATE(7054), 9, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(7051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765327,7 +765266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301341] = 14, + [301213] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765348,13 +765287,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(9211), 1, + anon_sym_RBRACE, + ACTIONS(10818), 1, anon_sym_COMMA, - ACTIONS(10840), 1, - anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7055), 9, + STATE(6972), 1, + aux_sym__with_body_repeat1, + STATE(7052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765364,7 +765303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301392] = 14, + [301264] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765385,13 +765324,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10820), 1, anon_sym_COMMA, - ACTIONS(10842), 1, - anon_sym_RPAREN, - STATE(6847), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7056), 9, + ACTIONS(10822), 1, + anon_sym_RBRACE, + STATE(7070), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765401,7 +765340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301443] = 14, + [301315] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765422,13 +765361,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10824), 1, anon_sym_COMMA, - ACTIONS(10838), 1, + ACTIONS(10827), 1, anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(7057), 9, + STATE(7054), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765438,7 +765375,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301494] = 14, + aux_sym_type_argument_list_repeat2, + [301364] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765459,13 +765397,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10829), 1, anon_sym_COMMA, - ACTIONS(10844), 1, + ACTIONS(10832), 1, anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7058), 9, + STATE(7055), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765475,7 +765411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301545] = 14, + aux_sym_tuple_pattern_repeat1, + [301413] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765496,50 +765433,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10846), 1, - anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7059), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [301596] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2341), 1, + ACTIONS(10834), 1, anon_sym_RBRACK, - ACTIONS(10848), 1, - anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7060), 9, + STATE(6715), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765549,7 +765449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301647] = 14, + [301464] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765570,13 +765470,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(2297), 1, + anon_sym_RBRACE, + ACTIONS(10836), 1, anon_sym_COMMA, - ACTIONS(10850), 1, - anon_sym_RPAREN, - STATE(6934), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7061), 9, + STATE(6922), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765586,7 +765486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301698] = 14, + [301515] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765607,13 +765507,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(10852), 1, + ACTIONS(2341), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(7062), 9, + ACTIONS(10838), 1, + anon_sym_COMMA, + STATE(6926), 1, + aux_sym_list_pattern_repeat1, + STATE(7058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765623,7 +765523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301749] = 13, + [301566] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765644,12 +765544,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7012), 1, - anon_sym_DOT, - ACTIONS(4015), 2, + ACTIONS(10386), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(7063), 9, + ACTIONS(10840), 1, + anon_sym_RPAREN, + STATE(7067), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765659,34 +765560,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301798] = 14, - ACTIONS(3), 1, + [301617] = 14, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10742), 1, anon_sym_COMMA, - ACTIONS(10854), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(7064), 9, + ACTIONS(10842), 1, + aux_sym_preproc_if_token2, + STATE(7016), 1, + aux_sym_preproc_pragma_repeat1, + STATE(7060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765696,7 +765597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301849] = 14, + [301668] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765717,13 +765618,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(9201), 1, + anon_sym_RBRACE, + ACTIONS(10844), 1, anon_sym_COMMA, - ACTIONS(10856), 1, - anon_sym_RPAREN, - STATE(6888), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7065), 9, + STATE(6972), 1, + aux_sym__with_body_repeat1, + STATE(7061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765733,7 +765634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301900] = 13, + [301719] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765754,12 +765655,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10858), 1, + ACTIONS(10846), 1, anon_sym_EQ, - ACTIONS(10270), 2, + ACTIONS(10848), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7066), 9, + STATE(7062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765769,7 +765670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301949] = 14, + [301768] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765790,50 +765691,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10860), 1, + ACTIONS(10656), 1, anon_sym_COMMA, - ACTIONS(10862), 1, - anon_sym_RBRACE, - STATE(6882), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7067), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [302000] = 14, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(10864), 1, - anon_sym_DQUOTE, - ACTIONS(10866), 1, - aux_sym_preproc_if_token2, - STATE(7406), 1, - sym_string_literal, - STATE(7068), 9, + ACTIONS(10850), 1, + anon_sym_RPAREN, + STATE(6816), 1, + aux_sym_variable_declaration_repeat1, + STATE(7063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765843,7 +765707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302051] = 13, + [301819] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765864,12 +765728,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10868), 1, + ACTIONS(10852), 1, anon_sym_EQ, - ACTIONS(10201), 2, + ACTIONS(10854), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7069), 9, + anon_sym_RPAREN, + STATE(7064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765879,7 +765743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302100] = 14, + [301868] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765900,13 +765764,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, + ACTIONS(10856), 1, anon_sym_COMMA, - ACTIONS(10870), 1, + ACTIONS(10858), 1, anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7070), 9, + STATE(7103), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(7065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765916,7 +765780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302151] = 14, + [301919] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765937,13 +765801,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10860), 1, + anon_sym_EQ, + ACTIONS(10229), 2, anon_sym_COMMA, - ACTIONS(10872), 1, - anon_sym_GT, - STATE(6924), 1, - aux_sym_type_argument_list_repeat2, - STATE(7071), 9, + anon_sym_RBRACE, + STATE(7066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765953,7 +765816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302202] = 14, + [301968] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765974,13 +765837,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10494), 1, - anon_sym_RPAREN, - ACTIONS(10596), 1, + ACTIONS(10386), 1, anon_sym_COMMA, - STATE(7084), 1, - aux_sym_variable_declaration_repeat1, - STATE(7072), 9, + ACTIONS(10862), 1, + anon_sym_RPAREN, + STATE(6965), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765990,7 +765853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302253] = 13, + [302019] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766011,12 +765874,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10874), 1, - anon_sym_EQ, - ACTIONS(10679), 2, + ACTIONS(7648), 1, anon_sym_COMMA, + ACTIONS(10864), 1, anon_sym_RPAREN, - STATE(7073), 9, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766026,7 +765890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302302] = 14, + [302070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766047,13 +765911,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10866), 1, anon_sym_COMMA, - ACTIONS(10876), 1, - anon_sym_RPAREN, - STATE(6938), 1, - aux_sym_argument_list_repeat1, - STATE(7074), 9, + ACTIONS(10869), 1, + anon_sym_RBRACE, + STATE(7069), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766063,7 +765925,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302353] = 14, + aux_sym_enum_member_declaration_list_repeat1, + [302119] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766084,13 +765947,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2275), 1, + ACTIONS(8856), 1, anon_sym_RBRACE, - ACTIONS(10878), 1, + ACTIONS(10871), 1, anon_sym_COMMA, - STATE(7096), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7075), 9, + STATE(7069), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766100,7 +765963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302404] = 14, + [302170] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766121,13 +765984,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, - anon_sym_COMMA, - ACTIONS(10880), 1, - anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7076), 9, + ACTIONS(10873), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766137,7 +765998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302455] = 14, + [302217] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766158,13 +766019,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, + ACTIONS(10875), 1, anon_sym_COMMA, - ACTIONS(10882), 1, + ACTIONS(10877), 1, anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7077), 9, + STATE(6798), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(7072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766174,7 +766035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302506] = 14, + [302268] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766195,13 +766056,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10187), 1, - anon_sym_EQ, - ACTIONS(10189), 1, - anon_sym_RPAREN, - ACTIONS(10884), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - STATE(7078), 9, + ACTIONS(10879), 1, + anon_sym_RPAREN, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766211,7 +766072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302557] = 14, + [302319] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766232,13 +766093,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10282), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10887), 1, - anon_sym_RPAREN, - STATE(6809), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7079), 9, + ACTIONS(10881), 1, + anon_sym_RBRACK, + STATE(6715), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766248,7 +766109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302608] = 13, + [302370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766269,11 +766130,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7558), 1, - anon_sym_SEMI, - ACTIONS(10889), 1, + ACTIONS(10883), 1, + anon_sym_EQ, + ACTIONS(10201), 2, anon_sym_COMMA, - STATE(7080), 10, + anon_sym_RBRACE, + STATE(7075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766283,8 +766145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [302657] = 14, + [302419] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766305,13 +766166,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(10885), 1, anon_sym_COMMA, - ACTIONS(7600), 1, + ACTIONS(10887), 1, anon_sym_RBRACK, - STATE(6918), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7081), 9, + STATE(7087), 1, + aux_sym_global_attribute_repeat1, + STATE(7076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766321,7 +766182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302708] = 14, + [302470] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766342,13 +766203,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10892), 1, - anon_sym_COMMA, - ACTIONS(10894), 1, - anon_sym_RBRACE, - STATE(6942), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7082), 9, + ACTIONS(10889), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766358,34 +766217,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302759] = 14, - ACTIONS(9181), 1, + [302517] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10626), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10896), 1, - aux_sym_preproc_if_token2, - STATE(6982), 1, - aux_sym_preproc_pragma_repeat1, - STATE(7083), 9, + ACTIONS(7640), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766395,7 +766254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302810] = 13, + [302568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766416,11 +766275,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10490), 1, - anon_sym_RPAREN, - ACTIONS(10898), 1, - anon_sym_COMMA, - STATE(7084), 10, + ACTIONS(10891), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766430,8 +766289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [302859] = 14, + [302615] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766452,13 +766310,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2715), 1, anon_sym_RBRACK, - ACTIONS(10901), 1, + ACTIONS(10893), 1, anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7085), 9, + STATE(7050), 1, + aux_sym_argument_list_repeat1, + STATE(7080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766468,33 +766326,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302910] = 13, - ACTIONS(9181), 1, + [302666] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10903), 1, - aux_sym_preproc_if_token2, - ACTIONS(10905), 2, - anon_sym_annotations, - anon_sym_warnings, - STATE(7086), 9, + ACTIONS(10895), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766504,7 +766361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302959] = 12, + [302713] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766525,11 +766382,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10907), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7087), 9, + ACTIONS(10559), 1, + anon_sym_COMMA, + ACTIONS(10897), 1, + anon_sym_RPAREN, + STATE(7055), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766539,7 +766398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303006] = 12, + [302764] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766560,11 +766419,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10909), 3, + ACTIONS(10899), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_when, - STATE(7088), 9, + STATE(7083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766574,7 +766433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303053] = 14, + [302811] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766595,13 +766454,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6959), 1, - anon_sym_COLON, - ACTIONS(10911), 1, - sym_interpolation_close_brace, - STATE(7418), 1, - sym_interpolation_format_clause, - STATE(7089), 9, + ACTIONS(10559), 1, + anon_sym_COMMA, + ACTIONS(10901), 1, + anon_sym_RPAREN, + STATE(7082), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766611,7 +766470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303104] = 14, + [302862] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766632,13 +766491,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2349), 1, - anon_sym_RBRACK, - ACTIONS(10913), 1, - anon_sym_COMMA, - STATE(6921), 1, - aux_sym_list_pattern_repeat1, - STATE(7090), 9, + ACTIONS(5322), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_LPAREN, + STATE(2044), 1, + sym_block, + STATE(7085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766648,7 +766507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303155] = 14, + [302913] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766669,13 +766528,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10323), 1, + ACTIONS(10559), 1, anon_sym_COMMA, - ACTIONS(10915), 1, - anon_sym_GT, - STATE(7028), 1, - aux_sym_type_argument_list_repeat2, - STATE(7091), 9, + ACTIONS(10903), 1, + anon_sym_RPAREN, + STATE(7055), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766685,7 +766544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303206] = 12, + [302964] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766706,11 +766565,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10917), 3, - anon_sym_COMMA, + ACTIONS(8944), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7092), 9, + ACTIONS(10905), 1, + anon_sym_COMMA, + STATE(6963), 1, + aux_sym_global_attribute_repeat1, + STATE(7087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766720,7 +766581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303253] = 12, + [303015] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766741,11 +766602,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10919), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7093), 9, + ACTIONS(10308), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7088), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [303062] = 13, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10907), 1, + anon_sym_COMMA, + ACTIONS(10910), 1, + aux_sym_preproc_if_token2, + STATE(7089), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766755,7 +766651,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303300] = 14, + aux_sym_preproc_pragma_repeat1, + [303111] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766776,13 +766673,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym_RBRACK, - ACTIONS(10921), 1, + ACTIONS(10308), 1, + anon_sym_SEMI, + ACTIONS(10912), 1, anon_sym_COMMA, - STATE(6854), 1, - aux_sym_global_attribute_repeat1, - STATE(7094), 9, + STATE(7090), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766792,7 +766687,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303351] = 14, + aux_sym_variable_declaration_repeat1, + [303160] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766813,13 +766709,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LBRACE, - ACTIONS(10923), 1, - anon_sym_SEMI, - STATE(2759), 1, - sym_accessor_list, - STATE(7095), 9, + ACTIONS(10264), 1, + anon_sym_COMMA, + ACTIONS(10915), 1, + anon_sym_RPAREN, + STATE(6872), 1, + aux_sym_tuple_type_repeat1, + STATE(7091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766829,7 +766725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303402] = 13, + [303211] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766850,11 +766746,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10545), 1, - anon_sym_RBRACE, - ACTIONS(10925), 1, + ACTIONS(10917), 1, anon_sym_COMMA, - STATE(7096), 10, + ACTIONS(10919), 1, + anon_sym_RBRACK, + STATE(7037), 1, + aux_sym_global_attribute_repeat1, + STATE(7092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766864,8 +766762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [303451] = 14, + [303262] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766886,13 +766783,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(10928), 1, + ACTIONS(10921), 1, anon_sym_RPAREN, - STATE(6892), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7097), 9, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766902,7 +766799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303502] = 14, + [303313] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766923,13 +766820,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(10923), 1, + anon_sym_EQ, + ACTIONS(10848), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10915), 1, - anon_sym_GT, - STATE(6733), 1, - aux_sym_type_argument_list_repeat1, - STATE(7098), 9, + STATE(7094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766939,7 +766835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303553] = 14, + [303362] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766960,13 +766856,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9209), 1, - anon_sym_RBRACE, - ACTIONS(10930), 1, + ACTIONS(10925), 1, anon_sym_COMMA, - STATE(6950), 1, - aux_sym__with_body_repeat1, - STATE(7099), 9, + ACTIONS(10927), 1, + anon_sym_RBRACK, + STATE(7080), 1, + aux_sym_argument_list_repeat1, + STATE(7095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766976,7 +766872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303604] = 14, + [303413] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766997,13 +766893,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym_RBRACK, - ACTIONS(10921), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(6856), 1, - aux_sym_global_attribute_repeat1, - STATE(7100), 9, + ACTIONS(7691), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767013,7 +766909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303655] = 13, + [303464] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767034,11 +766930,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(10929), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7097), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [303511] = 14, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(7648), 1, anon_sym_COMMA, - ACTIONS(10935), 1, + ACTIONS(10931), 1, anon_sym_RPAREN, - STATE(7101), 10, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767048,8 +766981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_pattern_repeat1, - [303704] = 14, + [303562] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767070,13 +767002,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(10937), 1, - anon_sym_RPAREN, - STATE(7018), 1, - aux_sym_argument_list_repeat1, - STATE(7102), 9, + ACTIONS(10933), 1, + anon_sym_RBRACK, + STATE(6943), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767086,7 +767018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303755] = 14, + [303613] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767107,13 +767039,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7608), 1, + ACTIONS(10875), 1, anon_sym_COMMA, - ACTIONS(10939), 1, + ACTIONS(10935), 1, anon_sym_RPAREN, - STATE(6768), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7103), 9, + STATE(7072), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(7100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767123,7 +767055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303806] = 14, + [303664] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767144,13 +767076,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10307), 1, - anon_sym_GT, - ACTIONS(10323), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - STATE(6949), 1, - aux_sym_type_argument_list_repeat2, - STATE(7104), 9, + ACTIONS(10937), 1, + anon_sym_GT, + STATE(6843), 1, + aux_sym_type_parameter_list_repeat1, + STATE(7101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767160,7 +767092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303857] = 14, + [303715] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767181,13 +767113,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10639), 1, anon_sym_COMMA, - ACTIONS(10941), 1, - anon_sym_RBRACK, - STATE(6691), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7105), 9, + ACTIONS(10850), 1, + anon_sym_SEMI, + STATE(7090), 1, + aux_sym_variable_declaration_repeat1, + STATE(7102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767197,7 +767129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303908] = 13, + [303766] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767218,11 +767150,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10856), 1, anon_sym_COMMA, - STATE(7040), 1, - aux_sym_argument_list_repeat1, - STATE(7106), 9, + ACTIONS(10939), 1, + anon_sym_RPAREN, + STATE(6804), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(7103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767232,7 +767166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303956] = 12, + [303817] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767253,10 +767187,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3313), 2, - anon_sym_while, - anon_sym_else, - STATE(7107), 9, + ACTIONS(10941), 1, + anon_sym_EQ, + ACTIONS(10854), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(7104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767266,7 +767202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304002] = 13, + [303866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767287,11 +767223,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1317), 1, - anon_sym_LBRACE, - STATE(3470), 1, - sym_initializer_expression, - STATE(7108), 9, + ACTIONS(7861), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767301,7 +767237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304050] = 13, + [303913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767322,11 +767258,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10943), 1, - anon_sym_SEMI, - STATE(7109), 9, + ACTIONS(10282), 1, + anon_sym_COMMA, + STATE(6997), 1, + aux_sym_argument_list_repeat1, + STATE(7106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767336,7 +767272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304098] = 13, + [303961] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767359,9 +767295,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(6727), 1, + STATE(6357), 1, sym_parameter_list, - STATE(7110), 9, + STATE(7107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767371,7 +767307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304146] = 12, + [304009] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767392,10 +767328,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10662), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7111), 9, + ACTIONS(3191), 2, + anon_sym_while, + anon_sym_else, + STATE(7108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767405,7 +767341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304192] = 12, + [304055] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767426,10 +767362,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10452), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7112), 9, + ACTIONS(5722), 1, + anon_sym_LBRACE, + STATE(2106), 1, + sym_block, + STATE(7109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767439,7 +767376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304238] = 12, + [304103] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767460,10 +767397,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3179), 2, + ACTIONS(3195), 1, anon_sym_while, + ACTIONS(10943), 1, anon_sym_else, - STATE(7113), 9, + STATE(7110), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [304151] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3225), 2, + anon_sym_while, + anon_sym_else, + STATE(7111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767473,7 +767445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304284] = 13, + [304197] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767494,11 +767466,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(10945), 1, anon_sym_LBRACE, - STATE(3122), 1, - sym_initializer_expression, - STATE(7114), 9, + STATE(3361), 1, + sym__switch_expression_body, + STATE(7112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767508,7 +767480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304332] = 13, + [304245] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767529,11 +767501,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10258), 2, anon_sym_COMMA, - STATE(6953), 1, - aux_sym_argument_list_repeat1, - STATE(7115), 9, + anon_sym_RPAREN, + STATE(7113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767543,7 +767514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304380] = 13, + [304291] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767564,11 +767535,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(6954), 1, - aux_sym_tuple_type_repeat1, - STATE(7116), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(7141), 1, + sym_parameter_list, + STATE(7114), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [304339] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10947), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767578,7 +767583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304428] = 13, + [304385] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767599,11 +767604,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(7193), 1, - sym_tuple_expression, - STATE(7117), 9, + STATE(6380), 1, + sym_parameter_list, + STATE(7116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767613,7 +767618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304476] = 12, + [304433] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767634,10 +767639,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10653), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7118), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6460), 1, + sym_parameter_list, + STATE(7117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767647,7 +767653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304522] = 13, + [304481] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767668,11 +767674,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6704), 1, - sym_bracketed_parameter_list, - STATE(7119), 9, + ACTIONS(10949), 1, + anon_sym_LBRACE, + STATE(3129), 1, + sym__switch_expression_body, + STATE(7118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767682,7 +767688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304570] = 13, + [304529] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767703,11 +767709,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym__for_statement_conditions, - STATE(7120), 9, + ACTIONS(10951), 2, + anon_sym_this, + anon_sym_base, + STATE(7119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767717,7 +767722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304618] = 13, + [304575] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767738,11 +767743,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3275), 1, - anon_sym_while, - ACTIONS(10951), 1, - anon_sym_else, - STATE(7121), 9, + ACTIONS(10953), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767752,7 +767756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304666] = 13, + [304621] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767773,11 +767777,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - STATE(6399), 1, - sym_block, - STATE(7122), 9, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(6795), 1, + sym_bracketed_parameter_list, + STATE(7121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767787,7 +767791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304714] = 13, + [304669] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767808,11 +767812,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_LBRACE, - STATE(3271), 1, - sym_initializer_expression, - STATE(7123), 9, + ACTIONS(10957), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767822,7 +767825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304762] = 12, + [304715] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767843,10 +767846,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3297), 2, - anon_sym_while, - anon_sym_else, - STATE(7124), 9, + ACTIONS(10959), 1, + anon_sym_LBRACE, + STATE(3431), 1, + sym__with_body, + STATE(7123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767856,7 +767860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304808] = 12, + [304763] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767877,10 +767881,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3301), 2, - anon_sym_while, - anon_sym_else, - STATE(7125), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7266), 1, + sym_string_literal, + STATE(7124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767890,7 +767895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304854] = 13, + [304811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767911,11 +767916,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6379), 1, - sym_parameter_list, - STATE(7126), 9, + ACTIONS(3201), 2, + anon_sym_while, + anon_sym_else, + STATE(7125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767925,7 +767929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304902] = 13, + [304857] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767946,11 +767950,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10953), 1, - anon_sym_SEMI, - STATE(7127), 9, + ACTIONS(10961), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym__with_body, + STATE(7126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767960,31 +767964,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304950] = 12, - ACTIONS(3), 1, + [304905] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7128), 9, + ACTIONS(10963), 1, + aux_sym_preproc_if_token2, + ACTIONS(10965), 1, + sym_preproc_arg, + STATE(7127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767994,7 +767999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304996] = 13, + [304953] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768015,11 +768020,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(10967), 1, anon_sym_LBRACE, - STATE(3063), 1, - sym_initializer_expression, - STATE(7129), 9, + STATE(3015), 1, + sym__switch_expression_body, + STATE(7128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768029,31 +768034,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305044] = 12, - ACTIONS(9181), 1, + [305001] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10955), 2, + ACTIONS(10969), 2, sym_character_literal_content, sym_escape_sequence, - STATE(7130), 9, + STATE(7129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768063,7 +768068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305090] = 12, + [305047] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768084,10 +768089,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10957), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7131), 9, + ACTIONS(3233), 2, + anon_sym_while, + anon_sym_else, + STATE(7130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768097,7 +768102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305136] = 12, + [305093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768118,10 +768123,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10959), 2, + ACTIONS(10971), 2, anon_sym_SEMI, anon_sym_where, - STATE(7132), 9, + STATE(7131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768131,7 +768136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305182] = 13, + [305139] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768152,11 +768157,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10961), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(2972), 1, sym_array_rank_specifier, - STATE(7133), 9, + STATE(7132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768166,7 +768171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305230] = 12, + [305187] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768187,10 +768192,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3317), 2, - anon_sym_while, - anon_sym_else, - STATE(7134), 9, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6768), 1, + sym_parameter_list, + STATE(7133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768200,7 +768206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305276] = 12, + [305235] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768221,10 +768227,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3321), 2, - anon_sym_while, - anon_sym_else, - STATE(7135), 9, + ACTIONS(10975), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym__with_body, + STATE(7134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768234,7 +768241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305322] = 13, + [305283] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768255,11 +768262,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(1401), 1, anon_sym_LBRACE, - STATE(7170), 1, - sym_block, - STATE(7136), 9, + STATE(4666), 1, + sym_initializer_expression, + STATE(7135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768269,32 +768276,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305370] = 13, - ACTIONS(9181), 1, + [305331] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10677), 1, - aux_sym_preproc_if_token2, - ACTIONS(10963), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - STATE(7137), 9, + STATE(6932), 1, + aux_sym_argument_list_repeat1, + STATE(7136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768304,7 +768311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305418] = 12, + [305379] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768325,10 +768332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10965), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7138), 9, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6958), 1, + aux_sym_tuple_type_repeat1, + STATE(7137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768338,7 +768346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305464] = 13, + [305427] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768359,10 +768367,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6461), 1, - sym_parameter_list, + ACTIONS(3229), 2, + anon_sym_while, + anon_sym_else, + STATE(7138), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [305473] = 13, + ACTIONS(4967), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10977), 1, + sym_string_literal_encoding, STATE(7139), 9, sym_preproc_region, sym_preproc_endregion, @@ -768373,7 +768415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305512] = 13, + [305521] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768394,10 +768436,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, - anon_sym_LBRACE, - STATE(4646), 1, - sym_block, + ACTIONS(3293), 2, + anon_sym_while, + anon_sym_else, STATE(7140), 9, sym_preproc_region, sym_preproc_endregion, @@ -768408,7 +768449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305560] = 13, + [305567] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768429,10 +768470,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10967), 1, - anon_sym_LBRACE, - STATE(2112), 1, - sym_switch_body, + ACTIONS(10979), 2, + anon_sym_SEMI, + anon_sym_where, STATE(7141), 9, sym_preproc_region, sym_preproc_endregion, @@ -768443,7 +768483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305608] = 13, + [305613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768464,10 +768504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10271), 2, anon_sym_COMMA, - STATE(6898), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RPAREN, STATE(7142), 9, sym_preproc_region, sym_preproc_endregion, @@ -768478,7 +768517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305656] = 13, + [305659] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768499,9 +768538,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - STATE(3093), 1, + STATE(3435), 1, sym_initializer_expression, STATE(7143), 9, sym_preproc_region, @@ -768513,7 +768552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305704] = 13, + [305707] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768534,10 +768573,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym__for_statement_conditions, + ACTIONS(1507), 1, + anon_sym_LBRACE, + STATE(3150), 1, + sym_initializer_expression, STATE(7144), 9, sym_preproc_region, sym_preproc_endregion, @@ -768548,7 +768587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305752] = 12, + [305755] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768569,9 +768608,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3325), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(10282), 1, + anon_sym_COMMA, + STATE(6889), 1, + aux_sym_argument_list_repeat1, STATE(7145), 9, sym_preproc_region, sym_preproc_endregion, @@ -768582,7 +768622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305798] = 13, + [305803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768603,10 +768643,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_LBRACE, - STATE(3443), 1, - sym_block, + ACTIONS(10430), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(7146), 9, sym_preproc_region, sym_preproc_endregion, @@ -768617,7 +768656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305846] = 13, + [305849] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768638,10 +768677,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10969), 1, - anon_sym_SEMI, + ACTIONS(10981), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7147), 9, sym_preproc_region, sym_preproc_endregion, @@ -768652,7 +768690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305894] = 12, + [305895] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768673,9 +768711,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3281), 2, + anon_sym_while, + anon_sym_else, STATE(7148), 9, sym_preproc_region, sym_preproc_endregion, @@ -768686,7 +768724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305940] = 12, + [305941] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768707,9 +768745,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10973), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(10983), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym__for_statement_conditions, STATE(7149), 9, sym_preproc_region, sym_preproc_endregion, @@ -768720,7 +768759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305986] = 13, + [305989] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768741,10 +768780,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5635), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - STATE(3120), 1, - sym_block, + STATE(3439), 1, + sym_initializer_expression, STATE(7150), 9, sym_preproc_region, sym_preproc_endregion, @@ -768755,7 +768794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306034] = 12, + [306037] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768776,9 +768815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3329), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(10985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(7151), 9, sym_preproc_region, sym_preproc_endregion, @@ -768789,7 +768828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306080] = 12, + [306083] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768810,9 +768849,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10975), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(10987), 1, + anon_sym_SEMI, STATE(7152), 9, sym_preproc_region, sym_preproc_endregion, @@ -768823,7 +768863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306126] = 13, + [306131] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768844,10 +768884,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6359), 1, - sym_parameter_list, + ACTIONS(1317), 1, + anon_sym_LBRACE, + STATE(3448), 1, + sym_initializer_expression, STATE(7153), 9, sym_preproc_region, sym_preproc_endregion, @@ -768858,7 +768898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306174] = 13, + [306179] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768879,10 +768919,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(7317), 1, - sym_parameter_list, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6894), 1, + aux_sym_tuple_type_repeat1, STATE(7154), 9, sym_preproc_region, sym_preproc_endregion, @@ -768893,7 +768933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306222] = 12, + [306227] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768914,9 +768954,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10977), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(10989), 1, + anon_sym_LBRACK, + ACTIONS(10991), 1, + anon_sym_LT, STATE(7155), 9, sym_preproc_region, sym_preproc_endregion, @@ -768927,7 +768968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306268] = 12, + [306275] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768948,9 +768989,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3305), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(10690), 1, + anon_sym_DQUOTE, + STATE(7503), 1, + sym_string_literal, STATE(7156), 9, sym_preproc_region, sym_preproc_endregion, @@ -768961,7 +769003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306314] = 13, + [306323] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768982,10 +769024,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_LBRACE, - STATE(3492), 1, - sym_block, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(10993), 1, + anon_sym_in, STATE(7157), 9, sym_preproc_region, sym_preproc_endregion, @@ -768996,7 +769038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306362] = 12, + [306371] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769017,9 +769059,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3223), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(5322), 1, + anon_sym_LBRACE, + STATE(1935), 1, + sym_block, STATE(7158), 9, sym_preproc_region, sym_preproc_endregion, @@ -769030,30 +769073,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306408] = 12, - ACTIONS(9181), 1, + [306419] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10979), 2, - sym_character_literal_content, - sym_escape_sequence, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6349), 1, + sym_parameter_list, STATE(7159), 9, sym_preproc_region, sym_preproc_endregion, @@ -769064,7 +769108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306454] = 12, + [306467] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769085,9 +769129,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10981), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(1697), 1, + anon_sym_LBRACE, + STATE(3924), 1, + sym_initializer_expression, STATE(7160), 9, sym_preproc_region, sym_preproc_endregion, @@ -769098,31 +769143,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306500] = 13, - ACTIONS(3), 1, + [306515] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10983), 1, - anon_sym_LBRACE, - STATE(3864), 1, - sym__switch_expression_body, + ACTIONS(10995), 2, + sym_character_literal_content, + sym_escape_sequence, STATE(7161), 9, sym_preproc_region, sym_preproc_endregion, @@ -769133,7 +769177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306548] = 12, + [306561] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769154,9 +769198,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3227), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(5722), 1, + anon_sym_LBRACE, + STATE(2034), 1, + sym_block, STATE(7162), 9, sym_preproc_region, sym_preproc_endregion, @@ -769167,7 +769212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306594] = 13, + [306609] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769188,10 +769233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1317), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_initializer_expression, + ACTIONS(3321), 2, + anon_sym_while, + anon_sym_else, STATE(7163), 9, sym_preproc_region, sym_preproc_endregion, @@ -769202,7 +769246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306642] = 13, + [306655] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769225,7 +769269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(6371), 1, + STATE(7248), 1, sym_parameter_list, STATE(7164), 9, sym_preproc_region, @@ -769237,7 +769281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306690] = 13, + [306703] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769258,10 +769302,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10985), 1, + ACTIONS(10955), 1, anon_sym_LBRACK, - STATE(3080), 1, - sym_array_rank_specifier, + STATE(6718), 1, + sym_bracketed_parameter_list, STATE(7165), 9, sym_preproc_region, sym_preproc_endregion, @@ -769272,7 +769316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306738] = 12, + [306751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769293,7 +769337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10987), 2, + ACTIONS(10997), 2, anon_sym_SEMI, anon_sym_where, STATE(7166), 9, @@ -769306,7 +769350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306784] = 13, + [306797] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769327,10 +769371,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10989), 1, - anon_sym_LBRACK, - STATE(2425), 1, - sym_array_rank_specifier, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6992), 1, + aux_sym_tuple_type_repeat1, STATE(7167), 9, sym_preproc_region, sym_preproc_endregion, @@ -769341,7 +769385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306832] = 13, + [306845] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769362,10 +769406,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10991), 1, - anon_sym_LPAREN, - STATE(7169), 1, - sym_tuple_expression, + ACTIONS(1251), 1, + anon_sym_LBRACE, + STATE(3032), 1, + sym_initializer_expression, STATE(7168), 9, sym_preproc_region, sym_preproc_endregion, @@ -769376,7 +769420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306880] = 13, + [306893] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769397,10 +769441,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_LBRACE, - STATE(2051), 1, - sym_switch_body, + ACTIONS(10282), 1, + anon_sym_COMMA, + STATE(6860), 1, + aux_sym_argument_list_repeat1, STATE(7169), 9, sym_preproc_region, sym_preproc_endregion, @@ -769411,7 +769455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306928] = 12, + [306941] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769432,9 +769476,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3231), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(1167), 1, + anon_sym_LBRACE, + STATE(3393), 1, + sym_initializer_expression, STATE(7170), 9, sym_preproc_region, sym_preproc_endregion, @@ -769445,7 +769490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306974] = 12, + [306989] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769466,9 +769511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10734), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(6782), 1, + sym_bracketed_parameter_list, STATE(7171), 9, sym_preproc_region, sym_preproc_endregion, @@ -769479,7 +769525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307020] = 12, + [307037] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769500,9 +769546,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3235), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(9946), 1, + anon_sym_LBRACE, + STATE(3935), 1, + sym_block, STATE(7172), 9, sym_preproc_region, sym_preproc_endregion, @@ -769513,7 +769560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307066] = 13, + [307085] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769534,10 +769581,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(6972), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(10999), 1, + anon_sym_SEMI, STATE(7173), 9, sym_preproc_region, sym_preproc_endregion, @@ -769548,7 +769595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307114] = 13, + [307133] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769569,10 +769616,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LBRACE, - STATE(1960), 1, - sym_block, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6365), 1, + sym_parameter_list, STATE(7174), 9, sym_preproc_region, sym_preproc_endregion, @@ -769583,7 +769630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307162] = 12, + [307181] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769604,9 +769651,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3183), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(1167), 1, + anon_sym_LBRACE, + STATE(3275), 1, + sym_initializer_expression, STATE(7175), 9, sym_preproc_region, sym_preproc_endregion, @@ -769617,7 +769665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307208] = 13, + [307229] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769638,10 +769686,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6472), 1, - sym_parameter_list, + ACTIONS(11001), 1, + anon_sym_LBRACE, + STATE(3880), 1, + sym__with_body, STATE(7176), 9, sym_preproc_region, sym_preproc_endregion, @@ -769652,7 +769700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307256] = 13, + [307277] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769673,10 +769721,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6466), 1, - sym_parameter_list, + ACTIONS(3333), 2, + anon_sym_while, + anon_sym_else, STATE(7177), 9, sym_preproc_region, sym_preproc_endregion, @@ -769687,7 +769734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307304] = 13, + [307323] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769708,10 +769755,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9990), 1, - anon_sym_LBRACE, - STATE(3011), 1, - sym_block, + ACTIONS(11003), 1, + anon_sym_LPAREN, + STATE(7282), 1, + sym_tuple_expression, STATE(7178), 9, sym_preproc_region, sym_preproc_endregion, @@ -769722,7 +769769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307352] = 13, + [307371] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769743,10 +769790,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(10995), 1, - anon_sym_SEMI, + ACTIONS(11005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7179), 9, sym_preproc_region, sym_preproc_endregion, @@ -769757,31 +769803,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307400] = 13, - ACTIONS(4931), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [307417] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10997), 1, - sym_string_literal_encoding, + ACTIONS(10291), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7180), 9, sym_preproc_region, sym_preproc_endregion, @@ -769792,7 +769837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307448] = 13, + [307463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769813,10 +769858,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_LBRACE, - STATE(3804), 1, - sym__with_body, + ACTIONS(3345), 2, + anon_sym_while, + anon_sym_else, STATE(7181), 9, sym_preproc_region, sym_preproc_endregion, @@ -769827,7 +769871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307496] = 13, + [307509] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769848,10 +769892,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6510), 1, - sym_parameter_list, + ACTIONS(5638), 1, + anon_sym_LBRACE, + STATE(7329), 1, + sym_block, STATE(7182), 9, sym_preproc_region, sym_preproc_endregion, @@ -769862,7 +769906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307544] = 13, + [307557] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769883,10 +769927,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1251), 1, - anon_sym_LBRACE, - STATE(3027), 1, - sym_initializer_expression, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6488), 1, + sym_parameter_list, STATE(7183), 9, sym_preproc_region, sym_preproc_endregion, @@ -769897,7 +769941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307592] = 13, + [307605] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769918,10 +769962,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6708), 1, - sym_bracketed_parameter_list, + ACTIONS(1507), 1, + anon_sym_LBRACE, + STATE(3130), 1, + sym_initializer_expression, STATE(7184), 9, sym_preproc_region, sym_preproc_endregion, @@ -769932,31 +769976,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307640] = 13, - ACTIONS(9181), 1, + [307653] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11001), 1, - aux_sym_preproc_if_token2, - ACTIONS(11003), 1, - sym_preproc_arg, + ACTIONS(1251), 1, + anon_sym_LBRACE, + STATE(3068), 1, + sym_initializer_expression, STATE(7185), 9, sym_preproc_region, sym_preproc_endregion, @@ -769967,7 +770011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307688] = 12, + [307701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769988,7 +770032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3211), 2, + ACTIONS(3213), 2, anon_sym_while, anon_sym_else, STATE(7186), 9, @@ -770001,7 +770045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307734] = 13, + [307747] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770022,10 +770066,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11005), 1, - anon_sym_LBRACE, - STATE(7304), 1, - sym_switch_body, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6501), 1, + sym_parameter_list, STATE(7187), 9, sym_preproc_region, sym_preproc_endregion, @@ -770036,7 +770080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307782] = 13, + [307795] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770058,9 +770102,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11007), 1, - anon_sym_LBRACK, - STATE(2974), 1, - sym_array_rank_specifier, + anon_sym_LBRACE, + STATE(4655), 1, + sym__switch_expression_body, STATE(7188), 9, sym_preproc_region, sym_preproc_endregion, @@ -770071,7 +770115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307830] = 13, + [307843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770092,10 +770136,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6710), 1, - sym_bracketed_parameter_list, + ACTIONS(11009), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(7189), 9, sym_preproc_region, sym_preproc_endregion, @@ -770106,7 +770149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307878] = 12, + [307889] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770127,9 +770170,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11009), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(11011), 1, + anon_sym_LBRACK, + STATE(2999), 1, + sym_array_rank_specifier, STATE(7190), 9, sym_preproc_region, sym_preproc_endregion, @@ -770140,7 +770184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307924] = 12, + [307937] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770161,9 +770205,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3239), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(4028), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7191), 9, sym_preproc_region, sym_preproc_endregion, @@ -770174,7 +770218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307970] = 12, + [307983] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770195,9 +770239,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11011), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7124), 1, + sym_string_literal, STATE(7192), 9, sym_preproc_region, sym_preproc_endregion, @@ -770208,7 +770253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308016] = 13, + [308031] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770229,10 +770274,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11013), 1, - anon_sym_LBRACE, - STATE(1950), 1, - sym_switch_body, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6471), 1, + sym_parameter_list, STATE(7193), 9, sym_preproc_region, sym_preproc_endregion, @@ -770243,7 +770288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308064] = 13, + [308079] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770264,10 +770309,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11015), 1, - anon_sym_LPAREN, - STATE(7280), 1, - sym_tuple_expression, + ACTIONS(3349), 2, + anon_sym_while, + anon_sym_else, STATE(7194), 9, sym_preproc_region, sym_preproc_endregion, @@ -770278,7 +770322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308112] = 13, + [308125] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770299,10 +770343,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6761), 1, - sym_parameter_list, + ACTIONS(11013), 1, + anon_sym_LBRACK, + STATE(2721), 1, + sym_array_rank_specifier, STATE(7195), 9, sym_preproc_region, sym_preproc_endregion, @@ -770313,7 +770357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308160] = 13, + [308173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770334,10 +770378,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1503), 1, - anon_sym_LBRACE, - STATE(3115), 1, - sym_initializer_expression, + ACTIONS(10540), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7196), 9, sym_preproc_region, sym_preproc_endregion, @@ -770348,7 +770391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308208] = 13, + [308219] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770369,10 +770412,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11017), 1, + ACTIONS(11015), 1, anon_sym_LBRACE, - STATE(4655), 1, - sym__with_body, + STATE(2023), 1, + sym_switch_body, STATE(7197), 9, sym_preproc_region, sym_preproc_endregion, @@ -770383,7 +770426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308256] = 13, + [308267] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770406,7 +770449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(6489), 1, + STATE(6506), 1, sym_parameter_list, STATE(7198), 9, sym_preproc_region, @@ -770418,7 +770461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308304] = 12, + [308315] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770439,9 +770482,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10386), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10983), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym__for_statement_conditions, STATE(7199), 9, sym_preproc_region, sym_preproc_endregion, @@ -770452,7 +770496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308350] = 12, + [308363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770473,7 +770517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3247), 2, + ACTIONS(3273), 2, anon_sym_while, anon_sym_else, STATE(7200), 9, @@ -770486,30 +770530,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308396] = 12, - ACTIONS(9181), 1, + [308409] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11019), 2, - sym_character_literal_content, - sym_escape_sequence, + ACTIONS(9970), 1, + anon_sym_LBRACE, + STATE(3446), 1, + sym_block, STATE(7201), 9, sym_preproc_region, sym_preproc_endregion, @@ -770520,7 +770565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308442] = 13, + [308457] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770541,9 +770586,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(9923), 1, anon_sym_LBRACE, - STATE(1936), 1, + STATE(3358), 1, sym_block, STATE(7202), 9, sym_preproc_region, @@ -770555,7 +770600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308490] = 13, + [308505] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770576,10 +770621,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11021), 1, + ACTIONS(1507), 1, anon_sym_LBRACE, - STATE(3143), 1, - sym__with_body, + STATE(3112), 1, + sym_initializer_expression, STATE(7203), 9, sym_preproc_region, sym_preproc_endregion, @@ -770590,7 +770635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308538] = 12, + [308553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770611,9 +770656,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10508), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3341), 2, + anon_sym_while, + anon_sym_else, STATE(7204), 9, sym_preproc_region, sym_preproc_endregion, @@ -770624,7 +770669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308584] = 12, + [308599] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770645,9 +770690,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1167), 1, + anon_sym_LBRACE, + STATE(3287), 1, + sym_initializer_expression, STATE(7205), 9, sym_preproc_region, sym_preproc_endregion, @@ -770658,31 +770704,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308630] = 13, - ACTIONS(4920), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [308647] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11025), 1, - sym_string_literal_encoding, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(11017), 1, + anon_sym_SEMI, STATE(7206), 9, sym_preproc_region, sym_preproc_endregion, @@ -770693,7 +770739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308678] = 12, + [308695] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770714,9 +770760,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10776), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6755), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, STATE(7207), 9, sym_preproc_region, sym_preproc_endregion, @@ -770727,7 +770774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308724] = 13, + [308743] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770748,9 +770795,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11027), 1, + ACTIONS(11019), 1, anon_sym_LBRACE, - STATE(3453), 1, + STATE(3427), 1, sym__switch_expression_body, STATE(7208), 9, sym_preproc_region, @@ -770762,7 +770809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308772] = 13, + [308791] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770783,10 +770830,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(11029), 1, - anon_sym_SEMI, + ACTIONS(11015), 1, + anon_sym_LBRACE, + STATE(2058), 1, + sym_switch_body, STATE(7209), 9, sym_preproc_region, sym_preproc_endregion, @@ -770797,7 +770844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308820] = 12, + [308839] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770818,9 +770865,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3309), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11021), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_array_rank_specifier, STATE(7210), 9, sym_preproc_region, sym_preproc_endregion, @@ -770831,7 +770879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308866] = 12, + [308887] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770852,9 +770900,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3175), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(7091), 1, + aux_sym_tuple_type_repeat1, STATE(7211), 9, sym_preproc_region, sym_preproc_endregion, @@ -770865,7 +770914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308912] = 13, + [308935] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770886,10 +770935,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, - anon_sym_DQUOTE, - STATE(7659), 1, - sym_string_literal, + ACTIONS(9929), 1, + anon_sym_LBRACE, + STATE(3008), 1, + sym_block, STATE(7212), 9, sym_preproc_region, sym_preproc_endregion, @@ -770900,7 +770949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308960] = 13, + [308983] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770921,10 +770970,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6696), 1, - sym_bracketed_parameter_list, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(11023), 1, + anon_sym_SEMI, STATE(7213), 9, sym_preproc_region, sym_preproc_endregion, @@ -770935,7 +770984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309008] = 13, + [309031] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770956,10 +771005,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11031), 1, + ACTIONS(10983), 1, anon_sym_LPAREN, - STATE(7234), 1, - sym_tuple_expression, + STATE(69), 1, + sym__for_statement_conditions, STATE(7214), 9, sym_preproc_region, sym_preproc_endregion, @@ -770970,66 +771019,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309056] = 13, - ACTIONS(3), 1, + [309079] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9847), 1, - anon_sym_LBRACE, - STATE(4701), 1, - sym_block, - STATE(7215), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [309104] = 12, ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, sym_comment, - ACTIONS(11033), 2, + ACTIONS(11025), 2, sym_character_literal_content, sym_escape_sequence, - STATE(7216), 9, + STATE(7215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771039,7 +771053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309150] = 13, + [309125] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771060,11 +771074,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6716), 1, - sym_bracketed_parameter_list, - STATE(7217), 9, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(11027), 1, + anon_sym_SEMI, + STATE(7216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771074,7 +771088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309198] = 13, + [309173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771095,10 +771109,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(11035), 1, + ACTIONS(11029), 2, anon_sym_SEMI, + anon_sym_LBRACE, + STATE(7217), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [309219] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(1251), 1, + anon_sym_LBRACE, + STATE(3014), 1, + sym_initializer_expression, STATE(7218), 9, sym_preproc_region, sym_preproc_endregion, @@ -771109,7 +771157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309246] = 12, + [309267] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771130,9 +771178,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3217), 2, + anon_sym_while, + anon_sym_else, STATE(7219), 9, sym_preproc_region, sym_preproc_endregion, @@ -771143,7 +771191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309292] = 12, + [309313] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771164,9 +771212,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11037), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5638), 1, + anon_sym_LBRACE, + STATE(6438), 1, + sym_block, STATE(7220), 9, sym_preproc_region, sym_preproc_endregion, @@ -771177,7 +771226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309338] = 13, + [309361] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771198,10 +771247,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_COMMA, - STATE(7023), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11031), 1, + anon_sym_LBRACE, + STATE(7292), 1, + sym_switch_body, STATE(7221), 9, sym_preproc_region, sym_preproc_endregion, @@ -771212,7 +771261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309386] = 13, + [309409] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771233,10 +771282,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_COMMA, - STATE(6970), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3277), 2, + anon_sym_while, + anon_sym_else, STATE(7222), 9, sym_preproc_region, sym_preproc_endregion, @@ -771247,7 +771295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309434] = 13, + [309455] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771268,10 +771316,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(6971), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3337), 2, + anon_sym_while, + anon_sym_else, STATE(7223), 9, sym_preproc_region, sym_preproc_endregion, @@ -771282,7 +771329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309482] = 12, + [309501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771303,9 +771350,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10535), 2, + ACTIONS(10773), 2, anon_sym_COMMA, - anon_sym_GT, + anon_sym_RBRACK, STATE(7224), 9, sym_preproc_region, sym_preproc_endregion, @@ -771316,7 +771363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309528] = 13, + [309547] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771337,10 +771384,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9865), 1, - anon_sym_LBRACE, - STATE(3279), 1, - sym_block, + ACTIONS(3317), 2, + anon_sym_while, + anon_sym_else, STATE(7225), 9, sym_preproc_region, sym_preproc_endregion, @@ -771351,7 +771397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309576] = 13, + [309593] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771372,10 +771418,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6344), 1, - sym_parameter_list, + ACTIONS(4024), 1, + anon_sym_GT, + ACTIONS(9701), 1, + anon_sym_COMMA, STATE(7226), 9, sym_preproc_region, sym_preproc_endregion, @@ -771386,7 +771432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309624] = 13, + [309641] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771407,10 +771453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6355), 1, - sym_parameter_list, + ACTIONS(1697), 1, + anon_sym_LBRACE, + STATE(3912), 1, + sym_initializer_expression, STATE(7227), 9, sym_preproc_region, sym_preproc_endregion, @@ -771421,7 +771467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309672] = 13, + [309689] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771442,10 +771488,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11039), 1, - anon_sym_LBRACE, - STATE(3145), 1, - sym__switch_expression_body, + ACTIONS(11033), 2, + anon_sym_disable, + anon_sym_restore, STATE(7228), 9, sym_preproc_region, sym_preproc_endregion, @@ -771456,7 +771501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309720] = 12, + [309735] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771477,9 +771522,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11041), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(11035), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(7229), 9, sym_preproc_region, sym_preproc_endregion, @@ -771490,7 +771535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309766] = 13, + [309781] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771511,10 +771556,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(3813), 1, - sym_initializer_expression, + ACTIONS(5316), 1, + anon_sym_LPAREN, + STATE(6864), 1, + sym_argument_list, STATE(7230), 9, sym_preproc_region, sym_preproc_endregion, @@ -771525,30 +771570,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309814] = 12, - ACTIONS(9181), 1, + [309829] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11043), 2, - sym_character_literal_content, - sym_escape_sequence, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6442), 1, + sym_parameter_list, STATE(7231), 9, sym_preproc_region, sym_preproc_endregion, @@ -771559,7 +771605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309860] = 13, + [309877] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771580,10 +771626,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_LBRACE, - STATE(3281), 1, - sym_initializer_expression, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6880), 1, + aux_sym_tuple_type_repeat1, STATE(7232), 9, sym_preproc_region, sym_preproc_endregion, @@ -771594,7 +771640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309908] = 13, + [309925] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771615,10 +771661,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(11045), 1, - anon_sym_in, + ACTIONS(11031), 1, + anon_sym_LBRACE, + STATE(7288), 1, + sym_switch_body, STATE(7233), 9, sym_preproc_region, sym_preproc_endregion, @@ -771629,7 +771675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309956] = 13, + [309973] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771650,10 +771696,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10967), 1, - anon_sym_LBRACE, - STATE(2132), 1, - sym_switch_body, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6977), 1, + aux_sym_tuple_type_repeat1, STATE(7234), 9, sym_preproc_region, sym_preproc_endregion, @@ -771664,7 +771710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310004] = 13, + [310021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771685,10 +771731,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11047), 1, - anon_sym_LBRACE, - STATE(3458), 1, - sym__with_body, + ACTIONS(10452), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7235), 9, sym_preproc_region, sym_preproc_endregion, @@ -771699,7 +771744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310052] = 13, + [310067] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771720,10 +771765,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(7044), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6486), 1, + sym_parameter_list, STATE(7236), 9, sym_preproc_region, sym_preproc_endregion, @@ -771734,7 +771779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310100] = 12, + [310115] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771755,9 +771800,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11049), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3205), 2, + anon_sym_while, + anon_sym_else, STATE(7237), 9, sym_preproc_region, sym_preproc_endregion, @@ -771768,7 +771813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310146] = 13, + [310161] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771789,10 +771834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(145), 1, - anon_sym_DQUOTE, - STATE(7256), 1, - sym_string_literal, + ACTIONS(3221), 2, + anon_sym_while, + anon_sym_else, STATE(7238), 9, sym_preproc_region, sym_preproc_endregion, @@ -771803,7 +771847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310194] = 13, + [310207] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771824,9 +771868,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10264), 1, anon_sym_COMMA, - STATE(7027), 1, + STATE(6802), 1, aux_sym_tuple_type_repeat1, STATE(7239), 9, sym_preproc_region, @@ -771838,7 +771882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310242] = 13, + [310255] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771859,10 +771903,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(6800), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(11037), 1, + anon_sym_LBRACE, + STATE(3135), 1, + sym__with_body, STATE(7240), 9, sym_preproc_region, sym_preproc_endregion, @@ -771873,7 +771917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310290] = 12, + [310303] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771894,9 +771938,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3281), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(9807), 1, + anon_sym_LBRACE, + STATE(4702), 1, + sym_block, STATE(7241), 9, sym_preproc_region, sym_preproc_endregion, @@ -771907,7 +771952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310336] = 12, + [310351] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771928,9 +771973,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11051), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3285), 2, + anon_sym_while, + anon_sym_else, STATE(7242), 9, sym_preproc_region, sym_preproc_endregion, @@ -771941,7 +771986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310382] = 13, + [310397] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771962,10 +772007,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6484), 1, - sym_parameter_list, + ACTIONS(11039), 1, + anon_sym_LBRACK, + STATE(2421), 1, + sym_array_rank_specifier, STATE(7243), 9, sym_preproc_region, sym_preproc_endregion, @@ -771976,7 +772021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310430] = 12, + [310445] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771997,9 +772042,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11053), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6477), 1, + sym_parameter_list, STATE(7244), 9, sym_preproc_region, sym_preproc_endregion, @@ -772010,7 +772056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310476] = 13, + [310493] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772031,10 +772077,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9865), 1, - anon_sym_LBRACE, - STATE(3383), 1, - sym_block, + ACTIONS(11041), 1, + anon_sym_LBRACK, + STATE(3231), 1, + sym_array_rank_specifier, STATE(7245), 9, sym_preproc_region, sym_preproc_endregion, @@ -772045,7 +772091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310524] = 12, + [310541] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772066,9 +772112,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3171), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6451), 1, + sym_parameter_list, STATE(7246), 9, sym_preproc_region, sym_preproc_endregion, @@ -772079,7 +772126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310570] = 12, + [310589] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772100,9 +772147,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11055), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9807), 1, + anon_sym_LBRACE, + STATE(4648), 1, + sym_block, STATE(7247), 9, sym_preproc_region, sym_preproc_endregion, @@ -772113,7 +772161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310616] = 12, + [310637] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772134,9 +772182,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3285), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11043), 2, + anon_sym_SEMI, + anon_sym_where, STATE(7248), 9, sym_preproc_region, sym_preproc_endregion, @@ -772147,7 +772195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310662] = 13, + [310683] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772168,10 +772216,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(3828), 1, - sym_initializer_expression, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6479), 1, + sym_parameter_list, STATE(7249), 9, sym_preproc_region, sym_preproc_endregion, @@ -772182,7 +772230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310710] = 12, + [310731] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772203,9 +772251,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11057), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(10827), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7250), 9, sym_preproc_region, sym_preproc_endregion, @@ -772216,31 +772264,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310756] = 13, - ACTIONS(3), 1, + [310777] = 13, + ACTIONS(4952), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, - ACTIONS(11059), 1, - anon_sym_in, + ACTIONS(11045), 1, + sym_string_literal_encoding, STATE(7251), 9, sym_preproc_region, sym_preproc_endregion, @@ -772251,7 +772299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310804] = 12, + [310825] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772272,9 +772320,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4027), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(5638), 1, + anon_sym_LBRACE, + STATE(3110), 1, + sym_block, STATE(7252), 9, sym_preproc_region, sym_preproc_endregion, @@ -772285,7 +772334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310850] = 12, + [310873] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772306,9 +772355,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10828), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(11047), 1, + anon_sym_LPAREN, + STATE(7233), 1, + sym_tuple_expression, STATE(7253), 9, sym_preproc_region, sym_preproc_endregion, @@ -772319,7 +772369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310896] = 13, + [310921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772340,10 +772390,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_LBRACK, - ACTIONS(6731), 1, - anon_sym_STAR, + ACTIONS(1697), 1, + anon_sym_LBRACE, + STATE(3757), 1, + sym_initializer_expression, STATE(7254), 9, sym_preproc_region, sym_preproc_endregion, @@ -772354,7 +772404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310944] = 12, + [310969] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772375,9 +772425,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11061), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(5327), 1, + anon_sym_LBRACE, + STATE(1981), 1, + sym_block, STATE(7255), 9, sym_preproc_region, sym_preproc_endregion, @@ -772388,7 +772439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310990] = 13, + [311017] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772409,10 +772460,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, - anon_sym_DQUOTE, - STATE(7744), 1, - sym_string_literal, + ACTIONS(11049), 1, + anon_sym_LPAREN, + STATE(7197), 1, + sym_tuple_expression, STATE(7256), 9, sym_preproc_region, sym_preproc_endregion, @@ -772423,7 +772474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311038] = 13, + [311065] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772444,10 +772495,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6518), 1, - sym_parameter_list, + ACTIONS(11051), 1, + anon_sym_warning, + ACTIONS(11053), 1, + anon_sym_checksum, STATE(7257), 9, sym_preproc_region, sym_preproc_endregion, @@ -772458,7 +772509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311086] = 13, + [311113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772479,10 +772530,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6509), 1, - sym_parameter_list, + ACTIONS(3179), 2, + anon_sym_while, + anon_sym_else, STATE(7258), 9, sym_preproc_region, sym_preproc_endregion, @@ -772493,7 +772543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311134] = 13, + [311159] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772514,10 +772564,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11063), 1, - anon_sym_on, - STATE(6366), 1, - sym__join_body, + ACTIONS(3183), 2, + anon_sym_while, + anon_sym_else, STATE(7259), 9, sym_preproc_region, sym_preproc_endregion, @@ -772528,7 +772577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311182] = 13, + [311205] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772549,10 +772598,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_LBRACE, - STATE(4669), 1, - sym_initializer_expression, + ACTIONS(3325), 2, + anon_sym_while, + anon_sym_else, STATE(7260), 9, sym_preproc_region, sym_preproc_endregion, @@ -772563,7 +772611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311230] = 12, + [311251] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772584,9 +772632,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11065), 2, - anon_sym_this, - anon_sym_base, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(6710), 1, + sym_bracketed_parameter_list, STATE(7261), 9, sym_preproc_region, sym_preproc_endregion, @@ -772597,7 +772646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311276] = 12, + [311299] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772618,9 +772667,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3251), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(9970), 1, + anon_sym_LBRACE, + STATE(3419), 1, + sym_block, STATE(7262), 9, sym_preproc_region, sym_preproc_endregion, @@ -772631,7 +772681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311322] = 12, + [311347] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772652,9 +772702,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3243), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11055), 1, + anon_sym_LBRACK, + STATE(3288), 1, + sym_array_rank_specifier, STATE(7263), 9, sym_preproc_region, sym_preproc_endregion, @@ -772665,7 +772716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311368] = 13, + [311395] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772686,10 +772737,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1401), 1, - anon_sym_LBRACE, - STATE(4706), 1, - sym_initializer_expression, + ACTIONS(3245), 2, + anon_sym_while, + anon_sym_else, STATE(7264), 9, sym_preproc_region, sym_preproc_endregion, @@ -772700,7 +772750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311416] = 13, + [311441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772721,10 +772771,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, - anon_sym_LBRACE, - STATE(2147), 1, - sym_block, + ACTIONS(4044), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7265), 9, sym_preproc_region, sym_preproc_endregion, @@ -772735,7 +772784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311464] = 13, + [311487] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772756,10 +772805,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11067), 1, - anon_sym_LBRACK, - ACTIONS(11069), 1, - anon_sym_LT, + ACTIONS(10690), 1, + anon_sym_DQUOTE, + STATE(7473), 1, + sym_string_literal, STATE(7266), 9, sym_preproc_region, sym_preproc_endregion, @@ -772770,7 +772819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311512] = 12, + [311535] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772791,9 +772840,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3267), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11057), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(7267), 9, sym_preproc_region, sym_preproc_endregion, @@ -772804,7 +772853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311558] = 13, + [311581] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772825,10 +772874,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6497), 1, - sym_parameter_list, + ACTIONS(9946), 1, + anon_sym_LBRACE, + STATE(3775), 1, + sym_block, STATE(7268), 9, sym_preproc_region, sym_preproc_endregion, @@ -772839,7 +772888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311606] = 13, + [311629] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772860,10 +772909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6447), 1, - sym_parameter_list, + ACTIONS(3187), 2, + anon_sym_while, + anon_sym_else, STATE(7269), 9, sym_preproc_region, sym_preproc_endregion, @@ -772874,7 +772922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311654] = 13, + [311675] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772895,10 +772943,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6463), 1, - sym_parameter_list, + ACTIONS(3237), 2, + anon_sym_while, + anon_sym_else, STATE(7270), 9, sym_preproc_region, sym_preproc_endregion, @@ -772909,7 +772956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311702] = 12, + [311721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772930,9 +772977,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3215), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11059), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(7271), 9, sym_preproc_region, sym_preproc_endregion, @@ -772943,7 +772990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311748] = 13, + [311767] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772964,10 +773011,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11071), 1, - anon_sym_LBRACK, - STATE(2718), 1, - sym_array_rank_specifier, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6518), 1, + sym_parameter_list, STATE(7272), 9, sym_preproc_region, sym_preproc_endregion, @@ -772978,7 +773025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311796] = 13, + [311815] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772999,10 +773046,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_LPAREN, - STATE(6873), 1, - sym_argument_list, + ACTIONS(3289), 2, + anon_sym_while, + anon_sym_else, STATE(7273), 9, sym_preproc_region, sym_preproc_endregion, @@ -773013,7 +773059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311844] = 12, + [311861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773034,9 +773080,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3255), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(10869), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7274), 9, sym_preproc_region, sym_preproc_endregion, @@ -773047,7 +773093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311890] = 13, + [311907] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773068,10 +773114,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9990), 1, + ACTIONS(11061), 2, anon_sym_LBRACE, - STATE(3015), 1, - sym_block, + anon_sym_EQ_GT, STATE(7275), 9, sym_preproc_region, sym_preproc_endregion, @@ -773082,7 +773127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311938] = 13, + [311953] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773103,10 +773148,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6470), 1, - sym_parameter_list, + ACTIONS(1401), 1, + anon_sym_LBRACE, + STATE(4671), 1, + sym_initializer_expression, STATE(7276), 9, sym_preproc_region, sym_preproc_endregion, @@ -773117,7 +773162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311986] = 13, + [312001] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773138,10 +773183,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11013), 1, + ACTIONS(5322), 1, anon_sym_LBRACE, - STATE(1993), 1, - sym_switch_body, + STATE(2063), 1, + sym_block, STATE(7277), 9, sym_preproc_region, sym_preproc_endregion, @@ -773152,7 +773197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312034] = 13, + [312049] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773173,10 +773218,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(3882), 1, - sym_initializer_expression, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6371), 1, + sym_parameter_list, STATE(7278), 9, sym_preproc_region, sym_preproc_endregion, @@ -773187,7 +773232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312082] = 13, + [312097] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773208,10 +773253,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(11063), 1, anon_sym_LBRACE, - STATE(4664), 1, - sym_initializer_expression, + STATE(1943), 1, + sym_switch_body, STATE(7279), 9, sym_preproc_region, sym_preproc_endregion, @@ -773222,7 +773267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312130] = 13, + [312145] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773243,10 +773288,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11005), 1, - anon_sym_LBRACE, - STATE(7320), 1, - sym_switch_body, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(7131), 1, + sym_parameter_list, STATE(7280), 9, sym_preproc_region, sym_preproc_endregion, @@ -773257,7 +773302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312178] = 13, + [312193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773278,10 +773323,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11073), 1, - anon_sym_LBRACE, - STATE(4653), 1, - sym__switch_expression_body, + ACTIONS(11065), 2, + anon_sym_SEMI, + anon_sym_where, STATE(7281), 9, sym_preproc_region, sym_preproc_endregion, @@ -773292,7 +773336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312226] = 13, + [312239] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773313,10 +773357,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(7335), 1, - sym_parameter_list, + ACTIONS(11067), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_switch_body, STATE(7282), 9, sym_preproc_region, sym_preproc_endregion, @@ -773327,7 +773371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312274] = 12, + [312287] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773348,9 +773392,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11075), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6487), 1, + sym_parameter_list, STATE(7283), 9, sym_preproc_region, sym_preproc_endregion, @@ -773361,7 +773406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312320] = 13, + [312335] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773382,10 +773427,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DOT, - ACTIONS(11077), 1, - anon_sym_SEMI, + ACTIONS(10983), 1, + anon_sym_LPAREN, + STATE(68), 1, + sym__for_statement_conditions, STATE(7284), 9, sym_preproc_region, sym_preproc_endregion, @@ -773396,7 +773441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312368] = 13, + [312383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773417,10 +773462,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11079), 1, - anon_sym_warning, - ACTIONS(11081), 1, - anon_sym_checksum, + ACTIONS(3209), 2, + anon_sym_while, + anon_sym_else, STATE(7285), 9, sym_preproc_region, sym_preproc_endregion, @@ -773431,7 +773475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312416] = 12, + [312429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773452,9 +773496,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11083), 2, - anon_sym_SEMI, - anon_sym_where, + ACTIONS(11069), 1, + anon_sym_LBRACK, + STATE(4450), 1, + sym_array_rank_specifier, STATE(7286), 9, sym_preproc_region, sym_preproc_endregion, @@ -773465,7 +773510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312462] = 13, + [312477] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773486,10 +773531,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6342), 1, - sym_parameter_list, + ACTIONS(3241), 2, + anon_sym_while, + anon_sym_else, STATE(7287), 9, sym_preproc_region, sym_preproc_endregion, @@ -773500,7 +773544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312510] = 12, + [312523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773521,7 +773565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3271), 2, + ACTIONS(3171), 2, anon_sym_while, anon_sym_else, STATE(7288), 9, @@ -773534,7 +773578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312556] = 13, + [312569] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773555,10 +773599,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6757), 1, - sym_parameter_list, + ACTIONS(10264), 1, + anon_sym_COMMA, + STATE(6998), 1, + aux_sym_tuple_type_repeat1, STATE(7289), 9, sym_preproc_region, sym_preproc_endregion, @@ -773569,7 +773613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312604] = 12, + [312617] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773590,9 +773634,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11085), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11071), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(7290), 9, sym_preproc_region, sym_preproc_endregion, @@ -773603,7 +773647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312650] = 12, + [312663] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773624,9 +773668,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3333), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11073), 1, + anon_sym_LBRACE, + STATE(4657), 1, + sym__with_body, STATE(7291), 9, sym_preproc_region, sym_preproc_endregion, @@ -773637,7 +773682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312696] = 13, + [312711] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773658,10 +773703,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_LBRACE, - STATE(3267), 1, - sym_initializer_expression, + ACTIONS(3175), 2, + anon_sym_while, + anon_sym_else, STATE(7292), 9, sym_preproc_region, sym_preproc_endregion, @@ -773672,7 +773716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312744] = 12, + [312757] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773693,7 +773737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3289), 2, + ACTIONS(3249), 2, anon_sym_while, anon_sym_else, STATE(7293), 9, @@ -773706,31 +773750,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312790] = 13, - ACTIONS(9181), 1, + [312803] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11087), 1, - aux_sym_preproc_if_token2, - ACTIONS(11089), 1, - sym_preproc_arg, + ACTIONS(10628), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(7294), 9, sym_preproc_region, sym_preproc_endregion, @@ -773741,7 +773784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312838] = 13, + [312849] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773762,10 +773805,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym__for_statement_conditions, + ACTIONS(11075), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(7295), 9, sym_preproc_region, sym_preproc_endregion, @@ -773776,7 +773818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312886] = 12, + [312895] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773797,9 +773839,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11091), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1401), 1, + anon_sym_LBRACE, + STATE(4704), 1, + sym_initializer_expression, STATE(7296), 9, sym_preproc_region, sym_preproc_endregion, @@ -773810,7 +773853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312932] = 12, + [312943] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773831,9 +773874,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4015), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(11077), 1, + anon_sym_LPAREN, + STATE(7279), 1, + sym_tuple_expression, STATE(7297), 9, sym_preproc_region, sym_preproc_endregion, @@ -773844,7 +773888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312978] = 13, + [312991] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773865,10 +773909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_COMMA, - STATE(6956), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3135), 2, + anon_sym_while, + anon_sym_else, STATE(7298), 9, sym_preproc_region, sym_preproc_endregion, @@ -773879,7 +773922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313026] = 13, + [313037] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773900,10 +773943,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym_block, + ACTIONS(3329), 2, + anon_sym_while, + anon_sym_else, STATE(7299), 9, sym_preproc_region, sym_preproc_endregion, @@ -773914,7 +773956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313074] = 12, + [313083] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773935,9 +773977,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11093), 2, - anon_sym_disable, - anon_sym_restore, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6704), 1, + sym_parameter_list, STATE(7300), 9, sym_preproc_region, sym_preproc_endregion, @@ -773948,7 +773991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313120] = 12, + [313131] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773969,9 +774012,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4007), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(11079), 1, + anon_sym_SEMI, STATE(7301), 9, sym_preproc_region, sym_preproc_endregion, @@ -773982,7 +774026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313166] = 12, + [313179] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774003,9 +774047,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11095), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(6778), 1, + sym_bracketed_parameter_list, STATE(7302), 9, sym_preproc_region, sym_preproc_endregion, @@ -774016,7 +774061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313212] = 13, + [313227] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774037,10 +774082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_LBRACK, - STATE(6721), 1, - sym_bracketed_parameter_list, + ACTIONS(3261), 2, + anon_sym_while, + anon_sym_else, STATE(7303), 9, sym_preproc_region, sym_preproc_endregion, @@ -774051,7 +774095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313260] = 12, + [313273] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774072,9 +774116,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3349), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(3691), 1, + anon_sym_EQ_GT, + ACTIONS(11081), 1, + anon_sym_in, STATE(7304), 9, sym_preproc_region, sym_preproc_endregion, @@ -774085,30 +774130,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313306] = 12, - ACTIONS(3), 1, + [313321] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(3337), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11083), 2, + sym_character_literal_content, + sym_escape_sequence, STATE(7305), 9, sym_preproc_region, sym_preproc_endregion, @@ -774119,30 +774164,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313352] = 12, - ACTIONS(3), 1, + [313367] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(3263), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11085), 2, + sym_character_literal_content, + sym_escape_sequence, STATE(7306), 9, sym_preproc_region, sym_preproc_endregion, @@ -774153,7 +774198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313398] = 13, + [313413] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774174,10 +774219,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_GT, - ACTIONS(9674), 1, - anon_sym_COMMA, + ACTIONS(5638), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_block, STATE(7307), 9, sym_preproc_region, sym_preproc_endregion, @@ -774188,7 +774233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313446] = 12, + [313461] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774209,9 +774254,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10603), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6452), 1, + sym_parameter_list, STATE(7308), 9, sym_preproc_region, sym_preproc_endregion, @@ -774222,7 +774268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313492] = 13, + [313509] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774245,7 +774291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(6493), 1, + STATE(6377), 1, sym_parameter_list, STATE(7309), 9, sym_preproc_region, @@ -774257,31 +774303,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313540] = 13, - ACTIONS(3), 1, + [313557] = 13, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(5635), 1, - anon_sym_LBRACE, - STATE(3116), 1, - sym_block, + ACTIONS(10910), 1, + aux_sym_preproc_if_token2, + ACTIONS(11087), 1, + anon_sym_COMMA, STATE(7310), 9, sym_preproc_region, sym_preproc_endregion, @@ -774292,7 +774338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313588] = 12, + [313605] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774313,9 +774359,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3259), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11067), 1, + anon_sym_LBRACE, + STATE(2132), 1, + sym_switch_body, STATE(7311), 9, sym_preproc_region, sym_preproc_endregion, @@ -774326,7 +774373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313634] = 12, + [313653] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774347,9 +774394,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3187), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6454), 1, + sym_parameter_list, STATE(7312), 9, sym_preproc_region, sym_preproc_endregion, @@ -774360,30 +774408,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313680] = 12, - ACTIONS(3), 1, + [313701] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(3191), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11089), 2, + sym_character_literal_content, + sym_escape_sequence, STATE(7313), 9, sym_preproc_region, sym_preproc_endregion, @@ -774394,7 +774442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313726] = 13, + [313747] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774415,10 +774463,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11097), 1, - anon_sym_LBRACE, - STATE(3392), 1, - sym__switch_expression_body, + ACTIONS(11091), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(7314), 9, sym_preproc_region, sym_preproc_endregion, @@ -774429,7 +774476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313774] = 13, + [313793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774450,10 +774497,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(145), 1, - anon_sym_DQUOTE, - STATE(7238), 1, - sym_string_literal, + ACTIONS(11093), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(7315), 9, sym_preproc_region, sym_preproc_endregion, @@ -774464,7 +774510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313822] = 13, + [313839] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774485,9 +774531,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9980), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(3906), 1, + STATE(1928), 1, sym_block, STATE(7316), 9, sym_preproc_region, @@ -774499,7 +774545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313870] = 12, + [313887] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774520,9 +774566,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11099), 2, - anon_sym_SEMI, - anon_sym_where, + ACTIONS(11095), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7317), 9, sym_preproc_region, sym_preproc_endregion, @@ -774533,7 +774579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313916] = 13, + [313933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774554,10 +774600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11101), 1, - anon_sym_LBRACK, - STATE(3218), 1, - sym_array_rank_specifier, + ACTIONS(3297), 2, + anon_sym_while, + anon_sym_else, STATE(7318), 9, sym_preproc_region, sym_preproc_endregion, @@ -774568,7 +774613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313964] = 13, + [313979] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774589,10 +774634,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11103), 1, + ACTIONS(11097), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3032), 1, - sym__switch_expression_body, STATE(7319), 9, sym_preproc_region, sym_preproc_endregion, @@ -774603,7 +774647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314012] = 12, + [314025] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774624,9 +774668,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3195), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11099), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7320), 9, sym_preproc_region, sym_preproc_endregion, @@ -774637,7 +774681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314058] = 12, + [314071] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774658,9 +774702,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3199), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11101), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(7321), 9, sym_preproc_region, sym_preproc_endregion, @@ -774671,7 +774715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314104] = 13, + [314117] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774692,10 +774736,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11105), 1, - anon_sym_LBRACK, - STATE(4308), 1, - sym_array_rank_specifier, + ACTIONS(3301), 2, + anon_sym_while, + anon_sym_else, STATE(7322), 9, sym_preproc_region, sym_preproc_endregion, @@ -774706,7 +774749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314152] = 13, + [314163] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774727,10 +774770,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9980), 1, + ACTIONS(11063), 1, anon_sym_LBRACE, - STATE(3800), 1, - sym_block, + STATE(1944), 1, + sym_switch_body, STATE(7323), 9, sym_preproc_region, sym_preproc_endregion, @@ -774741,7 +774784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314200] = 13, + [314211] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774762,10 +774805,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym__for_statement_conditions, + ACTIONS(11103), 1, + anon_sym_LBRACE, + STATE(3862), 1, + sym__switch_expression_body, STATE(7324), 9, sym_preproc_region, sym_preproc_endregion, @@ -774776,7 +774819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314248] = 13, + [314259] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774797,10 +774840,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5814), 1, - anon_sym_LBRACE, - STATE(2059), 1, - sym_block, + ACTIONS(7940), 1, + anon_sym_DOT, + ACTIONS(11105), 1, + anon_sym_SEMI, STATE(7325), 9, sym_preproc_region, sym_preproc_endregion, @@ -774811,7 +774854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314296] = 12, + [314307] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774832,9 +774875,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3131), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(9923), 1, + anon_sym_LBRACE, + STATE(3317), 1, + sym_block, STATE(7326), 9, sym_preproc_region, sym_preproc_endregion, @@ -774845,7 +774889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314342] = 13, + [314355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774866,10 +774910,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LBRACE, - STATE(1927), 1, - sym_block, + ACTIONS(11107), 1, + anon_sym_on, + STATE(6344), 1, + sym__join_body, STATE(7327), 9, sym_preproc_region, sym_preproc_endregion, @@ -774880,7 +774924,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314390] = 13, + [314403] = 13, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(11109), 1, + aux_sym_preproc_if_token2, + ACTIONS(11111), 1, + sym_preproc_arg, + STATE(7328), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [314451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774901,11 +774980,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(7138), 1, - sym_parameter_list, - STATE(7328), 9, + ACTIONS(3305), 2, + anon_sym_while, + anon_sym_else, + STATE(7329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774915,7 +774993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314438] = 12, + [314497] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774936,10 +775014,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11107), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(7329), 9, + ACTIONS(3309), 2, + anon_sym_while, + anon_sym_else, + STATE(7330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774949,7 +775027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314484] = 13, + [314543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774970,11 +775048,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1317), 1, - anon_sym_LBRACE, - STATE(3464), 1, - sym_initializer_expression, - STATE(7330), 9, + ACTIONS(4024), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774984,7 +775061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314532] = 13, + [314589] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775005,11 +775082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11109), 1, - anon_sym_LBRACE, - STATE(3396), 1, - sym__with_body, - STATE(7331), 9, + ACTIONS(3269), 2, + anon_sym_while, + anon_sym_else, + STATE(7332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775019,7 +775095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314580] = 13, + [314635] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775042,9 +775118,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(8962), 1, anon_sym_LPAREN, - STATE(6476), 1, + STATE(6504), 1, sym_parameter_list, - STATE(7332), 9, + STATE(7333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775054,7 +775130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314628] = 12, + [314683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775075,10 +775151,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3203), 2, - anon_sym_while, - anon_sym_else, - STATE(7333), 9, + ACTIONS(11113), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775088,7 +775164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314674] = 12, + [314729] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775109,10 +775185,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3219), 2, - anon_sym_while, - anon_sym_else, - STATE(7334), 9, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(6695), 1, + sym_bracketed_parameter_list, + STATE(7335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775122,7 +775199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314720] = 12, + [314777] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775143,10 +775220,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11111), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7335), 9, + ACTIONS(11115), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775156,7 +775233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314766] = 13, + [314823] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775177,11 +775254,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11113), 1, - anon_sym_LBRACE, - STATE(3073), 1, - sym__with_body, - STATE(7336), 9, + ACTIONS(10282), 1, + anon_sym_COMMA, + STATE(6976), 1, + aux_sym_argument_list_repeat1, + STATE(7337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775191,7 +775268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314814] = 13, + [314871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775212,44 +775289,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_LPAREN, - STATE(6496), 1, - sym_parameter_list, - STATE(7337), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [314862] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11115), 2, - sym_character_literal_content, - sym_escape_sequence, + ACTIONS(3313), 2, + anon_sym_while, + anon_sym_else, STATE(7338), 9, sym_preproc_region, sym_preproc_endregion, @@ -775260,7 +775302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314908] = 13, + [314917] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775281,10 +775323,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_COMMA, - STATE(6965), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8962), 1, + anon_sym_LPAREN, + STATE(6784), 1, + sym_parameter_list, STATE(7339), 9, sym_preproc_region, sym_preproc_endregion, @@ -775295,7 +775337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314956] = 12, + [314965] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775316,9 +775358,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3293), 2, - anon_sym_while, - anon_sym_else, + ACTIONS(11117), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(7340), 9, sym_preproc_region, sym_preproc_endregion, @@ -775329,7 +775371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315002] = 13, + [315011] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775350,10 +775392,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(9929), 1, anon_sym_LBRACE, - STATE(3121), 1, - sym_initializer_expression, + STATE(3096), 1, + sym_block, STATE(7341), 9, sym_preproc_region, sym_preproc_endregion, @@ -775364,7 +775406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315050] = 13, + [315059] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775385,10 +775427,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_LBRACE, - STATE(2031), 1, - sym_switch_body, + ACTIONS(10652), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(7342), 9, sym_preproc_region, sym_preproc_endregion, @@ -775399,7 +775440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315098] = 13, + [315105] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775420,10 +775461,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11117), 1, - anon_sym_LBRACK, - STATE(4493), 1, - sym_array_rank_specifier, + ACTIONS(4036), 2, + anon_sym_COMMA, + anon_sym_GT, STATE(7343), 9, sym_preproc_region, sym_preproc_endregion, @@ -775434,7 +775474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315146] = 12, + [315151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775467,7 +775507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315191] = 12, + [315196] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775500,7 +775540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315236] = 12, + [315241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775522,7 +775562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11123), 1, - anon_sym_COMMA, + anon_sym_COLON, STATE(7346), 9, sym_preproc_region, sym_preproc_endregion, @@ -775533,7 +775573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315281] = 12, + [315286] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775554,8 +775594,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7562), 1, - anon_sym_RBRACE, + ACTIONS(11125), 1, + anon_sym_EQ_GT, STATE(7347), 9, sym_preproc_region, sym_preproc_endregion, @@ -775566,7 +775606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315326] = 12, + [315331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775587,8 +775627,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_EQ_GT, + ACTIONS(11127), 1, + anon_sym_in, STATE(7348), 9, sym_preproc_region, sym_preproc_endregion, @@ -775599,7 +775639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315371] = 12, + [315376] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775620,7 +775660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11125), 1, + ACTIONS(11129), 1, anon_sym_SEMI, STATE(7349), 9, sym_preproc_region, @@ -775632,7 +775672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315416] = 12, + [315421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775653,8 +775693,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11127), 1, - anon_sym_SEMI, + ACTIONS(11131), 1, + anon_sym_COLON, STATE(7350), 9, sym_preproc_region, sym_preproc_endregion, @@ -775665,7 +775705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315461] = 12, + [315466] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775686,8 +775726,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11129), 1, - anon_sym_SEMI, + ACTIONS(11133), 1, + anon_sym_in, STATE(7351), 9, sym_preproc_region, sym_preproc_endregion, @@ -775698,29 +775738,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315506] = 12, - ACTIONS(5130), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [315511] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, + ACTIONS(11135), 1, + anon_sym_EQ_GT, STATE(7352), 9, sym_preproc_region, sym_preproc_endregion, @@ -775731,7 +775771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315551] = 12, + [315556] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775752,8 +775792,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11131), 1, - anon_sym_SEMI, + ACTIONS(11137), 1, + aux_sym_preproc_if_token3, STATE(7353), 9, sym_preproc_region, sym_preproc_endregion, @@ -775764,7 +775804,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315596] = 12, + [315601] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_RBRACE, + STATE(7354), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [315646] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11139), 1, + sym__optional_semi, + STATE(7355), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [315691] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11141), 1, + anon_sym_RPAREN, + STATE(7356), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [315736] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775785,9 +775924,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11133), 1, - anon_sym_COLON, - STATE(7354), 9, + ACTIONS(8729), 1, + anon_sym_RPAREN, + STATE(7357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775797,7 +775936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315641] = 12, + [315781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775818,9 +775957,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11135), 1, - anon_sym_EQ_GT, - STATE(7355), 9, + ACTIONS(11143), 1, + anon_sym_RBRACE, + STATE(7358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775830,7 +775969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315686] = 12, + [315826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775851,9 +775990,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11137), 1, - anon_sym_SEMI, - STATE(7356), 9, + ACTIONS(11145), 1, + anon_sym_GT, + STATE(7359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775863,7 +776002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315731] = 12, + [315871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775884,9 +776023,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11139), 1, - aux_sym_preproc_if_token3, - STATE(7357), 9, + ACTIONS(11147), 1, + anon_sym_SEMI, + STATE(7360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775896,7 +776035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315776] = 12, + [315916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775917,9 +776056,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11141), 1, + ACTIONS(11149), 1, anon_sym_EQ_GT, - STATE(7358), 9, + STATE(7361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775929,7 +776068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315821] = 12, + [315961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775950,9 +776089,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11143), 1, - sym_raw_string_end, - STATE(7359), 9, + ACTIONS(11151), 1, + sym__optional_semi, + STATE(7362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775962,7 +776101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315866] = 12, + [316006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775983,9 +776122,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11145), 1, - anon_sym_DASH, - STATE(7360), 9, + ACTIONS(11153), 1, + anon_sym_RBRACK, + STATE(7363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775995,30 +776134,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315911] = 12, - ACTIONS(3), 1, + [316051] = 12, + ACTIONS(4967), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11045), 1, - anon_sym_in, - STATE(7361), 9, + STATE(7364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776028,7 +776167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315956] = 12, + [316096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776049,9 +776188,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11147), 1, - anon_sym_RPAREN, - STATE(7362), 9, + ACTIONS(11155), 1, + aux_sym_preproc_if_token3, + STATE(7365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776061,7 +776200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316001] = 12, + [316141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776082,9 +776221,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8304), 1, - anon_sym_RPAREN, - STATE(7363), 9, + ACTIONS(11157), 1, + anon_sym_RBRACE, + STATE(7366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776094,7 +776233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316046] = 12, + [316186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776115,9 +776254,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11149), 1, - anon_sym_GT, - STATE(7364), 9, + ACTIONS(11159), 1, + aux_sym_preproc_if_token3, + STATE(7367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776127,7 +776266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316091] = 12, + [316231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776148,9 +776287,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11151), 1, - anon_sym_COMMA, - STATE(7365), 9, + ACTIONS(11161), 1, + anon_sym_SEMI, + STATE(7368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776160,7 +776299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316136] = 12, + [316276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776181,42 +776320,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11153), 1, - anon_sym_RBRACK, - STATE(7366), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [316181] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11155), 1, - aux_sym_preproc_if_token2, - STATE(7367), 9, + ACTIONS(11163), 1, + anon_sym_RPAREN, + STATE(7369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776226,7 +776332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316226] = 12, + [316321] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776247,9 +776353,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9778), 1, - anon_sym_EQ, - STATE(7368), 9, + ACTIONS(11165), 1, + sym_raw_string_content, + STATE(7370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776259,30 +776365,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316271] = 12, - ACTIONS(3), 1, + [316366] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(9710), 1, - anon_sym_EQ, - STATE(7369), 9, + ACTIONS(11167), 1, + aux_sym_preproc_if_token2, + STATE(7371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776292,7 +776398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316316] = 12, + [316411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776313,9 +776419,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11157), 1, - anon_sym_SEMI, - STATE(7370), 9, + ACTIONS(9743), 1, + anon_sym_EQ, + STATE(7372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776325,7 +776431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316361] = 12, + [316456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776346,9 +776452,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11159), 1, - anon_sym_GT, - STATE(7371), 9, + ACTIONS(10686), 1, + anon_sym_RBRACE, + STATE(7373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776358,7 +776464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316406] = 12, + [316501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776379,9 +776485,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11161), 1, - anon_sym_LT, - STATE(7372), 9, + ACTIONS(11169), 1, + anon_sym_RPAREN, + STATE(7374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776391,7 +776497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316451] = 12, + [316546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776412,9 +776518,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8580), 1, - anon_sym_RPAREN, - STATE(7373), 9, + ACTIONS(11171), 1, + anon_sym_LT, + STATE(7375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776424,7 +776530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316496] = 12, + [316591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776445,9 +776551,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11163), 1, - anon_sym_STAR, - STATE(7374), 9, + ACTIONS(11173), 1, + anon_sym_RPAREN, + STATE(7376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776457,7 +776563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316541] = 12, + [316636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776478,9 +776584,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11165), 1, - anon_sym_EQ_GT, - STATE(7375), 9, + ACTIONS(7526), 1, + anon_sym_RBRACE, + STATE(7377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776490,30 +776596,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316586] = 12, - ACTIONS(3), 1, + [316681] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(10590), 1, - anon_sym_RBRACE, - STATE(7376), 9, + ACTIONS(11175), 1, + sym_preproc_arg, + STATE(7378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776523,7 +776629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316631] = 12, + [316726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776544,42 +776650,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10624), 1, - anon_sym_RBRACE, - STATE(7377), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [316676] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11167), 1, - aux_sym_preproc_if_token2, - STATE(7378), 9, + ACTIONS(11177), 1, + anon_sym_SEMI, + STATE(7379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776589,7 +776662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316721] = 12, + [316771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776610,9 +776683,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11169), 1, - anon_sym_GT, - STATE(7379), 9, + ACTIONS(11179), 1, + anon_sym_RPAREN, + STATE(7380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776622,7 +776695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316766] = 12, + [316816] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776643,9 +776716,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11171), 1, - anon_sym_EQ, - STATE(7380), 9, + ACTIONS(11181), 1, + anon_sym_GT, + STATE(7381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776655,7 +776728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316811] = 12, + [316861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776676,9 +776749,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11173), 1, - anon_sym_EQ_GT, - STATE(7381), 9, + ACTIONS(10680), 1, + anon_sym_RBRACE, + STATE(7382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776688,7 +776761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316856] = 12, + [316906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776709,9 +776782,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_RBRACE, - STATE(7382), 9, + ACTIONS(11183), 1, + sym_raw_string_content, + STATE(7383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776721,7 +776794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316901] = 12, + [316951] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776742,9 +776815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11175), 1, - anon_sym_SEMI, - STATE(7383), 9, + ACTIONS(11185), 1, + anon_sym_EQ, + STATE(7384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776754,7 +776827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316946] = 12, + [316996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776775,9 +776848,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11177), 1, - anon_sym_DOT, - STATE(7384), 9, + ACTIONS(11187), 1, + anon_sym_EQ_GT, + STATE(7385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776787,7 +776860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316991] = 12, + [317041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776808,9 +776881,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11179), 1, - anon_sym_SEMI, - STATE(7385), 9, + ACTIONS(11189), 1, + anon_sym_RPAREN, + STATE(7386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776820,7 +776893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317036] = 12, + [317086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776841,9 +776914,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11181), 1, - ts_builtin_sym_end, - STATE(7386), 9, + ACTIONS(11191), 1, + anon_sym_GT, + STATE(7387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776853,7 +776926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317081] = 12, + [317131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776874,9 +776947,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11183), 1, + ACTIONS(11193), 1, anon_sym_SEMI, - STATE(7387), 9, + STATE(7388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776886,7 +776959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317126] = 12, + [317176] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776907,9 +776980,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11185), 1, + ACTIONS(11195), 1, anon_sym_RPAREN, - STATE(7388), 9, + STATE(7389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776919,7 +776992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317171] = 12, + [317221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776940,9 +777013,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11187), 1, + ACTIONS(11197), 1, sym_interpolation_start_quote, - STATE(7389), 9, + STATE(7390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776952,7 +777025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317216] = 12, + [317266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776973,9 +777046,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11189), 1, + ACTIONS(11199), 1, anon_sym_EQ_GT, - STATE(7390), 9, + STATE(7391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776985,7 +777058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317261] = 12, + [317311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777006,9 +777079,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11191), 1, - anon_sym_EQ_GT, - STATE(7391), 9, + ACTIONS(11201), 1, + anon_sym_SEMI, + STATE(7392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777018,7 +777091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317306] = 12, + [317356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777039,9 +777112,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11193), 1, - anon_sym_RPAREN, - STATE(7392), 9, + ACTIONS(11203), 1, + anon_sym_SEMI, + STATE(7393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777051,7 +777124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317351] = 12, + [317401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777072,9 +777145,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11195), 1, + ACTIONS(11205), 1, anon_sym_RPAREN, - STATE(7393), 9, + STATE(7394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777084,7 +777157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317396] = 12, + [317446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777105,9 +777178,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11197), 1, - aux_sym_preproc_if_token3, - STATE(7394), 9, + ACTIONS(8454), 1, + anon_sym_RPAREN, + STATE(7395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777117,7 +777190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317441] = 12, + [317491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777138,9 +777211,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_STAR, - STATE(7395), 9, + ACTIONS(11207), 1, + anon_sym_SEMI, + STATE(7396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777150,7 +777223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317486] = 12, + [317536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777171,9 +777244,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(11209), 1, aux_sym_preproc_if_token3, - STATE(7396), 9, + STATE(7397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777183,7 +777256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317531] = 12, + [317581] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777204,9 +777277,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8699), 1, + ACTIONS(8709), 1, anon_sym_RPAREN, - STATE(7397), 9, + STATE(7398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777216,7 +777289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317576] = 12, + [317626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777237,9 +777310,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11201), 1, - sym__optional_semi, - STATE(7398), 9, + ACTIONS(10525), 1, + anon_sym_RBRACE, + STATE(7399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777249,7 +777322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317621] = 12, + [317671] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777270,9 +777343,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11203), 1, - sym__optional_semi, - STATE(7399), 9, + ACTIONS(11211), 1, + anon_sym_RPAREN, + STATE(7400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777282,7 +777355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317666] = 12, + [317716] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777303,9 +777376,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11205), 1, - anon_sym_LPAREN, - STATE(7400), 9, + ACTIONS(11213), 1, + anon_sym_SEMI, + STATE(7401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777315,7 +777388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317711] = 12, + [317761] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777336,9 +777409,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11207), 1, - anon_sym_SEMI, - STATE(7401), 9, + ACTIONS(11215), 1, + aux_sym_preproc_if_token3, + STATE(7402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777348,7 +777421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317756] = 12, + [317806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777369,9 +777442,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11209), 1, + ACTIONS(11217), 1, anon_sym_EQ_GT, - STATE(7402), 9, + STATE(7403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777381,7 +777454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317801] = 12, + [317851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777402,9 +777475,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11211), 1, - aux_sym_preproc_if_token3, - STATE(7403), 9, + ACTIONS(11219), 1, + anon_sym_STAR, + STATE(7404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777414,30 +777487,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317846] = 12, - ACTIONS(9181), 1, + [317896] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11213), 1, - aux_sym_preproc_if_token2, - STATE(7404), 9, + ACTIONS(11221), 1, + anon_sym_COMMA, + STATE(7405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777447,7 +777520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317891] = 12, + [317941] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777468,9 +777541,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11215), 1, - aux_sym_preproc_if_token3, - STATE(7405), 9, + ACTIONS(11223), 1, + anon_sym_LT, + STATE(7406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777480,30 +777553,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317936] = 12, - ACTIONS(9181), 1, + [317986] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11217), 1, - aux_sym_preproc_if_token2, - STATE(7406), 9, + ACTIONS(11225), 1, + anon_sym_COMMA, + STATE(7407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777513,7 +777586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317981] = 12, + [318031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777534,9 +777607,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11219), 1, - aux_sym_preproc_if_token3, - STATE(7407), 9, + ACTIONS(11227), 1, + anon_sym_SEMI, + STATE(7408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777546,7 +777619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318026] = 12, + [318076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777567,9 +777640,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4929), 1, - aux_sym_preproc_if_token3, - STATE(7408), 9, + ACTIONS(10533), 1, + anon_sym_RBRACE, + STATE(7409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777579,7 +777652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318071] = 12, + [318121] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777600,9 +777673,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11221), 1, - sym_interpolation_close_brace, - STATE(7409), 9, + ACTIONS(11229), 1, + anon_sym_EQ_GT, + STATE(7410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777612,30 +777685,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318116] = 12, - ACTIONS(9181), 1, + [318166] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11223), 1, - aux_sym_preproc_if_token2, - STATE(7410), 9, + ACTIONS(11231), 1, + anon_sym_GT, + STATE(7411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777645,7 +777718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318161] = 12, + [318211] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777666,9 +777739,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11225), 1, - anon_sym_STAR, - STATE(7411), 9, + ACTIONS(11233), 1, + anon_sym_EQ_GT, + STATE(7412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777678,7 +777751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318206] = 12, + [318256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777699,9 +777772,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11227), 1, + ACTIONS(11235), 1, + anon_sym_COMMA, + STATE(7413), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [318301] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11237), 1, sym__optional_semi, - STATE(7412), 9, + STATE(7414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777711,7 +777817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318251] = 12, + [318346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777732,9 +777838,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11229), 1, - anon_sym_LPAREN, - STATE(7413), 9, + ACTIONS(11239), 1, + sym__optional_semi, + STATE(7415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777744,7 +777850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318296] = 12, + [318391] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777765,74 +777871,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11231), 1, + ACTIONS(11241), 1, anon_sym_SEMI, - STATE(7414), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [318341] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11233), 1, - anon_sym_RPAREN, - STATE(7415), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [318386] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11235), 1, - anon_sym_EQ, STATE(7416), 9, sym_preproc_region, sym_preproc_endregion, @@ -777843,7 +777883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318431] = 12, + [318436] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777864,8 +777904,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11237), 1, - anon_sym_EQ_GT, + ACTIONS(11243), 1, + anon_sym_RPAREN, STATE(7417), 9, sym_preproc_region, sym_preproc_endregion, @@ -777876,29 +777916,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318476] = 12, - ACTIONS(3), 1, + [318481] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11239), 1, - sym_interpolation_close_brace, + ACTIONS(11245), 1, + sym_preproc_arg, STATE(7418), 9, sym_preproc_region, sym_preproc_endregion, @@ -777909,7 +777949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318521] = 12, + [318526] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777930,8 +777970,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11241), 1, - aux_sym_preproc_if_token3, + ACTIONS(11247), 1, + anon_sym_RPAREN, STATE(7419), 9, sym_preproc_region, sym_preproc_endregion, @@ -777942,7 +777982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318566] = 12, + [318571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777963,8 +778003,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11243), 1, - anon_sym_SQUOTE, + ACTIONS(11249), 1, + sym_interpolation_start_quote, STATE(7420), 9, sym_preproc_region, sym_preproc_endregion, @@ -777975,7 +778015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318611] = 12, + [318616] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777996,8 +778036,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11245), 1, - anon_sym_EQ_GT, + ACTIONS(11251), 1, + anon_sym_GT, STATE(7421), 9, sym_preproc_region, sym_preproc_endregion, @@ -778008,7 +778048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318656] = 12, + [318661] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778029,7 +778069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11247), 1, + ACTIONS(11253), 1, anon_sym_EQ_GT, STATE(7422), 9, sym_preproc_region, @@ -778041,7 +778081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318701] = 12, + [318706] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778062,8 +778102,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11249), 1, - anon_sym_RPAREN, + ACTIONS(10712), 1, + anon_sym_RBRACE, STATE(7423), 9, sym_preproc_region, sym_preproc_endregion, @@ -778074,7 +778114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318746] = 12, + [318751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778095,8 +778135,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10666), 1, - anon_sym_RBRACE, + ACTIONS(9701), 1, + anon_sym_COMMA, STATE(7424), 9, sym_preproc_region, sym_preproc_endregion, @@ -778107,7 +778147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318791] = 12, + [318796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778128,8 +778168,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11251), 1, - aux_sym_preproc_if_token3, + ACTIONS(10716), 1, + anon_sym_RBRACE, STATE(7425), 9, sym_preproc_region, sym_preproc_endregion, @@ -778140,7 +778180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318836] = 12, + [318841] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778161,8 +778201,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11253), 1, - anon_sym_STAR, + ACTIONS(11255), 1, + anon_sym_GT, STATE(7426), 9, sym_preproc_region, sym_preproc_endregion, @@ -778173,7 +778213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318881] = 12, + [318886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778194,8 +778234,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10268), 1, - anon_sym_RBRACE, + ACTIONS(11257), 1, + anon_sym_EQ_GT, STATE(7427), 9, sym_preproc_region, sym_preproc_endregion, @@ -778206,7 +778246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318926] = 12, + [318931] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778227,8 +778267,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11255), 1, - aux_sym_preproc_if_token3, + ACTIONS(11259), 1, + sym_interpolation_start_quote, STATE(7428), 9, sym_preproc_region, sym_preproc_endregion, @@ -778239,7 +778279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318971] = 12, + [318976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778260,8 +778300,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11257), 1, - sym__optional_semi, + ACTIONS(11261), 1, + anon_sym_SEMI, STATE(7429), 9, sym_preproc_region, sym_preproc_endregion, @@ -778272,7 +778312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319016] = 12, + [319021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778293,8 +778333,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10672), 1, - anon_sym_RBRACE, + ACTIONS(11263), 1, + anon_sym_EQ_GT, STATE(7430), 9, sym_preproc_region, sym_preproc_endregion, @@ -778305,7 +778345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319061] = 12, + [319066] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778326,8 +778366,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11259), 1, - anon_sym_EQ_GT, + ACTIONS(10736), 1, + anon_sym_RBRACE, STATE(7431), 9, sym_preproc_region, sym_preproc_endregion, @@ -778338,7 +778378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319106] = 12, + [319111] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778359,8 +778399,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11261), 1, - sym_integer_literal, + ACTIONS(11265), 1, + anon_sym_SEMI, STATE(7432), 9, sym_preproc_region, sym_preproc_endregion, @@ -778371,7 +778411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319151] = 12, + [319156] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778392,8 +778432,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7606), 1, - anon_sym_RBRACE, + ACTIONS(11267), 1, + aux_sym_preproc_if_token3, STATE(7433), 9, sym_preproc_region, sym_preproc_endregion, @@ -778404,29 +778444,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319196] = 12, - ACTIONS(3), 1, + [319201] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11263), 1, - sym__optional_semi, + ACTIONS(11269), 1, + aux_sym_preproc_if_token2, STATE(7434), 9, sym_preproc_region, sym_preproc_endregion, @@ -778437,7 +778477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319241] = 12, + [319246] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778458,8 +778498,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11265), 1, - anon_sym_RBRACK, + ACTIONS(11271), 1, + anon_sym_RPAREN, STATE(7435), 9, sym_preproc_region, sym_preproc_endregion, @@ -778470,7 +778510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319286] = 12, + [319291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778491,8 +778531,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11267), 1, - anon_sym_EQ_GT, + ACTIONS(11273), 1, + anon_sym_RPAREN, STATE(7436), 9, sym_preproc_region, sym_preproc_endregion, @@ -778503,7 +778543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319331] = 12, + [319336] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778524,8 +778564,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11269), 1, - anon_sym_RPAREN, + ACTIONS(11275), 1, + aux_sym_preproc_if_token3, STATE(7437), 9, sym_preproc_region, sym_preproc_endregion, @@ -778536,7 +778576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319376] = 12, + [319381] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778557,8 +778597,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11271), 1, - anon_sym_SEMI, + ACTIONS(11277), 1, + anon_sym_EQ_GT, STATE(7438), 9, sym_preproc_region, sym_preproc_endregion, @@ -778569,7 +778609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319421] = 12, + [319426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778590,8 +778630,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11273), 1, - anon_sym_EQ_GT, + ACTIONS(11279), 1, + anon_sym_RPAREN, STATE(7439), 9, sym_preproc_region, sym_preproc_endregion, @@ -778602,7 +778642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319466] = 12, + [319471] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778623,8 +778663,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11275), 1, - anon_sym_EQ_GT, + ACTIONS(11281), 1, + anon_sym_RPAREN, STATE(7440), 9, sym_preproc_region, sym_preproc_endregion, @@ -778635,7 +778675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319511] = 12, + [319516] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778656,8 +778696,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11277), 1, - anon_sym_RBRACE, + ACTIONS(11283), 1, + anon_sym_SEMI, STATE(7441), 9, sym_preproc_region, sym_preproc_endregion, @@ -778668,7 +778708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319556] = 12, + [319561] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778689,8 +778729,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11279), 1, - anon_sym_LPAREN, + ACTIONS(11285), 1, + anon_sym_GT, STATE(7442), 9, sym_preproc_region, sym_preproc_endregion, @@ -778701,7 +778741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319601] = 12, + [319606] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778722,8 +778762,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11281), 1, - sym__optional_semi, + ACTIONS(11287), 1, + anon_sym_COLON, STATE(7443), 9, sym_preproc_region, sym_preproc_endregion, @@ -778734,7 +778774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319646] = 12, + [319651] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778755,8 +778795,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11283), 1, - anon_sym_SEMI, + ACTIONS(11289), 1, + anon_sym_COLON, STATE(7444), 9, sym_preproc_region, sym_preproc_endregion, @@ -778767,7 +778807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319691] = 12, + [319696] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778788,8 +778828,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11285), 1, - aux_sym_preproc_if_token3, + ACTIONS(11291), 1, + anon_sym_RPAREN, STATE(7445), 9, sym_preproc_region, sym_preproc_endregion, @@ -778800,7 +778840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319736] = 12, + [319741] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778821,8 +778861,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11287), 1, - anon_sym_SEMI, + ACTIONS(11293), 1, + anon_sym_RPAREN, STATE(7446), 9, sym_preproc_region, sym_preproc_endregion, @@ -778833,7 +778873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319781] = 12, + [319786] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778854,8 +778894,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11069), 1, - anon_sym_LT, + ACTIONS(10396), 1, + anon_sym_RBRACE, STATE(7447), 9, sym_preproc_region, sym_preproc_endregion, @@ -778866,7 +778906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319826] = 12, + [319831] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778887,8 +778927,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11289), 1, - anon_sym_SEMI, + ACTIONS(11295), 1, + anon_sym_GT, STATE(7448), 9, sym_preproc_region, sym_preproc_endregion, @@ -778899,7 +778939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319871] = 12, + [319876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778920,8 +778960,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11291), 1, - anon_sym_EQ_GT, + ACTIONS(11297), 1, + anon_sym_RPAREN, STATE(7449), 9, sym_preproc_region, sym_preproc_endregion, @@ -778932,7 +778972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319916] = 12, + [319921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778953,8 +778993,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10689), 1, - anon_sym_RBRACE, + ACTIONS(11299), 1, + anon_sym_SEMI, STATE(7450), 9, sym_preproc_region, sym_preproc_endregion, @@ -778965,7 +779005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319961] = 12, + [319966] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778986,8 +779026,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11293), 1, - anon_sym_SEMI, + ACTIONS(10513), 1, + anon_sym_RBRACE, STATE(7451), 9, sym_preproc_region, sym_preproc_endregion, @@ -778998,29 +779038,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320006] = 12, - ACTIONS(3), 1, + [320011] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11295), 1, - sym_interpolation_start_quote, + ACTIONS(11301), 1, + aux_sym_preproc_if_token2, STATE(7452), 9, sym_preproc_region, sym_preproc_endregion, @@ -779031,7 +779071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320051] = 12, + [320056] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779052,8 +779092,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11297), 1, - sym_interpolation_start_quote, + ACTIONS(11303), 1, + anon_sym_COMMA, STATE(7453), 9, sym_preproc_region, sym_preproc_endregion, @@ -779064,7 +779104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320096] = 12, + [320101] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779085,8 +779125,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11299), 1, - anon_sym_RPAREN, + ACTIONS(11305), 1, + anon_sym_EQ_GT, STATE(7454), 9, sym_preproc_region, sym_preproc_endregion, @@ -779097,7 +779137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320141] = 12, + [320146] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779118,8 +779158,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11301), 1, - anon_sym_RPAREN, + ACTIONS(11307), 1, + anon_sym_EQ_GT, STATE(7455), 9, sym_preproc_region, sym_preproc_endregion, @@ -779130,7 +779170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320186] = 12, + [320191] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779151,8 +779191,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_GT, + ACTIONS(11309), 1, + anon_sym_SEMI, STATE(7456), 9, sym_preproc_region, sym_preproc_endregion, @@ -779163,29 +779203,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320231] = 12, - ACTIONS(3), 1, + [320236] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11305), 1, - sym_raw_string_end, + ACTIONS(11311), 1, + aux_sym_preproc_if_token2, STATE(7457), 9, sym_preproc_region, sym_preproc_endregion, @@ -779196,7 +779236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320276] = 12, + [320281] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779217,8 +779257,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11307), 1, - anon_sym_SEMI, + ACTIONS(11313), 1, + anon_sym_GT, STATE(7458), 9, sym_preproc_region, sym_preproc_endregion, @@ -779229,7 +779269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320321] = 12, + [320326] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779250,8 +779290,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11309), 1, - aux_sym_preproc_if_token3, + ACTIONS(11315), 1, + anon_sym_SEMI, STATE(7459), 9, sym_preproc_region, sym_preproc_endregion, @@ -779262,29 +779302,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320366] = 12, - ACTIONS(3), 1, + [320371] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11311), 1, - aux_sym_preproc_if_token3, + ACTIONS(11317), 1, + aux_sym_preproc_if_token2, STATE(7460), 9, sym_preproc_region, sym_preproc_endregion, @@ -779295,7 +779335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320411] = 12, + [320416] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779316,8 +779356,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11313), 1, - sym__optional_semi, + ACTIONS(11319), 1, + aux_sym_preproc_if_token3, STATE(7461), 9, sym_preproc_region, sym_preproc_endregion, @@ -779328,7 +779368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320456] = 12, + [320461] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779349,8 +779389,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11315), 1, - sym_interpolation_start_quote, + ACTIONS(11321), 1, + aux_sym_preproc_if_token3, STATE(7462), 9, sym_preproc_region, sym_preproc_endregion, @@ -779361,7 +779401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320501] = 12, + [320506] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779382,8 +779422,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11317), 1, - anon_sym_EQ_GT, + ACTIONS(11323), 1, + anon_sym_STAR, STATE(7463), 9, sym_preproc_region, sym_preproc_endregion, @@ -779394,7 +779434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320546] = 12, + [320551] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779415,8 +779455,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11319), 1, - anon_sym_EQ_GT, + ACTIONS(11325), 1, + sym__optional_semi, STATE(7464), 9, sym_preproc_region, sym_preproc_endregion, @@ -779427,7 +779467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320591] = 12, + [320596] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779448,8 +779488,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11321), 1, - anon_sym_SEMI, + ACTIONS(11327), 1, + anon_sym_LPAREN, STATE(7465), 9, sym_preproc_region, sym_preproc_endregion, @@ -779460,29 +779500,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320636] = 12, - ACTIONS(3), 1, + [320641] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11323), 1, - sym_raw_string_content, + ACTIONS(11329), 1, + aux_sym_preproc_if_token2, STATE(7466), 9, sym_preproc_region, sym_preproc_endregion, @@ -779493,7 +779533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320681] = 12, + [320686] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779514,8 +779554,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11325), 1, - aux_sym_preproc_if_token3, + ACTIONS(11331), 1, + sym_interpolation_start_quote, STATE(7467), 9, sym_preproc_region, sym_preproc_endregion, @@ -779526,7 +779566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320726] = 12, + [320731] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779547,8 +779587,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11327), 1, - anon_sym_SEMI, + ACTIONS(11333), 1, + aux_sym_preproc_if_token3, STATE(7468), 9, sym_preproc_region, sym_preproc_endregion, @@ -779559,7 +779599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320771] = 12, + [320776] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779580,7 +779620,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11329), 1, + ACTIONS(11335), 1, sym_interpolation_start_quote, STATE(7469), 9, sym_preproc_region, @@ -779592,7 +779632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320816] = 12, + [320821] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779613,8 +779653,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11331), 1, - anon_sym_GT, + ACTIONS(11337), 1, + anon_sym_EQ_GT, STATE(7470), 9, sym_preproc_region, sym_preproc_endregion, @@ -779625,7 +779665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320861] = 12, + [320866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779646,8 +779686,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11333), 1, - anon_sym_EQ_GT, + ACTIONS(11339), 1, + sym_interpolation_start_quote, STATE(7471), 9, sym_preproc_region, sym_preproc_endregion, @@ -779658,7 +779698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320906] = 12, + [320911] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779679,8 +779719,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11335), 1, - sym_interpolation_start_quote, + ACTIONS(11341), 1, + anon_sym_SEMI, STATE(7472), 9, sym_preproc_region, sym_preproc_endregion, @@ -779691,7 +779731,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320951] = 12, + [320956] = 12, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10744), 1, + aux_sym_preproc_if_token2, + STATE(7473), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [321001] = 12, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(11343), 1, + aux_sym_preproc_if_token2, + STATE(7474), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [321046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779712,9 +779818,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11337), 1, - anon_sym_LPAREN, - STATE(7473), 9, + ACTIONS(11345), 1, + aux_sym_preproc_if_token3, + STATE(7475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779724,7 +779830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320996] = 12, + [321091] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779745,9 +779851,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11339), 1, - anon_sym_SEMI, - STATE(7474), 9, + ACTIONS(11347), 1, + aux_sym_preproc_if_token3, + STATE(7476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779757,7 +779863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321041] = 12, + [321136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779778,9 +779884,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11341), 1, - anon_sym_SEMI, - STATE(7475), 9, + ACTIONS(11349), 1, + aux_sym_preproc_if_token3, + STATE(7477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779790,7 +779896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321086] = 12, + [321181] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779811,9 +779917,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11343), 1, - sym_interpolation_start_quote, - STATE(7476), 9, + ACTIONS(11351), 1, + anon_sym_SEMI, + STATE(7478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779823,7 +779929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321131] = 12, + [321226] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779844,9 +779950,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11345), 1, - anon_sym_GT, - STATE(7477), 9, + ACTIONS(11353), 1, + anon_sym_EQ_GT, + STATE(7479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779856,7 +779962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321176] = 12, + [321271] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779877,9 +779983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11347), 1, + ACTIONS(11355), 1, sym_raw_string_content, - STATE(7478), 9, + STATE(7480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779889,7 +779995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321221] = 12, + [321316] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779910,9 +780016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11349), 1, - anon_sym_GT, - STATE(7479), 9, + ACTIONS(7644), 1, + anon_sym_RBRACE, + STATE(7481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779922,7 +780028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321266] = 12, + [321361] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779943,9 +780049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11351), 1, - anon_sym_EQ_GT, - STATE(7480), 9, + ACTIONS(11357), 1, + anon_sym_RPAREN, + STATE(7482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779955,7 +780061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321311] = 12, + [321406] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779976,9 +780082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11353), 1, + ACTIONS(11359), 1, anon_sym_EQ_GT, - STATE(7481), 9, + STATE(7483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779988,7 +780094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321356] = 12, + [321451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780009,9 +780115,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11355), 1, - anon_sym_in, - STATE(7482), 9, + ACTIONS(11361), 1, + anon_sym_RPAREN, + STATE(7484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780021,7 +780127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321401] = 12, + [321496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780042,9 +780148,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11357), 1, - anon_sym_RPAREN, - STATE(7483), 9, + ACTIONS(11363), 1, + aux_sym_preproc_if_token3, + STATE(7485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780054,7 +780160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321446] = 12, + [321541] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780075,9 +780181,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11359), 1, + ACTIONS(11365), 1, anon_sym_EQ_GT, - STATE(7484), 9, + STATE(7486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780087,7 +780193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321491] = 12, + [321586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780108,9 +780214,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11361), 1, - anon_sym_RPAREN, - STATE(7485), 9, + ACTIONS(10408), 1, + anon_sym_RBRACE, + STATE(7487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780120,7 +780226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321536] = 12, + [321631] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780141,9 +780247,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11363), 1, - aux_sym_preproc_if_token3, - STATE(7486), 9, + ACTIONS(11367), 1, + anon_sym_LPAREN, + STATE(7488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780153,7 +780259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321581] = 12, + [321676] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780174,9 +780280,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11365), 1, - anon_sym_EQ_GT, - STATE(7487), 9, + ACTIONS(11369), 1, + anon_sym_LPAREN, + STATE(7489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780186,7 +780292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321626] = 12, + [321721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780207,9 +780313,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11367), 1, - anon_sym_GT, - STATE(7488), 9, + ACTIONS(11371), 1, + sym_raw_string_end, + STATE(7490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780219,7 +780325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321671] = 12, + [321766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780240,9 +780346,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11369), 1, + ACTIONS(11373), 1, anon_sym_SEMI, - STATE(7489), 9, + STATE(7491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780252,7 +780358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321716] = 12, + [321811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780273,9 +780379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11371), 1, - sym__optional_semi, - STATE(7490), 9, + ACTIONS(11375), 1, + anon_sym_SQUOTE, + STATE(7492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780285,7 +780391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321761] = 12, + [321856] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780306,9 +780412,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_RBRACE, - STATE(7491), 9, + ACTIONS(11377), 1, + aux_sym_preproc_if_token3, + STATE(7493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780318,7 +780424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321806] = 12, + [321901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780339,9 +780445,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11373), 1, - anon_sym_RPAREN, - STATE(7492), 9, + ACTIONS(11379), 1, + anon_sym_GT, + STATE(7494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780351,7 +780457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321851] = 12, + [321946] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780372,9 +780478,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11375), 1, - anon_sym_EQ, - STATE(7493), 9, + ACTIONS(11381), 1, + anon_sym_GT, + STATE(7495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780384,7 +780490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321896] = 12, + [321991] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780405,9 +780511,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11377), 1, - anon_sym_EQ_GT, - STATE(7494), 9, + ACTIONS(11383), 1, + sym_interpolation_start_quote, + STATE(7496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780417,7 +780523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321941] = 12, + [322036] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780438,9 +780544,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11379), 1, + ACTIONS(10822), 1, + anon_sym_RBRACE, + STATE(7497), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322081] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11385), 1, anon_sym_SEMI, - STATE(7495), 9, + STATE(7498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780450,7 +780589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321986] = 12, + [322126] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780471,9 +780610,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11381), 1, - aux_sym_preproc_if_token3, - STATE(7496), 9, + ACTIONS(11387), 1, + anon_sym_GT, + STATE(7499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780483,7 +780622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322031] = 12, + [322171] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780504,9 +780643,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11383), 1, - anon_sym_LPAREN, - STATE(7497), 9, + ACTIONS(11389), 1, + anon_sym_RPAREN, + STATE(7500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780516,7 +780655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322076] = 12, + [322216] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780537,9 +780676,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11385), 1, - anon_sym_SEMI, - STATE(7498), 9, + ACTIONS(11391), 1, + aux_sym_preproc_if_token3, + STATE(7501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780549,7 +780688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322121] = 12, + [322261] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780570,9 +780709,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11387), 1, + ACTIONS(11393), 1, anon_sym_SEMI, - STATE(7499), 9, + STATE(7502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780582,7 +780721,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322166] = 12, + [322306] = 12, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(11395), 1, + aux_sym_preproc_if_token2, + STATE(7503), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322351] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780603,9 +780775,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_preproc_if_token3, - STATE(7500), 9, + ACTIONS(11397), 1, + anon_sym_EQ_GT, + STATE(7504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780615,7 +780787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322211] = 12, + [322396] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780636,9 +780808,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11391), 1, - anon_sym_DOT, - STATE(7501), 9, + ACTIONS(11399), 1, + anon_sym_LPAREN, + STATE(7505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780648,7 +780820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322256] = 12, + [322441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780669,9 +780841,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11393), 1, - anon_sym_COLON, - STATE(7502), 9, + ACTIONS(11401), 1, + sym_raw_string_content, + STATE(7506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780681,7 +780853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322301] = 12, + [322486] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780702,9 +780874,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11395), 1, - anon_sym_LPAREN, - STATE(7503), 9, + ACTIONS(11403), 1, + anon_sym_RBRACK, + STATE(7507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780714,7 +780886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322346] = 12, + [322531] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780735,9 +780907,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11397), 1, - anon_sym_LPAREN, - STATE(7504), 9, + ACTIONS(11405), 1, + aux_sym_preproc_if_token3, + STATE(7508), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322576] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11407), 1, + anon_sym_SEMI, + STATE(7509), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322621] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11409), 1, + sym__optional_semi, + STATE(7510), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322666] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11411), 1, + aux_sym_preproc_if_token3, + STATE(7511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780747,7 +781018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322391] = 12, + [322711] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780768,9 +781039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11399), 1, - sym__optional_semi, - STATE(7505), 9, + ACTIONS(11413), 1, + sym_interpolation_start_quote, + STATE(7512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780780,7 +781051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322436] = 12, + [322756] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780801,9 +781072,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11401), 1, - anon_sym_EQ_GT, - STATE(7506), 9, + ACTIONS(11415), 1, + anon_sym_GT, + STATE(7513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780813,7 +781084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322481] = 12, + [322801] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780834,9 +781105,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11403), 1, - aux_sym_preproc_if_token3, - STATE(7507), 9, + ACTIONS(11417), 1, + anon_sym_LPAREN, + STATE(7514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780846,7 +781117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322526] = 12, + [322846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780867,9 +781138,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11405), 1, - anon_sym_EQ_GT, - STATE(7508), 9, + ACTIONS(10991), 1, + anon_sym_LT, + STATE(7515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780879,7 +781150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322571] = 12, + [322891] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780900,9 +781171,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11407), 1, - aux_sym_preproc_if_token3, - STATE(7509), 9, + ACTIONS(10781), 1, + anon_sym_RBRACE, + STATE(7516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780912,30 +781183,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322616] = 12, - ACTIONS(9181), 1, + [322936] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10866), 1, - aux_sym_preproc_if_token2, - STATE(7510), 9, + ACTIONS(11419), 1, + anon_sym_GT, + STATE(7517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780945,7 +781216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322661] = 12, + [322981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780966,9 +781237,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11409), 1, - anon_sym_EQ_GT, - STATE(7511), 9, + ACTIONS(11421), 1, + anon_sym_GT, + STATE(7518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780978,7 +781249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322706] = 12, + [323026] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780999,9 +781270,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11411), 1, - sym_raw_string_end, - STATE(7512), 9, + ACTIONS(11423), 1, + sym_interpolation_start_quote, + STATE(7519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781011,7 +781282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322751] = 12, + [323071] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781032,9 +781303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11413), 1, - anon_sym_RBRACE, - STATE(7513), 9, + ACTIONS(11425), 1, + sym_integer_literal, + STATE(7520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781044,30 +781315,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322796] = 12, - ACTIONS(9181), 1, + [323116] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11415), 1, - sym_preproc_arg, - STATE(7514), 9, + ACTIONS(11427), 1, + sym_interpolation_start_quote, + STATE(7521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781077,7 +781348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322841] = 12, + [323161] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781098,9 +781369,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11417), 1, - anon_sym_SEMI, - STATE(7515), 9, + ACTIONS(11429), 1, + anon_sym_STAR, + STATE(7522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781110,30 +781381,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322886] = 12, - ACTIONS(9181), 1, + [323206] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11419), 1, - aux_sym_preproc_if_token2, - STATE(7516), 9, + ACTIONS(11431), 1, + aux_sym_interpolation_format_clause_token1, + STATE(7523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781143,7 +781414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322931] = 12, + [323251] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781164,9 +781435,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_SEMI, - STATE(7517), 9, + ACTIONS(11433), 1, + sym_interpolation_start_quote, + STATE(7524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781176,7 +781447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322976] = 12, + [323296] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781197,9 +781468,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8336), 1, + ACTIONS(8751), 1, anon_sym_RPAREN, - STATE(7518), 9, + STATE(7525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781209,7 +781480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323021] = 12, + [323341] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781230,9 +781501,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11421), 1, - anon_sym_EQ_GT, - STATE(7519), 9, + ACTIONS(11435), 1, + anon_sym_RPAREN, + STATE(7526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781242,7 +781513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323066] = 12, + [323386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781263,9 +781534,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10729), 1, - anon_sym_RBRACE, - STATE(7520), 9, + ACTIONS(11437), 1, + anon_sym_SEMI, + STATE(7527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781275,7 +781546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323111] = 12, + [323431] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781296,9 +781567,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11423), 1, - anon_sym_GT, - STATE(7521), 9, + ACTIONS(11439), 1, + sym_raw_string_content, + STATE(7528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781308,7 +781579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323156] = 12, + [323476] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781329,9 +781600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11425), 1, - anon_sym_SEMI, - STATE(7522), 9, + ACTIONS(11441), 1, + aux_sym_preproc_if_token3, + STATE(7529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781341,7 +781612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323201] = 12, + [323521] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781362,9 +781633,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11427), 1, - anon_sym_EQ_GT, - STATE(7523), 9, + ACTIONS(11443), 1, + aux_sym_preproc_if_token3, + STATE(7530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781374,7 +781645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323246] = 12, + [323566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781395,9 +781666,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11429), 1, - anon_sym_RPAREN, - STATE(7524), 9, + ACTIONS(11445), 1, + aux_sym_preproc_if_token3, + STATE(7531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781407,7 +781678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323291] = 12, + [323611] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781428,42 +781699,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11431), 1, - anon_sym_EQ_GT, - STATE(7525), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [323336] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11433), 1, - sym_preproc_arg, - STATE(7526), 9, + ACTIONS(11447), 1, + anon_sym_LT, + STATE(7532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781473,7 +781711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323381] = 12, + [323656] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781494,9 +781732,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11435), 1, - aux_sym_preproc_if_token3, - STATE(7527), 9, + ACTIONS(11449), 1, + anon_sym_RBRACK, + STATE(7533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781506,7 +781744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323426] = 12, + [323701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781527,9 +781765,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11437), 1, + ACTIONS(11451), 1, anon_sym_EQ_GT, - STATE(7528), 9, + STATE(7534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781539,7 +781777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323471] = 12, + [323746] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781560,9 +781798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8739), 1, - anon_sym_RPAREN, - STATE(7529), 9, + ACTIONS(10777), 1, + anon_sym_RBRACE, + STATE(7535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781572,7 +781810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323516] = 12, + [323791] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781593,9 +781831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11439), 1, - anon_sym_SEMI, - STATE(7530), 9, + ACTIONS(10579), 1, + anon_sym_RBRACE, + STATE(7536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781605,7 +781843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323561] = 12, + [323836] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781626,9 +781864,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11441), 1, - anon_sym_SEMI, - STATE(7531), 9, + ACTIONS(11453), 1, + aux_sym_preproc_if_token3, + STATE(7537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781638,7 +781876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323606] = 12, + [323881] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781659,9 +781897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10862), 1, - anon_sym_RBRACE, - STATE(7532), 9, + ACTIONS(11455), 1, + anon_sym_SEMI, + STATE(7538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781671,7 +781909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323651] = 12, + [323926] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781692,9 +781930,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11443), 1, - aux_sym_preproc_if_token3, - STATE(7533), 9, + ACTIONS(11457), 1, + anon_sym_EQ_GT, + STATE(7539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781704,7 +781942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323696] = 12, + [323971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781725,9 +781963,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11445), 1, - aux_sym_preproc_if_token3, - STATE(7534), 9, + ACTIONS(11459), 1, + anon_sym_EQ_GT, + STATE(7540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781737,7 +781975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323741] = 12, + [324016] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781758,9 +781996,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11447), 1, + ACTIONS(11461), 1, aux_sym_preproc_if_token3, - STATE(7535), 9, + STATE(7541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781770,7 +782008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323786] = 12, + [324061] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781791,9 +782029,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_SEMI, - STATE(7536), 9, + ACTIONS(11463), 1, + anon_sym_EQ_GT, + STATE(7542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781803,7 +782041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323831] = 12, + [324106] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781824,42 +782062,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11451), 1, - anon_sym_SEMI, - STATE(7537), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [323876] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11453), 1, + ACTIONS(11465), 1, anon_sym_EQ_GT, - STATE(7538), 9, + STATE(7543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781869,7 +782074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323921] = 12, + [324151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781890,9 +782095,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11455), 1, - anon_sym_SEMI, - STATE(7539), 9, + ACTIONS(10785), 1, + sym_interpolation_close_brace, + STATE(7544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781902,96 +782107,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323966] = 12, - ACTIONS(9181), 1, + [324196] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11457), 1, + ACTIONS(11467), 1, sym_preproc_arg, - STATE(7540), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [324011] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11459), 1, - aux_sym_preproc_if_token3, - STATE(7541), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [324056] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11461), 1, - sym__optional_semi, - STATE(7542), 9, + STATE(7545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782001,7 +782140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324101] = 12, + [324241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782022,9 +782161,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11463), 1, - anon_sym_RPAREN, - STATE(7543), 9, + ACTIONS(11469), 1, + anon_sym_EQ_GT, + STATE(7546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782034,7 +782173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324146] = 12, + [324286] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782055,9 +782194,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10742), 1, + ACTIONS(11471), 1, anon_sym_RBRACE, - STATE(7544), 9, + STATE(7547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782067,7 +782206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324191] = 12, + [324331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782088,9 +782227,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11465), 1, - anon_sym_EQ, - STATE(7545), 9, + ACTIONS(11473), 1, + sym_raw_string_end, + STATE(7548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782100,7 +782239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324236] = 12, + [324376] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782121,9 +782260,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11467), 1, - aux_sym_preproc_if_token3, - STATE(7546), 9, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(7549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782133,7 +782272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324281] = 12, + [324421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782154,9 +782293,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11469), 1, - anon_sym_in, - STATE(7547), 9, + ACTIONS(10795), 1, + anon_sym_RBRACE, + STATE(7550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782166,7 +782305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324326] = 12, + [324466] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782187,9 +782326,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11471), 1, - anon_sym_COLON, - STATE(7548), 9, + ACTIONS(11477), 1, + aux_sym_preproc_if_token3, + STATE(7551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782199,7 +782338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324371] = 12, + [324511] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782220,9 +782359,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11473), 1, - anon_sym_SEMI, - STATE(7549), 9, + ACTIONS(11479), 1, + anon_sym_GT, + STATE(7552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782232,7 +782371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324416] = 12, + [324556] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782253,9 +782392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11475), 1, + ACTIONS(11481), 1, anon_sym_EQ_GT, - STATE(7550), 9, + STATE(7553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782265,7 +782404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324461] = 12, + [324601] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782286,9 +782425,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11477), 1, - anon_sym_LPAREN, - STATE(7551), 9, + ACTIONS(11483), 1, + anon_sym_EQ_GT, + STATE(7554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782298,7 +782437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324506] = 12, + [324646] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782319,9 +782458,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10748), 1, - anon_sym_RBRACE, - STATE(7552), 9, + ACTIONS(7735), 1, + anon_sym_SEMI, + STATE(7555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782331,7 +782470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324551] = 12, + [324691] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782352,42 +782491,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11479), 1, + ACTIONS(11485), 1, anon_sym_EQ_GT, - STATE(7553), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [324596] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7484), 1, - anon_sym_RBRACE, - STATE(7554), 9, + STATE(7556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782397,7 +782503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324641] = 12, + [324736] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782418,9 +782524,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11481), 1, - sym_interpolation_start_quote, - STATE(7555), 9, + ACTIONS(11487), 1, + anon_sym_SEMI, + STATE(7557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782430,7 +782536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324686] = 12, + [324781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782451,9 +782557,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11483), 1, - sym_interpolation_start_quote, - STATE(7556), 9, + ACTIONS(11489), 1, + anon_sym_GT, + STATE(7558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782463,7 +782569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324731] = 12, + [324826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782484,9 +782590,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11485), 1, - sym_interpolation_start_quote, - STATE(7557), 9, + ACTIONS(11491), 1, + anon_sym_EQ_GT, + STATE(7559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782496,7 +782602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324776] = 12, + [324871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782517,9 +782623,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11487), 1, - anon_sym_EQ_GT, - STATE(7558), 9, + ACTIONS(11493), 1, + anon_sym_SEMI, + STATE(7560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782529,7 +782635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324821] = 12, + [324916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782550,9 +782656,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11489), 1, - sym_raw_string_content, - STATE(7559), 9, + ACTIONS(11495), 1, + anon_sym_RPAREN, + STATE(7561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782562,7 +782668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324866] = 12, + [324961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782583,9 +782689,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11491), 1, - anon_sym_EQ_GT, - STATE(7560), 9, + ACTIONS(11497), 1, + aux_sym_preproc_if_token3, + STATE(7562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782595,7 +782701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324911] = 12, + [325006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782616,9 +782722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11493), 1, - anon_sym_GT, - STATE(7561), 9, + ACTIONS(10805), 1, + anon_sym_RBRACE, + STATE(7563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782628,7 +782734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324956] = 12, + [325051] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782649,9 +782755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11495), 1, - anon_sym_RBRACE, - STATE(7562), 9, + ACTIONS(8643), 1, + anon_sym_RPAREN, + STATE(7564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782661,7 +782767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325001] = 12, + [325096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782682,9 +782788,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11497), 1, + ACTIONS(11499), 1, anon_sym_SEMI, - STATE(7563), 9, + STATE(7565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782694,7 +782800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325046] = 12, + [325141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782715,9 +782821,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11499), 1, - anon_sym_RBRACK, - STATE(7564), 9, + ACTIONS(11501), 1, + anon_sym_RPAREN, + STATE(7566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782727,7 +782833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325091] = 12, + [325186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782748,9 +782854,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11501), 1, - sym_integer_literal, - STATE(7565), 9, + ACTIONS(11503), 1, + anon_sym_DOT, + STATE(7567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782760,7 +782866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325136] = 12, + [325231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782781,9 +782887,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11503), 1, - anon_sym_SEMI, - STATE(7566), 9, + ACTIONS(5640), 1, + anon_sym_STAR, + STATE(7568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782793,7 +782899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325181] = 12, + [325276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782816,7 +782922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11505), 1, anon_sym_SEMI, - STATE(7567), 9, + STATE(7569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782826,30 +782932,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325226] = 12, - ACTIONS(4931), 1, - aux_sym_preproc_if_token2, - ACTIONS(9181), 1, + [325321] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - STATE(7568), 9, + ACTIONS(11507), 1, + anon_sym_EQ_GT, + STATE(7570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782859,7 +782965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325271] = 12, + [325366] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782880,9 +782986,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11507), 1, - anon_sym_LT, - STATE(7569), 9, + ACTIONS(11509), 1, + anon_sym_SEMI, + STATE(7571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782892,7 +782998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325316] = 12, + [325411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782913,9 +783019,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10759), 1, - anon_sym_RBRACE, - STATE(7570), 9, + ACTIONS(11511), 1, + anon_sym_SEMI, + STATE(7572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782925,7 +783031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325361] = 12, + [325456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782946,9 +783052,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11509), 1, - anon_sym_EQ_GT, - STATE(7571), 9, + ACTIONS(11513), 1, + anon_sym_LPAREN, + STATE(7573), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [325501] = 12, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + ACTIONS(10277), 1, + aux_sym_preproc_if_token2, + STATE(7574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782958,7 +783097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325406] = 12, + [325546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782979,9 +783118,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8408), 1, - anon_sym_RPAREN, - STATE(7572), 9, + ACTIONS(11515), 1, + anon_sym_GT, + STATE(7575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782991,7 +783130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325451] = 12, + [325591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783012,9 +783151,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11511), 1, - anon_sym_SEMI, - STATE(7573), 9, + ACTIONS(11517), 1, + anon_sym_STAR, + STATE(7576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783024,7 +783163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325496] = 12, + [325636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783045,9 +783184,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11513), 1, - sym_interpolation_start_quote, - STATE(7574), 9, + ACTIONS(11519), 1, + anon_sym_EQ_GT, + STATE(7577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783057,7 +783196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325541] = 12, + [325681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783078,9 +783217,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11515), 1, - anon_sym_STAR, - STATE(7575), 9, + ACTIONS(11521), 1, + anon_sym_GT, + STATE(7578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783090,7 +783229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325586] = 12, + [325726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783111,9 +783250,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11517), 1, - anon_sym_EQ_GT, - STATE(7576), 9, + ACTIONS(11523), 1, + anon_sym_SEMI, + STATE(7579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783123,7 +783262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325631] = 12, + [325771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783144,9 +783283,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7655), 1, - anon_sym_RBRACE, - STATE(7577), 9, + ACTIONS(11525), 1, + anon_sym_SEMI, + STATE(7580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783156,7 +783295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325676] = 12, + [325816] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783177,9 +783316,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11519), 1, - anon_sym_SEMI, - STATE(7578), 9, + ACTIONS(11527), 1, + sym_raw_string_end, + STATE(7581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783189,7 +783328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325721] = 12, + [325861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783210,9 +783349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11521), 1, - anon_sym_RPAREN, - STATE(7579), 9, + ACTIONS(11529), 1, + anon_sym_GT, + STATE(7582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783222,7 +783361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325766] = 12, + [325906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783243,9 +783382,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11523), 1, - anon_sym_GT, - STATE(7580), 9, + ACTIONS(11531), 1, + anon_sym_EQ, + STATE(7583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783255,7 +783394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325811] = 12, + [325951] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783276,9 +783415,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11525), 1, - aux_sym_preproc_if_token3, - STATE(7581), 9, + ACTIONS(11533), 1, + anon_sym_RPAREN, + STATE(7584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783288,7 +783427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325856] = 12, + [325996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783309,9 +783448,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11527), 1, - anon_sym_SEMI, - STATE(7582), 9, + ACTIONS(11535), 1, + anon_sym_LPAREN, + STATE(7585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783321,7 +783460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325901] = 12, + [326041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783342,9 +783481,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11529), 1, - anon_sym_RPAREN, - STATE(7583), 9, + ACTIONS(11537), 1, + anon_sym_LPAREN, + STATE(7586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783354,7 +783493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325946] = 12, + [326086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783375,9 +783514,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11531), 1, + ACTIONS(11539), 1, anon_sym_LPAREN, - STATE(7584), 9, + STATE(7587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783387,7 +783526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325991] = 12, + [326131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783408,9 +783547,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11533), 1, + ACTIONS(11541), 1, anon_sym_LPAREN, - STATE(7585), 9, + STATE(7588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783420,7 +783559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326036] = 12, + [326176] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783441,9 +783580,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11535), 1, + ACTIONS(11543), 1, anon_sym_LPAREN, - STATE(7586), 9, + STATE(7589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783453,7 +783592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326081] = 12, + [326221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783474,9 +783613,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11537), 1, + ACTIONS(11545), 1, anon_sym_LPAREN, - STATE(7587), 9, + STATE(7590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783486,7 +783625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326126] = 12, + [326266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783507,9 +783646,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11539), 1, + ACTIONS(11547), 1, anon_sym_LPAREN, - STATE(7588), 9, + STATE(7591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783519,7 +783658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326171] = 12, + [326311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783540,9 +783679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11541), 1, - anon_sym_LPAREN, - STATE(7589), 9, + ACTIONS(11549), 1, + aux_sym_preproc_if_token3, + STATE(7592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783552,7 +783691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326216] = 12, + [326356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783573,9 +783712,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11543), 1, + ACTIONS(11551), 1, anon_sym_LPAREN, - STATE(7590), 9, + STATE(7593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783585,7 +783724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326261] = 12, + [326401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783606,9 +783745,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11545), 1, - anon_sym_LPAREN, - STATE(7591), 9, + ACTIONS(11553), 1, + anon_sym_GT, + STATE(7594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783618,7 +783757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326306] = 12, + [326446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783639,9 +783778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11547), 1, - anon_sym_LPAREN, - STATE(7592), 9, + ACTIONS(11555), 1, + anon_sym_STAR, + STATE(7595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783651,7 +783790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326351] = 12, + [326491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783672,9 +783811,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11549), 1, - anon_sym_LPAREN, - STATE(7593), 9, + ACTIONS(11557), 1, + aux_sym_preproc_if_token3, + STATE(7596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783684,7 +783823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326396] = 12, + [326536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783705,9 +783844,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11551), 1, - anon_sym_EQ_GT, - STATE(7594), 9, + ACTIONS(11559), 1, + aux_sym_preproc_if_token3, + STATE(7597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783717,7 +783856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326441] = 12, + [326581] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783738,9 +783877,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11561), 1, + aux_sym_preproc_if_token3, + STATE(7598), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [326626] = 12, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(11563), 1, anon_sym_EQ_GT, - STATE(7595), 9, + STATE(7599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783750,7 +783922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326486] = 12, + [326671] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783771,9 +783943,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11555), 1, - anon_sym_SQUOTE, - STATE(7596), 9, + ACTIONS(11565), 1, + anon_sym_EQ_GT, + STATE(7600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783783,7 +783955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326531] = 12, + [326716] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783804,9 +783976,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11059), 1, - anon_sym_in, - STATE(7597), 9, + ACTIONS(9755), 1, + anon_sym_EQ, + STATE(7601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783816,7 +783988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326576] = 12, + [326761] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783837,9 +784009,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11557), 1, - anon_sym_GT, - STATE(7598), 9, + ACTIONS(11567), 1, + anon_sym_SEMI, + STATE(7602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783849,7 +784021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326621] = 12, + [326806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783870,9 +784042,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11559), 1, - aux_sym_preproc_if_token3, - STATE(7599), 9, + ACTIONS(11569), 1, + anon_sym_LT, + STATE(7603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783882,7 +784054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326666] = 12, + [326851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783903,9 +784075,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11561), 1, - anon_sym_RBRACK, - STATE(7600), 9, + ACTIONS(11571), 1, + aux_sym_preproc_if_token3, + STATE(7604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783915,7 +784087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326711] = 12, + [326896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783936,9 +784108,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11563), 1, + ACTIONS(11573), 1, anon_sym_EQ_GT, - STATE(7601), 9, + STATE(7605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783948,7 +784120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326756] = 12, + [326941] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783969,9 +784141,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9782), 1, + ACTIONS(11575), 1, anon_sym_EQ, - STATE(7602), 9, + STATE(7606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783981,7 +784153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326801] = 12, + [326986] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784002,9 +784174,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11565), 1, - aux_sym_preproc_if_token3, - STATE(7603), 9, + ACTIONS(11577), 1, + anon_sym_GT, + STATE(7607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784014,7 +784186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326846] = 12, + [327031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784035,9 +784207,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11567), 1, - anon_sym_LT, - STATE(7604), 9, + ACTIONS(11579), 1, + sym_integer_literal, + STATE(7608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784047,7 +784219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326891] = 12, + [327076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784068,9 +784240,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11569), 1, - anon_sym_SEMI, - STATE(7605), 9, + ACTIONS(8296), 1, + anon_sym_RPAREN, + STATE(7609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784080,7 +784252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326936] = 12, + [327121] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784101,9 +784273,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11571), 1, - anon_sym_RPAREN, - STATE(7606), 9, + ACTIONS(11581), 1, + anon_sym_RBRACK, + STATE(7610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784113,7 +784285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326981] = 12, + [327166] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784134,9 +784306,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11573), 1, - anon_sym_EQ, - STATE(7607), 9, + ACTIONS(11583), 1, + anon_sym_SEMI, + STATE(7611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784146,7 +784318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327026] = 12, + [327211] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784167,9 +784339,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11575), 1, - aux_sym_preproc_if_token3, - STATE(7608), 9, + ACTIONS(11081), 1, + anon_sym_in, + STATE(7612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784179,7 +784351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327071] = 12, + [327256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784200,9 +784372,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11577), 1, - aux_sym_preproc_if_token3, - STATE(7609), 9, + ACTIONS(11585), 1, + anon_sym_SEMI, + STATE(7613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784212,7 +784384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327116] = 12, + [327301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784233,9 +784405,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11579), 1, - aux_sym_preproc_if_token3, - STATE(7610), 9, + ACTIONS(7602), 1, + anon_sym_RBRACE, + STATE(7614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784245,7 +784417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327161] = 12, + [327346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784266,9 +784438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11581), 1, - anon_sym_SEMI, - STATE(7611), 9, + ACTIONS(11587), 1, + anon_sym_EQ_GT, + STATE(7615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784278,7 +784450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327206] = 12, + [327391] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784299,9 +784471,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11583), 1, - sym__optional_semi, - STATE(7612), 9, + ACTIONS(8458), 1, + anon_sym_RPAREN, + STATE(7616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784311,7 +784483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327251] = 12, + [327436] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784332,9 +784504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11585), 1, - anon_sym_COMMA, - STATE(7613), 9, + ACTIONS(11589), 1, + sym_interpolation_start_quote, + STATE(7617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784344,7 +784516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327296] = 12, + [327481] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784365,9 +784537,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11587), 1, - anon_sym_STAR, - STATE(7614), 9, + ACTIONS(11591), 1, + anon_sym_SEMI, + STATE(7618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784377,7 +784549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327341] = 12, + [327526] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784398,9 +784570,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8635), 1, - anon_sym_RPAREN, - STATE(7615), 9, + ACTIONS(11593), 1, + anon_sym_LPAREN, + STATE(7619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784410,7 +784582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327386] = 12, + [327571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784431,9 +784603,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11589), 1, - anon_sym_RPAREN, - STATE(7616), 9, + ACTIONS(11595), 1, + anon_sym_LPAREN, + STATE(7620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784443,7 +784615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327431] = 12, + [327616] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784464,9 +784636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11591), 1, + ACTIONS(11597), 1, anon_sym_LPAREN, - STATE(7617), 9, + STATE(7621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784476,7 +784648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327476] = 12, + [327661] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784497,9 +784669,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11593), 1, - anon_sym_STAR, - STATE(7618), 9, + ACTIONS(11599), 1, + anon_sym_LPAREN, + STATE(7622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784509,7 +784681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327521] = 12, + [327706] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784530,9 +784702,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11595), 1, - anon_sym_EQ_GT, - STATE(7619), 9, + ACTIONS(11601), 1, + anon_sym_LPAREN, + STATE(7623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784542,7 +784714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327566] = 12, + [327751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784563,9 +784735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_GT, - STATE(7620), 9, + ACTIONS(11603), 1, + anon_sym_LPAREN, + STATE(7624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784575,7 +784747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327611] = 12, + [327796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784596,9 +784768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_SEMI, - STATE(7621), 9, + ACTIONS(11605), 1, + anon_sym_LPAREN, + STATE(7625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784608,7 +784780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327656] = 12, + [327841] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784629,9 +784801,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11601), 1, - anon_sym_LPAREN, - STATE(7622), 9, + ACTIONS(11607), 1, + anon_sym_SEMI, + STATE(7626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784641,7 +784813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327701] = 12, + [327886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784662,9 +784834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11603), 1, + ACTIONS(11609), 1, anon_sym_LPAREN, - STATE(7623), 9, + STATE(7627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784674,7 +784846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327746] = 12, + [327931] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784695,9 +784867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11605), 1, - anon_sym_LPAREN, - STATE(7624), 9, + ACTIONS(11611), 1, + anon_sym_SEMI, + STATE(7628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784707,7 +784879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327791] = 12, + [327976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784728,9 +784900,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11607), 1, - anon_sym_LPAREN, - STATE(7625), 9, + ACTIONS(11613), 1, + anon_sym_EQ_GT, + STATE(7629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784740,7 +784912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327836] = 12, + [328021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784761,9 +784933,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11609), 1, - anon_sym_LPAREN, - STATE(7626), 9, + ACTIONS(11615), 1, + anon_sym_EQ_GT, + STATE(7630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784773,7 +784945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327881] = 12, + [328066] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784794,9 +784966,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11611), 1, - anon_sym_LPAREN, - STATE(7627), 9, + ACTIONS(11617), 1, + sym_raw_string_end, + STATE(7631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784806,7 +784978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327926] = 12, + [328111] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784827,9 +784999,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11613), 1, - anon_sym_LPAREN, - STATE(7628), 9, + ACTIONS(11619), 1, + anon_sym_GT, + STATE(7632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784839,7 +785011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327971] = 12, + [328156] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784860,9 +785032,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11615), 1, - anon_sym_SEMI, - STATE(7629), 9, + ACTIONS(11621), 1, + anon_sym_EQ_GT, + STATE(7633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784872,7 +785044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328016] = 12, + [328201] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784893,9 +785065,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11617), 1, - anon_sym_LPAREN, - STATE(7630), 9, + ACTIONS(11623), 1, + anon_sym_SEMI, + STATE(7634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784905,7 +785077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328061] = 12, + [328246] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784926,9 +785098,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11619), 1, - sym__optional_semi, - STATE(7631), 9, + ACTIONS(11625), 1, + anon_sym_SEMI, + STATE(7635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784938,7 +785110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328106] = 12, + [328291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784959,9 +785131,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11621), 1, - anon_sym_EQ_GT, - STATE(7632), 9, + ACTIONS(11627), 1, + anon_sym_LT, + STATE(7636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784971,7 +785143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328151] = 12, + [328336] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784992,9 +785164,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11623), 1, - anon_sym_SQUOTE, - STATE(7633), 9, + ACTIONS(10332), 1, + anon_sym_RBRACE, + STATE(7637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785004,7 +785176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328196] = 12, + [328381] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785025,9 +785197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11625), 1, - anon_sym_EQ_GT, - STATE(7634), 9, + ACTIONS(11629), 1, + anon_sym_SEMI, + STATE(7638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785037,7 +785209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328241] = 12, + [328426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785058,9 +785230,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10390), 1, - anon_sym_RBRACE, - STATE(7635), 9, + ACTIONS(11631), 1, + sym_interpolation_start_quote, + STATE(7639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785070,7 +785242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328286] = 12, + [328471] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785091,9 +785263,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11627), 1, - anon_sym_SEMI, - STATE(7636), 9, + ACTIONS(10370), 1, + anon_sym_RBRACE, + STATE(7640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785103,7 +785275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328331] = 12, + [328516] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785124,9 +785296,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11629), 1, - anon_sym_RPAREN, - STATE(7637), 9, + ACTIONS(11633), 1, + anon_sym_SEMI, + STATE(7641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785136,7 +785308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328376] = 12, + [328561] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785157,9 +785329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11631), 1, - anon_sym_SEMI, - STATE(7638), 9, + ACTIONS(11635), 1, + aux_sym_preproc_if_token3, + STATE(7642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785169,7 +785341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328421] = 12, + [328606] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785190,9 +785362,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11633), 1, - anon_sym_LT, - STATE(7639), 9, + ACTIONS(10293), 1, + anon_sym_LPAREN, + STATE(7643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785202,7 +785374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328466] = 12, + [328651] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785223,9 +785395,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11635), 1, - anon_sym_EQ_GT, - STATE(7640), 9, + ACTIONS(11637), 1, + sym__optional_semi, + STATE(7644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785235,7 +785407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328511] = 12, + [328696] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785256,9 +785428,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11637), 1, - anon_sym_SEMI, - STATE(7641), 9, + ACTIONS(8526), 1, + anon_sym_RPAREN, + STATE(7645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785268,7 +785440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328556] = 12, + [328741] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785291,7 +785463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11639), 1, anon_sym_SEMI, - STATE(7642), 9, + STATE(7646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785301,7 +785473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328601] = 12, + [328786] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785323,8 +785495,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11641), 1, - sym__optional_semi, - STATE(7643), 9, + anon_sym_EQ_GT, + STATE(7647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785334,7 +785506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328646] = 12, + [328831] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785356,8 +785528,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11643), 1, - anon_sym_while, - STATE(7644), 9, + anon_sym_LPAREN, + STATE(7648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785367,7 +785539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328691] = 12, + [328876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785389,8 +785561,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11645), 1, - aux_sym_preproc_if_token3, - STATE(7645), 9, + anon_sym_LPAREN, + STATE(7649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785400,7 +785572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328736] = 12, + [328921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785422,8 +785594,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11647), 1, - anon_sym_GT, - STATE(7646), 9, + anon_sym_LPAREN, + STATE(7650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785433,7 +785605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328781] = 12, + [328966] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785455,8 +785627,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11649), 1, - anon_sym_RBRACK, - STATE(7647), 9, + anon_sym_LPAREN, + STATE(7651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785466,7 +785638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328826] = 12, + [329011] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785487,9 +785659,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8450), 1, - anon_sym_RPAREN, - STATE(7648), 9, + ACTIONS(11651), 1, + anon_sym_SEMI, + STATE(7652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785499,7 +785671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328871] = 12, + [329056] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785520,9 +785692,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11651), 1, - anon_sym_RPAREN, - STATE(7649), 9, + ACTIONS(11653), 1, + anon_sym_LPAREN, + STATE(7653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785532,30 +785704,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328916] = 12, - ACTIONS(3), 1, + [329101] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_EQ_GT, - STATE(7650), 9, + ACTIONS(11655), 1, + aux_sym_preproc_if_token2, + STATE(7654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785565,7 +785737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328961] = 12, + [329146] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785586,42 +785758,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11655), 1, - anon_sym_EQ_GT, - STATE(7651), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329006] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, ACTIONS(11657), 1, - aux_sym_preproc_if_token2, - STATE(7652), 9, + aux_sym_preproc_if_token3, + STATE(7655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785631,7 +785770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329051] = 12, + [329191] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785653,8 +785792,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11659), 1, - anon_sym_LPAREN, - STATE(7653), 9, + aux_sym_preproc_if_token3, + STATE(7656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785664,7 +785803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329096] = 12, + [329236] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785686,8 +785825,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11661), 1, - anon_sym_LPAREN, - STATE(7654), 9, + anon_sym_while, + STATE(7657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785697,7 +785836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329141] = 12, + [329281] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785719,8 +785858,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11663), 1, - anon_sym_LPAREN, - STATE(7655), 9, + anon_sym_SEMI, + STATE(7658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785730,7 +785869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329186] = 12, + [329326] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785752,8 +785891,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11665), 1, - anon_sym_LPAREN, - STATE(7656), 9, + anon_sym_SEMI, + STATE(7659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785763,7 +785902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329231] = 12, + [329371] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785784,9 +785923,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10823), 1, - anon_sym_RBRACE, - STATE(7657), 9, + ACTIONS(11667), 1, + aux_sym_preproc_if_token3, + STATE(7660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785796,7 +785935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329276] = 12, + [329416] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785817,42 +785956,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11667), 1, - anon_sym_LPAREN, - STATE(7658), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329321] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, ACTIONS(11669), 1, - aux_sym_preproc_if_token2, - STATE(7659), 9, + anon_sym_LT, + STATE(7661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785862,7 +785968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329366] = 12, + [329461] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785884,8 +785990,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11671), 1, - anon_sym_EQ_GT, - STATE(7660), 9, + anon_sym_STAR, + STATE(7662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785895,7 +786001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329411] = 12, + [329506] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785917,8 +786023,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11673), 1, - anon_sym_GT, - STATE(7661), 9, + aux_sym_preproc_if_token3, + STATE(7663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785928,7 +786034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329456] = 12, + [329551] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785950,73 +786056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11675), 1, - anon_sym_GT, - STATE(7662), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329501] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(11677), 1, anon_sym_SEMI, - STATE(7663), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329546] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11679), 1, - sym_preproc_arg, STATE(7664), 9, sym_preproc_region, sym_preproc_endregion, @@ -786027,7 +786067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329591] = 12, + [329596] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786048,8 +786088,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11681), 1, - anon_sym_LT, + ACTIONS(11677), 1, + sym__optional_semi, STATE(7665), 9, sym_preproc_region, sym_preproc_endregion, @@ -786060,7 +786100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329636] = 12, + [329641] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786081,8 +786121,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11683), 1, - anon_sym_LT, + ACTIONS(11679), 1, + aux_sym_preproc_if_token3, STATE(7666), 9, sym_preproc_region, sym_preproc_endregion, @@ -786093,7 +786133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329681] = 12, + [329686] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786114,8 +786154,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11685), 1, - aux_sym_preproc_if_token3, + ACTIONS(10466), 1, + anon_sym_RBRACE, STATE(7667), 9, sym_preproc_region, sym_preproc_endregion, @@ -786126,7 +786166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329726] = 12, + [329731] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786147,8 +786187,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11687), 1, - anon_sym_SEMI, + ACTIONS(11681), 1, + anon_sym_EQ_GT, STATE(7668), 9, sym_preproc_region, sym_preproc_endregion, @@ -786159,7 +786199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329771] = 12, + [329776] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786180,8 +786220,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11689), 1, - anon_sym_RBRACK, + ACTIONS(11683), 1, + aux_sym_preproc_if_token3, STATE(7669), 9, sym_preproc_region, sym_preproc_endregion, @@ -786192,7 +786232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329816] = 12, + [329821] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786213,8 +786253,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11691), 1, - anon_sym_GT, + ACTIONS(11685), 1, + anon_sym_LPAREN, STATE(7670), 9, sym_preproc_region, sym_preproc_endregion, @@ -786225,7 +786265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329861] = 12, + [329866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786246,8 +786286,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11693), 1, - anon_sym_GT, + ACTIONS(11687), 1, + anon_sym_LPAREN, STATE(7671), 9, sym_preproc_region, sym_preproc_endregion, @@ -786258,7 +786298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329906] = 12, + [329911] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786279,8 +786319,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11695), 1, - anon_sym_SQUOTE, + ACTIONS(11689), 1, + anon_sym_LPAREN, STATE(7672), 9, sym_preproc_region, sym_preproc_endregion, @@ -786291,7 +786331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329951] = 12, + [329956] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786312,8 +786352,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11697), 1, - sym_raw_string_end, + ACTIONS(11691), 1, + sym__optional_semi, STATE(7673), 9, sym_preproc_region, sym_preproc_endregion, @@ -786324,7 +786364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329996] = 12, + [330001] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786345,8 +786385,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11699), 1, - anon_sym_GT, + ACTIONS(11693), 1, + anon_sym_RPAREN, STATE(7674), 9, sym_preproc_region, sym_preproc_endregion, @@ -786357,7 +786397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330041] = 12, + [330046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786378,8 +786418,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11701), 1, - anon_sym_LPAREN, + ACTIONS(11695), 1, + anon_sym_SEMI, STATE(7675), 9, sym_preproc_region, sym_preproc_endregion, @@ -786390,7 +786430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330086] = 12, + [330091] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786411,7 +786451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11703), 1, + ACTIONS(11697), 1, anon_sym_LPAREN, STATE(7676), 9, sym_preproc_region, @@ -786423,7 +786463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330131] = 12, + [330136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786444,8 +786484,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11705), 1, - anon_sym_LPAREN, + ACTIONS(11699), 1, + anon_sym_DOT, STATE(7677), 9, sym_preproc_region, sym_preproc_endregion, @@ -786456,7 +786496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330176] = 12, + [330181] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786477,8 +786517,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11707), 1, - anon_sym_SEMI, + ACTIONS(11701), 1, + anon_sym_LT, STATE(7678), 9, sym_preproc_region, sym_preproc_endregion, @@ -786489,7 +786529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330221] = 12, + [330226] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786510,8 +786550,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11709), 1, - anon_sym_SEMI, + ACTIONS(11703), 1, + sym__optional_semi, STATE(7679), 9, sym_preproc_region, sym_preproc_endregion, @@ -786522,7 +786562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330266] = 12, + [330271] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786543,8 +786583,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11711), 1, - anon_sym_RPAREN, + ACTIONS(11705), 1, + anon_sym_STAR, STATE(7680), 9, sym_preproc_region, sym_preproc_endregion, @@ -786555,7 +786595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330311] = 12, + [330316] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786576,8 +786616,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11713), 1, - aux_sym_preproc_if_token3, + ACTIONS(11707), 1, + anon_sym_SQUOTE, STATE(7681), 9, sym_preproc_region, sym_preproc_endregion, @@ -786588,7 +786628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330356] = 12, + [330361] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786609,8 +786649,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11715), 1, - anon_sym_LT, + ACTIONS(11709), 1, + anon_sym_EQ_GT, STATE(7682), 9, sym_preproc_region, sym_preproc_endregion, @@ -786621,7 +786661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330401] = 12, + [330406] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786642,8 +786682,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11717), 1, - aux_sym_preproc_if_token3, + ACTIONS(7689), 1, + anon_sym_RBRACE, STATE(7683), 9, sym_preproc_region, sym_preproc_endregion, @@ -786654,7 +786694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330446] = 12, + [330451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786675,8 +786715,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_EQ_GT, + ACTIONS(11711), 1, + anon_sym_LPAREN, STATE(7684), 9, sym_preproc_region, sym_preproc_endregion, @@ -786687,29 +786727,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330491] = 12, - ACTIONS(9181), 1, + [330496] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11721), 1, - aux_sym_preproc_if_token2, + ACTIONS(11713), 1, + anon_sym_EQ_GT, STATE(7685), 9, sym_preproc_region, sym_preproc_endregion, @@ -786720,7 +786760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330536] = 12, + [330541] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786741,7 +786781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(11715), 1, anon_sym_RBRACE, STATE(7686), 9, sym_preproc_region, @@ -786753,7 +786793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330581] = 12, + [330586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786774,8 +786814,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11723), 1, - anon_sym_EQ_GT, + ACTIONS(11717), 1, + anon_sym_RBRACK, STATE(7687), 9, sym_preproc_region, sym_preproc_endregion, @@ -786786,7 +786826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330626] = 12, + [330631] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786807,8 +786847,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11725), 1, - sym_raw_string_end, + ACTIONS(11719), 1, + anon_sym_RPAREN, STATE(7688), 9, sym_preproc_region, sym_preproc_endregion, @@ -786819,7 +786859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330671] = 12, + [330676] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786840,8 +786880,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_GT, + ACTIONS(11721), 1, + anon_sym_SEMI, STATE(7689), 9, sym_preproc_region, sym_preproc_endregion, @@ -786852,7 +786892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330716] = 12, + [330721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786873,8 +786913,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11729), 1, - sym_raw_string_content, + ACTIONS(11723), 1, + sym_interpolation_start_quote, STATE(7690), 9, sym_preproc_region, sym_preproc_endregion, @@ -786885,7 +786925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330761] = 12, + [330766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786906,8 +786946,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_LPAREN, + ACTIONS(11725), 1, + anon_sym_LT, STATE(7691), 9, sym_preproc_region, sym_preproc_endregion, @@ -786918,7 +786958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330806] = 12, + [330811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786939,8 +786979,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11733), 1, - anon_sym_EQ_GT, + ACTIONS(11727), 1, + anon_sym_COLON, STATE(7692), 9, sym_preproc_region, sym_preproc_endregion, @@ -786951,7 +786991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330851] = 12, + [330856] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786972,8 +787012,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10543), 1, - anon_sym_RBRACE, + ACTIONS(11729), 1, + anon_sym_SQUOTE, STATE(7693), 9, sym_preproc_region, sym_preproc_endregion, @@ -786984,7 +787024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330896] = 12, + [330901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787005,7 +787045,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11735), 1, + ACTIONS(11731), 1, anon_sym_LT, STATE(7694), 9, sym_preproc_region, @@ -787017,7 +787057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330941] = 12, + [330946] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787038,8 +787078,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11737), 1, - aux_sym_preproc_if_token3, + ACTIONS(11733), 1, + sym_integer_literal, STATE(7695), 9, sym_preproc_region, sym_preproc_endregion, @@ -787050,7 +787090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330986] = 12, + [330991] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787071,8 +787111,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11739), 1, - anon_sym_SEMI, + ACTIONS(11735), 1, + ts_builtin_sym_end, STATE(7696), 9, sym_preproc_region, sym_preproc_endregion, @@ -787083,7 +787123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331031] = 12, + [331036] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787104,8 +787144,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11741), 1, - anon_sym_RPAREN, + ACTIONS(11737), 1, + anon_sym_SQUOTE, STATE(7697), 9, sym_preproc_region, sym_preproc_endregion, @@ -787116,7 +787156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331076] = 12, + [331081] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787137,8 +787177,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11743), 1, - anon_sym_RPAREN, + ACTIONS(11739), 1, + anon_sym_SEMI, STATE(7698), 9, sym_preproc_region, sym_preproc_endregion, @@ -787149,7 +787189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331121] = 12, + [331126] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787170,8 +787210,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11745), 1, - anon_sym_SEMI, + ACTIONS(4973), 1, + aux_sym_preproc_if_token3, STATE(7699), 9, sym_preproc_region, sym_preproc_endregion, @@ -787182,7 +787222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331166] = 12, + [331171] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787203,8 +787243,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11747), 1, - anon_sym_RPAREN, + ACTIONS(11741), 1, + anon_sym_EQ_GT, STATE(7700), 9, sym_preproc_region, sym_preproc_endregion, @@ -787215,7 +787255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331211] = 12, + [331216] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787236,8 +787276,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_RPAREN, + ACTIONS(11743), 1, + anon_sym_SEMI, STATE(7701), 9, sym_preproc_region, sym_preproc_endregion, @@ -787248,7 +787288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331256] = 12, + [331261] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787269,8 +787309,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11751), 1, - anon_sym_RPAREN, + ACTIONS(11745), 1, + anon_sym_EQ_GT, STATE(7702), 9, sym_preproc_region, sym_preproc_endregion, @@ -787281,7 +787321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331301] = 12, + [331306] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787302,8 +787342,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11753), 1, - aux_sym_preproc_if_token3, + ACTIONS(11747), 1, + anon_sym_LT, STATE(7703), 9, sym_preproc_region, sym_preproc_endregion, @@ -787314,7 +787354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331346] = 12, + [331351] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787335,8 +787375,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_SEMI, + ACTIONS(11749), 1, + sym__optional_semi, STATE(7704), 9, sym_preproc_region, sym_preproc_endregion, @@ -787347,7 +787387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331391] = 12, + [331396] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787368,8 +787408,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11757), 1, - aux_sym_preproc_if_token3, + ACTIONS(9709), 1, + anon_sym_EQ, STATE(7705), 9, sym_preproc_region, sym_preproc_endregion, @@ -787380,7 +787420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331436] = 12, + [331441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787401,8 +787441,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11759), 1, - anon_sym_LT, + ACTIONS(11751), 1, + anon_sym_EQ_GT, STATE(7706), 9, sym_preproc_region, sym_preproc_endregion, @@ -787413,7 +787453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331481] = 12, + [331486] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787434,8 +787474,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10345), 1, - anon_sym_RBRACE, + ACTIONS(11753), 1, + sym__optional_semi, STATE(7707), 9, sym_preproc_region, sym_preproc_endregion, @@ -787446,7 +787486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331526] = 12, + [331531] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787467,8 +787507,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11761), 1, - aux_sym_preproc_if_token3, + ACTIONS(11755), 1, + anon_sym_SEMI, STATE(7708), 9, sym_preproc_region, sym_preproc_endregion, @@ -787479,7 +787519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331571] = 12, + [331576] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787500,8 +787540,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11763), 1, - sym_interpolation_start_quote, + ACTIONS(11757), 1, + anon_sym_SEMI, STATE(7709), 9, sym_preproc_region, sym_preproc_endregion, @@ -787512,7 +787552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331616] = 12, + [331621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787533,8 +787573,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11765), 1, - anon_sym_SEMI, + ACTIONS(3691), 1, + anon_sym_EQ_GT, STATE(7710), 9, sym_preproc_region, sym_preproc_endregion, @@ -787545,7 +787585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331661] = 12, + [331666] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787566,8 +787606,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10594), 1, - anon_sym_RBRACE, + ACTIONS(11759), 1, + anon_sym_SQUOTE, STATE(7711), 9, sym_preproc_region, sym_preproc_endregion, @@ -787578,7 +787618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331706] = 12, + [331711] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787599,8 +787639,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11767), 1, - anon_sym_SEMI, + ACTIONS(11761), 1, + anon_sym_RPAREN, STATE(7712), 9, sym_preproc_region, sym_preproc_endregion, @@ -787611,7 +787651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331751] = 12, + [331756] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787632,8 +787672,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11769), 1, - aux_sym_preproc_if_token3, + ACTIONS(11763), 1, + anon_sym_SEMI, STATE(7713), 9, sym_preproc_region, sym_preproc_endregion, @@ -787644,7 +787684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331796] = 12, + [331801] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787665,8 +787705,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11771), 1, - anon_sym_SEMI, + ACTIONS(11765), 1, + aux_sym_preproc_if_token3, STATE(7714), 9, sym_preproc_region, sym_preproc_endregion, @@ -787677,7 +787717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331841] = 12, + [331846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787698,8 +787738,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11773), 1, - sym_integer_literal, + ACTIONS(11767), 1, + anon_sym_GT, STATE(7715), 9, sym_preproc_region, sym_preproc_endregion, @@ -787710,7 +787750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331886] = 12, + [331891] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787731,8 +787771,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10274), 1, - anon_sym_LPAREN, + ACTIONS(7249), 1, + anon_sym_RBRACE, STATE(7716), 9, sym_preproc_region, sym_preproc_endregion, @@ -787743,7 +787783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331931] = 12, + [331936] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787764,8 +787804,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11775), 1, - anon_sym_SQUOTE, + ACTIONS(11769), 1, + anon_sym_SEMI, STATE(7717), 9, sym_preproc_region, sym_preproc_endregion, @@ -787776,7 +787816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331976] = 12, + [331981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787797,8 +787837,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11777), 1, - anon_sym_COLON, + ACTIONS(11771), 1, + anon_sym_EQ_GT, STATE(7718), 9, sym_preproc_region, sym_preproc_endregion, @@ -787809,7 +787849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332021] = 12, + [332026] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787830,8 +787870,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11779), 1, - anon_sym_EQ_GT, + ACTIONS(11773), 1, + anon_sym_SEMI, STATE(7719), 9, sym_preproc_region, sym_preproc_endregion, @@ -787842,7 +787882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332066] = 12, + [332071] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787863,8 +787903,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11781), 1, - anon_sym_SEMI, + ACTIONS(11775), 1, + anon_sym_RBRACK, STATE(7720), 9, sym_preproc_region, sym_preproc_endregion, @@ -787875,7 +787915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332111] = 12, + [332116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787896,8 +787936,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11783), 1, - anon_sym_LPAREN, + ACTIONS(7855), 1, + anon_sym_RBRACE, STATE(7721), 9, sym_preproc_region, sym_preproc_endregion, @@ -787908,7 +787948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332156] = 12, + [332161] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787929,8 +787969,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11785), 1, - aux_sym_preproc_if_token3, + ACTIONS(11777), 1, + anon_sym_DASH, STATE(7722), 9, sym_preproc_region, sym_preproc_endregion, @@ -787941,7 +787981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332201] = 12, + [332206] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787962,8 +788002,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11787), 1, - sym_interpolation_start_quote, + ACTIONS(11779), 1, + anon_sym_SEMI, STATE(7723), 9, sym_preproc_region, sym_preproc_endregion, @@ -787974,7 +788014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332246] = 12, + [332251] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787995,8 +788035,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11789), 1, - sym_interpolation_start_quote, + ACTIONS(10499), 1, + anon_sym_RBRACE, STATE(7724), 9, sym_preproc_region, sym_preproc_endregion, @@ -788007,7 +788047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332291] = 12, + [332296] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788028,8 +788068,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11791), 1, - anon_sym_EQ_GT, + ACTIONS(11781), 1, + aux_sym_preproc_if_token3, STATE(7725), 9, sym_preproc_region, sym_preproc_endregion, @@ -788040,7 +788080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332336] = 12, + [332341] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788061,8 +788101,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11793), 1, - anon_sym_COLON, + ACTIONS(11783), 1, + anon_sym_EQ_GT, STATE(7726), 9, sym_preproc_region, sym_preproc_endregion, @@ -788073,7 +788113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332381] = 12, + [332386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788094,8 +788134,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11795), 1, - anon_sym_GT, + ACTIONS(11785), 1, + anon_sym_EQ_GT, STATE(7727), 9, sym_preproc_region, sym_preproc_endregion, @@ -788106,7 +788146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332426] = 12, + [332431] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788127,8 +788167,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11797), 1, - anon_sym_RPAREN, + ACTIONS(11787), 1, + anon_sym_STAR, STATE(7728), 9, sym_preproc_region, sym_preproc_endregion, @@ -788139,7 +788179,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332471] = 12, + [332476] = 12, + ACTIONS(5043), 1, + aux_sym_preproc_if_token2, + ACTIONS(9163), 1, + aux_sym_preproc_region_token1, + ACTIONS(9165), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9167), 1, + aux_sym_preproc_line_token1, + ACTIONS(9169), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9171), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9173), 1, + aux_sym_preproc_error_token1, + ACTIONS(9175), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9177), 1, + aux_sym_preproc_define_token1, + ACTIONS(9179), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9181), 1, + sym_comment, + STATE(7729), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [332521] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788160,9 +788233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10539), 1, - anon_sym_RBRACE, - STATE(7729), 9, + ACTIONS(11789), 1, + anon_sym_COMMA, + STATE(7730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788172,7 +788245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332516] = 12, + [332566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788193,9 +788266,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11799), 1, - anon_sym_EQ_GT, - STATE(7730), 9, + ACTIONS(11791), 1, + anon_sym_SEMI, + STATE(7731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788205,7 +788278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332561] = 12, + [332611] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788226,9 +788299,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11801), 1, - sym_interpolation_start_quote, - STATE(7731), 9, + ACTIONS(11793), 1, + anon_sym_LPAREN, + STATE(7732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788238,7 +788311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332606] = 12, + [332656] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788259,9 +788332,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11803), 1, - anon_sym_COMMA, - STATE(7732), 9, + ACTIONS(11795), 1, + anon_sym_LPAREN, + STATE(7733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788271,7 +788344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332651] = 12, + [332701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788292,41 +788365,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11805), 1, - sym_raw_string_content, - STATE(7733), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [332696] = 12, - ACTIONS(9181), 1, - aux_sym_preproc_region_token1, - ACTIONS(9183), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token1, - ACTIONS(9187), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, - aux_sym_preproc_error_token1, - ACTIONS(9193), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, - aux_sym_preproc_define_token1, - ACTIONS(9197), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, - sym_comment, - ACTIONS(11807), 1, - aux_sym_preproc_if_token2, + ACTIONS(11797), 1, + sym_interpolation_close_brace, STATE(7734), 9, sym_preproc_region, sym_preproc_endregion, @@ -788337,7 +788377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332741] = 12, + [332746] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788358,8 +788398,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_SEMI, + ACTIONS(11799), 1, + anon_sym_LPAREN, STATE(7735), 9, sym_preproc_region, sym_preproc_endregion, @@ -788370,7 +788410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332786] = 12, + [332791] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788391,8 +788431,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11811), 1, - anon_sym_GT, + ACTIONS(11801), 1, + anon_sym_SEMI, STATE(7736), 9, sym_preproc_region, sym_preproc_endregion, @@ -788403,7 +788443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332831] = 12, + [332836] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788424,8 +788464,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11813), 1, - anon_sym_LPAREN, + ACTIONS(11803), 1, + aux_sym_preproc_if_token3, STATE(7737), 9, sym_preproc_region, sym_preproc_endregion, @@ -788436,7 +788476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332876] = 12, + [332881] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788457,8 +788497,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11815), 1, - anon_sym_SEMI, + ACTIONS(11805), 1, + anon_sym_LPAREN, STATE(7738), 9, sym_preproc_region, sym_preproc_endregion, @@ -788469,7 +788509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332921] = 12, + [332926] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788490,8 +788530,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10894), 1, - anon_sym_RBRACE, + ACTIONS(11807), 1, + anon_sym_EQ_GT, STATE(7739), 9, sym_preproc_region, sym_preproc_endregion, @@ -788502,7 +788542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332966] = 12, + [332971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788523,8 +788563,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_EQ_GT, + ACTIONS(11809), 1, + sym_integer_literal, STATE(7740), 9, sym_preproc_region, sym_preproc_endregion, @@ -788535,7 +788575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333011] = 12, + [333016] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788556,8 +788596,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11819), 1, - anon_sym_GT, + ACTIONS(11811), 1, + anon_sym_EQ_GT, STATE(7741), 9, sym_preproc_region, sym_preproc_endregion, @@ -788568,7 +788608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333056] = 12, + [333061] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788589,8 +788629,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9674), 1, - anon_sym_COMMA, + ACTIONS(11813), 1, + aux_sym_preproc_if_token3, STATE(7742), 9, sym_preproc_region, sym_preproc_endregion, @@ -788601,7 +788641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333101] = 12, + [333106] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788622,8 +788662,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7859), 1, - anon_sym_RBRACE, + ACTIONS(11815), 1, + anon_sym_EQ, STATE(7743), 9, sym_preproc_region, sym_preproc_endregion, @@ -788634,29 +788674,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333146] = 12, - ACTIONS(9181), 1, + [333151] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10896), 1, - aux_sym_preproc_if_token2, + ACTIONS(11817), 1, + sym_raw_string_end, STATE(7744), 9, sym_preproc_region, sym_preproc_endregion, @@ -788667,29 +788707,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333191] = 12, - ACTIONS(3), 1, + [333196] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, - ACTIONS(11821), 1, - anon_sym_STAR, + ACTIONS(11819), 1, + sym_preproc_arg, STATE(7745), 9, sym_preproc_region, sym_preproc_endregion, @@ -788700,7 +788740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333236] = 12, + [333241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788721,8 +788761,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10466), 1, - anon_sym_RBRACE, + ACTIONS(11821), 1, + anon_sym_SEMI, STATE(7746), 9, sym_preproc_region, sym_preproc_endregion, @@ -788733,7 +788773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333281] = 12, + [333286] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788755,7 +788795,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11823), 1, - anon_sym_SEMI, + anon_sym_EQ, STATE(7747), 9, sym_preproc_region, sym_preproc_endregion, @@ -788766,7 +788806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333326] = 12, + [333331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788788,7 +788828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11825), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, STATE(7748), 9, sym_preproc_region, sym_preproc_endregion, @@ -788799,7 +788839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333371] = 12, + [333376] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788821,7 +788861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11827), 1, - anon_sym_STAR, + anon_sym_SQUOTE, STATE(7749), 9, sym_preproc_region, sym_preproc_endregion, @@ -788832,7 +788872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333416] = 12, + [333421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788865,7 +788905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333461] = 12, + [333466] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788887,7 +788927,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11831), 1, - anon_sym_SEMI, + sym__optional_semi, STATE(7751), 9, sym_preproc_region, sym_preproc_endregion, @@ -788898,7 +788938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333506] = 12, + [333511] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788920,7 +788960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11833), 1, - aux_sym_preproc_if_token3, + anon_sym_STAR, STATE(7752), 9, sym_preproc_region, sym_preproc_endregion, @@ -788931,7 +788971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333551] = 12, + [333556] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788953,7 +788993,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11835), 1, - anon_sym_EQ_GT, + sym_interpolation_close_brace, STATE(7753), 9, sym_preproc_region, sym_preproc_endregion, @@ -788964,29 +789004,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333596] = 12, - ACTIONS(9181), 1, + [333601] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9183), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9185), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9187), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9189), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9191), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9193), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9195), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9197), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9199), 1, + ACTIONS(21), 1, sym_comment, ACTIONS(11837), 1, - aux_sym_interpolation_format_clause_token1, + sym__optional_semi, STATE(7754), 9, sym_preproc_region, sym_preproc_endregion, @@ -788997,7 +789037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333641] = 12, + [333646] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789030,7 +789070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333686] = 12, + [333691] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789052,7 +789092,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11841), 1, - anon_sym_EQ_GT, + anon_sym_LPAREN, STATE(7756), 9, sym_preproc_region, sym_preproc_endregion, @@ -789063,7 +789103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333731] = 12, + [333736] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789085,7 +789125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11843), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, STATE(7757), 9, sym_preproc_region, sym_preproc_endregion, @@ -789096,7 +789136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333776] = 12, + [333781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789117,8 +789157,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10911), 1, - sym_interpolation_close_brace, + ACTIONS(11845), 1, + aux_sym_preproc_if_token3, STATE(7758), 9, sym_preproc_region, sym_preproc_endregion, @@ -789129,7 +789169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333821] = 12, + [333826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789150,8 +789190,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11845), 1, - sym_integer_literal, + ACTIONS(11847), 1, + sym__optional_semi, STATE(7759), 9, sym_preproc_region, sym_preproc_endregion, @@ -789162,7 +789202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333866] = 12, + [333871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789183,8 +789223,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11847), 1, - anon_sym_SQUOTE, + ACTIONS(11849), 1, + anon_sym_SEMI, STATE(7760), 9, sym_preproc_region, sym_preproc_endregion, @@ -789195,7 +789235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333911] = 12, + [333916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789216,8 +789256,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11849), 1, - anon_sym_SEMI, + ACTIONS(11851), 1, + anon_sym_EQ_GT, STATE(7761), 9, sym_preproc_region, sym_preproc_endregion, @@ -789228,7 +789268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333956] = 12, + [333961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789249,8 +789289,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11851), 1, - sym__optional_semi, + ACTIONS(11853), 1, + aux_sym_preproc_if_token3, STATE(7762), 9, sym_preproc_region, sym_preproc_endregion, @@ -789261,7 +789301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334001] = 12, + [334006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789282,7 +789322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11853), 1, + ACTIONS(11855), 1, anon_sym_LPAREN, STATE(7763), 9, sym_preproc_region, @@ -789294,7 +789334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334046] = 12, + [334051] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789315,7 +789355,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11855), 1, + ACTIONS(11857), 1, anon_sym_LPAREN, STATE(7764), 9, sym_preproc_region, @@ -789327,7 +789367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334091] = 12, + [334096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789348,7 +789388,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11857), 1, + ACTIONS(11859), 1, anon_sym_LPAREN, STATE(7765), 9, sym_preproc_region, @@ -789360,7 +789400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334136] = 12, + [334141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789381,8 +789421,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11859), 1, - sym__optional_semi, + ACTIONS(10993), 1, + anon_sym_in, STATE(7766), 9, sym_preproc_region, sym_preproc_endregion, @@ -789393,7 +789433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334181] = 12, + [334186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789415,7 +789455,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11861), 1, - anon_sym_LPAREN, + aux_sym_preproc_if_token3, STATE(7767), 9, sym_preproc_region, sym_preproc_endregion, @@ -789426,7 +789466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334226] = 12, + [334231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789459,7 +789499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334271] = 12, + [334276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789481,7 +789521,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11865), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, STATE(7769), 9, sym_preproc_region, sym_preproc_endregion, @@ -789492,7 +789532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334316] = 12, + [334321] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789514,7 +789554,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11867), 1, - anon_sym_LPAREN, + aux_sym_preproc_if_token3, STATE(7770), 9, sym_preproc_region, sym_preproc_endregion, @@ -789525,7 +789565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334361] = 12, + [334366] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789547,7 +789587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11869), 1, - anon_sym_LPAREN, + anon_sym_SEMI, STATE(7771), 9, sym_preproc_region, sym_preproc_endregion, @@ -789558,7 +789598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334406] = 12, + [334411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789591,7 +789631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334451] = 12, + [334456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789624,7 +789664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334496] = 12, + [334501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789657,7 +789697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334541] = 12, + [334546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789679,7 +789719,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11877), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, STATE(7775), 9, sym_preproc_region, sym_preproc_endregion, @@ -789690,7 +789730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334586] = 12, + [334591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789723,7 +789763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334631] = 12, + [334636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789745,7 +789785,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11881), 1, - anon_sym_STAR, + anon_sym_EQ_GT, STATE(7777), 9, sym_preproc_region, sym_preproc_endregion, @@ -789756,7 +789796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334676] = 12, + [334681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789778,7 +789818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11883), 1, - anon_sym_EQ_GT, + anon_sym_LPAREN, STATE(7778), 9, sym_preproc_region, sym_preproc_endregion, @@ -789789,7 +789829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334721] = 12, + [334726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789811,7 +789851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11885), 1, - anon_sym_GT, + anon_sym_LPAREN, STATE(7779), 9, sym_preproc_region, sym_preproc_endregion, @@ -789822,7 +789862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334766] = 12, + [334771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789855,7 +789895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334811] = 12, + [334816] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789877,7 +789917,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11889), 1, - anon_sym_COLON, + anon_sym_EQ_GT, STATE(7781), 9, sym_preproc_region, sym_preproc_endregion, @@ -789888,7 +789928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334856] = 12, + [334861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789921,7 +789961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334901] = 12, + [334906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789942,7 +789982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10073), 1, + ACTIONS(10069), 1, anon_sym_STAR, STATE(7783), 9, sym_preproc_region, @@ -789954,7 +789994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334946] = 12, + [334951] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789976,7 +790016,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11893), 1, - anon_sym_EQ_GT, + sym_interpolation_start_quote, STATE(7784), 9, sym_preproc_region, sym_preproc_endregion, @@ -789987,7 +790027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334991] = 12, + [334996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790020,7 +790060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335036] = 12, + [335041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790053,7 +790093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335081] = 12, + [335086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790075,7 +790115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11899), 1, - anon_sym_LPAREN, + anon_sym_EQ_GT, STATE(7787), 9, sym_preproc_region, sym_preproc_endregion, @@ -790086,7 +790126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335126] = 12, + [335131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790108,7 +790148,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11901), 1, - anon_sym_COMMA, + anon_sym_COLON, STATE(7788), 9, sym_preproc_region, sym_preproc_endregion, @@ -790119,29 +790159,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335171] = 12, - ACTIONS(3), 1, + [335176] = 12, + ACTIONS(9163), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9165), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9167), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9169), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9171), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9173), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9175), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9177), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9179), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9181), 1, sym_comment, ACTIONS(11903), 1, - anon_sym_LT, + aux_sym_preproc_if_token2, STATE(7789), 9, sym_preproc_region, sym_preproc_endregion, @@ -790152,7 +790192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335216] = 12, + [335221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790185,7 +790225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335261] = 12, + [335266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790218,7 +790258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335306] = 12, + [335311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790251,7 +790291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335351] = 12, + [335356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790284,7 +790324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335396] = 12, + [335401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790317,7 +790357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335441] = 12, + [335446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790350,7 +790390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335486] = 12, + [335491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790372,7 +790412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11917), 1, - aux_sym_preproc_if_token3, + anon_sym_LPAREN, STATE(7796), 9, sym_preproc_region, sym_preproc_endregion, @@ -790383,7 +790423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335531] = 12, + [335536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790405,7 +790445,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11919), 1, - aux_sym_preproc_if_token3, + anon_sym_SEMI, STATE(7797), 9, sym_preproc_region, sym_preproc_endregion, @@ -790416,7 +790456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335576] = 12, + [335581] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790438,7 +790478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11921), 1, - aux_sym_preproc_if_token3, + anon_sym_EQ_GT, STATE(7798), 9, sym_preproc_region, sym_preproc_endregion, @@ -790449,7 +790489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335621] = 12, + [335626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790471,7 +790511,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 1, sym_comment, ACTIONS(11923), 1, - aux_sym_preproc_if_token3, + anon_sym_SEMI, STATE(7799), 9, sym_preproc_region, sym_preproc_endregion, @@ -790482,55 +790522,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335666] = 1, + [335671] = 1, ACTIONS(11925), 1, ts_builtin_sym_end, - [335670] = 1, + [335675] = 1, ACTIONS(11927), 1, ts_builtin_sym_end, - [335674] = 1, + [335679] = 1, ACTIONS(11929), 1, ts_builtin_sym_end, - [335678] = 1, + [335683] = 1, ACTIONS(11931), 1, ts_builtin_sym_end, - [335682] = 1, + [335687] = 1, ACTIONS(11933), 1, ts_builtin_sym_end, - [335686] = 1, + [335691] = 1, ACTIONS(11935), 1, ts_builtin_sym_end, - [335690] = 1, + [335695] = 1, ACTIONS(11937), 1, ts_builtin_sym_end, - [335694] = 1, + [335699] = 1, ACTIONS(11939), 1, ts_builtin_sym_end, - [335698] = 1, + [335703] = 1, ACTIONS(11941), 1, ts_builtin_sym_end, - [335702] = 1, + [335707] = 1, ACTIONS(11943), 1, ts_builtin_sym_end, - [335706] = 1, + [335711] = 1, ACTIONS(11945), 1, ts_builtin_sym_end, - [335710] = 1, + [335715] = 1, ACTIONS(11947), 1, ts_builtin_sym_end, - [335714] = 1, + [335719] = 1, ACTIONS(11949), 1, ts_builtin_sym_end, - [335718] = 1, + [335723] = 1, ACTIONS(11951), 1, ts_builtin_sym_end, - [335722] = 1, + [335727] = 1, ACTIONS(11953), 1, ts_builtin_sym_end, - [335726] = 1, + [335731] = 1, ACTIONS(11955), 1, ts_builtin_sym_end, - [335730] = 1, + [335735] = 1, ACTIONS(11957), 1, ts_builtin_sym_end, }; @@ -790540,9611 +790580,9611 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3942)] = 127, [SMALL_STATE(3943)] = 254, [SMALL_STATE(3944)] = 381, - [SMALL_STATE(3945)] = 480, - [SMALL_STATE(3946)] = 607, - [SMALL_STATE(3947)] = 734, - [SMALL_STATE(3948)] = 861, - [SMALL_STATE(3949)] = 988, - [SMALL_STATE(3950)] = 1115, - [SMALL_STATE(3951)] = 1242, - [SMALL_STATE(3952)] = 1369, + [SMALL_STATE(3945)] = 476, + [SMALL_STATE(3946)] = 603, + [SMALL_STATE(3947)] = 730, + [SMALL_STATE(3948)] = 841, + [SMALL_STATE(3949)] = 968, + [SMALL_STATE(3950)] = 1095, + [SMALL_STATE(3951)] = 1222, + [SMALL_STATE(3952)] = 1349, [SMALL_STATE(3953)] = 1496, - [SMALL_STATE(3954)] = 1623, - [SMALL_STATE(3955)] = 1750, - [SMALL_STATE(3956)] = 1877, - [SMALL_STATE(3957)] = 1970, - [SMALL_STATE(3958)] = 2097, - [SMALL_STATE(3959)] = 2192, - [SMALL_STATE(3960)] = 2319, - [SMALL_STATE(3961)] = 2466, - [SMALL_STATE(3962)] = 2593, - [SMALL_STATE(3963)] = 2720, - [SMALL_STATE(3964)] = 2847, - [SMALL_STATE(3965)] = 2994, - [SMALL_STATE(3966)] = 3141, - [SMALL_STATE(3967)] = 3288, - [SMALL_STATE(3968)] = 3415, - [SMALL_STATE(3969)] = 3542, - [SMALL_STATE(3970)] = 3669, - [SMALL_STATE(3971)] = 3796, - [SMALL_STATE(3972)] = 3923, - [SMALL_STATE(3973)] = 4050, - [SMALL_STATE(3974)] = 4161, - [SMALL_STATE(3975)] = 4288, - [SMALL_STATE(3976)] = 4415, - [SMALL_STATE(3977)] = 4510, - [SMALL_STATE(3978)] = 4637, - [SMALL_STATE(3979)] = 4764, - [SMALL_STATE(3980)] = 4909, - [SMALL_STATE(3981)] = 5036, - [SMALL_STATE(3982)] = 5163, - [SMALL_STATE(3983)] = 5308, - [SMALL_STATE(3984)] = 5435, - [SMALL_STATE(3985)] = 5562, - [SMALL_STATE(3986)] = 5689, - [SMALL_STATE(3987)] = 5816, - [SMALL_STATE(3988)] = 5943, - [SMALL_STATE(3989)] = 6070, - [SMALL_STATE(3990)] = 6197, - [SMALL_STATE(3991)] = 6324, - [SMALL_STATE(3992)] = 6451, - [SMALL_STATE(3993)] = 6578, - [SMALL_STATE(3994)] = 6725, - [SMALL_STATE(3995)] = 6852, - [SMALL_STATE(3996)] = 6979, - [SMALL_STATE(3997)] = 7126, - [SMALL_STATE(3998)] = 7273, - [SMALL_STATE(3999)] = 7420, - [SMALL_STATE(4000)] = 7547, - [SMALL_STATE(4001)] = 7674, - [SMALL_STATE(4002)] = 7809, - [SMALL_STATE(4003)] = 7946, - [SMALL_STATE(4004)] = 8039, - [SMALL_STATE(4005)] = 8172, - [SMALL_STATE(4006)] = 8303, - [SMALL_STATE(4007)] = 8430, - [SMALL_STATE(4008)] = 8569, - [SMALL_STATE(4009)] = 8710, - [SMALL_STATE(4010)] = 8837, - [SMALL_STATE(4011)] = 8982, - [SMALL_STATE(4012)] = 9109, - [SMALL_STATE(4013)] = 9236, - [SMALL_STATE(4014)] = 9363, - [SMALL_STATE(4015)] = 9490, - [SMALL_STATE(4016)] = 9617, - [SMALL_STATE(4017)] = 9744, - [SMALL_STATE(4018)] = 9871, - [SMALL_STATE(4019)] = 10018, - [SMALL_STATE(4020)] = 10145, - [SMALL_STATE(4021)] = 10240, - [SMALL_STATE(4022)] = 10367, - [SMALL_STATE(4023)] = 10494, - [SMALL_STATE(4024)] = 10589, - [SMALL_STATE(4025)] = 10716, - [SMALL_STATE(4026)] = 10843, - [SMALL_STATE(4027)] = 10970, - [SMALL_STATE(4028)] = 11065, - [SMALL_STATE(4029)] = 11210, - [SMALL_STATE(4030)] = 11337, - [SMALL_STATE(4031)] = 11464, - [SMALL_STATE(4032)] = 11563, - [SMALL_STATE(4033)] = 11690, - [SMALL_STATE(4034)] = 11813, - [SMALL_STATE(4035)] = 11922, - [SMALL_STATE(4036)] = 12039, - [SMALL_STATE(4037)] = 12152, - [SMALL_STATE(4038)] = 12287, - [SMALL_STATE(4039)] = 12414, - [SMALL_STATE(4040)] = 12551, - [SMALL_STATE(4041)] = 12684, - [SMALL_STATE(4042)] = 12811, - [SMALL_STATE(4043)] = 12930, - [SMALL_STATE(4044)] = 13061, - [SMALL_STATE(4045)] = 13200, - [SMALL_STATE(4046)] = 13341, - [SMALL_STATE(4047)] = 13486, - [SMALL_STATE(4048)] = 13613, - [SMALL_STATE(4049)] = 13740, - [SMALL_STATE(4050)] = 13849, - [SMALL_STATE(4051)] = 13976, - [SMALL_STATE(4052)] = 14103, - [SMALL_STATE(4053)] = 14230, - [SMALL_STATE(4054)] = 14357, - [SMALL_STATE(4055)] = 14484, - [SMALL_STATE(4056)] = 14607, - [SMALL_STATE(4057)] = 14724, - [SMALL_STATE(4058)] = 14837, - [SMALL_STATE(4059)] = 14956, - [SMALL_STATE(4060)] = 15083, - [SMALL_STATE(4061)] = 15210, - [SMALL_STATE(4062)] = 15337, - [SMALL_STATE(4063)] = 15446, - [SMALL_STATE(4064)] = 15573, - [SMALL_STATE(4065)] = 15668, - [SMALL_STATE(4066)] = 15795, - [SMALL_STATE(4067)] = 15922, - [SMALL_STATE(4068)] = 16049, - [SMALL_STATE(4069)] = 16176, - [SMALL_STATE(4070)] = 16285, - [SMALL_STATE(4071)] = 16380, - [SMALL_STATE(4072)] = 16507, - [SMALL_STATE(4073)] = 16634, - [SMALL_STATE(4074)] = 16761, - [SMALL_STATE(4075)] = 16888, - [SMALL_STATE(4076)] = 17015, - [SMALL_STATE(4077)] = 17142, - [SMALL_STATE(4078)] = 17269, - [SMALL_STATE(4079)] = 17396, - [SMALL_STATE(4080)] = 17489, - [SMALL_STATE(4081)] = 17584, - [SMALL_STATE(4082)] = 17711, - [SMALL_STATE(4083)] = 17838, - [SMALL_STATE(4084)] = 17965, - [SMALL_STATE(4085)] = 18060, - [SMALL_STATE(4086)] = 18187, - [SMALL_STATE(4087)] = 18314, - [SMALL_STATE(4088)] = 18441, - [SMALL_STATE(4089)] = 18536, - [SMALL_STATE(4090)] = 18631, - [SMALL_STATE(4091)] = 18758, - [SMALL_STATE(4092)] = 18885, - [SMALL_STATE(4093)] = 19012, - [SMALL_STATE(4094)] = 19157, - [SMALL_STATE(4095)] = 19284, - [SMALL_STATE(4096)] = 19411, + [SMALL_STATE(3954)] = 1643, + [SMALL_STATE(3955)] = 1770, + [SMALL_STATE(3956)] = 1917, + [SMALL_STATE(3957)] = 2064, + [SMALL_STATE(3958)] = 2191, + [SMALL_STATE(3959)] = 2318, + [SMALL_STATE(3960)] = 2453, + [SMALL_STATE(3961)] = 2600, + [SMALL_STATE(3962)] = 2727, + [SMALL_STATE(3963)] = 2874, + [SMALL_STATE(3964)] = 3021, + [SMALL_STATE(3965)] = 3158, + [SMALL_STATE(3966)] = 3285, + [SMALL_STATE(3967)] = 3418, + [SMALL_STATE(3968)] = 3549, + [SMALL_STATE(3969)] = 3676, + [SMALL_STATE(3970)] = 3815, + [SMALL_STATE(3971)] = 3956, + [SMALL_STATE(3972)] = 4083, + [SMALL_STATE(3973)] = 4228, + [SMALL_STATE(3974)] = 4355, + [SMALL_STATE(3975)] = 4482, + [SMALL_STATE(3976)] = 4609, + [SMALL_STATE(3977)] = 4704, + [SMALL_STATE(3978)] = 4831, + [SMALL_STATE(3979)] = 4976, + [SMALL_STATE(3980)] = 5121, + [SMALL_STATE(3981)] = 5248, + [SMALL_STATE(3982)] = 5375, + [SMALL_STATE(3983)] = 5502, + [SMALL_STATE(3984)] = 5629, + [SMALL_STATE(3985)] = 5724, + [SMALL_STATE(3986)] = 5851, + [SMALL_STATE(3987)] = 5946, + [SMALL_STATE(3988)] = 6073, + [SMALL_STATE(3989)] = 6200, + [SMALL_STATE(3990)] = 6327, + [SMALL_STATE(3991)] = 6436, + [SMALL_STATE(3992)] = 6581, + [SMALL_STATE(3993)] = 6708, + [SMALL_STATE(3994)] = 6835, + [SMALL_STATE(3995)] = 6962, + [SMALL_STATE(3996)] = 7089, + [SMALL_STATE(3997)] = 7184, + [SMALL_STATE(3998)] = 7311, + [SMALL_STATE(3999)] = 7438, + [SMALL_STATE(4000)] = 7565, + [SMALL_STATE(4001)] = 7710, + [SMALL_STATE(4002)] = 7837, + [SMALL_STATE(4003)] = 7964, + [SMALL_STATE(4004)] = 8091, + [SMALL_STATE(4005)] = 8218, + [SMALL_STATE(4006)] = 8313, + [SMALL_STATE(4007)] = 8440, + [SMALL_STATE(4008)] = 8567, + [SMALL_STATE(4009)] = 8694, + [SMALL_STATE(4010)] = 8821, + [SMALL_STATE(4011)] = 8948, + [SMALL_STATE(4012)] = 9075, + [SMALL_STATE(4013)] = 9202, + [SMALL_STATE(4014)] = 9329, + [SMALL_STATE(4015)] = 9456, + [SMALL_STATE(4016)] = 9583, + [SMALL_STATE(4017)] = 9710, + [SMALL_STATE(4018)] = 9837, + [SMALL_STATE(4019)] = 9964, + [SMALL_STATE(4020)] = 10091, + [SMALL_STATE(4021)] = 10218, + [SMALL_STATE(4022)] = 10345, + [SMALL_STATE(4023)] = 10472, + [SMALL_STATE(4024)] = 10599, + [SMALL_STATE(4025)] = 10726, + [SMALL_STATE(4026)] = 10873, + [SMALL_STATE(4027)] = 11000, + [SMALL_STATE(4028)] = 11127, + [SMALL_STATE(4029)] = 11222, + [SMALL_STATE(4030)] = 11349, + [SMALL_STATE(4031)] = 11476, + [SMALL_STATE(4032)] = 11603, + [SMALL_STATE(4033)] = 11730, + [SMALL_STATE(4034)] = 11857, + [SMALL_STATE(4035)] = 11980, + [SMALL_STATE(4036)] = 12107, + [SMALL_STATE(4037)] = 12234, + [SMALL_STATE(4038)] = 12351, + [SMALL_STATE(4039)] = 12464, + [SMALL_STATE(4040)] = 12599, + [SMALL_STATE(4041)] = 12736, + [SMALL_STATE(4042)] = 12869, + [SMALL_STATE(4043)] = 12988, + [SMALL_STATE(4044)] = 13119, + [SMALL_STATE(4045)] = 13246, + [SMALL_STATE(4046)] = 13385, + [SMALL_STATE(4047)] = 13526, + [SMALL_STATE(4048)] = 13671, + [SMALL_STATE(4049)] = 13798, + [SMALL_STATE(4050)] = 13907, + [SMALL_STATE(4051)] = 14054, + [SMALL_STATE(4052)] = 14181, + [SMALL_STATE(4053)] = 14308, + [SMALL_STATE(4054)] = 14435, + [SMALL_STATE(4055)] = 14562, + [SMALL_STATE(4056)] = 14689, + [SMALL_STATE(4057)] = 14816, + [SMALL_STATE(4058)] = 14943, + [SMALL_STATE(4059)] = 15066, + [SMALL_STATE(4060)] = 15183, + [SMALL_STATE(4061)] = 15296, + [SMALL_STATE(4062)] = 15415, + [SMALL_STATE(4063)] = 15510, + [SMALL_STATE(4064)] = 15605, + [SMALL_STATE(4065)] = 15732, + [SMALL_STATE(4066)] = 15859, + [SMALL_STATE(4067)] = 15986, + [SMALL_STATE(4068)] = 16113, + [SMALL_STATE(4069)] = 16222, + [SMALL_STATE(4070)] = 16315, + [SMALL_STATE(4071)] = 16442, + [SMALL_STATE(4072)] = 16569, + [SMALL_STATE(4073)] = 16696, + [SMALL_STATE(4074)] = 16823, + [SMALL_STATE(4075)] = 16950, + [SMALL_STATE(4076)] = 17077, + [SMALL_STATE(4077)] = 17204, + [SMALL_STATE(4078)] = 17331, + [SMALL_STATE(4079)] = 17458, + [SMALL_STATE(4080)] = 17585, + [SMALL_STATE(4081)] = 17712, + [SMALL_STATE(4082)] = 17839, + [SMALL_STATE(4083)] = 17966, + [SMALL_STATE(4084)] = 18093, + [SMALL_STATE(4085)] = 18220, + [SMALL_STATE(4086)] = 18313, + [SMALL_STATE(4087)] = 18412, + [SMALL_STATE(4088)] = 18507, + [SMALL_STATE(4089)] = 18634, + [SMALL_STATE(4090)] = 18761, + [SMALL_STATE(4091)] = 18888, + [SMALL_STATE(4092)] = 18981, + [SMALL_STATE(4093)] = 19108, + [SMALL_STATE(4094)] = 19203, + [SMALL_STATE(4095)] = 19302, + [SMALL_STATE(4096)] = 19429, [SMALL_STATE(4097)] = 19538, [SMALL_STATE(4098)] = 19665, - [SMALL_STATE(4099)] = 19792, - [SMALL_STATE(4100)] = 19919, - [SMALL_STATE(4101)] = 20046, - [SMALL_STATE(4102)] = 20141, + [SMALL_STATE(4099)] = 19760, + [SMALL_STATE(4100)] = 19887, + [SMALL_STATE(4101)] = 20014, + [SMALL_STATE(4102)] = 20159, [SMALL_STATE(4103)] = 20286, [SMALL_STATE(4104)] = 20413, - [SMALL_STATE(4105)] = 20519, - [SMALL_STATE(4106)] = 20641, - [SMALL_STATE(4107)] = 20779, - [SMALL_STATE(4108)] = 20875, - [SMALL_STATE(4109)] = 21015, - [SMALL_STATE(4110)] = 21121, - [SMALL_STATE(4111)] = 21267, - [SMALL_STATE(4112)] = 21379, - [SMALL_STATE(4113)] = 21471, - [SMALL_STATE(4114)] = 21589, - [SMALL_STATE(4115)] = 21683, - [SMALL_STATE(4116)] = 21777, - [SMALL_STATE(4117)] = 21869, - [SMALL_STATE(4118)] = 21963, - [SMALL_STATE(4119)] = 22109, - [SMALL_STATE(4120)] = 22255, - [SMALL_STATE(4121)] = 22347, - [SMALL_STATE(4122)] = 22491, - [SMALL_STATE(4123)] = 22635, - [SMALL_STATE(4124)] = 22725, - [SMALL_STATE(4125)] = 22861, - [SMALL_STATE(4126)] = 22967, - [SMALL_STATE(4127)] = 23079, - [SMALL_STATE(4128)] = 23195, - [SMALL_STATE(4129)] = 23341, - [SMALL_STATE(4130)] = 23473, - [SMALL_STATE(4131)] = 23581, - [SMALL_STATE(4132)] = 23725, - [SMALL_STATE(4133)] = 23855, - [SMALL_STATE(4134)] = 23967, - [SMALL_STATE(4135)] = 24111, - [SMALL_STATE(4136)] = 24255, - [SMALL_STATE(4137)] = 24389, - [SMALL_STATE(4138)] = 24479, - [SMALL_STATE(4139)] = 24587, - [SMALL_STATE(4140)] = 24717, - [SMALL_STATE(4141)] = 24825, - [SMALL_STATE(4142)] = 24959, - [SMALL_STATE(4143)] = 25103, - [SMALL_STATE(4144)] = 25197, - [SMALL_STATE(4145)] = 25291, + [SMALL_STATE(4105)] = 20557, + [SMALL_STATE(4106)] = 20697, + [SMALL_STATE(4107)] = 20841, + [SMALL_STATE(4108)] = 20939, + [SMALL_STATE(4109)] = 21031, + [SMALL_STATE(4110)] = 21147, + [SMALL_STATE(4111)] = 21291, + [SMALL_STATE(4112)] = 21435, + [SMALL_STATE(4113)] = 21525, + [SMALL_STATE(4114)] = 21637, + [SMALL_STATE(4115)] = 21771, + [SMALL_STATE(4116)] = 21907, + [SMALL_STATE(4117)] = 22013, + [SMALL_STATE(4118)] = 22121, + [SMALL_STATE(4119)] = 22215, + [SMALL_STATE(4120)] = 22323, + [SMALL_STATE(4121)] = 22453, + [SMALL_STATE(4122)] = 22597, + [SMALL_STATE(4123)] = 22731, + [SMALL_STATE(4124)] = 22821, + [SMALL_STATE(4125)] = 22957, + [SMALL_STATE(4126)] = 23089, + [SMALL_STATE(4127)] = 23179, + [SMALL_STATE(4128)] = 23269, + [SMALL_STATE(4129)] = 23401, + [SMALL_STATE(4130)] = 23511, + [SMALL_STATE(4131)] = 23601, + [SMALL_STATE(4132)] = 23719, + [SMALL_STATE(4133)] = 23831, + [SMALL_STATE(4134)] = 23961, + [SMALL_STATE(4135)] = 24067, + [SMALL_STATE(4136)] = 24157, + [SMALL_STATE(4137)] = 24263, + [SMALL_STATE(4138)] = 24409, + [SMALL_STATE(4139)] = 24517, + [SMALL_STATE(4140)] = 24609, + [SMALL_STATE(4141)] = 24747, + [SMALL_STATE(4142)] = 24855, + [SMALL_STATE(4143)] = 24995, + [SMALL_STATE(4144)] = 25141, + [SMALL_STATE(4145)] = 25237, [SMALL_STATE(4146)] = 25381, - [SMALL_STATE(4147)] = 25517, - [SMALL_STATE(4148)] = 25625, - [SMALL_STATE(4149)] = 25769, - [SMALL_STATE(4150)] = 25863, - [SMALL_STATE(4151)] = 26007, - [SMALL_STATE(4152)] = 26097, - [SMALL_STATE(4153)] = 26187, - [SMALL_STATE(4154)] = 26333, - [SMALL_STATE(4155)] = 26465, - [SMALL_STATE(4156)] = 26575, - [SMALL_STATE(4157)] = 26719, - [SMALL_STATE(4158)] = 26857, - [SMALL_STATE(4159)] = 26979, - [SMALL_STATE(4160)] = 27095, - [SMALL_STATE(4161)] = 27185, - [SMALL_STATE(4162)] = 27283, - [SMALL_STATE(4163)] = 27423, - [SMALL_STATE(4164)] = 27513, - [SMALL_STATE(4165)] = 27631, - [SMALL_STATE(4166)] = 27723, + [SMALL_STATE(4147)] = 25525, + [SMALL_STATE(4148)] = 25619, + [SMALL_STATE(4149)] = 25713, + [SMALL_STATE(4150)] = 25805, + [SMALL_STATE(4151)] = 25899, + [SMALL_STATE(4152)] = 26045, + [SMALL_STATE(4153)] = 26139, + [SMALL_STATE(4154)] = 26283, + [SMALL_STATE(4155)] = 26405, + [SMALL_STATE(4156)] = 26499, + [SMALL_STATE(4157)] = 26621, + [SMALL_STATE(4158)] = 26737, + [SMALL_STATE(4159)] = 26883, + [SMALL_STATE(4160)] = 26995, + [SMALL_STATE(4161)] = 27113, + [SMALL_STATE(4162)] = 27205, + [SMALL_STATE(4163)] = 27295, + [SMALL_STATE(4164)] = 27441, + [SMALL_STATE(4165)] = 27579, + [SMALL_STATE(4166)] = 27725, [SMALL_STATE(4167)] = 27869, - [SMALL_STATE(4168)] = 27958, - [SMALL_STATE(4169)] = 28069, - [SMALL_STATE(4170)] = 28202, - [SMALL_STATE(4171)] = 28337, - [SMALL_STATE(4172)] = 28426, - [SMALL_STATE(4173)] = 28557, - [SMALL_STATE(4174)] = 28674, - [SMALL_STATE(4175)] = 28803, - [SMALL_STATE(4176)] = 28892, - [SMALL_STATE(4177)] = 29035, - [SMALL_STATE(4178)] = 29172, - [SMALL_STATE(4179)] = 29311, - [SMALL_STATE(4180)] = 29404, - [SMALL_STATE(4181)] = 29547, - [SMALL_STATE(4182)] = 29640, - [SMALL_STATE(4183)] = 29729, - [SMALL_STATE(4184)] = 29818, - [SMALL_STATE(4185)] = 29911, - [SMALL_STATE(4186)] = 30054, - [SMALL_STATE(4187)] = 30197, - [SMALL_STATE(4188)] = 30286, - [SMALL_STATE(4189)] = 30375, - [SMALL_STATE(4190)] = 30466, - [SMALL_STATE(4191)] = 30573, - [SMALL_STATE(4192)] = 30662, - [SMALL_STATE(4193)] = 30751, - [SMALL_STATE(4194)] = 30840, - [SMALL_STATE(4195)] = 30929, - [SMALL_STATE(4196)] = 31020, - [SMALL_STATE(4197)] = 31109, - [SMALL_STATE(4198)] = 31198, - [SMALL_STATE(4199)] = 31287, - [SMALL_STATE(4200)] = 31376, - [SMALL_STATE(4201)] = 31465, - [SMALL_STATE(4202)] = 31608, - [SMALL_STATE(4203)] = 31701, - [SMALL_STATE(4204)] = 31808, - [SMALL_STATE(4205)] = 31901, - [SMALL_STATE(4206)] = 32022, - [SMALL_STATE(4207)] = 32111, - [SMALL_STATE(4208)] = 32254, - [SMALL_STATE(4209)] = 32397, - [SMALL_STATE(4210)] = 32540, - [SMALL_STATE(4211)] = 32629, - [SMALL_STATE(4212)] = 32718, - [SMALL_STATE(4213)] = 32861, - [SMALL_STATE(4214)] = 32968, - [SMALL_STATE(4215)] = 33061, - [SMALL_STATE(4216)] = 33154, - [SMALL_STATE(4217)] = 33269, - [SMALL_STATE(4218)] = 33358, - [SMALL_STATE(4219)] = 33447, - [SMALL_STATE(4220)] = 33536, + [SMALL_STATE(4168)] = 27962, + [SMALL_STATE(4169)] = 28051, + [SMALL_STATE(4170)] = 28194, + [SMALL_STATE(4171)] = 28283, + [SMALL_STATE(4172)] = 28372, + [SMALL_STATE(4173)] = 28479, + [SMALL_STATE(4174)] = 28622, + [SMALL_STATE(4175)] = 28711, + [SMALL_STATE(4176)] = 28802, + [SMALL_STATE(4177)] = 28895, + [SMALL_STATE(4178)] = 28986, + [SMALL_STATE(4179)] = 29093, + [SMALL_STATE(4180)] = 29182, + [SMALL_STATE(4181)] = 29311, + [SMALL_STATE(4182)] = 29404, + [SMALL_STATE(4183)] = 29547, + [SMALL_STATE(4184)] = 29684, + [SMALL_STATE(4185)] = 29823, + [SMALL_STATE(4186)] = 29966, + [SMALL_STATE(4187)] = 30055, + [SMALL_STATE(4188)] = 30198, + [SMALL_STATE(4189)] = 30305, + [SMALL_STATE(4190)] = 30394, + [SMALL_STATE(4191)] = 30537, + [SMALL_STATE(4192)] = 30626, + [SMALL_STATE(4193)] = 30743, + [SMALL_STATE(4194)] = 30832, + [SMALL_STATE(4195)] = 30963, + [SMALL_STATE(4196)] = 31084, + [SMALL_STATE(4197)] = 31177, + [SMALL_STATE(4198)] = 31270, + [SMALL_STATE(4199)] = 31413, + [SMALL_STATE(4200)] = 31528, + [SMALL_STATE(4201)] = 31617, + [SMALL_STATE(4202)] = 31706, + [SMALL_STATE(4203)] = 31799, + [SMALL_STATE(4204)] = 31888, + [SMALL_STATE(4205)] = 31999, + [SMALL_STATE(4206)] = 32088, + [SMALL_STATE(4207)] = 32177, + [SMALL_STATE(4208)] = 32270, + [SMALL_STATE(4209)] = 32403, + [SMALL_STATE(4210)] = 32492, + [SMALL_STATE(4211)] = 32581, + [SMALL_STATE(4212)] = 32674, + [SMALL_STATE(4213)] = 32763, + [SMALL_STATE(4214)] = 32852, + [SMALL_STATE(4215)] = 32995, + [SMALL_STATE(4216)] = 33084, + [SMALL_STATE(4217)] = 33173, + [SMALL_STATE(4218)] = 33262, + [SMALL_STATE(4219)] = 33397, + [SMALL_STATE(4220)] = 33486, [SMALL_STATE(4221)] = 33629, - [SMALL_STATE(4222)] = 33759, - [SMALL_STATE(4223)] = 33901, - [SMALL_STATE(4224)] = 34031, - [SMALL_STATE(4225)] = 34137, - [SMALL_STATE(4226)] = 34253, - [SMALL_STATE(4227)] = 34373, - [SMALL_STATE(4228)] = 34515, - [SMALL_STATE(4229)] = 34657, - [SMALL_STATE(4230)] = 34799, - [SMALL_STATE(4231)] = 34941, - [SMALL_STATE(4232)] = 35061, - [SMALL_STATE(4233)] = 35203, - [SMALL_STATE(4234)] = 35331, - [SMALL_STATE(4235)] = 35445, - [SMALL_STATE(4236)] = 35555, - [SMALL_STATE(4237)] = 35665, - [SMALL_STATE(4238)] = 35797, - [SMALL_STATE(4239)] = 35931, - [SMALL_STATE(4240)] = 36073, - [SMALL_STATE(4241)] = 36189, - [SMALL_STATE(4242)] = 36331, - [SMALL_STATE(4243)] = 36459, - [SMALL_STATE(4244)] = 36551, - [SMALL_STATE(4245)] = 36687, - [SMALL_STATE(4246)] = 36825, - [SMALL_STATE(4247)] = 36961, - [SMALL_STATE(4248)] = 37103, - [SMALL_STATE(4249)] = 37209, - [SMALL_STATE(4250)] = 37301, - [SMALL_STATE(4251)] = 37389, - [SMALL_STATE(4252)] = 37527, - [SMALL_STATE(4253)] = 37669, - [SMALL_STATE(4254)] = 37761, - [SMALL_STATE(4255)] = 37853, - [SMALL_STATE(4256)] = 37995, - [SMALL_STATE(4257)] = 38115, - [SMALL_STATE(4258)] = 38229, - [SMALL_STATE(4259)] = 38371, - [SMALL_STATE(4260)] = 38461, - [SMALL_STATE(4261)] = 38553, - [SMALL_STATE(4262)] = 38695, - [SMALL_STATE(4263)] = 38805, - [SMALL_STATE(4264)] = 38937, - [SMALL_STATE(4265)] = 39069, - [SMALL_STATE(4266)] = 39203, - [SMALL_STATE(4267)] = 39333, - [SMALL_STATE(4268)] = 39449, - [SMALL_STATE(4269)] = 39577, - [SMALL_STATE(4270)] = 39713, - [SMALL_STATE(4271)] = 39855, - [SMALL_STATE(4272)] = 39997, - [SMALL_STATE(4273)] = 40089, - [SMALL_STATE(4274)] = 40231, - [SMALL_STATE(4275)] = 40369, - [SMALL_STATE(4276)] = 40459, - [SMALL_STATE(4277)] = 40565, - [SMALL_STATE(4278)] = 40657, - [SMALL_STATE(4279)] = 40753, - [SMALL_STATE(4280)] = 40895, - [SMALL_STATE(4281)] = 40987, - [SMALL_STATE(4282)] = 41093, - [SMALL_STATE(4283)] = 41235, - [SMALL_STATE(4284)] = 41377, - [SMALL_STATE(4285)] = 41519, - [SMALL_STATE(4286)] = 41661, - [SMALL_STATE(4287)] = 41775, - [SMALL_STATE(4288)] = 41917, - [SMALL_STATE(4289)] = 42009, - [SMALL_STATE(4290)] = 42115, - [SMALL_STATE(4291)] = 42209, - [SMALL_STATE(4292)] = 42351, - [SMALL_STATE(4293)] = 42471, - [SMALL_STATE(4294)] = 42613, - [SMALL_STATE(4295)] = 42755, - [SMALL_STATE(4296)] = 42861, - [SMALL_STATE(4297)] = 42995, + [SMALL_STATE(4222)] = 33745, + [SMALL_STATE(4223)] = 33865, + [SMALL_STATE(4224)] = 34007, + [SMALL_STATE(4225)] = 34139, + [SMALL_STATE(4226)] = 34281, + [SMALL_STATE(4227)] = 34423, + [SMALL_STATE(4228)] = 34529, + [SMALL_STATE(4229)] = 34639, + [SMALL_STATE(4230)] = 34781, + [SMALL_STATE(4231)] = 34923, + [SMALL_STATE(4232)] = 35065, + [SMALL_STATE(4233)] = 35199, + [SMALL_STATE(4234)] = 35329, + [SMALL_STATE(4235)] = 35471, + [SMALL_STATE(4236)] = 35577, + [SMALL_STATE(4237)] = 35667, + [SMALL_STATE(4238)] = 35809, + [SMALL_STATE(4239)] = 35929, + [SMALL_STATE(4240)] = 36071, + [SMALL_STATE(4241)] = 36187, + [SMALL_STATE(4242)] = 36301, + [SMALL_STATE(4243)] = 36429, + [SMALL_STATE(4244)] = 36571, + [SMALL_STATE(4245)] = 36707, + [SMALL_STATE(4246)] = 36839, + [SMALL_STATE(4247)] = 36977, + [SMALL_STATE(4248)] = 37111, + [SMALL_STATE(4249)] = 37253, + [SMALL_STATE(4250)] = 37349, + [SMALL_STATE(4251)] = 37491, + [SMALL_STATE(4252)] = 37579, + [SMALL_STATE(4253)] = 37721, + [SMALL_STATE(4254)] = 37827, + [SMALL_STATE(4255)] = 37947, + [SMALL_STATE(4256)] = 38089, + [SMALL_STATE(4257)] = 38181, + [SMALL_STATE(4258)] = 38311, + [SMALL_STATE(4259)] = 38453, + [SMALL_STATE(4260)] = 38545, + [SMALL_STATE(4261)] = 38683, + [SMALL_STATE(4262)] = 38799, + [SMALL_STATE(4263)] = 38927, + [SMALL_STATE(4264)] = 39063, + [SMALL_STATE(4265)] = 39201, + [SMALL_STATE(4266)] = 39343, + [SMALL_STATE(4267)] = 39485, + [SMALL_STATE(4268)] = 39577, + [SMALL_STATE(4269)] = 39669, + [SMALL_STATE(4270)] = 39811, + [SMALL_STATE(4271)] = 39953, + [SMALL_STATE(4272)] = 40067, + [SMALL_STATE(4273)] = 40159, + [SMALL_STATE(4274)] = 40301, + [SMALL_STATE(4275)] = 40443, + [SMALL_STATE(4276)] = 40557, + [SMALL_STATE(4277)] = 40667, + [SMALL_STATE(4278)] = 40809, + [SMALL_STATE(4279)] = 40901, + [SMALL_STATE(4280)] = 41011, + [SMALL_STATE(4281)] = 41101, + [SMALL_STATE(4282)] = 41243, + [SMALL_STATE(4283)] = 41385, + [SMALL_STATE(4284)] = 41477, + [SMALL_STATE(4285)] = 41605, + [SMALL_STATE(4286)] = 41747, + [SMALL_STATE(4287)] = 41889, + [SMALL_STATE(4288)] = 41995, + [SMALL_STATE(4289)] = 42127, + [SMALL_STATE(4290)] = 42233, + [SMALL_STATE(4291)] = 42369, + [SMALL_STATE(4292)] = 42475, + [SMALL_STATE(4293)] = 42605, + [SMALL_STATE(4294)] = 42699, + [SMALL_STATE(4295)] = 42819, + [SMALL_STATE(4296)] = 42953, + [SMALL_STATE(4297)] = 43045, [SMALL_STATE(4298)] = 43137, [SMALL_STATE(4299)] = 43264, [SMALL_STATE(4300)] = 43405, - [SMALL_STATE(4301)] = 43492, - [SMALL_STATE(4302)] = 43595, - [SMALL_STATE(4303)] = 43736, - [SMALL_STATE(4304)] = 43855, - [SMALL_STATE(4305)] = 43968, - [SMALL_STATE(4306)] = 44077, - [SMALL_STATE(4307)] = 44182, - [SMALL_STATE(4308)] = 44317, - [SMALL_STATE(4309)] = 44404, - [SMALL_STATE(4310)] = 44541, - [SMALL_STATE(4311)] = 44628, - [SMALL_STATE(4312)] = 44733, - [SMALL_STATE(4313)] = 44874, - [SMALL_STATE(4314)] = 45015, - [SMALL_STATE(4315)] = 45106, - [SMALL_STATE(4316)] = 45237, - [SMALL_STATE(4317)] = 45328, - [SMALL_STATE(4318)] = 45469, - [SMALL_STATE(4319)] = 45588, - [SMALL_STATE(4320)] = 45701, - [SMALL_STATE(4321)] = 45832, - [SMALL_STATE(4322)] = 45965, - [SMALL_STATE(4323)] = 46094, - [SMALL_STATE(4324)] = 46209, - [SMALL_STATE(4325)] = 46336, - [SMALL_STATE(4326)] = 46471, - [SMALL_STATE(4327)] = 46586, - [SMALL_STATE(4328)] = 46723, - [SMALL_STATE(4329)] = 46838, - [SMALL_STATE(4330)] = 46979, - [SMALL_STATE(4331)] = 47112, - [SMALL_STATE(4332)] = 47253, - [SMALL_STATE(4333)] = 47372, - [SMALL_STATE(4334)] = 47513, - [SMALL_STATE(4335)] = 47654, - [SMALL_STATE(4336)] = 47767, - [SMALL_STATE(4337)] = 47862, - [SMALL_STATE(4338)] = 47965, - [SMALL_STATE(4339)] = 48052, - [SMALL_STATE(4340)] = 48181, - [SMALL_STATE(4341)] = 48296, - [SMALL_STATE(4342)] = 48385, - [SMALL_STATE(4343)] = 48526, - [SMALL_STATE(4344)] = 48613, - [SMALL_STATE(4345)] = 48716, - [SMALL_STATE(4346)] = 48809, - [SMALL_STATE(4347)] = 48918, - [SMALL_STATE(4348)] = 49033, - [SMALL_STATE(4349)] = 49148, - [SMALL_STATE(4350)] = 49257, - [SMALL_STATE(4351)] = 49398, - [SMALL_STATE(4352)] = 49493, - [SMALL_STATE(4353)] = 49634, - [SMALL_STATE(4354)] = 49775, - [SMALL_STATE(4355)] = 49880, - [SMALL_STATE(4356)] = 49971, - [SMALL_STATE(4357)] = 50062, - [SMALL_STATE(4358)] = 50153, - [SMALL_STATE(4359)] = 50242, - [SMALL_STATE(4360)] = 50333, - [SMALL_STATE(4361)] = 50448, - [SMALL_STATE(4362)] = 50589, - [SMALL_STATE(4363)] = 50682, - [SMALL_STATE(4364)] = 50787, - [SMALL_STATE(4365)] = 50928, - [SMALL_STATE(4366)] = 51069, - [SMALL_STATE(4367)] = 51174, - [SMALL_STATE(4368)] = 51301, - [SMALL_STATE(4369)] = 51416, - [SMALL_STATE(4370)] = 51521, - [SMALL_STATE(4371)] = 51662, - [SMALL_STATE(4372)] = 51793, - [SMALL_STATE(4373)] = 51926, - [SMALL_STATE(4374)] = 52013, - [SMALL_STATE(4375)] = 52118, - [SMALL_STATE(4376)] = 52259, - [SMALL_STATE(4377)] = 52388, - [SMALL_STATE(4378)] = 52493, - [SMALL_STATE(4379)] = 52584, - [SMALL_STATE(4380)] = 52719, - [SMALL_STATE(4381)] = 52856, - [SMALL_STATE(4382)] = 52997, - [SMALL_STATE(4383)] = 53138, - [SMALL_STATE(4384)] = 53279, - [SMALL_STATE(4385)] = 53420, - [SMALL_STATE(4386)] = 53507, - [SMALL_STATE(4387)] = 53648, - [SMALL_STATE(4388)] = 53735, - [SMALL_STATE(4389)] = 53826, + [SMALL_STATE(4301)] = 43520, + [SMALL_STATE(4302)] = 43639, + [SMALL_STATE(4303)] = 43744, + [SMALL_STATE(4304)] = 43859, + [SMALL_STATE(4305)] = 44000, + [SMALL_STATE(4306)] = 44119, + [SMALL_STATE(4307)] = 44224, + [SMALL_STATE(4308)] = 44351, + [SMALL_STATE(4309)] = 44486, + [SMALL_STATE(4310)] = 44627, + [SMALL_STATE(4311)] = 44736, + [SMALL_STATE(4312)] = 44877, + [SMALL_STATE(4313)] = 44982, + [SMALL_STATE(4314)] = 45119, + [SMALL_STATE(4315)] = 45260, + [SMALL_STATE(4316)] = 45389, + [SMALL_STATE(4317)] = 45476, + [SMALL_STATE(4318)] = 45617, + [SMALL_STATE(4319)] = 45704, + [SMALL_STATE(4320)] = 45809, + [SMALL_STATE(4321)] = 45950, + [SMALL_STATE(4322)] = 46081, + [SMALL_STATE(4323)] = 46194, + [SMALL_STATE(4324)] = 46287, + [SMALL_STATE(4325)] = 46428, + [SMALL_STATE(4326)] = 46559, + [SMALL_STATE(4327)] = 46700, + [SMALL_STATE(4328)] = 46833, + [SMALL_STATE(4329)] = 46948, + [SMALL_STATE(4330)] = 47053, + [SMALL_STATE(4331)] = 47182, + [SMALL_STATE(4332)] = 47323, + [SMALL_STATE(4333)] = 47464, + [SMALL_STATE(4334)] = 47579, + [SMALL_STATE(4335)] = 47666, + [SMALL_STATE(4336)] = 47793, + [SMALL_STATE(4337)] = 47898, + [SMALL_STATE(4338)] = 47985, + [SMALL_STATE(4339)] = 48098, + [SMALL_STATE(4340)] = 48231, + [SMALL_STATE(4341)] = 48350, + [SMALL_STATE(4342)] = 48463, + [SMALL_STATE(4343)] = 48604, + [SMALL_STATE(4344)] = 48719, + [SMALL_STATE(4345)] = 48828, + [SMALL_STATE(4346)] = 48957, + [SMALL_STATE(4347)] = 49072, + [SMALL_STATE(4348)] = 49177, + [SMALL_STATE(4349)] = 49264, + [SMALL_STATE(4350)] = 49399, + [SMALL_STATE(4351)] = 49508, + [SMALL_STATE(4352)] = 49649, + [SMALL_STATE(4353)] = 49786, + [SMALL_STATE(4354)] = 49877, + [SMALL_STATE(4355)] = 50018, + [SMALL_STATE(4356)] = 50109, + [SMALL_STATE(4357)] = 50240, + [SMALL_STATE(4358)] = 50381, + [SMALL_STATE(4359)] = 50496, + [SMALL_STATE(4360)] = 50629, + [SMALL_STATE(4361)] = 50722, + [SMALL_STATE(4362)] = 50863, + [SMALL_STATE(4363)] = 50966, + [SMALL_STATE(4364)] = 51069, + [SMALL_STATE(4365)] = 51160, + [SMALL_STATE(4366)] = 51251, + [SMALL_STATE(4367)] = 51342, + [SMALL_STATE(4368)] = 51431, + [SMALL_STATE(4369)] = 51522, + [SMALL_STATE(4370)] = 51663, + [SMALL_STATE(4371)] = 51766, + [SMALL_STATE(4372)] = 51881, + [SMALL_STATE(4373)] = 52022, + [SMALL_STATE(4374)] = 52127, + [SMALL_STATE(4375)] = 52216, + [SMALL_STATE(4376)] = 52351, + [SMALL_STATE(4377)] = 52488, + [SMALL_STATE(4378)] = 52583, + [SMALL_STATE(4379)] = 52678, + [SMALL_STATE(4380)] = 52819, + [SMALL_STATE(4381)] = 52934, + [SMALL_STATE(4382)] = 53075, + [SMALL_STATE(4383)] = 53166, + [SMALL_STATE(4384)] = 53307, + [SMALL_STATE(4385)] = 53448, + [SMALL_STATE(4386)] = 53535, + [SMALL_STATE(4387)] = 53676, + [SMALL_STATE(4388)] = 53763, + [SMALL_STATE(4389)] = 53850, [SMALL_STATE(4390)] = 53941, - [SMALL_STATE(4391)] = 54045, - [SMALL_STATE(4392)] = 54179, - [SMALL_STATE(4393)] = 54319, - [SMALL_STATE(4394)] = 54459, - [SMALL_STATE(4395)] = 54567, - [SMALL_STATE(4396)] = 54697, - [SMALL_STATE(4397)] = 54783, - [SMALL_STATE(4398)] = 54887, - [SMALL_STATE(4399)] = 55027, - [SMALL_STATE(4400)] = 55115, - [SMALL_STATE(4401)] = 55201, - [SMALL_STATE(4402)] = 55341, - [SMALL_STATE(4403)] = 55445, - [SMALL_STATE(4404)] = 55533, - [SMALL_STATE(4405)] = 55673, - [SMALL_STATE(4406)] = 55759, - [SMALL_STATE(4407)] = 55899, - [SMALL_STATE(4408)] = 56039, - [SMALL_STATE(4409)] = 56125, - [SMALL_STATE(4410)] = 56257, - [SMALL_STATE(4411)] = 56397, - [SMALL_STATE(4412)] = 56525, - [SMALL_STATE(4413)] = 56661, - [SMALL_STATE(4414)] = 56747, - [SMALL_STATE(4415)] = 56877, - [SMALL_STATE(4416)] = 56963, - [SMALL_STATE(4417)] = 57095, - [SMALL_STATE(4418)] = 57235, - [SMALL_STATE(4419)] = 57365, - [SMALL_STATE(4420)] = 57511, - [SMALL_STATE(4421)] = 57643, - [SMALL_STATE(4422)] = 57771, - [SMALL_STATE(4423)] = 57897, - [SMALL_STATE(4424)] = 58037, - [SMALL_STATE(4425)] = 58165, - [SMALL_STATE(4426)] = 58279, - [SMALL_STATE(4427)] = 58405, - [SMALL_STATE(4428)] = 58523, - [SMALL_STATE(4429)] = 58635, - [SMALL_STATE(4430)] = 58749, - [SMALL_STATE(4431)] = 58883, - [SMALL_STATE(4432)] = 59019, - [SMALL_STATE(4433)] = 59105, - [SMALL_STATE(4434)] = 59245, - [SMALL_STATE(4435)] = 59391, - [SMALL_STATE(4436)] = 59495, - [SMALL_STATE(4437)] = 59635, - [SMALL_STATE(4438)] = 59769, - [SMALL_STATE(4439)] = 59909, - [SMALL_STATE(4440)] = 60045, - [SMALL_STATE(4441)] = 60159, - [SMALL_STATE(4442)] = 60285, - [SMALL_STATE(4443)] = 60425, - [SMALL_STATE(4444)] = 60573, - [SMALL_STATE(4445)] = 60659, - [SMALL_STATE(4446)] = 60799, - [SMALL_STATE(4447)] = 60885, - [SMALL_STATE(4448)] = 60979, - [SMALL_STATE(4449)] = 61069, - [SMALL_STATE(4450)] = 61209, - [SMALL_STATE(4451)] = 61295, - [SMALL_STATE(4452)] = 61381, - [SMALL_STATE(4453)] = 61471, - [SMALL_STATE(4454)] = 61561, - [SMALL_STATE(4455)] = 61701, - [SMALL_STATE(4456)] = 61787, - [SMALL_STATE(4457)] = 61891, - [SMALL_STATE(4458)] = 61985, - [SMALL_STATE(4459)] = 62075, - [SMALL_STATE(4460)] = 62221, - [SMALL_STATE(4461)] = 62361, - [SMALL_STATE(4462)] = 62453, - [SMALL_STATE(4463)] = 62593, - [SMALL_STATE(4464)] = 62681, - [SMALL_STATE(4465)] = 62821, - [SMALL_STATE(4466)] = 62907, - [SMALL_STATE(4467)] = 63011, - [SMALL_STATE(4468)] = 63115, - [SMALL_STATE(4469)] = 63255, - [SMALL_STATE(4470)] = 63395, - [SMALL_STATE(4471)] = 63481, - [SMALL_STATE(4472)] = 63589, - [SMALL_STATE(4473)] = 63729, - [SMALL_STATE(4474)] = 63819, - [SMALL_STATE(4475)] = 63911, - [SMALL_STATE(4476)] = 63999, - [SMALL_STATE(4477)] = 64085, - [SMALL_STATE(4478)] = 64219, - [SMALL_STATE(4479)] = 64355, - [SMALL_STATE(4480)] = 64495, - [SMALL_STATE(4481)] = 64635, - [SMALL_STATE(4482)] = 64721, - [SMALL_STATE(4483)] = 64861, - [SMALL_STATE(4484)] = 64979, - [SMALL_STATE(4485)] = 65125, - [SMALL_STATE(4486)] = 65265, - [SMALL_STATE(4487)] = 65373, - [SMALL_STATE(4488)] = 65485, - [SMALL_STATE(4489)] = 65593, - [SMALL_STATE(4490)] = 65707, - [SMALL_STATE(4491)] = 65811, - [SMALL_STATE(4492)] = 65901, - [SMALL_STATE(4493)] = 66047, - [SMALL_STATE(4494)] = 66133, - [SMALL_STATE(4495)] = 66219, - [SMALL_STATE(4496)] = 66349, - [SMALL_STATE(4497)] = 66437, - [SMALL_STATE(4498)] = 66523, - [SMALL_STATE(4499)] = 66609, - [SMALL_STATE(4500)] = 66695, - [SMALL_STATE(4501)] = 66813, - [SMALL_STATE(4502)] = 66901, - [SMALL_STATE(4503)] = 67019, - [SMALL_STATE(4504)] = 67105, - [SMALL_STATE(4505)] = 67245, - [SMALL_STATE(4506)] = 67357, - [SMALL_STATE(4507)] = 67445, - [SMALL_STATE(4508)] = 67591, - [SMALL_STATE(4509)] = 67677, + [SMALL_STATE(4391)] = 54067, + [SMALL_STATE(4392)] = 54207, + [SMALL_STATE(4393)] = 54347, + [SMALL_STATE(4394)] = 54487, + [SMALL_STATE(4395)] = 54627, + [SMALL_STATE(4396)] = 54713, + [SMALL_STATE(4397)] = 54841, + [SMALL_STATE(4398)] = 54975, + [SMALL_STATE(4399)] = 55061, + [SMALL_STATE(4400)] = 55149, + [SMALL_STATE(4401)] = 55283, + [SMALL_STATE(4402)] = 55369, + [SMALL_STATE(4403)] = 55459, + [SMALL_STATE(4404)] = 55547, + [SMALL_STATE(4405)] = 55633, + [SMALL_STATE(4406)] = 55719, + [SMALL_STATE(4407)] = 55809, + [SMALL_STATE(4408)] = 55895, + [SMALL_STATE(4409)] = 56035, + [SMALL_STATE(4410)] = 56121, + [SMALL_STATE(4411)] = 56261, + [SMALL_STATE(4412)] = 56401, + [SMALL_STATE(4413)] = 56541, + [SMALL_STATE(4414)] = 56681, + [SMALL_STATE(4415)] = 56775, + [SMALL_STATE(4416)] = 56865, + [SMALL_STATE(4417)] = 56969, + [SMALL_STATE(4418)] = 57055, + [SMALL_STATE(4419)] = 57195, + [SMALL_STATE(4420)] = 57281, + [SMALL_STATE(4421)] = 57421, + [SMALL_STATE(4422)] = 57561, + [SMALL_STATE(4423)] = 57663, + [SMALL_STATE(4424)] = 57793, + [SMALL_STATE(4425)] = 57925, + [SMALL_STATE(4426)] = 58053, + [SMALL_STATE(4427)] = 58179, + [SMALL_STATE(4428)] = 58319, + [SMALL_STATE(4429)] = 58453, + [SMALL_STATE(4430)] = 58589, + [SMALL_STATE(4431)] = 58725, + [SMALL_STATE(4432)] = 58865, + [SMALL_STATE(4433)] = 59005, + [SMALL_STATE(4434)] = 59145, + [SMALL_STATE(4435)] = 59285, + [SMALL_STATE(4436)] = 59377, + [SMALL_STATE(4437)] = 59517, + [SMALL_STATE(4438)] = 59605, + [SMALL_STATE(4439)] = 59693, + [SMALL_STATE(4440)] = 59787, + [SMALL_STATE(4441)] = 59927, + [SMALL_STATE(4442)] = 60013, + [SMALL_STATE(4443)] = 60099, + [SMALL_STATE(4444)] = 60239, + [SMALL_STATE(4445)] = 60379, + [SMALL_STATE(4446)] = 60467, + [SMALL_STATE(4447)] = 60575, + [SMALL_STATE(4448)] = 60661, + [SMALL_STATE(4449)] = 60747, + [SMALL_STATE(4450)] = 60861, + [SMALL_STATE(4451)] = 60947, + [SMALL_STATE(4452)] = 61087, + [SMALL_STATE(4453)] = 61227, + [SMALL_STATE(4454)] = 61373, + [SMALL_STATE(4455)] = 61519, + [SMALL_STATE(4456)] = 61659, + [SMALL_STATE(4457)] = 61763, + [SMALL_STATE(4458)] = 61909, + [SMALL_STATE(4459)] = 62027, + [SMALL_STATE(4460)] = 62113, + [SMALL_STATE(4461)] = 62253, + [SMALL_STATE(4462)] = 62341, + [SMALL_STATE(4463)] = 62481, + [SMALL_STATE(4464)] = 62585, + [SMALL_STATE(4465)] = 62725, + [SMALL_STATE(4466)] = 62811, + [SMALL_STATE(4467)] = 62897, + [SMALL_STATE(4468)] = 63015, + [SMALL_STATE(4469)] = 63127, + [SMALL_STATE(4470)] = 63235, + [SMALL_STATE(4471)] = 63337, + [SMALL_STATE(4472)] = 63467, + [SMALL_STATE(4473)] = 63569, + [SMALL_STATE(4474)] = 63695, + [SMALL_STATE(4475)] = 63835, + [SMALL_STATE(4476)] = 63971, + [SMALL_STATE(4477)] = 64111, + [SMALL_STATE(4478)] = 64257, + [SMALL_STATE(4479)] = 64343, + [SMALL_STATE(4480)] = 64461, + [SMALL_STATE(4481)] = 64573, + [SMALL_STATE(4482)] = 64685, + [SMALL_STATE(4483)] = 64799, + [SMALL_STATE(4484)] = 64885, + [SMALL_STATE(4485)] = 64975, + [SMALL_STATE(4486)] = 65079, + [SMALL_STATE(4487)] = 65219, + [SMALL_STATE(4488)] = 65321, + [SMALL_STATE(4489)] = 65469, + [SMALL_STATE(4490)] = 65609, + [SMALL_STATE(4491)] = 65755, + [SMALL_STATE(4492)] = 65869, + [SMALL_STATE(4493)] = 65973, + [SMALL_STATE(4494)] = 66085, + [SMALL_STATE(4495)] = 66193, + [SMALL_STATE(4496)] = 66297, + [SMALL_STATE(4497)] = 66401, + [SMALL_STATE(4498)] = 66495, + [SMALL_STATE(4499)] = 66581, + [SMALL_STATE(4500)] = 66689, + [SMALL_STATE(4501)] = 66819, + [SMALL_STATE(4502)] = 66951, + [SMALL_STATE(4503)] = 67081, + [SMALL_STATE(4504)] = 67167, + [SMALL_STATE(4505)] = 67271, + [SMALL_STATE(4506)] = 67361, + [SMALL_STATE(4507)] = 67447, + [SMALL_STATE(4508)] = 67581, + [SMALL_STATE(4509)] = 67667, [SMALL_STATE(4510)] = 67781, - [SMALL_STATE(4511)] = 67921, - [SMALL_STATE(4512)] = 68035, - [SMALL_STATE(4513)] = 68121, - [SMALL_STATE(4514)] = 68213, - [SMALL_STATE(4515)] = 68353, - [SMALL_STATE(4516)] = 68485, - [SMALL_STATE(4517)] = 68625, - [SMALL_STATE(4518)] = 68715, - [SMALL_STATE(4519)] = 68805, - [SMALL_STATE(4520)] = 68895, - [SMALL_STATE(4521)] = 68983, - [SMALL_STATE(4522)] = 69073, - [SMALL_STATE(4523)] = 69185, - [SMALL_STATE(4524)] = 69275, - [SMALL_STATE(4525)] = 69415, - [SMALL_STATE(4526)] = 69561, - [SMALL_STATE(4527)] = 69689, - [SMALL_STATE(4528)] = 69777, - [SMALL_STATE(4529)] = 69917, - [SMALL_STATE(4530)] = 70029, - [SMALL_STATE(4531)] = 70115, - [SMALL_STATE(4532)] = 70201, - [SMALL_STATE(4533)] = 70291, - [SMALL_STATE(4534)] = 70379, - [SMALL_STATE(4535)] = 70473, - [SMALL_STATE(4536)] = 70587, - [SMALL_STATE(4537)] = 70713, - [SMALL_STATE(4538)] = 70817, - [SMALL_STATE(4539)] = 70924, - [SMALL_STATE(4540)] = 71063, - [SMALL_STATE(4541)] = 71192, - [SMALL_STATE(4542)] = 71323, - [SMALL_STATE(4543)] = 71450, - [SMALL_STATE(4544)] = 71575, - [SMALL_STATE(4545)] = 71678, - [SMALL_STATE(4546)] = 71811, - [SMALL_STATE(4547)] = 71946, - [SMALL_STATE(4548)] = 72085, - [SMALL_STATE(4549)] = 72224, - [SMALL_STATE(4550)] = 72363, - [SMALL_STATE(4551)] = 72502, - [SMALL_STATE(4552)] = 72641, - [SMALL_STATE(4553)] = 72770, - [SMALL_STATE(4554)] = 72901, - [SMALL_STATE(4555)] = 73028, - [SMALL_STATE(4556)] = 73153, - [SMALL_STATE(4557)] = 73286, - [SMALL_STATE(4558)] = 73421, - [SMALL_STATE(4559)] = 73560, - [SMALL_STATE(4560)] = 73701, - [SMALL_STATE(4561)] = 73790, - [SMALL_STATE(4562)] = 73877, - [SMALL_STATE(4563)] = 73964, - [SMALL_STATE(4564)] = 74065, - [SMALL_STATE(4565)] = 74204, - [SMALL_STATE(4566)] = 74317, - [SMALL_STATE(4567)] = 74434, - [SMALL_STATE(4568)] = 74545, - [SMALL_STATE(4569)] = 74658, - [SMALL_STATE(4570)] = 74743, - [SMALL_STATE(4571)] = 74844, - [SMALL_STATE(4572)] = 74961, - [SMALL_STATE(4573)] = 75072, - [SMALL_STATE(4574)] = 75201, - [SMALL_STATE(4575)] = 75332, - [SMALL_STATE(4576)] = 75459, - [SMALL_STATE(4577)] = 75572, - [SMALL_STATE(4578)] = 75697, - [SMALL_STATE(4579)] = 75830, - [SMALL_STATE(4580)] = 75965, - [SMALL_STATE(4581)] = 76104, - [SMALL_STATE(4582)] = 76243, - [SMALL_STATE(4583)] = 76346, - [SMALL_STATE(4584)] = 76485, - [SMALL_STATE(4585)] = 76624, - [SMALL_STATE(4586)] = 76763, - [SMALL_STATE(4587)] = 76902, - [SMALL_STATE(4588)] = 77003, - [SMALL_STATE(4589)] = 77106, - [SMALL_STATE(4590)] = 77191, - [SMALL_STATE(4591)] = 77276, - [SMALL_STATE(4592)] = 77369, - [SMALL_STATE(4593)] = 77454, - [SMALL_STATE(4594)] = 77545, - [SMALL_STATE(4595)] = 77630, - [SMALL_STATE(4596)] = 77747, - [SMALL_STATE(4597)] = 77858, - [SMALL_STATE(4598)] = 77971, - [SMALL_STATE(4599)] = 78074, - [SMALL_STATE(4600)] = 78159, - [SMALL_STATE(4601)] = 78270, - [SMALL_STATE(4602)] = 78359, - [SMALL_STATE(4603)] = 78448, - [SMALL_STATE(4604)] = 78593, - [SMALL_STATE(4605)] = 78682, - [SMALL_STATE(4606)] = 78767, - [SMALL_STATE(4607)] = 78884, - [SMALL_STATE(4608)] = 78995, - [SMALL_STATE(4609)] = 79102, - [SMALL_STATE(4610)] = 79231, - [SMALL_STATE(4611)] = 79362, - [SMALL_STATE(4612)] = 79489, - [SMALL_STATE(4613)] = 79602, - [SMALL_STATE(4614)] = 79727, - [SMALL_STATE(4615)] = 79830, - [SMALL_STATE(4616)] = 79963, - [SMALL_STATE(4617)] = 80098, - [SMALL_STATE(4618)] = 80237, - [SMALL_STATE(4619)] = 80376, - [SMALL_STATE(4620)] = 80515, - [SMALL_STATE(4621)] = 80600, - [SMALL_STATE(4622)] = 80739, - [SMALL_STATE(4623)] = 80856, - [SMALL_STATE(4624)] = 80967, - [SMALL_STATE(4625)] = 81080, - [SMALL_STATE(4626)] = 81183, - [SMALL_STATE(4627)] = 81268, - [SMALL_STATE(4628)] = 81353, - [SMALL_STATE(4629)] = 81440, - [SMALL_STATE(4630)] = 81525, - [SMALL_STATE(4631)] = 81610, - [SMALL_STATE(4632)] = 81695, - [SMALL_STATE(4633)] = 81812, - [SMALL_STATE(4634)] = 81923, - [SMALL_STATE(4635)] = 82036, - [SMALL_STATE(4636)] = 82139, - [SMALL_STATE(4637)] = 82224, - [SMALL_STATE(4638)] = 82309, - [SMALL_STATE(4639)] = 82394, - [SMALL_STATE(4640)] = 82479, - [SMALL_STATE(4641)] = 82564, - [SMALL_STATE(4642)] = 82649, - [SMALL_STATE(4643)] = 82734, - [SMALL_STATE(4644)] = 82819, - [SMALL_STATE(4645)] = 82904, - [SMALL_STATE(4646)] = 82989, - [SMALL_STATE(4647)] = 83074, - [SMALL_STATE(4648)] = 83159, - [SMALL_STATE(4649)] = 83244, - [SMALL_STATE(4650)] = 83329, - [SMALL_STATE(4651)] = 83414, - [SMALL_STATE(4652)] = 83499, - [SMALL_STATE(4653)] = 83584, - [SMALL_STATE(4654)] = 83669, - [SMALL_STATE(4655)] = 83754, - [SMALL_STATE(4656)] = 83839, - [SMALL_STATE(4657)] = 83978, - [SMALL_STATE(4658)] = 84063, - [SMALL_STATE(4659)] = 84148, - [SMALL_STATE(4660)] = 84233, - [SMALL_STATE(4661)] = 84318, - [SMALL_STATE(4662)] = 84403, - [SMALL_STATE(4663)] = 84516, - [SMALL_STATE(4664)] = 84601, - [SMALL_STATE(4665)] = 84686, - [SMALL_STATE(4666)] = 84771, - [SMALL_STATE(4667)] = 84856, - [SMALL_STATE(4668)] = 84941, - [SMALL_STATE(4669)] = 85026, - [SMALL_STATE(4670)] = 85111, - [SMALL_STATE(4671)] = 85196, - [SMALL_STATE(4672)] = 85297, - [SMALL_STATE(4673)] = 85382, - [SMALL_STATE(4674)] = 85467, - [SMALL_STATE(4675)] = 85552, - [SMALL_STATE(4676)] = 85691, - [SMALL_STATE(4677)] = 85794, - [SMALL_STATE(4678)] = 85933, - [SMALL_STATE(4679)] = 86072, - [SMALL_STATE(4680)] = 86161, - [SMALL_STATE(4681)] = 86250, - [SMALL_STATE(4682)] = 86335, - [SMALL_STATE(4683)] = 86452, - [SMALL_STATE(4684)] = 86563, - [SMALL_STATE(4685)] = 86670, - [SMALL_STATE(4686)] = 86757, - [SMALL_STATE(4687)] = 86846, - [SMALL_STATE(4688)] = 86975, - [SMALL_STATE(4689)] = 87106, - [SMALL_STATE(4690)] = 87233, - [SMALL_STATE(4691)] = 87346, - [SMALL_STATE(4692)] = 87471, - [SMALL_STATE(4693)] = 87574, - [SMALL_STATE(4694)] = 87707, - [SMALL_STATE(4695)] = 87842, - [SMALL_STATE(4696)] = 87981, - [SMALL_STATE(4697)] = 88066, - [SMALL_STATE(4698)] = 88205, - [SMALL_STATE(4699)] = 88344, - [SMALL_STATE(4700)] = 88447, - [SMALL_STATE(4701)] = 88532, - [SMALL_STATE(4702)] = 88617, - [SMALL_STATE(4703)] = 88702, - [SMALL_STATE(4704)] = 88791, - [SMALL_STATE(4705)] = 88880, - [SMALL_STATE(4706)] = 89019, - [SMALL_STATE(4707)] = 89104, - [SMALL_STATE(4708)] = 89243, - [SMALL_STATE(4709)] = 89328, - [SMALL_STATE(4710)] = 89413, - [SMALL_STATE(4711)] = 89498, - [SMALL_STATE(4712)] = 89583, - [SMALL_STATE(4713)] = 89668, - [SMALL_STATE(4714)] = 89807, - [SMALL_STATE(4715)] = 89892, - [SMALL_STATE(4716)] = 89977, - [SMALL_STATE(4717)] = 90062, - [SMALL_STATE(4718)] = 90149, - [SMALL_STATE(4719)] = 90234, - [SMALL_STATE(4720)] = 90319, - [SMALL_STATE(4721)] = 90404, - [SMALL_STATE(4722)] = 90489, - [SMALL_STATE(4723)] = 90574, - [SMALL_STATE(4724)] = 90659, - [SMALL_STATE(4725)] = 90744, - [SMALL_STATE(4726)] = 90851, - [SMALL_STATE(4727)] = 90990, - [SMALL_STATE(4728)] = 91129, - [SMALL_STATE(4729)] = 91268, - [SMALL_STATE(4730)] = 91407, - [SMALL_STATE(4731)] = 91492, - [SMALL_STATE(4732)] = 91631, - [SMALL_STATE(4733)] = 91770, - [SMALL_STATE(4734)] = 91857, - [SMALL_STATE(4735)] = 91996, - [SMALL_STATE(4736)] = 92099, - [SMALL_STATE(4737)] = 92238, - [SMALL_STATE(4738)] = 92377, - [SMALL_STATE(4739)] = 92480, - [SMALL_STATE(4740)] = 92619, - [SMALL_STATE(4741)] = 92758, - [SMALL_STATE(4742)] = 92897, - [SMALL_STATE(4743)] = 93036, - [SMALL_STATE(4744)] = 93175, - [SMALL_STATE(4745)] = 93314, - [SMALL_STATE(4746)] = 93417, - [SMALL_STATE(4747)] = 93556, - [SMALL_STATE(4748)] = 93685, - [SMALL_STATE(4749)] = 93816, - [SMALL_STATE(4750)] = 93943, - [SMALL_STATE(4751)] = 94068, - [SMALL_STATE(4752)] = 94201, - [SMALL_STATE(4753)] = 94336, - [SMALL_STATE(4754)] = 94475, - [SMALL_STATE(4755)] = 94614, - [SMALL_STATE(4756)] = 94753, - [SMALL_STATE(4757)] = 94892, - [SMALL_STATE(4758)] = 95031, - [SMALL_STATE(4759)] = 95148, - [SMALL_STATE(4760)] = 95259, - [SMALL_STATE(4761)] = 95366, - [SMALL_STATE(4762)] = 95479, - [SMALL_STATE(4763)] = 95564, - [SMALL_STATE(4764)] = 95649, - [SMALL_STATE(4765)] = 95788, - [SMALL_STATE(4766)] = 95927, - [SMALL_STATE(4767)] = 96066, - [SMALL_STATE(4768)] = 96205, - [SMALL_STATE(4769)] = 96312, - [SMALL_STATE(4770)] = 96451, - [SMALL_STATE(4771)] = 96580, - [SMALL_STATE(4772)] = 96711, - [SMALL_STATE(4773)] = 96838, - [SMALL_STATE(4774)] = 96963, - [SMALL_STATE(4775)] = 97096, - [SMALL_STATE(4776)] = 97231, - [SMALL_STATE(4777)] = 97370, - [SMALL_STATE(4778)] = 97509, - [SMALL_STATE(4779)] = 97648, - [SMALL_STATE(4780)] = 97787, - [SMALL_STATE(4781)] = 97926, - [SMALL_STATE(4782)] = 98011, - [SMALL_STATE(4783)] = 98150, - [SMALL_STATE(4784)] = 98257, - [SMALL_STATE(4785)] = 98396, - [SMALL_STATE(4786)] = 98535, - [SMALL_STATE(4787)] = 98674, - [SMALL_STATE(4788)] = 98813, - [SMALL_STATE(4789)] = 98916, - [SMALL_STATE(4790)] = 99045, - [SMALL_STATE(4791)] = 99148, - [SMALL_STATE(4792)] = 99255, - [SMALL_STATE(4793)] = 99386, - [SMALL_STATE(4794)] = 99513, - [SMALL_STATE(4795)] = 99638, - [SMALL_STATE(4796)] = 99771, - [SMALL_STATE(4797)] = 99906, - [SMALL_STATE(4798)] = 100045, - [SMALL_STATE(4799)] = 100184, - [SMALL_STATE(4800)] = 100323, - [SMALL_STATE(4801)] = 100462, - [SMALL_STATE(4802)] = 100549, - [SMALL_STATE(4803)] = 100638, - [SMALL_STATE(4804)] = 100727, - [SMALL_STATE(4805)] = 100866, - [SMALL_STATE(4806)] = 101005, - [SMALL_STATE(4807)] = 101108, - [SMALL_STATE(4808)] = 101215, - [SMALL_STATE(4809)] = 101354, - [SMALL_STATE(4810)] = 101457, - [SMALL_STATE(4811)] = 101560, - [SMALL_STATE(4812)] = 101663, - [SMALL_STATE(4813)] = 101748, - [SMALL_STATE(4814)] = 101833, - [SMALL_STATE(4815)] = 101918, - [SMALL_STATE(4816)] = 102003, - [SMALL_STATE(4817)] = 102088, - [SMALL_STATE(4818)] = 102173, - [SMALL_STATE(4819)] = 102258, - [SMALL_STATE(4820)] = 102347, - [SMALL_STATE(4821)] = 102448, - [SMALL_STATE(4822)] = 102537, - [SMALL_STATE(4823)] = 102626, - [SMALL_STATE(4824)] = 102715, - [SMALL_STATE(4825)] = 102802, - [SMALL_STATE(4826)] = 102891, - [SMALL_STATE(4827)] = 103008, - [SMALL_STATE(4828)] = 103119, - [SMALL_STATE(4829)] = 103226, - [SMALL_STATE(4830)] = 103355, - [SMALL_STATE(4831)] = 103486, - [SMALL_STATE(4832)] = 103613, - [SMALL_STATE(4833)] = 103726, - [SMALL_STATE(4834)] = 103851, - [SMALL_STATE(4835)] = 103992, - [SMALL_STATE(4836)] = 104109, - [SMALL_STATE(4837)] = 104220, - [SMALL_STATE(4838)] = 104327, - [SMALL_STATE(4839)] = 104456, - [SMALL_STATE(4840)] = 104587, - [SMALL_STATE(4841)] = 104714, - [SMALL_STATE(4842)] = 104827, - [SMALL_STATE(4843)] = 104952, - [SMALL_STATE(4844)] = 105055, - [SMALL_STATE(4845)] = 105188, - [SMALL_STATE(4846)] = 105323, - [SMALL_STATE(4847)] = 105462, - [SMALL_STATE(4848)] = 105565, - [SMALL_STATE(4849)] = 105706, - [SMALL_STATE(4850)] = 105847, - [SMALL_STATE(4851)] = 105980, - [SMALL_STATE(4852)] = 106115, - [SMALL_STATE(4853)] = 106254, - [SMALL_STATE(4854)] = 106395, - [SMALL_STATE(4855)] = 106536, - [SMALL_STATE(4856)] = 106675, - [SMALL_STATE(4857)] = 106760, - [SMALL_STATE(4858)] = 106845, - [SMALL_STATE(4859)] = 106984, - [SMALL_STATE(4860)] = 107069, - [SMALL_STATE(4861)] = 107158, - [SMALL_STATE(4862)] = 107247, - [SMALL_STATE(4863)] = 107336, - [SMALL_STATE(4864)] = 107423, - [SMALL_STATE(4865)] = 107512, - [SMALL_STATE(4866)] = 107597, - [SMALL_STATE(4867)] = 107682, - [SMALL_STATE(4868)] = 107767, - [SMALL_STATE(4869)] = 107852, - [SMALL_STATE(4870)] = 107937, - [SMALL_STATE(4871)] = 108022, - [SMALL_STATE(4872)] = 108107, - [SMALL_STATE(4873)] = 108224, - [SMALL_STATE(4874)] = 108335, - [SMALL_STATE(4875)] = 108464, - [SMALL_STATE(4876)] = 108595, - [SMALL_STATE(4877)] = 108722, - [SMALL_STATE(4878)] = 108835, - [SMALL_STATE(4879)] = 108960, - [SMALL_STATE(4880)] = 109093, - [SMALL_STATE(4881)] = 109228, - [SMALL_STATE(4882)] = 109367, - [SMALL_STATE(4883)] = 109508, - [SMALL_STATE(4884)] = 109649, - [SMALL_STATE(4885)] = 109734, - [SMALL_STATE(4886)] = 109875, - [SMALL_STATE(4887)] = 109978, - [SMALL_STATE(4888)] = 110063, - [SMALL_STATE(4889)] = 110202, - [SMALL_STATE(4890)] = 110290, - [SMALL_STATE(4891)] = 110432, - [SMALL_STATE(4892)] = 110520, - [SMALL_STATE(4893)] = 110658, - [SMALL_STATE(4894)] = 110796, - [SMALL_STATE(4895)] = 110912, - [SMALL_STATE(4896)] = 111028, - [SMALL_STATE(4897)] = 111138, - [SMALL_STATE(4898)] = 111244, - [SMALL_STATE(4899)] = 111372, - [SMALL_STATE(4900)] = 111502, - [SMALL_STATE(4901)] = 111614, - [SMALL_STATE(4902)] = 111756, - [SMALL_STATE(4903)] = 111882, - [SMALL_STATE(4904)] = 111994, - [SMALL_STATE(4905)] = 112110, - [SMALL_STATE(4906)] = 112220, - [SMALL_STATE(4907)] = 112348, - [SMALL_STATE(4908)] = 112478, - [SMALL_STATE(4909)] = 112604, - [SMALL_STATE(4910)] = 112716, - [SMALL_STATE(4911)] = 112840, - [SMALL_STATE(4912)] = 112972, - [SMALL_STATE(4913)] = 113110, - [SMALL_STATE(4914)] = 113212, - [SMALL_STATE(4915)] = 113350, - [SMALL_STATE(4916)] = 113452, - [SMALL_STATE(4917)] = 113590, - [SMALL_STATE(4918)] = 113728, - [SMALL_STATE(4919)] = 113866, - [SMALL_STATE(4920)] = 114004, - [SMALL_STATE(4921)] = 114128, - [SMALL_STATE(4922)] = 114260, - [SMALL_STATE(4923)] = 114372, - [SMALL_STATE(4924)] = 114506, - [SMALL_STATE(4925)] = 114618, - [SMALL_STATE(4926)] = 114730, - [SMALL_STATE(4927)] = 114842, - [SMALL_STATE(4928)] = 114980, - [SMALL_STATE(4929)] = 115092, - [SMALL_STATE(4930)] = 115204, - [SMALL_STATE(4931)] = 115292, - [SMALL_STATE(4932)] = 115380, - [SMALL_STATE(4933)] = 115518, - [SMALL_STATE(4934)] = 115656, - [SMALL_STATE(4935)] = 115798, - [SMALL_STATE(4936)] = 115890, - [SMALL_STATE(4937)] = 116000, - [SMALL_STATE(4938)] = 116106, - [SMALL_STATE(4939)] = 116246, - [SMALL_STATE(4940)] = 116374, - [SMALL_STATE(4941)] = 116512, - [SMALL_STATE(4942)] = 116652, - [SMALL_STATE(4943)] = 116790, - [SMALL_STATE(4944)] = 116932, - [SMALL_STATE(4945)] = 117044, - [SMALL_STATE(4946)] = 117186, - [SMALL_STATE(4947)] = 117288, - [SMALL_STATE(4948)] = 117418, - [SMALL_STATE(4949)] = 117560, - [SMALL_STATE(4950)] = 117686, - [SMALL_STATE(4951)] = 117798, - [SMALL_STATE(4952)] = 117936, - [SMALL_STATE(4953)] = 118028, - [SMALL_STATE(4954)] = 118114, - [SMALL_STATE(4955)] = 118252, - [SMALL_STATE(4956)] = 118390, - [SMALL_STATE(4957)] = 118506, - [SMALL_STATE(4958)] = 118616, - [SMALL_STATE(4959)] = 118744, - [SMALL_STATE(4960)] = 118874, - [SMALL_STATE(4961)] = 119000, - [SMALL_STATE(4962)] = 119112, - [SMALL_STATE(4963)] = 119236, - [SMALL_STATE(4964)] = 119368, - [SMALL_STATE(4965)] = 119502, - [SMALL_STATE(4966)] = 119640, - [SMALL_STATE(4967)] = 119726, - [SMALL_STATE(4968)] = 119814, - [SMALL_STATE(4969)] = 119926, - [SMALL_STATE(4970)] = 120064, - [SMALL_STATE(4971)] = 120206, - [SMALL_STATE(4972)] = 120330, - [SMALL_STATE(4973)] = 120468, - [SMALL_STATE(4974)] = 120610, - [SMALL_STATE(4975)] = 120752, - [SMALL_STATE(4976)] = 120890, - [SMALL_STATE(4977)] = 121028, - [SMALL_STATE(4978)] = 121130, - [SMALL_STATE(4979)] = 121268, - [SMALL_STATE(4980)] = 121406, - [SMALL_STATE(4981)] = 121544, - [SMALL_STATE(4982)] = 121682, - [SMALL_STATE(4983)] = 121794, - [SMALL_STATE(4984)] = 121904, - [SMALL_STATE(4985)] = 122042, - [SMALL_STATE(4986)] = 122158, - [SMALL_STATE(4987)] = 122268, - [SMALL_STATE(4988)] = 122396, - [SMALL_STATE(4989)] = 122526, - [SMALL_STATE(4990)] = 122652, - [SMALL_STATE(4991)] = 122764, - [SMALL_STATE(4992)] = 122888, - [SMALL_STATE(4993)] = 123020, - [SMALL_STATE(4994)] = 123154, - [SMALL_STATE(4995)] = 123292, - [SMALL_STATE(4996)] = 123434, - [SMALL_STATE(4997)] = 123550, - [SMALL_STATE(4998)] = 123688, - [SMALL_STATE(4999)] = 123826, - [SMALL_STATE(5000)] = 123964, - [SMALL_STATE(5001)] = 124106, - [SMALL_STATE(5002)] = 124248, - [SMALL_STATE(5003)] = 124360, - [SMALL_STATE(5004)] = 124470, - [SMALL_STATE(5005)] = 124558, - [SMALL_STATE(5006)] = 124696, - [SMALL_STATE(5007)] = 124798, - [SMALL_STATE(5008)] = 124936, - [SMALL_STATE(5009)] = 125074, - [SMALL_STATE(5010)] = 125212, - [SMALL_STATE(5011)] = 125350, - [SMALL_STATE(5012)] = 125456, - [SMALL_STATE(5013)] = 125584, - [SMALL_STATE(5014)] = 125714, - [SMALL_STATE(5015)] = 125840, - [SMALL_STATE(5016)] = 125952, - [SMALL_STATE(5017)] = 126076, - [SMALL_STATE(5018)] = 126162, - [SMALL_STATE(5019)] = 126264, - [SMALL_STATE(5020)] = 126376, - [SMALL_STATE(5021)] = 126514, - [SMALL_STATE(5022)] = 126616, - [SMALL_STATE(5023)] = 126748, - [SMALL_STATE(5024)] = 126834, - [SMALL_STATE(5025)] = 126936, - [SMALL_STATE(5026)] = 127048, - [SMALL_STATE(5027)] = 127182, - [SMALL_STATE(5028)] = 127320, - [SMALL_STATE(5029)] = 127462, - [SMALL_STATE(5030)] = 127600, - [SMALL_STATE(5031)] = 127712, - [SMALL_STATE(5032)] = 127850, - [SMALL_STATE(5033)] = 127988, - [SMALL_STATE(5034)] = 128090, - [SMALL_STATE(5035)] = 128228, - [SMALL_STATE(5036)] = 128312, - [SMALL_STATE(5037)] = 128400, - [SMALL_STATE(5038)] = 128512, - [SMALL_STATE(5039)] = 128624, - [SMALL_STATE(5040)] = 128762, - [SMALL_STATE(5041)] = 128904, - [SMALL_STATE(5042)] = 129020, - [SMALL_STATE(5043)] = 129130, - [SMALL_STATE(5044)] = 129258, - [SMALL_STATE(5045)] = 129388, - [SMALL_STATE(5046)] = 129514, - [SMALL_STATE(5047)] = 129626, - [SMALL_STATE(5048)] = 129750, - [SMALL_STATE(5049)] = 129882, - [SMALL_STATE(5050)] = 129994, - [SMALL_STATE(5051)] = 130132, - [SMALL_STATE(5052)] = 130266, - [SMALL_STATE(5053)] = 130372, - [SMALL_STATE(5054)] = 130510, - [SMALL_STATE(5055)] = 130612, - [SMALL_STATE(5056)] = 130700, - [SMALL_STATE(5057)] = 130840, - [SMALL_STATE(5058)] = 130952, - [SMALL_STATE(5059)] = 131090, - [SMALL_STATE(5060)] = 131196, - [SMALL_STATE(5061)] = 131298, - [SMALL_STATE(5062)] = 131410, - [SMALL_STATE(5063)] = 131516, - [SMALL_STATE(5064)] = 131618, - [SMALL_STATE(5065)] = 131756, - [SMALL_STATE(5066)] = 131868, - [SMALL_STATE(5067)] = 132006, - [SMALL_STATE(5068)] = 132112, - [SMALL_STATE(5069)] = 132214, - [SMALL_STATE(5070)] = 132326, - [SMALL_STATE(5071)] = 132464, - [SMALL_STATE(5072)] = 132570, - [SMALL_STATE(5073)] = 132672, - [SMALL_STATE(5074)] = 132810, - [SMALL_STATE(5075)] = 132952, - [SMALL_STATE(5076)] = 133040, - [SMALL_STATE(5077)] = 133178, - [SMALL_STATE(5078)] = 133280, - [SMALL_STATE(5079)] = 133418, - [SMALL_STATE(5080)] = 133530, - [SMALL_STATE(5081)] = 133668, - [SMALL_STATE(5082)] = 133774, - [SMALL_STATE(5083)] = 133912, - [SMALL_STATE(5084)] = 134050, - [SMALL_STATE(5085)] = 134152, - [SMALL_STATE(5086)] = 134294, - [SMALL_STATE(5087)] = 134380, - [SMALL_STATE(5088)] = 134522, - [SMALL_STATE(5089)] = 134634, - [SMALL_STATE(5090)] = 134772, - [SMALL_STATE(5091)] = 134910, - [SMALL_STATE(5092)] = 135048, - [SMALL_STATE(5093)] = 135186, - [SMALL_STATE(5094)] = 135302, - [SMALL_STATE(5095)] = 135412, - [SMALL_STATE(5096)] = 135540, - [SMALL_STATE(5097)] = 135670, - [SMALL_STATE(5098)] = 135796, - [SMALL_STATE(5099)] = 135908, - [SMALL_STATE(5100)] = 136032, - [SMALL_STATE(5101)] = 136164, - [SMALL_STATE(5102)] = 136298, - [SMALL_STATE(5103)] = 136436, - [SMALL_STATE(5104)] = 136574, - [SMALL_STATE(5105)] = 136676, - [SMALL_STATE(5106)] = 136814, - [SMALL_STATE(5107)] = 136952, - [SMALL_STATE(5108)] = 137090, - [SMALL_STATE(5109)] = 137202, - [SMALL_STATE(5110)] = 137340, - [SMALL_STATE(5111)] = 137452, - [SMALL_STATE(5112)] = 137590, - [SMALL_STATE(5113)] = 137722, - [SMALL_STATE(5114)] = 137856, - [SMALL_STATE(5115)] = 137998, - [SMALL_STATE(5116)] = 138086, - [SMALL_STATE(5117)] = 138174, - [SMALL_STATE(5118)] = 138262, - [SMALL_STATE(5119)] = 138348, - [SMALL_STATE(5120)] = 138436, - [SMALL_STATE(5121)] = 138574, - [SMALL_STATE(5122)] = 138712, - [SMALL_STATE(5123)] = 138800, - [SMALL_STATE(5124)] = 138888, - [SMALL_STATE(5125)] = 138976, - [SMALL_STATE(5126)] = 139062, - [SMALL_STATE(5127)] = 139150, - [SMALL_STATE(5128)] = 139292, - [SMALL_STATE(5129)] = 139380, - [SMALL_STATE(5130)] = 139468, - [SMALL_STATE(5131)] = 139556, - [SMALL_STATE(5132)] = 139642, - [SMALL_STATE(5133)] = 139730, - [SMALL_STATE(5134)] = 139818, - [SMALL_STATE(5135)] = 139906, - [SMALL_STATE(5136)] = 139994, - [SMALL_STATE(5137)] = 140080, - [SMALL_STATE(5138)] = 140168, - [SMALL_STATE(5139)] = 140310, - [SMALL_STATE(5140)] = 140452, - [SMALL_STATE(5141)] = 140554, - [SMALL_STATE(5142)] = 140666, - [SMALL_STATE(5143)] = 140782, - [SMALL_STATE(5144)] = 140892, - [SMALL_STATE(5145)] = 141020, - [SMALL_STATE(5146)] = 141150, - [SMALL_STATE(5147)] = 141276, - [SMALL_STATE(5148)] = 141388, - [SMALL_STATE(5149)] = 141512, - [SMALL_STATE(5150)] = 141644, - [SMALL_STATE(5151)] = 141778, - [SMALL_STATE(5152)] = 141916, - [SMALL_STATE(5153)] = 142004, - [SMALL_STATE(5154)] = 142142, - [SMALL_STATE(5155)] = 142230, - [SMALL_STATE(5156)] = 142318, - [SMALL_STATE(5157)] = 142420, - [SMALL_STATE(5158)] = 142506, - [SMALL_STATE(5159)] = 142644, - [SMALL_STATE(5160)] = 142782, - [SMALL_STATE(5161)] = 142920, - [SMALL_STATE(5162)] = 143058, - [SMALL_STATE(5163)] = 143192, - [SMALL_STATE(5164)] = 143329, - [SMALL_STATE(5165)] = 143414, - [SMALL_STATE(5166)] = 143551, - [SMALL_STATE(5167)] = 143636, - [SMALL_STATE(5168)] = 143735, - [SMALL_STATE(5169)] = 143834, - [SMALL_STATE(5170)] = 143971, - [SMALL_STATE(5171)] = 144058, - [SMALL_STATE(5172)] = 144157, - [SMALL_STATE(5173)] = 144294, - [SMALL_STATE(5174)] = 144431, - [SMALL_STATE(5175)] = 144530, - [SMALL_STATE(5176)] = 144667, - [SMALL_STATE(5177)] = 144770, - [SMALL_STATE(5178)] = 144907, - [SMALL_STATE(5179)] = 145044, - [SMALL_STATE(5180)] = 145181, - [SMALL_STATE(5181)] = 145268, - [SMALL_STATE(5182)] = 145405, - [SMALL_STATE(5183)] = 145542, - [SMALL_STATE(5184)] = 145643, - [SMALL_STATE(5185)] = 145728, - [SMALL_STATE(5186)] = 145865, - [SMALL_STATE(5187)] = 145952, - [SMALL_STATE(5188)] = 146037, - [SMALL_STATE(5189)] = 146174, - [SMALL_STATE(5190)] = 146275, - [SMALL_STATE(5191)] = 146360, - [SMALL_STATE(5192)] = 146497, - [SMALL_STATE(5193)] = 146634, - [SMALL_STATE(5194)] = 146739, - [SMALL_STATE(5195)] = 146876, - [SMALL_STATE(5196)] = 146977, - [SMALL_STATE(5197)] = 147114, - [SMALL_STATE(5198)] = 147215, - [SMALL_STATE(5199)] = 147352, - [SMALL_STATE(5200)] = 147437, - [SMALL_STATE(5201)] = 147574, - [SMALL_STATE(5202)] = 147711, - [SMALL_STATE(5203)] = 147798, - [SMALL_STATE(5204)] = 147913, - [SMALL_STATE(5205)] = 148022, - [SMALL_STATE(5206)] = 148127, - [SMALL_STATE(5207)] = 148214, - [SMALL_STATE(5208)] = 148341, - [SMALL_STATE(5209)] = 148470, - [SMALL_STATE(5210)] = 148607, - [SMALL_STATE(5211)] = 148744, - [SMALL_STATE(5212)] = 148837, - [SMALL_STATE(5213)] = 148976, - [SMALL_STATE(5214)] = 149101, - [SMALL_STATE(5215)] = 149200, - [SMALL_STATE(5216)] = 149327, - [SMALL_STATE(5217)] = 149464, - [SMALL_STATE(5218)] = 149563, - [SMALL_STATE(5219)] = 149662, - [SMALL_STATE(5220)] = 149777, - [SMALL_STATE(5221)] = 149886, - [SMALL_STATE(5222)] = 149991, - [SMALL_STATE(5223)] = 150090, - [SMALL_STATE(5224)] = 150201, - [SMALL_STATE(5225)] = 150338, - [SMALL_STATE(5226)] = 150449, - [SMALL_STATE(5227)] = 150586, - [SMALL_STATE(5228)] = 150725, - [SMALL_STATE(5229)] = 150824, - [SMALL_STATE(5230)] = 150923, - [SMALL_STATE(5231)] = 151046, - [SMALL_STATE(5232)] = 151183, - [SMALL_STATE(5233)] = 151270, - [SMALL_STATE(5234)] = 151409, - [SMALL_STATE(5235)] = 151510, - [SMALL_STATE(5236)] = 151649, - [SMALL_STATE(5237)] = 151740, - [SMALL_STATE(5238)] = 151877, - [SMALL_STATE(5239)] = 152016, - [SMALL_STATE(5240)] = 152145, - [SMALL_STATE(5241)] = 152270, - [SMALL_STATE(5242)] = 152409, - [SMALL_STATE(5243)] = 152540, - [SMALL_STATE(5244)] = 152655, - [SMALL_STATE(5245)] = 152764, - [SMALL_STATE(5246)] = 152869, - [SMALL_STATE(5247)] = 152996, - [SMALL_STATE(5248)] = 153125, - [SMALL_STATE(5249)] = 153250, - [SMALL_STATE(5250)] = 153361, - [SMALL_STATE(5251)] = 153484, - [SMALL_STATE(5252)] = 153615, - [SMALL_STATE(5253)] = 153748, - [SMALL_STATE(5254)] = 153885, - [SMALL_STATE(5255)] = 154018, - [SMALL_STATE(5256)] = 154129, - [SMALL_STATE(5257)] = 154252, - [SMALL_STATE(5258)] = 154383, - [SMALL_STATE(5259)] = 154520, - [SMALL_STATE(5260)] = 154619, - [SMALL_STATE(5261)] = 154756, - [SMALL_STATE(5262)] = 154857, - [SMALL_STATE(5263)] = 154956, - [SMALL_STATE(5264)] = 155041, - [SMALL_STATE(5265)] = 155126, - [SMALL_STATE(5266)] = 155263, - [SMALL_STATE(5267)] = 155400, - [SMALL_STATE(5268)] = 155533, - [SMALL_STATE(5269)] = 155670, - [SMALL_STATE(5270)] = 155757, - [SMALL_STATE(5271)] = 155860, - [SMALL_STATE(5272)] = 155997, - [SMALL_STATE(5273)] = 156112, - [SMALL_STATE(5274)] = 156249, - [SMALL_STATE(5275)] = 156358, - [SMALL_STATE(5276)] = 156443, - [SMALL_STATE(5277)] = 156542, - [SMALL_STATE(5278)] = 156627, - [SMALL_STATE(5279)] = 156726, - [SMALL_STATE(5280)] = 156833, - [SMALL_STATE(5281)] = 156932, - [SMALL_STATE(5282)] = 157069, - [SMALL_STATE(5283)] = 157174, - [SMALL_STATE(5284)] = 157259, - [SMALL_STATE(5285)] = 157398, - [SMALL_STATE(5286)] = 157485, - [SMALL_STATE(5287)] = 157584, - [SMALL_STATE(5288)] = 157693, - [SMALL_STATE(5289)] = 157792, - [SMALL_STATE(5290)] = 157931, - [SMALL_STATE(5291)] = 158058, - [SMALL_STATE(5292)] = 158157, - [SMALL_STATE(5293)] = 158256, - [SMALL_STATE(5294)] = 158355, - [SMALL_STATE(5295)] = 158454, - [SMALL_STATE(5296)] = 158591, - [SMALL_STATE(5297)] = 158690, - [SMALL_STATE(5298)] = 158789, - [SMALL_STATE(5299)] = 158888, - [SMALL_STATE(5300)] = 158987, - [SMALL_STATE(5301)] = 159116, - [SMALL_STATE(5302)] = 159241, - [SMALL_STATE(5303)] = 159326, - [SMALL_STATE(5304)] = 159409, - [SMALL_STATE(5305)] = 159492, - [SMALL_STATE(5306)] = 159591, - [SMALL_STATE(5307)] = 159690, - [SMALL_STATE(5308)] = 159789, - [SMALL_STATE(5309)] = 159882, - [SMALL_STATE(5310)] = 160021, - [SMALL_STATE(5311)] = 160158, - [SMALL_STATE(5312)] = 160269, - [SMALL_STATE(5313)] = 160368, - [SMALL_STATE(5314)] = 160505, - [SMALL_STATE(5315)] = 160604, - [SMALL_STATE(5316)] = 160741, - [SMALL_STATE(5317)] = 160878, - [SMALL_STATE(5318)] = 161015, - [SMALL_STATE(5319)] = 161116, - [SMALL_STATE(5320)] = 161215, - [SMALL_STATE(5321)] = 161338, - [SMALL_STATE(5322)] = 161437, - [SMALL_STATE(5323)] = 161536, - [SMALL_STATE(5324)] = 161635, - [SMALL_STATE(5325)] = 161722, - [SMALL_STATE(5326)] = 161821, - [SMALL_STATE(5327)] = 161920, - [SMALL_STATE(5328)] = 162057, - [SMALL_STATE(5329)] = 162194, - [SMALL_STATE(5330)] = 162293, - [SMALL_STATE(5331)] = 162430, - [SMALL_STATE(5332)] = 162567, - [SMALL_STATE(5333)] = 162666, - [SMALL_STATE(5334)] = 162767, - [SMALL_STATE(5335)] = 162904, - [SMALL_STATE(5336)] = 163041, - [SMALL_STATE(5337)] = 163178, - [SMALL_STATE(5338)] = 163315, - [SMALL_STATE(5339)] = 163402, - [SMALL_STATE(5340)] = 163501, - [SMALL_STATE(5341)] = 163616, - [SMALL_STATE(5342)] = 163715, - [SMALL_STATE(5343)] = 163814, - [SMALL_STATE(5344)] = 163913, - [SMALL_STATE(5345)] = 164012, - [SMALL_STATE(5346)] = 164149, - [SMALL_STATE(5347)] = 164288, - [SMALL_STATE(5348)] = 164427, - [SMALL_STATE(5349)] = 164558, - [SMALL_STATE(5350)] = 164691, - [SMALL_STATE(5351)] = 164828, - [SMALL_STATE(5352)] = 164965, - [SMALL_STATE(5353)] = 165092, - [SMALL_STATE(5354)] = 165231, - [SMALL_STATE(5355)] = 165332, - [SMALL_STATE(5356)] = 165469, - [SMALL_STATE(5357)] = 165570, - [SMALL_STATE(5358)] = 165699, - [SMALL_STATE(5359)] = 165824, - [SMALL_STATE(5360)] = 165933, - [SMALL_STATE(5361)] = 166056, - [SMALL_STATE(5362)] = 166187, - [SMALL_STATE(5363)] = 166274, - [SMALL_STATE(5364)] = 166361, - [SMALL_STATE(5365)] = 166498, - [SMALL_STATE(5366)] = 166597, - [SMALL_STATE(5367)] = 166696, - [SMALL_STATE(5368)] = 166829, - [SMALL_STATE(5369)] = 166928, - [SMALL_STATE(5370)] = 167065, - [SMALL_STATE(5371)] = 167174, - [SMALL_STATE(5372)] = 167310, - [SMALL_STATE(5373)] = 167446, - [SMALL_STATE(5374)] = 167560, - [SMALL_STATE(5375)] = 167696, - [SMALL_STATE(5376)] = 167804, - [SMALL_STATE(5377)] = 167908, - [SMALL_STATE(5378)] = 168034, - [SMALL_STATE(5379)] = 168162, - [SMALL_STATE(5380)] = 168286, - [SMALL_STATE(5381)] = 168396, - [SMALL_STATE(5382)] = 168518, - [SMALL_STATE(5383)] = 168618, - [SMALL_STATE(5384)] = 168748, - [SMALL_STATE(5385)] = 168880, - [SMALL_STATE(5386)] = 169016, - [SMALL_STATE(5387)] = 169152, - [SMALL_STATE(5388)] = 169288, - [SMALL_STATE(5389)] = 169424, - [SMALL_STATE(5390)] = 169560, - [SMALL_STATE(5391)] = 169696, - [SMALL_STATE(5392)] = 169832, - [SMALL_STATE(5393)] = 169968, - [SMALL_STATE(5394)] = 170104, - [SMALL_STATE(5395)] = 170240, - [SMALL_STATE(5396)] = 170376, - [SMALL_STATE(5397)] = 170468, - [SMALL_STATE(5398)] = 170552, - [SMALL_STATE(5399)] = 170688, - [SMALL_STATE(5400)] = 170824, - [SMALL_STATE(5401)] = 170908, - [SMALL_STATE(5402)] = 171044, - [SMALL_STATE(5403)] = 171180, - [SMALL_STATE(5404)] = 171264, - [SMALL_STATE(5405)] = 171400, - [SMALL_STATE(5406)] = 171536, - [SMALL_STATE(5407)] = 171672, - [SMALL_STATE(5408)] = 171776, - [SMALL_STATE(5409)] = 171912, - [SMALL_STATE(5410)] = 172048, - [SMALL_STATE(5411)] = 172184, - [SMALL_STATE(5412)] = 172320, - [SMALL_STATE(5413)] = 172456, - [SMALL_STATE(5414)] = 172592, - [SMALL_STATE(5415)] = 172728, - [SMALL_STATE(5416)] = 172864, - [SMALL_STATE(5417)] = 173000, - [SMALL_STATE(5418)] = 173136, - [SMALL_STATE(5419)] = 173272, - [SMALL_STATE(5420)] = 173408, - [SMALL_STATE(5421)] = 173544, - [SMALL_STATE(5422)] = 173680, - [SMALL_STATE(5423)] = 173816, - [SMALL_STATE(5424)] = 173952, - [SMALL_STATE(5425)] = 174088, - [SMALL_STATE(5426)] = 174224, - [SMALL_STATE(5427)] = 174360, - [SMALL_STATE(5428)] = 174496, - [SMALL_STATE(5429)] = 174632, - [SMALL_STATE(5430)] = 174768, - [SMALL_STATE(5431)] = 174904, - [SMALL_STATE(5432)] = 175040, - [SMALL_STATE(5433)] = 175176, - [SMALL_STATE(5434)] = 175302, - [SMALL_STATE(5435)] = 175430, - [SMALL_STATE(5436)] = 175554, - [SMALL_STATE(5437)] = 175676, - [SMALL_STATE(5438)] = 175806, - [SMALL_STATE(5439)] = 175938, - [SMALL_STATE(5440)] = 176074, - [SMALL_STATE(5441)] = 176210, - [SMALL_STATE(5442)] = 176346, - [SMALL_STATE(5443)] = 176482, - [SMALL_STATE(5444)] = 176618, - [SMALL_STATE(5445)] = 176732, - [SMALL_STATE(5446)] = 176868, - [SMALL_STATE(5447)] = 177004, - [SMALL_STATE(5448)] = 177112, - [SMALL_STATE(5449)] = 177216, - [SMALL_STATE(5450)] = 177342, - [SMALL_STATE(5451)] = 177470, - [SMALL_STATE(5452)] = 177606, - [SMALL_STATE(5453)] = 177730, - [SMALL_STATE(5454)] = 177840, - [SMALL_STATE(5455)] = 177962, - [SMALL_STATE(5456)] = 178062, - [SMALL_STATE(5457)] = 178192, - [SMALL_STATE(5458)] = 178324, - [SMALL_STATE(5459)] = 178460, - [SMALL_STATE(5460)] = 178596, - [SMALL_STATE(5461)] = 178732, - [SMALL_STATE(5462)] = 178868, - [SMALL_STATE(5463)] = 179004, - [SMALL_STATE(5464)] = 179140, - [SMALL_STATE(5465)] = 179226, - [SMALL_STATE(5466)] = 179362, - [SMALL_STATE(5467)] = 179446, - [SMALL_STATE(5468)] = 179532, - [SMALL_STATE(5469)] = 179668, - [SMALL_STATE(5470)] = 179804, - [SMALL_STATE(5471)] = 179940, - [SMALL_STATE(5472)] = 180044, - [SMALL_STATE(5473)] = 180180, - [SMALL_STATE(5474)] = 180316, - [SMALL_STATE(5475)] = 180452, - [SMALL_STATE(5476)] = 180588, - [SMALL_STATE(5477)] = 180724, - [SMALL_STATE(5478)] = 180860, - [SMALL_STATE(5479)] = 180996, - [SMALL_STATE(5480)] = 181132, - [SMALL_STATE(5481)] = 181216, - [SMALL_STATE(5482)] = 181352, - [SMALL_STATE(5483)] = 181488, - [SMALL_STATE(5484)] = 181624, - [SMALL_STATE(5485)] = 181760, - [SMALL_STATE(5486)] = 181896, - [SMALL_STATE(5487)] = 182032, - [SMALL_STATE(5488)] = 182120, - [SMALL_STATE(5489)] = 182256, - [SMALL_STATE(5490)] = 182392, - [SMALL_STATE(5491)] = 182528, - [SMALL_STATE(5492)] = 182664, - [SMALL_STATE(5493)] = 182800, - [SMALL_STATE(5494)] = 182936, - [SMALL_STATE(5495)] = 183072, - [SMALL_STATE(5496)] = 183208, - [SMALL_STATE(5497)] = 183344, - [SMALL_STATE(5498)] = 183480, - [SMALL_STATE(5499)] = 183616, - [SMALL_STATE(5500)] = 183752, - [SMALL_STATE(5501)] = 183838, - [SMALL_STATE(5502)] = 183974, - [SMALL_STATE(5503)] = 184064, - [SMALL_STATE(5504)] = 184150, - [SMALL_STATE(5505)] = 184286, - [SMALL_STATE(5506)] = 184422, - [SMALL_STATE(5507)] = 184558, - [SMALL_STATE(5508)] = 184694, - [SMALL_STATE(5509)] = 184830, - [SMALL_STATE(5510)] = 184966, - [SMALL_STATE(5511)] = 185102, - [SMALL_STATE(5512)] = 185238, - [SMALL_STATE(5513)] = 185374, - [SMALL_STATE(5514)] = 185510, - [SMALL_STATE(5515)] = 185646, - [SMALL_STATE(5516)] = 185782, - [SMALL_STATE(5517)] = 185918, - [SMALL_STATE(5518)] = 186054, - [SMALL_STATE(5519)] = 186190, - [SMALL_STATE(5520)] = 186326, - [SMALL_STATE(5521)] = 186412, - [SMALL_STATE(5522)] = 186548, - [SMALL_STATE(5523)] = 186634, - [SMALL_STATE(5524)] = 186720, - [SMALL_STATE(5525)] = 186856, - [SMALL_STATE(5526)] = 186942, - [SMALL_STATE(5527)] = 187026, - [SMALL_STATE(5528)] = 187112, - [SMALL_STATE(5529)] = 187248, - [SMALL_STATE(5530)] = 187332, - [SMALL_STATE(5531)] = 187416, - [SMALL_STATE(5532)] = 187498, - [SMALL_STATE(5533)] = 187580, - [SMALL_STATE(5534)] = 187716, - [SMALL_STATE(5535)] = 187816, - [SMALL_STATE(5536)] = 187952, - [SMALL_STATE(5537)] = 188038, - [SMALL_STATE(5538)] = 188174, - [SMALL_STATE(5539)] = 188310, - [SMALL_STATE(5540)] = 188396, - [SMALL_STATE(5541)] = 188532, - [SMALL_STATE(5542)] = 188616, - [SMALL_STATE(5543)] = 188716, - [SMALL_STATE(5544)] = 188802, - [SMALL_STATE(5545)] = 188884, - [SMALL_STATE(5546)] = 189020, - [SMALL_STATE(5547)] = 189156, - [SMALL_STATE(5548)] = 189292, - [SMALL_STATE(5549)] = 189428, - [SMALL_STATE(5550)] = 189564, - [SMALL_STATE(5551)] = 189700, - [SMALL_STATE(5552)] = 189836, - [SMALL_STATE(5553)] = 189920, - [SMALL_STATE(5554)] = 190034, - [SMALL_STATE(5555)] = 190116, - [SMALL_STATE(5556)] = 190252, - [SMALL_STATE(5557)] = 190360, - [SMALL_STATE(5558)] = 190496, - [SMALL_STATE(5559)] = 190600, - [SMALL_STATE(5560)] = 190736, - [SMALL_STATE(5561)] = 190822, - [SMALL_STATE(5562)] = 190958, - [SMALL_STATE(5563)] = 191044, - [SMALL_STATE(5564)] = 191180, - [SMALL_STATE(5565)] = 191280, - [SMALL_STATE(5566)] = 191416, - [SMALL_STATE(5567)] = 191502, - [SMALL_STATE(5568)] = 191638, - [SMALL_STATE(5569)] = 191720, - [SMALL_STATE(5570)] = 191806, - [SMALL_STATE(5571)] = 191932, - [SMALL_STATE(5572)] = 192068, - [SMALL_STATE(5573)] = 192168, - [SMALL_STATE(5574)] = 192304, - [SMALL_STATE(5575)] = 192440, - [SMALL_STATE(5576)] = 192568, - [SMALL_STATE(5577)] = 192650, - [SMALL_STATE(5578)] = 192786, - [SMALL_STATE(5579)] = 192886, - [SMALL_STATE(5580)] = 193022, - [SMALL_STATE(5581)] = 193158, - [SMALL_STATE(5582)] = 193282, - [SMALL_STATE(5583)] = 193418, - [SMALL_STATE(5584)] = 193554, - [SMALL_STATE(5585)] = 193690, - [SMALL_STATE(5586)] = 193826, - [SMALL_STATE(5587)] = 193962, - [SMALL_STATE(5588)] = 194098, - [SMALL_STATE(5589)] = 194234, - [SMALL_STATE(5590)] = 194318, - [SMALL_STATE(5591)] = 194428, - [SMALL_STATE(5592)] = 194564, - [SMALL_STATE(5593)] = 194678, - [SMALL_STATE(5594)] = 194814, - [SMALL_STATE(5595)] = 194918, - [SMALL_STATE(5596)] = 195054, - [SMALL_STATE(5597)] = 195190, - [SMALL_STATE(5598)] = 195326, - [SMALL_STATE(5599)] = 195434, - [SMALL_STATE(5600)] = 195538, - [SMALL_STATE(5601)] = 195664, - [SMALL_STATE(5602)] = 195792, - [SMALL_STATE(5603)] = 195916, - [SMALL_STATE(5604)] = 196026, - [SMALL_STATE(5605)] = 196162, - [SMALL_STATE(5606)] = 196284, - [SMALL_STATE(5607)] = 196384, - [SMALL_STATE(5608)] = 196514, - [SMALL_STATE(5609)] = 196646, - [SMALL_STATE(5610)] = 196782, - [SMALL_STATE(5611)] = 196896, - [SMALL_STATE(5612)] = 197004, - [SMALL_STATE(5613)] = 197108, - [SMALL_STATE(5614)] = 197218, - [SMALL_STATE(5615)] = 197318, - [SMALL_STATE(5616)] = 197454, - [SMALL_STATE(5617)] = 197590, - [SMALL_STATE(5618)] = 197726, - [SMALL_STATE(5619)] = 197862, - [SMALL_STATE(5620)] = 197984, - [SMALL_STATE(5621)] = 198074, - [SMALL_STATE(5622)] = 198210, - [SMALL_STATE(5623)] = 198310, - [SMALL_STATE(5624)] = 198440, - [SMALL_STATE(5625)] = 198572, - [SMALL_STATE(5626)] = 198708, - [SMALL_STATE(5627)] = 198844, - [SMALL_STATE(5628)] = 198980, - [SMALL_STATE(5629)] = 199116, - [SMALL_STATE(5630)] = 199252, - [SMALL_STATE(5631)] = 199388, - [SMALL_STATE(5632)] = 199524, - [SMALL_STATE(5633)] = 199660, - [SMALL_STATE(5634)] = 199796, - [SMALL_STATE(5635)] = 199932, - [SMALL_STATE(5636)] = 200068, - [SMALL_STATE(5637)] = 200204, - [SMALL_STATE(5638)] = 200340, - [SMALL_STATE(5639)] = 200476, - [SMALL_STATE(5640)] = 200612, - [SMALL_STATE(5641)] = 200748, - [SMALL_STATE(5642)] = 200846, - [SMALL_STATE(5643)] = 200982, - [SMALL_STATE(5644)] = 201118, - [SMALL_STATE(5645)] = 201202, - [SMALL_STATE(5646)] = 201338, - [SMALL_STATE(5647)] = 201474, - [SMALL_STATE(5648)] = 201610, - [SMALL_STATE(5649)] = 201746, - [SMALL_STATE(5650)] = 201882, - [SMALL_STATE(5651)] = 202018, - [SMALL_STATE(5652)] = 202154, - [SMALL_STATE(5653)] = 202290, - [SMALL_STATE(5654)] = 202376, - [SMALL_STATE(5655)] = 202462, - [SMALL_STATE(5656)] = 202546, - [SMALL_STATE(5657)] = 202632, - [SMALL_STATE(5658)] = 202768, - [SMALL_STATE(5659)] = 202904, - [SMALL_STATE(5660)] = 203040, - [SMALL_STATE(5661)] = 203126, - [SMALL_STATE(5662)] = 203212, - [SMALL_STATE(5663)] = 203296, - [SMALL_STATE(5664)] = 203382, - [SMALL_STATE(5665)] = 203466, - [SMALL_STATE(5666)] = 203552, - [SMALL_STATE(5667)] = 203688, - [SMALL_STATE(5668)] = 203824, - [SMALL_STATE(5669)] = 203938, - [SMALL_STATE(5670)] = 204024, - [SMALL_STATE(5671)] = 204110, - [SMALL_STATE(5672)] = 204194, - [SMALL_STATE(5673)] = 204280, - [SMALL_STATE(5674)] = 204416, - [SMALL_STATE(5675)] = 204502, - [SMALL_STATE(5676)] = 204610, - [SMALL_STATE(5677)] = 204746, - [SMALL_STATE(5678)] = 204850, - [SMALL_STATE(5679)] = 204976, - [SMALL_STATE(5680)] = 205104, - [SMALL_STATE(5681)] = 205228, - [SMALL_STATE(5682)] = 205338, - [SMALL_STATE(5683)] = 205460, - [SMALL_STATE(5684)] = 205560, - [SMALL_STATE(5685)] = 205690, - [SMALL_STATE(5686)] = 205822, - [SMALL_STATE(5687)] = 205908, - [SMALL_STATE(5688)] = 206044, - [SMALL_STATE(5689)] = 206180, - [SMALL_STATE(5690)] = 206316, - [SMALL_STATE(5691)] = 206452, - [SMALL_STATE(5692)] = 206538, - [SMALL_STATE(5693)] = 206674, - [SMALL_STATE(5694)] = 206810, - [SMALL_STATE(5695)] = 206946, - [SMALL_STATE(5696)] = 207082, - [SMALL_STATE(5697)] = 207218, - [SMALL_STATE(5698)] = 207318, - [SMALL_STATE(5699)] = 207454, - [SMALL_STATE(5700)] = 207590, - [SMALL_STATE(5701)] = 207726, - [SMALL_STATE(5702)] = 207812, - [SMALL_STATE(5703)] = 207898, - [SMALL_STATE(5704)] = 207982, - [SMALL_STATE(5705)] = 208068, - [SMALL_STATE(5706)] = 208204, - [SMALL_STATE(5707)] = 208288, - [SMALL_STATE(5708)] = 208424, - [SMALL_STATE(5709)] = 208560, - [SMALL_STATE(5710)] = 208693, - [SMALL_STATE(5711)] = 208826, - [SMALL_STATE(5712)] = 208959, - [SMALL_STATE(5713)] = 209092, - [SMALL_STATE(5714)] = 209225, - [SMALL_STATE(5715)] = 209358, - [SMALL_STATE(5716)] = 209455, - [SMALL_STATE(5717)] = 209552, - [SMALL_STATE(5718)] = 209653, - [SMALL_STATE(5719)] = 209744, - [SMALL_STATE(5720)] = 209877, - [SMALL_STATE(5721)] = 209978, - [SMALL_STATE(5722)] = 210111, - [SMALL_STATE(5723)] = 210194, - [SMALL_STATE(5724)] = 210327, - [SMALL_STATE(5725)] = 210460, - [SMALL_STATE(5726)] = 210593, - [SMALL_STATE(5727)] = 210684, - [SMALL_STATE(5728)] = 210775, - [SMALL_STATE(5729)] = 210908, - [SMALL_STATE(5730)] = 211041, - [SMALL_STATE(5731)] = 211174, - [SMALL_STATE(5732)] = 211265, - [SMALL_STATE(5733)] = 211398, - [SMALL_STATE(5734)] = 211531, - [SMALL_STATE(5735)] = 211622, - [SMALL_STATE(5736)] = 211719, - [SMALL_STATE(5737)] = 211852, - [SMALL_STATE(5738)] = 211985, - [SMALL_STATE(5739)] = 212118, - [SMALL_STATE(5740)] = 212219, - [SMALL_STATE(5741)] = 212352, - [SMALL_STATE(5742)] = 212485, - [SMALL_STATE(5743)] = 212576, - [SMALL_STATE(5744)] = 212709, - [SMALL_STATE(5745)] = 212842, - [SMALL_STATE(5746)] = 212975, - [SMALL_STATE(5747)] = 213108, - [SMALL_STATE(5748)] = 213201, - [SMALL_STATE(5749)] = 213334, - [SMALL_STATE(5750)] = 213467, - [SMALL_STATE(5751)] = 213564, - [SMALL_STATE(5752)] = 213653, - [SMALL_STATE(5753)] = 213786, - [SMALL_STATE(5754)] = 213919, - [SMALL_STATE(5755)] = 214052, - [SMALL_STATE(5756)] = 214185, - [SMALL_STATE(5757)] = 214276, - [SMALL_STATE(5758)] = 214409, - [SMALL_STATE(5759)] = 214542, - [SMALL_STATE(5760)] = 214640, - [SMALL_STATE(5761)] = 214734, - [SMALL_STATE(5762)] = 214824, - [SMALL_STATE(5763)] = 214914, - [SMALL_STATE(5764)] = 214996, - [SMALL_STATE(5765)] = 215086, - [SMALL_STATE(5766)] = 215184, - [SMALL_STATE(5767)] = 215274, - [SMALL_STATE(5768)] = 215372, - [SMALL_STATE(5769)] = 215470, - [SMALL_STATE(5770)] = 215566, - [SMALL_STATE(5771)] = 215656, - [SMALL_STATE(5772)] = 215754, - [SMALL_STATE(5773)] = 215850, - [SMALL_STATE(5774)] = 215940, - [SMALL_STATE(5775)] = 216030, - [SMALL_STATE(5776)] = 216112, - [SMALL_STATE(5777)] = 216202, - [SMALL_STATE(5778)] = 216292, - [SMALL_STATE(5779)] = 216390, - [SMALL_STATE(5780)] = 216488, - [SMALL_STATE(5781)] = 216584, - [SMALL_STATE(5782)] = 216681, - [SMALL_STATE(5783)] = 216776, - [SMALL_STATE(5784)] = 216861, - [SMALL_STATE(5785)] = 216948, - [SMALL_STATE(5786)] = 217039, - [SMALL_STATE(5787)] = 217134, - [SMALL_STATE(5788)] = 217225, - [SMALL_STATE(5789)] = 217316, - [SMALL_STATE(5790)] = 217403, - [SMALL_STATE(5791)] = 217494, - [SMALL_STATE(5792)] = 217589, - [SMALL_STATE(5793)] = 217682, - [SMALL_STATE(5794)] = 217781, - [SMALL_STATE(5795)] = 217876, - [SMALL_STATE(5796)] = 217969, - [SMALL_STATE(5797)] = 218062, - [SMALL_STATE(5798)] = 218149, - [SMALL_STATE(5799)] = 218244, - [SMALL_STATE(5800)] = 218339, - [SMALL_STATE(5801)] = 218432, - [SMALL_STATE(5802)] = 218525, - [SMALL_STATE(5803)] = 218618, - [SMALL_STATE(5804)] = 218713, - [SMALL_STATE(5805)] = 218808, - [SMALL_STATE(5806)] = 218889, - [SMALL_STATE(5807)] = 218984, - [SMALL_STATE(5808)] = 219079, - [SMALL_STATE(5809)] = 219159, - [SMALL_STATE(5810)] = 219251, - [SMALL_STATE(5811)] = 219343, - [SMALL_STATE(5812)] = 219435, - [SMALL_STATE(5813)] = 219527, - [SMALL_STATE(5814)] = 219619, - [SMALL_STATE(5815)] = 219711, - [SMALL_STATE(5816)] = 219803, - [SMALL_STATE(5817)] = 219895, - [SMALL_STATE(5818)] = 219987, - [SMALL_STATE(5819)] = 220079, - [SMALL_STATE(5820)] = 220171, - [SMALL_STATE(5821)] = 220263, - [SMALL_STATE(5822)] = 220355, - [SMALL_STATE(5823)] = 220441, - [SMALL_STATE(5824)] = 220533, - [SMALL_STATE(5825)] = 220625, - [SMALL_STATE(5826)] = 220717, - [SMALL_STATE(5827)] = 220809, - [SMALL_STATE(5828)] = 220901, - [SMALL_STATE(5829)] = 220993, - [SMALL_STATE(5830)] = 221085, - [SMALL_STATE(5831)] = 221165, - [SMALL_STATE(5832)] = 221254, - [SMALL_STATE(5833)] = 221339, - [SMALL_STATE(5834)] = 221430, - [SMALL_STATE(5835)] = 221519, - [SMALL_STATE(5836)] = 221608, - [SMALL_STATE(5837)] = 221697, - [SMALL_STATE(5838)] = 221786, - [SMALL_STATE(5839)] = 221875, - [SMALL_STATE(5840)] = 221964, - [SMALL_STATE(5841)] = 222049, - [SMALL_STATE(5842)] = 222132, - [SMALL_STATE(5843)] = 222223, - [SMALL_STATE(5844)] = 222312, - [SMALL_STATE(5845)] = 222401, - [SMALL_STATE(5846)] = 222478, - [SMALL_STATE(5847)] = 222568, - [SMALL_STATE(5848)] = 222658, - [SMALL_STATE(5849)] = 222748, - [SMALL_STATE(5850)] = 222824, - [SMALL_STATE(5851)] = 222914, - [SMALL_STATE(5852)] = 223004, - [SMALL_STATE(5853)] = 223094, - [SMALL_STATE(5854)] = 223184, - [SMALL_STATE(5855)] = 223274, - [SMALL_STATE(5856)] = 223364, - [SMALL_STATE(5857)] = 223454, - [SMALL_STATE(5858)] = 223544, - [SMALL_STATE(5859)] = 223634, - [SMALL_STATE(5860)] = 223718, - [SMALL_STATE(5861)] = 223804, - [SMALL_STATE(5862)] = 223894, - [SMALL_STATE(5863)] = 223984, - [SMALL_STATE(5864)] = 224074, - [SMALL_STATE(5865)] = 224150, - [SMALL_STATE(5866)] = 224240, - [SMALL_STATE(5867)] = 224330, - [SMALL_STATE(5868)] = 224420, - [SMALL_STATE(5869)] = 224510, - [SMALL_STATE(5870)] = 224600, - [SMALL_STATE(5871)] = 224690, - [SMALL_STATE(5872)] = 224780, - [SMALL_STATE(5873)] = 224870, - [SMALL_STATE(5874)] = 224960, - [SMALL_STATE(5875)] = 225050, - [SMALL_STATE(5876)] = 225136, - [SMALL_STATE(5877)] = 225226, - [SMALL_STATE(5878)] = 225316, - [SMALL_STATE(5879)] = 225406, - [SMALL_STATE(5880)] = 225492, - [SMALL_STATE(5881)] = 225578, - [SMALL_STATE(5882)] = 225664, - [SMALL_STATE(5883)] = 225754, - [SMALL_STATE(5884)] = 225844, - [SMALL_STATE(5885)] = 225934, - [SMALL_STATE(5886)] = 226024, - [SMALL_STATE(5887)] = 226114, - [SMALL_STATE(5888)] = 226204, - [SMALL_STATE(5889)] = 226294, - [SMALL_STATE(5890)] = 226384, - [SMALL_STATE(5891)] = 226462, - [SMALL_STATE(5892)] = 226552, - [SMALL_STATE(5893)] = 226642, - [SMALL_STATE(5894)] = 226732, - [SMALL_STATE(5895)] = 226808, - [SMALL_STATE(5896)] = 226898, - [SMALL_STATE(5897)] = 226988, - [SMALL_STATE(5898)] = 227066, - [SMALL_STATE(5899)] = 227156, - [SMALL_STATE(5900)] = 227246, - [SMALL_STATE(5901)] = 227336, - [SMALL_STATE(5902)] = 227426, - [SMALL_STATE(5903)] = 227516, - [SMALL_STATE(5904)] = 227606, - [SMALL_STATE(5905)] = 227696, - [SMALL_STATE(5906)] = 227786, - [SMALL_STATE(5907)] = 227876, - [SMALL_STATE(5908)] = 227966, - [SMALL_STATE(5909)] = 228056, - [SMALL_STATE(5910)] = 228132, - [SMALL_STATE(5911)] = 228222, - [SMALL_STATE(5912)] = 228312, - [SMALL_STATE(5913)] = 228396, - [SMALL_STATE(5914)] = 228486, - [SMALL_STATE(5915)] = 228576, - [SMALL_STATE(5916)] = 228666, - [SMALL_STATE(5917)] = 228756, - [SMALL_STATE(5918)] = 228846, - [SMALL_STATE(5919)] = 228931, - [SMALL_STATE(5920)] = 229018, - [SMALL_STATE(5921)] = 229103, - [SMALL_STATE(5922)] = 229188, - [SMALL_STATE(5923)] = 229273, - [SMALL_STATE(5924)] = 229360, - [SMALL_STATE(5925)] = 229445, - [SMALL_STATE(5926)] = 229530, - [SMALL_STATE(5927)] = 229617, - [SMALL_STATE(5928)] = 229700, - [SMALL_STATE(5929)] = 229785, - [SMALL_STATE(5930)] = 229872, - [SMALL_STATE(5931)] = 229957, - [SMALL_STATE(5932)] = 230042, - [SMALL_STATE(5933)] = 230127, - [SMALL_STATE(5934)] = 230212, - [SMALL_STATE(5935)] = 230295, - [SMALL_STATE(5936)] = 230376, - [SMALL_STATE(5937)] = 230461, - [SMALL_STATE(5938)] = 230546, - [SMALL_STATE(5939)] = 230631, - [SMALL_STATE(5940)] = 230716, - [SMALL_STATE(5941)] = 230801, - [SMALL_STATE(5942)] = 230886, - [SMALL_STATE(5943)] = 230971, - [SMALL_STATE(5944)] = 231056, - [SMALL_STATE(5945)] = 231131, - [SMALL_STATE(5946)] = 231206, - [SMALL_STATE(5947)] = 231291, - [SMALL_STATE(5948)] = 231374, - [SMALL_STATE(5949)] = 231459, - [SMALL_STATE(5950)] = 231542, - [SMALL_STATE(5951)] = 231627, - [SMALL_STATE(5952)] = 231712, - [SMALL_STATE(5953)] = 231797, - [SMALL_STATE(5954)] = 231878, - [SMALL_STATE(5955)] = 231963, - [SMALL_STATE(5956)] = 232048, - [SMALL_STATE(5957)] = 232133, - [SMALL_STATE(5958)] = 232218, - [SMALL_STATE(5959)] = 232293, - [SMALL_STATE(5960)] = 232377, - [SMALL_STATE(5961)] = 232461, - [SMALL_STATE(5962)] = 232545, - [SMALL_STATE(5963)] = 232629, - [SMALL_STATE(5964)] = 232713, - [SMALL_STATE(5965)] = 232797, - [SMALL_STATE(5966)] = 232881, - [SMALL_STATE(5967)] = 232965, - [SMALL_STATE(5968)] = 233049, - [SMALL_STATE(5969)] = 233133, - [SMALL_STATE(5970)] = 233217, - [SMALL_STATE(5971)] = 233301, - [SMALL_STATE(5972)] = 233385, - [SMALL_STATE(5973)] = 233469, - [SMALL_STATE(5974)] = 233553, - [SMALL_STATE(5975)] = 233637, - [SMALL_STATE(5976)] = 233721, - [SMALL_STATE(5977)] = 233805, - [SMALL_STATE(5978)] = 233889, - [SMALL_STATE(5979)] = 233970, - [SMALL_STATE(5980)] = 234049, - [SMALL_STATE(5981)] = 234130, - [SMALL_STATE(5982)] = 234209, - [SMALL_STATE(5983)] = 234290, - [SMALL_STATE(5984)] = 234371, - [SMALL_STATE(5985)] = 234452, - [SMALL_STATE(5986)] = 234533, - [SMALL_STATE(5987)] = 234614, - [SMALL_STATE(5988)] = 234695, - [SMALL_STATE(5989)] = 234776, - [SMALL_STATE(5990)] = 234857, - [SMALL_STATE(5991)] = 234938, - [SMALL_STATE(5992)] = 235019, - [SMALL_STATE(5993)] = 235100, - [SMALL_STATE(5994)] = 235181, - [SMALL_STATE(5995)] = 235262, - [SMALL_STATE(5996)] = 235343, - [SMALL_STATE(5997)] = 235424, - [SMALL_STATE(5998)] = 235505, - [SMALL_STATE(5999)] = 235586, - [SMALL_STATE(6000)] = 235667, - [SMALL_STATE(6001)] = 235748, - [SMALL_STATE(6002)] = 235829, - [SMALL_STATE(6003)] = 235910, - [SMALL_STATE(6004)] = 235991, - [SMALL_STATE(6005)] = 236072, - [SMALL_STATE(6006)] = 236153, - [SMALL_STATE(6007)] = 236234, - [SMALL_STATE(6008)] = 236315, - [SMALL_STATE(6009)] = 236396, - [SMALL_STATE(6010)] = 236477, - [SMALL_STATE(6011)] = 236558, - [SMALL_STATE(6012)] = 236639, - [SMALL_STATE(6013)] = 236720, - [SMALL_STATE(6014)] = 236801, - [SMALL_STATE(6015)] = 236882, - [SMALL_STATE(6016)] = 236955, - [SMALL_STATE(6017)] = 237036, - [SMALL_STATE(6018)] = 237117, - [SMALL_STATE(6019)] = 237190, - [SMALL_STATE(6020)] = 237271, - [SMALL_STATE(6021)] = 237352, - [SMALL_STATE(6022)] = 237433, - [SMALL_STATE(6023)] = 237514, - [SMALL_STATE(6024)] = 237595, - [SMALL_STATE(6025)] = 237676, - [SMALL_STATE(6026)] = 237757, - [SMALL_STATE(6027)] = 237836, - [SMALL_STATE(6028)] = 237917, - [SMALL_STATE(6029)] = 237998, - [SMALL_STATE(6030)] = 238079, - [SMALL_STATE(6031)] = 238160, - [SMALL_STATE(6032)] = 238241, - [SMALL_STATE(6033)] = 238322, - [SMALL_STATE(6034)] = 238403, - [SMALL_STATE(6035)] = 238484, - [SMALL_STATE(6036)] = 238565, - [SMALL_STATE(6037)] = 238646, - [SMALL_STATE(6038)] = 238727, - [SMALL_STATE(6039)] = 238808, - [SMALL_STATE(6040)] = 238889, - [SMALL_STATE(6041)] = 238970, - [SMALL_STATE(6042)] = 239051, - [SMALL_STATE(6043)] = 239132, - [SMALL_STATE(6044)] = 239213, - [SMALL_STATE(6045)] = 239294, - [SMALL_STATE(6046)] = 239375, - [SMALL_STATE(6047)] = 239456, - [SMALL_STATE(6048)] = 239537, - [SMALL_STATE(6049)] = 239618, - [SMALL_STATE(6050)] = 239699, - [SMALL_STATE(6051)] = 239780, - [SMALL_STATE(6052)] = 239861, - [SMALL_STATE(6053)] = 239942, - [SMALL_STATE(6054)] = 240023, - [SMALL_STATE(6055)] = 240104, - [SMALL_STATE(6056)] = 240185, - [SMALL_STATE(6057)] = 240266, - [SMALL_STATE(6058)] = 240347, - [SMALL_STATE(6059)] = 240428, - [SMALL_STATE(6060)] = 240509, - [SMALL_STATE(6061)] = 240590, - [SMALL_STATE(6062)] = 240671, - [SMALL_STATE(6063)] = 240752, - [SMALL_STATE(6064)] = 240833, - [SMALL_STATE(6065)] = 240914, - [SMALL_STATE(6066)] = 240993, - [SMALL_STATE(6067)] = 241066, - [SMALL_STATE(6068)] = 241147, - [SMALL_STATE(6069)] = 241220, - [SMALL_STATE(6070)] = 241301, - [SMALL_STATE(6071)] = 241382, - [SMALL_STATE(6072)] = 241463, - [SMALL_STATE(6073)] = 241544, - [SMALL_STATE(6074)] = 241625, - [SMALL_STATE(6075)] = 241706, - [SMALL_STATE(6076)] = 241787, - [SMALL_STATE(6077)] = 241868, - [SMALL_STATE(6078)] = 241949, - [SMALL_STATE(6079)] = 242030, - [SMALL_STATE(6080)] = 242111, - [SMALL_STATE(6081)] = 242192, - [SMALL_STATE(6082)] = 242265, - [SMALL_STATE(6083)] = 242346, - [SMALL_STATE(6084)] = 242427, - [SMALL_STATE(6085)] = 242508, - [SMALL_STATE(6086)] = 242589, - [SMALL_STATE(6087)] = 242670, - [SMALL_STATE(6088)] = 242743, - [SMALL_STATE(6089)] = 242824, - [SMALL_STATE(6090)] = 242905, - [SMALL_STATE(6091)] = 242986, - [SMALL_STATE(6092)] = 243067, - [SMALL_STATE(6093)] = 243148, - [SMALL_STATE(6094)] = 243229, - [SMALL_STATE(6095)] = 243310, - [SMALL_STATE(6096)] = 243389, - [SMALL_STATE(6097)] = 243470, - [SMALL_STATE(6098)] = 243551, - [SMALL_STATE(6099)] = 243632, - [SMALL_STATE(6100)] = 243713, - [SMALL_STATE(6101)] = 243794, - [SMALL_STATE(6102)] = 243875, - [SMALL_STATE(6103)] = 243950, - [SMALL_STATE(6104)] = 244031, - [SMALL_STATE(6105)] = 244112, - [SMALL_STATE(6106)] = 244193, - [SMALL_STATE(6107)] = 244274, - [SMALL_STATE(6108)] = 244353, - [SMALL_STATE(6109)] = 244434, - [SMALL_STATE(6110)] = 244515, - [SMALL_STATE(6111)] = 244596, - [SMALL_STATE(6112)] = 244677, - [SMALL_STATE(6113)] = 244756, - [SMALL_STATE(6114)] = 244837, - [SMALL_STATE(6115)] = 244918, - [SMALL_STATE(6116)] = 244999, - [SMALL_STATE(6117)] = 245080, - [SMALL_STATE(6118)] = 245159, - [SMALL_STATE(6119)] = 245237, - [SMALL_STATE(6120)] = 245315, - [SMALL_STATE(6121)] = 245387, - [SMALL_STATE(6122)] = 245465, - [SMALL_STATE(6123)] = 245539, - [SMALL_STATE(6124)] = 245617, - [SMALL_STATE(6125)] = 245695, - [SMALL_STATE(6126)] = 245770, - [SMALL_STATE(6127)] = 245845, - [SMALL_STATE(6128)] = 245920, - [SMALL_STATE(6129)] = 245995, - [SMALL_STATE(6130)] = 246070, - [SMALL_STATE(6131)] = 246145, - [SMALL_STATE(6132)] = 246220, - [SMALL_STATE(6133)] = 246295, - [SMALL_STATE(6134)] = 246370, - [SMALL_STATE(6135)] = 246445, - [SMALL_STATE(6136)] = 246520, - [SMALL_STATE(6137)] = 246595, - [SMALL_STATE(6138)] = 246670, - [SMALL_STATE(6139)] = 246745, - [SMALL_STATE(6140)] = 246820, - [SMALL_STATE(6141)] = 246889, - [SMALL_STATE(6142)] = 246964, - [SMALL_STATE(6143)] = 247039, - [SMALL_STATE(6144)] = 247114, - [SMALL_STATE(6145)] = 247189, - [SMALL_STATE(6146)] = 247264, - [SMALL_STATE(6147)] = 247339, - [SMALL_STATE(6148)] = 247414, - [SMALL_STATE(6149)] = 247489, - [SMALL_STATE(6150)] = 247564, - [SMALL_STATE(6151)] = 247639, - [SMALL_STATE(6152)] = 247714, - [SMALL_STATE(6153)] = 247789, - [SMALL_STATE(6154)] = 247864, - [SMALL_STATE(6155)] = 247939, - [SMALL_STATE(6156)] = 248014, - [SMALL_STATE(6157)] = 248089, - [SMALL_STATE(6158)] = 248164, - [SMALL_STATE(6159)] = 248239, - [SMALL_STATE(6160)] = 248314, - [SMALL_STATE(6161)] = 248389, - [SMALL_STATE(6162)] = 248464, - [SMALL_STATE(6163)] = 248539, - [SMALL_STATE(6164)] = 248614, - [SMALL_STATE(6165)] = 248689, - [SMALL_STATE(6166)] = 248764, - [SMALL_STATE(6167)] = 248839, - [SMALL_STATE(6168)] = 248914, - [SMALL_STATE(6169)] = 248989, - [SMALL_STATE(6170)] = 249064, - [SMALL_STATE(6171)] = 249139, - [SMALL_STATE(6172)] = 249214, - [SMALL_STATE(6173)] = 249289, - [SMALL_STATE(6174)] = 249364, - [SMALL_STATE(6175)] = 249439, - [SMALL_STATE(6176)] = 249514, - [SMALL_STATE(6177)] = 249589, - [SMALL_STATE(6178)] = 249664, - [SMALL_STATE(6179)] = 249739, - [SMALL_STATE(6180)] = 249814, - [SMALL_STATE(6181)] = 249889, - [SMALL_STATE(6182)] = 249964, - [SMALL_STATE(6183)] = 250039, - [SMALL_STATE(6184)] = 250114, - [SMALL_STATE(6185)] = 250189, - [SMALL_STATE(6186)] = 250264, - [SMALL_STATE(6187)] = 250336, - [SMALL_STATE(6188)] = 250408, - [SMALL_STATE(6189)] = 250480, - [SMALL_STATE(6190)] = 250552, - [SMALL_STATE(6191)] = 250624, - [SMALL_STATE(6192)] = 250696, - [SMALL_STATE(6193)] = 250765, - [SMALL_STATE(6194)] = 250834, - [SMALL_STATE(6195)] = 250903, - [SMALL_STATE(6196)] = 250972, - [SMALL_STATE(6197)] = 251041, - [SMALL_STATE(6198)] = 251108, - [SMALL_STATE(6199)] = 251177, - [SMALL_STATE(6200)] = 251263, - [SMALL_STATE(6201)] = 251349, - [SMALL_STATE(6202)] = 251435, - [SMALL_STATE(6203)] = 251521, - [SMALL_STATE(6204)] = 251607, - [SMALL_STATE(6205)] = 251693, - [SMALL_STATE(6206)] = 251779, - [SMALL_STATE(6207)] = 251865, - [SMALL_STATE(6208)] = 251951, - [SMALL_STATE(6209)] = 252037, - [SMALL_STATE(6210)] = 252123, - [SMALL_STATE(6211)] = 252209, - [SMALL_STATE(6212)] = 252295, - [SMALL_STATE(6213)] = 252381, - [SMALL_STATE(6214)] = 252467, - [SMALL_STATE(6215)] = 252553, - [SMALL_STATE(6216)] = 252639, - [SMALL_STATE(6217)] = 252725, - [SMALL_STATE(6218)] = 252811, - [SMALL_STATE(6219)] = 252897, - [SMALL_STATE(6220)] = 252983, - [SMALL_STATE(6221)] = 253069, - [SMALL_STATE(6222)] = 253155, - [SMALL_STATE(6223)] = 253241, - [SMALL_STATE(6224)] = 253327, - [SMALL_STATE(6225)] = 253413, - [SMALL_STATE(6226)] = 253499, - [SMALL_STATE(6227)] = 253585, - [SMALL_STATE(6228)] = 253671, - [SMALL_STATE(6229)] = 253757, - [SMALL_STATE(6230)] = 253843, - [SMALL_STATE(6231)] = 253929, - [SMALL_STATE(6232)] = 254015, - [SMALL_STATE(6233)] = 254101, - [SMALL_STATE(6234)] = 254187, - [SMALL_STATE(6235)] = 254273, - [SMALL_STATE(6236)] = 254359, - [SMALL_STATE(6237)] = 254445, - [SMALL_STATE(6238)] = 254531, - [SMALL_STATE(6239)] = 254617, - [SMALL_STATE(6240)] = 254700, - [SMALL_STATE(6241)] = 254783, - [SMALL_STATE(6242)] = 254866, - [SMALL_STATE(6243)] = 254949, - [SMALL_STATE(6244)] = 255032, - [SMALL_STATE(6245)] = 255115, - [SMALL_STATE(6246)] = 255198, - [SMALL_STATE(6247)] = 255281, - [SMALL_STATE(6248)] = 255364, - [SMALL_STATE(6249)] = 255447, - [SMALL_STATE(6250)] = 255530, - [SMALL_STATE(6251)] = 255613, - [SMALL_STATE(6252)] = 255696, - [SMALL_STATE(6253)] = 255779, - [SMALL_STATE(6254)] = 255862, - [SMALL_STATE(6255)] = 255945, - [SMALL_STATE(6256)] = 256028, - [SMALL_STATE(6257)] = 256111, - [SMALL_STATE(6258)] = 256194, - [SMALL_STATE(6259)] = 256277, - [SMALL_STATE(6260)] = 256360, - [SMALL_STATE(6261)] = 256443, - [SMALL_STATE(6262)] = 256526, - [SMALL_STATE(6263)] = 256609, - [SMALL_STATE(6264)] = 256692, - [SMALL_STATE(6265)] = 256775, - [SMALL_STATE(6266)] = 256858, - [SMALL_STATE(6267)] = 256941, - [SMALL_STATE(6268)] = 257024, - [SMALL_STATE(6269)] = 257107, - [SMALL_STATE(6270)] = 257190, - [SMALL_STATE(6271)] = 257273, - [SMALL_STATE(6272)] = 257356, - [SMALL_STATE(6273)] = 257439, - [SMALL_STATE(6274)] = 257522, - [SMALL_STATE(6275)] = 257605, - [SMALL_STATE(6276)] = 257688, - [SMALL_STATE(6277)] = 257771, - [SMALL_STATE(6278)] = 257854, - [SMALL_STATE(6279)] = 257937, - [SMALL_STATE(6280)] = 258020, - [SMALL_STATE(6281)] = 258103, - [SMALL_STATE(6282)] = 258186, - [SMALL_STATE(6283)] = 258269, - [SMALL_STATE(6284)] = 258352, - [SMALL_STATE(6285)] = 258435, - [SMALL_STATE(6286)] = 258518, - [SMALL_STATE(6287)] = 258601, - [SMALL_STATE(6288)] = 258684, - [SMALL_STATE(6289)] = 258767, - [SMALL_STATE(6290)] = 258850, - [SMALL_STATE(6291)] = 258933, - [SMALL_STATE(6292)] = 259016, - [SMALL_STATE(6293)] = 259099, - [SMALL_STATE(6294)] = 259182, - [SMALL_STATE(6295)] = 259265, - [SMALL_STATE(6296)] = 259348, - [SMALL_STATE(6297)] = 259431, - [SMALL_STATE(6298)] = 259514, - [SMALL_STATE(6299)] = 259597, - [SMALL_STATE(6300)] = 259680, - [SMALL_STATE(6301)] = 259763, - [SMALL_STATE(6302)] = 259846, - [SMALL_STATE(6303)] = 259929, - [SMALL_STATE(6304)] = 260012, - [SMALL_STATE(6305)] = 260095, - [SMALL_STATE(6306)] = 260183, - [SMALL_STATE(6307)] = 260271, - [SMALL_STATE(6308)] = 260359, - [SMALL_STATE(6309)] = 260431, - [SMALL_STATE(6310)] = 260496, - [SMALL_STATE(6311)] = 260570, - [SMALL_STATE(6312)] = 260642, - [SMALL_STATE(6313)] = 260716, - [SMALL_STATE(6314)] = 260790, - [SMALL_STATE(6315)] = 260864, - [SMALL_STATE(6316)] = 260936, - [SMALL_STATE(6317)] = 261010, - [SMALL_STATE(6318)] = 261082, - [SMALL_STATE(6319)] = 261154, - [SMALL_STATE(6320)] = 261228, - [SMALL_STATE(6321)] = 261300, - [SMALL_STATE(6322)] = 261372, - [SMALL_STATE(6323)] = 261444, - [SMALL_STATE(6324)] = 261516, - [SMALL_STATE(6325)] = 261588, - [SMALL_STATE(6326)] = 261662, - [SMALL_STATE(6327)] = 261722, - [SMALL_STATE(6328)] = 261782, - [SMALL_STATE(6329)] = 261856, - [SMALL_STATE(6330)] = 261928, - [SMALL_STATE(6331)] = 262000, - [SMALL_STATE(6332)] = 262072, - [SMALL_STATE(6333)] = 262144, - [SMALL_STATE(6334)] = 262216, - [SMALL_STATE(6335)] = 262291, - [SMALL_STATE(6336)] = 262366, - [SMALL_STATE(6337)] = 262441, - [SMALL_STATE(6338)] = 262504, - [SMALL_STATE(6339)] = 262561, - [SMALL_STATE(6340)] = 262623, - [SMALL_STATE(6341)] = 262693, - [SMALL_STATE(6342)] = 262755, - [SMALL_STATE(6343)] = 262824, - [SMALL_STATE(6344)] = 262885, - [SMALL_STATE(6345)] = 262954, - [SMALL_STATE(6346)] = 263023, - [SMALL_STATE(6347)] = 263092, - [SMALL_STATE(6348)] = 263161, - [SMALL_STATE(6349)] = 263230, - [SMALL_STATE(6350)] = 263299, - [SMALL_STATE(6351)] = 263366, - [SMALL_STATE(6352)] = 263435, - [SMALL_STATE(6353)] = 263504, - [SMALL_STATE(6354)] = 263573, - [SMALL_STATE(6355)] = 263642, - [SMALL_STATE(6356)] = 263711, - [SMALL_STATE(6357)] = 263780, - [SMALL_STATE(6358)] = 263849, - [SMALL_STATE(6359)] = 263918, - [SMALL_STATE(6360)] = 263987, - [SMALL_STATE(6361)] = 264056, - [SMALL_STATE(6362)] = 264123, - [SMALL_STATE(6363)] = 264182, - [SMALL_STATE(6364)] = 264251, - [SMALL_STATE(6365)] = 264320, - [SMALL_STATE(6366)] = 264377, - [SMALL_STATE(6367)] = 264434, - [SMALL_STATE(6368)] = 264491, - [SMALL_STATE(6369)] = 264548, - [SMALL_STATE(6370)] = 264617, - [SMALL_STATE(6371)] = 264678, - [SMALL_STATE(6372)] = 264747, - [SMALL_STATE(6373)] = 264814, - [SMALL_STATE(6374)] = 264883, - [SMALL_STATE(6375)] = 264952, - [SMALL_STATE(6376)] = 265021, - [SMALL_STATE(6377)] = 265090, - [SMALL_STATE(6378)] = 265159, - [SMALL_STATE(6379)] = 265228, - [SMALL_STATE(6380)] = 265297, - [SMALL_STATE(6381)] = 265366, - [SMALL_STATE(6382)] = 265435, - [SMALL_STATE(6383)] = 265502, - [SMALL_STATE(6384)] = 265557, - [SMALL_STATE(6385)] = 265626, - [SMALL_STATE(6386)] = 265695, - [SMALL_STATE(6387)] = 265749, - [SMALL_STATE(6388)] = 265815, - [SMALL_STATE(6389)] = 265871, - [SMALL_STATE(6390)] = 265927, - [SMALL_STATE(6391)] = 265979, - [SMALL_STATE(6392)] = 266045, - [SMALL_STATE(6393)] = 266111, - [SMALL_STATE(6394)] = 266165, - [SMALL_STATE(6395)] = 266217, - [SMALL_STATE(6396)] = 266273, - [SMALL_STATE(6397)] = 266335, - [SMALL_STATE(6398)] = 266391, - [SMALL_STATE(6399)] = 266452, - [SMALL_STATE(6400)] = 266513, - [SMALL_STATE(6401)] = 266574, - [SMALL_STATE(6402)] = 266635, - [SMALL_STATE(6403)] = 266686, - [SMALL_STATE(6404)] = 266737, - [SMALL_STATE(6405)] = 266798, - [SMALL_STATE(6406)] = 266859, - [SMALL_STATE(6407)] = 266920, - [SMALL_STATE(6408)] = 266971, - [SMALL_STATE(6409)] = 267030, - [SMALL_STATE(6410)] = 267091, - [SMALL_STATE(6411)] = 267152, - [SMALL_STATE(6412)] = 267203, - [SMALL_STATE(6413)] = 267264, - [SMALL_STATE(6414)] = 267325, - [SMALL_STATE(6415)] = 267376, - [SMALL_STATE(6416)] = 267435, - [SMALL_STATE(6417)] = 267486, - [SMALL_STATE(6418)] = 267547, - [SMALL_STATE(6419)] = 267608, - [SMALL_STATE(6420)] = 267669, - [SMALL_STATE(6421)] = 267730, - [SMALL_STATE(6422)] = 267781, - [SMALL_STATE(6423)] = 267842, - [SMALL_STATE(6424)] = 267903, - [SMALL_STATE(6425)] = 267964, - [SMALL_STATE(6426)] = 268015, - [SMALL_STATE(6427)] = 268076, - [SMALL_STATE(6428)] = 268137, - [SMALL_STATE(6429)] = 268188, - [SMALL_STATE(6430)] = 268249, - [SMALL_STATE(6431)] = 268310, - [SMALL_STATE(6432)] = 268371, - [SMALL_STATE(6433)] = 268422, - [SMALL_STATE(6434)] = 268483, - [SMALL_STATE(6435)] = 268544, - [SMALL_STATE(6436)] = 268605, - [SMALL_STATE(6437)] = 268666, - [SMALL_STATE(6438)] = 268727, - [SMALL_STATE(6439)] = 268788, - [SMALL_STATE(6440)] = 268848, - [SMALL_STATE(6441)] = 268908, - [SMALL_STATE(6442)] = 268962, - [SMALL_STATE(6443)] = 269022, - [SMALL_STATE(6444)] = 269074, - [SMALL_STATE(6445)] = 269126, - [SMALL_STATE(6446)] = 269186, - [SMALL_STATE(6447)] = 269246, - [SMALL_STATE(6448)] = 269306, - [SMALL_STATE(6449)] = 269366, - [SMALL_STATE(6450)] = 269426, - [SMALL_STATE(6451)] = 269478, - [SMALL_STATE(6452)] = 269528, - [SMALL_STATE(6453)] = 269588, - [SMALL_STATE(6454)] = 269642, - [SMALL_STATE(6455)] = 269702, - [SMALL_STATE(6456)] = 269752, - [SMALL_STATE(6457)] = 269812, - [SMALL_STATE(6458)] = 269862, - [SMALL_STATE(6459)] = 269912, - [SMALL_STATE(6460)] = 269972, - [SMALL_STATE(6461)] = 270028, - [SMALL_STATE(6462)] = 270088, - [SMALL_STATE(6463)] = 270146, - [SMALL_STATE(6464)] = 270206, - [SMALL_STATE(6465)] = 270266, - [SMALL_STATE(6466)] = 270324, - [SMALL_STATE(6467)] = 270384, - [SMALL_STATE(6468)] = 270440, - [SMALL_STATE(6469)] = 270494, - [SMALL_STATE(6470)] = 270554, - [SMALL_STATE(6471)] = 270614, - [SMALL_STATE(6472)] = 270674, - [SMALL_STATE(6473)] = 270734, - [SMALL_STATE(6474)] = 270794, - [SMALL_STATE(6475)] = 270854, - [SMALL_STATE(6476)] = 270914, - [SMALL_STATE(6477)] = 270974, - [SMALL_STATE(6478)] = 271034, - [SMALL_STATE(6479)] = 271094, - [SMALL_STATE(6480)] = 271148, - [SMALL_STATE(6481)] = 271208, - [SMALL_STATE(6482)] = 271268, - [SMALL_STATE(6483)] = 271326, - [SMALL_STATE(6484)] = 271384, - [SMALL_STATE(6485)] = 271444, - [SMALL_STATE(6486)] = 271502, - [SMALL_STATE(6487)] = 271562, - [SMALL_STATE(6488)] = 271620, - [SMALL_STATE(6489)] = 271670, - [SMALL_STATE(6490)] = 271730, - [SMALL_STATE(6491)] = 271790, - [SMALL_STATE(6492)] = 271850, - [SMALL_STATE(6493)] = 271900, - [SMALL_STATE(6494)] = 271960, - [SMALL_STATE(6495)] = 272018, - [SMALL_STATE(6496)] = 272068, - [SMALL_STATE(6497)] = 272128, - [SMALL_STATE(6498)] = 272188, - [SMALL_STATE(6499)] = 272240, - [SMALL_STATE(6500)] = 272300, - [SMALL_STATE(6501)] = 272360, - [SMALL_STATE(6502)] = 272420, - [SMALL_STATE(6503)] = 272480, - [SMALL_STATE(6504)] = 272540, - [SMALL_STATE(6505)] = 272598, - [SMALL_STATE(6506)] = 272658, - [SMALL_STATE(6507)] = 272716, - [SMALL_STATE(6508)] = 272776, - [SMALL_STATE(6509)] = 272836, - [SMALL_STATE(6510)] = 272896, - [SMALL_STATE(6511)] = 272956, - [SMALL_STATE(6512)] = 273010, - [SMALL_STATE(6513)] = 273070, - [SMALL_STATE(6514)] = 273120, - [SMALL_STATE(6515)] = 273174, - [SMALL_STATE(6516)] = 273234, - [SMALL_STATE(6517)] = 273288, - [SMALL_STATE(6518)] = 273346, - [SMALL_STATE(6519)] = 273406, - [SMALL_STATE(6520)] = 273466, - [SMALL_STATE(6521)] = 273518, - [SMALL_STATE(6522)] = 273578, - [SMALL_STATE(6523)] = 273638, - [SMALL_STATE(6524)] = 273695, - [SMALL_STATE(6525)] = 273744, - [SMALL_STATE(6526)] = 273799, - [SMALL_STATE(6527)] = 273854, - [SMALL_STATE(6528)] = 273911, - [SMALL_STATE(6529)] = 273966, - [SMALL_STATE(6530)] = 274021, - [SMALL_STATE(6531)] = 274076, - [SMALL_STATE(6532)] = 274131, - [SMALL_STATE(6533)] = 274188, - [SMALL_STATE(6534)] = 274243, - [SMALL_STATE(6535)] = 274298, - [SMALL_STATE(6536)] = 274353, - [SMALL_STATE(6537)] = 274408, - [SMALL_STATE(6538)] = 274463, - [SMALL_STATE(6539)] = 274520, - [SMALL_STATE(6540)] = 274575, - [SMALL_STATE(6541)] = 274630, - [SMALL_STATE(6542)] = 274681, - [SMALL_STATE(6543)] = 274736, - [SMALL_STATE(6544)] = 274793, - [SMALL_STATE(6545)] = 274848, - [SMALL_STATE(6546)] = 274903, - [SMALL_STATE(6547)] = 274960, - [SMALL_STATE(6548)] = 275015, - [SMALL_STATE(6549)] = 275070, - [SMALL_STATE(6550)] = 275127, - [SMALL_STATE(6551)] = 275180, - [SMALL_STATE(6552)] = 275235, - [SMALL_STATE(6553)] = 275290, - [SMALL_STATE(6554)] = 275345, - [SMALL_STATE(6555)] = 275400, - [SMALL_STATE(6556)] = 275455, - [SMALL_STATE(6557)] = 275510, - [SMALL_STATE(6558)] = 275565, - [SMALL_STATE(6559)] = 275620, - [SMALL_STATE(6560)] = 275675, - [SMALL_STATE(6561)] = 275730, - [SMALL_STATE(6562)] = 275785, - [SMALL_STATE(6563)] = 275840, - [SMALL_STATE(6564)] = 275895, - [SMALL_STATE(6565)] = 275952, - [SMALL_STATE(6566)] = 276007, - [SMALL_STATE(6567)] = 276062, - [SMALL_STATE(6568)] = 276119, - [SMALL_STATE(6569)] = 276176, - [SMALL_STATE(6570)] = 276231, - [SMALL_STATE(6571)] = 276286, - [SMALL_STATE(6572)] = 276341, - [SMALL_STATE(6573)] = 276392, - [SMALL_STATE(6574)] = 276443, - [SMALL_STATE(6575)] = 276498, - [SMALL_STATE(6576)] = 276553, - [SMALL_STATE(6577)] = 276610, - [SMALL_STATE(6578)] = 276667, - [SMALL_STATE(6579)] = 276718, - [SMALL_STATE(6580)] = 276769, - [SMALL_STATE(6581)] = 276822, - [SMALL_STATE(6582)] = 276871, - [SMALL_STATE(6583)] = 276926, - [SMALL_STATE(6584)] = 276983, - [SMALL_STATE(6585)] = 277038, - [SMALL_STATE(6586)] = 277093, - [SMALL_STATE(6587)] = 277144, - [SMALL_STATE(6588)] = 277199, - [SMALL_STATE(6589)] = 277254, - [SMALL_STATE(6590)] = 277309, - [SMALL_STATE(6591)] = 277358, - [SMALL_STATE(6592)] = 277413, - [SMALL_STATE(6593)] = 277468, - [SMALL_STATE(6594)] = 277523, - [SMALL_STATE(6595)] = 277578, - [SMALL_STATE(6596)] = 277627, - [SMALL_STATE(6597)] = 277682, - [SMALL_STATE(6598)] = 277737, - [SMALL_STATE(6599)] = 277788, - [SMALL_STATE(6600)] = 277845, - [SMALL_STATE(6601)] = 277900, - [SMALL_STATE(6602)] = 277955, - [SMALL_STATE(6603)] = 278012, - [SMALL_STATE(6604)] = 278067, - [SMALL_STATE(6605)] = 278122, - [SMALL_STATE(6606)] = 278177, - [SMALL_STATE(6607)] = 278232, - [SMALL_STATE(6608)] = 278285, - [SMALL_STATE(6609)] = 278336, - [SMALL_STATE(6610)] = 278387, - [SMALL_STATE(6611)] = 278440, - [SMALL_STATE(6612)] = 278495, - [SMALL_STATE(6613)] = 278550, - [SMALL_STATE(6614)] = 278607, - [SMALL_STATE(6615)] = 278656, - [SMALL_STATE(6616)] = 278711, - [SMALL_STATE(6617)] = 278766, - [SMALL_STATE(6618)] = 278821, - [SMALL_STATE(6619)] = 278878, - [SMALL_STATE(6620)] = 278931, - [SMALL_STATE(6621)] = 278988, - [SMALL_STATE(6622)] = 279045, - [SMALL_STATE(6623)] = 279102, - [SMALL_STATE(6624)] = 279159, - [SMALL_STATE(6625)] = 279216, - [SMALL_STATE(6626)] = 279273, - [SMALL_STATE(6627)] = 279328, - [SMALL_STATE(6628)] = 279377, - [SMALL_STATE(6629)] = 279426, - [SMALL_STATE(6630)] = 279477, - [SMALL_STATE(6631)] = 279530, - [SMALL_STATE(6632)] = 279585, - [SMALL_STATE(6633)] = 279640, - [SMALL_STATE(6634)] = 279695, - [SMALL_STATE(6635)] = 279750, - [SMALL_STATE(6636)] = 279805, - [SMALL_STATE(6637)] = 279860, - [SMALL_STATE(6638)] = 279917, - [SMALL_STATE(6639)] = 279972, - [SMALL_STATE(6640)] = 280027, - [SMALL_STATE(6641)] = 280082, - [SMALL_STATE(6642)] = 280139, - [SMALL_STATE(6643)] = 280196, - [SMALL_STATE(6644)] = 280251, - [SMALL_STATE(6645)] = 280306, - [SMALL_STATE(6646)] = 280355, - [SMALL_STATE(6647)] = 280410, - [SMALL_STATE(6648)] = 280465, - [SMALL_STATE(6649)] = 280520, - [SMALL_STATE(6650)] = 280577, - [SMALL_STATE(6651)] = 280634, - [SMALL_STATE(6652)] = 280691, - [SMALL_STATE(6653)] = 280748, - [SMALL_STATE(6654)] = 280803, - [SMALL_STATE(6655)] = 280856, - [SMALL_STATE(6656)] = 280911, - [SMALL_STATE(6657)] = 280966, - [SMALL_STATE(6658)] = 281019, - [SMALL_STATE(6659)] = 281072, - [SMALL_STATE(6660)] = 281127, - [SMALL_STATE(6661)] = 281182, - [SMALL_STATE(6662)] = 281235, - [SMALL_STATE(6663)] = 281290, - [SMALL_STATE(6664)] = 281345, - [SMALL_STATE(6665)] = 281400, - [SMALL_STATE(6666)] = 281449, - [SMALL_STATE(6667)] = 281502, - [SMALL_STATE(6668)] = 281553, - [SMALL_STATE(6669)] = 281608, - [SMALL_STATE(6670)] = 281663, - [SMALL_STATE(6671)] = 281718, - [SMALL_STATE(6672)] = 281775, - [SMALL_STATE(6673)] = 281830, - [SMALL_STATE(6674)] = 281885, - [SMALL_STATE(6675)] = 281940, - [SMALL_STATE(6676)] = 281995, - [SMALL_STATE(6677)] = 282050, - [SMALL_STATE(6678)] = 282105, - [SMALL_STATE(6679)] = 282160, - [SMALL_STATE(6680)] = 282215, - [SMALL_STATE(6681)] = 282270, - [SMALL_STATE(6682)] = 282325, - [SMALL_STATE(6683)] = 282382, - [SMALL_STATE(6684)] = 282439, - [SMALL_STATE(6685)] = 282494, - [SMALL_STATE(6686)] = 282551, - [SMALL_STATE(6687)] = 282606, - [SMALL_STATE(6688)] = 282661, - [SMALL_STATE(6689)] = 282716, - [SMALL_STATE(6690)] = 282773, - [SMALL_STATE(6691)] = 282828, - [SMALL_STATE(6692)] = 282878, - [SMALL_STATE(6693)] = 282932, - [SMALL_STATE(6694)] = 282984, - [SMALL_STATE(6695)] = 283038, - [SMALL_STATE(6696)] = 283086, - [SMALL_STATE(6697)] = 283140, - [SMALL_STATE(6698)] = 283188, - [SMALL_STATE(6699)] = 283242, - [SMALL_STATE(6700)] = 283296, - [SMALL_STATE(6701)] = 283348, - [SMALL_STATE(6702)] = 283396, - [SMALL_STATE(6703)] = 283446, - [SMALL_STATE(6704)] = 283498, - [SMALL_STATE(6705)] = 283552, - [SMALL_STATE(6706)] = 283604, - [SMALL_STATE(6707)] = 283652, - [SMALL_STATE(6708)] = 283704, - [SMALL_STATE(6709)] = 283758, - [SMALL_STATE(6710)] = 283810, - [SMALL_STATE(6711)] = 283864, - [SMALL_STATE(6712)] = 283918, - [SMALL_STATE(6713)] = 283968, - [SMALL_STATE(6714)] = 284022, - [SMALL_STATE(6715)] = 284070, - [SMALL_STATE(6716)] = 284124, - [SMALL_STATE(6717)] = 284178, - [SMALL_STATE(6718)] = 284232, - [SMALL_STATE(6719)] = 284284, - [SMALL_STATE(6720)] = 284336, - [SMALL_STATE(6721)] = 284384, - [SMALL_STATE(6722)] = 284438, - [SMALL_STATE(6723)] = 284486, - [SMALL_STATE(6724)] = 284538, - [SMALL_STATE(6725)] = 284586, - [SMALL_STATE(6726)] = 284636, - [SMALL_STATE(6727)] = 284688, - [SMALL_STATE(6728)] = 284736, - [SMALL_STATE(6729)] = 284784, - [SMALL_STATE(6730)] = 284832, - [SMALL_STATE(6731)] = 284882, - [SMALL_STATE(6732)] = 284936, - [SMALL_STATE(6733)] = 284984, - [SMALL_STATE(6734)] = 285034, - [SMALL_STATE(6735)] = 285088, - [SMALL_STATE(6736)] = 285136, - [SMALL_STATE(6737)] = 285190, - [SMALL_STATE(6738)] = 285238, - [SMALL_STATE(6739)] = 285292, - [SMALL_STATE(6740)] = 285346, - [SMALL_STATE(6741)] = 285400, - [SMALL_STATE(6742)] = 285454, - [SMALL_STATE(6743)] = 285508, - [SMALL_STATE(6744)] = 285562, - [SMALL_STATE(6745)] = 285616, - [SMALL_STATE(6746)] = 285670, - [SMALL_STATE(6747)] = 285724, - [SMALL_STATE(6748)] = 285778, - [SMALL_STATE(6749)] = 285832, - [SMALL_STATE(6750)] = 285886, - [SMALL_STATE(6751)] = 285940, - [SMALL_STATE(6752)] = 285994, - [SMALL_STATE(6753)] = 286048, - [SMALL_STATE(6754)] = 286102, - [SMALL_STATE(6755)] = 286156, - [SMALL_STATE(6756)] = 286208, - [SMALL_STATE(6757)] = 286256, - [SMALL_STATE(6758)] = 286304, - [SMALL_STATE(6759)] = 286358, - [SMALL_STATE(6760)] = 286408, - [SMALL_STATE(6761)] = 286458, - [SMALL_STATE(6762)] = 286506, - [SMALL_STATE(6763)] = 286560, - [SMALL_STATE(6764)] = 286614, - [SMALL_STATE(6765)] = 286668, - [SMALL_STATE(6766)] = 286718, - [SMALL_STATE(6767)] = 286768, - [SMALL_STATE(6768)] = 286822, - [SMALL_STATE(6769)] = 286872, - [SMALL_STATE(6770)] = 286924, - [SMALL_STATE(6771)] = 286974, - [SMALL_STATE(6772)] = 287022, - [SMALL_STATE(6773)] = 287074, - [SMALL_STATE(6774)] = 287128, - [SMALL_STATE(6775)] = 287180, - [SMALL_STATE(6776)] = 287230, - [SMALL_STATE(6777)] = 287284, - [SMALL_STATE(6778)] = 287338, - [SMALL_STATE(6779)] = 287392, - [SMALL_STATE(6780)] = 287440, - [SMALL_STATE(6781)] = 287490, - [SMALL_STATE(6782)] = 287544, - [SMALL_STATE(6783)] = 287594, - [SMALL_STATE(6784)] = 287644, - [SMALL_STATE(6785)] = 287696, - [SMALL_STATE(6786)] = 287744, - [SMALL_STATE(6787)] = 287794, - [SMALL_STATE(6788)] = 287846, - [SMALL_STATE(6789)] = 287900, - [SMALL_STATE(6790)] = 287954, - [SMALL_STATE(6791)] = 288004, - [SMALL_STATE(6792)] = 288058, - [SMALL_STATE(6793)] = 288106, - [SMALL_STATE(6794)] = 288160, - [SMALL_STATE(6795)] = 288214, - [SMALL_STATE(6796)] = 288266, - [SMALL_STATE(6797)] = 288317, - [SMALL_STATE(6798)] = 288368, - [SMALL_STATE(6799)] = 288419, - [SMALL_STATE(6800)] = 288470, - [SMALL_STATE(6801)] = 288521, - [SMALL_STATE(6802)] = 288572, - [SMALL_STATE(6803)] = 288623, - [SMALL_STATE(6804)] = 288674, - [SMALL_STATE(6805)] = 288723, - [SMALL_STATE(6806)] = 288774, - [SMALL_STATE(6807)] = 288825, - [SMALL_STATE(6808)] = 288876, - [SMALL_STATE(6809)] = 288927, - [SMALL_STATE(6810)] = 288978, - [SMALL_STATE(6811)] = 289029, - [SMALL_STATE(6812)] = 289080, - [SMALL_STATE(6813)] = 289131, - [SMALL_STATE(6814)] = 289182, - [SMALL_STATE(6815)] = 289233, - [SMALL_STATE(6816)] = 289284, - [SMALL_STATE(6817)] = 289335, - [SMALL_STATE(6818)] = 289386, - [SMALL_STATE(6819)] = 289437, - [SMALL_STATE(6820)] = 289488, - [SMALL_STATE(6821)] = 289539, - [SMALL_STATE(6822)] = 289590, - [SMALL_STATE(6823)] = 289641, - [SMALL_STATE(6824)] = 289692, - [SMALL_STATE(6825)] = 289743, - [SMALL_STATE(6826)] = 289794, - [SMALL_STATE(6827)] = 289845, - [SMALL_STATE(6828)] = 289896, - [SMALL_STATE(6829)] = 289947, - [SMALL_STATE(6830)] = 289998, - [SMALL_STATE(6831)] = 290049, - [SMALL_STATE(6832)] = 290100, - [SMALL_STATE(6833)] = 290151, - [SMALL_STATE(6834)] = 290202, - [SMALL_STATE(6835)] = 290253, - [SMALL_STATE(6836)] = 290304, - [SMALL_STATE(6837)] = 290355, - [SMALL_STATE(6838)] = 290406, - [SMALL_STATE(6839)] = 290457, - [SMALL_STATE(6840)] = 290508, - [SMALL_STATE(6841)] = 290559, - [SMALL_STATE(6842)] = 290610, - [SMALL_STATE(6843)] = 290657, - [SMALL_STATE(6844)] = 290704, - [SMALL_STATE(6845)] = 290755, - [SMALL_STATE(6846)] = 290806, - [SMALL_STATE(6847)] = 290857, - [SMALL_STATE(6848)] = 290908, - [SMALL_STATE(6849)] = 290959, - [SMALL_STATE(6850)] = 291010, - [SMALL_STATE(6851)] = 291057, - [SMALL_STATE(6852)] = 291108, - [SMALL_STATE(6853)] = 291159, - [SMALL_STATE(6854)] = 291210, - [SMALL_STATE(6855)] = 291259, - [SMALL_STATE(6856)] = 291310, - [SMALL_STATE(6857)] = 291361, - [SMALL_STATE(6858)] = 291412, - [SMALL_STATE(6859)] = 291463, - [SMALL_STATE(6860)] = 291514, - [SMALL_STATE(6861)] = 291565, - [SMALL_STATE(6862)] = 291616, - [SMALL_STATE(6863)] = 291667, - [SMALL_STATE(6864)] = 291718, - [SMALL_STATE(6865)] = 291765, - [SMALL_STATE(6866)] = 291816, - [SMALL_STATE(6867)] = 291867, - [SMALL_STATE(6868)] = 291914, - [SMALL_STATE(6869)] = 291961, - [SMALL_STATE(6870)] = 292010, - [SMALL_STATE(6871)] = 292061, - [SMALL_STATE(6872)] = 292112, - [SMALL_STATE(6873)] = 292163, - [SMALL_STATE(6874)] = 292210, - [SMALL_STATE(6875)] = 292261, - [SMALL_STATE(6876)] = 292312, - [SMALL_STATE(6877)] = 292363, - [SMALL_STATE(6878)] = 292414, - [SMALL_STATE(6879)] = 292465, - [SMALL_STATE(6880)] = 292516, - [SMALL_STATE(6881)] = 292567, - [SMALL_STATE(6882)] = 292618, - [SMALL_STATE(6883)] = 292669, - [SMALL_STATE(6884)] = 292720, - [SMALL_STATE(6885)] = 292769, - [SMALL_STATE(6886)] = 292820, - [SMALL_STATE(6887)] = 292867, - [SMALL_STATE(6888)] = 292916, - [SMALL_STATE(6889)] = 292967, - [SMALL_STATE(6890)] = 293018, - [SMALL_STATE(6891)] = 293069, - [SMALL_STATE(6892)] = 293120, - [SMALL_STATE(6893)] = 293171, - [SMALL_STATE(6894)] = 293222, - [SMALL_STATE(6895)] = 293273, - [SMALL_STATE(6896)] = 293324, - [SMALL_STATE(6897)] = 293371, - [SMALL_STATE(6898)] = 293422, - [SMALL_STATE(6899)] = 293473, - [SMALL_STATE(6900)] = 293524, - [SMALL_STATE(6901)] = 293571, - [SMALL_STATE(6902)] = 293618, - [SMALL_STATE(6903)] = 293669, - [SMALL_STATE(6904)] = 293716, - [SMALL_STATE(6905)] = 293763, - [SMALL_STATE(6906)] = 293810, - [SMALL_STATE(6907)] = 293857, - [SMALL_STATE(6908)] = 293908, - [SMALL_STATE(6909)] = 293959, - [SMALL_STATE(6910)] = 294010, - [SMALL_STATE(6911)] = 294061, - [SMALL_STATE(6912)] = 294112, - [SMALL_STATE(6913)] = 294161, - [SMALL_STATE(6914)] = 294212, - [SMALL_STATE(6915)] = 294261, - [SMALL_STATE(6916)] = 294312, - [SMALL_STATE(6917)] = 294363, - [SMALL_STATE(6918)] = 294414, - [SMALL_STATE(6919)] = 294463, - [SMALL_STATE(6920)] = 294510, - [SMALL_STATE(6921)] = 294557, - [SMALL_STATE(6922)] = 294606, - [SMALL_STATE(6923)] = 294657, - [SMALL_STATE(6924)] = 294708, - [SMALL_STATE(6925)] = 294757, - [SMALL_STATE(6926)] = 294808, - [SMALL_STATE(6927)] = 294859, - [SMALL_STATE(6928)] = 294906, - [SMALL_STATE(6929)] = 294957, - [SMALL_STATE(6930)] = 295008, - [SMALL_STATE(6931)] = 295059, - [SMALL_STATE(6932)] = 295110, - [SMALL_STATE(6933)] = 295161, - [SMALL_STATE(6934)] = 295212, - [SMALL_STATE(6935)] = 295261, - [SMALL_STATE(6936)] = 295308, - [SMALL_STATE(6937)] = 295359, - [SMALL_STATE(6938)] = 295410, - [SMALL_STATE(6939)] = 295461, - [SMALL_STATE(6940)] = 295512, - [SMALL_STATE(6941)] = 295563, - [SMALL_STATE(6942)] = 295614, - [SMALL_STATE(6943)] = 295665, - [SMALL_STATE(6944)] = 295716, - [SMALL_STATE(6945)] = 295767, - [SMALL_STATE(6946)] = 295818, - [SMALL_STATE(6947)] = 295869, - [SMALL_STATE(6948)] = 295920, - [SMALL_STATE(6949)] = 295971, - [SMALL_STATE(6950)] = 296022, - [SMALL_STATE(6951)] = 296071, - [SMALL_STATE(6952)] = 296118, - [SMALL_STATE(6953)] = 296169, - [SMALL_STATE(6954)] = 296220, - [SMALL_STATE(6955)] = 296271, - [SMALL_STATE(6956)] = 296320, - [SMALL_STATE(6957)] = 296371, - [SMALL_STATE(6958)] = 296422, - [SMALL_STATE(6959)] = 296473, - [SMALL_STATE(6960)] = 296524, - [SMALL_STATE(6961)] = 296575, - [SMALL_STATE(6962)] = 296626, - [SMALL_STATE(6963)] = 296677, - [SMALL_STATE(6964)] = 296724, - [SMALL_STATE(6965)] = 296775, - [SMALL_STATE(6966)] = 296826, - [SMALL_STATE(6967)] = 296877, - [SMALL_STATE(6968)] = 296928, - [SMALL_STATE(6969)] = 296979, - [SMALL_STATE(6970)] = 297030, - [SMALL_STATE(6971)] = 297081, - [SMALL_STATE(6972)] = 297132, - [SMALL_STATE(6973)] = 297183, - [SMALL_STATE(6974)] = 297234, - [SMALL_STATE(6975)] = 297283, - [SMALL_STATE(6976)] = 297334, - [SMALL_STATE(6977)] = 297385, - [SMALL_STATE(6978)] = 297434, - [SMALL_STATE(6979)] = 297485, - [SMALL_STATE(6980)] = 297536, - [SMALL_STATE(6981)] = 297587, - [SMALL_STATE(6982)] = 297638, - [SMALL_STATE(6983)] = 297687, - [SMALL_STATE(6984)] = 297736, - [SMALL_STATE(6985)] = 297787, - [SMALL_STATE(6986)] = 297838, - [SMALL_STATE(6987)] = 297889, - [SMALL_STATE(6988)] = 297940, - [SMALL_STATE(6989)] = 297991, - [SMALL_STATE(6990)] = 298042, - [SMALL_STATE(6991)] = 298093, - [SMALL_STATE(6992)] = 298144, - [SMALL_STATE(6993)] = 298195, - [SMALL_STATE(6994)] = 298246, - [SMALL_STATE(6995)] = 298297, - [SMALL_STATE(6996)] = 298348, - [SMALL_STATE(6997)] = 298399, - [SMALL_STATE(6998)] = 298450, - [SMALL_STATE(6999)] = 298501, - [SMALL_STATE(7000)] = 298552, - [SMALL_STATE(7001)] = 298603, - [SMALL_STATE(7002)] = 298654, - [SMALL_STATE(7003)] = 298705, - [SMALL_STATE(7004)] = 298756, - [SMALL_STATE(7005)] = 298805, - [SMALL_STATE(7006)] = 298856, - [SMALL_STATE(7007)] = 298907, - [SMALL_STATE(7008)] = 298958, - [SMALL_STATE(7009)] = 299009, - [SMALL_STATE(7010)] = 299060, - [SMALL_STATE(7011)] = 299109, - [SMALL_STATE(7012)] = 299160, - [SMALL_STATE(7013)] = 299211, - [SMALL_STATE(7014)] = 299262, - [SMALL_STATE(7015)] = 299313, - [SMALL_STATE(7016)] = 299364, - [SMALL_STATE(7017)] = 299415, - [SMALL_STATE(7018)] = 299466, - [SMALL_STATE(7019)] = 299515, - [SMALL_STATE(7020)] = 299562, - [SMALL_STATE(7021)] = 299613, - [SMALL_STATE(7022)] = 299664, - [SMALL_STATE(7023)] = 299715, - [SMALL_STATE(7024)] = 299766, - [SMALL_STATE(7025)] = 299817, - [SMALL_STATE(7026)] = 299868, - [SMALL_STATE(7027)] = 299917, - [SMALL_STATE(7028)] = 299968, - [SMALL_STATE(7029)] = 300019, - [SMALL_STATE(7030)] = 300070, - [SMALL_STATE(7031)] = 300121, - [SMALL_STATE(7032)] = 300172, - [SMALL_STATE(7033)] = 300221, - [SMALL_STATE(7034)] = 300272, - [SMALL_STATE(7035)] = 300323, - [SMALL_STATE(7036)] = 300374, - [SMALL_STATE(7037)] = 300425, - [SMALL_STATE(7038)] = 300476, - [SMALL_STATE(7039)] = 300527, - [SMALL_STATE(7040)] = 300578, - [SMALL_STATE(7041)] = 300629, - [SMALL_STATE(7042)] = 300680, - [SMALL_STATE(7043)] = 300731, - [SMALL_STATE(7044)] = 300782, - [SMALL_STATE(7045)] = 300833, - [SMALL_STATE(7046)] = 300884, - [SMALL_STATE(7047)] = 300935, - [SMALL_STATE(7048)] = 300986, - [SMALL_STATE(7049)] = 301037, - [SMALL_STATE(7050)] = 301086, - [SMALL_STATE(7051)] = 301137, - [SMALL_STATE(7052)] = 301188, - [SMALL_STATE(7053)] = 301239, - [SMALL_STATE(7054)] = 301290, - [SMALL_STATE(7055)] = 301341, - [SMALL_STATE(7056)] = 301392, - [SMALL_STATE(7057)] = 301443, - [SMALL_STATE(7058)] = 301494, - [SMALL_STATE(7059)] = 301545, - [SMALL_STATE(7060)] = 301596, - [SMALL_STATE(7061)] = 301647, - [SMALL_STATE(7062)] = 301698, - [SMALL_STATE(7063)] = 301749, - [SMALL_STATE(7064)] = 301798, - [SMALL_STATE(7065)] = 301849, - [SMALL_STATE(7066)] = 301900, - [SMALL_STATE(7067)] = 301949, - [SMALL_STATE(7068)] = 302000, - [SMALL_STATE(7069)] = 302051, - [SMALL_STATE(7070)] = 302100, - [SMALL_STATE(7071)] = 302151, - [SMALL_STATE(7072)] = 302202, - [SMALL_STATE(7073)] = 302253, - [SMALL_STATE(7074)] = 302302, - [SMALL_STATE(7075)] = 302353, - [SMALL_STATE(7076)] = 302404, - [SMALL_STATE(7077)] = 302455, - [SMALL_STATE(7078)] = 302506, - [SMALL_STATE(7079)] = 302557, - [SMALL_STATE(7080)] = 302608, - [SMALL_STATE(7081)] = 302657, - [SMALL_STATE(7082)] = 302708, - [SMALL_STATE(7083)] = 302759, - [SMALL_STATE(7084)] = 302810, - [SMALL_STATE(7085)] = 302859, - [SMALL_STATE(7086)] = 302910, - [SMALL_STATE(7087)] = 302959, - [SMALL_STATE(7088)] = 303006, - [SMALL_STATE(7089)] = 303053, - [SMALL_STATE(7090)] = 303104, - [SMALL_STATE(7091)] = 303155, - [SMALL_STATE(7092)] = 303206, - [SMALL_STATE(7093)] = 303253, - [SMALL_STATE(7094)] = 303300, - [SMALL_STATE(7095)] = 303351, - [SMALL_STATE(7096)] = 303402, - [SMALL_STATE(7097)] = 303451, - [SMALL_STATE(7098)] = 303502, - [SMALL_STATE(7099)] = 303553, - [SMALL_STATE(7100)] = 303604, - [SMALL_STATE(7101)] = 303655, - [SMALL_STATE(7102)] = 303704, - [SMALL_STATE(7103)] = 303755, - [SMALL_STATE(7104)] = 303806, - [SMALL_STATE(7105)] = 303857, - [SMALL_STATE(7106)] = 303908, - [SMALL_STATE(7107)] = 303956, - [SMALL_STATE(7108)] = 304002, - [SMALL_STATE(7109)] = 304050, - [SMALL_STATE(7110)] = 304098, - [SMALL_STATE(7111)] = 304146, - [SMALL_STATE(7112)] = 304192, - [SMALL_STATE(7113)] = 304238, - [SMALL_STATE(7114)] = 304284, - [SMALL_STATE(7115)] = 304332, - [SMALL_STATE(7116)] = 304380, - [SMALL_STATE(7117)] = 304428, - [SMALL_STATE(7118)] = 304476, - [SMALL_STATE(7119)] = 304522, - [SMALL_STATE(7120)] = 304570, - [SMALL_STATE(7121)] = 304618, - [SMALL_STATE(7122)] = 304666, - [SMALL_STATE(7123)] = 304714, - [SMALL_STATE(7124)] = 304762, - [SMALL_STATE(7125)] = 304808, - [SMALL_STATE(7126)] = 304854, - [SMALL_STATE(7127)] = 304902, - [SMALL_STATE(7128)] = 304950, - [SMALL_STATE(7129)] = 304996, - [SMALL_STATE(7130)] = 305044, - [SMALL_STATE(7131)] = 305090, - [SMALL_STATE(7132)] = 305136, - [SMALL_STATE(7133)] = 305182, - [SMALL_STATE(7134)] = 305230, - [SMALL_STATE(7135)] = 305276, - [SMALL_STATE(7136)] = 305322, - [SMALL_STATE(7137)] = 305370, - [SMALL_STATE(7138)] = 305418, - [SMALL_STATE(7139)] = 305464, - [SMALL_STATE(7140)] = 305512, - [SMALL_STATE(7141)] = 305560, - [SMALL_STATE(7142)] = 305608, - [SMALL_STATE(7143)] = 305656, - [SMALL_STATE(7144)] = 305704, - [SMALL_STATE(7145)] = 305752, - [SMALL_STATE(7146)] = 305798, - [SMALL_STATE(7147)] = 305846, - [SMALL_STATE(7148)] = 305894, - [SMALL_STATE(7149)] = 305940, - [SMALL_STATE(7150)] = 305986, - [SMALL_STATE(7151)] = 306034, - [SMALL_STATE(7152)] = 306080, - [SMALL_STATE(7153)] = 306126, - [SMALL_STATE(7154)] = 306174, - [SMALL_STATE(7155)] = 306222, - [SMALL_STATE(7156)] = 306268, - [SMALL_STATE(7157)] = 306314, - [SMALL_STATE(7158)] = 306362, - [SMALL_STATE(7159)] = 306408, - [SMALL_STATE(7160)] = 306454, - [SMALL_STATE(7161)] = 306500, - [SMALL_STATE(7162)] = 306548, - [SMALL_STATE(7163)] = 306594, - [SMALL_STATE(7164)] = 306642, - [SMALL_STATE(7165)] = 306690, - [SMALL_STATE(7166)] = 306738, - [SMALL_STATE(7167)] = 306784, - [SMALL_STATE(7168)] = 306832, - [SMALL_STATE(7169)] = 306880, - [SMALL_STATE(7170)] = 306928, - [SMALL_STATE(7171)] = 306974, - [SMALL_STATE(7172)] = 307020, - [SMALL_STATE(7173)] = 307066, - [SMALL_STATE(7174)] = 307114, - [SMALL_STATE(7175)] = 307162, - [SMALL_STATE(7176)] = 307208, - [SMALL_STATE(7177)] = 307256, - [SMALL_STATE(7178)] = 307304, - [SMALL_STATE(7179)] = 307352, - [SMALL_STATE(7180)] = 307400, - [SMALL_STATE(7181)] = 307448, - [SMALL_STATE(7182)] = 307496, - [SMALL_STATE(7183)] = 307544, - [SMALL_STATE(7184)] = 307592, - [SMALL_STATE(7185)] = 307640, - [SMALL_STATE(7186)] = 307688, - [SMALL_STATE(7187)] = 307734, - [SMALL_STATE(7188)] = 307782, - [SMALL_STATE(7189)] = 307830, - [SMALL_STATE(7190)] = 307878, - [SMALL_STATE(7191)] = 307924, - [SMALL_STATE(7192)] = 307970, - [SMALL_STATE(7193)] = 308016, - [SMALL_STATE(7194)] = 308064, - [SMALL_STATE(7195)] = 308112, - [SMALL_STATE(7196)] = 308160, - [SMALL_STATE(7197)] = 308208, - [SMALL_STATE(7198)] = 308256, - [SMALL_STATE(7199)] = 308304, - [SMALL_STATE(7200)] = 308350, - [SMALL_STATE(7201)] = 308396, - [SMALL_STATE(7202)] = 308442, - [SMALL_STATE(7203)] = 308490, - [SMALL_STATE(7204)] = 308538, - [SMALL_STATE(7205)] = 308584, - [SMALL_STATE(7206)] = 308630, - [SMALL_STATE(7207)] = 308678, - [SMALL_STATE(7208)] = 308724, - [SMALL_STATE(7209)] = 308772, - [SMALL_STATE(7210)] = 308820, - [SMALL_STATE(7211)] = 308866, - [SMALL_STATE(7212)] = 308912, - [SMALL_STATE(7213)] = 308960, - [SMALL_STATE(7214)] = 309008, - [SMALL_STATE(7215)] = 309056, - [SMALL_STATE(7216)] = 309104, - [SMALL_STATE(7217)] = 309150, - [SMALL_STATE(7218)] = 309198, - [SMALL_STATE(7219)] = 309246, - [SMALL_STATE(7220)] = 309292, - [SMALL_STATE(7221)] = 309338, - [SMALL_STATE(7222)] = 309386, - [SMALL_STATE(7223)] = 309434, - [SMALL_STATE(7224)] = 309482, - [SMALL_STATE(7225)] = 309528, - [SMALL_STATE(7226)] = 309576, - [SMALL_STATE(7227)] = 309624, - [SMALL_STATE(7228)] = 309672, - [SMALL_STATE(7229)] = 309720, - [SMALL_STATE(7230)] = 309766, - [SMALL_STATE(7231)] = 309814, - [SMALL_STATE(7232)] = 309860, - [SMALL_STATE(7233)] = 309908, - [SMALL_STATE(7234)] = 309956, - [SMALL_STATE(7235)] = 310004, - [SMALL_STATE(7236)] = 310052, - [SMALL_STATE(7237)] = 310100, - [SMALL_STATE(7238)] = 310146, - [SMALL_STATE(7239)] = 310194, - [SMALL_STATE(7240)] = 310242, - [SMALL_STATE(7241)] = 310290, - [SMALL_STATE(7242)] = 310336, - [SMALL_STATE(7243)] = 310382, - [SMALL_STATE(7244)] = 310430, - [SMALL_STATE(7245)] = 310476, - [SMALL_STATE(7246)] = 310524, - [SMALL_STATE(7247)] = 310570, - [SMALL_STATE(7248)] = 310616, - [SMALL_STATE(7249)] = 310662, - [SMALL_STATE(7250)] = 310710, - [SMALL_STATE(7251)] = 310756, - [SMALL_STATE(7252)] = 310804, - [SMALL_STATE(7253)] = 310850, - [SMALL_STATE(7254)] = 310896, - [SMALL_STATE(7255)] = 310944, - [SMALL_STATE(7256)] = 310990, - [SMALL_STATE(7257)] = 311038, - [SMALL_STATE(7258)] = 311086, - [SMALL_STATE(7259)] = 311134, - [SMALL_STATE(7260)] = 311182, - [SMALL_STATE(7261)] = 311230, - [SMALL_STATE(7262)] = 311276, - [SMALL_STATE(7263)] = 311322, - [SMALL_STATE(7264)] = 311368, - [SMALL_STATE(7265)] = 311416, - [SMALL_STATE(7266)] = 311464, - [SMALL_STATE(7267)] = 311512, - [SMALL_STATE(7268)] = 311558, - [SMALL_STATE(7269)] = 311606, - [SMALL_STATE(7270)] = 311654, - [SMALL_STATE(7271)] = 311702, - [SMALL_STATE(7272)] = 311748, - [SMALL_STATE(7273)] = 311796, - [SMALL_STATE(7274)] = 311844, - [SMALL_STATE(7275)] = 311890, - [SMALL_STATE(7276)] = 311938, - [SMALL_STATE(7277)] = 311986, - [SMALL_STATE(7278)] = 312034, - [SMALL_STATE(7279)] = 312082, - [SMALL_STATE(7280)] = 312130, - [SMALL_STATE(7281)] = 312178, - [SMALL_STATE(7282)] = 312226, - [SMALL_STATE(7283)] = 312274, - [SMALL_STATE(7284)] = 312320, - [SMALL_STATE(7285)] = 312368, - [SMALL_STATE(7286)] = 312416, - [SMALL_STATE(7287)] = 312462, - [SMALL_STATE(7288)] = 312510, - [SMALL_STATE(7289)] = 312556, - [SMALL_STATE(7290)] = 312604, - [SMALL_STATE(7291)] = 312650, - [SMALL_STATE(7292)] = 312696, - [SMALL_STATE(7293)] = 312744, - [SMALL_STATE(7294)] = 312790, - [SMALL_STATE(7295)] = 312838, - [SMALL_STATE(7296)] = 312886, - [SMALL_STATE(7297)] = 312932, - [SMALL_STATE(7298)] = 312978, - [SMALL_STATE(7299)] = 313026, - [SMALL_STATE(7300)] = 313074, - [SMALL_STATE(7301)] = 313120, - [SMALL_STATE(7302)] = 313166, - [SMALL_STATE(7303)] = 313212, - [SMALL_STATE(7304)] = 313260, - [SMALL_STATE(7305)] = 313306, - [SMALL_STATE(7306)] = 313352, - [SMALL_STATE(7307)] = 313398, - [SMALL_STATE(7308)] = 313446, - [SMALL_STATE(7309)] = 313492, - [SMALL_STATE(7310)] = 313540, - [SMALL_STATE(7311)] = 313588, - [SMALL_STATE(7312)] = 313634, - [SMALL_STATE(7313)] = 313680, - [SMALL_STATE(7314)] = 313726, - [SMALL_STATE(7315)] = 313774, - [SMALL_STATE(7316)] = 313822, - [SMALL_STATE(7317)] = 313870, - [SMALL_STATE(7318)] = 313916, - [SMALL_STATE(7319)] = 313964, - [SMALL_STATE(7320)] = 314012, - [SMALL_STATE(7321)] = 314058, - [SMALL_STATE(7322)] = 314104, - [SMALL_STATE(7323)] = 314152, - [SMALL_STATE(7324)] = 314200, - [SMALL_STATE(7325)] = 314248, - [SMALL_STATE(7326)] = 314296, - [SMALL_STATE(7327)] = 314342, - [SMALL_STATE(7328)] = 314390, - [SMALL_STATE(7329)] = 314438, - [SMALL_STATE(7330)] = 314484, - [SMALL_STATE(7331)] = 314532, - [SMALL_STATE(7332)] = 314580, - [SMALL_STATE(7333)] = 314628, - [SMALL_STATE(7334)] = 314674, - [SMALL_STATE(7335)] = 314720, - [SMALL_STATE(7336)] = 314766, - [SMALL_STATE(7337)] = 314814, - [SMALL_STATE(7338)] = 314862, - [SMALL_STATE(7339)] = 314908, - [SMALL_STATE(7340)] = 314956, - [SMALL_STATE(7341)] = 315002, - [SMALL_STATE(7342)] = 315050, - [SMALL_STATE(7343)] = 315098, - [SMALL_STATE(7344)] = 315146, - [SMALL_STATE(7345)] = 315191, - [SMALL_STATE(7346)] = 315236, - [SMALL_STATE(7347)] = 315281, - [SMALL_STATE(7348)] = 315326, - [SMALL_STATE(7349)] = 315371, - [SMALL_STATE(7350)] = 315416, - [SMALL_STATE(7351)] = 315461, - [SMALL_STATE(7352)] = 315506, - [SMALL_STATE(7353)] = 315551, - [SMALL_STATE(7354)] = 315596, - [SMALL_STATE(7355)] = 315641, - [SMALL_STATE(7356)] = 315686, - [SMALL_STATE(7357)] = 315731, - [SMALL_STATE(7358)] = 315776, - [SMALL_STATE(7359)] = 315821, - [SMALL_STATE(7360)] = 315866, - [SMALL_STATE(7361)] = 315911, - [SMALL_STATE(7362)] = 315956, - [SMALL_STATE(7363)] = 316001, - [SMALL_STATE(7364)] = 316046, - [SMALL_STATE(7365)] = 316091, - [SMALL_STATE(7366)] = 316136, - [SMALL_STATE(7367)] = 316181, - [SMALL_STATE(7368)] = 316226, - [SMALL_STATE(7369)] = 316271, - [SMALL_STATE(7370)] = 316316, - [SMALL_STATE(7371)] = 316361, - [SMALL_STATE(7372)] = 316406, - [SMALL_STATE(7373)] = 316451, - [SMALL_STATE(7374)] = 316496, - [SMALL_STATE(7375)] = 316541, - [SMALL_STATE(7376)] = 316586, - [SMALL_STATE(7377)] = 316631, - [SMALL_STATE(7378)] = 316676, - [SMALL_STATE(7379)] = 316721, - [SMALL_STATE(7380)] = 316766, - [SMALL_STATE(7381)] = 316811, - [SMALL_STATE(7382)] = 316856, - [SMALL_STATE(7383)] = 316901, - [SMALL_STATE(7384)] = 316946, - [SMALL_STATE(7385)] = 316991, - [SMALL_STATE(7386)] = 317036, - [SMALL_STATE(7387)] = 317081, - [SMALL_STATE(7388)] = 317126, - [SMALL_STATE(7389)] = 317171, - [SMALL_STATE(7390)] = 317216, - [SMALL_STATE(7391)] = 317261, - [SMALL_STATE(7392)] = 317306, - [SMALL_STATE(7393)] = 317351, - [SMALL_STATE(7394)] = 317396, - [SMALL_STATE(7395)] = 317441, - [SMALL_STATE(7396)] = 317486, - [SMALL_STATE(7397)] = 317531, - [SMALL_STATE(7398)] = 317576, - [SMALL_STATE(7399)] = 317621, - [SMALL_STATE(7400)] = 317666, - [SMALL_STATE(7401)] = 317711, - [SMALL_STATE(7402)] = 317756, - [SMALL_STATE(7403)] = 317801, - [SMALL_STATE(7404)] = 317846, - [SMALL_STATE(7405)] = 317891, - [SMALL_STATE(7406)] = 317936, - [SMALL_STATE(7407)] = 317981, - [SMALL_STATE(7408)] = 318026, - [SMALL_STATE(7409)] = 318071, - [SMALL_STATE(7410)] = 318116, - [SMALL_STATE(7411)] = 318161, - [SMALL_STATE(7412)] = 318206, - [SMALL_STATE(7413)] = 318251, - [SMALL_STATE(7414)] = 318296, - [SMALL_STATE(7415)] = 318341, - [SMALL_STATE(7416)] = 318386, - [SMALL_STATE(7417)] = 318431, - [SMALL_STATE(7418)] = 318476, - [SMALL_STATE(7419)] = 318521, - [SMALL_STATE(7420)] = 318566, - [SMALL_STATE(7421)] = 318611, - [SMALL_STATE(7422)] = 318656, - [SMALL_STATE(7423)] = 318701, - [SMALL_STATE(7424)] = 318746, - [SMALL_STATE(7425)] = 318791, - [SMALL_STATE(7426)] = 318836, - [SMALL_STATE(7427)] = 318881, - [SMALL_STATE(7428)] = 318926, - [SMALL_STATE(7429)] = 318971, - [SMALL_STATE(7430)] = 319016, - [SMALL_STATE(7431)] = 319061, - [SMALL_STATE(7432)] = 319106, - [SMALL_STATE(7433)] = 319151, - [SMALL_STATE(7434)] = 319196, - [SMALL_STATE(7435)] = 319241, - [SMALL_STATE(7436)] = 319286, - [SMALL_STATE(7437)] = 319331, - [SMALL_STATE(7438)] = 319376, - [SMALL_STATE(7439)] = 319421, - [SMALL_STATE(7440)] = 319466, - [SMALL_STATE(7441)] = 319511, - [SMALL_STATE(7442)] = 319556, - [SMALL_STATE(7443)] = 319601, - [SMALL_STATE(7444)] = 319646, - [SMALL_STATE(7445)] = 319691, - [SMALL_STATE(7446)] = 319736, - [SMALL_STATE(7447)] = 319781, - [SMALL_STATE(7448)] = 319826, - [SMALL_STATE(7449)] = 319871, - [SMALL_STATE(7450)] = 319916, - [SMALL_STATE(7451)] = 319961, - [SMALL_STATE(7452)] = 320006, - [SMALL_STATE(7453)] = 320051, - [SMALL_STATE(7454)] = 320096, - [SMALL_STATE(7455)] = 320141, - [SMALL_STATE(7456)] = 320186, - [SMALL_STATE(7457)] = 320231, - [SMALL_STATE(7458)] = 320276, - [SMALL_STATE(7459)] = 320321, - [SMALL_STATE(7460)] = 320366, - [SMALL_STATE(7461)] = 320411, - [SMALL_STATE(7462)] = 320456, - [SMALL_STATE(7463)] = 320501, - [SMALL_STATE(7464)] = 320546, - [SMALL_STATE(7465)] = 320591, - [SMALL_STATE(7466)] = 320636, - [SMALL_STATE(7467)] = 320681, - [SMALL_STATE(7468)] = 320726, - [SMALL_STATE(7469)] = 320771, - [SMALL_STATE(7470)] = 320816, - [SMALL_STATE(7471)] = 320861, - [SMALL_STATE(7472)] = 320906, - [SMALL_STATE(7473)] = 320951, - [SMALL_STATE(7474)] = 320996, - [SMALL_STATE(7475)] = 321041, - [SMALL_STATE(7476)] = 321086, - [SMALL_STATE(7477)] = 321131, - [SMALL_STATE(7478)] = 321176, - [SMALL_STATE(7479)] = 321221, - [SMALL_STATE(7480)] = 321266, - [SMALL_STATE(7481)] = 321311, - [SMALL_STATE(7482)] = 321356, - [SMALL_STATE(7483)] = 321401, - [SMALL_STATE(7484)] = 321446, - [SMALL_STATE(7485)] = 321491, - [SMALL_STATE(7486)] = 321536, - [SMALL_STATE(7487)] = 321581, - [SMALL_STATE(7488)] = 321626, - [SMALL_STATE(7489)] = 321671, - [SMALL_STATE(7490)] = 321716, - [SMALL_STATE(7491)] = 321761, - [SMALL_STATE(7492)] = 321806, - [SMALL_STATE(7493)] = 321851, - [SMALL_STATE(7494)] = 321896, - [SMALL_STATE(7495)] = 321941, - [SMALL_STATE(7496)] = 321986, - [SMALL_STATE(7497)] = 322031, - [SMALL_STATE(7498)] = 322076, - [SMALL_STATE(7499)] = 322121, - [SMALL_STATE(7500)] = 322166, - [SMALL_STATE(7501)] = 322211, - [SMALL_STATE(7502)] = 322256, - [SMALL_STATE(7503)] = 322301, - [SMALL_STATE(7504)] = 322346, - [SMALL_STATE(7505)] = 322391, - [SMALL_STATE(7506)] = 322436, - [SMALL_STATE(7507)] = 322481, - [SMALL_STATE(7508)] = 322526, - [SMALL_STATE(7509)] = 322571, - [SMALL_STATE(7510)] = 322616, - [SMALL_STATE(7511)] = 322661, - [SMALL_STATE(7512)] = 322706, - [SMALL_STATE(7513)] = 322751, - [SMALL_STATE(7514)] = 322796, - [SMALL_STATE(7515)] = 322841, - [SMALL_STATE(7516)] = 322886, - [SMALL_STATE(7517)] = 322931, - [SMALL_STATE(7518)] = 322976, - [SMALL_STATE(7519)] = 323021, - [SMALL_STATE(7520)] = 323066, - [SMALL_STATE(7521)] = 323111, - [SMALL_STATE(7522)] = 323156, - [SMALL_STATE(7523)] = 323201, - [SMALL_STATE(7524)] = 323246, - [SMALL_STATE(7525)] = 323291, - [SMALL_STATE(7526)] = 323336, - [SMALL_STATE(7527)] = 323381, - [SMALL_STATE(7528)] = 323426, - [SMALL_STATE(7529)] = 323471, - [SMALL_STATE(7530)] = 323516, - [SMALL_STATE(7531)] = 323561, - [SMALL_STATE(7532)] = 323606, - [SMALL_STATE(7533)] = 323651, - [SMALL_STATE(7534)] = 323696, - [SMALL_STATE(7535)] = 323741, - [SMALL_STATE(7536)] = 323786, - [SMALL_STATE(7537)] = 323831, - [SMALL_STATE(7538)] = 323876, - [SMALL_STATE(7539)] = 323921, - [SMALL_STATE(7540)] = 323966, - [SMALL_STATE(7541)] = 324011, - [SMALL_STATE(7542)] = 324056, - [SMALL_STATE(7543)] = 324101, - [SMALL_STATE(7544)] = 324146, - [SMALL_STATE(7545)] = 324191, - [SMALL_STATE(7546)] = 324236, - [SMALL_STATE(7547)] = 324281, - [SMALL_STATE(7548)] = 324326, - [SMALL_STATE(7549)] = 324371, - [SMALL_STATE(7550)] = 324416, - [SMALL_STATE(7551)] = 324461, - [SMALL_STATE(7552)] = 324506, - [SMALL_STATE(7553)] = 324551, - [SMALL_STATE(7554)] = 324596, - [SMALL_STATE(7555)] = 324641, - [SMALL_STATE(7556)] = 324686, - [SMALL_STATE(7557)] = 324731, - [SMALL_STATE(7558)] = 324776, - [SMALL_STATE(7559)] = 324821, - [SMALL_STATE(7560)] = 324866, - [SMALL_STATE(7561)] = 324911, - [SMALL_STATE(7562)] = 324956, - [SMALL_STATE(7563)] = 325001, - [SMALL_STATE(7564)] = 325046, - [SMALL_STATE(7565)] = 325091, - [SMALL_STATE(7566)] = 325136, - [SMALL_STATE(7567)] = 325181, - [SMALL_STATE(7568)] = 325226, - [SMALL_STATE(7569)] = 325271, - [SMALL_STATE(7570)] = 325316, - [SMALL_STATE(7571)] = 325361, - [SMALL_STATE(7572)] = 325406, - [SMALL_STATE(7573)] = 325451, - [SMALL_STATE(7574)] = 325496, - [SMALL_STATE(7575)] = 325541, - [SMALL_STATE(7576)] = 325586, - [SMALL_STATE(7577)] = 325631, - [SMALL_STATE(7578)] = 325676, - [SMALL_STATE(7579)] = 325721, - [SMALL_STATE(7580)] = 325766, - [SMALL_STATE(7581)] = 325811, - [SMALL_STATE(7582)] = 325856, - [SMALL_STATE(7583)] = 325901, - [SMALL_STATE(7584)] = 325946, - [SMALL_STATE(7585)] = 325991, - [SMALL_STATE(7586)] = 326036, - [SMALL_STATE(7587)] = 326081, - [SMALL_STATE(7588)] = 326126, - [SMALL_STATE(7589)] = 326171, - [SMALL_STATE(7590)] = 326216, - [SMALL_STATE(7591)] = 326261, - [SMALL_STATE(7592)] = 326306, - [SMALL_STATE(7593)] = 326351, - [SMALL_STATE(7594)] = 326396, - [SMALL_STATE(7595)] = 326441, - [SMALL_STATE(7596)] = 326486, - [SMALL_STATE(7597)] = 326531, - [SMALL_STATE(7598)] = 326576, - [SMALL_STATE(7599)] = 326621, - [SMALL_STATE(7600)] = 326666, - [SMALL_STATE(7601)] = 326711, - [SMALL_STATE(7602)] = 326756, - [SMALL_STATE(7603)] = 326801, - [SMALL_STATE(7604)] = 326846, - [SMALL_STATE(7605)] = 326891, - [SMALL_STATE(7606)] = 326936, - [SMALL_STATE(7607)] = 326981, - [SMALL_STATE(7608)] = 327026, - [SMALL_STATE(7609)] = 327071, - [SMALL_STATE(7610)] = 327116, - [SMALL_STATE(7611)] = 327161, - [SMALL_STATE(7612)] = 327206, - [SMALL_STATE(7613)] = 327251, - [SMALL_STATE(7614)] = 327296, - [SMALL_STATE(7615)] = 327341, - [SMALL_STATE(7616)] = 327386, - [SMALL_STATE(7617)] = 327431, - [SMALL_STATE(7618)] = 327476, - [SMALL_STATE(7619)] = 327521, - [SMALL_STATE(7620)] = 327566, - [SMALL_STATE(7621)] = 327611, - [SMALL_STATE(7622)] = 327656, - [SMALL_STATE(7623)] = 327701, - [SMALL_STATE(7624)] = 327746, - [SMALL_STATE(7625)] = 327791, - [SMALL_STATE(7626)] = 327836, - [SMALL_STATE(7627)] = 327881, - [SMALL_STATE(7628)] = 327926, - [SMALL_STATE(7629)] = 327971, - [SMALL_STATE(7630)] = 328016, - [SMALL_STATE(7631)] = 328061, - [SMALL_STATE(7632)] = 328106, - [SMALL_STATE(7633)] = 328151, - [SMALL_STATE(7634)] = 328196, - [SMALL_STATE(7635)] = 328241, - [SMALL_STATE(7636)] = 328286, - [SMALL_STATE(7637)] = 328331, - [SMALL_STATE(7638)] = 328376, - [SMALL_STATE(7639)] = 328421, - [SMALL_STATE(7640)] = 328466, - [SMALL_STATE(7641)] = 328511, - [SMALL_STATE(7642)] = 328556, - [SMALL_STATE(7643)] = 328601, - [SMALL_STATE(7644)] = 328646, - [SMALL_STATE(7645)] = 328691, - [SMALL_STATE(7646)] = 328736, - [SMALL_STATE(7647)] = 328781, - [SMALL_STATE(7648)] = 328826, - [SMALL_STATE(7649)] = 328871, - [SMALL_STATE(7650)] = 328916, - [SMALL_STATE(7651)] = 328961, - [SMALL_STATE(7652)] = 329006, - [SMALL_STATE(7653)] = 329051, - [SMALL_STATE(7654)] = 329096, - [SMALL_STATE(7655)] = 329141, - [SMALL_STATE(7656)] = 329186, - [SMALL_STATE(7657)] = 329231, - [SMALL_STATE(7658)] = 329276, - [SMALL_STATE(7659)] = 329321, - [SMALL_STATE(7660)] = 329366, - [SMALL_STATE(7661)] = 329411, - [SMALL_STATE(7662)] = 329456, - [SMALL_STATE(7663)] = 329501, - [SMALL_STATE(7664)] = 329546, - [SMALL_STATE(7665)] = 329591, - [SMALL_STATE(7666)] = 329636, - [SMALL_STATE(7667)] = 329681, - [SMALL_STATE(7668)] = 329726, - [SMALL_STATE(7669)] = 329771, - [SMALL_STATE(7670)] = 329816, - [SMALL_STATE(7671)] = 329861, - [SMALL_STATE(7672)] = 329906, - [SMALL_STATE(7673)] = 329951, - [SMALL_STATE(7674)] = 329996, - [SMALL_STATE(7675)] = 330041, - [SMALL_STATE(7676)] = 330086, - [SMALL_STATE(7677)] = 330131, - [SMALL_STATE(7678)] = 330176, - [SMALL_STATE(7679)] = 330221, - [SMALL_STATE(7680)] = 330266, - [SMALL_STATE(7681)] = 330311, - [SMALL_STATE(7682)] = 330356, - [SMALL_STATE(7683)] = 330401, - [SMALL_STATE(7684)] = 330446, - [SMALL_STATE(7685)] = 330491, - [SMALL_STATE(7686)] = 330536, - [SMALL_STATE(7687)] = 330581, - [SMALL_STATE(7688)] = 330626, - [SMALL_STATE(7689)] = 330671, - [SMALL_STATE(7690)] = 330716, - [SMALL_STATE(7691)] = 330761, - [SMALL_STATE(7692)] = 330806, - [SMALL_STATE(7693)] = 330851, - [SMALL_STATE(7694)] = 330896, - [SMALL_STATE(7695)] = 330941, - [SMALL_STATE(7696)] = 330986, - [SMALL_STATE(7697)] = 331031, - [SMALL_STATE(7698)] = 331076, - [SMALL_STATE(7699)] = 331121, - [SMALL_STATE(7700)] = 331166, - [SMALL_STATE(7701)] = 331211, - [SMALL_STATE(7702)] = 331256, - [SMALL_STATE(7703)] = 331301, - [SMALL_STATE(7704)] = 331346, - [SMALL_STATE(7705)] = 331391, - [SMALL_STATE(7706)] = 331436, - [SMALL_STATE(7707)] = 331481, - [SMALL_STATE(7708)] = 331526, - [SMALL_STATE(7709)] = 331571, - [SMALL_STATE(7710)] = 331616, - [SMALL_STATE(7711)] = 331661, - [SMALL_STATE(7712)] = 331706, - [SMALL_STATE(7713)] = 331751, - [SMALL_STATE(7714)] = 331796, - [SMALL_STATE(7715)] = 331841, - [SMALL_STATE(7716)] = 331886, - [SMALL_STATE(7717)] = 331931, - [SMALL_STATE(7718)] = 331976, - [SMALL_STATE(7719)] = 332021, - [SMALL_STATE(7720)] = 332066, - [SMALL_STATE(7721)] = 332111, - [SMALL_STATE(7722)] = 332156, - [SMALL_STATE(7723)] = 332201, - [SMALL_STATE(7724)] = 332246, - [SMALL_STATE(7725)] = 332291, - [SMALL_STATE(7726)] = 332336, - [SMALL_STATE(7727)] = 332381, - [SMALL_STATE(7728)] = 332426, - [SMALL_STATE(7729)] = 332471, - [SMALL_STATE(7730)] = 332516, - [SMALL_STATE(7731)] = 332561, - [SMALL_STATE(7732)] = 332606, - [SMALL_STATE(7733)] = 332651, - [SMALL_STATE(7734)] = 332696, - [SMALL_STATE(7735)] = 332741, - [SMALL_STATE(7736)] = 332786, - [SMALL_STATE(7737)] = 332831, - [SMALL_STATE(7738)] = 332876, - [SMALL_STATE(7739)] = 332921, - [SMALL_STATE(7740)] = 332966, - [SMALL_STATE(7741)] = 333011, - [SMALL_STATE(7742)] = 333056, - [SMALL_STATE(7743)] = 333101, - [SMALL_STATE(7744)] = 333146, - [SMALL_STATE(7745)] = 333191, - [SMALL_STATE(7746)] = 333236, - [SMALL_STATE(7747)] = 333281, - [SMALL_STATE(7748)] = 333326, - [SMALL_STATE(7749)] = 333371, - [SMALL_STATE(7750)] = 333416, - [SMALL_STATE(7751)] = 333461, - [SMALL_STATE(7752)] = 333506, - [SMALL_STATE(7753)] = 333551, - [SMALL_STATE(7754)] = 333596, - [SMALL_STATE(7755)] = 333641, - [SMALL_STATE(7756)] = 333686, - [SMALL_STATE(7757)] = 333731, - [SMALL_STATE(7758)] = 333776, - [SMALL_STATE(7759)] = 333821, - [SMALL_STATE(7760)] = 333866, - [SMALL_STATE(7761)] = 333911, - [SMALL_STATE(7762)] = 333956, - [SMALL_STATE(7763)] = 334001, - [SMALL_STATE(7764)] = 334046, - [SMALL_STATE(7765)] = 334091, - [SMALL_STATE(7766)] = 334136, - [SMALL_STATE(7767)] = 334181, - [SMALL_STATE(7768)] = 334226, - [SMALL_STATE(7769)] = 334271, - [SMALL_STATE(7770)] = 334316, - [SMALL_STATE(7771)] = 334361, - [SMALL_STATE(7772)] = 334406, - [SMALL_STATE(7773)] = 334451, - [SMALL_STATE(7774)] = 334496, - [SMALL_STATE(7775)] = 334541, - [SMALL_STATE(7776)] = 334586, - [SMALL_STATE(7777)] = 334631, - [SMALL_STATE(7778)] = 334676, - [SMALL_STATE(7779)] = 334721, - [SMALL_STATE(7780)] = 334766, - [SMALL_STATE(7781)] = 334811, - [SMALL_STATE(7782)] = 334856, - [SMALL_STATE(7783)] = 334901, - [SMALL_STATE(7784)] = 334946, - [SMALL_STATE(7785)] = 334991, - [SMALL_STATE(7786)] = 335036, - [SMALL_STATE(7787)] = 335081, - [SMALL_STATE(7788)] = 335126, - [SMALL_STATE(7789)] = 335171, - [SMALL_STATE(7790)] = 335216, - [SMALL_STATE(7791)] = 335261, - [SMALL_STATE(7792)] = 335306, - [SMALL_STATE(7793)] = 335351, - [SMALL_STATE(7794)] = 335396, - [SMALL_STATE(7795)] = 335441, - [SMALL_STATE(7796)] = 335486, - [SMALL_STATE(7797)] = 335531, - [SMALL_STATE(7798)] = 335576, - [SMALL_STATE(7799)] = 335621, - [SMALL_STATE(7800)] = 335666, - [SMALL_STATE(7801)] = 335670, - [SMALL_STATE(7802)] = 335674, - [SMALL_STATE(7803)] = 335678, - [SMALL_STATE(7804)] = 335682, - [SMALL_STATE(7805)] = 335686, - [SMALL_STATE(7806)] = 335690, - [SMALL_STATE(7807)] = 335694, - [SMALL_STATE(7808)] = 335698, - [SMALL_STATE(7809)] = 335702, - [SMALL_STATE(7810)] = 335706, - [SMALL_STATE(7811)] = 335710, - [SMALL_STATE(7812)] = 335714, - [SMALL_STATE(7813)] = 335718, - [SMALL_STATE(7814)] = 335722, - [SMALL_STATE(7815)] = 335726, - [SMALL_STATE(7816)] = 335730, + [SMALL_STATE(4511)] = 67913, + [SMALL_STATE(4512)] = 68049, + [SMALL_STATE(4513)] = 68195, + [SMALL_STATE(4514)] = 68327, + [SMALL_STATE(4515)] = 68467, + [SMALL_STATE(4516)] = 68553, + [SMALL_STATE(4517)] = 68681, + [SMALL_STATE(4518)] = 68783, + [SMALL_STATE(4519)] = 68911, + [SMALL_STATE(4520)] = 69001, + [SMALL_STATE(4521)] = 69093, + [SMALL_STATE(4522)] = 69183, + [SMALL_STATE(4523)] = 69273, + [SMALL_STATE(4524)] = 69363, + [SMALL_STATE(4525)] = 69453, + [SMALL_STATE(4526)] = 69541, + [SMALL_STATE(4527)] = 69631, + [SMALL_STATE(4528)] = 69719, + [SMALL_STATE(4529)] = 69845, + [SMALL_STATE(4530)] = 69963, + [SMALL_STATE(4531)] = 70053, + [SMALL_STATE(4532)] = 70193, + [SMALL_STATE(4533)] = 70305, + [SMALL_STATE(4534)] = 70409, + [SMALL_STATE(4535)] = 70523, + [SMALL_STATE(4536)] = 70637, + [SMALL_STATE(4537)] = 70725, + [SMALL_STATE(4538)] = 70811, + [SMALL_STATE(4539)] = 70897, + [SMALL_STATE(4540)] = 71001, + [SMALL_STATE(4541)] = 71093, + [SMALL_STATE(4542)] = 71239, + [SMALL_STATE(4543)] = 71327, + [SMALL_STATE(4544)] = 71434, + [SMALL_STATE(4545)] = 71573, + [SMALL_STATE(4546)] = 71702, + [SMALL_STATE(4547)] = 71833, + [SMALL_STATE(4548)] = 71960, + [SMALL_STATE(4549)] = 72085, + [SMALL_STATE(4550)] = 72188, + [SMALL_STATE(4551)] = 72321, + [SMALL_STATE(4552)] = 72456, + [SMALL_STATE(4553)] = 72595, + [SMALL_STATE(4554)] = 72734, + [SMALL_STATE(4555)] = 72873, + [SMALL_STATE(4556)] = 73012, + [SMALL_STATE(4557)] = 73151, + [SMALL_STATE(4558)] = 73280, + [SMALL_STATE(4559)] = 73411, + [SMALL_STATE(4560)] = 73538, + [SMALL_STATE(4561)] = 73663, + [SMALL_STATE(4562)] = 73796, + [SMALL_STATE(4563)] = 73931, + [SMALL_STATE(4564)] = 74070, + [SMALL_STATE(4565)] = 74211, + [SMALL_STATE(4566)] = 74300, + [SMALL_STATE(4567)] = 74387, + [SMALL_STATE(4568)] = 74474, + [SMALL_STATE(4569)] = 74613, + [SMALL_STATE(4570)] = 74726, + [SMALL_STATE(4571)] = 74843, + [SMALL_STATE(4572)] = 74954, + [SMALL_STATE(4573)] = 75067, + [SMALL_STATE(4574)] = 75152, + [SMALL_STATE(4575)] = 75269, + [SMALL_STATE(4576)] = 75380, + [SMALL_STATE(4577)] = 75509, + [SMALL_STATE(4578)] = 75640, + [SMALL_STATE(4579)] = 75767, + [SMALL_STATE(4580)] = 75880, + [SMALL_STATE(4581)] = 76005, + [SMALL_STATE(4582)] = 76138, + [SMALL_STATE(4583)] = 76273, + [SMALL_STATE(4584)] = 76412, + [SMALL_STATE(4585)] = 76551, + [SMALL_STATE(4586)] = 76654, + [SMALL_STATE(4587)] = 76793, + [SMALL_STATE(4588)] = 76932, + [SMALL_STATE(4589)] = 77071, + [SMALL_STATE(4590)] = 77210, + [SMALL_STATE(4591)] = 77313, + [SMALL_STATE(4592)] = 77398, + [SMALL_STATE(4593)] = 77483, + [SMALL_STATE(4594)] = 77576, + [SMALL_STATE(4595)] = 77661, + [SMALL_STATE(4596)] = 77752, + [SMALL_STATE(4597)] = 77837, + [SMALL_STATE(4598)] = 77948, + [SMALL_STATE(4599)] = 78033, + [SMALL_STATE(4600)] = 78122, + [SMALL_STATE(4601)] = 78239, + [SMALL_STATE(4602)] = 78350, + [SMALL_STATE(4603)] = 78463, + [SMALL_STATE(4604)] = 78566, + [SMALL_STATE(4605)] = 78655, + [SMALL_STATE(4606)] = 78800, + [SMALL_STATE(4607)] = 78889, + [SMALL_STATE(4608)] = 78974, + [SMALL_STATE(4609)] = 79091, + [SMALL_STATE(4610)] = 79202, + [SMALL_STATE(4611)] = 79309, + [SMALL_STATE(4612)] = 79438, + [SMALL_STATE(4613)] = 79569, + [SMALL_STATE(4614)] = 79696, + [SMALL_STATE(4615)] = 79809, + [SMALL_STATE(4616)] = 79934, + [SMALL_STATE(4617)] = 80037, + [SMALL_STATE(4618)] = 80170, + [SMALL_STATE(4619)] = 80305, + [SMALL_STATE(4620)] = 80444, + [SMALL_STATE(4621)] = 80583, + [SMALL_STATE(4622)] = 80722, + [SMALL_STATE(4623)] = 80807, + [SMALL_STATE(4624)] = 80946, + [SMALL_STATE(4625)] = 81063, + [SMALL_STATE(4626)] = 81174, + [SMALL_STATE(4627)] = 81287, + [SMALL_STATE(4628)] = 81390, + [SMALL_STATE(4629)] = 81475, + [SMALL_STATE(4630)] = 81560, + [SMALL_STATE(4631)] = 81647, + [SMALL_STATE(4632)] = 81732, + [SMALL_STATE(4633)] = 81817, + [SMALL_STATE(4634)] = 81902, + [SMALL_STATE(4635)] = 82019, + [SMALL_STATE(4636)] = 82130, + [SMALL_STATE(4637)] = 82243, + [SMALL_STATE(4638)] = 82346, + [SMALL_STATE(4639)] = 82431, + [SMALL_STATE(4640)] = 82516, + [SMALL_STATE(4641)] = 82601, + [SMALL_STATE(4642)] = 82686, + [SMALL_STATE(4643)] = 82771, + [SMALL_STATE(4644)] = 82856, + [SMALL_STATE(4645)] = 82941, + [SMALL_STATE(4646)] = 83026, + [SMALL_STATE(4647)] = 83111, + [SMALL_STATE(4648)] = 83196, + [SMALL_STATE(4649)] = 83281, + [SMALL_STATE(4650)] = 83366, + [SMALL_STATE(4651)] = 83451, + [SMALL_STATE(4652)] = 83536, + [SMALL_STATE(4653)] = 83621, + [SMALL_STATE(4654)] = 83706, + [SMALL_STATE(4655)] = 83791, + [SMALL_STATE(4656)] = 83876, + [SMALL_STATE(4657)] = 83961, + [SMALL_STATE(4658)] = 84046, + [SMALL_STATE(4659)] = 84185, + [SMALL_STATE(4660)] = 84270, + [SMALL_STATE(4661)] = 84355, + [SMALL_STATE(4662)] = 84440, + [SMALL_STATE(4663)] = 84525, + [SMALL_STATE(4664)] = 84610, + [SMALL_STATE(4665)] = 84723, + [SMALL_STATE(4666)] = 84808, + [SMALL_STATE(4667)] = 84893, + [SMALL_STATE(4668)] = 84978, + [SMALL_STATE(4669)] = 85063, + [SMALL_STATE(4670)] = 85148, + [SMALL_STATE(4671)] = 85233, + [SMALL_STATE(4672)] = 85318, + [SMALL_STATE(4673)] = 85403, + [SMALL_STATE(4674)] = 85488, + [SMALL_STATE(4675)] = 85573, + [SMALL_STATE(4676)] = 85658, + [SMALL_STATE(4677)] = 85797, + [SMALL_STATE(4678)] = 85900, + [SMALL_STATE(4679)] = 86039, + [SMALL_STATE(4680)] = 86124, + [SMALL_STATE(4681)] = 86209, + [SMALL_STATE(4682)] = 86326, + [SMALL_STATE(4683)] = 86465, + [SMALL_STATE(4684)] = 86554, + [SMALL_STATE(4685)] = 86643, + [SMALL_STATE(4686)] = 86754, + [SMALL_STATE(4687)] = 86861, + [SMALL_STATE(4688)] = 86990, + [SMALL_STATE(4689)] = 87121, + [SMALL_STATE(4690)] = 87248, + [SMALL_STATE(4691)] = 87361, + [SMALL_STATE(4692)] = 87486, + [SMALL_STATE(4693)] = 87573, + [SMALL_STATE(4694)] = 87662, + [SMALL_STATE(4695)] = 87765, + [SMALL_STATE(4696)] = 87898, + [SMALL_STATE(4697)] = 88033, + [SMALL_STATE(4698)] = 88172, + [SMALL_STATE(4699)] = 88311, + [SMALL_STATE(4700)] = 88450, + [SMALL_STATE(4701)] = 88553, + [SMALL_STATE(4702)] = 88638, + [SMALL_STATE(4703)] = 88723, + [SMALL_STATE(4704)] = 88808, + [SMALL_STATE(4705)] = 88893, + [SMALL_STATE(4706)] = 88982, + [SMALL_STATE(4707)] = 89071, + [SMALL_STATE(4708)] = 89156, + [SMALL_STATE(4709)] = 89295, + [SMALL_STATE(4710)] = 89434, + [SMALL_STATE(4711)] = 89519, + [SMALL_STATE(4712)] = 89604, + [SMALL_STATE(4713)] = 89689, + [SMALL_STATE(4714)] = 89774, + [SMALL_STATE(4715)] = 89913, + [SMALL_STATE(4716)] = 89998, + [SMALL_STATE(4717)] = 90083, + [SMALL_STATE(4718)] = 90170, + [SMALL_STATE(4719)] = 90255, + [SMALL_STATE(4720)] = 90340, + [SMALL_STATE(4721)] = 90425, + [SMALL_STATE(4722)] = 90510, + [SMALL_STATE(4723)] = 90595, + [SMALL_STATE(4724)] = 90680, + [SMALL_STATE(4725)] = 90765, + [SMALL_STATE(4726)] = 90850, + [SMALL_STATE(4727)] = 90957, + [SMALL_STATE(4728)] = 91096, + [SMALL_STATE(4729)] = 91235, + [SMALL_STATE(4730)] = 91374, + [SMALL_STATE(4731)] = 91513, + [SMALL_STATE(4732)] = 91652, + [SMALL_STATE(4733)] = 91791, + [SMALL_STATE(4734)] = 91930, + [SMALL_STATE(4735)] = 92017, + [SMALL_STATE(4736)] = 92102, + [SMALL_STATE(4737)] = 92205, + [SMALL_STATE(4738)] = 92344, + [SMALL_STATE(4739)] = 92447, + [SMALL_STATE(4740)] = 92586, + [SMALL_STATE(4741)] = 92725, + [SMALL_STATE(4742)] = 92864, + [SMALL_STATE(4743)] = 93003, + [SMALL_STATE(4744)] = 93142, + [SMALL_STATE(4745)] = 93281, + [SMALL_STATE(4746)] = 93420, + [SMALL_STATE(4747)] = 93523, + [SMALL_STATE(4748)] = 93662, + [SMALL_STATE(4749)] = 93791, + [SMALL_STATE(4750)] = 93922, + [SMALL_STATE(4751)] = 94049, + [SMALL_STATE(4752)] = 94174, + [SMALL_STATE(4753)] = 94307, + [SMALL_STATE(4754)] = 94442, + [SMALL_STATE(4755)] = 94581, + [SMALL_STATE(4756)] = 94720, + [SMALL_STATE(4757)] = 94859, + [SMALL_STATE(4758)] = 94998, + [SMALL_STATE(4759)] = 95137, + [SMALL_STATE(4760)] = 95254, + [SMALL_STATE(4761)] = 95365, + [SMALL_STATE(4762)] = 95472, + [SMALL_STATE(4763)] = 95585, + [SMALL_STATE(4764)] = 95670, + [SMALL_STATE(4765)] = 95755, + [SMALL_STATE(4766)] = 95894, + [SMALL_STATE(4767)] = 95979, + [SMALL_STATE(4768)] = 96118, + [SMALL_STATE(4769)] = 96257, + [SMALL_STATE(4770)] = 96396, + [SMALL_STATE(4771)] = 96503, + [SMALL_STATE(4772)] = 96642, + [SMALL_STATE(4773)] = 96771, + [SMALL_STATE(4774)] = 96902, + [SMALL_STATE(4775)] = 97029, + [SMALL_STATE(4776)] = 97154, + [SMALL_STATE(4777)] = 97287, + [SMALL_STATE(4778)] = 97422, + [SMALL_STATE(4779)] = 97561, + [SMALL_STATE(4780)] = 97700, + [SMALL_STATE(4781)] = 97839, + [SMALL_STATE(4782)] = 97978, + [SMALL_STATE(4783)] = 98117, + [SMALL_STATE(4784)] = 98256, + [SMALL_STATE(4785)] = 98395, + [SMALL_STATE(4786)] = 98524, + [SMALL_STATE(4787)] = 98655, + [SMALL_STATE(4788)] = 98782, + [SMALL_STATE(4789)] = 98889, + [SMALL_STATE(4790)] = 99014, + [SMALL_STATE(4791)] = 99153, + [SMALL_STATE(4792)] = 99292, + [SMALL_STATE(4793)] = 99431, + [SMALL_STATE(4794)] = 99564, + [SMALL_STATE(4795)] = 99667, + [SMALL_STATE(4796)] = 99802, + [SMALL_STATE(4797)] = 99905, + [SMALL_STATE(4798)] = 100012, + [SMALL_STATE(4799)] = 100151, + [SMALL_STATE(4800)] = 100290, + [SMALL_STATE(4801)] = 100429, + [SMALL_STATE(4802)] = 100568, + [SMALL_STATE(4803)] = 100655, + [SMALL_STATE(4804)] = 100744, + [SMALL_STATE(4805)] = 100833, + [SMALL_STATE(4806)] = 100972, + [SMALL_STATE(4807)] = 101111, + [SMALL_STATE(4808)] = 101214, + [SMALL_STATE(4809)] = 101321, + [SMALL_STATE(4810)] = 101460, + [SMALL_STATE(4811)] = 101563, + [SMALL_STATE(4812)] = 101666, + [SMALL_STATE(4813)] = 101769, + [SMALL_STATE(4814)] = 101854, + [SMALL_STATE(4815)] = 101939, + [SMALL_STATE(4816)] = 102024, + [SMALL_STATE(4817)] = 102109, + [SMALL_STATE(4818)] = 102194, + [SMALL_STATE(4819)] = 102279, + [SMALL_STATE(4820)] = 102364, + [SMALL_STATE(4821)] = 102453, + [SMALL_STATE(4822)] = 102542, + [SMALL_STATE(4823)] = 102631, + [SMALL_STATE(4824)] = 102720, + [SMALL_STATE(4825)] = 102807, + [SMALL_STATE(4826)] = 102896, + [SMALL_STATE(4827)] = 103013, + [SMALL_STATE(4828)] = 103124, + [SMALL_STATE(4829)] = 103231, + [SMALL_STATE(4830)] = 103360, + [SMALL_STATE(4831)] = 103491, + [SMALL_STATE(4832)] = 103618, + [SMALL_STATE(4833)] = 103731, + [SMALL_STATE(4834)] = 103856, + [SMALL_STATE(4835)] = 103959, + [SMALL_STATE(4836)] = 104092, + [SMALL_STATE(4837)] = 104227, + [SMALL_STATE(4838)] = 104366, + [SMALL_STATE(4839)] = 104507, + [SMALL_STATE(4840)] = 104624, + [SMALL_STATE(4841)] = 104735, + [SMALL_STATE(4842)] = 104842, + [SMALL_STATE(4843)] = 104971, + [SMALL_STATE(4844)] = 105102, + [SMALL_STATE(4845)] = 105229, + [SMALL_STATE(4846)] = 105342, + [SMALL_STATE(4847)] = 105467, + [SMALL_STATE(4848)] = 105570, + [SMALL_STATE(4849)] = 105703, + [SMALL_STATE(4850)] = 105838, + [SMALL_STATE(4851)] = 105977, + [SMALL_STATE(4852)] = 106118, + [SMALL_STATE(4853)] = 106259, + [SMALL_STATE(4854)] = 106400, + [SMALL_STATE(4855)] = 106541, + [SMALL_STATE(4856)] = 106680, + [SMALL_STATE(4857)] = 106765, + [SMALL_STATE(4858)] = 106850, + [SMALL_STATE(4859)] = 106935, + [SMALL_STATE(4860)] = 107074, + [SMALL_STATE(4861)] = 107159, + [SMALL_STATE(4862)] = 107244, + [SMALL_STATE(4863)] = 107329, + [SMALL_STATE(4864)] = 107418, + [SMALL_STATE(4865)] = 107507, + [SMALL_STATE(4866)] = 107596, + [SMALL_STATE(4867)] = 107683, + [SMALL_STATE(4868)] = 107772, + [SMALL_STATE(4869)] = 107857, + [SMALL_STATE(4870)] = 107942, + [SMALL_STATE(4871)] = 108027, + [SMALL_STATE(4872)] = 108112, + [SMALL_STATE(4873)] = 108229, + [SMALL_STATE(4874)] = 108340, + [SMALL_STATE(4875)] = 108469, + [SMALL_STATE(4876)] = 108600, + [SMALL_STATE(4877)] = 108727, + [SMALL_STATE(4878)] = 108840, + [SMALL_STATE(4879)] = 108965, + [SMALL_STATE(4880)] = 109098, + [SMALL_STATE(4881)] = 109233, + [SMALL_STATE(4882)] = 109372, + [SMALL_STATE(4883)] = 109457, + [SMALL_STATE(4884)] = 109542, + [SMALL_STATE(4885)] = 109683, + [SMALL_STATE(4886)] = 109824, + [SMALL_STATE(4887)] = 109965, + [SMALL_STATE(4888)] = 110068, + [SMALL_STATE(4889)] = 110207, + [SMALL_STATE(4890)] = 110319, + [SMALL_STATE(4891)] = 110457, + [SMALL_STATE(4892)] = 110599, + [SMALL_STATE(4893)] = 110737, + [SMALL_STATE(4894)] = 110853, + [SMALL_STATE(4895)] = 110963, + [SMALL_STATE(4896)] = 111069, + [SMALL_STATE(4897)] = 111197, + [SMALL_STATE(4898)] = 111327, + [SMALL_STATE(4899)] = 111453, + [SMALL_STATE(4900)] = 111565, + [SMALL_STATE(4901)] = 111689, + [SMALL_STATE(4902)] = 111831, + [SMALL_STATE(4903)] = 111943, + [SMALL_STATE(4904)] = 112075, + [SMALL_STATE(4905)] = 112177, + [SMALL_STATE(4906)] = 112293, + [SMALL_STATE(4907)] = 112403, + [SMALL_STATE(4908)] = 112531, + [SMALL_STATE(4909)] = 112661, + [SMALL_STATE(4910)] = 112787, + [SMALL_STATE(4911)] = 112899, + [SMALL_STATE(4912)] = 113023, + [SMALL_STATE(4913)] = 113155, + [SMALL_STATE(4914)] = 113289, + [SMALL_STATE(4915)] = 113427, + [SMALL_STATE(4916)] = 113561, + [SMALL_STATE(4917)] = 113699, + [SMALL_STATE(4918)] = 113801, + [SMALL_STATE(4919)] = 113939, + [SMALL_STATE(4920)] = 114077, + [SMALL_STATE(4921)] = 114215, + [SMALL_STATE(4922)] = 114353, + [SMALL_STATE(4923)] = 114491, + [SMALL_STATE(4924)] = 114603, + [SMALL_STATE(4925)] = 114715, + [SMALL_STATE(4926)] = 114827, + [SMALL_STATE(4927)] = 114939, + [SMALL_STATE(4928)] = 115051, + [SMALL_STATE(4929)] = 115189, + [SMALL_STATE(4930)] = 115277, + [SMALL_STATE(4931)] = 115365, + [SMALL_STATE(4932)] = 115477, + [SMALL_STATE(4933)] = 115607, + [SMALL_STATE(4934)] = 115733, + [SMALL_STATE(4935)] = 115875, + [SMALL_STATE(4936)] = 115987, + [SMALL_STATE(4937)] = 116111, + [SMALL_STATE(4938)] = 116251, + [SMALL_STATE(4939)] = 116391, + [SMALL_STATE(4940)] = 116529, + [SMALL_STATE(4941)] = 116671, + [SMALL_STATE(4942)] = 116813, + [SMALL_STATE(4943)] = 116915, + [SMALL_STATE(4944)] = 117031, + [SMALL_STATE(4945)] = 117123, + [SMALL_STATE(4946)] = 117235, + [SMALL_STATE(4947)] = 117377, + [SMALL_STATE(4948)] = 117487, + [SMALL_STATE(4949)] = 117589, + [SMALL_STATE(4950)] = 117727, + [SMALL_STATE(4951)] = 117865, + [SMALL_STATE(4952)] = 117957, + [SMALL_STATE(4953)] = 118043, + [SMALL_STATE(4954)] = 118181, + [SMALL_STATE(4955)] = 118297, + [SMALL_STATE(4956)] = 118407, + [SMALL_STATE(4957)] = 118535, + [SMALL_STATE(4958)] = 118665, + [SMALL_STATE(4959)] = 118791, + [SMALL_STATE(4960)] = 118933, + [SMALL_STATE(4961)] = 119057, + [SMALL_STATE(4962)] = 119189, + [SMALL_STATE(4963)] = 119323, + [SMALL_STATE(4964)] = 119461, + [SMALL_STATE(4965)] = 119599, + [SMALL_STATE(4966)] = 119685, + [SMALL_STATE(4967)] = 119773, + [SMALL_STATE(4968)] = 119905, + [SMALL_STATE(4969)] = 120017, + [SMALL_STATE(4970)] = 120159, + [SMALL_STATE(4971)] = 120297, + [SMALL_STATE(4972)] = 120439, + [SMALL_STATE(4973)] = 120577, + [SMALL_STATE(4974)] = 120715, + [SMALL_STATE(4975)] = 120853, + [SMALL_STATE(4976)] = 120995, + [SMALL_STATE(4977)] = 121107, + [SMALL_STATE(4978)] = 121209, + [SMALL_STATE(4979)] = 121347, + [SMALL_STATE(4980)] = 121485, + [SMALL_STATE(4981)] = 121623, + [SMALL_STATE(4982)] = 121761, + [SMALL_STATE(4983)] = 121877, + [SMALL_STATE(4984)] = 121987, + [SMALL_STATE(4985)] = 122097, + [SMALL_STATE(4986)] = 122225, + [SMALL_STATE(4987)] = 122355, + [SMALL_STATE(4988)] = 122481, + [SMALL_STATE(4989)] = 122593, + [SMALL_STATE(4990)] = 122717, + [SMALL_STATE(4991)] = 122849, + [SMALL_STATE(4992)] = 122983, + [SMALL_STATE(4993)] = 123121, + [SMALL_STATE(4994)] = 123263, + [SMALL_STATE(4995)] = 123379, + [SMALL_STATE(4996)] = 123517, + [SMALL_STATE(4997)] = 123655, + [SMALL_STATE(4998)] = 123797, + [SMALL_STATE(4999)] = 123939, + [SMALL_STATE(5000)] = 124077, + [SMALL_STATE(5001)] = 124189, + [SMALL_STATE(5002)] = 124299, + [SMALL_STATE(5003)] = 124387, + [SMALL_STATE(5004)] = 124525, + [SMALL_STATE(5005)] = 124627, + [SMALL_STATE(5006)] = 124765, + [SMALL_STATE(5007)] = 124903, + [SMALL_STATE(5008)] = 125041, + [SMALL_STATE(5009)] = 125179, + [SMALL_STATE(5010)] = 125285, + [SMALL_STATE(5011)] = 125413, + [SMALL_STATE(5012)] = 125525, + [SMALL_STATE(5013)] = 125655, + [SMALL_STATE(5014)] = 125781, + [SMALL_STATE(5015)] = 125893, + [SMALL_STATE(5016)] = 126017, + [SMALL_STATE(5017)] = 126119, + [SMALL_STATE(5018)] = 126251, + [SMALL_STATE(5019)] = 126353, + [SMALL_STATE(5020)] = 126439, + [SMALL_STATE(5021)] = 126573, + [SMALL_STATE(5022)] = 126659, + [SMALL_STATE(5023)] = 126797, + [SMALL_STATE(5024)] = 126935, + [SMALL_STATE(5025)] = 127073, + [SMALL_STATE(5026)] = 127175, + [SMALL_STATE(5027)] = 127287, + [SMALL_STATE(5028)] = 127429, + [SMALL_STATE(5029)] = 127513, + [SMALL_STATE(5030)] = 127655, + [SMALL_STATE(5031)] = 127743, + [SMALL_STATE(5032)] = 127881, + [SMALL_STATE(5033)] = 128019, + [SMALL_STATE(5034)] = 128153, + [SMALL_STATE(5035)] = 128291, + [SMALL_STATE(5036)] = 128403, + [SMALL_STATE(5037)] = 128541, + [SMALL_STATE(5038)] = 128653, + [SMALL_STATE(5039)] = 128793, + [SMALL_STATE(5040)] = 128909, + [SMALL_STATE(5041)] = 129019, + [SMALL_STATE(5042)] = 129147, + [SMALL_STATE(5043)] = 129277, + [SMALL_STATE(5044)] = 129403, + [SMALL_STATE(5045)] = 129515, + [SMALL_STATE(5046)] = 129639, + [SMALL_STATE(5047)] = 129771, + [SMALL_STATE(5048)] = 129883, + [SMALL_STATE(5049)] = 130021, + [SMALL_STATE(5050)] = 130155, + [SMALL_STATE(5051)] = 130261, + [SMALL_STATE(5052)] = 130399, + [SMALL_STATE(5053)] = 130501, + [SMALL_STATE(5054)] = 130589, + [SMALL_STATE(5055)] = 130727, + [SMALL_STATE(5056)] = 130839, + [SMALL_STATE(5057)] = 130977, + [SMALL_STATE(5058)] = 131083, + [SMALL_STATE(5059)] = 131185, + [SMALL_STATE(5060)] = 131297, + [SMALL_STATE(5061)] = 131403, + [SMALL_STATE(5062)] = 131505, + [SMALL_STATE(5063)] = 131617, + [SMALL_STATE(5064)] = 131755, + [SMALL_STATE(5065)] = 131861, + [SMALL_STATE(5066)] = 131963, + [SMALL_STATE(5067)] = 132075, + [SMALL_STATE(5068)] = 132213, + [SMALL_STATE(5069)] = 132319, + [SMALL_STATE(5070)] = 132421, + [SMALL_STATE(5071)] = 132559, + [SMALL_STATE(5072)] = 132701, + [SMALL_STATE(5073)] = 132789, + [SMALL_STATE(5074)] = 132927, + [SMALL_STATE(5075)] = 133029, + [SMALL_STATE(5076)] = 133167, + [SMALL_STATE(5077)] = 133305, + [SMALL_STATE(5078)] = 133417, + [SMALL_STATE(5079)] = 133523, + [SMALL_STATE(5080)] = 133661, + [SMALL_STATE(5081)] = 133799, + [SMALL_STATE(5082)] = 133901, + [SMALL_STATE(5083)] = 134043, + [SMALL_STATE(5084)] = 134129, + [SMALL_STATE(5085)] = 134267, + [SMALL_STATE(5086)] = 134409, + [SMALL_STATE(5087)] = 134547, + [SMALL_STATE(5088)] = 134685, + [SMALL_STATE(5089)] = 134797, + [SMALL_STATE(5090)] = 134935, + [SMALL_STATE(5091)] = 135051, + [SMALL_STATE(5092)] = 135161, + [SMALL_STATE(5093)] = 135289, + [SMALL_STATE(5094)] = 135419, + [SMALL_STATE(5095)] = 135545, + [SMALL_STATE(5096)] = 135657, + [SMALL_STATE(5097)] = 135781, + [SMALL_STATE(5098)] = 135913, + [SMALL_STATE(5099)] = 136047, + [SMALL_STATE(5100)] = 136185, + [SMALL_STATE(5101)] = 136323, + [SMALL_STATE(5102)] = 136425, + [SMALL_STATE(5103)] = 136563, + [SMALL_STATE(5104)] = 136701, + [SMALL_STATE(5105)] = 136839, + [SMALL_STATE(5106)] = 136977, + [SMALL_STATE(5107)] = 137115, + [SMALL_STATE(5108)] = 137227, + [SMALL_STATE(5109)] = 137339, + [SMALL_STATE(5110)] = 137477, + [SMALL_STATE(5111)] = 137615, + [SMALL_STATE(5112)] = 137753, + [SMALL_STATE(5113)] = 137859, + [SMALL_STATE(5114)] = 137997, + [SMALL_STATE(5115)] = 138139, + [SMALL_STATE(5116)] = 138241, + [SMALL_STATE(5117)] = 138329, + [SMALL_STATE(5118)] = 138417, + [SMALL_STATE(5119)] = 138505, + [SMALL_STATE(5120)] = 138591, + [SMALL_STATE(5121)] = 138679, + [SMALL_STATE(5122)] = 138767, + [SMALL_STATE(5123)] = 138855, + [SMALL_STATE(5124)] = 138943, + [SMALL_STATE(5125)] = 139029, + [SMALL_STATE(5126)] = 139117, + [SMALL_STATE(5127)] = 139205, + [SMALL_STATE(5128)] = 139293, + [SMALL_STATE(5129)] = 139381, + [SMALL_STATE(5130)] = 139467, + [SMALL_STATE(5131)] = 139555, + [SMALL_STATE(5132)] = 139697, + [SMALL_STATE(5133)] = 139839, + [SMALL_STATE(5134)] = 139927, + [SMALL_STATE(5135)] = 140015, + [SMALL_STATE(5136)] = 140103, + [SMALL_STATE(5137)] = 140189, + [SMALL_STATE(5138)] = 140277, + [SMALL_STATE(5139)] = 140389, + [SMALL_STATE(5140)] = 140505, + [SMALL_STATE(5141)] = 140615, + [SMALL_STATE(5142)] = 140743, + [SMALL_STATE(5143)] = 140873, + [SMALL_STATE(5144)] = 140999, + [SMALL_STATE(5145)] = 141111, + [SMALL_STATE(5146)] = 141235, + [SMALL_STATE(5147)] = 141367, + [SMALL_STATE(5148)] = 141501, + [SMALL_STATE(5149)] = 141639, + [SMALL_STATE(5150)] = 141777, + [SMALL_STATE(5151)] = 141905, + [SMALL_STATE(5152)] = 142043, + [SMALL_STATE(5153)] = 142131, + [SMALL_STATE(5154)] = 142233, + [SMALL_STATE(5155)] = 142321, + [SMALL_STATE(5156)] = 142409, + [SMALL_STATE(5157)] = 142547, + [SMALL_STATE(5158)] = 142633, + [SMALL_STATE(5159)] = 142721, + [SMALL_STATE(5160)] = 142859, + [SMALL_STATE(5161)] = 142947, + [SMALL_STATE(5162)] = 143085, + [SMALL_STATE(5163)] = 143197, + [SMALL_STATE(5164)] = 143296, + [SMALL_STATE(5165)] = 143395, + [SMALL_STATE(5166)] = 143532, + [SMALL_STATE(5167)] = 143669, + [SMALL_STATE(5168)] = 143772, + [SMALL_STATE(5169)] = 143871, + [SMALL_STATE(5170)] = 143956, + [SMALL_STATE(5171)] = 144093, + [SMALL_STATE(5172)] = 144192, + [SMALL_STATE(5173)] = 144329, + [SMALL_STATE(5174)] = 144466, + [SMALL_STATE(5175)] = 144565, + [SMALL_STATE(5176)] = 144702, + [SMALL_STATE(5177)] = 144839, + [SMALL_STATE(5178)] = 144924, + [SMALL_STATE(5179)] = 145023, + [SMALL_STATE(5180)] = 145160, + [SMALL_STATE(5181)] = 145297, + [SMALL_STATE(5182)] = 145382, + [SMALL_STATE(5183)] = 145519, + [SMALL_STATE(5184)] = 145656, + [SMALL_STATE(5185)] = 145757, + [SMALL_STATE(5186)] = 145842, + [SMALL_STATE(5187)] = 145969, + [SMALL_STATE(5188)] = 146060, + [SMALL_STATE(5189)] = 146147, + [SMALL_STATE(5190)] = 146284, + [SMALL_STATE(5191)] = 146369, + [SMALL_STATE(5192)] = 146470, + [SMALL_STATE(5193)] = 146607, + [SMALL_STATE(5194)] = 146706, + [SMALL_STATE(5195)] = 146807, + [SMALL_STATE(5196)] = 146944, + [SMALL_STATE(5197)] = 147081, + [SMALL_STATE(5198)] = 147182, + [SMALL_STATE(5199)] = 147319, + [SMALL_STATE(5200)] = 147448, + [SMALL_STATE(5201)] = 147585, + [SMALL_STATE(5202)] = 147722, + [SMALL_STATE(5203)] = 147859, + [SMALL_STATE(5204)] = 147974, + [SMALL_STATE(5205)] = 148089, + [SMALL_STATE(5206)] = 148198, + [SMALL_STATE(5207)] = 148285, + [SMALL_STATE(5208)] = 148390, + [SMALL_STATE(5209)] = 148517, + [SMALL_STATE(5210)] = 148646, + [SMALL_STATE(5211)] = 148783, + [SMALL_STATE(5212)] = 148908, + [SMALL_STATE(5213)] = 149045, + [SMALL_STATE(5214)] = 149184, + [SMALL_STATE(5215)] = 149293, + [SMALL_STATE(5216)] = 149430, + [SMALL_STATE(5217)] = 149535, + [SMALL_STATE(5218)] = 149646, + [SMALL_STATE(5219)] = 149733, + [SMALL_STATE(5220)] = 149820, + [SMALL_STATE(5221)] = 149919, + [SMALL_STATE(5222)] = 150018, + [SMALL_STATE(5223)] = 150111, + [SMALL_STATE(5224)] = 150248, + [SMALL_STATE(5225)] = 150359, + [SMALL_STATE(5226)] = 150482, + [SMALL_STATE(5227)] = 150613, + [SMALL_STATE(5228)] = 150712, + [SMALL_STATE(5229)] = 150815, + [SMALL_STATE(5230)] = 150954, + [SMALL_STATE(5231)] = 151091, + [SMALL_STATE(5232)] = 151230, + [SMALL_STATE(5233)] = 151331, + [SMALL_STATE(5234)] = 151470, + [SMALL_STATE(5235)] = 151555, + [SMALL_STATE(5236)] = 151680, + [SMALL_STATE(5237)] = 151819, + [SMALL_STATE(5238)] = 151930, + [SMALL_STATE(5239)] = 152053, + [SMALL_STATE(5240)] = 152192, + [SMALL_STATE(5241)] = 152329, + [SMALL_STATE(5242)] = 152444, + [SMALL_STATE(5243)] = 152553, + [SMALL_STATE(5244)] = 152658, + [SMALL_STATE(5245)] = 152785, + [SMALL_STATE(5246)] = 152914, + [SMALL_STATE(5247)] = 153039, + [SMALL_STATE(5248)] = 153150, + [SMALL_STATE(5249)] = 153273, + [SMALL_STATE(5250)] = 153404, + [SMALL_STATE(5251)] = 153537, + [SMALL_STATE(5252)] = 153674, + [SMALL_STATE(5253)] = 153807, + [SMALL_STATE(5254)] = 153938, + [SMALL_STATE(5255)] = 154071, + [SMALL_STATE(5256)] = 154208, + [SMALL_STATE(5257)] = 154307, + [SMALL_STATE(5258)] = 154444, + [SMALL_STATE(5259)] = 154529, + [SMALL_STATE(5260)] = 154666, + [SMALL_STATE(5261)] = 154803, + [SMALL_STATE(5262)] = 154904, + [SMALL_STATE(5263)] = 155041, + [SMALL_STATE(5264)] = 155126, + [SMALL_STATE(5265)] = 155263, + [SMALL_STATE(5266)] = 155370, + [SMALL_STATE(5267)] = 155469, + [SMALL_STATE(5268)] = 155606, + [SMALL_STATE(5269)] = 155743, + [SMALL_STATE(5270)] = 155842, + [SMALL_STATE(5271)] = 155929, + [SMALL_STATE(5272)] = 156066, + [SMALL_STATE(5273)] = 156181, + [SMALL_STATE(5274)] = 156290, + [SMALL_STATE(5275)] = 156399, + [SMALL_STATE(5276)] = 156486, + [SMALL_STATE(5277)] = 156591, + [SMALL_STATE(5278)] = 156728, + [SMALL_STATE(5279)] = 156865, + [SMALL_STATE(5280)] = 156958, + [SMALL_STATE(5281)] = 157085, + [SMALL_STATE(5282)] = 157170, + [SMALL_STATE(5283)] = 157309, + [SMALL_STATE(5284)] = 157396, + [SMALL_STATE(5285)] = 157525, + [SMALL_STATE(5286)] = 157634, + [SMALL_STATE(5287)] = 157771, + [SMALL_STATE(5288)] = 157910, + [SMALL_STATE(5289)] = 158009, + [SMALL_STATE(5290)] = 158108, + [SMALL_STATE(5291)] = 158233, + [SMALL_STATE(5292)] = 158316, + [SMALL_STATE(5293)] = 158415, + [SMALL_STATE(5294)] = 158514, + [SMALL_STATE(5295)] = 158597, + [SMALL_STATE(5296)] = 158696, + [SMALL_STATE(5297)] = 158795, + [SMALL_STATE(5298)] = 158894, + [SMALL_STATE(5299)] = 159005, + [SMALL_STATE(5300)] = 159104, + [SMALL_STATE(5301)] = 159203, + [SMALL_STATE(5302)] = 159302, + [SMALL_STATE(5303)] = 159387, + [SMALL_STATE(5304)] = 159510, + [SMALL_STATE(5305)] = 159597, + [SMALL_STATE(5306)] = 159734, + [SMALL_STATE(5307)] = 159833, + [SMALL_STATE(5308)] = 159964, + [SMALL_STATE(5309)] = 160063, + [SMALL_STATE(5310)] = 160162, + [SMALL_STATE(5311)] = 160261, + [SMALL_STATE(5312)] = 160400, + [SMALL_STATE(5313)] = 160537, + [SMALL_STATE(5314)] = 160636, + [SMALL_STATE(5315)] = 160735, + [SMALL_STATE(5316)] = 160834, + [SMALL_STATE(5317)] = 160933, + [SMALL_STATE(5318)] = 161032, + [SMALL_STATE(5319)] = 161169, + [SMALL_STATE(5320)] = 161268, + [SMALL_STATE(5321)] = 161367, + [SMALL_STATE(5322)] = 161504, + [SMALL_STATE(5323)] = 161605, + [SMALL_STATE(5324)] = 161742, + [SMALL_STATE(5325)] = 161841, + [SMALL_STATE(5326)] = 161940, + [SMALL_STATE(5327)] = 162027, + [SMALL_STATE(5328)] = 162164, + [SMALL_STATE(5329)] = 162297, + [SMALL_STATE(5330)] = 162396, + [SMALL_STATE(5331)] = 162495, + [SMALL_STATE(5332)] = 162632, + [SMALL_STATE(5333)] = 162731, + [SMALL_STATE(5334)] = 162868, + [SMALL_STATE(5335)] = 162969, + [SMALL_STATE(5336)] = 163106, + [SMALL_STATE(5337)] = 163243, + [SMALL_STATE(5338)] = 163380, + [SMALL_STATE(5339)] = 163517, + [SMALL_STATE(5340)] = 163632, + [SMALL_STATE(5341)] = 163759, + [SMALL_STATE(5342)] = 163888, + [SMALL_STATE(5343)] = 164013, + [SMALL_STATE(5344)] = 164150, + [SMALL_STATE(5345)] = 164249, + [SMALL_STATE(5346)] = 164358, + [SMALL_STATE(5347)] = 164457, + [SMALL_STATE(5348)] = 164580, + [SMALL_STATE(5349)] = 164717, + [SMALL_STATE(5350)] = 164856, + [SMALL_STATE(5351)] = 164995, + [SMALL_STATE(5352)] = 165082, + [SMALL_STATE(5353)] = 165213, + [SMALL_STATE(5354)] = 165352, + [SMALL_STATE(5355)] = 165453, + [SMALL_STATE(5356)] = 165590, + [SMALL_STATE(5357)] = 165677, + [SMALL_STATE(5358)] = 165810, + [SMALL_STATE(5359)] = 165947, + [SMALL_STATE(5360)] = 166084, + [SMALL_STATE(5361)] = 166185, + [SMALL_STATE(5362)] = 166290, + [SMALL_STATE(5363)] = 166375, + [SMALL_STATE(5364)] = 166462, + [SMALL_STATE(5365)] = 166547, + [SMALL_STATE(5366)] = 166684, + [SMALL_STATE(5367)] = 166783, + [SMALL_STATE(5368)] = 166882, + [SMALL_STATE(5369)] = 166981, + [SMALL_STATE(5370)] = 167080, + [SMALL_STATE(5371)] = 167179, + [SMALL_STATE(5372)] = 167315, + [SMALL_STATE(5373)] = 167419, + [SMALL_STATE(5374)] = 167503, + [SMALL_STATE(5375)] = 167639, + [SMALL_STATE(5376)] = 167775, + [SMALL_STATE(5377)] = 167911, + [SMALL_STATE(5378)] = 168047, + [SMALL_STATE(5379)] = 168131, + [SMALL_STATE(5380)] = 168267, + [SMALL_STATE(5381)] = 168371, + [SMALL_STATE(5382)] = 168507, + [SMALL_STATE(5383)] = 168643, + [SMALL_STATE(5384)] = 168779, + [SMALL_STATE(5385)] = 168915, + [SMALL_STATE(5386)] = 169051, + [SMALL_STATE(5387)] = 169187, + [SMALL_STATE(5388)] = 169323, + [SMALL_STATE(5389)] = 169459, + [SMALL_STATE(5390)] = 169595, + [SMALL_STATE(5391)] = 169731, + [SMALL_STATE(5392)] = 169867, + [SMALL_STATE(5393)] = 170003, + [SMALL_STATE(5394)] = 170139, + [SMALL_STATE(5395)] = 170275, + [SMALL_STATE(5396)] = 170411, + [SMALL_STATE(5397)] = 170547, + [SMALL_STATE(5398)] = 170683, + [SMALL_STATE(5399)] = 170819, + [SMALL_STATE(5400)] = 170955, + [SMALL_STATE(5401)] = 171091, + [SMALL_STATE(5402)] = 171227, + [SMALL_STATE(5403)] = 171363, + [SMALL_STATE(5404)] = 171499, + [SMALL_STATE(5405)] = 171583, + [SMALL_STATE(5406)] = 171665, + [SMALL_STATE(5407)] = 171747, + [SMALL_STATE(5408)] = 171883, + [SMALL_STATE(5409)] = 172019, + [SMALL_STATE(5410)] = 172155, + [SMALL_STATE(5411)] = 172291, + [SMALL_STATE(5412)] = 172427, + [SMALL_STATE(5413)] = 172563, + [SMALL_STATE(5414)] = 172699, + [SMALL_STATE(5415)] = 172835, + [SMALL_STATE(5416)] = 172971, + [SMALL_STATE(5417)] = 173097, + [SMALL_STATE(5418)] = 173225, + [SMALL_STATE(5419)] = 173349, + [SMALL_STATE(5420)] = 173471, + [SMALL_STATE(5421)] = 173601, + [SMALL_STATE(5422)] = 173733, + [SMALL_STATE(5423)] = 173869, + [SMALL_STATE(5424)] = 174005, + [SMALL_STATE(5425)] = 174141, + [SMALL_STATE(5426)] = 174277, + [SMALL_STATE(5427)] = 174413, + [SMALL_STATE(5428)] = 174549, + [SMALL_STATE(5429)] = 174685, + [SMALL_STATE(5430)] = 174821, + [SMALL_STATE(5431)] = 174957, + [SMALL_STATE(5432)] = 175093, + [SMALL_STATE(5433)] = 175229, + [SMALL_STATE(5434)] = 175327, + [SMALL_STATE(5435)] = 175463, + [SMALL_STATE(5436)] = 175547, + [SMALL_STATE(5437)] = 175661, + [SMALL_STATE(5438)] = 175797, + [SMALL_STATE(5439)] = 175883, + [SMALL_STATE(5440)] = 175973, + [SMALL_STATE(5441)] = 176109, + [SMALL_STATE(5442)] = 176245, + [SMALL_STATE(5443)] = 176381, + [SMALL_STATE(5444)] = 176489, + [SMALL_STATE(5445)] = 176593, + [SMALL_STATE(5446)] = 176719, + [SMALL_STATE(5447)] = 176847, + [SMALL_STATE(5448)] = 176983, + [SMALL_STATE(5449)] = 177107, + [SMALL_STATE(5450)] = 177217, + [SMALL_STATE(5451)] = 177353, + [SMALL_STATE(5452)] = 177475, + [SMALL_STATE(5453)] = 177611, + [SMALL_STATE(5454)] = 177711, + [SMALL_STATE(5455)] = 177841, + [SMALL_STATE(5456)] = 177973, + [SMALL_STATE(5457)] = 178109, + [SMALL_STATE(5458)] = 178245, + [SMALL_STATE(5459)] = 178381, + [SMALL_STATE(5460)] = 178517, + [SMALL_STATE(5461)] = 178653, + [SMALL_STATE(5462)] = 178789, + [SMALL_STATE(5463)] = 178877, + [SMALL_STATE(5464)] = 179013, + [SMALL_STATE(5465)] = 179149, + [SMALL_STATE(5466)] = 179285, + [SMALL_STATE(5467)] = 179421, + [SMALL_STATE(5468)] = 179557, + [SMALL_STATE(5469)] = 179641, + [SMALL_STATE(5470)] = 179777, + [SMALL_STATE(5471)] = 179913, + [SMALL_STATE(5472)] = 180049, + [SMALL_STATE(5473)] = 180133, + [SMALL_STATE(5474)] = 180269, + [SMALL_STATE(5475)] = 180405, + [SMALL_STATE(5476)] = 180541, + [SMALL_STATE(5477)] = 180677, + [SMALL_STATE(5478)] = 180813, + [SMALL_STATE(5479)] = 180949, + [SMALL_STATE(5480)] = 181085, + [SMALL_STATE(5481)] = 181221, + [SMALL_STATE(5482)] = 181357, + [SMALL_STATE(5483)] = 181493, + [SMALL_STATE(5484)] = 181629, + [SMALL_STATE(5485)] = 181765, + [SMALL_STATE(5486)] = 181901, + [SMALL_STATE(5487)] = 182037, + [SMALL_STATE(5488)] = 182173, + [SMALL_STATE(5489)] = 182257, + [SMALL_STATE(5490)] = 182343, + [SMALL_STATE(5491)] = 182479, + [SMALL_STATE(5492)] = 182615, + [SMALL_STATE(5493)] = 182697, + [SMALL_STATE(5494)] = 182783, + [SMALL_STATE(5495)] = 182919, + [SMALL_STATE(5496)] = 183001, + [SMALL_STATE(5497)] = 183085, + [SMALL_STATE(5498)] = 183221, + [SMALL_STATE(5499)] = 183357, + [SMALL_STATE(5500)] = 183493, + [SMALL_STATE(5501)] = 183629, + [SMALL_STATE(5502)] = 183765, + [SMALL_STATE(5503)] = 183901, + [SMALL_STATE(5504)] = 184037, + [SMALL_STATE(5505)] = 184173, + [SMALL_STATE(5506)] = 184255, + [SMALL_STATE(5507)] = 184391, + [SMALL_STATE(5508)] = 184527, + [SMALL_STATE(5509)] = 184609, + [SMALL_STATE(5510)] = 184745, + [SMALL_STATE(5511)] = 184881, + [SMALL_STATE(5512)] = 184967, + [SMALL_STATE(5513)] = 185103, + [SMALL_STATE(5514)] = 185189, + [SMALL_STATE(5515)] = 185275, + [SMALL_STATE(5516)] = 185411, + [SMALL_STATE(5517)] = 185497, + [SMALL_STATE(5518)] = 185581, + [SMALL_STATE(5519)] = 185667, + [SMALL_STATE(5520)] = 185803, + [SMALL_STATE(5521)] = 185893, + [SMALL_STATE(5522)] = 186007, + [SMALL_STATE(5523)] = 186143, + [SMALL_STATE(5524)] = 186251, + [SMALL_STATE(5525)] = 186355, + [SMALL_STATE(5526)] = 186481, + [SMALL_STATE(5527)] = 186609, + [SMALL_STATE(5528)] = 186733, + [SMALL_STATE(5529)] = 186843, + [SMALL_STATE(5530)] = 186965, + [SMALL_STATE(5531)] = 187065, + [SMALL_STATE(5532)] = 187195, + [SMALL_STATE(5533)] = 187327, + [SMALL_STATE(5534)] = 187463, + [SMALL_STATE(5535)] = 187599, + [SMALL_STATE(5536)] = 187735, + [SMALL_STATE(5537)] = 187835, + [SMALL_STATE(5538)] = 187971, + [SMALL_STATE(5539)] = 188057, + [SMALL_STATE(5540)] = 188193, + [SMALL_STATE(5541)] = 188329, + [SMALL_STATE(5542)] = 188415, + [SMALL_STATE(5543)] = 188551, + [SMALL_STATE(5544)] = 188687, + [SMALL_STATE(5545)] = 188823, + [SMALL_STATE(5546)] = 188959, + [SMALL_STATE(5547)] = 189059, + [SMALL_STATE(5548)] = 189195, + [SMALL_STATE(5549)] = 189331, + [SMALL_STATE(5550)] = 189415, + [SMALL_STATE(5551)] = 189551, + [SMALL_STATE(5552)] = 189687, + [SMALL_STATE(5553)] = 189823, + [SMALL_STATE(5554)] = 189959, + [SMALL_STATE(5555)] = 190045, + [SMALL_STATE(5556)] = 190181, + [SMALL_STATE(5557)] = 190267, + [SMALL_STATE(5558)] = 190403, + [SMALL_STATE(5559)] = 190539, + [SMALL_STATE(5560)] = 190675, + [SMALL_STATE(5561)] = 190811, + [SMALL_STATE(5562)] = 190947, + [SMALL_STATE(5563)] = 191083, + [SMALL_STATE(5564)] = 191183, + [SMALL_STATE(5565)] = 191319, + [SMALL_STATE(5566)] = 191405, + [SMALL_STATE(5567)] = 191541, + [SMALL_STATE(5568)] = 191627, + [SMALL_STATE(5569)] = 191763, + [SMALL_STATE(5570)] = 191899, + [SMALL_STATE(5571)] = 191999, + [SMALL_STATE(5572)] = 192135, + [SMALL_STATE(5573)] = 192271, + [SMALL_STATE(5574)] = 192407, + [SMALL_STATE(5575)] = 192507, + [SMALL_STATE(5576)] = 192643, + [SMALL_STATE(5577)] = 192779, + [SMALL_STATE(5578)] = 192893, + [SMALL_STATE(5579)] = 193029, + [SMALL_STATE(5580)] = 193137, + [SMALL_STATE(5581)] = 193273, + [SMALL_STATE(5582)] = 193377, + [SMALL_STATE(5583)] = 193513, + [SMALL_STATE(5584)] = 193649, + [SMALL_STATE(5585)] = 193775, + [SMALL_STATE(5586)] = 193911, + [SMALL_STATE(5587)] = 194047, + [SMALL_STATE(5588)] = 194183, + [SMALL_STATE(5589)] = 194319, + [SMALL_STATE(5590)] = 194403, + [SMALL_STATE(5591)] = 194539, + [SMALL_STATE(5592)] = 194643, + [SMALL_STATE(5593)] = 194771, + [SMALL_STATE(5594)] = 194907, + [SMALL_STATE(5595)] = 195031, + [SMALL_STATE(5596)] = 195141, + [SMALL_STATE(5597)] = 195277, + [SMALL_STATE(5598)] = 195399, + [SMALL_STATE(5599)] = 195499, + [SMALL_STATE(5600)] = 195629, + [SMALL_STATE(5601)] = 195761, + [SMALL_STATE(5602)] = 195897, + [SMALL_STATE(5603)] = 196033, + [SMALL_STATE(5604)] = 196169, + [SMALL_STATE(5605)] = 196305, + [SMALL_STATE(5606)] = 196441, + [SMALL_STATE(5607)] = 196555, + [SMALL_STATE(5608)] = 196663, + [SMALL_STATE(5609)] = 196767, + [SMALL_STATE(5610)] = 196877, + [SMALL_STATE(5611)] = 196977, + [SMALL_STATE(5612)] = 197113, + [SMALL_STATE(5613)] = 197249, + [SMALL_STATE(5614)] = 197385, + [SMALL_STATE(5615)] = 197521, + [SMALL_STATE(5616)] = 197657, + [SMALL_STATE(5617)] = 197793, + [SMALL_STATE(5618)] = 197929, + [SMALL_STATE(5619)] = 198065, + [SMALL_STATE(5620)] = 198201, + [SMALL_STATE(5621)] = 198337, + [SMALL_STATE(5622)] = 198473, + [SMALL_STATE(5623)] = 198609, + [SMALL_STATE(5624)] = 198745, + [SMALL_STATE(5625)] = 198881, + [SMALL_STATE(5626)] = 198965, + [SMALL_STATE(5627)] = 199101, + [SMALL_STATE(5628)] = 199237, + [SMALL_STATE(5629)] = 199373, + [SMALL_STATE(5630)] = 199509, + [SMALL_STATE(5631)] = 199645, + [SMALL_STATE(5632)] = 199781, + [SMALL_STATE(5633)] = 199917, + [SMALL_STATE(5634)] = 200053, + [SMALL_STATE(5635)] = 200167, + [SMALL_STATE(5636)] = 200303, + [SMALL_STATE(5637)] = 200411, + [SMALL_STATE(5638)] = 200515, + [SMALL_STATE(5639)] = 200641, + [SMALL_STATE(5640)] = 200769, + [SMALL_STATE(5641)] = 200893, + [SMALL_STATE(5642)] = 201003, + [SMALL_STATE(5643)] = 201125, + [SMALL_STATE(5644)] = 201239, + [SMALL_STATE(5645)] = 201375, + [SMALL_STATE(5646)] = 201511, + [SMALL_STATE(5647)] = 201647, + [SMALL_STATE(5648)] = 201755, + [SMALL_STATE(5649)] = 201891, + [SMALL_STATE(5650)] = 201995, + [SMALL_STATE(5651)] = 202131, + [SMALL_STATE(5652)] = 202257, + [SMALL_STATE(5653)] = 202385, + [SMALL_STATE(5654)] = 202521, + [SMALL_STATE(5655)] = 202645, + [SMALL_STATE(5656)] = 202781, + [SMALL_STATE(5657)] = 202891, + [SMALL_STATE(5658)] = 203027, + [SMALL_STATE(5659)] = 203149, + [SMALL_STATE(5660)] = 203235, + [SMALL_STATE(5661)] = 203321, + [SMALL_STATE(5662)] = 203405, + [SMALL_STATE(5663)] = 203491, + [SMALL_STATE(5664)] = 203627, + [SMALL_STATE(5665)] = 203727, + [SMALL_STATE(5666)] = 203857, + [SMALL_STATE(5667)] = 203989, + [SMALL_STATE(5668)] = 204125, + [SMALL_STATE(5669)] = 204261, + [SMALL_STATE(5670)] = 204397, + [SMALL_STATE(5671)] = 204497, + [SMALL_STATE(5672)] = 204581, + [SMALL_STATE(5673)] = 204667, + [SMALL_STATE(5674)] = 204753, + [SMALL_STATE(5675)] = 204837, + [SMALL_STATE(5676)] = 204923, + [SMALL_STATE(5677)] = 205059, + [SMALL_STATE(5678)] = 205145, + [SMALL_STATE(5679)] = 205281, + [SMALL_STATE(5680)] = 205411, + [SMALL_STATE(5681)] = 205543, + [SMALL_STATE(5682)] = 205629, + [SMALL_STATE(5683)] = 205715, + [SMALL_STATE(5684)] = 205799, + [SMALL_STATE(5685)] = 205885, + [SMALL_STATE(5686)] = 206021, + [SMALL_STATE(5687)] = 206157, + [SMALL_STATE(5688)] = 206243, + [SMALL_STATE(5689)] = 206379, + [SMALL_STATE(5690)] = 206515, + [SMALL_STATE(5691)] = 206651, + [SMALL_STATE(5692)] = 206737, + [SMALL_STATE(5693)] = 206823, + [SMALL_STATE(5694)] = 206959, + [SMALL_STATE(5695)] = 207095, + [SMALL_STATE(5696)] = 207179, + [SMALL_STATE(5697)] = 207265, + [SMALL_STATE(5698)] = 207401, + [SMALL_STATE(5699)] = 207537, + [SMALL_STATE(5700)] = 207637, + [SMALL_STATE(5701)] = 207773, + [SMALL_STATE(5702)] = 207909, + [SMALL_STATE(5703)] = 207995, + [SMALL_STATE(5704)] = 208081, + [SMALL_STATE(5705)] = 208165, + [SMALL_STATE(5706)] = 208251, + [SMALL_STATE(5707)] = 208387, + [SMALL_STATE(5708)] = 208479, + [SMALL_STATE(5709)] = 208565, + [SMALL_STATE(5710)] = 208698, + [SMALL_STATE(5711)] = 208831, + [SMALL_STATE(5712)] = 208964, + [SMALL_STATE(5713)] = 209097, + [SMALL_STATE(5714)] = 209230, + [SMALL_STATE(5715)] = 209363, + [SMALL_STATE(5716)] = 209496, + [SMALL_STATE(5717)] = 209629, + [SMALL_STATE(5718)] = 209730, + [SMALL_STATE(5719)] = 209863, + [SMALL_STATE(5720)] = 209960, + [SMALL_STATE(5721)] = 210093, + [SMALL_STATE(5722)] = 210226, + [SMALL_STATE(5723)] = 210317, + [SMALL_STATE(5724)] = 210450, + [SMALL_STATE(5725)] = 210583, + [SMALL_STATE(5726)] = 210716, + [SMALL_STATE(5727)] = 210849, + [SMALL_STATE(5728)] = 210938, + [SMALL_STATE(5729)] = 211071, + [SMALL_STATE(5730)] = 211204, + [SMALL_STATE(5731)] = 211337, + [SMALL_STATE(5732)] = 211438, + [SMALL_STATE(5733)] = 211529, + [SMALL_STATE(5734)] = 211662, + [SMALL_STATE(5735)] = 211745, + [SMALL_STATE(5736)] = 211878, + [SMALL_STATE(5737)] = 212011, + [SMALL_STATE(5738)] = 212102, + [SMALL_STATE(5739)] = 212235, + [SMALL_STATE(5740)] = 212368, + [SMALL_STATE(5741)] = 212501, + [SMALL_STATE(5742)] = 212598, + [SMALL_STATE(5743)] = 212691, + [SMALL_STATE(5744)] = 212824, + [SMALL_STATE(5745)] = 212925, + [SMALL_STATE(5746)] = 213022, + [SMALL_STATE(5747)] = 213155, + [SMALL_STATE(5748)] = 213288, + [SMALL_STATE(5749)] = 213421, + [SMALL_STATE(5750)] = 213512, + [SMALL_STATE(5751)] = 213645, + [SMALL_STATE(5752)] = 213778, + [SMALL_STATE(5753)] = 213869, + [SMALL_STATE(5754)] = 213960, + [SMALL_STATE(5755)] = 214051, + [SMALL_STATE(5756)] = 214184, + [SMALL_STATE(5757)] = 214317, + [SMALL_STATE(5758)] = 214414, + [SMALL_STATE(5759)] = 214547, + [SMALL_STATE(5760)] = 214637, + [SMALL_STATE(5761)] = 214727, + [SMALL_STATE(5762)] = 214817, + [SMALL_STATE(5763)] = 214913, + [SMALL_STATE(5764)] = 214995, + [SMALL_STATE(5765)] = 215093, + [SMALL_STATE(5766)] = 215183, + [SMALL_STATE(5767)] = 215279, + [SMALL_STATE(5768)] = 215369, + [SMALL_STATE(5769)] = 215451, + [SMALL_STATE(5770)] = 215541, + [SMALL_STATE(5771)] = 215639, + [SMALL_STATE(5772)] = 215737, + [SMALL_STATE(5773)] = 215827, + [SMALL_STATE(5774)] = 215925, + [SMALL_STATE(5775)] = 216015, + [SMALL_STATE(5776)] = 216113, + [SMALL_STATE(5777)] = 216211, + [SMALL_STATE(5778)] = 216301, + [SMALL_STATE(5779)] = 216395, + [SMALL_STATE(5780)] = 216491, + [SMALL_STATE(5781)] = 216589, + [SMALL_STATE(5782)] = 216674, + [SMALL_STATE(5783)] = 216761, + [SMALL_STATE(5784)] = 216856, + [SMALL_STATE(5785)] = 216949, + [SMALL_STATE(5786)] = 217036, + [SMALL_STATE(5787)] = 217129, + [SMALL_STATE(5788)] = 217222, + [SMALL_STATE(5789)] = 217309, + [SMALL_STATE(5790)] = 217406, + [SMALL_STATE(5791)] = 217501, + [SMALL_STATE(5792)] = 217592, + [SMALL_STATE(5793)] = 217685, + [SMALL_STATE(5794)] = 217780, + [SMALL_STATE(5795)] = 217871, + [SMALL_STATE(5796)] = 217966, + [SMALL_STATE(5797)] = 218061, + [SMALL_STATE(5798)] = 218156, + [SMALL_STATE(5799)] = 218251, + [SMALL_STATE(5800)] = 218346, + [SMALL_STATE(5801)] = 218437, + [SMALL_STATE(5802)] = 218530, + [SMALL_STATE(5803)] = 218625, + [SMALL_STATE(5804)] = 218724, + [SMALL_STATE(5805)] = 218805, + [SMALL_STATE(5806)] = 218898, + [SMALL_STATE(5807)] = 218993, + [SMALL_STATE(5808)] = 219084, + [SMALL_STATE(5809)] = 219176, + [SMALL_STATE(5810)] = 219268, + [SMALL_STATE(5811)] = 219348, + [SMALL_STATE(5812)] = 219440, + [SMALL_STATE(5813)] = 219532, + [SMALL_STATE(5814)] = 219624, + [SMALL_STATE(5815)] = 219716, + [SMALL_STATE(5816)] = 219808, + [SMALL_STATE(5817)] = 219900, + [SMALL_STATE(5818)] = 219992, + [SMALL_STATE(5819)] = 220084, + [SMALL_STATE(5820)] = 220176, + [SMALL_STATE(5821)] = 220268, + [SMALL_STATE(5822)] = 220354, + [SMALL_STATE(5823)] = 220446, + [SMALL_STATE(5824)] = 220538, + [SMALL_STATE(5825)] = 220630, + [SMALL_STATE(5826)] = 220722, + [SMALL_STATE(5827)] = 220814, + [SMALL_STATE(5828)] = 220894, + [SMALL_STATE(5829)] = 220986, + [SMALL_STATE(5830)] = 221078, + [SMALL_STATE(5831)] = 221170, + [SMALL_STATE(5832)] = 221259, + [SMALL_STATE(5833)] = 221348, + [SMALL_STATE(5834)] = 221437, + [SMALL_STATE(5835)] = 221526, + [SMALL_STATE(5836)] = 221617, + [SMALL_STATE(5837)] = 221706, + [SMALL_STATE(5838)] = 221795, + [SMALL_STATE(5839)] = 221884, + [SMALL_STATE(5840)] = 221973, + [SMALL_STATE(5841)] = 222062, + [SMALL_STATE(5842)] = 222147, + [SMALL_STATE(5843)] = 222230, + [SMALL_STATE(5844)] = 222315, + [SMALL_STATE(5845)] = 222406, + [SMALL_STATE(5846)] = 222483, + [SMALL_STATE(5847)] = 222569, + [SMALL_STATE(5848)] = 222659, + [SMALL_STATE(5849)] = 222749, + [SMALL_STATE(5850)] = 222839, + [SMALL_STATE(5851)] = 222929, + [SMALL_STATE(5852)] = 223019, + [SMALL_STATE(5853)] = 223109, + [SMALL_STATE(5854)] = 223199, + [SMALL_STATE(5855)] = 223289, + [SMALL_STATE(5856)] = 223379, + [SMALL_STATE(5857)] = 223469, + [SMALL_STATE(5858)] = 223545, + [SMALL_STATE(5859)] = 223635, + [SMALL_STATE(5860)] = 223725, + [SMALL_STATE(5861)] = 223811, + [SMALL_STATE(5862)] = 223897, + [SMALL_STATE(5863)] = 223987, + [SMALL_STATE(5864)] = 224073, + [SMALL_STATE(5865)] = 224163, + [SMALL_STATE(5866)] = 224253, + [SMALL_STATE(5867)] = 224343, + [SMALL_STATE(5868)] = 224433, + [SMALL_STATE(5869)] = 224523, + [SMALL_STATE(5870)] = 224613, + [SMALL_STATE(5871)] = 224703, + [SMALL_STATE(5872)] = 224793, + [SMALL_STATE(5873)] = 224883, + [SMALL_STATE(5874)] = 224973, + [SMALL_STATE(5875)] = 225059, + [SMALL_STATE(5876)] = 225149, + [SMALL_STATE(5877)] = 225239, + [SMALL_STATE(5878)] = 225329, + [SMALL_STATE(5879)] = 225413, + [SMALL_STATE(5880)] = 225503, + [SMALL_STATE(5881)] = 225593, + [SMALL_STATE(5882)] = 225677, + [SMALL_STATE(5883)] = 225767, + [SMALL_STATE(5884)] = 225857, + [SMALL_STATE(5885)] = 225947, + [SMALL_STATE(5886)] = 226023, + [SMALL_STATE(5887)] = 226113, + [SMALL_STATE(5888)] = 226203, + [SMALL_STATE(5889)] = 226293, + [SMALL_STATE(5890)] = 226383, + [SMALL_STATE(5891)] = 226473, + [SMALL_STATE(5892)] = 226551, + [SMALL_STATE(5893)] = 226641, + [SMALL_STATE(5894)] = 226731, + [SMALL_STATE(5895)] = 226821, + [SMALL_STATE(5896)] = 226911, + [SMALL_STATE(5897)] = 227001, + [SMALL_STATE(5898)] = 227091, + [SMALL_STATE(5899)] = 227181, + [SMALL_STATE(5900)] = 227271, + [SMALL_STATE(5901)] = 227361, + [SMALL_STATE(5902)] = 227451, + [SMALL_STATE(5903)] = 227541, + [SMALL_STATE(5904)] = 227631, + [SMALL_STATE(5905)] = 227721, + [SMALL_STATE(5906)] = 227811, + [SMALL_STATE(5907)] = 227887, + [SMALL_STATE(5908)] = 227965, + [SMALL_STATE(5909)] = 228055, + [SMALL_STATE(5910)] = 228131, + [SMALL_STATE(5911)] = 228221, + [SMALL_STATE(5912)] = 228311, + [SMALL_STATE(5913)] = 228401, + [SMALL_STATE(5914)] = 228491, + [SMALL_STATE(5915)] = 228581, + [SMALL_STATE(5916)] = 228671, + [SMALL_STATE(5917)] = 228761, + [SMALL_STATE(5918)] = 228851, + [SMALL_STATE(5919)] = 228936, + [SMALL_STATE(5920)] = 229023, + [SMALL_STATE(5921)] = 229108, + [SMALL_STATE(5922)] = 229195, + [SMALL_STATE(5923)] = 229280, + [SMALL_STATE(5924)] = 229365, + [SMALL_STATE(5925)] = 229450, + [SMALL_STATE(5926)] = 229533, + [SMALL_STATE(5927)] = 229618, + [SMALL_STATE(5928)] = 229703, + [SMALL_STATE(5929)] = 229788, + [SMALL_STATE(5930)] = 229873, + [SMALL_STATE(5931)] = 229960, + [SMALL_STATE(5932)] = 230045, + [SMALL_STATE(5933)] = 230130, + [SMALL_STATE(5934)] = 230215, + [SMALL_STATE(5935)] = 230300, + [SMALL_STATE(5936)] = 230385, + [SMALL_STATE(5937)] = 230470, + [SMALL_STATE(5938)] = 230555, + [SMALL_STATE(5939)] = 230636, + [SMALL_STATE(5940)] = 230711, + [SMALL_STATE(5941)] = 230796, + [SMALL_STATE(5942)] = 230881, + [SMALL_STATE(5943)] = 230964, + [SMALL_STATE(5944)] = 231049, + [SMALL_STATE(5945)] = 231130, + [SMALL_STATE(5946)] = 231215, + [SMALL_STATE(5947)] = 231300, + [SMALL_STATE(5948)] = 231387, + [SMALL_STATE(5949)] = 231472, + [SMALL_STATE(5950)] = 231557, + [SMALL_STATE(5951)] = 231642, + [SMALL_STATE(5952)] = 231717, + [SMALL_STATE(5953)] = 231800, + [SMALL_STATE(5954)] = 231885, + [SMALL_STATE(5955)] = 231970, + [SMALL_STATE(5956)] = 232053, + [SMALL_STATE(5957)] = 232138, + [SMALL_STATE(5958)] = 232223, + [SMALL_STATE(5959)] = 232298, + [SMALL_STATE(5960)] = 232382, + [SMALL_STATE(5961)] = 232466, + [SMALL_STATE(5962)] = 232550, + [SMALL_STATE(5963)] = 232634, + [SMALL_STATE(5964)] = 232718, + [SMALL_STATE(5965)] = 232802, + [SMALL_STATE(5966)] = 232886, + [SMALL_STATE(5967)] = 232970, + [SMALL_STATE(5968)] = 233054, + [SMALL_STATE(5969)] = 233138, + [SMALL_STATE(5970)] = 233222, + [SMALL_STATE(5971)] = 233306, + [SMALL_STATE(5972)] = 233390, + [SMALL_STATE(5973)] = 233474, + [SMALL_STATE(5974)] = 233558, + [SMALL_STATE(5975)] = 233642, + [SMALL_STATE(5976)] = 233726, + [SMALL_STATE(5977)] = 233810, + [SMALL_STATE(5978)] = 233894, + [SMALL_STATE(5979)] = 233973, + [SMALL_STATE(5980)] = 234054, + [SMALL_STATE(5981)] = 234135, + [SMALL_STATE(5982)] = 234214, + [SMALL_STATE(5983)] = 234295, + [SMALL_STATE(5984)] = 234368, + [SMALL_STATE(5985)] = 234441, + [SMALL_STATE(5986)] = 234522, + [SMALL_STATE(5987)] = 234603, + [SMALL_STATE(5988)] = 234684, + [SMALL_STATE(5989)] = 234765, + [SMALL_STATE(5990)] = 234846, + [SMALL_STATE(5991)] = 234927, + [SMALL_STATE(5992)] = 235008, + [SMALL_STATE(5993)] = 235089, + [SMALL_STATE(5994)] = 235170, + [SMALL_STATE(5995)] = 235251, + [SMALL_STATE(5996)] = 235332, + [SMALL_STATE(5997)] = 235413, + [SMALL_STATE(5998)] = 235492, + [SMALL_STATE(5999)] = 235573, + [SMALL_STATE(6000)] = 235654, + [SMALL_STATE(6001)] = 235735, + [SMALL_STATE(6002)] = 235816, + [SMALL_STATE(6003)] = 235895, + [SMALL_STATE(6004)] = 235976, + [SMALL_STATE(6005)] = 236057, + [SMALL_STATE(6006)] = 236138, + [SMALL_STATE(6007)] = 236219, + [SMALL_STATE(6008)] = 236300, + [SMALL_STATE(6009)] = 236381, + [SMALL_STATE(6010)] = 236462, + [SMALL_STATE(6011)] = 236543, + [SMALL_STATE(6012)] = 236624, + [SMALL_STATE(6013)] = 236705, + [SMALL_STATE(6014)] = 236786, + [SMALL_STATE(6015)] = 236867, + [SMALL_STATE(6016)] = 236948, + [SMALL_STATE(6017)] = 237029, + [SMALL_STATE(6018)] = 237110, + [SMALL_STATE(6019)] = 237191, + [SMALL_STATE(6020)] = 237272, + [SMALL_STATE(6021)] = 237353, + [SMALL_STATE(6022)] = 237434, + [SMALL_STATE(6023)] = 237515, + [SMALL_STATE(6024)] = 237596, + [SMALL_STATE(6025)] = 237677, + [SMALL_STATE(6026)] = 237758, + [SMALL_STATE(6027)] = 237839, + [SMALL_STATE(6028)] = 237920, + [SMALL_STATE(6029)] = 238001, + [SMALL_STATE(6030)] = 238082, + [SMALL_STATE(6031)] = 238155, + [SMALL_STATE(6032)] = 238236, + [SMALL_STATE(6033)] = 238317, + [SMALL_STATE(6034)] = 238398, + [SMALL_STATE(6035)] = 238479, + [SMALL_STATE(6036)] = 238560, + [SMALL_STATE(6037)] = 238641, + [SMALL_STATE(6038)] = 238722, + [SMALL_STATE(6039)] = 238803, + [SMALL_STATE(6040)] = 238876, + [SMALL_STATE(6041)] = 238957, + [SMALL_STATE(6042)] = 239038, + [SMALL_STATE(6043)] = 239119, + [SMALL_STATE(6044)] = 239200, + [SMALL_STATE(6045)] = 239281, + [SMALL_STATE(6046)] = 239362, + [SMALL_STATE(6047)] = 239443, + [SMALL_STATE(6048)] = 239524, + [SMALL_STATE(6049)] = 239605, + [SMALL_STATE(6050)] = 239686, + [SMALL_STATE(6051)] = 239767, + [SMALL_STATE(6052)] = 239848, + [SMALL_STATE(6053)] = 239929, + [SMALL_STATE(6054)] = 240010, + [SMALL_STATE(6055)] = 240091, + [SMALL_STATE(6056)] = 240172, + [SMALL_STATE(6057)] = 240253, + [SMALL_STATE(6058)] = 240334, + [SMALL_STATE(6059)] = 240415, + [SMALL_STATE(6060)] = 240496, + [SMALL_STATE(6061)] = 240577, + [SMALL_STATE(6062)] = 240658, + [SMALL_STATE(6063)] = 240739, + [SMALL_STATE(6064)] = 240820, + [SMALL_STATE(6065)] = 240899, + [SMALL_STATE(6066)] = 240980, + [SMALL_STATE(6067)] = 241061, + [SMALL_STATE(6068)] = 241140, + [SMALL_STATE(6069)] = 241221, + [SMALL_STATE(6070)] = 241302, + [SMALL_STATE(6071)] = 241383, + [SMALL_STATE(6072)] = 241464, + [SMALL_STATE(6073)] = 241543, + [SMALL_STATE(6074)] = 241624, + [SMALL_STATE(6075)] = 241705, + [SMALL_STATE(6076)] = 241786, + [SMALL_STATE(6077)] = 241859, + [SMALL_STATE(6078)] = 241940, + [SMALL_STATE(6079)] = 242021, + [SMALL_STATE(6080)] = 242102, + [SMALL_STATE(6081)] = 242183, + [SMALL_STATE(6082)] = 242264, + [SMALL_STATE(6083)] = 242345, + [SMALL_STATE(6084)] = 242426, + [SMALL_STATE(6085)] = 242507, + [SMALL_STATE(6086)] = 242580, + [SMALL_STATE(6087)] = 242661, + [SMALL_STATE(6088)] = 242742, + [SMALL_STATE(6089)] = 242823, + [SMALL_STATE(6090)] = 242904, + [SMALL_STATE(6091)] = 242985, + [SMALL_STATE(6092)] = 243066, + [SMALL_STATE(6093)] = 243147, + [SMALL_STATE(6094)] = 243228, + [SMALL_STATE(6095)] = 243309, + [SMALL_STATE(6096)] = 243390, + [SMALL_STATE(6097)] = 243471, + [SMALL_STATE(6098)] = 243552, + [SMALL_STATE(6099)] = 243633, + [SMALL_STATE(6100)] = 243714, + [SMALL_STATE(6101)] = 243789, + [SMALL_STATE(6102)] = 243870, + [SMALL_STATE(6103)] = 243951, + [SMALL_STATE(6104)] = 244032, + [SMALL_STATE(6105)] = 244113, + [SMALL_STATE(6106)] = 244194, + [SMALL_STATE(6107)] = 244275, + [SMALL_STATE(6108)] = 244356, + [SMALL_STATE(6109)] = 244437, + [SMALL_STATE(6110)] = 244518, + [SMALL_STATE(6111)] = 244599, + [SMALL_STATE(6112)] = 244680, + [SMALL_STATE(6113)] = 244761, + [SMALL_STATE(6114)] = 244840, + [SMALL_STATE(6115)] = 244921, + [SMALL_STATE(6116)] = 245002, + [SMALL_STATE(6117)] = 245083, + [SMALL_STATE(6118)] = 245164, + [SMALL_STATE(6119)] = 245238, + [SMALL_STATE(6120)] = 245316, + [SMALL_STATE(6121)] = 245388, + [SMALL_STATE(6122)] = 245466, + [SMALL_STATE(6123)] = 245544, + [SMALL_STATE(6124)] = 245622, + [SMALL_STATE(6125)] = 245700, + [SMALL_STATE(6126)] = 245775, + [SMALL_STATE(6127)] = 245850, + [SMALL_STATE(6128)] = 245925, + [SMALL_STATE(6129)] = 246000, + [SMALL_STATE(6130)] = 246075, + [SMALL_STATE(6131)] = 246150, + [SMALL_STATE(6132)] = 246225, + [SMALL_STATE(6133)] = 246300, + [SMALL_STATE(6134)] = 246375, + [SMALL_STATE(6135)] = 246450, + [SMALL_STATE(6136)] = 246525, + [SMALL_STATE(6137)] = 246600, + [SMALL_STATE(6138)] = 246675, + [SMALL_STATE(6139)] = 246750, + [SMALL_STATE(6140)] = 246825, + [SMALL_STATE(6141)] = 246900, + [SMALL_STATE(6142)] = 246975, + [SMALL_STATE(6143)] = 247050, + [SMALL_STATE(6144)] = 247125, + [SMALL_STATE(6145)] = 247200, + [SMALL_STATE(6146)] = 247275, + [SMALL_STATE(6147)] = 247350, + [SMALL_STATE(6148)] = 247425, + [SMALL_STATE(6149)] = 247500, + [SMALL_STATE(6150)] = 247575, + [SMALL_STATE(6151)] = 247650, + [SMALL_STATE(6152)] = 247725, + [SMALL_STATE(6153)] = 247800, + [SMALL_STATE(6154)] = 247875, + [SMALL_STATE(6155)] = 247950, + [SMALL_STATE(6156)] = 248025, + [SMALL_STATE(6157)] = 248100, + [SMALL_STATE(6158)] = 248175, + [SMALL_STATE(6159)] = 248250, + [SMALL_STATE(6160)] = 248325, + [SMALL_STATE(6161)] = 248400, + [SMALL_STATE(6162)] = 248475, + [SMALL_STATE(6163)] = 248550, + [SMALL_STATE(6164)] = 248625, + [SMALL_STATE(6165)] = 248700, + [SMALL_STATE(6166)] = 248775, + [SMALL_STATE(6167)] = 248850, + [SMALL_STATE(6168)] = 248925, + [SMALL_STATE(6169)] = 248994, + [SMALL_STATE(6170)] = 249069, + [SMALL_STATE(6171)] = 249144, + [SMALL_STATE(6172)] = 249219, + [SMALL_STATE(6173)] = 249294, + [SMALL_STATE(6174)] = 249369, + [SMALL_STATE(6175)] = 249444, + [SMALL_STATE(6176)] = 249519, + [SMALL_STATE(6177)] = 249594, + [SMALL_STATE(6178)] = 249669, + [SMALL_STATE(6179)] = 249744, + [SMALL_STATE(6180)] = 249819, + [SMALL_STATE(6181)] = 249894, + [SMALL_STATE(6182)] = 249969, + [SMALL_STATE(6183)] = 250044, + [SMALL_STATE(6184)] = 250119, + [SMALL_STATE(6185)] = 250194, + [SMALL_STATE(6186)] = 250269, + [SMALL_STATE(6187)] = 250341, + [SMALL_STATE(6188)] = 250413, + [SMALL_STATE(6189)] = 250485, + [SMALL_STATE(6190)] = 250557, + [SMALL_STATE(6191)] = 250629, + [SMALL_STATE(6192)] = 250701, + [SMALL_STATE(6193)] = 250770, + [SMALL_STATE(6194)] = 250839, + [SMALL_STATE(6195)] = 250908, + [SMALL_STATE(6196)] = 250977, + [SMALL_STATE(6197)] = 251044, + [SMALL_STATE(6198)] = 251113, + [SMALL_STATE(6199)] = 251182, + [SMALL_STATE(6200)] = 251268, + [SMALL_STATE(6201)] = 251354, + [SMALL_STATE(6202)] = 251440, + [SMALL_STATE(6203)] = 251526, + [SMALL_STATE(6204)] = 251612, + [SMALL_STATE(6205)] = 251698, + [SMALL_STATE(6206)] = 251784, + [SMALL_STATE(6207)] = 251870, + [SMALL_STATE(6208)] = 251956, + [SMALL_STATE(6209)] = 252042, + [SMALL_STATE(6210)] = 252128, + [SMALL_STATE(6211)] = 252214, + [SMALL_STATE(6212)] = 252300, + [SMALL_STATE(6213)] = 252386, + [SMALL_STATE(6214)] = 252472, + [SMALL_STATE(6215)] = 252558, + [SMALL_STATE(6216)] = 252644, + [SMALL_STATE(6217)] = 252730, + [SMALL_STATE(6218)] = 252816, + [SMALL_STATE(6219)] = 252902, + [SMALL_STATE(6220)] = 252988, + [SMALL_STATE(6221)] = 253074, + [SMALL_STATE(6222)] = 253160, + [SMALL_STATE(6223)] = 253246, + [SMALL_STATE(6224)] = 253332, + [SMALL_STATE(6225)] = 253418, + [SMALL_STATE(6226)] = 253504, + [SMALL_STATE(6227)] = 253590, + [SMALL_STATE(6228)] = 253676, + [SMALL_STATE(6229)] = 253762, + [SMALL_STATE(6230)] = 253848, + [SMALL_STATE(6231)] = 253934, + [SMALL_STATE(6232)] = 254020, + [SMALL_STATE(6233)] = 254106, + [SMALL_STATE(6234)] = 254192, + [SMALL_STATE(6235)] = 254278, + [SMALL_STATE(6236)] = 254364, + [SMALL_STATE(6237)] = 254450, + [SMALL_STATE(6238)] = 254536, + [SMALL_STATE(6239)] = 254622, + [SMALL_STATE(6240)] = 254705, + [SMALL_STATE(6241)] = 254788, + [SMALL_STATE(6242)] = 254871, + [SMALL_STATE(6243)] = 254954, + [SMALL_STATE(6244)] = 255037, + [SMALL_STATE(6245)] = 255120, + [SMALL_STATE(6246)] = 255203, + [SMALL_STATE(6247)] = 255286, + [SMALL_STATE(6248)] = 255369, + [SMALL_STATE(6249)] = 255452, + [SMALL_STATE(6250)] = 255535, + [SMALL_STATE(6251)] = 255618, + [SMALL_STATE(6252)] = 255701, + [SMALL_STATE(6253)] = 255784, + [SMALL_STATE(6254)] = 255867, + [SMALL_STATE(6255)] = 255950, + [SMALL_STATE(6256)] = 256033, + [SMALL_STATE(6257)] = 256116, + [SMALL_STATE(6258)] = 256199, + [SMALL_STATE(6259)] = 256282, + [SMALL_STATE(6260)] = 256365, + [SMALL_STATE(6261)] = 256448, + [SMALL_STATE(6262)] = 256531, + [SMALL_STATE(6263)] = 256614, + [SMALL_STATE(6264)] = 256697, + [SMALL_STATE(6265)] = 256780, + [SMALL_STATE(6266)] = 256863, + [SMALL_STATE(6267)] = 256946, + [SMALL_STATE(6268)] = 257029, + [SMALL_STATE(6269)] = 257112, + [SMALL_STATE(6270)] = 257195, + [SMALL_STATE(6271)] = 257278, + [SMALL_STATE(6272)] = 257361, + [SMALL_STATE(6273)] = 257444, + [SMALL_STATE(6274)] = 257527, + [SMALL_STATE(6275)] = 257610, + [SMALL_STATE(6276)] = 257693, + [SMALL_STATE(6277)] = 257776, + [SMALL_STATE(6278)] = 257859, + [SMALL_STATE(6279)] = 257942, + [SMALL_STATE(6280)] = 258025, + [SMALL_STATE(6281)] = 258108, + [SMALL_STATE(6282)] = 258191, + [SMALL_STATE(6283)] = 258274, + [SMALL_STATE(6284)] = 258357, + [SMALL_STATE(6285)] = 258440, + [SMALL_STATE(6286)] = 258523, + [SMALL_STATE(6287)] = 258606, + [SMALL_STATE(6288)] = 258689, + [SMALL_STATE(6289)] = 258772, + [SMALL_STATE(6290)] = 258855, + [SMALL_STATE(6291)] = 258938, + [SMALL_STATE(6292)] = 259021, + [SMALL_STATE(6293)] = 259104, + [SMALL_STATE(6294)] = 259187, + [SMALL_STATE(6295)] = 259270, + [SMALL_STATE(6296)] = 259353, + [SMALL_STATE(6297)] = 259436, + [SMALL_STATE(6298)] = 259519, + [SMALL_STATE(6299)] = 259602, + [SMALL_STATE(6300)] = 259685, + [SMALL_STATE(6301)] = 259768, + [SMALL_STATE(6302)] = 259851, + [SMALL_STATE(6303)] = 259934, + [SMALL_STATE(6304)] = 260017, + [SMALL_STATE(6305)] = 260100, + [SMALL_STATE(6306)] = 260188, + [SMALL_STATE(6307)] = 260276, + [SMALL_STATE(6308)] = 260364, + [SMALL_STATE(6309)] = 260436, + [SMALL_STATE(6310)] = 260501, + [SMALL_STATE(6311)] = 260573, + [SMALL_STATE(6312)] = 260645, + [SMALL_STATE(6313)] = 260719, + [SMALL_STATE(6314)] = 260791, + [SMALL_STATE(6315)] = 260863, + [SMALL_STATE(6316)] = 260937, + [SMALL_STATE(6317)] = 261009, + [SMALL_STATE(6318)] = 261081, + [SMALL_STATE(6319)] = 261155, + [SMALL_STATE(6320)] = 261229, + [SMALL_STATE(6321)] = 261303, + [SMALL_STATE(6322)] = 261375, + [SMALL_STATE(6323)] = 261447, + [SMALL_STATE(6324)] = 261519, + [SMALL_STATE(6325)] = 261591, + [SMALL_STATE(6326)] = 261651, + [SMALL_STATE(6327)] = 261723, + [SMALL_STATE(6328)] = 261797, + [SMALL_STATE(6329)] = 261869, + [SMALL_STATE(6330)] = 261941, + [SMALL_STATE(6331)] = 262015, + [SMALL_STATE(6332)] = 262089, + [SMALL_STATE(6333)] = 262161, + [SMALL_STATE(6334)] = 262221, + [SMALL_STATE(6335)] = 262296, + [SMALL_STATE(6336)] = 262353, + [SMALL_STATE(6337)] = 262416, + [SMALL_STATE(6338)] = 262491, + [SMALL_STATE(6339)] = 262566, + [SMALL_STATE(6340)] = 262628, + [SMALL_STATE(6341)] = 262690, + [SMALL_STATE(6342)] = 262760, + [SMALL_STATE(6343)] = 262817, + [SMALL_STATE(6344)] = 262886, + [SMALL_STATE(6345)] = 262943, + [SMALL_STATE(6346)] = 263004, + [SMALL_STATE(6347)] = 263061, + [SMALL_STATE(6348)] = 263128, + [SMALL_STATE(6349)] = 263195, + [SMALL_STATE(6350)] = 263264, + [SMALL_STATE(6351)] = 263333, + [SMALL_STATE(6352)] = 263388, + [SMALL_STATE(6353)] = 263457, + [SMALL_STATE(6354)] = 263526, + [SMALL_STATE(6355)] = 263595, + [SMALL_STATE(6356)] = 263664, + [SMALL_STATE(6357)] = 263725, + [SMALL_STATE(6358)] = 263794, + [SMALL_STATE(6359)] = 263863, + [SMALL_STATE(6360)] = 263932, + [SMALL_STATE(6361)] = 264001, + [SMALL_STATE(6362)] = 264060, + [SMALL_STATE(6363)] = 264129, + [SMALL_STATE(6364)] = 264198, + [SMALL_STATE(6365)] = 264267, + [SMALL_STATE(6366)] = 264336, + [SMALL_STATE(6367)] = 264405, + [SMALL_STATE(6368)] = 264474, + [SMALL_STATE(6369)] = 264543, + [SMALL_STATE(6370)] = 264612, + [SMALL_STATE(6371)] = 264681, + [SMALL_STATE(6372)] = 264750, + [SMALL_STATE(6373)] = 264817, + [SMALL_STATE(6374)] = 264886, + [SMALL_STATE(6375)] = 264955, + [SMALL_STATE(6376)] = 265024, + [SMALL_STATE(6377)] = 265093, + [SMALL_STATE(6378)] = 265162, + [SMALL_STATE(6379)] = 265229, + [SMALL_STATE(6380)] = 265298, + [SMALL_STATE(6381)] = 265367, + [SMALL_STATE(6382)] = 265436, + [SMALL_STATE(6383)] = 265505, + [SMALL_STATE(6384)] = 265574, + [SMALL_STATE(6385)] = 265643, + [SMALL_STATE(6386)] = 265700, + [SMALL_STATE(6387)] = 265752, + [SMALL_STATE(6388)] = 265818, + [SMALL_STATE(6389)] = 265880, + [SMALL_STATE(6390)] = 265934, + [SMALL_STATE(6391)] = 266000, + [SMALL_STATE(6392)] = 266052, + [SMALL_STATE(6393)] = 266118, + [SMALL_STATE(6394)] = 266174, + [SMALL_STATE(6395)] = 266230, + [SMALL_STATE(6396)] = 266284, + [SMALL_STATE(6397)] = 266340, + [SMALL_STATE(6398)] = 266396, + [SMALL_STATE(6399)] = 266457, + [SMALL_STATE(6400)] = 266508, + [SMALL_STATE(6401)] = 266559, + [SMALL_STATE(6402)] = 266620, + [SMALL_STATE(6403)] = 266671, + [SMALL_STATE(6404)] = 266732, + [SMALL_STATE(6405)] = 266783, + [SMALL_STATE(6406)] = 266844, + [SMALL_STATE(6407)] = 266905, + [SMALL_STATE(6408)] = 266966, + [SMALL_STATE(6409)] = 267027, + [SMALL_STATE(6410)] = 267088, + [SMALL_STATE(6411)] = 267149, + [SMALL_STATE(6412)] = 267210, + [SMALL_STATE(6413)] = 267271, + [SMALL_STATE(6414)] = 267322, + [SMALL_STATE(6415)] = 267383, + [SMALL_STATE(6416)] = 267442, + [SMALL_STATE(6417)] = 267503, + [SMALL_STATE(6418)] = 267564, + [SMALL_STATE(6419)] = 267625, + [SMALL_STATE(6420)] = 267686, + [SMALL_STATE(6421)] = 267747, + [SMALL_STATE(6422)] = 267808, + [SMALL_STATE(6423)] = 267869, + [SMALL_STATE(6424)] = 267930, + [SMALL_STATE(6425)] = 267981, + [SMALL_STATE(6426)] = 268042, + [SMALL_STATE(6427)] = 268093, + [SMALL_STATE(6428)] = 268144, + [SMALL_STATE(6429)] = 268205, + [SMALL_STATE(6430)] = 268266, + [SMALL_STATE(6431)] = 268317, + [SMALL_STATE(6432)] = 268378, + [SMALL_STATE(6433)] = 268439, + [SMALL_STATE(6434)] = 268500, + [SMALL_STATE(6435)] = 268559, + [SMALL_STATE(6436)] = 268620, + [SMALL_STATE(6437)] = 268681, + [SMALL_STATE(6438)] = 268732, + [SMALL_STATE(6439)] = 268793, + [SMALL_STATE(6440)] = 268853, + [SMALL_STATE(6441)] = 268907, + [SMALL_STATE(6442)] = 268967, + [SMALL_STATE(6443)] = 269027, + [SMALL_STATE(6444)] = 269087, + [SMALL_STATE(6445)] = 269137, + [SMALL_STATE(6446)] = 269197, + [SMALL_STATE(6447)] = 269253, + [SMALL_STATE(6448)] = 269305, + [SMALL_STATE(6449)] = 269363, + [SMALL_STATE(6450)] = 269413, + [SMALL_STATE(6451)] = 269473, + [SMALL_STATE(6452)] = 269533, + [SMALL_STATE(6453)] = 269593, + [SMALL_STATE(6454)] = 269653, + [SMALL_STATE(6455)] = 269713, + [SMALL_STATE(6456)] = 269763, + [SMALL_STATE(6457)] = 269823, + [SMALL_STATE(6458)] = 269881, + [SMALL_STATE(6459)] = 269941, + [SMALL_STATE(6460)] = 270001, + [SMALL_STATE(6461)] = 270061, + [SMALL_STATE(6462)] = 270121, + [SMALL_STATE(6463)] = 270181, + [SMALL_STATE(6464)] = 270241, + [SMALL_STATE(6465)] = 270301, + [SMALL_STATE(6466)] = 270361, + [SMALL_STATE(6467)] = 270421, + [SMALL_STATE(6468)] = 270479, + [SMALL_STATE(6469)] = 270535, + [SMALL_STATE(6470)] = 270585, + [SMALL_STATE(6471)] = 270635, + [SMALL_STATE(6472)] = 270695, + [SMALL_STATE(6473)] = 270749, + [SMALL_STATE(6474)] = 270809, + [SMALL_STATE(6475)] = 270869, + [SMALL_STATE(6476)] = 270929, + [SMALL_STATE(6477)] = 270989, + [SMALL_STATE(6478)] = 271049, + [SMALL_STATE(6479)] = 271109, + [SMALL_STATE(6480)] = 271169, + [SMALL_STATE(6481)] = 271229, + [SMALL_STATE(6482)] = 271281, + [SMALL_STATE(6483)] = 271341, + [SMALL_STATE(6484)] = 271393, + [SMALL_STATE(6485)] = 271443, + [SMALL_STATE(6486)] = 271503, + [SMALL_STATE(6487)] = 271563, + [SMALL_STATE(6488)] = 271623, + [SMALL_STATE(6489)] = 271683, + [SMALL_STATE(6490)] = 271743, + [SMALL_STATE(6491)] = 271797, + [SMALL_STATE(6492)] = 271857, + [SMALL_STATE(6493)] = 271915, + [SMALL_STATE(6494)] = 271969, + [SMALL_STATE(6495)] = 272029, + [SMALL_STATE(6496)] = 272089, + [SMALL_STATE(6497)] = 272149, + [SMALL_STATE(6498)] = 272209, + [SMALL_STATE(6499)] = 272269, + [SMALL_STATE(6500)] = 272329, + [SMALL_STATE(6501)] = 272389, + [SMALL_STATE(6502)] = 272449, + [SMALL_STATE(6503)] = 272507, + [SMALL_STATE(6504)] = 272565, + [SMALL_STATE(6505)] = 272625, + [SMALL_STATE(6506)] = 272683, + [SMALL_STATE(6507)] = 272743, + [SMALL_STATE(6508)] = 272803, + [SMALL_STATE(6509)] = 272863, + [SMALL_STATE(6510)] = 272921, + [SMALL_STATE(6511)] = 272971, + [SMALL_STATE(6512)] = 273025, + [SMALL_STATE(6513)] = 273077, + [SMALL_STATE(6514)] = 273127, + [SMALL_STATE(6515)] = 273187, + [SMALL_STATE(6516)] = 273245, + [SMALL_STATE(6517)] = 273299, + [SMALL_STATE(6518)] = 273359, + [SMALL_STATE(6519)] = 273419, + [SMALL_STATE(6520)] = 273471, + [SMALL_STATE(6521)] = 273525, + [SMALL_STATE(6522)] = 273583, + [SMALL_STATE(6523)] = 273643, + [SMALL_STATE(6524)] = 273692, + [SMALL_STATE(6525)] = 273747, + [SMALL_STATE(6526)] = 273802, + [SMALL_STATE(6527)] = 273857, + [SMALL_STATE(6528)] = 273914, + [SMALL_STATE(6529)] = 273969, + [SMALL_STATE(6530)] = 274024, + [SMALL_STATE(6531)] = 274079, + [SMALL_STATE(6532)] = 274134, + [SMALL_STATE(6533)] = 274189, + [SMALL_STATE(6534)] = 274244, + [SMALL_STATE(6535)] = 274297, + [SMALL_STATE(6536)] = 274352, + [SMALL_STATE(6537)] = 274407, + [SMALL_STATE(6538)] = 274462, + [SMALL_STATE(6539)] = 274517, + [SMALL_STATE(6540)] = 274572, + [SMALL_STATE(6541)] = 274627, + [SMALL_STATE(6542)] = 274678, + [SMALL_STATE(6543)] = 274735, + [SMALL_STATE(6544)] = 274790, + [SMALL_STATE(6545)] = 274845, + [SMALL_STATE(6546)] = 274900, + [SMALL_STATE(6547)] = 274955, + [SMALL_STATE(6548)] = 275012, + [SMALL_STATE(6549)] = 275061, + [SMALL_STATE(6550)] = 275118, + [SMALL_STATE(6551)] = 275173, + [SMALL_STATE(6552)] = 275228, + [SMALL_STATE(6553)] = 275283, + [SMALL_STATE(6554)] = 275338, + [SMALL_STATE(6555)] = 275393, + [SMALL_STATE(6556)] = 275448, + [SMALL_STATE(6557)] = 275501, + [SMALL_STATE(6558)] = 275556, + [SMALL_STATE(6559)] = 275611, + [SMALL_STATE(6560)] = 275666, + [SMALL_STATE(6561)] = 275717, + [SMALL_STATE(6562)] = 275772, + [SMALL_STATE(6563)] = 275827, + [SMALL_STATE(6564)] = 275882, + [SMALL_STATE(6565)] = 275937, + [SMALL_STATE(6566)] = 275994, + [SMALL_STATE(6567)] = 276049, + [SMALL_STATE(6568)] = 276098, + [SMALL_STATE(6569)] = 276153, + [SMALL_STATE(6570)] = 276208, + [SMALL_STATE(6571)] = 276263, + [SMALL_STATE(6572)] = 276318, + [SMALL_STATE(6573)] = 276375, + [SMALL_STATE(6574)] = 276430, + [SMALL_STATE(6575)] = 276487, + [SMALL_STATE(6576)] = 276536, + [SMALL_STATE(6577)] = 276591, + [SMALL_STATE(6578)] = 276648, + [SMALL_STATE(6579)] = 276697, + [SMALL_STATE(6580)] = 276746, + [SMALL_STATE(6581)] = 276801, + [SMALL_STATE(6582)] = 276858, + [SMALL_STATE(6583)] = 276913, + [SMALL_STATE(6584)] = 276970, + [SMALL_STATE(6585)] = 277027, + [SMALL_STATE(6586)] = 277084, + [SMALL_STATE(6587)] = 277141, + [SMALL_STATE(6588)] = 277196, + [SMALL_STATE(6589)] = 277251, + [SMALL_STATE(6590)] = 277308, + [SMALL_STATE(6591)] = 277363, + [SMALL_STATE(6592)] = 277414, + [SMALL_STATE(6593)] = 277465, + [SMALL_STATE(6594)] = 277516, + [SMALL_STATE(6595)] = 277571, + [SMALL_STATE(6596)] = 277628, + [SMALL_STATE(6597)] = 277677, + [SMALL_STATE(6598)] = 277734, + [SMALL_STATE(6599)] = 277791, + [SMALL_STATE(6600)] = 277842, + [SMALL_STATE(6601)] = 277897, + [SMALL_STATE(6602)] = 277948, + [SMALL_STATE(6603)] = 278001, + [SMALL_STATE(6604)] = 278056, + [SMALL_STATE(6605)] = 278111, + [SMALL_STATE(6606)] = 278162, + [SMALL_STATE(6607)] = 278217, + [SMALL_STATE(6608)] = 278272, + [SMALL_STATE(6609)] = 278327, + [SMALL_STATE(6610)] = 278382, + [SMALL_STATE(6611)] = 278437, + [SMALL_STATE(6612)] = 278492, + [SMALL_STATE(6613)] = 278547, + [SMALL_STATE(6614)] = 278596, + [SMALL_STATE(6615)] = 278653, + [SMALL_STATE(6616)] = 278708, + [SMALL_STATE(6617)] = 278763, + [SMALL_STATE(6618)] = 278818, + [SMALL_STATE(6619)] = 278869, + [SMALL_STATE(6620)] = 278924, + [SMALL_STATE(6621)] = 278981, + [SMALL_STATE(6622)] = 279036, + [SMALL_STATE(6623)] = 279091, + [SMALL_STATE(6624)] = 279146, + [SMALL_STATE(6625)] = 279201, + [SMALL_STATE(6626)] = 279256, + [SMALL_STATE(6627)] = 279313, + [SMALL_STATE(6628)] = 279368, + [SMALL_STATE(6629)] = 279425, + [SMALL_STATE(6630)] = 279480, + [SMALL_STATE(6631)] = 279537, + [SMALL_STATE(6632)] = 279592, + [SMALL_STATE(6633)] = 279647, + [SMALL_STATE(6634)] = 279702, + [SMALL_STATE(6635)] = 279755, + [SMALL_STATE(6636)] = 279810, + [SMALL_STATE(6637)] = 279865, + [SMALL_STATE(6638)] = 279920, + [SMALL_STATE(6639)] = 279977, + [SMALL_STATE(6640)] = 280032, + [SMALL_STATE(6641)] = 280085, + [SMALL_STATE(6642)] = 280140, + [SMALL_STATE(6643)] = 280197, + [SMALL_STATE(6644)] = 280252, + [SMALL_STATE(6645)] = 280309, + [SMALL_STATE(6646)] = 280366, + [SMALL_STATE(6647)] = 280423, + [SMALL_STATE(6648)] = 280480, + [SMALL_STATE(6649)] = 280531, + [SMALL_STATE(6650)] = 280584, + [SMALL_STATE(6651)] = 280639, + [SMALL_STATE(6652)] = 280692, + [SMALL_STATE(6653)] = 280747, + [SMALL_STATE(6654)] = 280800, + [SMALL_STATE(6655)] = 280853, + [SMALL_STATE(6656)] = 280908, + [SMALL_STATE(6657)] = 280965, + [SMALL_STATE(6658)] = 281020, + [SMALL_STATE(6659)] = 281073, + [SMALL_STATE(6660)] = 281126, + [SMALL_STATE(6661)] = 281177, + [SMALL_STATE(6662)] = 281232, + [SMALL_STATE(6663)] = 281287, + [SMALL_STATE(6664)] = 281342, + [SMALL_STATE(6665)] = 281397, + [SMALL_STATE(6666)] = 281452, + [SMALL_STATE(6667)] = 281507, + [SMALL_STATE(6668)] = 281562, + [SMALL_STATE(6669)] = 281617, + [SMALL_STATE(6670)] = 281674, + [SMALL_STATE(6671)] = 281729, + [SMALL_STATE(6672)] = 281784, + [SMALL_STATE(6673)] = 281839, + [SMALL_STATE(6674)] = 281896, + [SMALL_STATE(6675)] = 281951, + [SMALL_STATE(6676)] = 282006, + [SMALL_STATE(6677)] = 282061, + [SMALL_STATE(6678)] = 282116, + [SMALL_STATE(6679)] = 282165, + [SMALL_STATE(6680)] = 282222, + [SMALL_STATE(6681)] = 282279, + [SMALL_STATE(6682)] = 282334, + [SMALL_STATE(6683)] = 282389, + [SMALL_STATE(6684)] = 282446, + [SMALL_STATE(6685)] = 282501, + [SMALL_STATE(6686)] = 282556, + [SMALL_STATE(6687)] = 282611, + [SMALL_STATE(6688)] = 282666, + [SMALL_STATE(6689)] = 282721, + [SMALL_STATE(6690)] = 282776, + [SMALL_STATE(6691)] = 282833, + [SMALL_STATE(6692)] = 282885, + [SMALL_STATE(6693)] = 282939, + [SMALL_STATE(6694)] = 282993, + [SMALL_STATE(6695)] = 283041, + [SMALL_STATE(6696)] = 283095, + [SMALL_STATE(6697)] = 283143, + [SMALL_STATE(6698)] = 283195, + [SMALL_STATE(6699)] = 283247, + [SMALL_STATE(6700)] = 283301, + [SMALL_STATE(6701)] = 283355, + [SMALL_STATE(6702)] = 283405, + [SMALL_STATE(6703)] = 283455, + [SMALL_STATE(6704)] = 283503, + [SMALL_STATE(6705)] = 283551, + [SMALL_STATE(6706)] = 283605, + [SMALL_STATE(6707)] = 283659, + [SMALL_STATE(6708)] = 283713, + [SMALL_STATE(6709)] = 283765, + [SMALL_STATE(6710)] = 283813, + [SMALL_STATE(6711)] = 283867, + [SMALL_STATE(6712)] = 283921, + [SMALL_STATE(6713)] = 283969, + [SMALL_STATE(6714)] = 284023, + [SMALL_STATE(6715)] = 284073, + [SMALL_STATE(6716)] = 284123, + [SMALL_STATE(6717)] = 284171, + [SMALL_STATE(6718)] = 284225, + [SMALL_STATE(6719)] = 284279, + [SMALL_STATE(6720)] = 284331, + [SMALL_STATE(6721)] = 284385, + [SMALL_STATE(6722)] = 284439, + [SMALL_STATE(6723)] = 284487, + [SMALL_STATE(6724)] = 284539, + [SMALL_STATE(6725)] = 284593, + [SMALL_STATE(6726)] = 284645, + [SMALL_STATE(6727)] = 284699, + [SMALL_STATE(6728)] = 284753, + [SMALL_STATE(6729)] = 284803, + [SMALL_STATE(6730)] = 284857, + [SMALL_STATE(6731)] = 284911, + [SMALL_STATE(6732)] = 284965, + [SMALL_STATE(6733)] = 285019, + [SMALL_STATE(6734)] = 285071, + [SMALL_STATE(6735)] = 285121, + [SMALL_STATE(6736)] = 285175, + [SMALL_STATE(6737)] = 285229, + [SMALL_STATE(6738)] = 285281, + [SMALL_STATE(6739)] = 285329, + [SMALL_STATE(6740)] = 285383, + [SMALL_STATE(6741)] = 285437, + [SMALL_STATE(6742)] = 285491, + [SMALL_STATE(6743)] = 285541, + [SMALL_STATE(6744)] = 285589, + [SMALL_STATE(6745)] = 285639, + [SMALL_STATE(6746)] = 285693, + [SMALL_STATE(6747)] = 285747, + [SMALL_STATE(6748)] = 285801, + [SMALL_STATE(6749)] = 285855, + [SMALL_STATE(6750)] = 285909, + [SMALL_STATE(6751)] = 285963, + [SMALL_STATE(6752)] = 286015, + [SMALL_STATE(6753)] = 286065, + [SMALL_STATE(6754)] = 286119, + [SMALL_STATE(6755)] = 286167, + [SMALL_STATE(6756)] = 286221, + [SMALL_STATE(6757)] = 286269, + [SMALL_STATE(6758)] = 286323, + [SMALL_STATE(6759)] = 286377, + [SMALL_STATE(6760)] = 286431, + [SMALL_STATE(6761)] = 286485, + [SMALL_STATE(6762)] = 286535, + [SMALL_STATE(6763)] = 286589, + [SMALL_STATE(6764)] = 286639, + [SMALL_STATE(6765)] = 286687, + [SMALL_STATE(6766)] = 286739, + [SMALL_STATE(6767)] = 286791, + [SMALL_STATE(6768)] = 286845, + [SMALL_STATE(6769)] = 286893, + [SMALL_STATE(6770)] = 286943, + [SMALL_STATE(6771)] = 286993, + [SMALL_STATE(6772)] = 287047, + [SMALL_STATE(6773)] = 287097, + [SMALL_STATE(6774)] = 287147, + [SMALL_STATE(6775)] = 287199, + [SMALL_STATE(6776)] = 287251, + [SMALL_STATE(6777)] = 287301, + [SMALL_STATE(6778)] = 287349, + [SMALL_STATE(6779)] = 287403, + [SMALL_STATE(6780)] = 287457, + [SMALL_STATE(6781)] = 287509, + [SMALL_STATE(6782)] = 287557, + [SMALL_STATE(6783)] = 287611, + [SMALL_STATE(6784)] = 287665, + [SMALL_STATE(6785)] = 287713, + [SMALL_STATE(6786)] = 287767, + [SMALL_STATE(6787)] = 287815, + [SMALL_STATE(6788)] = 287865, + [SMALL_STATE(6789)] = 287915, + [SMALL_STATE(6790)] = 287967, + [SMALL_STATE(6791)] = 288015, + [SMALL_STATE(6792)] = 288063, + [SMALL_STATE(6793)] = 288111, + [SMALL_STATE(6794)] = 288163, + [SMALL_STATE(6795)] = 288217, + [SMALL_STATE(6796)] = 288271, + [SMALL_STATE(6797)] = 288320, + [SMALL_STATE(6798)] = 288369, + [SMALL_STATE(6799)] = 288418, + [SMALL_STATE(6800)] = 288469, + [SMALL_STATE(6801)] = 288520, + [SMALL_STATE(6802)] = 288571, + [SMALL_STATE(6803)] = 288622, + [SMALL_STATE(6804)] = 288673, + [SMALL_STATE(6805)] = 288722, + [SMALL_STATE(6806)] = 288773, + [SMALL_STATE(6807)] = 288824, + [SMALL_STATE(6808)] = 288873, + [SMALL_STATE(6809)] = 288924, + [SMALL_STATE(6810)] = 288971, + [SMALL_STATE(6811)] = 289022, + [SMALL_STATE(6812)] = 289071, + [SMALL_STATE(6813)] = 289122, + [SMALL_STATE(6814)] = 289173, + [SMALL_STATE(6815)] = 289224, + [SMALL_STATE(6816)] = 289275, + [SMALL_STATE(6817)] = 289324, + [SMALL_STATE(6818)] = 289375, + [SMALL_STATE(6819)] = 289426, + [SMALL_STATE(6820)] = 289473, + [SMALL_STATE(6821)] = 289524, + [SMALL_STATE(6822)] = 289575, + [SMALL_STATE(6823)] = 289626, + [SMALL_STATE(6824)] = 289673, + [SMALL_STATE(6825)] = 289724, + [SMALL_STATE(6826)] = 289775, + [SMALL_STATE(6827)] = 289822, + [SMALL_STATE(6828)] = 289873, + [SMALL_STATE(6829)] = 289924, + [SMALL_STATE(6830)] = 289975, + [SMALL_STATE(6831)] = 290026, + [SMALL_STATE(6832)] = 290075, + [SMALL_STATE(6833)] = 290122, + [SMALL_STATE(6834)] = 290173, + [SMALL_STATE(6835)] = 290220, + [SMALL_STATE(6836)] = 290271, + [SMALL_STATE(6837)] = 290322, + [SMALL_STATE(6838)] = 290373, + [SMALL_STATE(6839)] = 290424, + [SMALL_STATE(6840)] = 290475, + [SMALL_STATE(6841)] = 290526, + [SMALL_STATE(6842)] = 290577, + [SMALL_STATE(6843)] = 290624, + [SMALL_STATE(6844)] = 290675, + [SMALL_STATE(6845)] = 290726, + [SMALL_STATE(6846)] = 290777, + [SMALL_STATE(6847)] = 290828, + [SMALL_STATE(6848)] = 290879, + [SMALL_STATE(6849)] = 290930, + [SMALL_STATE(6850)] = 290981, + [SMALL_STATE(6851)] = 291032, + [SMALL_STATE(6852)] = 291083, + [SMALL_STATE(6853)] = 291134, + [SMALL_STATE(6854)] = 291185, + [SMALL_STATE(6855)] = 291236, + [SMALL_STATE(6856)] = 291287, + [SMALL_STATE(6857)] = 291338, + [SMALL_STATE(6858)] = 291389, + [SMALL_STATE(6859)] = 291440, + [SMALL_STATE(6860)] = 291491, + [SMALL_STATE(6861)] = 291542, + [SMALL_STATE(6862)] = 291593, + [SMALL_STATE(6863)] = 291644, + [SMALL_STATE(6864)] = 291695, + [SMALL_STATE(6865)] = 291742, + [SMALL_STATE(6866)] = 291793, + [SMALL_STATE(6867)] = 291844, + [SMALL_STATE(6868)] = 291895, + [SMALL_STATE(6869)] = 291946, + [SMALL_STATE(6870)] = 291997, + [SMALL_STATE(6871)] = 292048, + [SMALL_STATE(6872)] = 292099, + [SMALL_STATE(6873)] = 292148, + [SMALL_STATE(6874)] = 292197, + [SMALL_STATE(6875)] = 292248, + [SMALL_STATE(6876)] = 292299, + [SMALL_STATE(6877)] = 292350, + [SMALL_STATE(6878)] = 292401, + [SMALL_STATE(6879)] = 292448, + [SMALL_STATE(6880)] = 292499, + [SMALL_STATE(6881)] = 292550, + [SMALL_STATE(6882)] = 292599, + [SMALL_STATE(6883)] = 292650, + [SMALL_STATE(6884)] = 292701, + [SMALL_STATE(6885)] = 292752, + [SMALL_STATE(6886)] = 292803, + [SMALL_STATE(6887)] = 292854, + [SMALL_STATE(6888)] = 292905, + [SMALL_STATE(6889)] = 292956, + [SMALL_STATE(6890)] = 293007, + [SMALL_STATE(6891)] = 293054, + [SMALL_STATE(6892)] = 293105, + [SMALL_STATE(6893)] = 293156, + [SMALL_STATE(6894)] = 293207, + [SMALL_STATE(6895)] = 293258, + [SMALL_STATE(6896)] = 293309, + [SMALL_STATE(6897)] = 293360, + [SMALL_STATE(6898)] = 293411, + [SMALL_STATE(6899)] = 293462, + [SMALL_STATE(6900)] = 293513, + [SMALL_STATE(6901)] = 293564, + [SMALL_STATE(6902)] = 293615, + [SMALL_STATE(6903)] = 293666, + [SMALL_STATE(6904)] = 293717, + [SMALL_STATE(6905)] = 293768, + [SMALL_STATE(6906)] = 293819, + [SMALL_STATE(6907)] = 293870, + [SMALL_STATE(6908)] = 293921, + [SMALL_STATE(6909)] = 293972, + [SMALL_STATE(6910)] = 294023, + [SMALL_STATE(6911)] = 294074, + [SMALL_STATE(6912)] = 294125, + [SMALL_STATE(6913)] = 294176, + [SMALL_STATE(6914)] = 294227, + [SMALL_STATE(6915)] = 294276, + [SMALL_STATE(6916)] = 294323, + [SMALL_STATE(6917)] = 294374, + [SMALL_STATE(6918)] = 294425, + [SMALL_STATE(6919)] = 294476, + [SMALL_STATE(6920)] = 294527, + [SMALL_STATE(6921)] = 294578, + [SMALL_STATE(6922)] = 294629, + [SMALL_STATE(6923)] = 294678, + [SMALL_STATE(6924)] = 294729, + [SMALL_STATE(6925)] = 294780, + [SMALL_STATE(6926)] = 294827, + [SMALL_STATE(6927)] = 294876, + [SMALL_STATE(6928)] = 294923, + [SMALL_STATE(6929)] = 294974, + [SMALL_STATE(6930)] = 295025, + [SMALL_STATE(6931)] = 295076, + [SMALL_STATE(6932)] = 295127, + [SMALL_STATE(6933)] = 295178, + [SMALL_STATE(6934)] = 295229, + [SMALL_STATE(6935)] = 295280, + [SMALL_STATE(6936)] = 295331, + [SMALL_STATE(6937)] = 295378, + [SMALL_STATE(6938)] = 295429, + [SMALL_STATE(6939)] = 295480, + [SMALL_STATE(6940)] = 295531, + [SMALL_STATE(6941)] = 295582, + [SMALL_STATE(6942)] = 295633, + [SMALL_STATE(6943)] = 295684, + [SMALL_STATE(6944)] = 295733, + [SMALL_STATE(6945)] = 295784, + [SMALL_STATE(6946)] = 295835, + [SMALL_STATE(6947)] = 295886, + [SMALL_STATE(6948)] = 295935, + [SMALL_STATE(6949)] = 295986, + [SMALL_STATE(6950)] = 296037, + [SMALL_STATE(6951)] = 296088, + [SMALL_STATE(6952)] = 296139, + [SMALL_STATE(6953)] = 296190, + [SMALL_STATE(6954)] = 296241, + [SMALL_STATE(6955)] = 296292, + [SMALL_STATE(6956)] = 296343, + [SMALL_STATE(6957)] = 296394, + [SMALL_STATE(6958)] = 296445, + [SMALL_STATE(6959)] = 296496, + [SMALL_STATE(6960)] = 296547, + [SMALL_STATE(6961)] = 296598, + [SMALL_STATE(6962)] = 296649, + [SMALL_STATE(6963)] = 296700, + [SMALL_STATE(6964)] = 296749, + [SMALL_STATE(6965)] = 296800, + [SMALL_STATE(6966)] = 296849, + [SMALL_STATE(6967)] = 296900, + [SMALL_STATE(6968)] = 296951, + [SMALL_STATE(6969)] = 297002, + [SMALL_STATE(6970)] = 297053, + [SMALL_STATE(6971)] = 297104, + [SMALL_STATE(6972)] = 297155, + [SMALL_STATE(6973)] = 297204, + [SMALL_STATE(6974)] = 297255, + [SMALL_STATE(6975)] = 297306, + [SMALL_STATE(6976)] = 297353, + [SMALL_STATE(6977)] = 297404, + [SMALL_STATE(6978)] = 297455, + [SMALL_STATE(6979)] = 297506, + [SMALL_STATE(6980)] = 297557, + [SMALL_STATE(6981)] = 297608, + [SMALL_STATE(6982)] = 297659, + [SMALL_STATE(6983)] = 297710, + [SMALL_STATE(6984)] = 297761, + [SMALL_STATE(6985)] = 297812, + [SMALL_STATE(6986)] = 297863, + [SMALL_STATE(6987)] = 297914, + [SMALL_STATE(6988)] = 297965, + [SMALL_STATE(6989)] = 298016, + [SMALL_STATE(6990)] = 298067, + [SMALL_STATE(6991)] = 298118, + [SMALL_STATE(6992)] = 298169, + [SMALL_STATE(6993)] = 298220, + [SMALL_STATE(6994)] = 298271, + [SMALL_STATE(6995)] = 298322, + [SMALL_STATE(6996)] = 298373, + [SMALL_STATE(6997)] = 298424, + [SMALL_STATE(6998)] = 298475, + [SMALL_STATE(6999)] = 298526, + [SMALL_STATE(7000)] = 298577, + [SMALL_STATE(7001)] = 298628, + [SMALL_STATE(7002)] = 298679, + [SMALL_STATE(7003)] = 298730, + [SMALL_STATE(7004)] = 298781, + [SMALL_STATE(7005)] = 298832, + [SMALL_STATE(7006)] = 298883, + [SMALL_STATE(7007)] = 298934, + [SMALL_STATE(7008)] = 298985, + [SMALL_STATE(7009)] = 299032, + [SMALL_STATE(7010)] = 299083, + [SMALL_STATE(7011)] = 299134, + [SMALL_STATE(7012)] = 299185, + [SMALL_STATE(7013)] = 299236, + [SMALL_STATE(7014)] = 299287, + [SMALL_STATE(7015)] = 299338, + [SMALL_STATE(7016)] = 299389, + [SMALL_STATE(7017)] = 299440, + [SMALL_STATE(7018)] = 299491, + [SMALL_STATE(7019)] = 299542, + [SMALL_STATE(7020)] = 299593, + [SMALL_STATE(7021)] = 299640, + [SMALL_STATE(7022)] = 299691, + [SMALL_STATE(7023)] = 299742, + [SMALL_STATE(7024)] = 299793, + [SMALL_STATE(7025)] = 299844, + [SMALL_STATE(7026)] = 299895, + [SMALL_STATE(7027)] = 299946, + [SMALL_STATE(7028)] = 299997, + [SMALL_STATE(7029)] = 300048, + [SMALL_STATE(7030)] = 300099, + [SMALL_STATE(7031)] = 300150, + [SMALL_STATE(7032)] = 300201, + [SMALL_STATE(7033)] = 300252, + [SMALL_STATE(7034)] = 300303, + [SMALL_STATE(7035)] = 300352, + [SMALL_STATE(7036)] = 300403, + [SMALL_STATE(7037)] = 300454, + [SMALL_STATE(7038)] = 300505, + [SMALL_STATE(7039)] = 300556, + [SMALL_STATE(7040)] = 300607, + [SMALL_STATE(7041)] = 300658, + [SMALL_STATE(7042)] = 300709, + [SMALL_STATE(7043)] = 300760, + [SMALL_STATE(7044)] = 300811, + [SMALL_STATE(7045)] = 300862, + [SMALL_STATE(7046)] = 300913, + [SMALL_STATE(7047)] = 300964, + [SMALL_STATE(7048)] = 301011, + [SMALL_STATE(7049)] = 301062, + [SMALL_STATE(7050)] = 301113, + [SMALL_STATE(7051)] = 301162, + [SMALL_STATE(7052)] = 301213, + [SMALL_STATE(7053)] = 301264, + [SMALL_STATE(7054)] = 301315, + [SMALL_STATE(7055)] = 301364, + [SMALL_STATE(7056)] = 301413, + [SMALL_STATE(7057)] = 301464, + [SMALL_STATE(7058)] = 301515, + [SMALL_STATE(7059)] = 301566, + [SMALL_STATE(7060)] = 301617, + [SMALL_STATE(7061)] = 301668, + [SMALL_STATE(7062)] = 301719, + [SMALL_STATE(7063)] = 301768, + [SMALL_STATE(7064)] = 301819, + [SMALL_STATE(7065)] = 301868, + [SMALL_STATE(7066)] = 301919, + [SMALL_STATE(7067)] = 301968, + [SMALL_STATE(7068)] = 302019, + [SMALL_STATE(7069)] = 302070, + [SMALL_STATE(7070)] = 302119, + [SMALL_STATE(7071)] = 302170, + [SMALL_STATE(7072)] = 302217, + [SMALL_STATE(7073)] = 302268, + [SMALL_STATE(7074)] = 302319, + [SMALL_STATE(7075)] = 302370, + [SMALL_STATE(7076)] = 302419, + [SMALL_STATE(7077)] = 302470, + [SMALL_STATE(7078)] = 302517, + [SMALL_STATE(7079)] = 302568, + [SMALL_STATE(7080)] = 302615, + [SMALL_STATE(7081)] = 302666, + [SMALL_STATE(7082)] = 302713, + [SMALL_STATE(7083)] = 302764, + [SMALL_STATE(7084)] = 302811, + [SMALL_STATE(7085)] = 302862, + [SMALL_STATE(7086)] = 302913, + [SMALL_STATE(7087)] = 302964, + [SMALL_STATE(7088)] = 303015, + [SMALL_STATE(7089)] = 303062, + [SMALL_STATE(7090)] = 303111, + [SMALL_STATE(7091)] = 303160, + [SMALL_STATE(7092)] = 303211, + [SMALL_STATE(7093)] = 303262, + [SMALL_STATE(7094)] = 303313, + [SMALL_STATE(7095)] = 303362, + [SMALL_STATE(7096)] = 303413, + [SMALL_STATE(7097)] = 303464, + [SMALL_STATE(7098)] = 303511, + [SMALL_STATE(7099)] = 303562, + [SMALL_STATE(7100)] = 303613, + [SMALL_STATE(7101)] = 303664, + [SMALL_STATE(7102)] = 303715, + [SMALL_STATE(7103)] = 303766, + [SMALL_STATE(7104)] = 303817, + [SMALL_STATE(7105)] = 303866, + [SMALL_STATE(7106)] = 303913, + [SMALL_STATE(7107)] = 303961, + [SMALL_STATE(7108)] = 304009, + [SMALL_STATE(7109)] = 304055, + [SMALL_STATE(7110)] = 304103, + [SMALL_STATE(7111)] = 304151, + [SMALL_STATE(7112)] = 304197, + [SMALL_STATE(7113)] = 304245, + [SMALL_STATE(7114)] = 304291, + [SMALL_STATE(7115)] = 304339, + [SMALL_STATE(7116)] = 304385, + [SMALL_STATE(7117)] = 304433, + [SMALL_STATE(7118)] = 304481, + [SMALL_STATE(7119)] = 304529, + [SMALL_STATE(7120)] = 304575, + [SMALL_STATE(7121)] = 304621, + [SMALL_STATE(7122)] = 304669, + [SMALL_STATE(7123)] = 304715, + [SMALL_STATE(7124)] = 304763, + [SMALL_STATE(7125)] = 304811, + [SMALL_STATE(7126)] = 304857, + [SMALL_STATE(7127)] = 304905, + [SMALL_STATE(7128)] = 304953, + [SMALL_STATE(7129)] = 305001, + [SMALL_STATE(7130)] = 305047, + [SMALL_STATE(7131)] = 305093, + [SMALL_STATE(7132)] = 305139, + [SMALL_STATE(7133)] = 305187, + [SMALL_STATE(7134)] = 305235, + [SMALL_STATE(7135)] = 305283, + [SMALL_STATE(7136)] = 305331, + [SMALL_STATE(7137)] = 305379, + [SMALL_STATE(7138)] = 305427, + [SMALL_STATE(7139)] = 305473, + [SMALL_STATE(7140)] = 305521, + [SMALL_STATE(7141)] = 305567, + [SMALL_STATE(7142)] = 305613, + [SMALL_STATE(7143)] = 305659, + [SMALL_STATE(7144)] = 305707, + [SMALL_STATE(7145)] = 305755, + [SMALL_STATE(7146)] = 305803, + [SMALL_STATE(7147)] = 305849, + [SMALL_STATE(7148)] = 305895, + [SMALL_STATE(7149)] = 305941, + [SMALL_STATE(7150)] = 305989, + [SMALL_STATE(7151)] = 306037, + [SMALL_STATE(7152)] = 306083, + [SMALL_STATE(7153)] = 306131, + [SMALL_STATE(7154)] = 306179, + [SMALL_STATE(7155)] = 306227, + [SMALL_STATE(7156)] = 306275, + [SMALL_STATE(7157)] = 306323, + [SMALL_STATE(7158)] = 306371, + [SMALL_STATE(7159)] = 306419, + [SMALL_STATE(7160)] = 306467, + [SMALL_STATE(7161)] = 306515, + [SMALL_STATE(7162)] = 306561, + [SMALL_STATE(7163)] = 306609, + [SMALL_STATE(7164)] = 306655, + [SMALL_STATE(7165)] = 306703, + [SMALL_STATE(7166)] = 306751, + [SMALL_STATE(7167)] = 306797, + [SMALL_STATE(7168)] = 306845, + [SMALL_STATE(7169)] = 306893, + [SMALL_STATE(7170)] = 306941, + [SMALL_STATE(7171)] = 306989, + [SMALL_STATE(7172)] = 307037, + [SMALL_STATE(7173)] = 307085, + [SMALL_STATE(7174)] = 307133, + [SMALL_STATE(7175)] = 307181, + [SMALL_STATE(7176)] = 307229, + [SMALL_STATE(7177)] = 307277, + [SMALL_STATE(7178)] = 307323, + [SMALL_STATE(7179)] = 307371, + [SMALL_STATE(7180)] = 307417, + [SMALL_STATE(7181)] = 307463, + [SMALL_STATE(7182)] = 307509, + [SMALL_STATE(7183)] = 307557, + [SMALL_STATE(7184)] = 307605, + [SMALL_STATE(7185)] = 307653, + [SMALL_STATE(7186)] = 307701, + [SMALL_STATE(7187)] = 307747, + [SMALL_STATE(7188)] = 307795, + [SMALL_STATE(7189)] = 307843, + [SMALL_STATE(7190)] = 307889, + [SMALL_STATE(7191)] = 307937, + [SMALL_STATE(7192)] = 307983, + [SMALL_STATE(7193)] = 308031, + [SMALL_STATE(7194)] = 308079, + [SMALL_STATE(7195)] = 308125, + [SMALL_STATE(7196)] = 308173, + [SMALL_STATE(7197)] = 308219, + [SMALL_STATE(7198)] = 308267, + [SMALL_STATE(7199)] = 308315, + [SMALL_STATE(7200)] = 308363, + [SMALL_STATE(7201)] = 308409, + [SMALL_STATE(7202)] = 308457, + [SMALL_STATE(7203)] = 308505, + [SMALL_STATE(7204)] = 308553, + [SMALL_STATE(7205)] = 308599, + [SMALL_STATE(7206)] = 308647, + [SMALL_STATE(7207)] = 308695, + [SMALL_STATE(7208)] = 308743, + [SMALL_STATE(7209)] = 308791, + [SMALL_STATE(7210)] = 308839, + [SMALL_STATE(7211)] = 308887, + [SMALL_STATE(7212)] = 308935, + [SMALL_STATE(7213)] = 308983, + [SMALL_STATE(7214)] = 309031, + [SMALL_STATE(7215)] = 309079, + [SMALL_STATE(7216)] = 309125, + [SMALL_STATE(7217)] = 309173, + [SMALL_STATE(7218)] = 309219, + [SMALL_STATE(7219)] = 309267, + [SMALL_STATE(7220)] = 309313, + [SMALL_STATE(7221)] = 309361, + [SMALL_STATE(7222)] = 309409, + [SMALL_STATE(7223)] = 309455, + [SMALL_STATE(7224)] = 309501, + [SMALL_STATE(7225)] = 309547, + [SMALL_STATE(7226)] = 309593, + [SMALL_STATE(7227)] = 309641, + [SMALL_STATE(7228)] = 309689, + [SMALL_STATE(7229)] = 309735, + [SMALL_STATE(7230)] = 309781, + [SMALL_STATE(7231)] = 309829, + [SMALL_STATE(7232)] = 309877, + [SMALL_STATE(7233)] = 309925, + [SMALL_STATE(7234)] = 309973, + [SMALL_STATE(7235)] = 310021, + [SMALL_STATE(7236)] = 310067, + [SMALL_STATE(7237)] = 310115, + [SMALL_STATE(7238)] = 310161, + [SMALL_STATE(7239)] = 310207, + [SMALL_STATE(7240)] = 310255, + [SMALL_STATE(7241)] = 310303, + [SMALL_STATE(7242)] = 310351, + [SMALL_STATE(7243)] = 310397, + [SMALL_STATE(7244)] = 310445, + [SMALL_STATE(7245)] = 310493, + [SMALL_STATE(7246)] = 310541, + [SMALL_STATE(7247)] = 310589, + [SMALL_STATE(7248)] = 310637, + [SMALL_STATE(7249)] = 310683, + [SMALL_STATE(7250)] = 310731, + [SMALL_STATE(7251)] = 310777, + [SMALL_STATE(7252)] = 310825, + [SMALL_STATE(7253)] = 310873, + [SMALL_STATE(7254)] = 310921, + [SMALL_STATE(7255)] = 310969, + [SMALL_STATE(7256)] = 311017, + [SMALL_STATE(7257)] = 311065, + [SMALL_STATE(7258)] = 311113, + [SMALL_STATE(7259)] = 311159, + [SMALL_STATE(7260)] = 311205, + [SMALL_STATE(7261)] = 311251, + [SMALL_STATE(7262)] = 311299, + [SMALL_STATE(7263)] = 311347, + [SMALL_STATE(7264)] = 311395, + [SMALL_STATE(7265)] = 311441, + [SMALL_STATE(7266)] = 311487, + [SMALL_STATE(7267)] = 311535, + [SMALL_STATE(7268)] = 311581, + [SMALL_STATE(7269)] = 311629, + [SMALL_STATE(7270)] = 311675, + [SMALL_STATE(7271)] = 311721, + [SMALL_STATE(7272)] = 311767, + [SMALL_STATE(7273)] = 311815, + [SMALL_STATE(7274)] = 311861, + [SMALL_STATE(7275)] = 311907, + [SMALL_STATE(7276)] = 311953, + [SMALL_STATE(7277)] = 312001, + [SMALL_STATE(7278)] = 312049, + [SMALL_STATE(7279)] = 312097, + [SMALL_STATE(7280)] = 312145, + [SMALL_STATE(7281)] = 312193, + [SMALL_STATE(7282)] = 312239, + [SMALL_STATE(7283)] = 312287, + [SMALL_STATE(7284)] = 312335, + [SMALL_STATE(7285)] = 312383, + [SMALL_STATE(7286)] = 312429, + [SMALL_STATE(7287)] = 312477, + [SMALL_STATE(7288)] = 312523, + [SMALL_STATE(7289)] = 312569, + [SMALL_STATE(7290)] = 312617, + [SMALL_STATE(7291)] = 312663, + [SMALL_STATE(7292)] = 312711, + [SMALL_STATE(7293)] = 312757, + [SMALL_STATE(7294)] = 312803, + [SMALL_STATE(7295)] = 312849, + [SMALL_STATE(7296)] = 312895, + [SMALL_STATE(7297)] = 312943, + [SMALL_STATE(7298)] = 312991, + [SMALL_STATE(7299)] = 313037, + [SMALL_STATE(7300)] = 313083, + [SMALL_STATE(7301)] = 313131, + [SMALL_STATE(7302)] = 313179, + [SMALL_STATE(7303)] = 313227, + [SMALL_STATE(7304)] = 313273, + [SMALL_STATE(7305)] = 313321, + [SMALL_STATE(7306)] = 313367, + [SMALL_STATE(7307)] = 313413, + [SMALL_STATE(7308)] = 313461, + [SMALL_STATE(7309)] = 313509, + [SMALL_STATE(7310)] = 313557, + [SMALL_STATE(7311)] = 313605, + [SMALL_STATE(7312)] = 313653, + [SMALL_STATE(7313)] = 313701, + [SMALL_STATE(7314)] = 313747, + [SMALL_STATE(7315)] = 313793, + [SMALL_STATE(7316)] = 313839, + [SMALL_STATE(7317)] = 313887, + [SMALL_STATE(7318)] = 313933, + [SMALL_STATE(7319)] = 313979, + [SMALL_STATE(7320)] = 314025, + [SMALL_STATE(7321)] = 314071, + [SMALL_STATE(7322)] = 314117, + [SMALL_STATE(7323)] = 314163, + [SMALL_STATE(7324)] = 314211, + [SMALL_STATE(7325)] = 314259, + [SMALL_STATE(7326)] = 314307, + [SMALL_STATE(7327)] = 314355, + [SMALL_STATE(7328)] = 314403, + [SMALL_STATE(7329)] = 314451, + [SMALL_STATE(7330)] = 314497, + [SMALL_STATE(7331)] = 314543, + [SMALL_STATE(7332)] = 314589, + [SMALL_STATE(7333)] = 314635, + [SMALL_STATE(7334)] = 314683, + [SMALL_STATE(7335)] = 314729, + [SMALL_STATE(7336)] = 314777, + [SMALL_STATE(7337)] = 314823, + [SMALL_STATE(7338)] = 314871, + [SMALL_STATE(7339)] = 314917, + [SMALL_STATE(7340)] = 314965, + [SMALL_STATE(7341)] = 315011, + [SMALL_STATE(7342)] = 315059, + [SMALL_STATE(7343)] = 315105, + [SMALL_STATE(7344)] = 315151, + [SMALL_STATE(7345)] = 315196, + [SMALL_STATE(7346)] = 315241, + [SMALL_STATE(7347)] = 315286, + [SMALL_STATE(7348)] = 315331, + [SMALL_STATE(7349)] = 315376, + [SMALL_STATE(7350)] = 315421, + [SMALL_STATE(7351)] = 315466, + [SMALL_STATE(7352)] = 315511, + [SMALL_STATE(7353)] = 315556, + [SMALL_STATE(7354)] = 315601, + [SMALL_STATE(7355)] = 315646, + [SMALL_STATE(7356)] = 315691, + [SMALL_STATE(7357)] = 315736, + [SMALL_STATE(7358)] = 315781, + [SMALL_STATE(7359)] = 315826, + [SMALL_STATE(7360)] = 315871, + [SMALL_STATE(7361)] = 315916, + [SMALL_STATE(7362)] = 315961, + [SMALL_STATE(7363)] = 316006, + [SMALL_STATE(7364)] = 316051, + [SMALL_STATE(7365)] = 316096, + [SMALL_STATE(7366)] = 316141, + [SMALL_STATE(7367)] = 316186, + [SMALL_STATE(7368)] = 316231, + [SMALL_STATE(7369)] = 316276, + [SMALL_STATE(7370)] = 316321, + [SMALL_STATE(7371)] = 316366, + [SMALL_STATE(7372)] = 316411, + [SMALL_STATE(7373)] = 316456, + [SMALL_STATE(7374)] = 316501, + [SMALL_STATE(7375)] = 316546, + [SMALL_STATE(7376)] = 316591, + [SMALL_STATE(7377)] = 316636, + [SMALL_STATE(7378)] = 316681, + [SMALL_STATE(7379)] = 316726, + [SMALL_STATE(7380)] = 316771, + [SMALL_STATE(7381)] = 316816, + [SMALL_STATE(7382)] = 316861, + [SMALL_STATE(7383)] = 316906, + [SMALL_STATE(7384)] = 316951, + [SMALL_STATE(7385)] = 316996, + [SMALL_STATE(7386)] = 317041, + [SMALL_STATE(7387)] = 317086, + [SMALL_STATE(7388)] = 317131, + [SMALL_STATE(7389)] = 317176, + [SMALL_STATE(7390)] = 317221, + [SMALL_STATE(7391)] = 317266, + [SMALL_STATE(7392)] = 317311, + [SMALL_STATE(7393)] = 317356, + [SMALL_STATE(7394)] = 317401, + [SMALL_STATE(7395)] = 317446, + [SMALL_STATE(7396)] = 317491, + [SMALL_STATE(7397)] = 317536, + [SMALL_STATE(7398)] = 317581, + [SMALL_STATE(7399)] = 317626, + [SMALL_STATE(7400)] = 317671, + [SMALL_STATE(7401)] = 317716, + [SMALL_STATE(7402)] = 317761, + [SMALL_STATE(7403)] = 317806, + [SMALL_STATE(7404)] = 317851, + [SMALL_STATE(7405)] = 317896, + [SMALL_STATE(7406)] = 317941, + [SMALL_STATE(7407)] = 317986, + [SMALL_STATE(7408)] = 318031, + [SMALL_STATE(7409)] = 318076, + [SMALL_STATE(7410)] = 318121, + [SMALL_STATE(7411)] = 318166, + [SMALL_STATE(7412)] = 318211, + [SMALL_STATE(7413)] = 318256, + [SMALL_STATE(7414)] = 318301, + [SMALL_STATE(7415)] = 318346, + [SMALL_STATE(7416)] = 318391, + [SMALL_STATE(7417)] = 318436, + [SMALL_STATE(7418)] = 318481, + [SMALL_STATE(7419)] = 318526, + [SMALL_STATE(7420)] = 318571, + [SMALL_STATE(7421)] = 318616, + [SMALL_STATE(7422)] = 318661, + [SMALL_STATE(7423)] = 318706, + [SMALL_STATE(7424)] = 318751, + [SMALL_STATE(7425)] = 318796, + [SMALL_STATE(7426)] = 318841, + [SMALL_STATE(7427)] = 318886, + [SMALL_STATE(7428)] = 318931, + [SMALL_STATE(7429)] = 318976, + [SMALL_STATE(7430)] = 319021, + [SMALL_STATE(7431)] = 319066, + [SMALL_STATE(7432)] = 319111, + [SMALL_STATE(7433)] = 319156, + [SMALL_STATE(7434)] = 319201, + [SMALL_STATE(7435)] = 319246, + [SMALL_STATE(7436)] = 319291, + [SMALL_STATE(7437)] = 319336, + [SMALL_STATE(7438)] = 319381, + [SMALL_STATE(7439)] = 319426, + [SMALL_STATE(7440)] = 319471, + [SMALL_STATE(7441)] = 319516, + [SMALL_STATE(7442)] = 319561, + [SMALL_STATE(7443)] = 319606, + [SMALL_STATE(7444)] = 319651, + [SMALL_STATE(7445)] = 319696, + [SMALL_STATE(7446)] = 319741, + [SMALL_STATE(7447)] = 319786, + [SMALL_STATE(7448)] = 319831, + [SMALL_STATE(7449)] = 319876, + [SMALL_STATE(7450)] = 319921, + [SMALL_STATE(7451)] = 319966, + [SMALL_STATE(7452)] = 320011, + [SMALL_STATE(7453)] = 320056, + [SMALL_STATE(7454)] = 320101, + [SMALL_STATE(7455)] = 320146, + [SMALL_STATE(7456)] = 320191, + [SMALL_STATE(7457)] = 320236, + [SMALL_STATE(7458)] = 320281, + [SMALL_STATE(7459)] = 320326, + [SMALL_STATE(7460)] = 320371, + [SMALL_STATE(7461)] = 320416, + [SMALL_STATE(7462)] = 320461, + [SMALL_STATE(7463)] = 320506, + [SMALL_STATE(7464)] = 320551, + [SMALL_STATE(7465)] = 320596, + [SMALL_STATE(7466)] = 320641, + [SMALL_STATE(7467)] = 320686, + [SMALL_STATE(7468)] = 320731, + [SMALL_STATE(7469)] = 320776, + [SMALL_STATE(7470)] = 320821, + [SMALL_STATE(7471)] = 320866, + [SMALL_STATE(7472)] = 320911, + [SMALL_STATE(7473)] = 320956, + [SMALL_STATE(7474)] = 321001, + [SMALL_STATE(7475)] = 321046, + [SMALL_STATE(7476)] = 321091, + [SMALL_STATE(7477)] = 321136, + [SMALL_STATE(7478)] = 321181, + [SMALL_STATE(7479)] = 321226, + [SMALL_STATE(7480)] = 321271, + [SMALL_STATE(7481)] = 321316, + [SMALL_STATE(7482)] = 321361, + [SMALL_STATE(7483)] = 321406, + [SMALL_STATE(7484)] = 321451, + [SMALL_STATE(7485)] = 321496, + [SMALL_STATE(7486)] = 321541, + [SMALL_STATE(7487)] = 321586, + [SMALL_STATE(7488)] = 321631, + [SMALL_STATE(7489)] = 321676, + [SMALL_STATE(7490)] = 321721, + [SMALL_STATE(7491)] = 321766, + [SMALL_STATE(7492)] = 321811, + [SMALL_STATE(7493)] = 321856, + [SMALL_STATE(7494)] = 321901, + [SMALL_STATE(7495)] = 321946, + [SMALL_STATE(7496)] = 321991, + [SMALL_STATE(7497)] = 322036, + [SMALL_STATE(7498)] = 322081, + [SMALL_STATE(7499)] = 322126, + [SMALL_STATE(7500)] = 322171, + [SMALL_STATE(7501)] = 322216, + [SMALL_STATE(7502)] = 322261, + [SMALL_STATE(7503)] = 322306, + [SMALL_STATE(7504)] = 322351, + [SMALL_STATE(7505)] = 322396, + [SMALL_STATE(7506)] = 322441, + [SMALL_STATE(7507)] = 322486, + [SMALL_STATE(7508)] = 322531, + [SMALL_STATE(7509)] = 322576, + [SMALL_STATE(7510)] = 322621, + [SMALL_STATE(7511)] = 322666, + [SMALL_STATE(7512)] = 322711, + [SMALL_STATE(7513)] = 322756, + [SMALL_STATE(7514)] = 322801, + [SMALL_STATE(7515)] = 322846, + [SMALL_STATE(7516)] = 322891, + [SMALL_STATE(7517)] = 322936, + [SMALL_STATE(7518)] = 322981, + [SMALL_STATE(7519)] = 323026, + [SMALL_STATE(7520)] = 323071, + [SMALL_STATE(7521)] = 323116, + [SMALL_STATE(7522)] = 323161, + [SMALL_STATE(7523)] = 323206, + [SMALL_STATE(7524)] = 323251, + [SMALL_STATE(7525)] = 323296, + [SMALL_STATE(7526)] = 323341, + [SMALL_STATE(7527)] = 323386, + [SMALL_STATE(7528)] = 323431, + [SMALL_STATE(7529)] = 323476, + [SMALL_STATE(7530)] = 323521, + [SMALL_STATE(7531)] = 323566, + [SMALL_STATE(7532)] = 323611, + [SMALL_STATE(7533)] = 323656, + [SMALL_STATE(7534)] = 323701, + [SMALL_STATE(7535)] = 323746, + [SMALL_STATE(7536)] = 323791, + [SMALL_STATE(7537)] = 323836, + [SMALL_STATE(7538)] = 323881, + [SMALL_STATE(7539)] = 323926, + [SMALL_STATE(7540)] = 323971, + [SMALL_STATE(7541)] = 324016, + [SMALL_STATE(7542)] = 324061, + [SMALL_STATE(7543)] = 324106, + [SMALL_STATE(7544)] = 324151, + [SMALL_STATE(7545)] = 324196, + [SMALL_STATE(7546)] = 324241, + [SMALL_STATE(7547)] = 324286, + [SMALL_STATE(7548)] = 324331, + [SMALL_STATE(7549)] = 324376, + [SMALL_STATE(7550)] = 324421, + [SMALL_STATE(7551)] = 324466, + [SMALL_STATE(7552)] = 324511, + [SMALL_STATE(7553)] = 324556, + [SMALL_STATE(7554)] = 324601, + [SMALL_STATE(7555)] = 324646, + [SMALL_STATE(7556)] = 324691, + [SMALL_STATE(7557)] = 324736, + [SMALL_STATE(7558)] = 324781, + [SMALL_STATE(7559)] = 324826, + [SMALL_STATE(7560)] = 324871, + [SMALL_STATE(7561)] = 324916, + [SMALL_STATE(7562)] = 324961, + [SMALL_STATE(7563)] = 325006, + [SMALL_STATE(7564)] = 325051, + [SMALL_STATE(7565)] = 325096, + [SMALL_STATE(7566)] = 325141, + [SMALL_STATE(7567)] = 325186, + [SMALL_STATE(7568)] = 325231, + [SMALL_STATE(7569)] = 325276, + [SMALL_STATE(7570)] = 325321, + [SMALL_STATE(7571)] = 325366, + [SMALL_STATE(7572)] = 325411, + [SMALL_STATE(7573)] = 325456, + [SMALL_STATE(7574)] = 325501, + [SMALL_STATE(7575)] = 325546, + [SMALL_STATE(7576)] = 325591, + [SMALL_STATE(7577)] = 325636, + [SMALL_STATE(7578)] = 325681, + [SMALL_STATE(7579)] = 325726, + [SMALL_STATE(7580)] = 325771, + [SMALL_STATE(7581)] = 325816, + [SMALL_STATE(7582)] = 325861, + [SMALL_STATE(7583)] = 325906, + [SMALL_STATE(7584)] = 325951, + [SMALL_STATE(7585)] = 325996, + [SMALL_STATE(7586)] = 326041, + [SMALL_STATE(7587)] = 326086, + [SMALL_STATE(7588)] = 326131, + [SMALL_STATE(7589)] = 326176, + [SMALL_STATE(7590)] = 326221, + [SMALL_STATE(7591)] = 326266, + [SMALL_STATE(7592)] = 326311, + [SMALL_STATE(7593)] = 326356, + [SMALL_STATE(7594)] = 326401, + [SMALL_STATE(7595)] = 326446, + [SMALL_STATE(7596)] = 326491, + [SMALL_STATE(7597)] = 326536, + [SMALL_STATE(7598)] = 326581, + [SMALL_STATE(7599)] = 326626, + [SMALL_STATE(7600)] = 326671, + [SMALL_STATE(7601)] = 326716, + [SMALL_STATE(7602)] = 326761, + [SMALL_STATE(7603)] = 326806, + [SMALL_STATE(7604)] = 326851, + [SMALL_STATE(7605)] = 326896, + [SMALL_STATE(7606)] = 326941, + [SMALL_STATE(7607)] = 326986, + [SMALL_STATE(7608)] = 327031, + [SMALL_STATE(7609)] = 327076, + [SMALL_STATE(7610)] = 327121, + [SMALL_STATE(7611)] = 327166, + [SMALL_STATE(7612)] = 327211, + [SMALL_STATE(7613)] = 327256, + [SMALL_STATE(7614)] = 327301, + [SMALL_STATE(7615)] = 327346, + [SMALL_STATE(7616)] = 327391, + [SMALL_STATE(7617)] = 327436, + [SMALL_STATE(7618)] = 327481, + [SMALL_STATE(7619)] = 327526, + [SMALL_STATE(7620)] = 327571, + [SMALL_STATE(7621)] = 327616, + [SMALL_STATE(7622)] = 327661, + [SMALL_STATE(7623)] = 327706, + [SMALL_STATE(7624)] = 327751, + [SMALL_STATE(7625)] = 327796, + [SMALL_STATE(7626)] = 327841, + [SMALL_STATE(7627)] = 327886, + [SMALL_STATE(7628)] = 327931, + [SMALL_STATE(7629)] = 327976, + [SMALL_STATE(7630)] = 328021, + [SMALL_STATE(7631)] = 328066, + [SMALL_STATE(7632)] = 328111, + [SMALL_STATE(7633)] = 328156, + [SMALL_STATE(7634)] = 328201, + [SMALL_STATE(7635)] = 328246, + [SMALL_STATE(7636)] = 328291, + [SMALL_STATE(7637)] = 328336, + [SMALL_STATE(7638)] = 328381, + [SMALL_STATE(7639)] = 328426, + [SMALL_STATE(7640)] = 328471, + [SMALL_STATE(7641)] = 328516, + [SMALL_STATE(7642)] = 328561, + [SMALL_STATE(7643)] = 328606, + [SMALL_STATE(7644)] = 328651, + [SMALL_STATE(7645)] = 328696, + [SMALL_STATE(7646)] = 328741, + [SMALL_STATE(7647)] = 328786, + [SMALL_STATE(7648)] = 328831, + [SMALL_STATE(7649)] = 328876, + [SMALL_STATE(7650)] = 328921, + [SMALL_STATE(7651)] = 328966, + [SMALL_STATE(7652)] = 329011, + [SMALL_STATE(7653)] = 329056, + [SMALL_STATE(7654)] = 329101, + [SMALL_STATE(7655)] = 329146, + [SMALL_STATE(7656)] = 329191, + [SMALL_STATE(7657)] = 329236, + [SMALL_STATE(7658)] = 329281, + [SMALL_STATE(7659)] = 329326, + [SMALL_STATE(7660)] = 329371, + [SMALL_STATE(7661)] = 329416, + [SMALL_STATE(7662)] = 329461, + [SMALL_STATE(7663)] = 329506, + [SMALL_STATE(7664)] = 329551, + [SMALL_STATE(7665)] = 329596, + [SMALL_STATE(7666)] = 329641, + [SMALL_STATE(7667)] = 329686, + [SMALL_STATE(7668)] = 329731, + [SMALL_STATE(7669)] = 329776, + [SMALL_STATE(7670)] = 329821, + [SMALL_STATE(7671)] = 329866, + [SMALL_STATE(7672)] = 329911, + [SMALL_STATE(7673)] = 329956, + [SMALL_STATE(7674)] = 330001, + [SMALL_STATE(7675)] = 330046, + [SMALL_STATE(7676)] = 330091, + [SMALL_STATE(7677)] = 330136, + [SMALL_STATE(7678)] = 330181, + [SMALL_STATE(7679)] = 330226, + [SMALL_STATE(7680)] = 330271, + [SMALL_STATE(7681)] = 330316, + [SMALL_STATE(7682)] = 330361, + [SMALL_STATE(7683)] = 330406, + [SMALL_STATE(7684)] = 330451, + [SMALL_STATE(7685)] = 330496, + [SMALL_STATE(7686)] = 330541, + [SMALL_STATE(7687)] = 330586, + [SMALL_STATE(7688)] = 330631, + [SMALL_STATE(7689)] = 330676, + [SMALL_STATE(7690)] = 330721, + [SMALL_STATE(7691)] = 330766, + [SMALL_STATE(7692)] = 330811, + [SMALL_STATE(7693)] = 330856, + [SMALL_STATE(7694)] = 330901, + [SMALL_STATE(7695)] = 330946, + [SMALL_STATE(7696)] = 330991, + [SMALL_STATE(7697)] = 331036, + [SMALL_STATE(7698)] = 331081, + [SMALL_STATE(7699)] = 331126, + [SMALL_STATE(7700)] = 331171, + [SMALL_STATE(7701)] = 331216, + [SMALL_STATE(7702)] = 331261, + [SMALL_STATE(7703)] = 331306, + [SMALL_STATE(7704)] = 331351, + [SMALL_STATE(7705)] = 331396, + [SMALL_STATE(7706)] = 331441, + [SMALL_STATE(7707)] = 331486, + [SMALL_STATE(7708)] = 331531, + [SMALL_STATE(7709)] = 331576, + [SMALL_STATE(7710)] = 331621, + [SMALL_STATE(7711)] = 331666, + [SMALL_STATE(7712)] = 331711, + [SMALL_STATE(7713)] = 331756, + [SMALL_STATE(7714)] = 331801, + [SMALL_STATE(7715)] = 331846, + [SMALL_STATE(7716)] = 331891, + [SMALL_STATE(7717)] = 331936, + [SMALL_STATE(7718)] = 331981, + [SMALL_STATE(7719)] = 332026, + [SMALL_STATE(7720)] = 332071, + [SMALL_STATE(7721)] = 332116, + [SMALL_STATE(7722)] = 332161, + [SMALL_STATE(7723)] = 332206, + [SMALL_STATE(7724)] = 332251, + [SMALL_STATE(7725)] = 332296, + [SMALL_STATE(7726)] = 332341, + [SMALL_STATE(7727)] = 332386, + [SMALL_STATE(7728)] = 332431, + [SMALL_STATE(7729)] = 332476, + [SMALL_STATE(7730)] = 332521, + [SMALL_STATE(7731)] = 332566, + [SMALL_STATE(7732)] = 332611, + [SMALL_STATE(7733)] = 332656, + [SMALL_STATE(7734)] = 332701, + [SMALL_STATE(7735)] = 332746, + [SMALL_STATE(7736)] = 332791, + [SMALL_STATE(7737)] = 332836, + [SMALL_STATE(7738)] = 332881, + [SMALL_STATE(7739)] = 332926, + [SMALL_STATE(7740)] = 332971, + [SMALL_STATE(7741)] = 333016, + [SMALL_STATE(7742)] = 333061, + [SMALL_STATE(7743)] = 333106, + [SMALL_STATE(7744)] = 333151, + [SMALL_STATE(7745)] = 333196, + [SMALL_STATE(7746)] = 333241, + [SMALL_STATE(7747)] = 333286, + [SMALL_STATE(7748)] = 333331, + [SMALL_STATE(7749)] = 333376, + [SMALL_STATE(7750)] = 333421, + [SMALL_STATE(7751)] = 333466, + [SMALL_STATE(7752)] = 333511, + [SMALL_STATE(7753)] = 333556, + [SMALL_STATE(7754)] = 333601, + [SMALL_STATE(7755)] = 333646, + [SMALL_STATE(7756)] = 333691, + [SMALL_STATE(7757)] = 333736, + [SMALL_STATE(7758)] = 333781, + [SMALL_STATE(7759)] = 333826, + [SMALL_STATE(7760)] = 333871, + [SMALL_STATE(7761)] = 333916, + [SMALL_STATE(7762)] = 333961, + [SMALL_STATE(7763)] = 334006, + [SMALL_STATE(7764)] = 334051, + [SMALL_STATE(7765)] = 334096, + [SMALL_STATE(7766)] = 334141, + [SMALL_STATE(7767)] = 334186, + [SMALL_STATE(7768)] = 334231, + [SMALL_STATE(7769)] = 334276, + [SMALL_STATE(7770)] = 334321, + [SMALL_STATE(7771)] = 334366, + [SMALL_STATE(7772)] = 334411, + [SMALL_STATE(7773)] = 334456, + [SMALL_STATE(7774)] = 334501, + [SMALL_STATE(7775)] = 334546, + [SMALL_STATE(7776)] = 334591, + [SMALL_STATE(7777)] = 334636, + [SMALL_STATE(7778)] = 334681, + [SMALL_STATE(7779)] = 334726, + [SMALL_STATE(7780)] = 334771, + [SMALL_STATE(7781)] = 334816, + [SMALL_STATE(7782)] = 334861, + [SMALL_STATE(7783)] = 334906, + [SMALL_STATE(7784)] = 334951, + [SMALL_STATE(7785)] = 334996, + [SMALL_STATE(7786)] = 335041, + [SMALL_STATE(7787)] = 335086, + [SMALL_STATE(7788)] = 335131, + [SMALL_STATE(7789)] = 335176, + [SMALL_STATE(7790)] = 335221, + [SMALL_STATE(7791)] = 335266, + [SMALL_STATE(7792)] = 335311, + [SMALL_STATE(7793)] = 335356, + [SMALL_STATE(7794)] = 335401, + [SMALL_STATE(7795)] = 335446, + [SMALL_STATE(7796)] = 335491, + [SMALL_STATE(7797)] = 335536, + [SMALL_STATE(7798)] = 335581, + [SMALL_STATE(7799)] = 335626, + [SMALL_STATE(7800)] = 335671, + [SMALL_STATE(7801)] = 335675, + [SMALL_STATE(7802)] = 335679, + [SMALL_STATE(7803)] = 335683, + [SMALL_STATE(7804)] = 335687, + [SMALL_STATE(7805)] = 335691, + [SMALL_STATE(7806)] = 335695, + [SMALL_STATE(7807)] = 335699, + [SMALL_STATE(7808)] = 335703, + [SMALL_STATE(7809)] = 335707, + [SMALL_STATE(7810)] = 335711, + [SMALL_STATE(7811)] = 335715, + [SMALL_STATE(7812)] = 335719, + [SMALL_STATE(7813)] = 335723, + [SMALL_STATE(7814)] = 335727, + [SMALL_STATE(7815)] = 335731, + [SMALL_STATE(7816)] = 335735, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [23] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 0, 0, 0), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, 0, 56), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, 0, 56), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 56), [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 56), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2, 0, 0), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3169), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6026), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6805), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7383), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7592), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7413), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7168), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7202), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7504), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4347), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7159), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6500), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5332), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7574), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1, 0, 0), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1, 0, 0), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2, 0, 0), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3284), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2331), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7085), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7560), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7750), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7573), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7256), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7158), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7514), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7756), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7738), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6473), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5332), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7390), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7496), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7383), [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3310), [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2509), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3183), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(737), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6026), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6948), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6812), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7537), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7353), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7324), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7623), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7117), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7504), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7624), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4347), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7159), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6500), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7626), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7746), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7619), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2257), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7297), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7316), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7514), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7621), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7738), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6473), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5299), [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7574), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 1, 0, 0), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 2, 0, 0), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2, 0, 0), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2, 0, 0), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, 0, 0), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, 0, 0), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, 0, 0), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, 0, 0), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3860), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6689), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2558), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7474), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7475), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7763), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7295), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7764), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7214), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7325), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7504), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4347), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7159), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6500), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7574), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, 0, 0), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7390), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7496), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7383), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 2, 0, 0), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 1, 0, 0), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, 0, 0), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, 0, 0), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2, 0, 0), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2, 0, 0), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, 0, 0), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, 0, 0), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2542), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2148), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7388), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7763), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7149), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7764), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2277), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7178), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7514), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7738), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6473), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7390), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7496), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7383), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, 0, 27), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, 0, 27), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, 0, 27), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, 0, 27), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 3, 0, 56), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 3, 0, 56), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, 0, 56), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1, 0, 0), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1, 0, 0), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2, 0, 0), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 56), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 56), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 56), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5875), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), - [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 56), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), + [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), + [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4517), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), + [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6026), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), - [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4362), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5214), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 9), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 9), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6150), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5193), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 9), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 9), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6427), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6406), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6412), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 72), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 72), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6422), [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 9), [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 9), [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 72), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 72), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 32), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 32), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 33), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 33), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, 0, 17), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, 0, 17), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, 0, 38), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, 0, 38), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 9), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 9), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 66), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 66), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 70), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 70), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, 0, 18), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, 0, 18), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 73), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 73), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, 0, 90), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, 0, 90), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 107), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 107), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 115), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 115), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 0), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, 0, 16), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, 0, 16), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 17), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 17), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 71), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 71), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 7), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 7), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, 0, 53), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, 0, 53), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7, 0, 0), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, 0, 26), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, 0, 26), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 0), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 1, 0, 0), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 1, 0, 0), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 2, 0, 10), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 10), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 2, 0, 11), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 2, 0, 11), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 2, 0, 12), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 2, 0, 12), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, 0, 13), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, 0, 13), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 2, 0, 10), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 2, 0, 10), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, 0, 63), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, 0, 63), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 2, 0, 17), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 2, 0, 17), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 35), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 35), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, 0, 13), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, 0, 13), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 33), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 33), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 71), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 71), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 73), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 73), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, 0, 16), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, 0, 16), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 32), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 32), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 17), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 17), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, 0, 17), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, 0, 17), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, 0, 38), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, 0, 38), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 107), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 107), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, 0, 18), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, 0, 18), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 0), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 9), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 9), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 0), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 0), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 70), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 70), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 66), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 66), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 115), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 115), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, 0, 90), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, 0, 90), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, 0, 26), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, 0, 26), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, 0, 63), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, 0, 63), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1, 0, 0), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 1, 0, 0), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 1, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 2, 0, 10), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 10), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4, 0, 0), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 2, 0, 17), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 2, 0, 17), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 2, 0, 11), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 2, 0, 11), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, 0, 53), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, 0, 53), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 2, 0, 12), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 2, 0, 12), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, 0, 13), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, 0, 13), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 35), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 35), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, 0, 13), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, 0, 13), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 10), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 10), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 7), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 7), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 2, 0, 10), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 2, 0, 10), [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3709), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3689), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3728), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3705), [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3912), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), - [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3865), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3976), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1, 0, 0), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6420), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3754), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3905), + [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4098), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), + [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6398), [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 114), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 114), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 112), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 112), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 138), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 138), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 139), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 139), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 140), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 140), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 165), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 165), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 166), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 166), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 167), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 167), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, 0, 188), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, 0, 188), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), - [3593] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2182), - [3597] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2183), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2378), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2372), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 112), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 112), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, 0, 188), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, 0, 188), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 140), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 140), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 165), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 165), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 166), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 166), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 114), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 114), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 167), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 167), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 138), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 138), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 139), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 139), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2374), + [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2373), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [3601] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2182), + [3605] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2183), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2182), [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2183), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [3620] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3205), - [3624] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3198), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3634] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5884), - [3638] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3352), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2650), - [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2641), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [3654] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5883), - [3658] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3477), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [3622] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3241), + [3626] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3239), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5894), + [3640] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3381), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2652), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2647), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [3652] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5849), + [3656] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3545), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, 0, 0), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, 0, 0), [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, 0, 0), [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, 0, 0), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2, 0, 0), [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2, 0, 0), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3627), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3670), [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 4), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3704] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), - [3710] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 31), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 31), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 31), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), + [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 31), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 0), + [3718] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), + [3724] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3739] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2604), - [3743] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2622), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4300), - [3773] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4387), - [3777] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5876), - [3781] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4813), + [3739] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2616), + [3743] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2604), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4318), + [3773] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4316), + [3777] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5869), + [3781] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4814), [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 56), [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 56), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3182), - [3798] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3208), - [3802] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3204), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [3818] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2378), - [3822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2372), - [3826] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5893), - [3830] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3891), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3175), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [3804] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3192), + [3808] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3264), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [3818] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2374), + [3822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2373), + [3826] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5901), + [3830] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3802), [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(954), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(348), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 5), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2951), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(388), - [3854] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2981), - [3858] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2989), - [3862] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5899), - [3866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4188), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3638), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [3880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2934), - [3884] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2951), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(389), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), + [3848] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2952), + [3852] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2951), + [3856] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5859), + [3860] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4201), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3602), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2951), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(402), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 5), + [3883] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2980), + [3887] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2989), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, 0, 39), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, 0, 39), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, 0, 6), [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, 0, 6), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, 0, 8), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, 0, 8), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1, 0, 0), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 6), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 6), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, 0, 8), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, 0, 8), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 0), [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, 0, 27), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, 0, 27), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, 0, 106), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, 0, 106), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 68), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 68), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, 0, 8), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, 0, 8), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 6), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 6), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 6), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 6), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4338), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, 0, 86), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, 0, 86), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3679), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3204), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3653), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), - [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2344), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__pointer_base_type, 1, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 3, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 3, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 6), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 6), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4387), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 6), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 6), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 68), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 68), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, 0, 8), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, 0, 8), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 6), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 6), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, 0, 27), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, 0, 27), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, 0, 86), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, 0, 86), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, 0, 106), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, 0, 106), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3665), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3264), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 3, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 3, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2344), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3635), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__pointer_base_type, 1, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 15), [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 15), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, 0, 20), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, 0, 20), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2989), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3640), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3675), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 2), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 2), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2989), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, 0, 20), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, 0, 20), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3592), + [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3644), [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3, 0, 0), [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3, 0, 0), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 118), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 118), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3592), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 150), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 150), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 97), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 97), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 75), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 75), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 128), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 128), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 94), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 94), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 57), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 57), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 122), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 122), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 56), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 56), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 123), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 123), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 74), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 74), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 99), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 99), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 142), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 142), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 143), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 143), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 144), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 144), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 146), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 146), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 147), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 147), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, 0, 148), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, 0, 148), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 149), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 149), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 150), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 150), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 151), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 151), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 152), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 152), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 153), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 153), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 154), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 154), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 155), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 155), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 157), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 157), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 48), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 48), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 158), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 158), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 159), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 159), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 160), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 160), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 161), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 161), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 162), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 162), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 163), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 163), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 168), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 168), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 169), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 169), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 170), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 170), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 172), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 172), - [4516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2829), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 173), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 173), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 175), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 175), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 176), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 176), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 177), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 177), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 178), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 178), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 179), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 179), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 180), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 180), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 181), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 181), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 94), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 94), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 182), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 182), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 183), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 183), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 184), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 184), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 185), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 185), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 186), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 186), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 187), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 187), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, 0, 95), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, 0, 95), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 189), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 189), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 190), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 190), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 191), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 191), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 192), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 192), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, 0, 193), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, 0, 193), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 194), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 194), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 196), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 196), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 197), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 197), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, 0, 198), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, 0, 198), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 199), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 199), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 200), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 200), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 126), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 126), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 127), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 127), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 56), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 56), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 67), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 67), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 128), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 128), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 129), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 129), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, 0, 96), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, 0, 96), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 120), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 120), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 130), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 130), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, 0, 116), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, 0, 116), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 117), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 117), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 98), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 98), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 121), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 121), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 118), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 118), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 93), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 93), - [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 131), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 131), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 141), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 141), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 119), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 119), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 56), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5280), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), - [4815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), - [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), - [4832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6491), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 8), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 8), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, 0, 0), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 1, 52), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 1, 52), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), - [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_stackalloc_expression, 2, 0, 8), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3606), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3676), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2, 0, 0), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2994), - [4958] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), - [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), - [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(599), - [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), - [4971] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3066), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, 0, 7), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, 0, 7), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 55), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 55), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4, 0, 0), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4, 0, 0), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, 0, 19), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, 0, 19), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, 0, 0), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, 0, 0), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 39), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 39), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), - [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3066), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3, 0, 0), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, 0, 92), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, 0, 92), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 43), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 43), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4, 0, 0), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 30), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 30), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 17, 8), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 17, 8), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 5, 0, 0), - [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 5, 0, 0), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 27), - [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 27), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 27), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 27), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3165), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3681), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(601), - [5327] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3217), - [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3673), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3217), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3625), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4820), - [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5294), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 5), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3303), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(679), - [5402] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3303), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), - [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, 0, 60), - [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, 0, 60), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, 0, 61), - [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, 0, 61), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 60), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 60), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 78), - [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 78), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 82), - [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 82), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, 0, 39), - [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, 0, 39), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 78), - [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 78), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 102), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 102), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, 0, 103), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, 0, 103), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 132), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 132), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 133), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 133), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, 0, 164), - [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 6, 0, 164), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(597), - [5529] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2994), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, 0, 125), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, 0, 125), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, 0, 145), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, 0, 145), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, 0, 171), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, 0, 171), - [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3714), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, 0, 0), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, 0, 0), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 39), - [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 39), - [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(616), - [5761] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2344), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 39), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 39), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 81), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 81), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3861), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [5870] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2182), - [5874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2183), - [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), - [6023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7395), - [6026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4243), - [6029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6776), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, 0, 0), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, 0, 0), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, 0, 0), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, 0, 0), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6136), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 3, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 3, 0, 0), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 39), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 39), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3623), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, 0, 0), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 118), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 118), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 75), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 75), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 94), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 94), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 97), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 97), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 150), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 150), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 128), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 128), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 190), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 190), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 48), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 48), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 94), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 94), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, 0, 95), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, 0, 95), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 56), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 56), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, 0, 96), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, 0, 96), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 98), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 98), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 99), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 99), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 195), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 195), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 196), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 196), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 197), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 197), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, 0, 198), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, 0, 198), + [4416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2859), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, 0, 116), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, 0, 116), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 117), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 117), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 118), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 118), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 119), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 119), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 74), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 74), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 56), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 56), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 120), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 120), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 199), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 199), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 200), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 200), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 121), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 121), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 122), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 122), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 123), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 123), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 191), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 191), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 124), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 124), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 126), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 126), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 127), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 127), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 67), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 67), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 128), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 128), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 129), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 129), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 130), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 130), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 131), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 131), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, 1, 0), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, 1, 0), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 192), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 192), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 189), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 189), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, 0, 193), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, 0, 193), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 93), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 93), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 141), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 141), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 142), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 142), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 143), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 143), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 144), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 144), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 146), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 146), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 147), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 147), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, 0, 148), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, 0, 148), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 149), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 149), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 150), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 150), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 151), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 151), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 152), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 152), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 153), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 153), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 154), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 154), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 155), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 155), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 156), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 156), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 157), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 157), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 158), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 158), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 159), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 159), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 160), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 160), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 161), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 161), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 162), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 162), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 163), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 163), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, 1, 0), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, 1, 0), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 168), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 168), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 169), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 169), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 170), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 170), + [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 172), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 172), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 173), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 173), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 174), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), + [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 175), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 175), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 176), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 176), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 177), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 177), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 178), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 178), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 179), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 179), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 57), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 57), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), + [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 180), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 180), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 181), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 181), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 182), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 182), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 183), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 183), + [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 184), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 184), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 185), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 185), + [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 186), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 186), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 187), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 187), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 194), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 194), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, 1, 0), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, 1, 0), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 56), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), + [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4517), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5174), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 8), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 8), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, 0, 0), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, 0, 0), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), + [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3481), + [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6456), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3681), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 29), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 29), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 1, 52), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 1, 52), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(593), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), + [4929] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3026), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2967), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3591), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4, 0, 0), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), + [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 39), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 39), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3, 0, 0), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3, 0, 0), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 55), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 55), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, 0, 92), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, 0, 92), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4, 0, 0), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5, 0, 0), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 5, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 5, 0, 0), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 27), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 27), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 27), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 27), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, 0, 19), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, 0, 19), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, 0, 0), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, 0, 7), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, 0, 7), + [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3026), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2, 0, 0), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2, 0, 0), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3, 0, 0), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3, 0, 0), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 43), + [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 43), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 30), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 30), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 17, 8), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 17, 8), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3167), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3674), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3636), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(642), + [5336] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3265), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3265), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3688), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4487), + [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5295), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 82), + [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 82), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(638), + [5395] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3285), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, 0, 39), + [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, 0, 39), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 78), + [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 78), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 60), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 60), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 102), + [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 102), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), + [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, 0, 103), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, 0, 103), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 132), + [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 132), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 133), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 133), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, 0, 164), + [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 6, 0, 164), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 5), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3285), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 78), + [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 78), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, 0, 61), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, 0, 61), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 0), + [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 0), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, 0, 60), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, 0, 60), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, 0, 125), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, 0, 125), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, 0, 145), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, 0, 145), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, 0, 171), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, 0, 171), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(620), + [5603] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2967), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 39), + [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 39), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [5740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3902), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(676), + [5748] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2344), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2, 0, 0), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2, 0, 0), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2, 0, 0), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2, 0, 0), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2, 0, 0), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 39), + [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 39), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 81), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 81), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, 0, 0), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, 0, 0), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [5930] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2182), + [5934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2183), + [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4222), + [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), + [6002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4297), + [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6783), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, 0, 0), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, 0, 0), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, 0, 0), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6138), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 3, 0, 0), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 3, 0, 0), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2, 0, 0), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 39), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 39), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6153), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6175), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6163), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, 0, 0), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [6494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6177), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 7), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4, 0, 0), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6143), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 48), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3649), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1, 0, 0), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(659), - [6764] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(4405), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6130), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [6999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(4405), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 56), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [7032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6159), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4671), - [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, 0, 0), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6160), + [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6130), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6148), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6183), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4, 0, 0), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 7), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 48), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6146), + [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3599), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1, 0, 0), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6174), + [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(594), + [6771] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(4409), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [6935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [6938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 56), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(4409), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [7042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6140), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, 0, 56), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6129), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6126), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6151), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6159), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6134), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 5), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 5), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), REDUCE(sym_type_pattern, 1, 0, 6), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [7534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 0), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [7648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6148), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 77), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, 0, 101), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 48), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, 0, 5), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 24), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 7), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 67), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [7885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6137), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [7892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6138), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6139), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6141), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6166), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, 0, 0), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 0), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 5), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, 0, 0), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2, 0, 0), - [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, 0, 5), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3, 0, 0), - [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, 0, 0), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 0), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 5), - [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, 0, 0), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 5), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), REDUCE(sym_type_pattern, 1, 0, 6), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [7540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), + [7547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5951), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 0), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6153), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 77), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, 0, 101), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 48), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, 0, 5), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 24), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 7), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 67), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6141), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6143), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6145), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6147), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 5), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6152), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 5), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, 0, 0), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 0), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 5), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, 0, 5), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3, 0, 0), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, 0, 0), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, 0, 0), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2, 0, 0), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, 0, 0), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, 0, 0), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6169), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, 0, 6), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), REDUCE(sym_type, 1, 0, 0), - [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(611), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6131), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [8762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6132), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6135), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6179), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 7), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(5969), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(6455), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(2918), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1, 0, 0), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(5969), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2182), - [8876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2183), - [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3709), - [8888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3689), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [8954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), - [8957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5299), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), REDUCE(sym_type, 1, 0, 0), + [8441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(606), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2, 0, 0), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, 0, 0), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6126), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, 0, 0), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, 0, 6), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6127), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6132), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6136), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6178), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 7), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(2921), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(5973), + [8853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(6513), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1, 0, 0), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [8874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2182), + [8877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2183), + [8880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), + [8882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(5973), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [8897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3728), + [8900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3705), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), + [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), + [8941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [8952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4422), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [9000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [9000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), SHIFT_REPEAT(5939), [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), [9123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2182), [9126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2183), [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, 0, 56), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, 0, 56), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), [9233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), - [9235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6140), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [9235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6168), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), [9288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2, 0, 0), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), - [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6176), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6169), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(752), [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), - [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3680), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 84), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 84), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 7), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, 0, 7), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 26), - [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 63), - [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 84), - [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 63), - [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 26), - [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 63), - [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 63), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, 0, 7), + [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3613), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 26), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 26), + [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 7), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 26), + [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 7), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, 0, 7), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 84), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, 0, 7), + [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 26), + [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 84), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 26), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 26), [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 7), - [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 63), - [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 84), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 63), - [9460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 26), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 7), - [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 26), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 26), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 26), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 2, 0, 7), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2795), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2724), - [9480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2730), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3627), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), - [9495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(4074), - [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(2918), - [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(5778), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, 0, 7), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 26), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), - [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), - [9526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, 0, 0), - [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, 0, 62), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, 0, 0), - [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [9545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), SHIFT(548), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 63), - [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), - [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, 0, 0), - [9562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, 0, 0), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, 0, 0), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2, 0, 0), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1, 0, 0), - [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 85), - [9593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 28), - [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1, 0, 0), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2, 0, 0), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, 0, 0), - [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6735), - [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), - [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(950), - [9617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 64), - [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 49), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [9631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 51), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, 0, 62), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [9643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 25), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), - [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4, 0, 0), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), - [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1, 0, 0), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 7), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 78), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), - [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), - [9707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7584), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6775), - [9717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6790), - [9720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6760), - [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4, 0, 0), - [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), - [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), SHIFT_REPEAT(6127), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), - [9750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(950), - [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(6919), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, 0, 0), - [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1, 0, 0), - [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), - [9764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(950), - [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(6886), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), - [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 80), - [9788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5, 0, 0), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [9807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 7), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 0), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, 0, 84), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 26), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 28), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 26), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [9853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3, 0, 0), - [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 26), - [9857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 64), - [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 26), - [9861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 7), - [9863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 63), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 26), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), - [9887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5881), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [9894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [9897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7502), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [9904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), - [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), - [9912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3, 0, 0), - [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 56), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [9940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 7), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, 0, 58), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [9962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 100), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 63), + [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 63), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 2, 0, 7), + [9460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 63), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 84), + [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 63), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 63), + [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 84), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 63), + [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2686), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [9477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [9482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2756), + [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2801), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), + [9490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(3943), + [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(2921), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(5764), + [9499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3670), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, 0, 62), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), SHIFT(542), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, 0, 0), + [9523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 63), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, 0, 7), + [9529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), + [9543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [9546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5764), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 26), + [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, 0, 0), + [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, 0, 0), + [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2, 0, 0), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, 0, 0), + [9570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), + [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, 0, 0), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1, 0, 0), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 49), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 51), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, 0, 62), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 28), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2, 0, 0), + [9611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 85), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 64), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, 0, 0), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1, 0, 0), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [9631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 25), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6738), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), + [9644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4, 0, 0), + [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), + [9673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), + [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 80), + [9686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [9688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6763), + [9691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6769), + [9694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6770), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1, 0, 0), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), + [9716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7505), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, 0, 0), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1, 0, 0), + [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5, 0, 0), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [9735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 78), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), + [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(912), + [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(7071), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), + [9773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), SHIFT_REPEAT(6185), + [9776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 7), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), + [9784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(912), + [9787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(7097), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4, 0, 0), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [9794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6419), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 6), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 26), + [9805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 7), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 64), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3, 0, 0), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 26), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 0), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 7), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [9845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), + [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [9870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7444), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 100), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [9883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 7), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 63), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2, 0, 0), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3, 0, 0), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 7), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 26), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 7), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), + [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 63), + [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 64), + [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 63), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 63), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 85), [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [9972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2, 0, 0), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 76), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 63), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 64), - [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 63), - [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 63), - [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 85), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 63), - [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 63), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, 0, 84), - [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, 0, 85), - [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 7), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5, 0, 0), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 6), - [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 26), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [10061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 7), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 28), - [10069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 7), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [10081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 84), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [10085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2949), - [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1, 0, 0), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 0), - [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, 0, 37), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), REDUCE(sym_tuple_element, 2, 0, 24), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 1, 24), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3, 0, 0), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 26), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, 0, 6), - [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1, 0, 0), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [10143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 67), - [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, 0, 104), - [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 0), - [10149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6963), - [10157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [10161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1, 0, 0), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1, 0, 0), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 69), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), - [10191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [10193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 59), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 5), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [10205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 2, 0, 7), - [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 54), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 48), - [10216] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), REDUCE(sym_tuple_element, 2, 0, 24), REDUCE(sym_declaration_expression, 2, 1, 24), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 63), - [10222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, 0, 7), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 83), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, 0, 6), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 0), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [10302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, 0, 6), - [10304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), REDUCE(sym_declaration_expression, 2, 1, 24), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [10355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 6), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, 0, 100), - [10365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 76), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [10383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(5838), - [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 58), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [10416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(574), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3, 0, 0), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1, 0, 0), - [10449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, 0, 48), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 0), - [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1, 0, 0), - [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 25), - [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 6), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [10500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5961), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [10505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3907), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1, 0, 0), - [10519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1, 0, 0), - [10521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [10532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(3971), - [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [10545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [10563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1, 0, 0), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [10600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6123), - [10603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), SHIFT_REPEAT(5923), - [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1, 0, 0), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [10650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [10659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5806), - [10662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), - [10677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [10679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 5), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [10731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6124), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [10773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(5935), - [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [10786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [10825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), - [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [10884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), REDUCE(sym_tuple_element, 2, 0, 24), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [10889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [10898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5971), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, 0, 48), - [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, 0, 8), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, 0, 67), - [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4, 0, 0), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [10925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [10932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), SHIFT_REPEAT(5969), - [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 49), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, 0, 54), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [10963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [10965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 69), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, 0, 93), - [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 74), - [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 51), - [10977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 7), - [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 7), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 63), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, 0, 84), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 63), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, 0, 84), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 76), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [10018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 26), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5, 0, 0), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, 0, 85), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, 0, 58), + [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [10045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 84), + [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 26), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 28), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [10075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 56), + [10077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 28), + [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 26), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [10091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 83), + [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1, 0, 0), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 67), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1, 0, 0), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, 0, 104), + [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 0), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 0), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 1, 24), + [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2941), + [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [10136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 26), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [10155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 2, 0, 7), + [10157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1, 0, 0), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 48), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6915), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), REDUCE(sym_tuple_element, 2, 0, 24), + [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), + [10185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1, 0, 0), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10191] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), REDUCE(sym_tuple_element, 2, 0, 24), REDUCE(sym_declaration_expression, 2, 1, 24), + [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, 0, 7), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [10205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1, 0, 0), + [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_content, 1, 0, 0), + [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 54), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 69), + [10219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 5), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3, 0, 0), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 63), + [10235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 59), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, 0, 6), + [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, 0, 37), + [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6122), + [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [10279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [10288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [10305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [10324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, 0, 48), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [10328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, 0, 67), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 0), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, 0, 8), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 25), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3, 0, 0), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), REDUCE(sym_tuple_element, 2, 0, 24), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), + [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [10432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [10449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 76), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [10494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), REDUCE(sym_declaration_expression, 2, 1, 24), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1, 0, 0), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [10537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [10565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1, 0, 0), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [10581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [10590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [10625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [10632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), SHIFT_REPEAT(5930), + [10635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), + [10637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 6), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [10649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6123), + [10652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [10658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 58), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [10770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(5944), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1, 0, 0), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [10813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [10824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(4032), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), + [10829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), SHIFT_REPEAT(5973), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 0), + [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 6), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 5), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [10866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5802), + [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1, 0, 0), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, 0, 6), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1, 0, 0), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, 0, 100), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, 0, 48), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4, 0, 0), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [10907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), SHIFT_REPEAT(6124), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), + [10912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1, 0, 0), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, 0, 6), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, 0, 54), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2, 0, 0), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 26), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 104), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 69), [10981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 7), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 105), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), - [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 60), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 56), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [11037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4, 0, 0), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 0), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3, 0, 0), - [11051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), - [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 26), - [11055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [11057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 25), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [11061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 26), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [11069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1, 0, 0), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [11075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2, 0, 0), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [11083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 83), - [11085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [11091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2, 0, 0), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 7), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [11099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, 0, 134), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [11107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 5, 0, 63), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [11111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 104), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [11181] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 74), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [11201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4, 0, 0), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 74), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2, 0, 0), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, 0, 93), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 93), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [11313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5, 0, 0), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [11399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3, 0, 0), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), - [11435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, 0, 93), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [11461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [11491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 0), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [11507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5, 0, 0), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [11517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 46), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 45), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, 0, 93), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2, 0, 0), - [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, 0, 8), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 14), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 21), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [11681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4, 0, 0), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [11685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, 0, 93), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [11717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2, 0, 0), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, 0, 3), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, 0, 65), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, 0, 6), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [10985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4, 0, 0), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1, 0, 0), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 105), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [11005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, 0, 93), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 49), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [11029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 7), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [11043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, 0, 134), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [11057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2, 0, 0), + [11059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 51), + [11061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 25), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [11065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 83), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [11071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 0), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [11075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 5, 0, 63), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), + [11087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [11091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 60), + [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), + [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 74), + [11097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 26), + [11099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 56), + [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7466), + [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 7), + [11115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), + [11117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3, 0, 0), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [11125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 14), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5, 0, 0), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, 0, 93), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [11187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 0), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4, 0, 0), + [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, 0, 6), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, 0, 8), + [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [11277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, 0, 65), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [11305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 45), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 74), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, 0, 3), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2, 0, 0), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5, 0, 0), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 21), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 46), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4, 0, 0), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [11657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, 0, 93), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [11667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, 0, 93), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3, 0, 0), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [11735] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [11765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2, 0, 0), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, 0, 93), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2, 0, 0), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 74), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [11813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 93), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [11853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 74), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 74), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 74), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 74), - [11919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 74), - [11921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 74), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3, 0, 0), - [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3, 0, 0), - [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), - [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 0), - [11933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4, 0, 0), - [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), - [11937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5, 0, 0), - [11939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3, 0, 0), - [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, 0, 22), - [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6, 0, 0), - [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15, 0, 0), - [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3, 0, 0), - [11949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, 0, 22), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14, 0, 0), - [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2, 0, 0), - [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2, 0, 0), - [11957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4, 0, 0), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3, 0, 0), + [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5, 0, 0), + [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2, 0, 0), + [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3, 0, 0), + [11933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4, 0, 0), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15, 0, 0), + [11937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, 0, 22), + [11939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6, 0, 0), + [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3, 0, 0), + [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, 0, 22), + [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3, 0, 0), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), + [11949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14, 0, 0), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 0), + [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2, 0, 0), + [11957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -800214,16 +800254,16 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_interpolation_string_content] = true, }, [6] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token__optional_semi] = true, }, [7] = { - [ts_external_token_interpolation_start_quote] = true, + [ts_external_token_raw_string_content] = true, }, [8] = { - [ts_external_token__optional_semi] = true, + [ts_external_token_interpolation_start_quote] = true, }, [9] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, }, }; diff --git a/test/corpus/attributes.txt b/test/corpus/attributes.txt index 0a82a5c..f01a59d 100644 --- a/test/corpus/attributes.txt +++ b/test/corpus/attributes.txt @@ -1,5 +1,5 @@ ================================================================================ -Global attributes +Attribute targets ================================================================================ [assembly: Single] @@ -18,6 +18,7 @@ Global attributes name: (identifier) (attribute_argument_list)))) + ================================================================================ Attributes ================================================================================ @@ -271,6 +272,90 @@ class Zzz { name: (identifier))) body: (block))))))) +================================================================================ +Attribute targets (non-global) +================================================================================ + +[type: Obsolete] +class A<[typevar: B] TC> +{ + [field:JsonIgnore] + [property: JsonIgnore] + public int D { get; set; } + + [method: Obsolete] + [return: MaybeNull] + public void E([param: AllowNull] int f) { } + + [event: Obsolete] + public event EventHandler OnG; +} + +--- + +(compilation_unit + (class_declaration + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (identifier) + (type_parameter_list + (type_parameter + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (identifier))) + (declaration_list + (property_declaration + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (modifier) + (predefined_type) + (identifier) + (accessor_list + (accessor_declaration) + (accessor_declaration))) + (method_declaration + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (modifier) + (predefined_type) + (identifier) + (parameter_list + (parameter + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (predefined_type) + (identifier))) + (block)) + (event_field_declaration + (attribute_list + (attribute_target_specifier) + (attribute + (identifier))) + (modifier) + (variable_declaration + (identifier) + (variable_declarator + (identifier))))))) + + ================================================================================ Attribute quirks ================================================================================